*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
}
h1, h2, h3, h4, p {
    margin: 0;
}

ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  
}


body {
    font-family: 'Montserrat', sans-serif;
    background-color: #181b33;
}

.none { display: none; }
.block { display: block; }

.container {
    width: 100%;
    margin: 0 auto;
}


/* HEADER */
.header {
    width: 100%;
    background-color: #181b33;
}

.header__inner{
    max-width: 1100px;
    margin: 0 auto;
    padding: 15px 20px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logos {
    display: flex;
    width: 50%;
}

.logo {
    width: 100%;
    max-width: 180px;
}

.hex-logo {
    width: 100%;
    margin-left: 20px;
    max-width: 210px;
}

.awards {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    
}

.awards img {
    width: 100%;
    max-width: 550px;
}


/*--------------------- MAIN SECTION ------------------------*/

.main-section {
    width: 100%;
    position: relative;
    background: url(../img/bg-image.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-color: #181b33;
}

.main-section__inner{
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 0 0 20px;
    display: flex;
    justify-content: space-around;
    
}

/*OFFER*/
.offer {
    width: 45%;
    max-width: 600px;
    padding: 15px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-dsk {
    position: relative;
    margin: 10px auto 0;
}

.offer-img-hover {
    position: relative;
    width: 100%;
    z-index: 999;
    
}

.offer-img {
    
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.offer-img:hover {
    animation: none;
    transition: 1s;
}

.offer-mob {
    display: none;
    position: relative;
}

.offer-mob-img {
    position: relative;
    width: 100%;
}

.offer-img:hover {
    animation: none;
}

.offer-mob-img-hover {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}




/*COUPON*/
.coupon {
    width: 100%;
    max-width: 490px;
    margin: 0 auto;
    display: flex;
    
    text-transform: uppercase;
    border-radius: 15px;
}

.button {
    font-size: 22px;
    font-weight: 700;
    width: 50%;
    padding: 15px 0px;
}


.code {
    letter-spacing: 2px;
    color: #f0ff00;
    background-color: #181b33;
    border-top: 3px solid #00b8ff;
    border-left: 3px solid #00b8ff;
    border-bottom: 3px solid #00b8ff;
    border-radius: 15px 0 0 15px;
}

.code-copied {
    color: #ebf019;
    animation: code-copied 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
}

/**
 * ----------------------------------------
 * code-copied
 * ----------------------------------------
 */
 @keyframes code-copied {
    0% {
        transform: translateX(0) scaleY(1) scaleX(1);
        transform-origin: 50% 50%;
        filter: blur(0);
        opacity: 1;
      }

    50% {
      transform: translateX(100px) scaleX(1) scaleY(1);
      transform-origin: 0% 50%;
      filter: blur(4px);
      opacity: 0;
    }
    100% {
      transform: translateX(0) scaleY(1) scaleX(1);
      transform-origin: 50% 50%;
      filter: blur(0);
      opacity: 1;
    }
  }

.copy { 
    color: #000;
    border: 3px solid #00b8ff;
    border-left: 3px solid #00b8ff;
    cursor: pointer;
    border-radius: 0 15px 15px 0;
    background: linear-gradient(180deg, rgba(107,228,255,1) 0%, rgba(0,111,206,1) 100%);

}

.copy:hover {
    background: linear-gradient(180deg, rgb(0,111,206,1) 0%, rgb(78, 178, 200) 50%, rgba(107,228,255,1) 100%);
}

.copy-clicked {
    background: linear-gradient(180deg, rgba(107,228,255,1) 0%, rgba(0,111,206,1) 100%);
}

.copy-clicked:hover{
    background: linear-gradient(180deg, rgba(107,228,255,1) 0%, rgba(0,111,206,1) 100%);
}

.cta-coupon { 
    width: 100%;
    
    max-width: 490px;
    margin: 15px auto 0;
}

.main-btn {
    padding: 15px;

    text-transform: uppercase;
    font-weight: 700;
    font-size: 36px;
    color:#fff;
    letter-spacing: 0.8px;

    border-radius: 15px;
    background: linear-gradient(90deg, rgba(255,62,86,1) 0%, rgba(34,144,239,1) 50%, rgba(108,252,245,1) 100%);
}

.coupon-suptitle {
    color: #fff;
    padding-top: 8px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.inclave-suptitle {
    padding-left: 5px;
    max-height: 24px;
}

/*OFFER-RIGHT*/
.offer-right {
    width: 25%;
    display: flex;
    flex-direction: column;
    position: relative;

}

.main-image {
    width: 100%;
    margin: auto auto 0px;
    position: relative;
    opacity: 1;

}

.main-image-hover {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}




/*DECOR-LINE*/
.decor-line {
    width: 100%;
    height: 15px;
    background: linear-gradient(90deg, rgba(140,40,110,1) 0%, rgba(11,34,131,1) 100%);
    background-position: center;
    background-repeat: repeat;   
    background-size: contain;
}


.top {
    box-shadow: 0px 8px 24px 0px rgba(0,0,0,0.5);
}

.bottom {
    

    box-shadow: 0px -10px 24px 10px rgba(0,0,0,0.5);
}



/*--------------------- SECOND SECTION ------------------------*/

.second-section {
    width: 100%;
}

.second-section__inner {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 10px;
    display: flex;
}

/*JACKPOT COUNTER*/

.jackpot-features {
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;

}

.jackpot-features__inner {
    margin: 0 auto 0;
}

.jackpot {
    width: 50%;
    text-align: center;
}

.jackpot p {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    text-transform:capitalize;
    letter-spacing: 0.3px;

    color: #fefeff;
    background-image: -webkit-linear-gradient(0deg, rgba(255,62,86,1) 25%, rgba(34,144,239,1) 50%, rgba(108,252,245,1) 75%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
}

.counter-box {
    width: 100%;
    max-width: 500px;

    margin: 10px auto 0;
    padding: 10px 30px;

    font-size: 48px;
    font-weight: 700;
    border-radius: 999px;
    border: #00ff7f 4px solid;
    background-color: #181b33;
    
}


.counter {
    color: #00ff7f;
    font-family: 'Russo One', sans-serif;
    letter-spacing: 2px;
}

.counter::before {
    content: "$";
}

/*FEATURES*/

.features {
    width: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #fff;
    text-align: center;

}
.feature-item
{
    width: 33%;
}



.feature-item p {
    margin-top: 5px;
    padding: 0 10px;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;

}

.feature-item img {
    
    width: 50%;
    max-width: 80px;
}





/*GAMES SECTION*/
.games-section {
    max-width: 1200px;
    margin: 40px auto 0;
    width: 100%;
}


.games-section p {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    padding: 0 30px;
    text-transform: uppercase;
    letter-spacing: 0.3px;

    background-image: -webkit-linear-gradient(270deg, rgba(255,255,255,1) 50%, rgba(180,180,180,1) 75%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.games {
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;

}

.games-item {
    width: 23%;
    max-width: 260px;
    border-radius: 20px;
    border: #00b8ff 2px solid;  
}




/*FOOTER*/
.footer {
    margin-top: 30px;
    width: 100%;
    background-color: #0c0d17;
}

.footer__inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bonus-terms-btn {
    padding: 8px 20px;
    
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;

    border: 2px solid #fff;
    border-radius: 999px;
    cursor: pointer;

    transition: all 0.1s linear;
}

.bonus-terms-btn:hover {
    color: #000;
    background-color: #fefeff;
}

.payment-methods {
    width: 100%;
    max-width: 360px;
}

p.turbop {
  font-weight: 700;
  font-size: 19px;
  margin: 0 auto;
  text-align: center;
  background: #FF3E56;
  background: -webkit-gradient(linear, left top, right top, from(#FF3E56), color-stop(50%, #2290EF), to(#6cfcf5));
  background: linear-gradient(to right, #FF3E56 0%, #2290EF 50%, #6cfcf5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.turbo {
  margin-left: auto;
  margin-right: 20px;
}
p.turbot {
  font-size: 15px;
  padding-bottom: 10px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.turbopay {
  width: 120px;
  display: inline-block;
  vertical-align: middle;
}

/*BUTTON*/

.play-btn {
    width: 100%;
    max-width: 400px;
    margin: 30px auto 0;
    display: flex;
    justify-content: center;
}

.play-btn img{
    width: 100%;
    max-width: 400px;
}

/*TERMS*/
.terms-text {
    display: none;
    height: auto;
    font-size: 16px;
    color: #fff;
    
    background-color: #0a0a0a;
}

.terms-text p{
    margin: 0 auto;
    padding: 10px 20px 20px;
    max-width: 1200px;
}




@media screen and (max-width: 1080px) {
    .none { display: block; }
    .block { display: none; }
    .header__inner {
        padding: 15px 30px 15px;
        justify-content: space-around;
    }

    .decor-line {
        height: 14px;
    }

    .main-section {
        background-position: center top;
    }

    .btn {
        font-size: 18px;
    }

    .button {
        font-size: 20px;
        padding: 12px 0px;
    }

    .sign-up-btn {
        max-width: 80%;
    }

    .button2 {
        font-size: 24px;
        padding: 12px 0px;    
    }

    .counter-box {
        width: 90%;
    }

    .feature-item p {
        font-size: 13px;
    }

    .feature-item img {
        width: 50%;
    }

    .play-btn img{
        width: 35%;
    }

    .games-section p {
        font-size: 26px;
    }

    .footer__inner {
        flex-direction: column-reverse;
        margin: 0 auto;
    }

    .payment-methods {
        padding-bottom: 20px;
        margin: 0 auto;
    }
    
    .bonus-terms-btn {
        font-size: 18px;
    }

          .turbo {
  margin: 0 auto;
}
.turbopay {
  display: block;
  width: 160px;
  margin: 0 auto 10px;
}
p.turbot {
  padding-bottom: 20px;
}

    .main-btn {
        font-size: 34px;
    }
}


@media screen and (max-width: 880px) {
    .logo {
        max-width: 120px;
    }

    .awards img {
        max-width: 550px;
    }

    .hex-logo {
        max-width: 180px;
    }

    .header__inner {
        justify-content: space-around;
    }

    .decor-line {
        height: 12px;
    }

    .btn {
        padding: 5px 15px;
        margin-left: 20px;
        font-size: 16px;
        border: 2px solid #48a9aa;
    }

    .button {
        font-size: 17px;
        padding: 10px 5px;
    }
    
    .coupon-suptitle {
        font-size: 16px;
    }

    .btn-suptitle {
        font-size: 14px;
    }

    .button2 {
        font-size: 18px;
        padding: 10px 5px;    
    }

    .second-coupon-suptitle {
        font-size: 14px;
    }

    .jackpot p {
        font-size: 32px;
    }
    
    .counter-box {
        border: 4px solid #00ff7f;
        font-size: 32px;
    }

    .feature-item p {
        font-size: 12px;
    }

    .feature-item img {
        width: 50%;
    }


    .games-section p {
        font-size: 22px;
        padding: 0 5px;
    }

    .bonus-terms-btn {
        font-size: 16px;
    }

    .games-item {
        width: 23%;
        max-width: 260px;
        border-radius: 15px;
        border: #42ffcd 2px solid;  
    }
    
    .main-btn {
        font-size: 30px;
    }

    .play-btn {
        width: 95%;
    }
}

@media screen and (max-width: 740px) {

    .logos {
        width: 100%;

    }

    .logos img{
        margin: 0 auto;
        
    }

    .awards img {
        display: none;
        max-width: 550px;
    }

}

@media screen and (max-width: 700px) {
    .main-section {
        background: url(../img/bg-mob-image.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .decor-line {
        height: 10px;
    }

    .btn {
        font-size: 18px;
    }

    .main-section__inner {
        padding: 0;
    }

    .offer {
        width: 100%;
        padding: 0 10px 15px;
    }

    .button {
        font-size: 20px;
    }



    .offer-right {
        display: none;
    }

    .second-section__inner {
        flex-direction: column;
    }

    .jackpot-features {
        width: 100%;
        flex-direction: column-reverse;

    }

    .features {
        margin-top: 35px;
        width: 100%;
    }

    .jackpot {
        width: 100%;
    }

    .jackpot p {
        font-size: 48px;
    }
    .counter-box {
        font-size: 40px;
    }

    .feature-item p {
        font-size: 14px;
    }

    .second-offer {
        width: 100%;
    }

    .button2 {
        font-size: 24px;
    }

    

    .games {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;

    }

    .games-item {
        width: 44%;
        margin: 10px;
    }


    .play-btn img {
        width: 80%;
    }

    .games-section p {
        font-size: 32px;
        padding: 10px 40px 0;
    }
    

    .offer-mob {
        display: block;
        width: 80%;
        margin: 0 auto;
    }
    
    .offer-mob-img {
        display: block;
        margin: 0 auto;
    }


    

    .main-btn {
        font-size: 28px;
    }

    .offer-dsk {
        margin-top: 20px;
        width: 95%;
    }
}



@media screen and (max-width: 600px) {

    .awards img {
        max-width: 140px;
    }
    
    .btn {
        font-size: 16px;
    }

    .jackpot p {
        font-size: 44px;
    }
    .sign-up-btn {
        padding: 0;
    }



    .terms-text {
        font-size: 12px;
    }

    .bonus-terms-btn {
        border: 1.5px solid #fff;
    }

    .code {
        border-top: 2px solid #00b8ff;
        border-left: 2px solid #00b8ff;
        border-bottom: 2px solid #00b8ff;
    }
    
    .copy {
        border: 2px solid #00b8ff;
        border-left: 2px solid #00b8ff;
    }

    .offer-mob {
        width: 95%;
    }

    

@media screen and (max-width: 500px) {

    .logo {
        max-width: 120px;
    }

    .hex-logo {
        margin-left: 10px;
    }

    .btn {
        font-size: 14px;
        margin-left: 5px;
    }

    .jackpot p {
        font-size: 40px;
    }
    .games-section p {
        font-size: 24px;
    }

    .offer {
        padding: 0 10px 10px;
    }
    .offer-mob {
        width: 95%;
    }

    .games {
        margin: 10px 0;
        padding: 0 10px;
    }

    .main-btn {
        padding: 10px;
    }
}
}


@media screen and (max-width: 450px) {
    .play-btn {
        margin: 5px auto 0;
    }


    .logo {
        max-width: 120px;
    }

    .btn {
        font-size: 12px;
        margin-left: 5px;
    }

    .button{
        font-size: 15px ;
    }

    .button2{
        font-size: 16px ;
    }

    .sign-up-btn {
        width: 100%;
    }

    .coupon-suptitle {
        font-size: 12px;
    }

    .btn-suptitle {
        font-size: 12px;
    }

    .inclave-suptitle {
        max-height: 20px;
    }

    .second-offer {
        padding: 0;
    }

    .jackpot-features {
        margin-top: 15px;
    }
    .jackpot p {
        font-size: 32px;
    }

    .counter-box {
        font-size: 24px;
    }

    .features {
        margin-top: 30px;
    }

    .feature-item p {
        font-size: 11px;
    }

    .games-section p {
        font-size: 20px;
        padding: 0 10px;
    }

    .games-item {
        margin: 7px;
    }

    .bonus-terms-btn {
        padding: 5px 15px;
        font-size: 14px;
    }
}


@keyframes button {

    50% {
      /*-webkit-filter: brightness(125%);
      filter: brightness(125%);*/
      opacity: 0;
    }
  
  }


.slide-in-blurred-bottom {
	animation: slide-in-blurred-bottom 0.5s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
}

.coupon {
    z-index: 999;
}

.cta-coupon {
    z-index: 999;
}

.coupon-suptitle {
    z-index: 999;
}

.decor-line {
    z-index: 999;
}

.second-section {
    position: relative;
    z-index: 999;
    background-color: #181b33;
}

@keyframes slide-in-blurred-bottom {
    0% {
      transform: translateY(500px) scaleY(2.5) scaleX(0.2);
      transform-origin: 50% 100%;
      filter: blur(40px);
      opacity: 0;
    }
    100% {
      transform: translateY(0) scaleY(1) scaleX(1);
      transform-origin: 50% 50%;
      filter: blur(0);
      opacity: 1;
    }
}

/* SLIDER */
.container-slider {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto 0;
    position: relative;
    transition: 0.3s filter ease, opacity 0.3s ease;
    -webkit-transition: 0.3s filter ease, opacity 0.3s ease;
    transition: 0.3s -webkit-filter ease, opacity 0.3s ease;
  }
  
  .section-inner {
    width: 90%;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
  }
  
  .games-slider .slick-initialized .slick-slide.single-slide,
  .games-slider .single-slide {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    align-items: stretch;
    align-content: space-between;
    -webkit-align-content: space-between;
  }


  
  .games-slider .slider-control {
    left: -40px;
    top: 25%;
    z-index: 2;
    position: absolute;
    cursor: pointer;
  }
  
  .games-slider .slider-control.next-game-arrow {
    left: auto;
    right: -40px;
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
  }
  
  .games-slider .slick-init:not(.slick-initialized) .single-slide:not(:first-child) {
    display: none;
  }
  
  .games-slider .single-image {
    flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    text-align: center;
    margin: 0 5px;
    max-width: 23%;
  }
  
  .games-slider .single-image>img {
    border-radius: 10px;
    border: 1.5px solid #68f9f5;
    width: 100%;
  }
  
  .games-slider .slick-slide .stars-row img {
    display: inline;
  }
  
  .games-slider .slider-itself:after,
  .features-container li:after {
    content: "";
    display: block;
    clear: both;
  }

  .stars-row {
    padding-top: 5px;
    padding-bottom: 8px;
  }

  .stars-row img{
    width: 20px;
    padding-left: 3px;
  }
  
  @media screen and (max-width: 800px) {
    .games-slider {
      overflow: hidden;
    }
  
    .games-slider .slider-control {
      z-index: -1;
      opacity: 0;
    }
  }
  
  @media screen and (max-width: 680px) {
    .games-slider .single-image {
      margin-bottom: 6px;
      max-width: 47%;
      width: 47%;
    }
  
    .games-slider .single-image>img {
      width: 100%;
    }
  }
  
  @media only screen and (max-width: 480px) {
    .games-slider {
      padding: 0 10px 20px;
    }
  }
  
  @media only screen and (max-width: 400px) {
    .games-slider .single-image {
      margin-bottom: 6px;
      max-width: 45%;
      width: 45%;
    }
  
    .games-slider {
      padding: 0 10px 20px;
    }
  
    .games-slider .single-image>img {
      border-radius: 8px;
      border: 1.25px solid #68f9f5;
      width: 100%;
    }
  }