html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}
* {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    outline: 0
}
a {
    text-decoration: none;
    color: inherit
}
a:hover {
    text-decoration: none;
    color: inherit
}
li, ul {
    margin: 0;
    padding: 0;
    list-style: none
}
h1, h2, h3, h4, h5, p {
    margin: 0
}
body {
    color: #333;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    min-width: 320px;
    margin: 0;
    min-height: 100vh;
    background-image: url(../img/bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
body::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .75);
    z-index: -1;
    opacity: 0
}
body.show::after {
    -webkit-animation: show .5s ease-in forwards;
    animation: show .5s ease-in forwards
}
body.dieOut::after {
    -webkit-animation: dieOut .5s ease-in forwards;
    animation: dieOut .5s ease-in forwards
}
.main {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
}
.container {
    width: 100%;
    max-width: 1260px;
    padding: 0 20px;
    margin: 0 auto
}
.header {
    padding: 40px;
    text-align: center;
    position: absolute;
}
.header__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}
.header img {
    display: block;
    width: 184px;
}
.main__title {
    font-size: 64px;
    font-weight: 900;
    line-height: 72px;
    text-align: center;
    color: #fff;
    margin: 18px 0px 38px;
}
.main__promocode {
    background-image: url(../img/promocode-back.png);
    background-repeat: no-repeat;
    background-size: contain;
    text-align: center;
    color: #DCFF31;
    font-family: Permanent Marker;
    font-size: 38px;
    font-weight: 400;
    line-height: 36px;
    text-transform: uppercase;
    margin: 20px 0px;
    background-position: center;
    padding: 26px;
}
.main__promocode_color {
    font-family: Permanent Marker;
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
    color: #fff;
}
.main__button {
    position: relative;
    border: none;
    width: 340px;
    height: 92px;
    border-radius: 16px;
    -webkit-animation: radial-pulse 1s infinite;
    animation: radial-pulse 1s infinite;
    line-height: 32px;
    margin: auto;
    top: -120px;
    background: #DCFF00;
}
.main__button a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #0F1419;
    font-weight: 500;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}
@-webkit-keyframes radial-pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(239, 158, 18, .5);
        box-shadow: 0 0 0 0 rgba(239, 158, 18, .5)
    }
    100% {
        -webkit-box-shadow: 0 0 0 40px rgba(245, 229, 198, 0);
        box-shadow: 0 0 0 40px rgba(245, 229, 198, 0)
    }
}
@keyframes radial-pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(239, 158, 18, .5);
        box-shadow: 0 0 0 0 rgba(239, 158, 18, .5)
    }
    100% {
        -webkit-box-shadow: 0 0 0 40px rgba(245, 229, 198, 0);
        box-shadow: 0 0 0 40px rgba(245, 229, 198, 0)
    }
}
.main__bonus {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    margin: 0 auto;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}
.main__bonus-wrap {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 13px;
}
.main__bonus_color {
    font-family: Permanent Marker;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.02em;
    color: #FF3286;
    text-transform: uppercase;
}
.main__bonus-break {
    flex-basis: 100%;
    height: 0;
}
.main__img { 
    width: 100%;
    margin: 70px auto 0px;    
}
.main__img-m {
    display: none;
}
@media screen and (max-width: 992px) {
    body {
        background-image: url(../img/bg-mobail.webp);
        background-position: center;
        position: relative;
        height: 100vh;
    }
    .main__bonus {
        gap: 2px
    }
    .main__bonus-break {
        display: none;
    }
    .main__title {
        font-size: 36px;
        font-weight: 900;
        line-height: 42px;
    }
    .main__promocode {
        font-size: 28px;
        padding: 10px;
    }
    .main__promocode_color {
        font-size: 18px;
        font-weight: 800;
        line-height: 20px;
    }
    .main__bonus-wrap {
        font-size: 14px;
        margin: 0px 6px;
    }
    .main__bonus_color {
        font-size: 16px;
    }
    .main__bonus-wrap.lifetime {
        order: 2; 
    }
    .main__bonus-wrap.timeframes {
        order: 1; 
    }
    .main {
        justify-content: flex-start;
    }
    .main__img {
        width: 100%;
        margin-top: 300px;
    }
    .header {
        padding: 12px 0 16px;
        position: absolute;
        width: 100%;
        z-index: 1;
    }
    .main__img-m {
        position: absolute;
        z-index: 2;
        width: 100%;
        display: none;

    }
    
}
@media screen and (max-width: 768px) {
    .main__img {
        display: none;
    }
    .main__img-m {
        display: block;
    }
    body {
        background-image: url(../img/bg-mobail.webp);
        background-position: center;
        position: relative;
        height: 100vh;
    }
    .header img  {
        width: 120px;
        margin: auto;
    }
    .main__title {
        margin: 10px 0px 15px;
        font-size: 32px;
    }
    .main__promocode {
        margin: 0px;
    }
    .main__button {
        width: 336px;
        position: absolute;
        z-index: 3;
        bottom: 0;
        height: 52px;
        text-align: center;
        left: 50%;
        transform: translate(-50%, 0px);
        top: 50vh;
    }
    .main__button a {
        font-size: 18px;
    }
    .main::after {
        position: absolute;
        content: "";
        right: 0;
        bottom: 0;
        left: 0;
        height: 41vh;
        background: linear-gradient(to top, rgb(36, 39, 45) 0%, rgb(36 39 45) 50%, rgb(29 32 39 / 0%) 100%);
        z-index: 1;
        opacity: 1;
    }
}
.preloader{position:fixed;left:0;top:0;right:0;bottom:0;background:#1e212a;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;z-index:1000}.preloader.hidden{-webkit-animation:1.5s linear forwards hiddenPreloader;animation:1.5s linear forwards hiddenPreloader}@-webkit-keyframes hiddenPreloader{0%{opacity:1;z-index:1000}30%{opacity:.8}50%{opacity:.5}70%{opacity:.3}100%{opacity:0;z-index:-1}}@keyframes hiddenPreloader{0%{opacity:1;z-index:1000}30%{opacity:.8}50%{opacity:.5}70%{opacity:.3}100%{opacity:0;z-index:-1}}
@media screen and (max-width: 568px) {
    .main__img {
        margin: 0px auto 0px;
    }
    .main__bonus {
        margin-top: 15px;
    }
}