*{
        margin: 0;
        padding: 0;
        font-family: sans-serif;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url(bilder/Veiskjaering3.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

/*----------------------------------------Navigasjons linje------------------------------------------------*/

nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 120x;
    cursor: pointer;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #1b863c;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 100%;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50);
    text-align: center;
   
}
.text-box h1{
    font-size: 45px;
    margin-top: 80px;
}
.text-box p{
    margin: 20px auto;
    font-weight: 100;
    line-height: 25px;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer; 
}
.hero-btn:hover{
    border: 1px solid #1b863c;
    background: #1b863c;
    transition: 1s;
}

nav .fa{
    display: none;
}

/*-----------------------------------------mobil tilpassning---------------------------------------------*/

@media(max-width: 700px) {
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 20px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}

/*----------------------------------------- følg oss--------------------------------------------------------*/

.følg-oss{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h2{
    color: #777;
    font-size: 25px;
    font-weight: 600;
}
p{
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
p .fa{
    font-size: 20px;
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
    cursor: pointer;
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}

/*-----------------------------------------footer-----------------------------------------------------------*/

.footer{
    width: 100%;
    text-align: center;
    background-color: #d6d2d2;
    margin-top: 100px;
    padding: 30px 0;
    padding-top: 30px;
    padding-bottom: 50px;
}
.footer-col{
    width: 80%;
    flex-basis: 22%;
    padding: 20px 4px;
}
.footer-col img{
    width: 150px;
}
a:link{
    color: #777;
}



/*------------------------------------------Copy Right--------------------------------------------------------*/

.copyright{
    background-color: #d6d2d2;
    width: 100%;
    text-align: left;
    padding: 20px 0;
    padding-bottom: 30px;
}
.copyright h4{
    font-size: 10px;
    margin-left: 90px;
}
.icons .fa{
    color: #000000;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}


/*-------------------------------------------Om Oss-----------------------------------------------------------*/

.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(bilder/Veiskjaering3.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header h1{
    margin-top: 100px;
}
.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.about-col{
    flex-basis: 40%;
    padding: 30px 2px;
}
.about-col img{
    width: 450px;
}
.about-col h1{
    padding-top: 0;
    font-size: 35px;
}
.about-col p{
    padding: 15px 0 25px;
    font-size: 16px;
}
.om-oss{
    font-size: 30px;
}

/*-----------------------------------------Personer-----------------------------------------------------*/

.personer{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.personer-col{
    flex-basis: 22%;
    padding: 20px 12px;
    box-sizing: border-box;
}
.personer-col img{
    width: 180px;
    border-radius: 10px;
}

/*-----------------------------------------Tjenester------------------------------------------------------*/

.tjenester{
    width: 40%;
    margin: auto;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 5px;
}

h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.tjenester-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.tjenester-col img{
    width: 220px;
}
.tjenester h3{
    color: black;
}




/*-----------------------------------------Prosjekter--------------------------------------------------------*/


.prosjekter{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.prosjekter-col{
    flex-basis: 40%;
    padding: 30px 2px;
}
.prosjekter-col img{
    width: 450px;
}
.prosjekter-col h1{
    padding-top: 0;
    font-size: 35px;
}
.prosjekter-col p{
    padding: 15px 0 25px;
    font-size: 16px;
}





.prosjekter-topp{
    font-size: 30px;
}
/*-----------------------------------------Kontakt oss side-------------------------------------------------*/

.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.location iframe{
    width: 100%    
}
.contact-us{
    width: 80%;
    margin: auto;
}
.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-col div .fa{
    font-size: 28px;
    color: #1b863c;
    margin: 10px;
    margin-right: 30px;
    cursor: pointer;
}
.contact-col div p{
    padding: 0;
}
.contact-col div h5{
    font-size: 18px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400
}

.green-btn{
    border: 1px solid #1b863c;
    background: transparent;
    color: black;
}


/*--------------------------------------Kontakt skjema------------------------------------------------------*/

.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}   

.kontakt-topp{
    font-size: 30px;
}

/*---------------------------------------Geologi-------------------------------------------------------------*/


.sub-header2{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(bilder/borerigg.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header2 h1{
    margin-top: 100px;
}
.geologi{
    width: 60%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.geologi h3{
    padding-top: 0;
    font-size: 35px;
    text-align: center;
}
.geologi p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

/*---------------------------------------Drone----------------------------------------------------------------*/

.sub-header3{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(bilder/Drone.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header3 h1{
    margin-top: 100px;
}
.drone{
    width: 60%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.drone h3{
    padding-top: 0;
    font-size: 35px;
    text-align: center;
}
.drone p{
   color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

/*-----------------------------------------Geoteknikk----------------------------------------------------------*/

.sub-header4{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(bilder/geotek1.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header4 h1{
    margin-top: 100px;
}
.geoteknikk{
    width: 60%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.geoteknikk h3{
    padding-top: 0;
    font-size: 35px;
    text-align: center;
}
.geoteknikk p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

/*------------------------------------------Utleie-------------------------------------------------------------*/

.sub-header5{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(bilder/group.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header5 h1{
    margin-top: 100px;
}
.utleie{
    width: 40%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.utleie h3{
    padding-top: 0;
    font-size: 35px;
    text-align: center;
    
}
.utleie p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

/*-----------------------------------------------------Wrapper----------------------------------------------*/

.wrapper{
    display: flex;
    justify-content: space-between;
    width: 110%;
    margin: 2rem auto;
    flex-wrap: wrap;
   
}
.box{
    margin: 20px;
    width: 300px;
    height: 250px;
    align-items: center;
    background-color: #fff;
    padding: 1.5rem;
    cursor: pointer;
   
}
.box:hover{
    transition: 0.5s ease-in-out;
    background-color: #1b863c;
    color: white;
}
    .box img{
        width: 290px;
        background-color: white;
        border-radius: 50;
}

