@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
body {
    margin: 0;
    padding: 0;
    font-family: 'Jovari', sans-serif;
    letter-spacing: 0.1em;
    line-height: 1.6;
    min-height: 500svh;
    font-size: 16px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.poppins{
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0em;
}

body.dark {
    background-color: #111827;
    color: #fff;
}

@font-face {
    font-family: 'Jovari';
    src: url(./fonts/futura-maxi-300.otf) format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Jovari';
    src: url(./fonts/futura-maxi-400.otf) format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Jovari';
    src: url(./fonts/futura-maxi-600.otf) format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Jovari';
    src: url(./fonts/futura-maxi-700.otf) format('opentype');
    font-weight: 700;
    font-style: normal;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: transform 0.3s ease-in-out;
}

header.hidden {
    transform: translateY(-102%);
}

header svg {
    width: 150px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 96px;
}

.herobg {
    position: absolute;
    background-image: url(./img/hero.webp);
    background-size: cover;
    background-position: bottom center;
    height: 100%;
    width: 100%;
    inset: 0;
    animation: hbg 5s ease-out;
}

@keyframes hbg {
    from {
        scale: 1.1;
    }

    to {
        scale: 1;
    }
}

.hoverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #111827b0, #11182700 25%);
    pointer-events: none;
}

.menu {
    font-size: 28px;
    font-weight: 300;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
}

.menu:hover {
    cursor: pointer;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-family: 'Jovari', sans-serif;
}

.hero .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2;
    text-shadow: 0 .3em .5em #00000040;
}

h1 {
    font-size: 60px;
    text-transform: uppercase;
}

.caption {
    font-size: 24px;
    font-weight: 300;
    max-width: 820px;
}



h2 {
    font-weight: 600;
    /* text-transform: uppercase; */
    font-size: 30px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.textbody {
    font-weight: 300;
    max-width: 500px;
    text-align: justify;
    line-height: 1.75;
}

body.dark .textbody {
    color: #cbd5e1;
}

.innerg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.simg {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    box-shadow: 20px 50px 100px -25px rgba(0, 0, 0, 0.5);
    box-shadow: 20px 50px 100px -25px #9ca3af;
    aspect-ratio: 1.5;
    border: 1px solid #ffffff;
    border-radius: 20px;
}


body.dark .simg {
    box-shadow: 20px 50px 100px -25px #03071280;
    border: 1px solid #9ca3af;
}

.hbreak {
    display: block;
}

.innersections {
    padding: 20svh 0;
    display: grid;
    gap: 20svh;
    padding-bottom: 10svh;
}

.tbreak {
    height: 25px;
    width: 100%;
}


.headerbg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffffd0;
    backdrop-filter: blur(20px);
    transform: translateY(-102%);
    border-bottom: 1px solid #00000010;
    transition: transform 0.3s ease-in-out;
}

body.dark .headerbg {
    background-color: #111827e0;
    border-bottom: 1px solid #ffffff10;
}

body.scrolled .headerbg {
    transform: translateY(0%);
}

body.scrolled .header {
    color: #000;
}

body.dark .header {
    color: #fff;
}

.jssec {
    font-size: 64px;
    width: 100%;
    overflow: hidden;
    mask: linear-gradient(to right, #00000000, #000000 20%, #000000 80%, #00000000);
    white-space: nowrap;
}

.jsscont {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 200px;
    line-height: 1.1;
    padding: 0 50vw;
}

.i3g {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 100px;
    align-items: center;
}

.hcenter {
    text-align: center;
}

.wimg {
    aspect-ratio: 1.97;
}

.bentog {
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 10px 40px 100px -25px #9ca3af;
    border: 1px solid #ffffff;
    align-items: center;
    border-radius: 20px;
    max-width: 1280px;
    margin: 0 auto;
}

body.dark .bentog {
    box-shadow: 10px 40px 100px -25px #03071280;
    border: 1px solid #1f2937;
    background: #1a253d;
}

.bentog .simg,
body.dark .bentog .simg {
    box-shadow: none;
    border-radius: 0;
    border: none;
    display: block;
    aspect-ratio: 1.3;
}

.bentog>div:nth-child(2),
.bentog>div:nth-child(3) {
    padding: 50px;
}

.bentog .textbody {
    max-width: unset;
}

.bentog h2 {
    margin-bottom: 20px;
}

.bentog .tbreak {
    height: 15px;
}

.bentog>div:nth-child(1) .simg {
    border-top-left-radius: 20px;
}

.bentog>div:nth-child(4) .simg {
    border-bottom-right-radius: 20px;
}

.gas {
    align-items: start;
}

.gas .simg {
    margin-bottom: 40px;
}

section.footer {
    font-weight: 300;
    margin-bottom: 15svh;
    font-size: 13px;
    min-height: 75lvh;
}

section.footer .divider {
    /* border-top: 1px solid #374151; */
    margin-bottom: 10svh;
}

.fbold {
    font-weight: 400;
    font-size: 14px;
}

.disclaimer{
    font-size: 12px;
    color: #64748b;
    max-width: 500px;
    display: block;
}

body.dark .footerbody{
    color: #cbd5e1;
}

.fhead{
    color: #fff;
    margin-bottom: 5px;
    font-weight: 400;
}

.s10 h2{
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ficon{
    color: #64748b;
}

.fec{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.flogo{
    width: 160px;
    margin-bottom: 30px;
}

body.dark .flogo{
    color: #64748b;
}

.screen-menu{
    position: fixed;
    top: -100lvh;
    right: 0px;
    height: 100lvh;
    width: 100%;
    z-index: 99;
    background: #111827;
    transition: all 0.6s cubic-bezier(0.76, 0, 0.24, 1);
    display: grid;
    align-items: center;
    color: #64748b;
}


.screen-menu.open{
    top: 0px;
}

.menu{
    transform-origin: center;
    transition: rotate 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu svg{
    width: 16px;
    height: 16px;
}

.menu.active{
    rotate: 45deg;
}

.smcont{
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
    user-select: none;
}

.smcont > *:not(.jmenu), .smcont > a div{
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    transition: color 0.3s ease-in-out;
}

.smcont > *:not(.jmenu):hover{
    color: white;
    cursor: pointer;
}

.mwhite{
    color: white;
}

.jmenu{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.jmenu > div{
    transition: color 0.3s ease-in-out;
}

.jmenu > div:hover{
    color: #fff;
    cursor: pointer;
}

a, a:visited, a:active{
    color: inherit;
    text-decoration: none;
}

header a{
    display: grid;
}

.vimeo-container {
    padding: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: absolute;
    z-index: 0;
  }
  .vimeo-container iframe {
    box-sizing: border-box;
    width: 177.77777778vh;
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .header > a{
    display: flex;
    align-items: center;
    gap: 1em;
  }

  .header .poppins{
    position: relative;
    font-size: 30px;
    line-height: 1;
  }

  .ihg{
    grid-template-columns: 2fr 1fr;
  }

  .tblg{
    font-size: 20px;
    font-weight: 300;
    line-height: 2;
  }

  .sh2{
    font-size: 36px;
  }

  .sh2 span{
    display: block;
    font-size: 20px;
    margin-bottom: 0px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

.cmd{
    font-size: 24px;
    max-width: 820px;
    text-align: center;
    font-weight: 300;
    line-height: 2;
    margin: 0 auto;
    margin-bottom: 80px;
}
/* 
@media (min-width: 1300px){
    .lir > div:first-child{
        text-align: right;
    }
    .lir > div:first-child .textbody{
        text-align: right;
        margin-left: auto;
    }
} */

.s2 .innerg{
    margin-top: 80px;
}

.s2 .lil{
    margin-top: 100px;
}


.poppins sup{
    font-size: 0.6em;
}

.vimeo{
    display: grid;
}

.vimeo iframe{
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    max-height: calc(100svh - 96px);
}

header.mo{
    color: #fff;
}

header{
    transition: color 0.3s ease-in-out;
}

@media (max-width: 1300px) {

    .bentog .simg,
    body.dark .bentog .simg {
        aspect-ratio: 1.2;
    }



    .innersections {
        gap: 10svh;
    }
    .bentog {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .bentog > div:nth-child(4){
        grid-row:3
    }
    .bentog>div:nth-child(1) .simg {
        border-radius: 20px 20px 0 0;

    }
    .i3g {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .i3g > div:last-child{
        grid-row: 1;
        max-width: 600px;
        margin: 0 auto;
    }

    .i3g > div:first-child{
        margin: 0 auto;
    }

    .s10 h2{
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    .innerg {
        gap: 80px;
    }
}

@media (max-width: 960px){
    .innerg {
        gap: 60px;
    }
    .bentog {
        max-width: 500px;
    }
}

@media (max-width: 767px){
    .innerg {
        grid-template-columns: 1fr;
    }

    .lir > div:last-child{
        grid-row: 1;
    }

    h2{
        text-align: center;
        font-size: 24px;
    }
    .bentog>div:nth-child(2), .bentog>div:nth-child(3) {
        padding: 20px;
    }
    .container {
        padding: 0 30px;
    }

    .header{
        transition: padding 0.3s ease-in-out;
    }

    body.scrolled .header{
        padding: 20px 0;
    }

    header svg {
        transition: width 0.3s ease-in-out;
    }

    body.scrolled header svg {
        width: 150px;
    }

    body.scrolled header .menu svg {
        width: 16px;
    }
    .innerg {
        gap: 30px;
    }
    h2 {
        margin-bottom: 30px;
    }
    .innersections {
        gap: 20svh;
    }
    .tblg {
        font-size: 18px;
    }
    .header > a {
        flex-direction: column;
        gap: 0.25em;
        align-items: flex-start;
    }
    .header .poppins {
        font-size: 18px;
        padding-left: 49px;
    }
    .hero {
        padding-top: 118px;
    }
    .sh2 {
        font-size: 30px;
    }
    .innersections {
        padding: 10svh 0;
    }
}
