html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Prompt', sans-serif;
    background-color: #0B0D16;
    color: #FFF;
    z-index: 15;
}

button {
    font-family: 'Prompt', sans-serif !important;
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24
}

::-webkit-scrollbar {
    width: 13px;
    height: 13px;
}

::-webkit-scrollbar-thumb {
    background: #aa9cd9;
}

::-webkit-scrollbar-thumb:hover {
    background: #aa9cd9;
}

::-webkit-scrollbar-track {
    background: #0b0d16;
    border-radius: 0px;
    box-shadow: inset 0px 0px 0px 0px #0b0d16;
}

/* Reveal at scroll */
.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: all 1.2s;
}

.reveal.show {
    transform: translateY(0px);
    opacity: 1;
}

/* Loading */
.dots {
    padding: 1rem;
    display: flex;
    justify-content: center;
}

.dot {
    background-color: #aa9cd9;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    margin: 0 8px;
    transform: scale(0);
    animation: scaling 1.5s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scaling {

    0%,
    100% {
        transform: scale(0.2);
    }

    40% {
        transform: scale(1);
    }

    50% {
        transform: scale(1);
    }
}

/* Popup info */
#popupInfo {
    opacity: 1;
    transition: all 0.25s ease-in-out;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 300;
    background-color: rgba(0, 0, 0, 0.7);
}

#popupInfoContent {
    background-color: #0B0D16;
    border: solid 3px #aa9cd9;
    border-radius: 15px;
    margin: 20vh auto;
    padding: 20px;
    min-width: 40%;
    max-width: 50%;
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: #aa9cd9 0px 0px 20px 0px;
    max-height: 80vh;
    position: relative;
    text-align: center;
    color: #aa9cd9;
}

#popupContent a {
    color: inherit;
}

#popupInfoContent h4 {
    margin-top: 0;
    font-size: 2rem;
    margin: 0 auto 1rem auto;
}

/* Header */
header {
    padding-bottom: 5rem;
    background-image: url("../../assets/images/background.png");
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    color: #FFF;
    line-height: 1;
}

.header-centered {
    padding-top: 2rem;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.header-title {
    font-weight: bold;
    font-size: clamp(1rem, 0.1429rem + 4.5714vw, 2.5rem);
}

.header-title h1 {
    margin: 0;
}

.header-description {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 400;
    padding: 0 1rem;
}

.header-description a {
    display: flex;
    justify-content: center;
    color: inherit;
    text-decoration: none;
}

.explore-button {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    margin: 2.5rem 0;
    padding: 0.8rem 2rem;
    font-size: 1.35rem;
    background-color: transparent;
    color: #aa9cd9;
    border: 3px solid #aa9cd9;
    border-radius: 100px;
    position: relative;
    box-shadow: #aa9cd9 0 0 5px 0;
    transition: all 0.3s ease-in-out;
}

.explore-button {
    cursor: pointer;
    font-weight: 600;
    margin: 2.5rem 0;
    padding: 0.8rem 2rem;
    font-size: 1.35rem;
    background-color: transparent;
    color: #aa9cd9;
    border: 3px solid #aa9cd9;
    border-radius: 100px;
    position: relative;
    box-shadow: #aa9cd9 0 0 5px 0;
    transition: all 0.3s ease-in-out;
}

.explore-button:hover {
    background-color: #aa9cd9;
    padding-right: 2.5rem;
    color: #FFF;
    box-shadow: #aa9cd9 0 0 10px 0;
}

.explore-button::after {
    content: "\e5cc";
    color: #FFF;
    font-family: "Material Symbols Outlined";
    position: absolute;
    right: 15px;
    transform: scale(0) rotate(-180deg) translateX(-10px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.explore-button:hover::after {
    transform: scale(1.5) rotate(0deg) translateX(0px);
    opacity: 1;
}

.purple {
    color: #aa9cd9 !important;
}

.upgrade-arrow #uarrow {
    margin-top: 10rem;
    margin-bottom: 4rem;
    padding: 1rem 0;
    position: sticky;
    bottom: 0;
    transition: all 0.3s;
    animation: moveUpDown 1.3s infinite;
}

.upgrade-arrow #uarrow:hover {
    animation: moveUpDown 0s infinite;
}

@keyframes moveUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

.hiw>img {
    margin-top: -5rem;
    padding-top: 5rem;
    margin-bottom: 5rem;
    max-width: 90%;
}

/* Header How It Works?*/
.hiw h1,
.hiw ul {
    text-align: left;
    padding-left: 8vw;
}

.hiw h1 {
    font-size: clamp(2rem, 1.1429rem + 4.5714vw, 4rem);
    font-weight: bold;
    margin: 1rem 0;
}

.hiw ul {
    font-size: 1.2rem;
    width: 0 auto;
    color: #FFF;
    list-style: none;
}

.hiw ul li {
    margin-top: 0.5rem;
}

.hiw ul li .material-symbols-outlined {
    color: #AA9CD9;
    display: inline-block;
    font-size: 0.9rem;
}

/* Why Choose Us */
.wcu {
    max-width: 1320px;
    margin: 1rem auto;
    text-align: center;
    color: #FFF;
}

.row-title {
    font-size: clamp(2rem, 0.1429rem + 4.5714vw, 3rem);
    margin-bottom: 2rem;
}

.advantages-arguments {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.argument {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 1rem 1rem 1rem;
    padding: 2.5vw 1vw;
    border: 3px solid #aa9cd9;
    border-radius: 15px;
    background-color: #0f121f;
    transition: all 0.3s;
    cursor: default;
}

.argument p {
    padding: 0 1rem;
}

.argument:hover {
    background-color: #0B0D16;
}

.argument img {
    max-width: 5.5rem;
    margin-bottom: 1rem;
}

.argument span {
    font-size: 3.5rem;
    color: #aa9cd9;
    margin-bottom: 1rem;
}

.argument strong {
    font-size: 1.2rem;
    margin-bottom: 0.5rem !important;
}

.argument p {
    font-size: 1.1rem;
    margin: 0;
}

/* ads */
.ads {
    display: flex;
    justify-content: space-between;
    max-width: 1300px;
    margin: auto;
    padding: 1rem 0;
    text-align: center;
    z-index: 3;
}

.ads a {
    margin: 0.5rem 1rem;
    padding: 2.5vw 2vw;
    border: 3px solid #aa9cd9;
    border-radius: 15px;
    background-color: #0f121f;
    transition: all 0.3s;
}

.ads a:hover {
    background-color: #0b0d16;
}

.ads img {
    width: 100%;
    display: block;
}

/* FAQ */
.faq {
    color: #FFF;
    text-align: center;
    padding-top: 4rem;
    margin: -4rem auto 3rem auto;
    max-width: 1100px;
}

.faq h2 {
    font-size: clamp(2rem, 0.1429rem + 4.5714vw, 3rem);
    padding: 0 1rem;
    margin: 1rem 0 0 0;
}

.faq-item {
    position: relative;
    background-color: #0F121F;
    border-radius: 10px;
    border: 2.5px solid #aa9cd9;
    margin: 1.1rem 1rem;
    cursor: pointer;
    z-index: 3;
}

.faq-title {
    padding: 1rem 2.3rem;
    font-size: 1.75rem;
    font-weight: bold;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-description {
    max-height: 0;
    margin: 0 2rem;
    padding-top: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.faq-item.active .faq-description {
    margin: 0 2rem 1rem 2rem;
    transition: all 0.3s ease-in-out;
}

.faqArrow {
    display: inline-block;
    position: absolute;
    left: 1rem;
    font-size: 2.5rem;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
    user-select: none;
}

.faq-item.active .faqArrow {
    transform: rotate(180deg);
}

.faq-item .faq-title .faqArrow {
    transition: all 0.3s ease-in-out;
}

.faq-item.active .faq-title .faqArrow {
    transform: rotate(180deg);
}

.faq-item>p>a {
    color: inherit;
}

/* Contact */
#contact {
    padding: 6rem 1rem 0 1rem;
    margin: -4rem auto 0 auto;
    max-width: 1320px;
    z-index: 1;
}

.contact-us {
    display: flex;
    border-radius: 10px;
    border: 3px solid #aa9cd9;
    box-shadow: 0 0 20px 0 #aa9cd9;
    color: #FFF;
    background-color: #0F121F;
}

.contact-content {
    padding: 2rem 1rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.contact-us strong {
    font-size: clamp(1.2rem, 0.4286rem + 4.1143vw, 3rem);
    line-height: 1;
}

.contact-us p {
    font-size: 1.2rem;
    line-height: 1.5;
    padding: 0;
    margin-top: 0;
}

.header-buttons {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}

.contact-us .button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem;
    transition: all 0.3s;
    background-color: #aa9cd9;
    border-radius: 100px;
    text-decoration: none;
    color: #FFF;
    margin: 0 0.5rem;
}

.contact-us .button:hover {
    font-size: 1.2rem;
    padding: 1rem 1.5rem;
    box-shadow: #aa9cd9 0 0 15px 0;
    background-color: #aa9cd9 !important;
}

#telegram-button {
    background-color: transparent;
    border: 3px solid #aa9cd9;
}

.contact-us img {
    padding-right: 2rem;
    min-height: 20rem;
    max-height: 25rem;
    height: 100%;
}

/* Footer */
footer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap-reverse;
    gap: 0 15rem;
    padding: 3rem 1rem;
    align-items: center;
    color: #FFF;
    background-color: #0b0d16;
    user-select: none;
    max-width: 75rem;
    margin: auto;
}

.copyrights {
    font-size: 1.2rem;
    font-weight: 400;
}

.copyrights strong {
    font-weight: bold;
}

.socials {
    display: flex;
    flex-direction: row;
}

.socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    background-color: #0f121f;
    margin: 0 5px;
    transition: all 0.3s;
}

.socials a:hover {
    background-color: #aa9cd9;
}

.socials svg path {
    transition: all 0.3s;
}

.socials svg,
.socials svg g {
    fill: #aa9cd9;
    padding: 0.6rem;
}

.socials a:hover path {
    fill: #000;
}

/* Scroll "Premium At The Lowest Price" */
.scroll-animation-top {
    display: flex;
    align-items: center;
    height: 6rem;
    overflow: hidden !important;
    position: relative;
    background-color: #aa9cd9;
    transform: rotate(-2deg);
    margin: -3rem 0.1rem 3rem 0.1rem;
    z-index: 6;
    cursor: default;
}

.scroll-animation-bottom {
    display: flex;
    align-items: center;
    height: 6rem;
    overflow: hidden !important;
    position: relative;
    background-color: #aa9cd9;
    transform: rotate(2deg);
    margin: 3rem 0.1rem 4rem 0.1rem;
    z-index: 6;
    cursor: default;
}

.scroll {
    white-space: nowrap;
    margin: 0 2em;
    position: relative;
}

.scroll div {
    display: flex;
    gap: 2em;
}

.scroll p {
    font-size: 5rem;
    color: white;
    font-weight: bold;
    line-height: 10px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px;
    user-select: none;

}

.RightToLeft {
    animation: RightToLeft 60s infinite linear;
}

@keyframes RightToLeft {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 1300px) {

    /* contact-us */
    .contact-us p {
        font-size: 1rem;
        line-height: 1.1;
    }

    .contact-us .button {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        margin: 0.3rem;
    }

}

@media screen and (max-width: 1000px) {

    /* Popup info */
    #popupInfoContent h4 {
        font-size: clamp(1.2rem, 0.8571rem + 1.8286vw, 2rem);
        line-height: 1;
        padding: 0 1rem;
    }

    .closeButton {
        font-size: 2rem;
    }

    /* header */
    .header-description {
        font-size: 1rem;
    }

    /* wcu */
    .advantages-arguments {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 3rem;
        grid-row-gap: 1.5rem;
        margin: auto;
        max-width: 80%;
    }

    .argument {
        margin: 0;
    }

    /* FAQ */

    .faq-item {
        line-height: 1;
    }

    .faq-title {
        font-size: clamp(1.3rem, 1.1714rem + 0.6857vw, 1.6rem);
    }

    .faqArrow {
        left: 0.5rem;
        font-size: clamp(2rem, 1.7857rem + 1.1429vw, 2.5rem);
    }

    /* Scroll "Premium At The Lowest Price" */
    .scroll p {
        font-size: clamp(1.7rem, 0.7143rem + 5.2571vw, 4rem);
    }

    .scroll-animation-top,
    .scroll-animation-bottom {
        height: 5rem;
    }

    /* contact */
    .contact-us img {
        display: none;
    }

    .header-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .contact-us .button:hover {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        box-shadow: #aa9cd9 0 0 15px 0;
        background-color: #aa9cd9 !important;
    }

    .contact-content {
        padding: 1.5rem 1rem;
    }

    .contact-us strong {
        line-height: 0.9;
    }

    .contact-us p {
        margin-top: 1rem;
    }
}

@media screen and (max-width: 767px) {

    /* header */
    .explore-button {
        font-size: 1.2rem;
    }

    .hiw>img {
        display: none;
    }

    /* hiw */
    .hiw h1 {
        display: flex;
        flex-direction: column;
        line-height: 0.5;
    }

    .hiw ul {
        font-size: 1rem;
    }

    /* wcu */
    .advantages-arguments {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }

    /* ads */
    .ads {
        flex-direction: column;
        align-items: center;
    }

    .ads a {
        width: 50% !important;
    }

    /* Scroll "Premium At The Lowest Price" */
    .scroll p {
        -webkit-text-stroke: 1px;
    }

    .scroll-animation-top,
    .scroll-animation-bottom {
        height: 4rem;
    }

    /* footer */
    footer {
        justify-content: center;
        text-align: center;
    }
}

@media screen and (max-width: 400px) {

    /* header */
    .explore-button {
        font-size: 1rem;
    }

    .header-description {
        font-size: 0.8rem;
    }
}