@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    color: rgba(17, 17, 29, 0.82)
}

a {
    color: white;
    text-decoration: none;
}

img {
    width: 100%;
}

.container {
    max-width: 1240px;
    margin: auto;
}

.btn {
    background: linear-gradient(90deg, rgb(141 23 23) 0%, rgb(207 40 86) 100%);
    color: #fff;
    font-weight: 600;
    padding: 10px 30px;
    text-align: center;
    text-transform: uppercase !important;
    width: fit-content;
    cursor: pointer;
    transition-duration: 0.25s;
    border: dashed 2px sienna;
}

.btn:hover {
    background: #f9f9ff;
    color: black;
    border: dashed 2px sienna;
}

.title {
    font-size: 47px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
    background: linear-gradient(270deg, #ff0000 0%, #000000 98.57%), #000000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar__outer {
    background: #54969d;
    padding: 20px;
}

.navbar__inner {
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar__image {
    width: 90px;
}

.navbar__menu {
    display: flex;
    align-items: center;
}

.navbar__menu-item {
    margin: 0 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
}

.navbar__menu-item a:hover {
    color: black !important;
}

.navbar__lang {
    cursor: pointer;
    position: relative;
}

.navbar__lang-list {
    position: absolute;
    content: "";
    top: 40px;
    left: -60px;
    background: rgba(255, 255, 255, 0.599);
    padding: 10px;
    width: fit-content;
    transition-duration: 0.2s;
    opacity: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 10px;
}

.navbar__lang-list-item,
.navbar__lang-image {
    background: black;
    color: white;
    border-radius: 100%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: 0.2s;
}

.navbar__lang-list-item:hover,
.navbar__lang-image:hover {
    background: white;
    color: black;
    font-weight: 700;
}

.navbar__lang-image {
    text-transform: uppercase;
}

.navbar__lang-link {
    margin: 10px 0;
    color: white;
}

.navbar__lang-list_active {
    z-index: 10;
    opacity: 1;
}

.navbar-mob__outer {
    display: none;
}

.banner__outer {
    background: linear-gradient(to right, #fff5f19b 0%, #fff4f563 100%),
        url(../img/banner.jpg);
    background-size: cover;
}

.banner__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 150px;
    align-items: center;
    padding: 100px 0;
}

.banner__description {
    padding-bottom: 25px;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 500;
}

.info__outer {
    background: #f9f9ff;
    padding: 100px 0;
}

.info__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 55px;
    align-items: center;
}

.info__button {
    margin-bottom: 30px;
}

.info__description {
    margin-bottom: 46px;
    text-align: justify;
}

.play__outer {
    background: linear-gradient(to right, #00000079 0%, #2121212c 100%),
        url(../img/play.jpg);
    padding: 100px 0;
    background-size: cover;
}

.play__title {
    font-size: 35px;
    color: white;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 50px;
    text-transform: uppercase !important;
    text-align: center;
}

.play__description {
    color: white;
    text-align: center;
    margin-bottom: 60px;
}

.play__button {
    margin: auto;
}

.steps__title {
    margin-bottom: 90px;
}

.steps__outer {
    background: #77d1db66;
}

.steps__inner {
    padding: 100px 0;
}

.steps__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 60px;
}

.steps__item {
    background: #f9f9ff;
    position: relative;
    padding: 60px 30px 30px 30px;
    box-shadow: 1px 2px 20px silver;
}

.steps__number {
    position: absolute;
    content: '';
    width: 60px;
    height: 60px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 30px;
    top: -26px;
    left: 50%;
    transform: translate(-50%);
    background: #d10505;
}

.steps__description {
    text-align: center;
    font-weight: 700;
}

.strategy__inner {
    padding: 100px 0;
}

.strategy__title {
    text-align: center;
    margin-bottom: 70px;
}

.strategy__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 70px;
    grid-row-gap: 40px;
}

.strategy__text {
    padding: 40px 30px;
    background: rgb(208 218 233 / 39%);
}

.strategy__name {
    text-transform: capitalize;
    font-weight: 700;
    font-size: 24xp;
    margin-bottom: 30px;
    background: linear-gradient(270deg, #ff0000 0%, #000000 98.57%), #000000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.strategy__description {
    text-align: justify;
    margin-bottom: 40px;
}

.strategy__button {
    width: calc(100% - 60px);
}

.promo__outer {
    background: aliceblue;
}

.promo__inner {
    padding: 100px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    align-items: center;
}

.promo__bonus {
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.promo__bonus span {
    background: linear-gradient(270deg, #ff0000 0%, #000000 98.57%), #000000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 6px rgb(75, 75, 75));
}

.promo__description {
    margin-bottom: 30px;
}

.pay__inner {
    padding: 100px 0;
}

.pay__subtitle {
    text-align: center;
    margin-bottom: 80px;
}

.pay__title {
    text-align: center;
}

.pay__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    text-align: center;
}

.pay__icon {
    font-size: 30px;
    color: #fff;
    padding: 20px;
    border-radius: 100%;
    width: fit-content;
    margin: auto;
    margin-bottom: 30px;
    background: #c9edf1;
    box-shadow: 2px 3px 10px #75a6cb;
    cursor: pointer;
    color: #000000;
    font-weight: 700 !important;
    border: solid 5px black;
}

.pay__name {
    font-weight: 700;
    margin-bottom: 20px;
}

.pay__text {
    font-size: 16px;
}

.seo__inner {
    padding: 100px 0;
}

.seo__title {
    text-align: center;
}

.seo__description {
    text-align: center;
}

.footer__outer {
    padding: 50px;
    background: #323232;
}

.footer__text {
    color: white;
    text-align: center;
}

@media(max-width: 600px) {
    .container {
        padding: 20px;
    }

    .navbar__outer {
        display: none;
    }

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

    .navbar-mob__pop-menu {
        position: absolute;
        content: '';
        top: -1160px;
        left: 0;
    }

    .navbar-mob__outer_active .navbar-mob__pop-menu {
        width: calc(100% - 50px);
        top: 60px;
    }

    .navbar-mob__logo {
        width: 42px;
    }

    .navbar-mob__button {
        width: unset;
        zoom: 0.8;
    }

    .navbar-mob__outer {
        display: block;
        position: fixed;
        height: 60px;
        width: 100%;
        z-index: 10;
        padding-bottom: 30px;
        transition-duration: 0.5s;
    }

    .navbar-mob__outer {
        background: #54969d;
    }

    .navbar-mob__outer_fixed {
        background: #54969d;
    }

    .navbar-mob__outer_active {
        background: #54969d;
        height: 100%;
    }

    .navbar__lang-link {
        margin-right: 10px;
    }

    .navbar__lang-list {
        position: relative;
        content: "";
        top: 30px;
        left: -10px;
        background: white;
        border-radius: 5px;
        padding: 10px;
        width: unset;
        transition-duration: 0.4s;
        opacity: 1;
        display: flex;
    }

    .navbar__menu-item {
        margin: 0 8px;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .navbar-mob__menu-icon {        
        content: '';
        top: 35px;
        right: 25px;
        cursor: pointer;
        filter: invert(1);
        width: 40px;
    }

    .navbar-mob__outer_active .navbar-mob__menu-icon {
        content: '';
    }

    .navbar-mob__pop-menu {
        margin-top: 35px;
        padding: 25px;
        transition-duration: 0.5s;
    }

    .navbar-mob__menu-item {
        margin-bottom: 26px;
    }

    .navbar-mob__menu-link {
        font-family: 'Organetto';
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 114.8%;
        color: #00CFFF;
    }

    .navbar-mob__menu {
        border-bottom: 2px solid rgba(255, 255, 255, 0.82);
        margin-bottom: 22px;
        display: block;
    }

    .navbar-mob .navbar__lang-list {
        background: transparent;
    }

    .banner__inner {
        grid-template-columns: 1fr;
        padding: 60px 0;
    }

    .banner__img {
        margin-bottom: 40px;
    }

    .banner__title {
        text-align: center;
    }

    .banner__description {
        text-align: center;
    }

    .banner__button {
        margin: auto;
    }

    .info__inner {
        grid-template-columns: 1fr;
    }

    .info__img {
        margin-bottom: 50px;
    }

    .steps__list {
        grid-template-columns: 1fr;
    }

    .steps__number {
        right: -20px;
    }

    .strategy__list {
        grid-template-columns: 1fr;
    }

    .pay__list {
        grid-template-columns: 1fr;
    }

    .promo__inner {
        grid-template-columns: 1fr;
    }
}