@font-face {
    font-family: jakarta;
    src: url(/SourceSerif4-VariableFont_opsz\,wght.ttf);
    /* src: url(heming-variable.ttf); */
}
*{
    margin: 0;
    padding: 0;
    
}

body{
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 35%, rgb(243, 243, 243) 100%);
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    overflow: overlay;}

html{
    height: -webkit-fill-available;
    /* Gjør kompatibel med mobil,  */}
:root{
    /* --text-color:rgb(52, 52, 52); */
    --text-color:#285177;
    --text-color:#1b384f;
    --text-line-space:30px;
    --text-size1:20px;
    --blackish: #101f2c;
    --whiteish: rgba(250, 250, 250, 1);
    --mainpurple: rgb(75,88,221);
    --mainblue:rgb(8, 135, 253);
    --backgroundgradient: linear-gradient(90deg, rgb(10, 40, 68) 0%, rgb(5, 43, 79) 100%); 
    --border-radius:5px;}

/*
    Colorstuff
    Main: #6527e9 (denne er lilla)
    
    main gradient (denne er mørkeblå): 
    background: rgb(40,81,119);
    background: linear-gradient(90deg, rgba(40,81,119,1) 0%, rgba(62,124,181,1) 100%);

    enda lysere: 
    background: linear-gradient(90deg, rgb(0, 105, 204) 0%, rgb(0, 132, 255) 100%);


*/
::-webkit-scrollbar{
    width: 5px;
    border-radius: 5px;
    background-color: transparent;}
::-webkit-scrollbar-track{
    background-color: transparent;
    border-radius: 5px;}
::-webkit-scrollbar-thumb{
background: rgb(174, 174, 174);
border-radius: 5px;}
/* Swiper */ *{
.swiper {
    max-width: 100%;
    width: 100%;
    height: 25vw;
    padding: 30px 0!important;
  }

  .swiper-wrapper{
    max-width: 1000px;
  }

.swiper-button-prev, .swiper-button-next{
    opacity: 1;
}
.swiper-slide{
    
    display: flex!important;
    justify-content: center!important;
    
    height: fit-content;
    


}
.swiper-slide img{
    box-shadow: #101f2c57 0 0 25px;
    border-radius: var(--border-radius);
    display: block;
    object-fit: cover;
    width: 80vw;
    max-width: 1000px;
    max-height: 80vh;
    
    
    
}
.testimonialSlide{
    background: var(--backgroundgradient);
    border-radius: var(--border-radius);
    padding: 30px;
    display: block;
    box-sizing: border-box;
    width: 80vw;
    max-width: 500px;
    max-height: 90vh!important;

}
.testimonialSlide h1{
    color: var(--whiteish);
    font-size: var(--text-size1);
}
.testimonialSlide p{
    color: var(--whiteish);
    font-size: var(10px);
}
.testimonialSlide div{
    display: flex;
    width: 100%;
    justify-content: left;
    gap: 20px;
    align-items: center;
    height: 100px;
    padding: 0  0 20px 0;
}
.testimonialSlide img{
    height: fit-content;
    width: 100px;
}
}
/* Global Tekst */ *{
a{
    text-decoration: none;
}
p {
    font-family: Arial, Helvetica, sans-serif;
    font-family: jakarta;
    color: var(--text-color);
}
h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-family: jakarta;
}
h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-family: jakarta;
    color: var(--whiteish);
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;

}
}
/* hidden animation */ *{
.hidden{
    opacity: 0;
    transform: translatey(20px);
    transition: all 1s;
    transition-delay: 300ms;
    
}
.show{
    opacity: 1!important;
    transform: translateX(0)!important;
}
}
/* Navbar */*{
.instaimg{
    transition: all 0.25s;
    opacity: 0;
}
.mobileMenu{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 5vw 0 20vw 0;
    box-sizing: border-box;
    
    position: fixed;
    z-index: 4;
    background: var(--backgroundgradient);
    width: 100%;
    height: 100vh;
    display: none; 
    
}
.mobileMenu p{
    color: var(--whiteish);
    font-size: 50px;
}
.mobile-navbar{
    box-sizing:border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    padding: 18px;
    
    width: 100%;
    /* Dette er sånn som skal komme inn pga scrollTop */
    transition: background-color 0.15s ease-in-out, box-shadow .3s ease-in-out;
    background: var(--backgroundgradient);
    box-shadow: 0 0 15px black;
    display: none;
    z-index: 4;
    
}
.mobile-navbar img{
    height: 60px;
    display: none;
}
.mobile-navbar-logoText{
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    gap:10px;
}
.mobile-navbar-logoText p{
    font-size: 20px;
    font-weight:600;
    color: var(--text-color);
    transition: color 0.25s ease-in-out;
}
#logo{
    font-weight: 600;
    color: var(--whiteish);
    transition: all 0.25s ease-in-out;
    opacity: 0;
}
.hamburger{
    display: none;
    cursor: pointer;
    padding-right: 20px;
    z-index: 6;
    
}
.bar{
    display: block;
    width: 25px;
    height: 3px;
    border-radius: 5px;
    margin: 5px 0;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    background-color: var(--whiteish);
    z-index: 6;
}

/* navbar */
.navbar{
    width: 100%;
    height: 80px;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0);
    box-shadow: none;
    z-index: 2;
    transition: all 0.25s ease-in-out;
    opacity: 0;
    
}
.navbar:hover{
    background: var(--backgroundgradient)!important;
    box-shadow: 0px 0px 15px black!important;
    
    
}
.navbar:hover p{
    color: var(--whiteish)!important;
    transition: all 0.15s ease-in-out;
}
.navbar:hover img{
    opacity: 1!important;
}

/* Navbar linker, meny */
.nav-link p{
    font-size: var(--text-size1);
    color: var(--whiteish);
    font-weight: 500;
    transition: all 0.25s ease-in-out;
    
}
img.nav-link{
    width: auto;
    height: 60px;
    
}
.nav-link-underline{
    background-color: var(--whiteish);
    width: 0%;
    height: 1.5px;
    margin-top: 3px;
    transition: width 0.25s ease-in-out;
    
}
.nav-link-undermenu{
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.25s ease-in-out;
    
}
.nav-link:hover .nav-link-underline{
    width: 100%;
    
}
.nav-link:hover .nav-link-undermenu{
    visibility: visible;
    opacity: 1;
}

}
/* Bakgrunnsvideo og introvideo */ *{
.menuBackground{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.menuBackgroundInnerDiv{
    
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.menuBackgroundInnerDiv h1{

    text-align: center;

    font-size: 60px;
    font-weight: 300;
    letter-spacing: 2px;

    padding: 20px;
    box-sizing: border-box;

    color: var(--whiteish);
    background: var(--backgroundgradient);
    background-blend-mode: ;
    
}
.menuBackgroundInnerDiv p{
    background: var(--backgroundgradient);
    padding: 20px;
    font-size: 20px;
    text-align: center;
    color: var(--whiteish);
}

#menuBackgroundWide{
    display: block;

    overflow: hidden;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    
}

#introvideoWide{
    display: block;
    
}
#introvideo{
    display: none;
    
}

#infoVideoWide{
    display: block;
}
#infoVideoMobile{
    display: none;
}
}
/* Textbox  og Wallpic OmOss */ *{
#textBox0{
    background: var(--backgroundgradient);
    width: fit-content;
    max-width: 100%!important;
    padding: 30px!important;
    margin: 0px!important;
    display: none;
    
}
#textBox0 h1, #textBox0 p{
    color: var(--whiteish);
}
.textBox{
    display: flex;
    padding: 30px 25vw;
    gap: 15px;
    max-width: 550px;
}
#textBox1{
    margin: 20px;
    padding: 20px;
    background-image: url("photos/mountains/sunsetMountains.jpg");
    background-size: 120%;
    background-position: 0 40%;
    
}
#textBox1 p {
    color: var(--whiteish);
    font-weight: 200;
}
#textBox1 h1{
    font-weight: 400;
    color: var(--whiteish);
}
h1.textboxheader{

    font-size: var(--text-size1);
    color: var(--text-color);
    white-space: nowrap;
    font-weight: 600;
    margin-top: 2px;

}
p.textboxtext{

    font-size: var(--text-size1);
    line-height: var(--text-line-space);

}
.wallPic{
    box-sizing: border-box;
    
    width: 100%;
    padding: 30px 0;
    height: 40vw;
    object-fit: cover;
}
}
/* TextLogo */ *{
.indexLogo{
    display: block;
}
.textLogo{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    
    width: 100%;
    gap: 40px;
    background: var(--backgroundgradient);
    
    box-sizing: border-box;
}
.textLogo h1{
    color: var(--whiteish);
    font-size: 60px;
    font-weight: 400;
    text-align: center;
    white-space: ;
}
.textLogo img{
    display: none;
}
.textLogo p{
    color: var(--whiteish);
    font-size: 20px;
    font-weight: 5000;
    text-align: center;
    
    
}
}
/* Commentext mellom divs etc... */ *{
.commenText{
    color: var(--whiteish);
    
    background: var(--backgroundgradient);
    font-size: 20px;
    
    text-align: center;
    font-weight: 600;
    padding: 30px 30px;
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
    
}
.commenTextBlank{
    color: var(--text-color);
    
    font-size: 30px;
    letter-spacing:nor;
    text-align: center;
    font-weight: 500;
    padding: 30px 30px;
    margin: 30px 0;
    width: 100%;
    box-sizing: border-box;
}
}
/* InfoboxKeypoints */ *{
.infoboxWrapper{
    display: flex;
    gap: 50px;

    background: var(--backgroundgradient);
    overflow-x: auto;
    
    -webkit-overflow-scrolling: touch;
    width: 100%;
    box-sizing: border-box;
    padding: 30px;
}
.infoBox{
    
    text-align: center;
    padding: 10px;
    margin: 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100px;
    gap: 20px;
    
}
.infoBox img{
    height: 70px;
}
.infoBox p{
    color: var(--whiteish);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    width: 200px;
    height: fit-content;
    
    
    
}
}
/* Dropdown text */ *{
input{
opacity: 0;
position: absolute;
}
.dropDownBox{
    width: 50vw;
    max-width: 1000px;


    background: var(--backgroundgradient);
    
    
    padding: 15px 20px;
    margin: 15px;
    border-radius: var(--border-radius);

    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    transition: all 0.25s ease-in-out;

    cursor: pointer;

}
.dropDownBox:hover{
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}
.dropDownBoxTitleWrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    
}
.dropDownTitle{
    
    font-size: 20px;
    font-weight: 600;
    color: var(--whiteish);
    
}
.dropDownText{
    color: var(--whiteish);
    font-size: 0px;
    transition: all 0.2s ease-in-out;
    line-height: 0px;
    margin-right: 30px;
    opacity: 0;
    
}
.dropDownBox img{
    height: 30px;
    transition: all 0.1s ease-in-out;
}
input:checked ~ .dropDownText{
    font-size: 20px;
    opacity: 1;
    line-height: 30px;

}
input:checked ~ div img{
    transform: rotate(90deg);

}
}
/* Footer */ *{
.footer{
    padding: 40px 0 100px 0 ;
    
    background-color: var(--text-color);
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;

}
.footerTextContainer{
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 800px;
}
p.footerP{
    color: var(--whiteish);
    font-size: var(--text-size1);
    line-height: 40px;
    
}
h1.footerP{
    color: var(--whiteish);
    font-size: 20px;
    padding-bottom: 5px;
}
}
.mobileElement{
    display: none;
}
/* Product Cards */ *{
.productCardContainer{
    width: 100%;
    display: flex;
    justify-content: center;
    overflow-x: scroll;
    background: var(--backgroundgradient);
    
    
}
.productCard{
    margin: 40px;
    padding-bottom: 20px;
    border-radius: 10px;
    /* box-shadow: 1px 1px 15px rgba(0,0,0, 0.5); */
    width: 300px;
    height: 600px;
    max-height: 600px;
    
    display: flex;
    flex-direction: column;
    align-items: center;    
    justify-content: space-between;
}

.productCard img{
    object-fit: cover;
    border-radius: 10px;
    width: 300px;
    height: 200px;
    margin-bottom: 20px;
    box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.2)
}
.productCardKeyPointsWrapper{
    display: flex;
    width: 100%;
    justify-content: space-around;
    margin: 20px 0;
}
.productCardKeyPoint{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.productCardKeyPoint img{
    margin: 0;
    width: auto;
    height: 30px;
    
}
.productCard p ,.productCard h1{
    color: var(--whiteish);
    line-height: 30px;
    text-align: center;
}
.productCardButton{
    display: flex;
    justify-content: center;
    width: 100%;
    height: fit-content;
    border-radius: 5px;
    padding: 20px 0px;
    
    
    background-color: var(--text-color);
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.34);
    transition: all 0.3s ease-in-out;
}
.productCardButton:hover{
    transition: all 0.2s ease-in-out;
    box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}
}
/* Gjengen profile box */ *{
.profileBox {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    width: 40vw;
    margin: 60px;
}
.profileBox img{
    height: 400px;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.profileBox div{
    width: 100%;
}
}


@media (max-aspect-ratio: 5/4) {
    
    .swiper {
        
        height: 75vw;
        
      }
    .swiper-button-prev, .swiper-button-next{
        opacity: 0;
    }
    .profileBox{
        flex-direction: column;
        width: fit-content;
    }
    .profileBox img, .profileBox div{
        width: 80vw;
        
    }

    .productDestination{
        width: 80vw;
        margin: 30px;
        
    }
    .productCardContainer{
        justify-content: flex-start;
        
    }
    .productCard{
        margin: 20px;
    }
    .menuBackgroundInnerDiv h1{
        font-size: 30px;
    }
    .menuBackgroundInnerDiv p{
        font-size: 20px;
    }

    #infoVideoWide{
        display: none;
    }
    #infoVideoMobile{
        display: block;
    }
    .wideElement{
        display:none;
    }
    .mobileElement{
        display:block;
    }
    .wallPic{
        
        
        height: 125vw;
        width: 100%;
        
    }
    #introvideoWide{
        display: none;
    }
    #introvideo{
        display: block;
    }
    
    .mobile-navbar img{
        display: block;
    }
    .mobileMenu.active{
        
        display: flex;
    }
    .mobile-navbar-logoText.active{
        
        opacity: 0!important;
    }
    .mobile-navbar{
        display: flex;
    }
    .mobile-navbar.active{
        background: transparent!important;
        box-shadow: none!important;
    }
    #logo{
        opacity: 1;
    }

    .dropDownBox{
        width: 80vw;
    }
    

    .navbar, .navbar-background{
        display: none;
    }
    :root{
        --text-line-space:30px;
        --text-size1:20px;
    
    }
    .textLogo{
        margin-bottom: 0;
        padding: 30px 20px;
        gap: 5px;
    }
    .textLogo h1{
        font-size: 8vw;  
    }
   .textLogo img{
    padding: 10px;
    display: block;
    width: 150px;
   }
    .textLogo p{
        font-size: 20px;
        
    }

    .textBox{
        flex-direction: column;
        max-width: 80vw;
        padding: 30px;
        
    }
    .footerTextContainer{
        flex-direction: column;
    }

    .hamburger{
        display: block;
        
    }
    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
    
}

@media only screen and (min-width:717px){
    .infoboxWrapper{
        justify-content: center;
    }

}







/*
.navbar{

    background-color: rgba(250, 250, 250, 0.9);

}
*/