/* BASE
================================================== */

body {
    font-size: .875rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, .8);
    background: #141B24;
}

body, input, button, textarea {
    font-family: Roboto, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: Montserrat, Arial, sans-serif;
    color: #fff;
}

p,
ul,
ol,
table,
figure {
    margin-bottom: 1.5rem;
}

a, input, textarea, button {
    transition: color .3s, background-color .3s, border-color .3s, opacity .3s;
}

a {
    text-decoration: none;
    color: #00CAF6;
}

a:hover {
    color: #fff;
}

*, *:focus {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

figure img {
    width: 100%;
}

hr {
    border-top-color: #1F2834;
    opacity: 1;
}

/* LAYOUT
================================================== */

/*
    Scrollbar
*/

body,
.scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #949db0 #0C0F14;
}

body::-webkit-scrollbar,
.scrollbar::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

body::-webkit-scrollbar-track,
.scrollbar::-webkit-scrollbar-track {
    background: #0C0F14;
}

body::-webkit-scrollbar-thumb,
.scrollbar::-webkit-scrollbar-thumb {
    border: 2px solid #0C0F14;
    background-color: #949db0;
    border-radius: 10px;
}

/*
	Header
*/

.header {
    position: sticky;
    z-index: 1000;
    top: 0;
    font-size: .75rem;
    margin-bottom: 1rem;
    background: #1f2834;
}

.header__inner {
    box-shadow: 0 .5rem 2rem rgba(15, 0, 0, .2);
    display: flex;
    align-items: center;
    height: 3.5rem;
}

    .header__logo {
        height: 1.5rem;
        flex: 1 0 auto;
    }

        .header__logo img {
            display: block;
            height: 100%;
        }

/*
    Navigation
*/

.main-menu {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: .9375rem;
}

    .main-menu ul {
        display: flex;
        align-items: center;
        margin-bottom: 0;
        padding: 0;
        list-style-type: none;
    }

    .main-menu > ul:first-child {
        margin-left: 1.5rem;
    }

    .main-menu > ul:last-child {
        margin-left: auto;
    }

        .main-menu ul li {
            position: relative;
        }

            .main-menu ul a:not(.btn) {
                display: flex;
                align-items: center;
                padding: .3125rem .5rem;
                font-weight: 700;
            }
            
            .main-menu__arrow {
                fill:#fff;
                width: .75rem;
                height: .75rem;
                margin-left: .5rem;
            }

            .main-menu__icon {
                fill:#fff;
                width: 1.5rem;
                height: 1.5rem;
            }

            .main-menu ul li:hover > a:not(.btn),
            .main-menu ul li > a:not(.btn).active {
                color: #fff;
                background-color: #273545;
            }

            .main-menu > ul > li > a:not(.btn) {
                color: #fff;
            }

            .main-menu > ul > li > a:not(.btn) {
                min-height: 4rem;
            }

            .main-menu ul ul {
                position: absolute;
                visibility: hidden;
                display: flex;
                align-items: flex-start;
                flex-direction: column;
                white-space: nowrap;
                top: 100%;
                left: 0;
                padding: .75rem 0;
                text-align: left;
                background: #273545;
                border-radius: 0 0 1rem 1rem;
                opacity: 0;
                transition: all .3s;
            }

                .main-menu ul ul a {
                    color: #9ca2aa;
                }

            .main-menu ul li:hover > ul {
                visibility: visible;
                opacity: 1;
            }

/*
    Mobile Menu
*/

.offcanvas.mobile-menu {
    overflow: hidden;
    z-index: 999;
    top: 3.5rem;
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
    font-size: 1rem;
    font-weight: 700;
    border-top: 1px solid #263443;
    background: #1f2834;
}

    .mobile-menu a {
        color: #fff;
    }

    .mobile-menu ul {
        margin: 0;
        list-style-type: none;
    }   

        .mobile-menu ul ul {
            margin: .875rem 0 0 .75rem;
            padding: 0;
        }

        .mobile-menu ul ul a {
            color: #bbbdc1;
        }

    .mobile-menu__body {
        overflow: auto;
        max-height: 100%;
        padding: 1.25rem 1.25rem 5rem;
    }

    .mobile-menu__body li {
        margin-bottom: .875rem;
    }

    .mobile-menu__footer {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 1.25rem;
        background: #1f2834;
    }

    .mobile-menu__footer:before {
        position: absolute;
        content: '';
        right: 0;
        bottom: 100%;
        left: 0;
        height: 1.5rem;
        background: linear-gradient(to bottom, rgba(31, 40, 52, 0) 0%, rgba(31, 40, 52, 1) 100%);
    }

/*
	Footer
*/

.footer {
    padding-top: 3.625rem;
    background: #141b24;
}

    .footer a {
        color: #949db0;
    }

    .footer a:hover {
        color: #fff;
    }

    .footer__logo {
        display: flex;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

        .footer__logo a {
            display: block;
            height: 2.5rem;
        }

            .footer__logo a img {
                display: block;
                height: 100%;
            }

    .footer__title {
        margin-bottom: .5rem;
        font-size: .875rem;
        text-transform: uppercase;
        font-style: italic;
        color: #4c5969;
    }

    .footer__menu {
        font-size: 1rem;
        padding: 0;
        list-style-type: none;
    }

        .footer__menu li {
            margin-bottom: .25rem;
        }

    .footer .list-with-icon svg {
        fill: #4c5969;
    }

.copyright {
    padding: .875rem 0;
    text-align: center;
    font-weight: 500;
    color: #50555f;
    background: #0C0F14;
}

    .copyright p {
        margin-bottom: 0;
    }

/* SECTIONS
================================================== */

/*
    Section
*/

.section {
    padding-top: 1.5rem;
    padding-bottom: 1px;
}

.section--lifetime {
    padding-bottom: 150px;
    background: url("../img/bg-shape-9.png") right -40px bottom 10px no-repeat;
    background-size: 350px auto;
}

.section--lifetime .panel {
    background: #1F2834;
}

.section--reviews {
    padding-bottom: 80px;
    background: url("../img/bg-shape-10.png") center bottom no-repeat;
    background-size: 100% auto;
}

.section--calculator {
    background: url("../img/bg-shape-10.png") center center no-repeat;
    background-size: 100% auto;
}

.section--earn {
    position: relative;
}

.section--earn:before {
    position: absolute;
    content: '';
    z-index: -2;
    top: 0;
    right: 0;
    left: 0;
    height: 100vh;
    background: url("../img/bg-shape-10.png") center center no-repeat;
    background-size: 100% auto;
    transform: translate(0, -50%);
}


/*
    Hero
*/

.hero {
    overflow: hidden;
    padding-top: 1rem;
    padding-bottom: 5rem;
    /*background: url("../img/bg-shape-5.png") center center no-repeat;
    background-size: 606px auto;*/
}

    .hero__text {
        margin-bottom: 2rem;
        font-size: 1.125rem;
    }

    .hero__logos img {
        height: 1.5625rem;
        max-width: 100%;
        object-fit: contain;
    }

    .hero__logos img:not(:last-child) {
        margin-right: 1rem;
    }

    .hero__picture {
        position: relative;
        height: 200px;
        margin-bottom: 1.5rem;
    }

        .hero__picture img {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 150%;
            max-width: 869px;
            height: 100%;
            transform: translate(-43%, -50%);
            object-fit: contain;
        }

    .hero .title-with-icon--gray {
        color: #4c5969;
    }

        .hero .title-with-icon--gray svg {
            fill: #4c5969;
        }

/*
    Carousels
*/

.swiper-button-prev,
.swiper-button-next {
    width: 3rem !important;
    height: 3rem !important;
    color: #fff;
    background: #4C5969;
    border-radius: 100%;
    box-shadow: 0 .5rem 2rem rgba(0, 0, 0, .4);
    transition: all .3s;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}

    .swiper-button-prev svg,
    .swiper-button-next svg {
        width: 1.375rem;
        height: 1.375rem;
        fill: #fff;
    }

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #3d4855;
}

.swiper-outer {
    position: relative;
}

    .swiper-outer .swiper {
        position: static;
    }

.picture-carousel {
    height: 360px;
}

.picture-carousel:before,
.picture-carousel:after {
    position: absolute;
    content: "";
    z-index: 2;
    left: 0;
    width: 100%;
    height: 10rem;
}

.picture-carousel:before {
    top: 0;
    background: linear-gradient(to bottom, rgba(20, 27, 36, 1) 0%, rgba(20, 27, 36, 0) 100%);
}

.picture-carousel:after {
    bottom: 0;
    background: linear-gradient(to bottom, rgba(20, 27, 36, 0) 0%, rgba(20, 27, 36, 1) 100%);
}

    .picture-carousel .swiper-wrapper {
        transition-timing-function: linear;
    }

    .picture-carousel .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.picture-mobile-carousel {
    height: 246x;
}

.picture-mobile-carousel:before,
.picture-mobile-carousel:after {
    position: absolute;
    content: "";
    z-index: 2;
    top: 0;
    width: 4rem;
    height: 100%;
}

.picture-mobile-carousel:before {
    left: 0;
    background: linear-gradient(to right, rgba(20, 27, 36, 1) 0%, rgba(20, 27, 36, 0) 100%);
}

.picture-mobile-carousel:after {
    right: 0;
    background: linear-gradient(to right, rgba(20, 27, 36, 0) 0%, rgba(20, 27, 36, 1) 100%);
}

    .picture-mobile-carousel .swiper-wrapper {
        transition-timing-function: linear;
    }

    .picture-mobile-carousel .swiper-slide {
        width: 150px;
    }

.testimonial-carousel {
    padding: .625rem;
}

    .testimonial-carousel .swiper-slide {
        height: auto;
    }

        .testimonial-carousel .swiper-slide .testimonial {
            height: 100%;
        }

    .testimonial-carousel .swiper-button-prev {
        margin: 0 0 0 -.5rem;
        transform: translate(-50%, -50%);
    }

    .testimonial-carousel .swiper-button-next {
        margin: 0 -.5rem 0 0;
        transform: translate(50%, -50%);
    }

    .testimonial-img {
        max-height: 120px;
        width: auto;
        cursor: pointer;
    }

    .more-link {
        cursor: pointer;
    }
/* MODULES
================================================== */

/*
    Offcanvas
*/

.offcanvas {
    background: #141b24;
    box-shadow: none;
}

    .offcanvas-header {
        position: relative;
        display: block;
    }

        .offcanvas-title {
            font-size: 1.25rem;
        }

        .offcanvas-subtitle {
            font-size: 1rem;
            color: #4c5969;
        }

        .offcanvas__close {
            position: absolute;
            display: block;
            top: 1.375rem;
            right: 1rem;
            width: 1.125rem;
            height: 1.125rem;
            margin: 0;
            padding: 0;
            border: 0;
            background: transparent;
        }

            .offcanvas__close svg {
                display: block;
                width: 100%;
                height: 100%;
                fill: #fff;
            }

.offcanvas-backdrop {
    background: transparent;
    backdrop-filter: blur(3px);
}

.offcanvas-backdrop:after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #1f2834;
    opacity: .85;
}

.offcanvas-backdrop.show {
    opacity: 1;
}

/*
    Icon Box
*/

.icon-box {
    position: relative;
    height: 100%;
    padding: 2rem;
    font-size: 1rem;
    line-height: 1.4;
    color: #fff;
    background: #1F2834;
    border-radius: .5rem;
}

.icon-box:before {
    position: absolute;
    content: "";
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 249, 70, 1) 0%, rgba(139, 249, 70, 0) 60%);
    border-radius: .5rem;
    opacity: 0;
    transition: opacity .3s;
}

    .icon-box > * {
        position: relative;
        z-index: 2;
    }

    .icon-box p {
        margin-bottom: .875rem;
    }

    .icon-box__icon {
        display: flex;
        align-items: center;
        margin-bottom: 1.75rem;
        font-size: 1rem;
        color: #949db0;
    }

        .icon-box__icon svg,
        .icon-box__icon img {
            width: 2.5rem;
            height: 2.5rem;
        }

        .icon-box__icon svg {
            fill: #8BF946;
        }

.icon-box:hover:before {
    opacity: .15;
}

.icon-box.secondary-hover:hover:before {
    opacity: .15;
    background: linear-gradient(135deg, rgba(0, 202, 246, 1) 0%, rgba(139, 249, 70, 0) 60%);
}

/*
    Eneba
*/

.eneba {
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.4;
    color: #fff;
    background: #4618AC;
    border-radius: .5rem;
    margin-bottom:2rem;
}

.eneba--title {
    margin-bottom: 1rem;
}

.eneba--title img {
    height: 1.75rem;
    width: auto;
}

.eneba--item {
    background: #311178;
    padding:0.5rem;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
}

.eneba--item-title {
    padding: 0.5rem;
}

.eneba--item img {
    max-width: 1rem;
    max-height: 1rem;
    margin-right: 0.5rem;
}


.eneba--trust-mobile  {
    text-align: center;
}

.eneba--trust-mobile img {
    height: 1.75rem;
    width: auto;
}

/*
    Feature
*/

.feature__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 1rem 1.5rem;
    background: #1F2834;
    border-radius: 0.5rem;
}

.feature__picture {
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin: 0 0 -2rem;
    border-radius: .75rem .75rem 0 0;
}

.feature__picture--blog {
    margin: 0 0 2rem;
}

/*
    Pricing
*/

.pricing {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    background: #1F2834;
    border-radius: 1.5rem;
    box-shadow: 0 .5rem 2rem rgba(15, 0, 0, .2);
}

    .pricing > * {
        position: relative;
        z-index: 2;
    }

    .pricing__title {
        display: flex;
        align-items: center;
        margin-bottom: .75rem;
        text-transform: none;
        font-style: normal;
        font-size: 1.25rem;
        color: #949DB0;
    }

        .pricing__title img {
            display: block;
            width: 2rem;
            height: 2rem;
            margin-right: .75rem;
        }

    .pricing__price {
        display: flex;
        align-items: center;
        margin-bottom: 1.125rem;
        padding-bottom: .625rem;
        font-size: .75rem;
        border-bottom: 1px solid #141B24;
        color: #fff;
    }

        .pricing__price > span {
            margin-right: .5rem;
            font-size: 2.5rem;
            font-weight: 700;
        }

        .pricing__price > span.small-price {
            font-size: 1.125rem;
            text-decoration: line-through;
        }

            .pricing__price > span span {
                font-size: 1.625rem;
            }

    .pricing__info {
        display: flex;
        align-items: center;
        padding: .875rem 1rem;
        line-height: 1.25;
        font-size: 1.125rem;
        color: #fff;
        background: #141B24;
        border-radius: .875rem;
    }

        .pricing__info img {
            display: block;
            height: 2rem;
            margin-right: 1rem;
        }

        .pricing__info span {
            display: block;
            font-size: .75rem;
            text-transform: uppercase;
            opacity: .7;
        }
    
    .pricing__info--highlighted {
        background-color: #7fdc45;
    }

    .pricing .badge {
        position: absolute;
        top: 0;
        right: 2.5rem;
        padding: .625rem 1rem;
        background-color: #949DB0;
        border-radius: 1.5rem;
        transform: translate(0, -50%);
    }

.pricing--premium {
    border: 2px solid #FF5D0B;
}

.pricing--premium:before {
    position: absolute;
    content: "";
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 93, 11, 1) 0%, rgba(255, 93, 11, 0) 100%);
    border-radius: 1.25rem;
    opacity: .15;
}

    .pricing--premium .badge {
        background-color: #FF5D0B;
    }


.pricing--vip {
    border: 2px solid #FF3369;
}

.pricing--vip:before {
    position: absolute;
    content: "";
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 51,105, 1) 0%, rgba(255, 93, 11, 0) 100%);
    border-radius: 1.25rem;
    opacity: .15;
}

    .pricing--vip .badge {
        background-color: #FF3369;
    }

/*
    Blog list
*/

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: #fff;
    background: #1F2834;
    border-radius: 0.5rem;
    transition: all .3s;
}

.blog-card .blog-content {
    padding: 1.5rem;
}

.blog-card .blog-title {
    text-transform: none;
    font-size: 1.125rem;
}

.blog-card figure {
    border-radius: 0.5rem 0.5rem 0 0;
    overflow: hidden;
}

a.blog-card:hover {
    transform: scale(1.05);
}


/*
    Accordion
*/

.accordion-item,
.accordion-button {
    background-color: transparent;
}

.accordion-item,
.accordion-flush .accordion-item:last-child {
    border-bottom: 1px solid #141B24;
}

.accordion-item {
    color: inherit;
}

    .accordion-button,
    .accordion-button:focus,
    .accordion-button:not(.collapsed) {
        box-shadow: none;
    }

    .accordion-button {
        padding: 1rem 0;
        font-size: 1rem;
        font-weight: 500;
        color: #fff;
    }

    .accordion-button:hover {
        color: rgba(255, 255, 255, .7);
    }

    .accordion-button:not(.collapsed) {
        color: #FF5D0B;
        background-color: transparent;
    }

    .accordion-button:before,
    .accordion-button:after {
        position: absolute;
        content: "";
        top: 50%;
        right: 0;
        width: 1rem;
        height: 2px;
        background: #949DB0;
    }

    .accordion-button:after {
        transform: rotate(-90deg);
    }

    .accordion-body {
        padding: .5rem 0 1.5rem;
    }

        .accordion-body > *:last-child {
            margin-bottom: 0;
        }

/*
    Panel
*/

.panel {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    background-color: #131313;
    border-radius: .5rem;
}

    .panel > * {
        position: relative;
        z-index: 2;
    }

    .panel__bg {
        position: absolute;
        z-index: 1;
        top: 0;
        right: 0;
        height: 17rem;
        max-width: none;
    }

    .panel__logo {
        height: 1.75rem;
        margin-bottom: 15rem;
    }

.panel--light {
    background-color: #1f2834;
}

.panel__separator {
    height: 1px;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    background-color: #141B24;
}

/*
    Testimonial
*/

.testimonial {
    position: relative;
    padding: 2rem 1.5rem .5rem;
    font-size: 1.125rem;
    background: #1F2834;
    border-radius: 1rem;
}

.review-language-switch-wrap {
    display: flex;
    justify-content: flex-end;
    margin: -1rem 0 1rem;
}

.review-language-switch {
    display: inline-flex;
    align-items: center;
    gap: .125rem;
    padding: .1875rem;
    border: 1px solid #2D3A49;
    border-radius: 999px;
    background: #141B24;
}

.review-language-switch__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    padding: .3125rem .5rem;
    border: 0;
    border-radius: 999px;
    font-size: .6875rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #8D97A8;
    background: transparent;
}

.review-language-switch__btn.is-active {
    color: #fff;
    background: #324152;
}

@media (hover: hover) {
    .review-language-switch__btn:hover {
        color: #fff;
    }
}

    .testimonial__header {
        display: flex;
        align-items: center;
        margin-bottom: 2rem;
    }

    .testimonial__header > img {
        width: 2rem;
        height: 2rem;
        margin-left: auto;
    }

/*
    Profile Bar
*/

.profile-bar {
    display: flex;
    align-items: center;
    font-size: .875rem;
    color: #949DB0;
}

    .profile-bar figure {
        overflow: hidden;
        flex: 0 0 auto;
        width: 3.5rem;
        height: 3.5rem;
        margin: 0 1rem 0 0;
        border-radius: 100%;
    }

    .profile-bar figure img {
        display: block;
        width: 100%;
        height: 100%;
    }

    .profile-bar strong {
        display: block;
        font-size: 1.125rem;
        font-style: italic;
        color: #fff;
    }

/*
    Top Bar
*/

.tab-bar {
    display: flex;
    justify-content: center;
}

.tab-bar__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 1.25rem;
    margin-left: 1rem;
    background: #1F2834;
    border-radius: .5rem;
}

    .tab-bar__icon {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 50%;
        left: 0;
        width: 2rem;
        height: 2rem;
        border: 1px solid #354253;
        background: linear-gradient(216deg, #1f2834 0%, #313e4d 100%);
        transform: translate(-50%, -50%);
        border-radius: 100%;
    }

        .tab-bar__icon img {
            display: flex;
            height: 50%;
        }

    .tab-bar ul {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: .6875rem;
    }

        .tab-bar ul li {
            margin: .125rem;
        }

            .tab-bar ul a {
                display: flex;
                align-items: center;
                min-height: 1.5rem;
                padding: .125rem .3125rem;
                font-weight: 700;
                font-style: italic;
                color: #fff;
                border-radius: .25rem;
            }

            .tab-bar ul li.active a,
            .tab-bar ul li:hover a {
                background-color: #141b24;
            }

                .tab-bar ul a svg {
                    display: block;
                    width: .875rem;
                    height: .875rem;
                    margin-right: .25rem;
                    fill: #fff;
                }

/*
    Counter Box
*/

.counter-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
    color: #fff;
}

    .counter-box__number {
        font-size: 2rem;
        line-height: 1;
        font-family: Montserrat, Arial, sans-serif;
        background: linear-gradient(to right, #07F468 0%, #AEFF00 100%);
        background-size: 100% auto;
        background-position: 0% 0%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

        .counter-box__number span {
            margin-right: .125em;
            font-size: 4rem;
        }

/*
    Page Navigation
*/

.page-nav {
    position: sticky;
    top: 6rem;
}

    .page-nav ul {
        padding: 0;
        font-size: 1rem;
        line-height: 1.25;
        list-style-type: none;
    }

        .page-nav a {
            display: flex;
            padding: .75rem 0 .75rem 1rem;
            border-left: .25rem solid #1f2834;
            color: rgba(255,255,255, 0.8);
        }

        .page-nav a:hover {
            border-color: #FF5D0B;
            color: #FF5D0B;
        }

/*
    Section Expand
*/

.section-expand {
    position: relative;
    overflow: hidden;
    transition: height .3s;
}

.section-expand:after {
    position: absolute;
    visibility: visible;
    content: '';
    right: 0;
    bottom: 0;
    left: 0;
    height: 8rem;
    background: linear-gradient(to bottom, rgba(20, 27, 36, 0) 0%, rgba(20, 27, 36, 1) 100%);
    opacity: 1;
    transition: all .3s;
}

    .section-expand__inner {
        padding-bottom: 1px;
    }

    .section-expand > .btn {
        position: absolute;
        visibility: visible;
        z-index: 2;
        left: 50%;
        bottom: 0;
        transform: translate(-50%, 0);
        opacity: 1;
        transition: all .3s;
    }

.section-expand.expanded:after,
.section-expand.expanded > .btn {
    visibility: hidden;
    opacity: 0;
}

/* COMPONENTS
================================================== */

/*
	Buttons
*/

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: .75rem 1.75rem;
    font-family: Montserrat, Arial, sans-serif;
    font-size: .875rem;
    line-height: 1.42875;
    font-weight: 600;
    box-shadow: none;
    border-radius: .5rem;
}

.btn-sm {
    min-height: 2rem;
    padding: .3125rem 1rem;
    border-radius: .375rem;
}

.btn-lg {
    min-height: 4rem;
    padding: 1.3125rem 2.5rem;
}

.btn:focus,
.btn:active:focus {
    box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .1);
}

.btn-secondary,
.btn-secondary:focus {
    border-color: #00CAF6;
    background-color: #00CAF6;
}

.btn-secondary:hover,
.btn-secondary:first-child:active,
:not(.btn-check) + .btn-secondary:active {
    border-color: #01b1d8;
    background-color: #01b1d8;
}

.btn-primary,
.btn-primary:focus {
    border-color: #FF5D0B;
    background-color: #FF5D0B;
}

.btn-primary:hover,
.btn-primary:first-child:active,
:not(.btn-check) + .btn-primary:active {
    border-color: #e65106;
    background-color: #e65106;
}

.btn-success,
.btn-success:focus {
    border-color: #07F468;
    background-color: #07F468;
}

.btn-success:hover,
.btn-success:first-child:active,
:not(.btn-check) + .btn-success:active {
    border-color: #07d45c;
    background-color: #07d45c;
}

.btn--default,
.btn--default:focus {
    border-color: #4C5969;
    color: #fff;
    background-color: #4C5969;
}

.btn--default:hover,
.btn--default:first-child:active,
:not(.btn-check) + .btn--default:active {
    border-color: #404b58;
    color: #fff;
    background-color: #404b58;
}

.btn-outline-dark,
.btn-outline-dark:focus,
.btn-outline-dark.active {
    border-color: #1f2834;
    color: #949db0;
    border-spacing: #1f2834;
    background-color: #1f2834;
}

.btn-outline-dark:hover,
.btn-outline-dark:first-child:active,
:not(.btn-check) + .btn-outline-dark:active {
    border-spacing: #1f2834;
    background-color: #1f2834;
}

    .btn-outline-dark svg,
    .btn-outline-dark:focus svg {
        fill: #949db0;
    }

    .btn-outline-dark:hover svg,
    .btn-outline-dark:first-child:active svg,
    :not(.btn-check) + .btn-outline-dark:active svg {
        fill: #fff;
    }


.btn-outline-dark.darker {
    background: #0C0F14;
    border-color: #0C0F14;
}

.btn svg {
    width: 1.5rem;
    height: 1.5rem;
    transition: fill .3s;
}

.btn-eneba,
.btn-eneba:focus {
    border-color: #FDBF45;
    background-color: #FDBF45;
    color: #000;
}

.btn-eneba:hover,
.btn-eneba:first-child:active,
:not(.btn-check) + .btn-eneba:active {
    border-color: #E8AC37;
    background-color: #E8AC37;
    color: #000;
}

.btn-secondary svg {
    fill: #fff;
}

/*
   Preorder
*/

.preorder-block {
    padding: 1rem;
    background: #07f468;
    border-radius: .75rem;
}

.preorder-block img {
    max-height: 28px;
    max-width: 45%;
}


/* ENTRY
================================================== */  
.entry h1, .entry h2, .entry h3, .entry h4, .entry h5, .entry h6 {
    text-transform: none;
}

.entry h3 {
    font-size: 1.5rem;
}

.entry h4 {
    font-size: 1.125rem;
    border-left: 3px solid #00CAF6;
    padding-left: 8px;
}

.entry h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem !important;
}

.entry figure.outline-panel img {
    border-radius: 10px;
}

.entry {
    line-height: 1.5;
    font-size: 17px;
}

.entry ul li {
    margin-bottom: 10px;
}


/*
	Form Components
*/

.form-control,
.form-select {
    padding: .53125rem 1rem;
    font-size: .875rem;
    border-radius: .5rem;
}

.form-control,
.form-control:focus,
.form-select,
.form-select:focus,
.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
    color: #949db0;
    background-color: #141B24;
    box-shadow: none;
}

.form-control,
.form-select {
    border-color: #273545;
}

.form-control:focus,
.form-select:focus,
.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
    border-color: #4c5969;
}

.form-control--dark,
.form-control--dark:focus,
.form-select--dark,
.form-select--dark:focus,
.form-control--dark.is-valid:focus,
.was-validated .form-control--dark:valid:focus {
    background-color: #0c0f14;
}

.form-control--dark,
.form-select--dark,
.form-control--dark.is-valid,
.was-validated .form-control--dark:valid {
    border-color: #273545;
}

    .form-floating > .form-control,
    .form-floating > .form-control-plaintext,
    .form-floating > label {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .form-floating > .form-control {
        color: #fff;
    }

    .form-floating > label {
        font-weight: 500;
    }

    .form-floating > svg {
        position: absolute;
        display: none;
        z-index: 1;
        top: 50%;
        right: 1rem;
        width: 1.25rem;
        height: 1.25rem;
        transform: translate(0, -50%);
    }


    .form-floating > .form-control-plaintext ~ label,
    .form-floating > .form-control:focus ~ label,
    .form-floating > .form-control:not(:placeholder-shown) ~ label,
    .form-floating > .form-select ~ label {
        opacity: 1;
        transform: scale(.75) translateY(-.125rem) translateX(.3125rem);
    }


.form-control.is-valid, 
.was-validated .form-control:valid {
    background-image: none;
}

    .form-control.is-valid ~ svg,
    .was-validated .form-control:valid ~ svg {
        display: block;
    }

.form-control.is-invalid,
.was-validated .form-control:invalid {
    border-color: #ff2d0b;
    background-image: none;
}

.invalid-feedback {
    font-size: .875rem;
    color: #ff2d0b;
}

.form-select-date {
    position: relative;
}

    .form-select-date .form-select {
        margin: 0;
        padding-right: 3rem;
        background-image: none;
    }

    .form-select-date svg {
        position: absolute;
        z-index: 1;
        top: 50%;
        right: .875rem;
        width: 1rem;
        height: 1rem;
        margin: 0;
        fill: #4c5969;
        transform: translate(0, -50%);
    }

.form-check:not(.form-switch) {
    margin-bottom: 0;
    padding-bottom: .5625rem;
    padding-top: .5625rem;
    padding-left: 3rem;
    font-weight: 500;
}

    .form-check:not(.form-switch) .form-check-input {
        width: 2.5rem;
        height: 2.5rem;
        margin-top: -.5625rem;
        margin-left: -3rem;
        border: 1px solid #273545;
        background-color: #0c0f14;
        background-size: 1.25rem 1.25rem;
        border-radius: .5rem;
        box-shadow: none;
    }

    .form-check:not(.form-switch) .form-check-input:focus {
        border-color: #4c5969;
        box-shadow: none;
    }

.form-switch {
    display: flex;
    margin-bottom: 0;
    padding-top: .3125rem;
}

    .form-switch .form-check-input,
    .form-switch .form-check-input:focus,
    .form-switch .form-check-input:active,
    .form-switch .form-check-input:checked {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-3.5 -3.5 7 7'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 1%29'/%3e%3c/svg%3e");
    }

    .form-switch .form-check-input {
        position: relative;
        display: block;
        width: 4.375rem;
        min-width: 4.375rem;
        height: 2.5rem;
        top: 0;
        border: 1px solid #4c5969;
        margin-top: -0.3125rem;
        margin-right: 0.75rem;
        background-color: transparent;
        border-radius: 2rem;
        cursor: pointer;
    }

    .form-switch .form-check-input:active {
        filter: none;
    }

    .form-switch .form-check-input:checked {
        border-color: #00CAF6;
        background-color: #00CAF6;
    }

    .form-switch .form-check-input:focus {
        box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .05);
    }

.form-control-lg,
.form-select-lg {
    padding-top: .75rem;
    padding-bottom: .75rem;
}

.form-label {
    display: block;
}

.form-label--lg {
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
}

/*
    Toggle
*/

.toggle {
    display: flex;
    align-items: center;
    color: #fff;
}

    .toggle__label {
        display: flex;
        flex-wrap: wrap;
    }

    .toggle__label:first-child {
        justify-content: flex-end;
        text-align: right;
    }

    .toggle .form-check {
        padding-top: 0;
        padding-left: 0;
    }

    .toggle .form-check-input {
        margin-top: 0;
        margin-left: .75rem;
    }

/*
    Titles
*/

.page-title {
    font-size: 1.725rem;
    line-height: 1.1;
}

.section-title {
    font-size: 1.875rem;
}

.section-title--sm {
    font-size: 1.5rem;
}

.section-subtitle {
    margin-bottom: .75rem;
    font-size: 1rem !important;
    font-style: italic;
    text-transform: uppercase !important;
    color: #FF5D0B;
}

.section-subtitle--gray {
    color: #949db0;
}

.section-subtitle--green {
    color: #8BF946;
}

.section-description {
    margin-bottom: 2rem;
    font-size: 1rem;
}

.title-with-icon {
    position: relative;
    padding-left: 2em;
    margin-bottom: .5rem;
    font-size: .875rem;
    font-style: italic;
    font-weight: 700;
    color: #FF5D0B;
}

    .title-with-icon svg {
        position: absolute;
        top: -.285714em;
        left: -.285714em;
        width: 1.714286em;
        height: 1.714286em;
        fill: #FF5D0B;
    }

.title-with-icon--sm {
    font-size: .875rem;
}

.title-with-icon--lg {
    padding-left: 2.25em;
    font-size: 1.25rem;
}

.title-with-icon--lg svg {
    left: 0;
}

.title-with-icon--gray {
    color: #949DB0;
}

.title-with-icon--gray svg {
    border-color: #949DB0;
    fill: #949DB0;
}

.title-with-icon--secondary {
    color: #00caf6;
}

.title-with-icon--secondary svg {
    border-color: #00caf6;
    fill: #00caf6;
}

/*
    Link
*/

.link svg {
    width: .75rem;
    height: .75rem;
    fill: #00CAF6;
    transition: fill .3s;
}

.link:hover svg {
    fill: #fff;
}

.scroll-margin {
    scroll-margin-top: 84px;
}


/*
    Lists
*/

.list-with-icon {
    padding: 0;
    list-style-type: none;
    line-height: 1.25;
    color: #fff;
}

    .list-with-icon li {
        position: relative;
        padding-left: 1.75em;
        margin-bottom: .3125em;
    }

        .list-with-icon svg {
            position: absolute;
            display: flex;
            align-items: center;
            top: .175em;
            left: 0;
            width: 1em;
            height: 1em;
            fill: #FF5D0B;
            transition: fill .3s;
        }

        .list-with-icon a:hover svg {
            fill: #fff;
        }

.list-with-icon--circle svg {
    padding: .15em;
    border: 1px solid #FF5D0B;
    border-radius: 100%;
}

.list-with-icon--secondary svg {
    border-color: #00caf6;
    fill: #00caf6;
}

.list-with-icon--gray svg {
    border-color: #949DB0;
    fill: #949DB0;
}


/*
    Outline Panel
*/

.outline-panel {
    position: relative;
}

.outline-panel:before {
    position: absolute;
    content: "";
    z-index: -2;
    top: -.5rem;
    right: -.5rem;
    bottom: -.5rem;
    left: -.5rem;
    border: 1px solid #394659;
    border-radius: 1rem;
}

.outline-panel:after {
    position: absolute;
    content: "";
    z-index: -1;
    top: -.5rem;
    right: -.5rem;
    bottom: -.5rem;
    left: -.5rem;
    background: linear-gradient(to right, rgba(20, 27, 36, 0) 0%, rgba(20, 27, 36, 1) 50%, rgba(20, 27, 36, 0) 100%);
}

    .outline-panel > * {
        position: relative;
        z-index: 2;
    }

/*
    Info Text
*/

.info-text {
    font-size: .875rem;
    color: #949DB0;
}

/* GLOBALS
================================================== */

.bg--gray {
    background-color: #1f2834;
}

.bg--bottom-flag {
    background: url("../img/bg-shape-4.png") center bottom no-repeat;
    background-size: 100% auto;
}

.bg--grid-top {
    background: url("../img/bg-grid-1.png") center top repeat-x;
    background-size: 1920px auto;
}

.bg--grid-bottom,
.bg--grid-bottom-2,
.bg--grid-bottom-3 {
    background: url("../img/bg-grid-2.png") center bottom repeat-x;
    background-size: 1920px auto;
}

.bg--grid-bottom-2 {
    background-position: center calc(100% - 6.5rem);
}

.bg--grid-bottom-3 {
    background-position: center calc(100% - 13rem);
}

.bg--grid,
.bg--grid-2 {
    background: url("../img/bg-grid.png") center bottom no-repeat;
    background-size: 100% auto;
}

.bg--grid-2 {
    background-position: center calc(100% - 3rem);
}

.c--mute {
    color: #949DB0;
}

.c--white {
    color: #fff;
}

.c--secondary {
    color: #00caf6;
}

.c--primary {
    color: #FF5D0B;
}

.c--success {
    color: #8bf946;
}

.c--gradient-primary {
    background: linear-gradient(to right, #FF5D0B 0%, #FF3369 50%, #FF5D0B 100%);
    background-size: 200% auto;
    background-position: 0% 0%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textColorSlide 3s infinite linear;
}

.fill--disabled {
    fill: #949db0;
}

.fill--primary {
    fill: #FF5D0B !important;
}

.fill--secondary {
    fill: #00caf6;
}

.fill--success {
    fill: #8bf946;
}

.w--112 {
    width: 112px;
}

.miw--224 {
    min-width: 224px;
}

.maw--224 {
    max-width: 224px;
}

.text--sm {
    font-size: .75rem;
}

.text--md {
    font-size: .875rem;
}

.text--lg {
    font-size: 1.25rem;
}

.text--highlighted {
    position: relative;
    font-style: italic;
    color: #8bf946;
}

.text--highlighted:after {
    position: absolute;
    content: "";
    top: 100%;
    right: 0;
    left: 0;
    height: 5px;
    margin-top: 2px;
    background: url("../img/underline.png") center top no-repeat;
    background-size: 100% 100%;
}

.text-transform--none {
    text-transform: none;
}

.text-italic {
    font-style: italic;
}

.icon--64 {
    width: 4rem;
    height: 4rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
  }

.video-container.bordered {
    border-radius: 1rem;
    overflow: hidden;
    
 }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .modal-video-close {
    position: absolute;
    top:-40px;
    right:0;
    z-index: 2;
    cursor: pointer;
  }

  .modal-video-close svg {
    fill: #FFF;
    width: 20px;
    height: 20px;
    cursor: pointer;
  }

  .discord-widget {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    box-shadow: 0 .5rem 2rem rgba(12, 15, 20, .4);
  }

/* RESPONSIVE
================================================== */

/*
	XS
*/

@media screen and (max-width: 575px) {

}

/*
	SM and down
*/

@media screen and (max-width: 767px) {

    .icon--64 {
        width: 2rem;
        height: 2rem;
    }

}

/*
	MD and down
*/

@media screen and (max-width: 991px) {

    .mobile-menu-btn {
        position: relative;
        display: block;
        width: 30px;
        margin-left: auto;
        padding-top: 28px;
    }

        .mobile-menu-btn span {
            position: absolute;
            top: 14px;
            right: 3px;
            left: 3px;
            height: 2px;
            margin-top: -1px;
            background: #fff;
            transition: all .3s;
            border-radius: 2px;
        }

        .mobile-menu-btn span:nth-child(1) {
            transform: translate3d(0, -8px, 0);
        }

        .mobile-menu-btn span:nth-child(3) {
            transform: translate3d(0, 8px, 0);
        }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .main-menu {
        width: auto;
        font-size: .8125rem;
    }

        .main-menu > ul > li > a:not(.btn) {
            min-height: 2.5rem;
            padding: .25rem .75rem;
            border-radius: .25rem;
        }

        .main-menu__icon {
            width: 1.25rem;
            height: 1.25rem;
        }

    .hero {
        padding-bottom: 2rem;
    }

    .feature__content.outline-panel:before,
    .feature__content.outline-panel:after {
        display: none;
    }

    .counter-box {
        font-size: 1.125rem;
    }

    .counter-box__number span {
        font-size: 2rem;
        margin-right: 0;
    }

    .icon-box {
        padding: 1.5rem;
    }

    .icon-box p {
        margin-bottom: 0;
    }

    .icon-box__icon {
        margin-bottom: 1rem;
    }
}

/*
	XXL and up
*/

@media screen and (max-width: 1200px) {

}

/*
	MD and up
*/

@media screen and (min-width: 768px) {

    .header__logo {
        height: 1.75rem;
    }


    .tab-bar__inner {
        padding-left: 2.5rem;
        margin-left: 2rem;
    }

        .tab-bar__icon {
            width: 4rem;
            height: 4rem;
        }

        .tab-bar ul {
            padding: .25rem;
            font-size: 1rem;
        }

            .tab-bar ul li {
                margin: .25rem;
            }

                .tab-bar ul a {
                    min-height: 3rem;
                    padding: .5rem .75rem;
                }

                    .tab-bar ul a svg {
                        width: 1.5rem;
                        height: 1.5rem;
                        margin-right: .5rem;
                    }

}

/*
	LG and up
*/

@media screen and (min-width: 992px) and (max-width: 1200px) {

    .main-menu,
    .main-menu .btn {
        font-size: .75rem;
    }

}

@media screen and (min-width: 992px) {

    .header {
        margin-top: 1.5rem;
        background: transparent;
    }

        .header__inner {
            height: 4rem;
            padding: 0 1.25rem;
            background: #1f2834;
            border-radius: .75rem;
        }

    .main-menu.collapse:not(.show) {
        display: flex;
    }

        .main-menu .main-menu__inner {
            display: flex;
            align-items: center;
            width: 100%;
        }

    .section {
        padding-top: 2.5rem;
        padding-bottom: 1rem;
    }

    .section--features {
        position: relative;
        background: url("../img/bg-shape-3.png") right 80px top 520px no-repeat;
        background-size: 740px auto;
    }

    .section--features:after {
        position: absolute;
        content: "";
        bottom: -200px;
        left: -40px;
        width: 517px;
        height: 456px;
        background: url("../img/bg-shape-6.png") center center no-repeat;
        background-size: contain;
    }

    .section--lifetime {
        padding-bottom: 80px;
        padding-top: 80px;
        background: url("../img/bg-shape-7.png") calc(50% - calc(19vw + 200px)) 0 no-repeat, url("../img/bg-shape-8.png") right calc(50% - calc(19vw + 300px)) bottom 70px no-repeat;
        background-size: 467px auto, 399px auto;
    }

    .section--reviews {
        padding-bottom: 80px;
        padding-top: 0;
        background: url("../img/bg-shape-10.png") center bottom no-repeat;
        background-size: 100% auto;
        margin-bottom: 0;
    }


    .hero {
        padding-bottom: 1.5rem;
    }

        .hero__picture {
            height: 460px;
        }

            .hero__picture img {
                left: 0;
                max-width: 869px;
                transform: translate(0, -50%);
            }

        .hero__slider {
            display: flex;
        }

    .picture-slider {
        position: relative;
        width: 100%;
        height: 590px;
        background-size: 100% auto;
        animation: pictureSliderBg 2s infinite linear;
    }

    .feature.outline-panel:before,
    .feature.outline-panel:after {
        display: none;
    }

    .feature__content {
        min-height: 480px;
        margin-right: -5rem;
        padding: 2rem 7.5rem 2rem 2.5rem;
    }

    .feature__picture {
        margin: 0;
        box-shadow: 0 .5rem 2rem rgba(12, 15, 20, .4);
        border-radius: .75rem;
    }

    .feature--reverse .feature__content {
        margin-right: 0;
        margin-left: -5rem;
        padding-left: 7.5rem;
        padding-right: 2rem;
    }

    .feature__picture--blog {
        margin: 0 -3rem 2rem;
    }

    .eneba {
        padding: 2rem;
        margin-left: -3rem;
        margin-right: -3rem;
    }
    
    .eneba--title {
        margin-bottom: 2rem;
    }
    
    .eneba--title img {
        height: 2.5rem;
        width: auto;
    }

    .eneba--item img {
        max-width: 2rem;
        max-height: 2rem;
        margin-right: 0.75rem;
    }

    .eneba--item-title {
        padding: 0;
    }
    
    .eneba--item {
        padding:0.75rem;
    }

    .panel {
        padding: 2.5rem;
    }

        .panel__bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .panel__logo {
            margin-bottom: 4rem;
        }

    .panel:not(.p-4) .panel__separator {
        margin-left: -2.5rem;
        margin-right: -2.5rem;
    }

    .testimonial {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

}
 
/*
    XL and up
*/
 
@media screen and (min-width: 1200px) {

    body {
        font-size: 1rem;
    }

    .main-menu ul a:not(.btn) {
        padding-left: .75rem;
        padding-right: .75rem;
    }

    .page-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-title--sm {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1.125rem;
    }

    .hero__picture {
        height: 574px;
    }

    .hero__text {
        font-size: 1.25rem;
    }

    .picture-carousel {
        height: 436px;
    }

    .icon-box {
        font-size: 1.125rem;
    }

    .accordion-button {
        font-size: 1.125rem;
    }

    .miw-xl--224 {
        min-width: 224px;
    }

}

/*
    XXL and up
*/

@media screen and (min-width: 1400px) {

    .main-menu > ul > li {
        margin-left: .25rem;
    }

    .main-menu > ul > li > .btn {
        margin-left: .75rem;
    }
    
    .picture-carousel {
        height: 640px;
    }

}

/*
    XXXL and up
*/
 
@media screen and (min-width: 1580px) {

    .hero {
        padding-top: 3rem;
    }

    .hero.bg--grid-bottom figure {
        margin-right: -9.75rem;
    }

    .feature__content {
        min-height: 542px;
        margin-right: -5rem;
        margin-left: -7rem;
    }

    .feature__picture {
        margin-right: -7rem;
    }

    .feature--reverse .feature__content {
        margin-right: -7rem;
    }

    .feature--reverse .feature__picture {
        margin-left: -7rem;
        margin-right: 0;
    }

}

/* ANIMATIONS
================================================== */

@keyframes textColorSlide {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

/* Language Switcher
================================================== */

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-switcher__toggle {
    display: flex;
    align-items: center;
    gap: .375rem;
    padding: .3125rem .5rem;
    min-height: 4rem;
    background: none;
    border: none;
    color: #fff;
    font-size: .9375rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background-color .2s;
}

.lang-switcher__toggle:hover {
    background-color: #273545;
}

.lang-switcher__globe {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

.lang-switcher__arrow {
    fill: #fff;
    width: .75rem;
    height: .75rem;
    transition: transform .2s;
}

.lang-switcher__arrow--open {
    transform: rotate(180deg);
}

.main-menu .lang-switcher__menu {
    position: absolute;
    visibility: visible;
    top: 100%;
    right: 0;
    left: auto;
    margin: 0;
    padding: .75rem 0;
    list-style: none;
    background: #273545;
    border-radius: 0 0 1rem 1rem;
    min-width: 10rem;
    white-space: nowrap;
    flex-direction: column;
    z-index: 1000;
    opacity: 1;
    transition: none;
}

.lang-switcher__menu a {
    display: block;
    padding: .375rem 1rem;
    color: #9ca2aa;
    font-weight: 700;
    font-size: .9375rem;
    text-decoration: none;
    transition: color .2s, background-color .2s;
}

.lang-switcher__menu a:hover,
.lang-switcher__menu a.active {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

/* Mobile language switcher */
.mobile-menu .lang-switcher {
    width: 100%;
}

.mobile-menu .lang-switcher__toggle {
    width: 100%;
    justify-content: center;
    min-height: auto;
    padding: .625rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: .5rem;
    font-size: .875rem;
}

.mobile-menu .lang-switcher__menu {
    position: static;
    border-radius: .5rem;
    margin-top: .25rem;
}
