:root {
    --teal: #3355ff;
}
body, html{
    font-family: 'Roboto Flex', sans-serif;
    color: white;
    background-color: black;
    margin: 0px;
    font-size: 10px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x:hidden;
}


::-webkit-scrollbar{
    display: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

body{
    height: 100dvh;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

p, li{
    font-size: 2em;
    line-height: 2em;
}
ul{
    margin-left: 0px;
    padding: 0px;
    columns: 2;
    column-gap: 50px;
    list-style: none;
}
ul li{
    font-size: 1.5em;
    line-height: 1.5em;
    padding: 15px 0;
    border-top: 1px solid var(--teal);
}
ul li::marker{
    color: var(--teal);
    text-indent: 10px !important;
}
p a{
    color: var(--teal);
}
a.c2a{
    color: var(--teal);
    padding: 15px;
    border: 1px solid var(--teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.4em;
    margin-top: 0px;
    display: inline-block;
}
a.c2a:hover{
    color: black;
    background-color: var(--teal);

}

nav.right{
    position: fixed;
    left: 0;
    height: 100dvh;
    top: 100%;
    padding: 4vh 0;
    width: 100px;
    text-align: center;
    z-index: 3;
    transition: all 1s ease;
}
nav.right.default{
    top: 0;
}
nav svg{
    width: 20px;
    display: block;
    margin: auto;
    padding: 20px 0px ;
    transition: all .5s ease;
    max-height: 40px;
}
nav svg path{
    fill: var(--teal);
    transition: all .5s ease;
}

nav a.active svg{
    width: 40px;
}
nav a.active svg path, nav a:hover svg path{
    fill: white;
}

section{
    height: 100dvh;
    scroll-snap-align: start;
    box-sizing: border-box;
    padding: 4vh 5vw 4vh 0;
    padding-left: 100px;
    position: relative;
    z-index: 1;
    background: linear-gradient(to right,  rgba(0,12,72,1) 0%,rgba(0,12,72,0) 100%);
    overflow-y: scroll;
    transition: all 1s ease;
    scroll-behavior: smooth;


}
section.hero{
    height: 200%;
    opacity: 0;
}
section.hero.default{
    height: 100dvh;
    opacity: 1;
}
section.packages{
    backdrop-filter: blur(5px);
}
video{
    width: 100%;
    height: 100dvh;
    object-fit: cover;
    position: fixed;
    z-index: 0;
    pointer-events: none;
    transition: all 1s ease;
    opacity: 0;
}
video.default{
    opacity: 1;
}

.bottom{
   position: absolute;
   bottom: 10vh;
   width: 50%;
}
.contact{
    background-image: linear-gradient(to right,  rgba(0,12,72,1) 0%,rgba(0,12,72,0) 100%);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
}
.contact .van{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 75%;
}
.contact .bottom{
    position: static;
    width: calc(100% - 200px);
    columns: 1;
    
 }
 .contact .bottom a{
    color: var(--teal);
    font-size: 1.5em;
    text-decoration: none;
    display:inline-block;
    line-height: 2em;
    
 } 
 .contact .bottom a:hover{
    color: white;

 }
 .contact .bottom h3{
    font-size: 2.5em;
    letter-spacing: 0px !important;
    font-weight: 900 !important;
    color: white;
   margin-top: 30px;
    line-height: 1em;
 }
.hero h1{
    color: var(--teal);
    font-size: 6em;
    font-weight: 400;
    margin-bottom: 20px;
}
h1{
    
}
h2{
    font-size: 10vw;
    margin-top: 0px;
    font-weight: 100;
    line-height: 0.9em;
    margin-bottom: 20px;
    position: sticky;
    color: var(--teal);
}
h3{
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1.5em;
    margin-top: 0px;
    margin-bottom: 20px;
    font-size: 2vw;

}
#book h3{
    max-width: 600px;
    text-transform: none;
    letter-spacing: 1px;
    font-weight: 500;
}
img.logo{
    position: absolute;
    z-index: 3;
    top: 4vh;
    right: 4vh;
    max-width: 150px;
}
@media(max-width: 748px){
    .hero h1{
        font-size: 3em;
    }
    .bottom{
        width: calc(100% - 100px);
        bottom: 5vh;
    }
    h2{
        font-size: 20vw;
    }
    h3{
        font-size: 4vw;
        letter-spacing: 1px;
        line-height: 1.5em;
    }
    nav.right{
        padding: 2vh 0;
        width: 60px;
       
    }
    section{
        padding-left: 70px;
        background: linear-gradient(to right,  rgb(0, 12, 72) 0%,rgba(0,12,72,0.5) 100%);
    }
    p{
        font-size: 1.6em;
    }
    nav svg{
        width: 15px;
        display: block;
        margin: auto;
        padding: 15px 0px ;
        transition: all .5s ease;
        max-height: 30px;
    }
    
    nav a.active svg{
        width: 30px;
    }
    nav a:hover svg{
        fill: var(--teal);
    }
    ul{
        columns: 1;
    }
    #book h3{
        font-size: 5vw;
        letter-spacing: 0px;
    }
    ul li{
       padding: 5px 0;
       font-size: 1.2em;
       border-width: 0.5px;
    }
    .contact{
        background-image: linear-gradient(to right,  rgba(0,12,72,1) 0%,rgba(0,12,72,0.5) 100%);
        padding-bottom: 0vh;
        overflow-x: hidden ;
        margin-bottom: -5px;
    }
    .contact .van{
        position: sticky;
        bottom: 0px;
        right: 0;
        width: 120%;
        margin-top: 40px;
        margin-bottom: -3px;
    }
    .contact .bottom{
        columns: 1;
        width: 100%;
        position: static;
       
      
    }
    .contact .bottom h3{
        margin-top: 40px;
        margin-bottom: 5px;
        line-height: 1.2em;
        font-size: 2em;
    }
    
}