@font-face {
    font-family: 'Mont';
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Mont-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Mont';
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/Mont-Heavy.ttf') format('truetype');
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100vh;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #3E1065;
    font-family: 'Mont', sans-serif;
    color: #fff;
    background: url("../img/bg.png") center top;
    background-size: cover;
}

.container {
    width: 1000px;
    padding: 0 15px;
    margin: 0 auto;
}

.content {
    overflow: hidden;
}

.header{

}

.header__payments, .header__logo {
    display: block;
    height: auto;
    max-width: 100%;
    margin: 0 auto 15px;
}

.header__payments--mob{
    display: none;
}

.offer{
    text-align: center;
    position: relative;
}

.offer:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    width: 740px;
    height: 253px;
    background: #0AFE70;
    opacity: 0.4;
    filter: blur(70px);
    border-radius: 65px;
}

.offer > * {
    position: relative;
    z-index: 12;
}

.offer__title {
    font-size: 120px;
    font-weight: 800;
    color: #0AFE70;
    text-shadow: 0px 1px 14px rgba(10, 254, 112, 0.6);
}

.offer__subtitle {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.offer__img {
    transform: translate(365px, -55px);
}

.btn {
    display: inline-block;
    height: 48px;
    width: 190px;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 800;
    color: #3E0D61;
    text-decoration: none;
    background: #0AFE70;
    border-radius: 37px;
    line-height: 48px;
}

.btn:hover {
    background: #26fe99;
}

.offer .btn{
    margin-bottom: 19px;
}

.link {
    font-size: 18px;
    font-weight: 400;
    text-decoration: underline;
    color: #0AFE70;
}

.text-loading {
    background: linear-gradient(
            to right,
            #0afe70 0% 40%,
            #1bf978 40% 75%,
            #fff 75% 85%,
            #aaf0c0 85% 100%
    ) repeat-x 0;
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: preloading 4s infinite linear;
}

@keyframes preloading {
    0% {
        background-position: 0;
    }
    20% {
        background-position: 200%;
    }
    100% {
        background-position: 200%;
    }
}

.deposits {
    display: flex;
    justify-content: center;
    margin-top: -70px;
    margin-bottom: 100px;
}

.deposit {
    text-align: center;
    margin: 0 25px;
}

.deposit__img {
    display: block;
    margin: 0 auto 15px;
}

.deposit__title {
    font-size: 24px;
    font-weight: 800;
    color: #0AFE70;
    text-shadow: 0px 0px 7px #0AFE70;
}

.deposit__desc {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-shadow: 0px 0px 7px #0AFE70;
}

.footer {
    padding: 0 15px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 12px;
}

.footer__providers, .footer__age {
    display: block;
    margin: 0 auto 55px;
    height: auto;
    max-width: 100%;
}

.footer__providers--tablet {
    display: none;
}

.details-page {
    color: #0AFE70;
    background: linear-gradient(0deg, #180028 0%, rgba(24, 0, 40, 0) 69.24%),
    linear-gradient(180deg, #3E0D61 0%, #433292 100%);
    padding: 100px 0;
    font-size: 16px;
    text-shadow: 0 1px 14px rgba(10, 254, 112, 0.6);
}

.container-lg {
    width: 1280px;
    max-width: 100%;
}

.close {
    position: absolute;
    top: 15px;
    right: 60px;
    cursor: pointer;
}

.details-page a {
    color: #0AFE70;
}

@media only screen and (max-width:1200px) {
    .offer__img {
        transform: translate(65px, 0px);
    }

    .container {
        width: auto;
    }

    .deposits {
        margin-top: 85px;
        margin-bottom: 80px;
        flex-wrap: wrap;

    }

    .deposit {
        flex-basis: 33.333%;
        margin: 0;
        padding: 0 25px;
        margin-bottom: 20px;
    }

    body {
        background: url("../img/bg-tablet.png") center top;
        background-size: cover;
    }

    .footer__providers {
        display: none;
    }

    .footer__providers--tablet {
        display: block;
    }
}

@media only screen and (max-width:767px) {
    body {
        background: url("../img/bg-mob.png") center top;
        background-size: cover;
    }

    .header__logo {
        max-width: 180px;
    }

    .offer__title {
        font-size: 72px;
    }

    .offer__subtitle {
        font-size: 22px;
    }

    .offer:after{
        width: 528px;
        height: 181px;
    }

    .offer__img {
        transform: none;
        max-width: 100%;
        margin-top: 20px;
    }

    .deposit {
        flex-basis: 50%;
        padding: 0 10px;
    }

    .footer__providers {
        display: none;
    }

    .header__payments {
        display: none;
    }

    .header__payments--mob {
        display: block;
    }

    .close {
        transform: scale(0.7);
        right: 15px;
    }
}
