@font-face {
    font-family: "TTNormsPro";
    src: url("../fonts/TTNormsPro-Light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "TTNormsPro";
    src: url("../fonts/TTNormsPro-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "TTNormsPro", cursive;
    padding: 0;
    margin: 0;
    overflow: overlay;
    transition: background-color 1s ease;
}

#body {
    transition: background-color 1s ease;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

canvas {
    width: 100%;
    height: 100%;
    /* pointer-events: none; */
    position: absolute;
    top: 0;
    left: 0;
}

@media (min-width: 720px) {

    .mobile {
        display: none;
    }

}

@media (min-width: 320px) and (max-width: 640px) {

    .desktop {
        display: none;
    }

}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    overflow: hidden;
    z-index: 200;
}

@media (min-width: 320px) and (max-width: 640px) {

    .preloader h1 {
        font-size: 1.5rem;
        padding: 0;
    }

}

.preloader .text-container {
    display: flex;
    flex-direction: row;
    gap: 1em;
    overflow: hidden;
    color: #000;
    opacity: 0;
}

@media (min-width: 320px) and (max-width: 640px) {

    .preloader .text-container {
        height: 50px;
    }

}

.header {
    width: 100%;
    height: 120px;
    position: absolute;
    z-index: 1000;
}

@media (min-width: 320px) and (max-width: 640px) {

    .header {
        width: 100%;
        height: 96px;
    }

}

.header-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2vw 5vw;
}

.header-brand {
    width: 90px;
    height: 64px;
    position: relative;
}

@media (min-width: 320px) and (max-width: 640px) {

    .header-brand {
        width: 72px;
        height: 56px;
    }

}

.header-logo {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    object-fit: contain;
    background-size: contain;
    position: absolute;
    mix-blend-mode: exclusion;
}

.header-logo.logo-light {
    background-image: url(../logo-light.svg);
}

.header-logo.logo-dark {
    background-image: url(../logo-dark.svg);
}

.menu-lang {
    background-color: transparent;
    padding: 0.875rem 1.875rem;
    box-sizing: border-box;
    font-size: 1.125rem;
    font-weight: 400;
    border-radius: 48px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    margin-right: 1rem;
    transition: all 0.5s ease;
}

.menu-lang:hover {
    background-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,1);
}

.menu-contact {
    background-color: #fff;
    padding: 0.875rem 1.875rem;
    box-sizing: border-box;
    border-radius: 48px;
    font-size: 1.125rem;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

@media (min-width: 320px) and (max-width: 640px) {

    .menu-contact {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

}

.entry {
    height: 100vh;
}

@media (min-width: 320px) and (max-width: 640px) {

    .entry {
        height: 100vh;
        height: 100svh;
    }

}

.entry .entry__title {
    opacity: 0;
    filter: blur(20px);
    -webkit-filter: blur(20px);
    transition: all 2s ease;
    transition-delay: 5s;
}

.entry .entry__title.is-inview {
    opacity: 1;
    filter: blur(0);
    -webkit-filter: blur(0);
}

.ceo {
    max-width: 20vw;
    margin-bottom: 3rem;
}

@media (min-width: 320px) and (max-width: 640px) {

    .ceo {
        max-width: 100%;
        padding: 0 1.5rem;
        font-weight: 300;
    }

}

.overlay {
    filter: brightness(0.65);
    -webkit-filter: brightness(0.65);
}

section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: grid;
    place-items: center;
    background-color: black;
    color: white;
    overflow: hidden;
}

@media (min-width: 320px) and (max-width: 640px) {

    .sec-img {
        height: 100%;
    }

}

.sticky {
    position: sticky !important;
    position: -webkit-sticky !important;
    top: 0;
    z-index: 2;
}

.intro {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.intro .panel {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform-origin: bottom;
    /* background-color: white; */
}

.hero-container {
    position: absolute;
    top: 50%;
    left: 60%;
    height: 90%;
    transform: translate(-50%, -50%);
}

@media (min-width: 320px) and (max-width: 640px) {

    .hero-container {
        height: auto;
        position: relative;
        left: unset;
        right: unset;
        top: unset;
        transform: unset;
    }

}

.hero-container img {
    height: 100%;
}

@media (min-width: 320px) and (max-width: 640px) {

    .hero-container img {
        height: auto;
    }

}

.title-container {
    width: 75%;
    z-index: 999;
    position: relative;
    color: white;
    mix-blend-mode: difference;
}

@media (min-width: 320px) and (max-width: 640px) {

    .title-container {
        width: 100%;
        mix-blend-mode: unset;
    }

}

@media (min-width: 320px) and (max-width: 640px) {

    .title-container {
        width: 100%;
        order: 1;
    }

    .title-container h3 {
        padding: 0 1.5rem;
    }

}

.grid {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1.875rem;
    align-items: flex-start;
    width: 100%;
    padding: 25vh 4vw;
    position: relative;
    box-sizing: border-box;
}

@media (min-width: 320px) and (max-width: 640px) {

    .grid {
        grid-template-columns: auto;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

}

.container {
    padding: 0 5vw;
    box-sizing: border-box;
    max-width: calc(100% - 5vw);
}

@media (min-width: 320px) and (max-width: 640px) {

    .container {
        max-width: 100%;
        padding: 0;
    }

}

h1 {
    font-family: "TTNormsPro", cursive;
    font-size: 2vw;
    font-weight: 300;
    text-align: left;
    letter-spacing: -0.5px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (min-width: 320px) and (max-width: 640px) {

    h1 {
        font-size: 1.5rem;
        padding: 0 1.5rem;
        margin-bottom: 2.5rem !important;
        font-weight: 400;
    }

}

h3 small {
    font-size: 1.5rem;

    opacity: 0;
    filter: blur(20px);
    -webkit-filter: blur(20px);
    transition: all 2s ease;
    transition-delay: 7s;
}

h3 small.is-inview {
    opacity: 0.5;
    filter: blur(0px);
    -webkit-filter: blur(0px);
}

@media (min-width: 320px) and (max-width: 640px) {

    h3 small {
        font-size: 1rem;
    }

}

.entry__title {
    opacity: 0;
    transform: translateY(-50px);
    filter: blur(20px);
    -webkit-filter: blur(20px);
    transition: all 2s ease;
    transition-delay: 6s;
}

.entry__title.is-inview {
    opacity: 1;
    filter: blur(0);
    -webkit-filter: blur(0);
    transform: translateY(0);
}

p {
    width: 40vw;
    line-height: normal;
    font-family: "TTNormsPro", sans-serif;
    font-size: clamp(24px, 1.2vw, 48px);
    text-align: left;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (min-width: 320px) and (max-width: 640px) {

    p {
        width: 100%;
        font-size: 1.25rem;
    }

}

p.description {
    opacity: 0.5;
}

.website-link {
    display: block;
    color: #fff;
    opacity: 0.5;
    text-decoration: none;
    position: absolute;
    bottom: 0;
    cursor: pointer
}

.JL {
    z-index: 999;
    position: absolute;
    top: 35%;
    font-family: "Nova Flat", cursive;
    font-size: 7vw;
    letter-spacing: 0;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.lacantine-logo {
    width: 30vw;
    z-index: 20;
}

.choyxona-logo,
.wknd-logo {
    position: absolute;
    z-index: 20;
}

@media (min-width: 320px) and (max-width: 640px) {

    .choyxona-logo,
    .wknd-logo {
        width: 250px;
    }

}

.choyxona-content-logo,
.wknd-content-logo {
    position: absolute;
    top: 2.5vw;
    /* opacity: 0.25; */
}

@media (min-width: 320px) and (max-width: 640px) {

    .choyxona-content-logo,
    .wknd-content-logo {
        top: 10vw;
    }

}

.choyxona-content-logo {
    width: 15vw;
}

@media (min-width: 320px) and (max-width: 640px) {

    .choyxona-content-logo {
        width: 150px;
    }

}

.wknd-content-logo {
    width: 12vw;
}

@media (min-width: 320px) and (max-width: 640px) {

    .wknd-content-logo {
        width: 150px;
    }

}

.img-container {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.img-container .mask {
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    transform-origin: bottom;
}

.img-container .img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* filter: brightness(0.5);
  -webkit-filter: brightness(0.5); */
}

.img-container .img-scroll {
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0.5);
    -webkit-filter: brightness(0.5);
}

.img-choyxona-az {
    background-image: url(../choyxona-az.jpg);
}

.social-list {
    margin-top: 3rem;
}

.social-item {
    display: inline-block;
    margin-right: 1rem;
}

.social-link {
    color: #fff;
    opacity: 0.5;
    transition: opacity 1s ease;
    font-size: clamp(24px, 1.2vw, 48px);
}

.social-link.linkedin {
    color: #fff;
    opacity: 1;
    text-decoration: none;
    background: transparent;
    padding: 0.5rem 1rem;
    border-radius: 48px;
    font-size: 1.25rem;
    font-weight: 400;
    border: 1px solid #3e3e3e;
    margin-top: 1rem;
    transition: all 200ms ease;
}

.social-link.linkedin:hover {
    background: #232323;
}

@media (min-width: 320px) and (max-width: 640px) {

    .social-link {
        font-size: 1rem;
    }

}

.social-link:hover {
    color: #fff;
    opacity: 1;
}