/* global style
--------------------------------------------------*/
html {
    box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}

body {
    font-family: 'DM sans', Arial, Helvetica, sans-serif;
    background-color: #fdf8f4;
    color: #3b4555;
    margin: 50px;
}

.title {
    color: #0c1d37;
}

a {
    color: #0c1d37;
}

a:hover {
    color: #ff6501;
}

/* Layout: container
--------------------------------------------------*/

.container {
    max-width: 100%;
    height: auto;
    padding: 0px 12px;
    margin-left: auto;
    margin-right: auto;
}

/* Layout: grid
--------------------------------------------------*/

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -12px;
}

.col {
    flex: 1 0 0%;
    padding: 0px 12px;
}

/* Components: button
--------------------------------------------------*/

.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;   
    border-radius: 50px;    
}

.btn-primary {
    background-color: #0c1d37;
    color: #fff;

}

.btn-primary:hover {
    background-color: #ff6501;
    color: #fff;
}

/* Components: navbar
--------------------------------------------------*/
.navbar-wrapper {
    height: 74px;
}

.navbar {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    padding: 32px 0px;
    text-align: center;
    background-color: #fdf8f4;
    transition: 250ms ease;
    
}

.navbar.scroll {
    padding: 16px 0px;
    box-shadow: 0px 15px 50px -10px rgb(100 44 0 / 7%);
}

.navbar-container {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto;
    gap: 10px;
    align-items: center;
    max-width: 1140px;
    padding: 0px 12px;
    margin-left: auto;
    margin-right: auto;
}

.navbar-brand {
    justify-self: start;
    padding: 5px 0px;
    margin-right: 30px;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    color: #0c1d37;
}

.navbar-img {
    border-radius: 7px;
}

.navbar-nav {
    display: inline-block;
    margin: 0px;
    padding: 0px;
}

.nav-item {
    display: inline-block;
}

.nav-link {
    display: inline-block;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.15;
    text-decoration: none;
    color: #0c1d37;
}

.nav-link:hover {
    background-color: hsl(27deg, 69%, 94%);
    border-radius: 50px;
}

@media (max-width: 991px) {
    .navbar-nav {
        display: none;
        order: 3;
        grid-column: 1 / span 3;
    }

    .nav-item {
        display: block;
    }

    .nav-link {
        display: block;
    }
}

.navbar-nav.show {
    display: inline-block;
}

.navbar-right {
    justify-self: end;
}

@media (max-width: 991px) {
    .navbar-right {
        order: 2;
        grid-column: 2 / span 2;
    }
}


.navbar-button {
    display: inline-block;
    padding: 10px 20px;
    margin-left: 30px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.15;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid #0c1d37;
    border-radius: 50px;
}

.navbar-toggle {
    display: none;
}

@media (max-width: 991px) {
    .navbar-toggle {
        display: inline-block;
        vertical-align: middle;
        padding: 8px;
        margin-left: 5px;
        cursor: pointer;
        border-radius: 50px;
        border: 2px solid transparent;
        background: transparent;
    }
    
    .navbar-toggle svg {
        display: block;
        margin: 0 auto;
    }

    .navbar-toggle.show {
        background: #ff6501;
        color: #fff;
    }
}



/* Components: section-hero
--------------------------------------------------*/

.section-hero {
    background-color: #dddddd;
    display: block;
    margin-top: 50px;
    max-width: 100%;
    padding: 120px 0px 350px 0px;
    text-align: center;
    overflow: hidden;
}

.hero-title {
    animation-duration: 9s;
    animation-name: slidein;
    animation-iteration-count: infinite;
    animation-delay: 250ms;
    animation-timing-function: linear;
    margin-top: 150px;
    margin-bottom: 32px;
    font-size: 4vw;
    line-height: 1.2;
    letter-spacing: -1px;
    color: green;
}

@keyframes slidein {
    from {
      margin-left: 100%;
      width: 100%;
    }
  
    to {
      margin-left: -100%;
      width: 100%;
    }
  }

/* Components section-cv
--------------------------------------------------*/
.profil {
    float: right;
    margin-right: 10px;
}

.born {
    text-align: center;
}

.cv {
    padding: 120px 0px;
    text-align: left;
}

.cv-headline {
    text-align: center;
    font-size: 5vw;
}

.h2 {
    font-size: 3vw;
    color: #009900
}

.h3 {
    font-size: 2vw;
    color: #5544ff
}

.row-cv {
    display: grid;
    padding: 25px 15px 0px 15px;
    margin-top: 50px;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    grid-auto-rows: minmax(100px, auto);
    max-width: 100%;
}

.cv-link {
    display: grid;
    grid-template-columns: 1, 1fr;
    grid-auto-rows: minmax(25px, auto);
}

.cv-personalia {
    grid-column: 1 / 6;
    grid-row: 1;
    border-bottom: 2px solid black;
}

.cv-erfaring {
    grid-column: 1 / 6;
    grid-row: 2;
}

.cv-utdanning {
    grid-column: 1 / 6;
    grid-row: 3;
}

.cv-kurs {
    grid-column: 1 / 6;
    grid-row: 4;
}

.web {
    grid-column: 1 / 2;
    grid-row: 5;
}

.design {
    grid-column: 2 / 3;
    grid-row: 5;
}

.office {
    grid-column: 3 / 4;
    grid-row: 5;
}

.nettverk {
    grid-column: 1 / 3;
    grid-row: 6;
}

.annet {
    grid-column: 3 / 5;
    grid-row: 6;
}

.code-td {
    text-align: center;
    border: 3px;
}

.cv-language {
    grid-column: 1;
    grid-row: 7;
}
 .cv-lappen {
    grid-column: 3;
    grid-row: 7;
 }
 .cv-topp {
    grid-column: 1;
    grid-row: 8;
 }

 .cv-topp-tekst {
    color: red;
 }
 /* Components section-om meg
--------------------------------------------------*/

.section-story {
    background-color: #eeeeee;
    padding: 200px 0px;
    text-align: left;
}

.story1 {
    margin-top: 0px;
    margin-bottom: 32px;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #0c1d37;
}

.story2 {
    margin-top: 0px;
    margin-bottom: 32px;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #0c1d37;
}


.meg {
  display: block;
}

.mylove {
    float: right;
}

.undertekst {
    text-align: center;
    font-size: 20px;
    font-style: italic;
}

/* componeter ferdigheter
---------------------------------------------------*/
.section-ferdigheter {
    background-color: #dddddd;
    display: block;
    max-width: 100%;
    padding: 200px 0px;
    overflow: hidden;
}

.ferdigheter-title {
    font-size: 50px;
    text-align: center;
    flex: 100%;
}

.ferdigheter-innhold {
    display: block;
    text-align: center;
}

.ferdigheter-tekst {
    font-size: 30px;
    text-align: center;
    padding: 0px 100px 0px 300px;
    float: left;
}

.ferdigheter-design {
    font-size: 30px;
    text-align: center;
    padding: 0px 300px 0px 100px;
    float: right;
}

.ferdigheter-overskrift {
    font-size: 40px;
    color: #ff6501;
    text-align: center;
}

/* componeter tjenester
---------------------------------------------------*/
.section-tjenester {
    background-color: #eeeeee;
    display: block;
    max-width: 100%;
    padding: 200px 0px;
    overflow: hidden;
}

.tjenester-title {
    text-align: center;
    font-size: 60px;
    margin-bottom: 100px;
}

.tjeneste-0 {
    text-align: center;
}

.tjeneste-1 {
    display: inline-block;
    padding: 40px;
    text-align: center;
}

.tjeneste-2 {
    display: inline-block;
    padding: 40px;
    text-align: center;
}

.tjeneste-button {
    background-color: #009900;
    font-size: 35px;
    border-radius: 35px;
    padding: 15px;
}

.tjeneste-button:hover {
    background-color: #5544ff;
}

/* componeter kontakt
---------------------------------------------------*/
.section-kontakt {
    background-color: #dddddd;
    display: block;
    max-width: 100%;
    padding: 200px 0px;
    overflow: hidden;
}

.kontakt-title {
    text-align: center;
    font-size: 25px;
    padding-bottom: 150px;
}

.kontakt-link {
    display: inline-block;
    text-decoration: none;
    padding-left: 20px;
    line-height: 1;
    text-align: center;
}

.kontakt-sosial {
    display: block;
    text-align: center;
}

/* Components: section-footer
--------------------------------------------------*/

.section-footer {
    background-color: #eeeeee;
    padding: 200px 0px 200px;
    border-top: 1px solid #faefe5;
}

.til-topp {
    margin-bottom: 100px;
}
  
  /* Utility: spacing
  ------------------------------------*/
.ml-auto {
    margin-left: auto;
  }
  
.mr-auto {
    margin-right: auto;
}