:root {
    --dark-grey: #101215;
    --medium-grey: #4E4E4E;
    --gold: #B89427;
    --medium-gold: #CBA135;
    --light-gold: #EDD77F;
    --gold-one: #A98D51;
    --gold-two: #AA8E52;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    background-color: var(--dark-grey);
    cursor: url('../images/cursor-mini.svg') 3 3, auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', sans-serif;
}

html[lang="ru"] h1,
html[lang="ru"] h2,
html[lang="ru"] h3,
html[lang="ru"] h4,
html[lang="ru"] h5,
html[lang="ru"] h6 {
    font-family: 'Forum', sans-serif;
}

p {
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1096px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cursor-ring {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    opacity: 1;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, border 0.15s ease-out;
}

.cursor-ring::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-two) 0%, transparent 70%);
    mix-blend-mode: screen;
    opacity: 0.2;
    transition: transform 0.05s linear, height 0.3s ease-in-out, width 0.3s ease-in-out, opacity 0.3s ease-in-out;
    z-index: 9999;
}

.cursor-ring.cursor-hover {
    border: 2px solid var(--gold-two);
}

.cursor-ring.cursor-hover::after {
    width: 200px;
    height: 200px;
    opacity: 0.3;
}

.cursor-ring.on-package::after {
    width: 300px;
    height: 300px;
    opacity: 0.3;
}

/* Preloader */

main{
    overflow: hidden;
}

#preloader {
    position: fixed;
    inset: 0;
    background: #101215;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    z-index: 9998;
    transition: opacity 0.5s ease;
}

#preloader .logo{
    position: fixed;
    inset: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    width: 200px !important;
    height: 100px !important;
    display: flex;
    justify-content: center;
    animation: pulse 1.2s infinite;
}

#preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.0);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 1;
  }
}


/* Header */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.5s ease-in-out;
}

html[lang="fr"] header .container {
    max-width: 1200px;
}

header .mobile {
    display: none;
}

header .hamburger-menu {
    cursor: url('../images/cursor-big.svg') 6 6, auto;
    display: none;
    flex-flow: column wrap;
    height: 16px;
    justify-content: space-between;
    z-index: 1000;
}

header .hamburger-menu .bar-bottom,
header .hamburger-menu .bar-top {
    background: var(--white);
    height: 1px;
    margin: 0px 0;
    transform-origin: left;
    transition: all .5s;
    width: 24px;
    border-radius: 1px;
}

header .hamburger-menu .bar-middle {
    background: var(--white);
    height: 1px;
    margin: 0px 0;
    transform-origin: left;
    transition: all .5s;
    width: 24px;
    align-self: flex-end;
    border-radius: 1px;
}

header .hamburger-menu.open .bar-top {
    transform: rotate(45deg);
    width: 21px;
}

header .hamburger-menu.open .bar-middle {
    opacity: 0;
    transform: translateX(1rem)
}

header .hamburger-menu.open .bar-bottom {
    transform: rotate(-45deg);
    width: 21px;
}

.header {
    position: relative;
}

nav {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 200;
    font-family: 'Cinzel', sans-serif;
    text-transform: lowercase;
    position: relative;
    cursor: url('../images/cursor-big.svg') 6 6, auto;
}

html[lang="ru"] nav a {
    font-family: 'Forum', sans-serif;
}

nav a:not(.logo)::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 100%;
    height: 1px;
    border-radius: 1px;
    background-color: var(--white);
    transform: translateX(-50%) scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-in-out;
}

nav a:not(.logo):hover::after {
    transform: translateX(-50%) scaleX(1);
}

nav a:not(:hover)::after {
    transform-origin: right;
    transform: translateX(-50%) scaleX(0);
}

.logo {
    display: flex;
    height: 100px;
    transition: height 0.5s ease-in-out;
}

.logo svg {
    height: 100%;
    width: auto;
}

header.scrolled {
    background-color: #101215a1;
    backdrop-filter: blur(4px);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
}

header.scrolled .logo {
    height: 75px;
}

/* Hero */

#hero {
    position: relative;
    max-width: 100vw;
}

.hero-bg {
    width: 100%;
    display: block;
}

#hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            #101215 3.81%,
            rgba(16, 18, 21, 0) 55.44%,
            #101215 77.76%,
            #101215 107.07%);
    z-index: 1;
}

.hero {
    position: absolute;
    left: 0;
    z-index: 999;
    color: white;
    text-align: center;
    top: 30rem;
    width: 100%;
}

.hero .container {
    max-width: 1400px;
}

.hero h1 {
    color: var(--white);
    font-size: 10rem;
    font-weight: 400;
    line-height: 8.25rem;
}

.hero h1 span:first-child {
    display: block;
    line-height: 8.5rem;
    width: fit-content;
    margin-right: auto;
}

.hero h1 span:last-child {
    display: block;
    line-height: 8.5rem;
    width: fit-content;
    margin-left: auto;
}

html[lang="ru"] .hero .container {
    max-width: 1420px
}

html[lang="ru"] .hero h1 {
    font-size: 9rem;
}

html[lang="ru"] .hero h1 span:first-child {
    line-height: 7rem;
}

html[lang="ru"] .hero h1 span:last-child {
    line-height: 7rem;
}

html[lang="cn"] .hero .container {
    max-width: 1220px
}
html[lang="cn"] .hero h1 {
    font-size: 10rem;
}
html[lang="cn"] .hero h1 span:first-child {
    line-height: 11rem;
}
html[lang="cn"] .hero h1 span:last-child {
    line-height: 11rem;
}

html[lang="fr"] .hero .container {
    max-width: 1420px;
}

html[lang="fr"] .hero h1 {
    font-size: 9rem;
}

html[lang="fr"] .hero h1 span:first-child {
    line-height: 7rem;
}

html[lang="fr"] .hero h1 span:last-child {
    line-height: 7rem;
}

.hero span {
    display: inline-block;
    opacity: 0;
}

.parallax-wrapper {
    position: relative;
    height: 1616px;
    overflow: hidden;
}

.keyart,
.keyart_layer {
    height: 1500px;
}

#parallax {
    display: block;
}

.keyart {
    position: relative;
    z-index: 10;
}

.keyart_layer {
    background-position: bottom center;
    background-size: auto 1574px;
    background-repeat: repeat-x;
    width: 100%;
    position: absolute;
}

@media (min-width: 1920px) {
    .keyart_layer {
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }
}

.keyart_layer.parallax {
    position: absolute;
}

#keyart-0 {
    background-image: url('../images/parallax/nebo.png');
}

#keyart-1 {
    background-image: url('../images/parallax/sunce.png');
}

#keyart-2 {
    background-image: url('../images/parallax/pozadina.png');
}

#keyart-3 {
    background-image: url('../images/parallax/svetlost.png');
    opacity: 1;
    transition: opacity 0.1s linear;
}

#keyart-4 {
    background-image: url('../images/parallax/efekat.png');
    opacity: 1;
    transition: opacity 0.1s linear;
}

#keyart-5 {
    background-image: url('../images/parallax/loza.png');
}

#keyart-6 {
    background-image: url('../images/parallax/loza-mrak.png');
    opacity: 0;
    transition: opacity 0.1s linear;
}

#keyart-7 {
    background-image: url('../images/parallax/levo.png');
    background-repeat: no-repeat;
}

#keyart-8 {
    background-image: url('../images/parallax/desno.png');
    background-repeat: no-repeat;
}

#keyart-scrim {
    opacity: 0;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1500px;
    z-index: 1000;
    pointer-events: none;
    inset: 0;
    background: linear-gradient(180deg, #101215 3.81%, rgba(16, 18, 21, 0) 55.44%, #101215 77.76%, #101215 107.07%);
}

.gradient-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1500px;
    z-index: 1000;
    pointer-events: none;
    inset: 0;
    background: linear-gradient(0deg, #101215 1%, rgba(0, 0, 0, 0) 50.82%);
}

/* Why invest in wine */

#why-invest {
    z-index: 100;
    position: relative;
}

.why-invest {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-invest .icon {
    display: flex;
}

.why-invest h2 {
    color: var(--white);
    text-transform: lowercase;
    font-size: 4.125rem;
    line-height: 1;
    font-weight: 400;
    margin-top: 1.375rem;
    text-align: center;
}

.why-invest p {
    color: var(--white);
    font-size: 1.625rem;
    font-weight: 200;
    line-height: 2.5rem;
    text-align: center;
    margin-top: 2.5rem;
}

/* How it works */
#how-it-works {
    margin-top: 20rem;
}

.how-it-works {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how-it-works h2 {
    color: var(--white);
    text-transform: lowercase;
    font-size: 4.125rem;
    font-weight: 400;
    line-height: 1;
    position: relative;
}

#how-it-works h2 span {
    display: block;
    width: 100px;
    height: 1px;
    background-color: #b89427;
    margin: 2.25rem auto 0;
    transform-origin: center;
    opacity: 1;
}

.how-it-works .steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 8rem;
    width: 100%;
    row-gap: 9.75rem;
    column-gap: 3rem;
}

.how-it-works .steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    max-width: 464px;
}

.how-it-works .steps .step:last-child {
    max-width: initial;
    width: 100%;
}

.how-it-works .steps .step .image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 458px;
    margin-bottom: 6.25rem;
    position: relative;
    /* mask: linear-gradient(-60deg, #fff 30%, #fff5, #fff 70%) right/350% 100%;
    animation: shimmer 5s infinite; */
}

/* @keyframes shimmer {
  100% {
    mask-position: left;
  }
} */

.how-it-works .steps .step .image .number {
    width: 148px;
    height: 148px;
    background-color: var(--dark-grey);
    color: var(--gold);
    border-radius: 50%;
    font-size: 145px;
    font-family: 'Forum', sans-serif;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.how-it-works .steps .step .image .number span {
    margin-left: 5px;
}

.how-it-works .steps .step:last-child .image {
    width: auto;
}

.how-it-works .steps .step .image img {
    width: 100%;
}

.how-it-works .steps .step h3 {
    color: var(--gold);
    font-weight: 400;
    text-transform: lowercase;
    font-size: 2.75rem;
    line-height: 3rem;
    height: 92px;
    text-align: center;
}

.how-it-works .steps .step:last-child h3 {
    position: relative;
    height: initial;
}

.how-it-works .steps .step:last-child h3 span {
    display: block;
    width: 100px;
    height: 1px;
    background-color: #b89427;
    margin: 2rem auto 0;
    transform-origin: center;
    opacity: 1;
}

.how-it-works .steps .step p {
    color: var(--white);
    font-weight: 200;
    text-align: justify;
    line-height: 1.875rem;
    margin-top: 2.5rem;
}

.how-it-works .steps .step p a {
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: block;
    cursor: url('../images/cursor-big.svg') 6 6, auto;
}

.how-it-works .what-do-we-do {
    margin-top: 4.125rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.how-it-works .what-do-we-do .what-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how-it-works .what-do-we-do .what-item h4 {
    color: var(--gold);
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.875rem;
    max-width: 460px;
    text-align: center;
    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
    position: relative;
    text-transform: lowercase;
}

.how-it-works .what-do-we-do .what-item.fourth h4 {
    max-width: 400px;
}

.how-it-works .what-do-we-do .what-item h4 span {
    display: block;
    width: 64px;
    height: 1px;
    background-color: #b89427;
    margin: 1.5rem auto 0;
    transform-origin: center;
    opacity: 1;
}

.how-it-works .what-do-we-do .what-item p {
    color: var(--white);
    font-weight: 200;
    text-align: justify;
    line-height: 1.875rem;
    margin-top: 2.5rem;
}

/* Packages */

#packages {
    margin-top: 20rem;
}

.packages {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.packages h2 {
    color: var(--white);
    text-transform: lowercase;
    font-size: 3.4375rem;
    font-weight: 400;
    line-height: 1;
    position: relative;
}

.packages h2 span {
    display: block;
    width: 100px;
    height: 1px;
    background-color: #b89427;
    margin: 2.25rem auto 0;
    transform-origin: center;
    opacity: 1;
}

.packages .packages-grid {
    display: grid;
    grid-template-columns: 1fr 0.5px 1fr;
    grid-template-rows: auto auto;
    gap: 6rem 10rem;
    justify-items: center;
    align-items: center;
    margin-top: 10.75rem;
}

.packages .divider {
    background-color: var(--white);
    opacity: 0.5;
    width: 0.5px;
    height: 80%;
    justify-self: stretch;
    align-self: center;
}

.packages .package {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.packages .package .image {
    display: flex;
}

.packages .package .image svg {
    display: block;
    transition: transform 0.3s ease-in-out;
}

.packages .package:hover .image svg {
    transform: rotateY(180deg) !important;
}

.packages .package h5 {
    font-size: 2rem;
    line-height: 2.25rem;
    font-weight: 400;
    max-width: 160px;
    text-align: center;
    margin: 1rem 0;
}

.packages .package.bronze h5 {
    color: #D57136;
}

.packages .package.silver h5 {
    color: #7E7E7E;
}

.packages .package.gold h5 {
    color: #B89427;
}

.packages .package.platinum h5 {
    color: #D9D9D9;
}

.packages .package p {
    color: var(--white);
    font-weight: 200;
    text-transform: capitalize;
}

.packages .package p.package-price {
    font-size: 1.375rem;
    line-height: 1.875rem;
    text-align: center;
}

.packages .package p.package-fees {
    font-size: 1rem;
    line-height: 1.875rem;
    text-align: center;
    margin-top: 0.25rem;
}

/* Become an investor */
#cta {
    margin-top: 20rem;
}

.cta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta h2 {
    color: var(--white);
    text-transform: lowercase;
    font-size: 3.4375rem;
    font-weight: 400;
    line-height: 1;
    position: relative;
    text-align: center;
}

.cta a {
    padding: 24px 90px;
    border: 1px solid var(--gold);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--gold);
    text-decoration: none;
    font-family: 'Cinzel', sans-serif;
    margin-top: 3.75rem;
    z-index: 5;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    cursor: url('../images/cursor-big.svg') 6 6, auto;
}

html[lang="ru"] .cta a {
    font-family: 'Forum', sans-serif;
}

.cta a:hover {
    background-color: var(--gold);
    color: var(--dark-grey);
}

#cta .cta div>button {
    display: none !important;
}

/* Footer */
footer {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 7.5rem;
    margin-bottom: -100px;
    display: flex;
    align-items: flex-end;
}

footer .container {
    max-width: 1484px;
}

.footer-bg {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 1000px;
    object-position: bottom;
    margin-bottom: -100px;
    height: 100%;
}

footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #101215 20%, rgba(16, 18, 21, 0.55) 82.64%, rgba(16, 18, 21, 0) 100%);
    z-index: 1;
}

footer .footer {
    position: absolute;
    bottom: 14rem;
    left: 0;
    z-index: 2;
    width: 100%;
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

footer .footer-content ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    list-style-type: none;
    gap: 0.5rem;
}

footer .footer-content ul li a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
    cursor: url('../images/cursor-big.svg') 6 6, auto;
}

footer .footer-content ul li a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 100%;
    height: 1px;
    background-color: var(--white);
    transform: translateX(-50%) scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-in-out;
}

footer .footer-content ul li a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

footer .footer-content ul li a:not(:hover)::after {
    transform-origin: right;
    transform: translateX(-50%) scaleX(0);
}

footer .info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-bottom: 1rem;
}

footer .address {
    width: 100%;
    color: var(--white);
    z-index: 10;
}

footer .address {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 0;
}

footer .address p {
    font-weight: 200;
    text-align: right;
    line-height: 1.6rem;
}

footer .address span {
    font-weight: 400;
    display: block;
    line-height: 1.6rem;
}


footer .get-in-touch {
    max-width: 666px;
    width: 100%;
    position: relative;
}

footer .get-in-touch h2 {
    font-size: 12rem;
    line-height: 10rem;
    color: var(--white);
    font-family: 'Forum', sans-serif;
    font-weight: 400;
}

footer .get-in-touch h2.second {
    justify-self: flex-end;
    width: fit-content;
    margin-left: auto;
}

footer .get-in-touch .ellipse {
    position: absolute;
    top: 10px;
    right: 100px;
    width: 44px;
    height: 44px;
    background-color: #D9D9D9;
    border-radius: 50%;
}

html[lang="ru"] footer .get-in-touch {
    max-width: 800px;
}

html[lang="ru"] footer .get-in-touch h2 {
    font-size: 10rem;
    line-height: 8rem;
}

html[lang="ru"] footer .get-in-touch .ellipse {
    right: initial;
    left: 300px;
    top: 42%;
}

html[lang="ru"] footer .get-in-touch h2.second {
    justify-self: flex-start;
    width: fit-content;
    margin-left: 100px;
}

html[lang="cn"] footer .get-in-touch {
    max-width: 800px;
}
html[lang="cn"] footer .get-in-touch h2 {
    font-size: 10rem;
    line-height: 11rem;
}
html[lang="cn"] footer .get-in-touch .ellipse {
    right: initial;
    left: 450px;
    top: 42%;
}
html[lang="cn"] footer .get-in-touch h2.second {
    justify-self: flex-start;
    width: fit-content;
    margin-left: 100px;
}

html[lang="fr"] footer .get-in-touch {
    max-width: 800px;
}

html[lang="fr"] footer .get-in-touch h2 {
    font-size: 10rem;
    line-height: 8rem;
}

html[lang="fr"] footer .get-in-touch .ellipse {
    right: 50px;
}

/* Language switcher */
.language-switcher {
    position: fixed;
    top: 24px;
    right: 24px;
    font-family: serif;
    z-index: 1000;
    border-radius: 8px;
    padding: 6px 18px;
    font-family: 'Cinzel', sans-serif;
    font-size: 1rem;
    line-height: 1.375rem;
    color: var(--white);
    width: 60px;
    height: 34px;
    overflow: hidden;
    transition: height 0.3s ease-in-out, background-color 0.6s ease-in-out, top 0.3s ease-in-out;
}

.selected-lang {
    cursor: url('../images/cursor-big.svg') 6 6, auto;
    text-align: center;
    padding-bottom: 6px;
    position: relative;
}

.language-switcher .selected-lang::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 15px;
    height: 1px;
    background-color: var(--white);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    ;
    z-index: 1000;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.lang-options {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 8px;
    text-align: center;
}

.lang-options span {
    cursor: url('../images/cursor-big.svg') 6 6, auto;
}

.language-switcher.visible {
    background-color: rgba(255, 255, 255, 0.08);
    height: 120px;
}

.language-switcher.visible .selected-lang {
    position: relative;
}

.language-switcher.visible .selected-lang::after {
    opacity: 0.258;
    transform: translateX(-50%) scaleX(1);
}

html:has(.scrolled) .language-switcher.visible,
html:has(nav.active) .language-switcher.visible {
    background-color: var(--gold);
}

@media (min-width: 600px) {
    html:has(.scrolled) .language-switcher {
        top: 67px;
        text-transform: lowercase;
    }
}

@media (min-width: 1024px) {
    html:has(.scrolled) .language-switcher {
        top: 59px;
        text-transform: none;
    }
}

/* Responsive */

/* Laptop */
@media (max-width: 1600px) {
    .hero {
        top: 25rem;
    }

    .hero h1 {
        font-size: 8.125rem;
    }

    .hero h1 span:first-child {
        line-height: 6.5rem;
    }

    .hero h1 span:last-child {
        line-height: 6.5rem;
    }

    .hero .container {
        max-width: 1200px;
    }

    html[lang="ru"] .hero .container {
        max-width: 1200px;
    }

    html[lang="ru"] .hero h1 {
        font-size: 7.5rem;
    }

    html[lang="ru"] .hero h1 span:first-child {
        line-height: 5.5rem;
    }

    html[lang="ru"] .hero h1 span:last-child {
        line-height: 5.5rem;
    }

    html[lang="ru"] footer .get-in-touch h2 {
        font-size: 9rem;
        line-height: 7.5rem;
    }

    html[lang="ru"] footer .get-in-touch h2.second {
        margin-left: 50px;
    }

    html[lang="ru"] footer .get-in-touch .ellipse {
        left: 200px;
    }

    HTML[lang="fr"] .hero .container {
        max-width: 1200px;
    }

    HTML[lang="fr"] .hero h1 {
        font-size: 7.5rem;
    }

    HTML[lang="fr"] .hero h1 span:first-child {
        line-height: 6rem;
    }

    HTML[lang="fr"] .hero h1 span:last-child {
        line-height: 6rem;
    }

    HTML[lang="fr"] footer .get-in-touch h2 {
        font-size: 9rem;
        line-height: 7.5rem;
    }

    html[lang="fr"] footer .get-in-touch {
        max-width: 720px;
    }

    footer .container {
        max-width: 1368px;
    }
}

@media (max-width: 1280px) {
    header .container {
        max-width: 80%;
    }

    html[lang="ru"] .hero .container {
        max-width: 90vw;
    }

    html[lang="ru"] .hero h1 {
        font-size: 8vw;
    }

    html[lang="ru"] .hero h1 span:first-child {
        line-height: 7vw;
    }

    html[lang="ru"] .hero h1 span:last-child {
        line-height: 7vw;
    }

    html[lang="cn"] .hero .container {
        max-width: 70vw;
    }

    html[lang="cn"] .hero h1 {
        font-size: 10vw;
    }

    html[lang="cn"] .hero h1 span:first-child {
        line-height: 11vw;
    }

    html[lang="cn"] .hero h1 span:last-child {
        line-height: 11vw;
    }

    html[lang="fr"] .hero .container {
        max-width: 90vw;
    }

    html[lang="fr"] .hero h1 {
        font-size: 8vw;
    }

    html[lang="fr"] .hero h1 span:first-child {
        line-height: 7vw;
    }

    html[lang="fr"] .hero h1 span:last-child {
        line-height: 7vw;
    }

    footer {
        margin-top: 3.5rem;
    }

    footer .footer {
        bottom: 10rem;
    }

    html[lang="ru"] footer .get-in-touch h2 {
        font-size: 10vw;
        line-height: 9vw;
    }

    html[lang="cn"] footer .get-in-touch h2 {
        font-size: 12vw;
        line-height: 12vw;
    }

    html[lang="cn"] footer .get-in-touch {
        max-width: fit-content;
    }

    html[lang="cn"] footer .get-in-touch h2.second {
        margin-left: 100px;
        justify-self: flex-start;
    }

    html[lang="cn"] footer .get-in-touch .ellipse {
        right: 0;
        left: 45vw;
    }

    html[lang="fr"] footer .get-in-touch h2 {
        font-size: 10vw;
        line-height: 9vw;
    }

    html[lang="fr"] footer .get-in-touch {
        max-width: fit-content;
    }

    html[lang="fr"] footer .get-in-touch h2.second {
        margin-left: 100px;
        justify-self: flex-start;
    }

    html[lang="fr"] footer .get-in-touch .ellipse {
        right: 0;
    }

    .language-switcher.visible {
        background-color: rgba(16, 18, 21, 0.95);
    }
}

@media (max-width: 1120px){
    .hero h1 {
        font-size: 10vw;
    }

    .hero h1 span:first-child {
        line-height: 9vw;
    }

    .hero h1 span:last-child {
        line-height: 9vw;
    }   
}

/* Tablet */
@media (max-width: 1024px) {
    .cursor-ring {
        display: none;
    }

    .container {
        max-width: 866px;
    }

    header nav a {
        font-size: 0.875rem;
    }

    .logo {
        height: 75px;
    }

    header .container {
        max-width: 85%;
    }

    .language-switcher {
        right: 12px;
        font-size: 0.875rem;
        width: 50px;
        padding: 4px 12px;
    }

    #hero {
        height: 1200px;
    }

    .hero-bg {
        object-fit: cover;
        height: 100%;
    }

    .hero {
        top: 23rem;
    }

    .hero .container {
        max-width: 900px;
    }

    .why-invest h2 {
        font-size: 3.4375rem;
    }

    .why-invest p {
        font-size: 1.3125rem;
        line-height: 1.9375rem;
    }

    #how-it-works {
        margin-top: 16.5rem;
    }

    .how-it-works h2 {
        font-size: 3.4375rem;
    }

    #how-it-works h2 span {
        margin: 1.5rem auto 0;
    }

    .how-it-works .steps {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin-top: 7.5rem;
    }

    .how-it-works .steps .step p {
        text-align: center;
    }

    #packages,
    #cta {
        margin-top: 23.5rem;
    }

    #packages h2 {
        font-size: 3.4375rem;
    }

    #packages h2 span {
        margin: 1.5rem auto 0;
    }

    .packages .packages-grid {
        gap: 4rem 5rem;
    }

    #cta h2 {
        font-size: 3.4375rem;
    }

    footer {
        height: 1312px;
    }

    .footer-bg {
        /* object-fit: cover;
        object-position: center;
        height: 100%; */
    }

    html[lang="ru"] footer .get-in-touch h2 {
        font-size: 14vw;
        line-height: 12vw;
        width: fit-content;
    }

    html[lang="ru"] footer .get-in-touch {
        width: fit-content;
    }

    html[lang="fr"] footer .get-in-touch h2 {
        font-size: 14vw;
        line-height: 12vw;
        width: fit-content;
    }

    footer .address p {
        text-align: center;
    }

    footer .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 10.75rem;
    }

    footer .footer-content ul {
        align-items: center;
    }
}

@media (max-width: 600px) {
    header nav {
        display: flex;
        background-color: #101215cf;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 999;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding-inline: 1.5rem;
        backdrop-filter: blur(4px);
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out;
        gap: 1.25rem;
    }

    header nav.active {
        transform: translateX(0);
    }

    header nav a {
        font-size: 2rem;
    }

    header nav .logo {
        display: none;
    }

    header .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    header .logo.mobile {
        display: flex;
        position: relative;
        z-index: 1000;
    }

    header .hamburger-menu {
        display: flex;
    }

    header .container {
        max-width: 100%;
    }

    #hero {
        height: 1048px;
    }

    #hero::after {
        background: linear-gradient(180deg, #101215 0%, rgba(16, 18, 21, 0) 50%, #101215 100%);
    }

    .hero .container {
        max-width: 100%;
    }

    .hero-bg-mobile {
        display: block;
        object-fit: cover;
        height: 100%;
        width: 100%;
    }

    .keyart_layer {
        height: 1400px;
        background-size: auto 1474px;
    }

    .hero {
        top: 15.375rem;
    }

    .hero h1 {
        font-size: 10vw;
    }

    .hero h1 span:first-child {
        line-height: 10vw;
    }

    .logo {
        height: 50px;
    }

    .hero h1 span:last-child {
        line-height: 10vw;
    }

    html[lang="ru"] .hero .container {
        max-width: 100vw;
    }

    html[lang="ru"] .hero h1 {
        font-size: 9vw;
    }

    html[lang="ru"] .hero h1 span:first-child {
        line-height: 9vw;
    }

    html[lang="ru"] .hero h1 span:last-child {
        line-height: 9vw;
    }

    html[lang="cn"] .hero .container {
        max-width: 100vw;
    }

    html[lang="cn"] .hero h1 {
        font-size: 12vw;
    }

    html[lang="cn"] .hero h1 span:first-child {
        line-height: 12.5vw;
    }

    html[lang="cn"] .hero h1 span:last-child {
        line-height: 12.5vw;
    }

    html[lang="cn"] footer .get-in-touch h2 {
        font-size: 16vw;
        line-height: 16vw;
    }

    html[lang="cn"] footer .get-in-touch h2.second {
        margin-left: 100px;
        justify-self: flex-start;
    }

    html[lang="cn"] footer .get-in-touch .ellipse {
        right: 0;
        left: 50px;
    }

    .packages .packages-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .packages .divider {
        display: none;
    }

    .why-invest h2 {
        font-size: 2rem;
        line-height: 2.25rem;
    }

    .why-invest p {
        margin-top: 2rem;
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .why-invest .icon {
        display: none;
    }

    .how-it-works h2 {
        font-size: 2rem;
        line-height: 2.25rem;
    }

    #how-it-works {
        margin-top: 10rem;
        z-index: 10;
        position: relative;
    }

    footer .get-in-touch h2 {
        font-size: 5.9375rem;
        line-height: 5rem;
    }

    footer .get-in-touch .ellipse {
        width: 22px;
        height: 22px;
        right: 50px;
    }

    footer .footer {
        bottom: 5rem;
    }

    footer .footer-content {
        gap: 6.5625rem;
    }

    footer {
        margin-top: 10rem;
        height: 800px;
        margin-bottom: -50px;
    }

    footer::after {
        background: linear-gradient(180deg, #101215 10%, rgba(16, 18, 21, 0.55) 30.64%, rgba(16, 18, 21, 0) 100%);
    }

    footer .container {
        max-width: 400px;
    }

    .footer-bg {
        margin-bottom: -50px;
    }

    .how-it-works .steps .step h3 {
        font-size: 1.75rem;
        line-height: 2rem;
        height: auto;
    }

    .how-it-works .what-do-we-do .what-item h4 {
        font-size: 1.5rem;
        line-height: 1.75rem;
    }

    .how-it-works .steps .step .image {
        max-width: 100%;
        margin-bottom: 3.125rem;
    }

    .how-it-works .steps .step {
        max-width: 100%;
    }

    .how-it-works .steps .step p {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .how-it-works .what-do-we-do .what-item {
        max-width: 100%;
    }

    .how-it-works .what-do-we-do .what-item p {
        font-size: 1rem;
        line-height: 1.5rem;
        text-align: center;
    }

    #packages,
    #cta {
        margin-top: 10rem;
    }

    #packages h2 {
        font-size: 2rem;
        line-height: 2.25rem;
    }

    #cta h2 {
        font-size: 2rem;
        line-height: 2.25rem;
    }

    .cta a {
        padding: 16px 60px;
        font-size: 1rem;
    }

    .packages .packages-grid {
        margin-top: 5rem;
        gap: 3rem 0;
    }

    .packages .package h5 {
        font-size: 1.5rem;
        line-height: 2.25rem;
    }

    .packages .package p.package-price {
        font-size: 1.125rem;
        line-height: 1.5rem;
    }

    .packages .package p.package-fees {
        font-size: 0.875rem;
        line-height: 1.5rem;
    }

    footer .footer-content ul li a {
        font-size: 0.875rem;
        line-height: 100%;
        text-align: center;
        display: flex;
        line-height: 1.5rem;
    }

    footer .info {
        gap: 2rem;
    }

    footer .address p {
        font-size: 0.875rem;
        line-height: 100%;
    }

    #how-it-works h2 span {
        margin: 1rem auto 0;
    }

    .how-it-works .steps .step:last-child h3 span {
        margin: 1rem auto 0;
    }

    .how-it-works .what-do-we-do .what-item h4 span {
        margin: 1rem auto 0;
    }

    #packages h2 span {
        margin: 1rem auto 0;
    }

    .how-it-works .steps .step .image .number {
        bottom: 50px;
    }

    .how-it-works .steps .step .image .number {
        width: 128px;
        height: 128px;
        font-size: 125px;
    }

    .how-it-works .steps .step .image img {
        max-width: 85%;
        clip-path: inset(0px 0px 50px 0px);
    }

    .how-it-works .steps .step .image .number span {
        margin-left: 2.5px;
    }

    header.scrolled .logo {
        height: 50px;
    }

    .language-switcher {
        position: fixed;
        top: 27px;
        right: 58px;
        width: 48px;
        padding: 6px 12px;
        font-size: 0.875rem;
        line-height: 1.125rem;
    }

    .language-switcher.visible {
        background-color: #101215a1;
        backdrop-filter: blur(4px);
        height: 122px;
    }

    .selected-lang {
        padding-bottom: 10px;
    }

    .lang-options {
        margin-top: 12px;
        gap: 9px;
    }

    html[lang="ru"] footer .get-in-touch h2.second {
        margin-left: 50px;
    }

    html[lang="ru"] footer .get-in-touch .ellipse {
        left: 120px;
    }
}

@media (max-width: 360px) {
    .hero .container {
        max-width: 100%;
    }

    footer .get-in-touch .ellipse {
        right: 5vw;
    }

    footer .get-in-touch h2 {
        font-size: 27vw;
        line-height: 25vw;
    }
}