﻿@font-face {
    font-family: Antonia;
    src: url(../fonts/Antonia-Variable.otf) format("opentype");
    font-style: normal
}

@font-face {
    font-family: DMSans;
    src: url(../fonts/DMSans-Variable.ttf);
    font-style: normal
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 6vw;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    z-index: 100;
    color: #fff
}

.nav:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    mask-image: linear-gradient(to bottom, #000 25%, #0000);
    -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 25%, rgba(0, 0, 0, 0) 100%);
    transition: .4s ease-in
}

.nav.white .nav__logo {
    color: #fff
}

.nav.white .nav__logo svg {
    color: inherit
}

.nav.white .nav__links {
    color: #454545;
    background: #ffffff47
}

.nav.white .nav__links:hover {
    background: #fff;
    backdrop-filter: blur(0px)
}

.nav.white .nav__menu-btn span {
    background-color: #fff
}

.nav__links {
    display: none
}

.nav__logo {
    display: flex;
    gap: 8px
}

.nav__logo svg {
    transition: .3s
}

.nav__logo .__mark svg {
    width: 46px;
    color: #ff633e
}

.nav__logo .__name svg {
    width: 116px;
    color: #0f0f0f
}

.nav__contact {
    text-align: right
}

.nav__menu-btn {
    width: 40px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 11
}

.nav__menu-btn span {
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #0f0f0f;
    transition: transform .4s ease, all .3s ease
}

.nav__menu-btn span:nth-child(1) {
    top: 20%;
    left: 0;
    transform-origin: left
}

.nav__menu-btn span:nth-child(2) {
    bottom: 20%;
    left: 0;
    transform-origin: right
}

.nav__menu-btn span:nth-child(3),
.nav__menu-btn span:nth-child(4) {
    width: 58%;
    opacity: 0
}

.nav__menu-btn span:nth-child(3) {
    top: 5%;
    left: 33%;
    transform-origin: top left;
    transform: rotate(45deg) scaleX(0)
}

.nav__menu-btn span:nth-child(4) {
    bottom: 5%;
    left: 33%;
    transform-origin: bottom left;
    transform: rotate(-45deg) scaleX(0)
}

.nav__menu-btn.open span:nth-child(1) {
    transform: scaleX(0)
}

.nav__menu-btn.open span:nth-child(2) {
    transform: scaleX(0)
}

.nav__menu-btn.open span:nth-child(3),
.nav__menu-btn.open span:nth-child(4) {
    transform: rotate(45deg) scaleX(1);
    opacity: 1
}

.nav__menu-btn.open span:nth-child(4) {
    transform: rotate(-45deg) scaleX(1)
}

.nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    visibility: hidden;
    transition: transform .5s ease;
    z-index: 99;
    overflow: hidden
}

.nav__menu .bg {
    height: 101%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000d4;
    opacity: 0;
    backdrop-filter: blur(20px);
    transition: .2s
}

.nav__menu .content {
    width: 100%;
    padding: 14vh 6vw 2vh 6vw;
    background-color: #fff;
    transform: translateY(-100%);
    transition: all .4s cubic-bezier(.075, .82, .165, 1)
}

.nav__menu .content .--cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: 100%
}

.nav__menu .content .--cta>.cta-button {
    width: 60%;
    min-width: auto
}

.nav__menu .content .--cta>.cta-button:first-of-type {
    width: 40%
}

.nav__menu .content .--cta>.cta-button:first-of-type .cta-button__arrow-left,
.nav__menu .content .--cta>.cta-button:first-of-type .cta-button__arrow-right {
    display: none
}

.nav__menu .content .--cta>.cta-button:first-of-type .cta-button__text {
    justify-content: center;
    background-color: transparent;
    border: 1px solid #eee;
    color: #0f0f0f
}

.nav__menu .content .--cta>.cta-button:first-of-type:hover .cta-button__text {
    transform: translate(0)
}

.nav__menu .links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px
}

.nav__menu .links li {
    overflow: hidden;
    width: 100%;
    padding: 5px 0;
    margin: -5px
}

.nav__menu .links li:nth-child(1) a {
    transition-delay: .1s
}

.nav__menu .links li:nth-child(2) a {
    transition-delay: .15s
}

.nav__menu .links li:nth-child(3) a {
    transition-delay: .2s
}

.nav__menu .links li:nth-child(4) a {
    transition-delay: .25s
}

.nav__menu .links li:nth-last-child(2) a {
    font-family: DMSans;
    opacity: .6;
    font-size: 2rem;
    transition-delay: .3s;
    margin: 16px 0 8px
}

.nav__menu .links li:nth-last-child(1) a {
    font-family: DMSans;
    opacity: .6;
    font-size: 2rem;
    transition-delay: .3 .5s
}

.nav__menu .links li a {
    color: #0f0f0f;
    display: inline-block;
    text-decoration: none;
    font-size: 14vw;
    line-height: 120%;
    font-family: Antonia;
    transition: color .3s ease;
    position: relative;
    transform: translateY(115%);
    transition: all .8s cubic-bezier(.075, .82, .165, 1)
}

.nav__menu .links li a:hover {
    color: #f0a500
}

.nav__menu .socials {
    display: flex;
    justify-content: left;
    align-items: center;
    list-style: none;
    padding: 40px 0 16px
}

.nav__menu .socials li {
    margin: 0 20px 0 0;
    opacity: 0
}

.nav__menu.open {
    visibility: visible
}

.nav__menu.open .bg {
    opacity: 1
}

.nav__menu.open .content {
    transform: translate(0)
}

.nav__menu.open .content>a {
    transform: scale(1);
    opacity: 1
}

.nav__menu.open .links li a {
    transform: translate(0)
}

.nav__menu.open .socials li {
    opacity: 1
}

@media (min-width: 768px) {
    .nav {
        padding: 30px 3vw
    }

    .nav__links {
        display: block;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        background: #dcdcdc47;
        color: #0f0f0f;
        backdrop-filter: blur(10px);
        padding: .3rem .3rem .3rem 40px;
        border-radius: 500px;
        transition: .3s
    }

    .nav__links:hover {
        background: #ffffffd7 !important
    }

    .nav__links a {
        transition: .2s
    }

    .nav__links a:hover {
        color: #ff633e
    }

    .nav__links .cta-button {
        min-width: 240px !important
    }

    .nav__menu-btn {
        display: none
    }
}

@font-face {
    font-family: Antonia;
    src: url(../fonts/Antonia-Variable.otf) format("opentype");
    font-style: normal
}

@font-face {
    font-family: DMSans;
    src: url(../fonts/DMSans-Variable.ttf);
    font-style: normal
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background-color .3s ease;
    position: relative;
    overflow: hidden;
    width: fit-content;
    min-width: 200px;
    margin: 0 auto
}

.cta-button.secondary {
    min-width: 150px;
    width: fit-content
}

.cta-button.secondary .cta-button__text {
    border: 1px solid #eee;
    background-color: transparent;
    color: #0f0f0f;
    justify-content: center;
    padding-left: 25%;
    padding-right: 25%
}

.cta-button.secondary .cta-button__arrow-right,
.cta-button.secondary .cta-button__arrow-left {
    display: none
}

.cta-button.secondary:hover {
    color: #fff !important
}

.cta-button.secondary:hover .cta-button__text {
    transform: none;
    color: #fff
}

.cta-button.white {
    color: #0f0f0f
}

.cta-button.white .cta-button__text,
.cta-button.white .cta-button__arrow-left,
.cta-button.white .cta-button__arrow-right {
    background-color: #fff
}

.cta-button__text {
    display: flex;
    align-items: center;
    position: relative;
    background-color: #ff633e;
    font-size: 14px;
    flex: 1;
    border-radius: 999px;
    padding: 2.1rem 3rem;
    transition: all .3s ease
}

.cta-button__arrow-left,
.cta-button__arrow-right {
    background-color: #ff633e;
    padding: 1.5rem;
    border-radius: 100px;
    font-size: 0;
    transition: all .3s ease
}

.cta-button__arrow-left {
    position: absolute;
    opacity: 0;
    left: 0%;
    transform: translate(-50%) scale(0);
    transition: all .3s ease
}

.cta-button:hover {
    color: #fff !important
}

.cta-button:hover .cta-button__text {
    transform: translate(calc(3rem + 27px));
    background-color: #0f0f0f
}

.cta-button:hover .cta-button__arrow-left {
    opacity: 1;
    transform: translate(0) scale(1);
    background-color: #0f0f0f
}

.cta-button:hover .cta-button__arrow-right {
    transform: translate(50%) scale(0);
    background-color: #0f0f0f
}

@font-face {
    font-family: Antonia;
    src: url(../fonts/Antonia-Variable.otf) format("opentype");
    font-style: normal
}

@font-face {
    font-family: DMSans;
    src: url(../fonts/DMSans-Variable.ttf);
    font-style: normal
}

.section-title {
    text-align: center
}

.section-title.has-padding {
    padding: 11vh 6vw 5vh
}

.section-title__subtitle {
    color: #ff5a3d;
    font-weight: 500;
    font-size: 1.8rem;
    margin-bottom: 16px
}

.section-title__heading {
    font-size: clamp(5rem, 6vw, 7rem);
    font-weight: 400;
    line-height: 1.2;
    width: 100%;
    font-family: Antonia;
    perspective: 2000px
}

.section-title__description {
    color: #7c7c7c;
    font-size: 2rem;
    max-width: 600px;
    width: 90%;
    font-weight: 400;
    margin: 16px auto 24px;
    line-height: 1.5
}

@media (min-width: 1025px) {
    .section-title.has-padding {
        padding: 15vh 3vw 5vh
    }

    .section-title__heading {
        max-width: 70%;
        margin: auto;
        font-size: clamp(5rem, 6vw, 8rem)
    }

    .section-title__description {
        width: 38%;
        margin: 8px auto 40px
    }
}

@media (min-width: 1900px) {
    .section-title.has-padding {
        padding: 15vh 0 5vh
    }

    .section-title__heading {
        max-width: 60%
    }

    .section-title__description {
        font-size: 1.8rem
    }
}

@font-face {
    font-family: Antonia;
    src: url(../fonts/Antonia-Variable.otf) format("opentype");
    font-style: normal
}

@font-face {
    font-family: DMSans;
    src: url(../fonts/DMSans-Variable.ttf);
    font-style: normal
}

.footer {
    padding: 30vh 6vw 40px 6vw;
    background: #fff;
    position: relative;
    margin-top: 20vh
}

.footer__lines {
    display: flex;
    position: absolute;
    width: 100%;
    height: 40vh;
    top: -15vh;
    left: 0;
    overflow: hidden;
    pointer-events: none
}

.footer__lines:after {
    content: "";
    width: 150%;
    height: 10vh;
    border-radius: 50%;
    position: absolute;
    bottom: -7%;
    left: 50%;
    translate: -50% 51%;
    background-color: #fff
}

.footer__lines .bar {
    flex: 1 1 14.2857142857%;
    transform-origin: bottom;
    transform: scaleY(0);
    background: linear-gradient(to top, #ff623d, transparent)
}

.footer__lines .bar:nth-child(1),
.footer__lines .bar:nth-child(7) {
    display: none
}

.footer__lines .bar:nth-child(2),
.footer__lines .bar:nth-child(6) {
    background: linear-gradient(to top, #ea38d0, transparent)
}

.footer__lines .bar:nth-child(3),
.footer__lines .bar:nth-child(5) {
    background: linear-gradient(to top, #ff623d 30%, transparent)
}

.footer__lines .bar:nth-child(4) {
    background: linear-gradient(to top, #ff623d 50%, transparent)
}

.footer__lines .--mark {
    position: absolute;
    top: auto;
    right: unset;
    bottom: 18%;
    left: 50%;
    translate: -50% 0;
    scale: .75
}

.footer__lines .--mark .logo {
    color: #fff;
    transform: scale(0);
    width: 150px;
    height: auto
}

.footer__lines .--mark .avatar-wrap {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(0);
    opacity: 0
}

.footer__lines .--mark .avatar-wrap img {
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
    animation: float 3s ease-in-out infinite
}

.footer__lines .--mark .avatar-wrap.a1 {
    width: 40px;
    height: 40px;
    top: 16%;
    left: 10px
}

.footer__lines .--mark .avatar-wrap.a1 img {
    animation-delay: 1s
}

.footer__lines .--mark .avatar-wrap.a2 {
    top: -24px;
    left: 100px
}

.footer__lines .--mark .avatar-wrap.a2 img {
    animation-delay: 1.5s
}

.footer__lines .--mark .avatar-wrap.a3 {
    width: 30px;
    height: 30px;
    top: 70px;
    left: 95px
}

@keyframes float {

    0%,
    to {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.footer .__cta {
    margin: 24px 0
}

.footer .__cta>div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px
}

.footer .__cta>div .cta-button {
    margin: 0
}

.footer .__cta>div .cta-button p {
    text-align: center
}

.footer .__legal {
    font-size: 1.5rem;
    margin-top: 40px;
    opacity: .4;
    text-align: center
}

.footer .__legal a {
    font-size: inherit
}

.footer .__legal>div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 8px
}

.footer .__links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 24px;
    margin-top: 40px;
    border-top: 1px solid #eee
}

.footer .__links a {
    margin: 16px 0;
    transition: color .3s;
    font-size: 2rem
}

.footer .__links a:hover {
    color: #ff633e
}

.footer .__links svg {
    display: none
}

.footer .__links div:first-child a {
    text-align: right
}

@media (min-width: 768px) {
    .footer {
        margin-top: 50vh
    }

    .footer:before {
        content: "";
        position: absolute;
        bottom: -28%;
        left: 50%;
        transform: translate(-50%);
        width: 140%;
        height: 42%;
        filter: blur(40px);
        background: radial-gradient(ellipse at center bottom, rgb(255, 98, 61) 60%, transparent 20%);
        transition: all .6s;
        pointer-events: none;
        z-index: 0
    }

    .footer .__links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8vw;
        margin-bottom: 10vh
    }

    .footer .__links svg {
        display: block;
        width: 30px;
        color: #e3e3e3
    }

    .footer .__links div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px
    }
}

@media (min-width: 1025px) {
    .footer {
        margin-top: 40vh;
        padding: 40vh 3vw 40px 3vw
    }

    .footer__lines {
        display: flex;
        position: absolute;
        width: 100%;
        padding: 0 3vw;
        height: 80vh;
        top: -50vh;
        left: 0;
        overflow: hidden
    }

    .footer__lines:after {
        content: "";
        width: 150%;
        height: 30vh;
        translate: -50% 65%
    }

    .footer__lines .bar {
        flex: 1 1 14.2857142857%;
        transform-origin: bottom;
        transform: scaleY(0);
        background: linear-gradient(to top, #ff623d, transparent)
    }

    .footer__lines .bar:nth-child(1),
    .footer__lines .bar:nth-child(7) {
        display: block;
        background: linear-gradient(to top, #B88AF7, transparent)
    }

    .footer__lines .bar:nth-child(1),
    .footer__lines .bar:nth-child(7) {
        background: linear-gradient(to top, #B88AF7, transparent)
    }

    .footer__lines .bar:nth-child(2),
    .footer__lines .bar:nth-child(6) {
        background: linear-gradient(to top, #ea38d0, transparent)
    }

    .footer__lines .bar:nth-child(3),
    .footer__lines .bar:nth-child(5) {
        background: linear-gradient(to top, #ff623d 20%, transparent)
    }

    .footer__lines .bar:nth-child(4) {
        background: linear-gradient(to top, #ff623d 30%, transparent)
    }

    .footer__lines .--mark {
        scale: .9;
        bottom: 16%
    }

    .footer .__cta>div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: fit-content;
        margin: auto
    }

    .footer .__legal {
        font-size: 1.5rem;
        margin-top: 40px;
        opacity: .4;
        text-align: center;
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .footer .__legal>div {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px
    }

    .footer .__links {
        gap: 5vw;
        margin: 80px auto 108px
    }

    .footer .__links div {
        gap: 24px;
        width: 36%
    }

    .footer .__links div a {
        flex: 1
    }

    .footer .__links div:first-child a {
        text-align: right
    }
}

@font-face {
    font-family: Antonia;
    src: url(../fonts/Antonia-Variable.otf) format("opentype");
    font-style: normal
}

@font-face {
    font-family: DMSans;
    src: url(../fonts/DMSans-Variable.ttf);
    font-style: normal
}

body,
html {
    font-size: 8px
}

@media (min-width: 1900px) {

    body,
    html {
        font-size: 9px
    }
}

.index-page {
    height: 100vh
}

:root {
    font-family: DMSans, Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    font-synthesis: none;
    text-rendering: optimizeLegibility
}

a {
    text-decoration: none;
    display: block;
    font-size: 1.7rem;
    color: inherit
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent
}

.video-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden
}

.video-wrapper.--m .video-wrapper__button-wrapper {
    bottom: 2.2rem
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.video-wrapper__button-wrapper {
    position: absolute;
    top: unset;
    right: 1.5rem;
    bottom: 1.5rem;
    left: unset;
    width: 30px;
    aspect-ratio: 1/1;
    background: #00000037;
    border: none;
    border-radius: 500px;
    opacity: 0;
    transition: .4s;
    display: flex;
    justify-content: center;
    align-items: center
}

.video-wrapper__button {
    border: 0;
    background: transparent;
    box-sizing: border-box;
    width: 0;
    height: 60%;
    transition: .1s all ease;
    cursor: pointer;
    scale: .65;
    translate: 1px 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #ffffff
}

.video-wrapper__button.play {
    border-style: double;
    border-width: 0px 0 0px 14px;
    translate: 0 0
}

.video-wrapper:hover .video-wrapper__button-wrapper {
    opacity: 1
}

section.intro {
    width: 100%;
    padding: 20vh 6vw 0 6vw;
    text-align: center;
    position: relative;
    overflow: hidden
}

section.intro h2 {
    font-size: clamp(6rem, 6vw, 9rem);
    line-height: 106%;
    font-variation-settings: "wght"325, "opsz"48
}

section.intro:before {
    content: "";
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translate(-50%);
    width: 180%;
    height: 52%;
    filter: blur(20px);
    background: radial-gradient(ellipse at center top, rgb(255, 98, 61) 60%, transparent 20%);
    transition: all .6s;
    pointer-events: none;
    z-index: 0;
    animation: shift 6s linear infinite alternate
}

@keyframes shift {
    0% {
        transform: translate(-50%) scaleY(1)
    }

    33.33% {
        transform: translate(-60%) scaleY(1.4)
    }

    66.66% {
        transform: translate(-40%) scaleY(1.4)
    }

    to {
        transform: translate(-50%) scaleY(1)
    }
}

@media (min-width: 768px) {
    section.intro {
        padding: 20vh 3vw 5vh
    }

    section.intro:before {
        width: 150%;
        height: 60%
    }
}