:root {
    --container: 150px clamp(
        8%,
        calc((100% - 1240px) / 2),
        calc(100% - 1240px)
    );

    --shade1: #070709;
    --shade2: #0D0D0F;
    --shade3: #131315;
    --shade4: #18181B;
    --shade5: #1E1E21;
    --shade6: #242426;
    --shade7: #2A2A2C;
    --shade8: #2F2F32;
    --shade9: #3B3B3E;
    --shade10: #525256;
    --shade11: #66666A;
    --shade12: #7A7A7D;
    --shade13: #8E8E91;
    --shade14: #A2A2A4;
    --shade15: #B6B6B8;
    --shade16: #CACACB;
    --shade17: #DEDEDF;
    --shade18: #F2F2F2;

    --g150: 150px;
    --g130: 130px;
    --g100: 100px;
    --g72: 72px;
    --g68: 68px;
    --g64: 64px;
    --g60: 60px;
    --g56: 56px;
    --g52: 52px;
    --g40: 40px;
    --g32: 32px;
    --g28: 28px;
    --g26: 26px;
    --g24: 24px;
    --g20: 20px;
    --g18: 18px;
    --g16: 16px;
    --g12: 12px;
    --g10: 10px;
    --g8: 8px;
    --g6: 6px;
}

.container {
    padding: var(--container);
}

* {
    font-family: 'Mona Sans';
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    line-height: 1;
}

/* TRANSITIONS */

.tra,
button,
a {
    transition: all 0.25s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* FLEX */

.f-col {
    display: flex;
    flex-direction: column;
}

.f-row {
    display: flex;
    align-items: center;
}

.j-s-b {
    justify-content: space-between;
}

.a-f-e {
    align-items: flex-end;
}

.j-f-e {
    justify-content: flex-end;
}

.g28 {
    gap: var(--g28);
}

.g24 {
    gap: var(--g24);
}

.g10 {
    gap: var(--g10);
}

/* GLOBAL CLASSES */

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
}

/* BREAKPOINT CONTROLS */

.tablet-below {
    display: none;
}

.mobile-below {
    display: none;
}

/* BUTTON MAIN */

.button-main {
    padding: 9px 15px;
    border-radius: 5px;
    background-color: #E6E6E6;
    color: var(--shade6);
    font-variation-settings: 'wght' 600, 'wdth' 105;
    font-size: 14px;
}

.button-main:hover {
    color: var(--shade2);
    background-color: white;
}

.button-main.trans {
    background-color: hsl(0, 0%, 100%, .11);
    padding: 10px 15px;
    backdrop-filter: blur(6px);
    color: #E5E5E5;
    font-variation-settings: 'wght' 550, 'wdth' 105;
}

.button-main.trans:hover {
    background-color: hsl(0, 0%, 100%, .2);
    color: white;
}

.button-main.blue {
    font-variation-settings: 'wght' 550, 'wdth' 105;
    background-color: #3E5CD5;
    color: #F2F5FC;
}

.button-main.blue:hover {
    color: white;
    background-color: #2943D6;
}

/* TYPOGRAPHY */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway';
}

p {
    line-height: 1.5;
}

.tag {
    font-size: 12px;
    font-variation-settings: 'wght' 650, 'wdth' 115;
    margin-bottom: var(--g16);
    text-transform: uppercase;
    color: var(--shade13);
}

h2 {
    font-size: 21px;
    font-variation-settings: 'wght' 700;
    line-height: 1.25;
    color: var(--shade3);
}

/* NAVIGATION */

nav {
    position: fixed;
    top: 0;
    z-index: 100;
    padding: var(--g16) 6%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.navigation-logo {
    justify-self: start;
}

.navigation-logo svg {
    fill: white;
    margin-right: auto;
    transition: inherit;
    height: 17px;
}

.navigation-logo:hover svg {
    transform: scale(.97);
    opacity: .9;
}

.navigation-links-wrap {
    justify-self: center;
}

.nav-link {
    font-size: 13px;
    font-variation-settings: 'wght' 410, 'wdth' 104;
    white-space: nowrap;
    color: #989A9A;
}

.nav-link:hover {
    color: white;
}

nav .button-main {
    align-self: center;
    justify-self: end;
    font-size: 12px !important;
    padding: 9px 14px !important;
}

/* MAIN */

main {
    position: relative;
    width: 100%;
    aspect-ratio: 1.75 / 1 !important;
    overflow: hidden;
    max-height: 100vh;
    padding: var(--g32) 6%;
}

main > * {
    position: relative;
    z-index: 1;
}

main::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: radial-gradient(190.67% 329.44% at 120.55% -137.5%, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.99) 100%);
    content: "";
    display: block;
    z-index: 1;
}

main video {
    position: absolute;
    left: 0;
    z-index: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

main h1 {
    font-size: 27px;
    font-variation-settings: 'wght' 620;
    color: #FCFCFC;
    margin-bottom: var(--g8);
    line-height: 1.2;
}

main p {
    font-size: 16px;
    font-variation-settings: 'wght' 105, 'wght' 420;
    color: #8E9090;
    font-size: 16px;
    margin-bottom: var(--g24);
}

main .client-logo-wrap {
    padding-top: var(--g32);
    margin-top: var(--g72);
    border-top: 1px solid hsl(0, 0%, 100%, .09);
}

main .client-logo-wrap svg {
    height: 21px;
    opacity: .3;
}



/* ABOUT US SECTION */

.about-us-content-wrap {
    margin-top: var(--g56);
    margin-bottom: var(--g72);
}

.about-us-content-block {
    border-left: 1px solid hsl(0, 0%, 0%, .13);
    padding: 6px var(--g24);
}

.about-us-content-block p {
    font-variation-settings: 'wght' 510, 'wdth' 99;
    font-size: 14px;
    color: var(--shade12);
}

.about-us-content-block span {
    color: var(--shade4);
}

.about-us-metric-block span {
    font-size: 34px;
    color: var(--shade5);
    font-variation-settings: 'wght' 650, 'wdth' 125;
}

.about-us-metric-block p {
    font-size: 13px;
    font-variation-settings: 'wght' 500, 'wdth' 102;
    line-height: 1.4;
    color: var(--shade12);
}

.about-us-content-block span {
    margin-bottom: 0;
}


/* PROBLEM SECTION */

.problem-section .background-cross {
    background-image: url(/assets/index/section-cross.png);
    height: 35px;
    width: 100%;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 1px;
    transform: translateY(-100%);
}

.problem-section .background-cross.two {
    transform: translateY(100%) scaleX(-1) scaleY(-1);
    bottom: 1px;
    top: auto;
}

.problem-section {
    padding-top: var(--g130) !important;
    padding-bottom: var(--g130) !important;
    margin: 35px 0;
    overflow: visible;
}

.problem-card {
    background-color: hsl(0, 0%, 100%, .05);
    padding: var(--g18);
    border-radius: 8px;
}

.problem-card-svg-wrap {
    height: 32px;
    aspect-ratio: 1;
    background-color: #101113;
    border-radius: 6px;
    margin-bottom: var(--g20);
}

.problem-card-svg-wrap svg {
    height: 16px;
}

.problem-card h3 {
    color: #F7F7F7;
    font-variation-settings: 'wght' 650;
    font-size: 15px;
    margin-bottom: var(--g6);
}

.problem-card p {
    font-size: 13px;
    font-variation-settings: 'wght' 480;
    color: #8C8C8D;
}

.problem-cards-wrap {
    margin-top: var(--g52);
}

/* INDUSTRIES SECTION */

.industries-cards-wrap {
    margin-top: var(--g40);
    gap: 2px;
}

.industries-card {
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    transition-duration: .4s;
    transition-delay: .15s;
    overflow: hidden;
    height: 500px;
}

.industries-card > * {
    position: relative;
}

.industries-card img {
    filter: saturate(0%) brightness(70%);
    position: absolute;
    transition: inherit;
    left: 0;
    top: 0;
    width: 100%;
    object-fit: cover;
    height: 100%;
    z-index: 0;
}

.industries-card .cover {
    background: linear-gradient(180deg, rgba(0, 0, 0, 18%) 0%, rgba(0, 0, 0, 90%) 100%);
    z-index: 1;
    position: absolute;
    transition: inherit;
    opacity: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.industries-card .content {
    white-space: nowrap;
    text-align: center;
    z-index: 1;
    filter: blur(4px);
    transition: inherit;
    opacity: 0;
}

.industries-card .tag {
    margin-bottom: var(--g8);
    color: #727274 !important;
}

.industries-card h3 {
    font-family: 'Mona Sans';
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: var(--g16);
    font-variation-settings: 'wght' 670, 'wdth' 125;
    color: #FCFCFC;
}

.industries-card .button-main {
    font-size: 12px;
    padding: 8px 13px ;
}

.embla__container {
    display: flex;
}

.industries-card:active .contents,
.industries-card:hover .content {
    opacity: 1;
    transition-delay: .1s;
    padding-bottom: var(--g28);
    filter: blur(0);
}

.industries-card:active,
.industries-card:hover {
    transition-delay: 0s;
    flex: 4;
}

.industries-card:active img,
.industries-card:hover img {
    filter: saturate(100%) brightness(70%);
    scale: 1.05;
}

.industries-card:active .cover,
.industries-card:hover .cover {
    opacity: 1;
}

/* SERVICES SECTION */

.services-section img {
    margin: var(--g52) -5.5%;
}

.services-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: var(--g40);
    row-gap: var(--g52);
}

.services-section-card {
    padding-top: var(--g24);
    border-top: 1px solid hsl(0, 0%, 0%, .1);
}

.services-section-card h3 {
    font-size: 15px;
    font-variation-settings: 'wght' 700;
    transition: inherit;
    color: var(--shade5);
    line-height: 1.2;
    margin-bottom: var(--g6);
}

.services-section-card > p {
    font-size: 13px;
    font-variation-settings: 'wght' 480, 'wdth' 99;
    color: var(--shade13);
    margin-bottom: var(--g20);
    transition: inherit;
}

.services-section-card div p{
    font-size: 12px;
    transition: inherit;
    font-variation-settings: 'wght' 500;
    color: var(--shade14);
}

.services-section-card svg {
    height: 7.5px;
    transition: inherit;
    fill: var(--shade15);
}

@media (min-width: 1024px) {
    .services-section-card:hover {
        cursor: pointer;
        border-color: hsl(0, 0%, 0%, .4);
    }

    .services-section-card:hover h3{
        color: var(--shade1);
    }

    .services-section-card:hover > p {
        color: var(--shade10);
    }

    .services-section-card:hover div svg {
        fill: var(--shade13);
        transform: translateX(3px);
    }

    .services-section-card:hover div p{
        color: var(--shade12);
    }
    
}


@media (max-width: 1360px) {
    :root {
        --container: 140px 6%;

       --g120: 112px;
       --g100: 93px;
        --g72: 67px;
        --g68: 63px;
        --g64: 60px;
        --g60: 56px;
        --g56: 52px;
        --g52: 48px;
        --g40: 37px;
        --g32: 30px;
        --g28: 26px;
        --g26: 24px;
        --g24: 22px;
        --g18: 17px;
        --g16: 15px;
        --g12: 11px;
        --g10: 9px;
        --g8: 7px;
        --g6: 6px;
    }

    /* TYPOGRAPHY */

    .tag {
        font-size: 11px;
    }

    h2 {
        font-size: 20px;
    }

    p.para {
        font-size: 13px;
    }

    /* BUTTON MAIN */

    .button-main {
        padding: 9px 14px;
        font-size: 13px;
    }

    .button-main.trans {
        background-color: hsl(0, 0%, 100%, .11);
        padding: 10px 14px;
    }

    /* NAVIGATION */

    .navigation-logo svg {
        height: 16px;
    }

    .nav-link {
        font-size: 12px;
    }


    /* MAIN */

    main .client-logo-wrap svg {
        height: 19px;
    }

     main h1 {
        font-size: 25px;
    }

    main p {
        font-size: 15px;
    }

    main .client-logo-wrap svg {
        height: 19px;
    }


    /* ABOUT US SECTION */

    .about-us-content-block p {
        font-size: 13px;
    }

    .about-us-metric-block span {
        font-size: 32px;
    }

    .about-us-metric-block p {
        font-size: 12px;
    }

    /* PROBLEM SECTION */

    .problem-section .background-cross {
        height: 28px;
    }

    .problem-section {
        margin: 28px 0;
    }

    .problem-card-svg-wrap {
        height: 30px;
        background-color: #101113;
    }

    .problem-card-svg-wrap svg {
        height: 15px;
    }

    .problem-card h3 {
        font-size: 14px;
    }

    .problem-card p {
        font-size: 12px;
        font-variation-settings: 'wght' 500, 'wdth' 99;
    }

    /* INDUSTRIES SECTION */

    .industries-card {
        height: 450px;
    }


    .industries-card h3 {
        font-size: 21px;
    }

    .industries-card .button-main {
        padding: 8px 12px;
    }

    .industries-card:active,
    .industries-card:hover {
        flex: 5;
    }

    /* SERVICES SECTION */

    .services-section img {
        margin: var(--g52) -4%;
    }

    .services-section-card h3 {
        font-size: 14px;
    }

    .services-section-card > p {
        font-size: 12px;
    }

    .services-section-card a p{
        font-size: 12px;
    }

    .services-section-card svg {
        height: 7.5px;
    }
}



@media (max-width: 1140px) {

    :root {
        --container: 120px 6%;
    }

    .services-section-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-section-card h3 {
        font-size: 15px;
    }

    .services-section-card > p {
        font-size: 13px;
    }

    .industries-card:active,
    .industries-card:hover {
        flex: 6;
    }
    
}

@media (max-width: 900px) {
    
    .embla {
        overflow: hidden;
    }

    .embla__container {
        display: flex;
    }

    .industries-card {
        min-width: 25vw !important;
        flex: 0 !important;
        width: 25vw !important;
    }

    .industries-card:hover {
        flex: 0 !important;
        width: 50vw !important;
        min-width: 50vw !important;
    }
}

button {
    background-color: transparent;
    border: none;
}

nav {
    width: 100%;
}

@media (max-width: 1023px) {

    .tablet-below {
        display: block;
    }

    .no-show-below-tablet {
        display: none;
    }

    /* NAVIGATION */

    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navigation-logo svg {
        height: 15px;
    }

    .nav-link {
        font-size: 12px;
    }

    .hamburger-button {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3px;
        z-index: 11;
        aspect-ratio: 1;
        position: relative;
        transition: scale 0.14s cubic-bezier(0.4, 0.0, 0.2, 1) .14s !important;
    }

    .hamburger-button div {
        height: 3px;
        width: 3px;
        opacity: .9;
        background-color: white;
        transition: transform 0.14s cubic-bezier(0.4, 0.0, 0.2, 1), width 0.14s cubic-bezier(0.4, 0.0, 0.2, 1) .28s ;
        border-radius: 40px;
    }

    nav.open .hamburger-button div {
        opacity: 1;
    }

    nav.open .hamburger-button > :first-child {
        transform: translateX(6px) translateY(6px);
    }

    nav.open .hamburger-button > :nth-child(2) {
        transform: translateY(6px);
    }

    nav.open .hamburger-button > :nth-child(3) {
        transform: translateX(-6px) translateY(6px);
    }

    nav.open .hamburger-button > :nth-child(4) {
        transform: translateX(6px);
    }

    nav.open .hamburger-button > :nth-child(6) {
        transform: translateX(-6px);
    }

    nav.open .hamburger-button > :nth-child(7) {
        transform: translateX(6px) translateY(-6px);
    }

    nav.open .hamburger-button > :nth-child(8) {
        transform: translateY(-6px);
    }

    nav.open .hamburger-button > :nth-child(9) {
        transform: translateX(-6px) translateY(-6px);
    }

    nav.open.anim-off .hamburger-button > :nth-child(1) {
        transform: translateX(1px) translateY(1px);
    }
    nav.open.anim-off .hamburger-button > :nth-child(3) {
        transform: translateX(-1px) translateY(1px);
    }
    nav.open.anim-off .hamburger-button > :nth-child(7) {
        transform: translateX(1px) translateY(-1px);
    }
    nav.open.anim-off .hamburger-button > :nth-child(9){
        transform: translateX(-1px) translateY(-1px);
    }

    nav.anim-off .hamburger-button > :first-child {
        transform: translateX(6px) translateY(6px);
    }

    nav.anim-off .hamburger-button > :nth-child(2) {
        transform: translateY(6px);
    }

    nav.anim-off .hamburger-button > :nth-child(3) {
        transform: translateX(-6px) translateY(6px);
    }

    nav.anim-off .hamburger-button > :nth-child(4) {
        transform: translateX(6px);
    }

    nav.anim-off .hamburger-button > :nth-child(6) {
        transform: translateX(-6px);
    }

    nav.anim-off .hamburger-button > :nth-child(7) {
        transform: translateX(6px) translateY(-6px);
    }

    nav.anim-off .hamburger-button > :nth-child(8) {
        transform: translateY(-6px);
    }

    nav.anim-off .hamburger-button > :nth-child(9) {
        transform: translateX(-6px) translateY(-6px);
    }

    .navigation-links-wrap * {
        opacity: 0;
    }

    nav .navigation-logo {
        z-index: 11;
    }

    .navigation-links-wrap {
        z-index: 10;
        position: fixed;
        left: 0;
        transition-duration: .4s;
        top: 0;
        transform: translateY(-110%);
        width: 100%;
        height: 100vh;
        background-color: #101113;
    }

    nav.open .navigation-links-wrap {
        transform: translateY(0);
    }


    /* MAIN */


    main {
        aspect-ratio: 1 / 1.5 !important;
    }

    main::before {
        background: radial-gradient(154.51% 73.75% at 97.91% 0.82%, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.94) 100%) 
    }

    .client-logo-wrap {
        overflow: hidden;
        justify-content: start !important;
        gap: 50px !important;
    }

    @keyframes client-logo-scroll {
        0% {
            transform; translateX(0);
        }

        100% {
            transform: translateX(-120px)
        }
    }


    main .client-logo-wrap svg {
        height: 18px !important;
        width: 120px !important;
        min-width: 100px !important;
        min-height: 15px !important;
        animation: client-logo-scroll 12s linear infinite;
    }


    /* ABOUT US SECTION */

    @media (max-width: 870px) {
        .about-us-content-wrap {
            flex-direction: column;
            gap: var(--g40);
        }

        .about-us-content-block {
            padding-right: 0;
        }

    }

    @media (max-width: 900px) {
        .about-us-metrics-wrap {
            display: block !important;
        }

        .about-us-metric-block {
            margin-right: var(--g64);
            padding: 6px var(--g24);
            padding-right: 0;
            border-left: 1px solid hsl(0, 0%, 0%, .13);
        }
    }

    .heading-button-wrap {
        flex-wrap: wrap;
    }

    .about-us-metric-block span {
        font-size: 31px;
    }

    .about-us-content-block p {
        font-size: 14px;
    }

    /* FLICKITY DOTS */

    .dot {
        background-color: var(--shade1);
        opacity: .4;
        height: 4px;
        width: 4px;
        border-radius: 50px;
    }

    .dot.is-selected {
        opacity: .8;
    }

    .flickity-page-dots {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--g16);
        margin-top: var(--g32);
    }

    /* PROBLEM SECTION */

    @media (max-width: 961px) {
        .problem-cards-wrap {
            display: block !important;
        }

        .problem-card {
            max-width: 90vw;
            width: 380px;
            padding: var(--g20);
            margin-right: var(--g20);
        }

        .problem-card-svg-wrap {
            height: 32px;
            background-color: #101113;
        }

        .problem-card-svg-wrap svg {
            height: 16px;
        }

        .problem-card h3 {
            margin-bottom: var(--g8);
            font-size: 15px;
        }

        .problem-card p {
            font-size: 12.5px;
            letter-spacing: -0.01em;
        }
        
    }

    .problem-section .background-cross {
        height: 28px;
        background-image: url(/assets/index/section-cross-2.png);
    }

    .problem-section {
        margin: 28px 0;
    }

    .problem-card-svg-wrap {
        height: 30px;
        background-color: #101113;
    }

    .problem-card-svg-wrap svg {
        height: 15px;
    }

    /* SERVICES SECTION */

    .services-section img {
        margin: var(--g52) -3%;
        aspect-ratio: 1.7 / 1;
        object-fit: cover;
        border-radius: 6px;
    }
}


@media (max-width: 480px) {

    :root {
        --container: 100px 5%;

        --g100: 87px;
        --g72: 63px;
        --g68: 59px;
        --g64: 56px;
        --g60: 52px;
        --g56: 49px;
        --g52: 45px;
        --g48: 42px;
        --g44: 38px;
        --g40: 35px;
        --g32: 28px;
        --g28: 24px;
        --g26: 23px;
        --g24: 21px;
        --g18: 16px;
        --g16: 14px;
        --g10: 9px;
        --g8: 7px;
        --g6: 5px;
    }

    .mobile-below {
        display: block;
    }

    /* TYPOGRAPHY */

    .tag {
        font-size: 11px;
    }

    h2 {
        font-size: 19px;
    }

    /* BUTTON MAIN */

    .no-below-mobile {
        display: none !important;
    }

    .button-main {
        font-size: 12px;
        padding: 8px 14px;
    }

    .button-main.trans {
        padding: 9px 14px;
    }



    /* NAVIGATION */

    
    .navigation-logo svg {
        height: 14px;
    }

    /* TODO: */
    nav {
        padding-top: 18px;
    }

    /* MAIN */


    main {
        aspect-ratio: 1 / 1.6 !important;
        padding-bottom: var(--g24) !important;
    }

    main h1 {
        font-size: 20px;
    }

    main p {
        font-size: 13.5px;
    }

    .client-logo-wrap {
        gap: 50px !important;
        margin-top: var(--g44) !important;
        padding-top: var(--g24) !important;
    }


    /* ABOUT US SECTION */

    .about-us-content-block p {
        font-size: 12px;
    }

    .about-us-metrics-wrap {
        display: block !important;
    }

    .about-us-metric-block {
        flex-direction: column;
        gap: var(--g24);
        align-items: start;
    }

    .heading-button-wrap {
        flex-wrap: wrap;
    }

    .about-us-metric-block span {
        font-size: 24px;
    }

    .about-us-content-block p {
        font-size: 13px;
    }

    /* PROBLEM SECTION */

    .services-section-grid {
        grid-template-columns: 1fr;
        row-gap: var(--g24);
    }

    /* INDUSTRIES CARD */

    .industries-card {
        min-width: 25vw !important;
        flex: 0 !important;
        height: 400px;
        width: 25vw !important;
    }

    .industries-card:hover {
        flex: 0 !important;
        width: 87vw !important;
        min-width: 87vw !important;
    }

    .embla__container {
        justify-content: start;
    }

    .industries-card h3 {
        font-size: 16px;
    }
    
    .industries-card .button-main.trans {
        display: none;
    }

}

