
@import url('https://fonts.googleapis.com/css2?family=Lemon&display=swap');


body {
    font-family: Arial, sans-serif;
    /*font-family: 'Berkshire Swash', cursive;*/
}

p {
    margin: 0;
}

img {
    width: 100%;
}

#page {
    min-height: 100vh;
    background: url("../img/bg.jpg") no-repeat;
    background-size: cover;
    background-position: 100% 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.logo {
    width: 9.6vw;
    position: absolute;
    top: 12vh;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
}
.offer{
    margin-right: 5.6vw;
    width: 45vw;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
}


.offer__title, .offer__sub-title {
    font-family: 'Lemon', cursive;
    line-height: 1.1;
    color: #ffffff;
}

.offer__title {
    font-size: 7.171vw;
}

.offer__sub-title {
    font-size: 4.729vw;
}


.offer__buttons {
    text-align: center;
    margin-top: 3.8vh;
}

.offer__copy-wrapp {
    width: 24.64vw;
    height: 3.44vw;
}

.offer__copy-wrapp {
    border-radius: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    background: #6244B9;
    margin-bottom: 2.8vh;
}

.offer__play-link {
    width: 24.64vw;
    height: 3.44vw;
}

.offer__bonus {
    font-size: 1.242vw;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #FFFFFF;
    padding-left: 2%;
    width: 50%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
}

.offer__copy-btn {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    height: 100%;
    width: 50%;
    right: -1px;
    border-radius: 100px;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    background: #ffffff;
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
    font-weight: bold;
    font-size: 0.937vw;
    text-align: center;
    color: #6244B9
;
}

.offer__play a {
    text-decoration: none;
}

.offer__play-link {
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    margin: 0 auto;
    z-index: 2;
    background: #FFB957;
    border-radius: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.223vw;
    color: #000000;
}

.offer__terms {
    max-width: 19.958vw;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
    padding: 3.681vh 0 3.604vh 0;
}

.art{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
}
.art__hero{
    position: absolute;
    width: 60.4vw;
    bottom: 0;
    left: -3.7vw;
}
.art__hero--tab, .art__hero--mob{
    display: none;
}
.art__shine{
    position: absolute;
    width: 63.5vw;
    height: 63.5vw;
    bottom: 0;
    left: 0;
}
.art__shine img{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: auto;
    mix-blend-mode: screen;
}
.art__shine-top{
    opacity: 0.5;
    bottom: 0;
}
.art__shine-bottom{
    bottom: -14vw;
    -webkit-animation: rotating 8s linear infinite;
    animation: rotating 8s linear infinite;
}

/*smoke*/
body {
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes masked-animation {
    0% {
        background-position: left bottom;
    }
    100% {
        background-position: right bottom;
    }
}

#start {
    position: absolute;
    margin: auto;
    text-align: center;
    top: 50%;
    margin-top: 260px;
    width: 100%;
}

.blink_me {
    -webkit-animation: blinker 3s linear infinite;
    animation: blinker 3s linear infinite;
}

@-webkit-keyframes blinker {
    50% {
        opacity: 0.3;
    }
}

@keyframes blinker {
    50% {
        opacity: 0.3;
    }
}


#wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    pointer-events: none;
}

#viewport {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

#viewport .smoke {
    position: absolute;
    width: 250px;
    height: 250px;
    background: url('../img/smoke.png') no-repeat;
    bottom: 150px;
    margin-left: 0px
}

@-webkit-keyframes masked-animation {
    0% {
        background-position: left bottom;
    }
    100% {
        background-position: right bottom;
    }
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}



/*animation block*/
.copied .offer__copy-btn {
    -webkit-animation: copy 0.8s ease-in-out;
    animation: copy 0.8s ease-in-out;
}

@-webkit-keyframes copy {
    0% {
        right: 0;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        right: 100%;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        right: 0;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes copy {
    0% {
        right: 0;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        right: 100%;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        right: 0;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.art__cloud{
    display: none;
}


/*media*/

@media (max-width: 1350px) and (max-height: 760px) {
    .logo {
        padding: 2vw 0 1vw 0;
    }

    .offer__title {
        font-size: 6vw;
    }

    .offer__sub-title {
        font-size: 5vw;
    }

    .offer__terms {
        font-size: 0.625vw;
        line-height: 16px;
        padding: 0.781vw 0 2vw 0;
    }

}

/*for ipad portrait orientation*/
@media (max-width: 1024px) and (orientation: portrait),(max-width: 1023px) {

    #page {
        min-height: 100vh;
        background: -o-radial-gradient(67.84% 56.08%, 24.01% 52.06%, #482066 0%, #2C0E42 100%), #000000;
        background: radial-gradient(24.01% 52.06% at 67.84% 56.08%, #482066 0%, #2C0E42 100%), #000000;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .art__cloud{
        display: block;
        width: 100%;
        height: auto;
        top: 0;
        left: 0;
    }
    .art__hero--desk{
        display: none;
    }
    .art__hero{
        width: 100vw;
        left: 0;
    }
    .art__hero--tab{
        display: block;
    }
    .art__shine {
        width: 75.3vw;
        height: 86.5vw;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    #viewport {
        height: 92%;
    }
    .logo {
        position: static;
        width: 14.5vw;
        padding: 2.5vw 0 6vw 0;
    }
    .offer{
        margin-right: 0;
        width: 61.6vw;
        text-align: center;
    }
    .offer__title, .offer__sub-title {
        line-height: 1;
    }
    .offer__title {
        font-size: 14.5vw;
    }

    .offer__sub-title {
        font-size: 9vw;
    }

    .offer__copy-wrapp, .offer__play-link {
        width: 100%;
        height: 8.6vw;
    }
    .offer__copy-wrapp{
        margin-bottom: 2vh;
    }

    .offer__bonus {
        font-size: 24px;
    }

    .offer__copy-btn {
        font-size: 18px;
    }

    .offer__play-link {
        font-size: 24px;
    }

    .offer__terms {
        max-width: 47.958vw;
        padding: 2.681vh 0 44vh 0;
    }

    .offer__buttons {
        margin-top: 3.3vh;
        width: 100%;
    }


}

@media (max-aspect-ratio: 1194 / 791) and (orientation: landscape){
    .art__hero--desk{
        width: 74.4vw;
        left: -8.7vw;
    }
    .offer{
        width: 32vw;
    }
}

@media (max-width: 600px) and (orientation: portrait),(max-width: 599px) {
    #page{
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        min-height: 667px;
    }
    body{
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
    }
    .logo {
        width: 29.6vw;
        padding: 5.2vw 0 8vw 0;
    }
    .offer{
        width: 88.6vw;
    }
    #viewport {
        height: 100%;
    }
    .offer__title {
        font-size: 21vw;
    }

    .offer__sub-title {
        font-size: 13.4vw;
    }

    .offer__play-link {
        height: 18.4vw;
        font-size: 21px;
    }

    .offer__copy-wrapp {
        height: 15.75vw;
        margin-bottom: 2.4vh;
    }

    .offer__bonus {
        font-size: 18px;
        padding-left: 5%;
    }

    .offer__copy-btn {
        font-size: 16px;
    }

    .offer__buttons {
        margin-top: 4.3vh;
    }
    .offer__terms{
        font-size: 12px;
        line-height: 14px;
        max-width: 85.958vw;
        padding: 2.681vh 0 32vh 0;
    }
    .art__hero--tab{
        display: none;
    }
    .art__hero--mob{
        display: block;
    }
    .art__shine{
        height: 60.5vw;
    }
}

@media (max-width: 600px) and (min-height: 668px) and (orientation: portrait), (min-width: 376px) and (max-width: 600px) and (orientation: portrait){
    #page{
        min-height: 179vmin;
    }
}

@media  (max-width: 335px) and (orientation: portrait) {
    #page {
        min-height: 575px;
    }
}
@media (orientation: landscape)
and (max-height: 602px)
and (max-width: 1000px) {

    .offer {
        width: 60vw;
    }
    #viewport {
        height: 100%;
    }
    .offer__title {
        font-size: 10vw;
    }

    .offer__sub-title {
        font-size: 6vw;
        line-height: 1.2;
    }
    .offer__play-link {
        height: 18.4vh;
    }
    .offer__copy-wrapp {
        height: 15.75vh;
        margin-bottom: 8vh;
    }
    .offer__terms{
        font-size: 12px;
        line-height: 14px;
        padding-bottom: 60vw;
        padding-top: 8vh;
    }

}

@media (orientation: landscape)
and (max-height: 320px)
and (max-width: 600px){
    .art__hero {
        width: 66vw;
        left: 0;
        margin: auto;
        right: 0;
    }
}