body {
    margin: 0;
    background-color: #010202;
    font-family: 'Inter', sans-serif;
}

div {
    box-sizing: border-box;
}

.container {
    display: flex;
    width: 100%;
    padding: 0 20vw 0;
}

header {
    height: 96px;
    background-color: #121A26;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

#language-selector {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
    margin: 18px 12px;
    align-self: self-start;
    position: relative;
    background-color: #121A26;
    height: 50px;
    overflow: hidden;
    z-index: 1000;
}

#language-selector.open {
    height: auto;
}

#language-selector.open>img {
    transform: rotate(180deg);
}

#language-selector>img {
    width: 8px;
    height: 8px;
    padding: 16px 10px;
    position: absolute;
    top: 10px;
    right: 0px;
    cursor: pointer;
}

#language-selector a,
#language-selector button {
    font-size: 15px;
    font-weight: 400;
    background-color: transparent;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    color: white;
}

#language-selector a img,
#language-selector button img {
    width: 18px;
    height: 18px;
}

#language-selector a.active,
#language-selector button.active {
    order: 1;
}

#language-selector a:not(.active),
#language-selector button:not(.active) {
    order: 2;
}

button {
    outline: none;
    border: none;
    color: white;
}

.button {
    background-color: #71EED0;
    color: #121A26;
    display: flex;
    outline: none;
    border: none;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    align-items: center;
    font-family: Helvetica;
}

.button.small {
    border-radius: 3px;
    padding: 11px 20px;
    font-size: 15px;
    font-weight: 400;
}

.button.big {
    border-radius: 6px;
    padding: 20px 50px;
    font-size: 20px;
    font-weight: 400;
    white-space: nowrap;
}

.gradient-color {
    background: linear-gradient(268.5deg, #FFF6DF, #E5CC9A, #C19F72, #DCC18D, #F5E4BF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

h1,
h2 {
    color: #FFF;
    font-family: Helvetica;
    font-weight: 700;
    font-size: 46px;
    line-height: 110%;
    margin-top: 40px;
    margin-bottom: 20px;
}

@media (max-width: 1440px) {
    .container {
        padding: 0 10vw 0;
    }
}

@media (max-width: 1100px) {
    .container {
        padding: 0 30px 0;
    }

    .button.big {
        font-size: 18px;
        padding-left: 10px;
        padding-right: 10px;
    }

    /* }

@media (max-width: 768px) { */
    header {
        height: 59px;
    }

    #language-selector {
        margin: 0;
    }

    .container {
        padding: 0 15px 0;
    }

    h1 {
        font-size: 36px;
        font-weight: 700;
        line-height: 110%;
        margin-top: 24px;
        margin-bottom: 18px;
    }
}