@import url('icons/css/myfont.css');

@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Bold.ttf);
  font-weight: 700;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  /*color: #fff;
  background-color: #303030;*/
}

*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 36px;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
  width: 100%;
  height: auto;
}

input:not([type=checkbox]),
input:not([type=checkbox]):focus,
textarea,
textarea:focus,
select,
select:focus {
  outline: none !important;
  -webkit-appearance: none;
}

.wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}


.header {
  width: 100%;
  padding: 15px 0;
  margin-bottom: 30px;
 /* background-color: #333E3C; */
}
body.fixed-header {
  padding-top: 100px;
}
body.fixed-header .header {
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.header .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .custom-logo-link {
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-btns .btn {
  width: 110px;
}
.header-btns .btn:last-child {
  margin-left: 15px;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
}
.menu a {
  padding: 5px;
  color: #fff;
  font-size: 15px;
}
.menu a:hover, .current-menu-item a {
  opacity: 0.7;
}
.menu li {
  margin-right: 20px;
  list-style-type: none;
  padding: 0;
}
.menu li:last-child {
  margin-right: 0;
}

.btn {
  border-radius: 8px;
  line-height: 38px;
  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;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  -webkit-animation-name: puls;
  animation-name: puls;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.btn:hover {
  opacity: 0.8;
}

.btn-red {
  background-color: #D32222;
}

.btn-green {
  background-color: #149C44;
}

.btn.text__button {
  max-width: 290px;
  width: 100%;
  margin: 0 auto;
  line-height: 52px;
}

@-webkit-keyframes puls {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes puls {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.banner {
  height: 500px;
  border-radius: 12px;
  margin-top: 35px;
  padding: 0 50px;
  background-color: #a80043;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.banner-img {
  max-width: 580px;
}

.offer {
  max-width: 450px;
  width: 100%;
}
.offer-title {
  font-size: 45px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 35px;
}
.offer-desc {
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 30px;
}
.offer-btns {
  display: flex;
}
.offer-btns .btn:nth-child(2) {
  margin-left: 15px;
}
/*.offer-btn.btn {
  background-color: #149C44;
}*/
.offer-btns .btn {
  max-width: 290px;
  width: 100%;
  font-weight: 700;
  line-height: 52px;
}

.bonus-item {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 20px;
}
.bonus-item-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bonus-item-text {
  margin-right: 15px;
}
.bonus-item-icon {
  max-width: 90px;
  margin-right: 15px;
}

.bonus-item-text {
  margin-right: 15px;
}

.slots .wrap {
  padding: 0 7px;
}
.slots-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.slots .slot {
  width: 16.6666%;
  padding: 0 7px;
  margin-bottom: 15px;
}
.slots .slot img {
  display: block;
}
.slots .slot .inner {
  display: block;
  position: relative;
}
.slots .slot .inner:hover {
  opacity: 0.7;
}

/*.page-item {
  background-color: #333e3c;
}*/

.text-title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
}

.main-text-wrap {
 /* background: -webkit-gradient(linear, left top, left bottom, from(#232834), to(#0D1016));
  background: linear-gradient(180deg, #232834 0%, #0D1016 100%); */
  border-radius: 8px;
  padding: 35px 40px;
  position: relative;
}
/*.main-text-wrap::before {
  content: "";
  display: block;
  max-width: 1000px;
  width: 100%;
  height: 5px;
  background-color: #00CFA6;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}*/
.main-text-content {
  line-height: 1.5;
}
.main-text-content img.aligncenter {
  display: block;
  margin: 0 auto;
}

.section {
  margin-bottom: 100px;
}

.footer {
  /*background-color: #1D2332;*/
  padding-top: 50px;
  padding-bottom: 30px;
}
.footer .pay-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.footer .own {
  font-size: 13px;
  text-align: center;
}

.mobile-btn {
  width: 35px;
  height: 20px;
  position: relative;
  cursor: pointer;
  display: none;
}
.mobile-btn .line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 0;
}
.mobile-btn .top {
  top: 0;
}
.mobile-btn .middle {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mobile-btn .bottom {
  bottom: 0;
}

.mobile-wrap {
  width: 300px;
  height: 100vh;
 /* background-color: #1D2332;*/
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: fixed;
  top: 0;
  right: -100vw;
  z-index: 99;
}
.mobile-wrap.active {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  right: 0;
}
.mobile-body {
  padding: 70px 15px 15px 25px;
  position: relative;
}
.mobile-body .close {
  position: absolute;
  top: 35px;
  right: 25px;
}
.mobile-wrap .menu {
  display: block;
  padding: 0;
}
.mobile-wrap .menu a {
  padding: 5px;
}
.mobile-wrap .menu li {
  margin-bottom: 30px;
  list-style-type: none;
}

.close {
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.close .inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.close .inner::before,
.close .inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: 0;
}
.close .inner::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.close .inner::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
      -ms-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.fixed-bar {
  width: 100vw;
  height: 60px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: none;
}
.fixed-bar .inner {
  width: 100%;
  height: 100%;
  padding: 0 10px;
  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;
  background-color: #00CFA6;
  position: relative;
}
.fixed-bar .phone {
  width: 90px;
  position: absolute;
  left: 10px;
  bottom: -100px;
}
.fixed-bar-btn {
  padding: 0 15px;
}
.fixed-bar-btn .btn__icon {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.aviator-banner.banner {
  background-color: #DD003B;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.aviator-banner .banner-img {
  width: 40%;
}

.text-block {
  margin-bottom: 50px;
}
.text-block-inner {
  background-color: #1D2332;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 18px;
  position: relative;
}
.text-block-inner::before {
  content: "";
  display: block;
  max-width: 1000px;
  width: 100%;
  height: 5px;
  background-color: #00CFA6;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.text-block-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.text-block-content .text {
  font-size: 16px;
  line-height: 1.5;
}

.app-banner.banner {
  background: radial-gradient(#020F1F 0%, #031F38 100%);
}
.app-banner .banner-img {
  width: 350px;
  position: absolute;
  bottom: 0;
  right: 20px;
}
.app-notice {
  font-size: 12px;
  margin-bottom: 15px;
}

.offer-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.offer-btns .app-btn.btn:last-child {
  margin-right: 0;
}

.app-btn.btn, .btn-ios.btn, .btn-android.btn {
  padding: 5px 25px;
  font-size: 12px;
  line-height: 1.3;
  margin-right: 25px;
  background-color: #D32222;
}
.app-btn.btn .btn__icon, .btn-ios.btn .btn__icon, .btn-android.btn .btn__icon {
  width: 36px;
  height: 36px;
  margin-right: 10px;
}
.app-btn.btn .btn__text {
  font-size: 12px;
}

.bonus-banner.banner {
  background: radial-gradient(#020F1F 0%, #031F38 100%);
}

.bonus-banner .banner-img {
  max-width: 546px;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 15px;
}

.btn.promo {
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 52px;
}
.btn.promo .btn__icon {
  width: 25px;
  height: 25px;
  background-image: url("../img/copy.svg");
  background-size: cover;
  margin-left: 15px;
}

.btn.promo .btn__input {
  display: none;
}

.btn.promo.copy .btn__icon {
  background-image: url("../img/check.svg");
}

.bonus-btn {
  padding: 0 25px;
}

.rate-banner {
  background-color: #F92130;
  background-image: url("../img/casino.jpg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 50%;
}

.promo-banner.banner {
  background: radial-gradient(#020F1F 0%, #031F38 100%);
}
.promo-banner .offer {
  max-width: 610px;
}
.btn.promo {
  -webkit-animation-name: btnPuls;
          animation-name: btnPuls;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes btnPuls {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes btnPuls {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.main-text-content img, .text-block-content .text img {
  max-width: 100%;
  width: auto;
}

/* .apostas-banner.banner {
  background: radial-gradient(#020F1F 0%, #031F38 100%);
} */

.apostas-banner.banner .banner-img {
  max-width: 600px;
  position: absolute;
  bottom: 0;
  right: 50px;
}

.text-block-content img.aligncenter {
  display: block;
  margin: 0 auto;
}
.advant .wrap {
  padding: 0;
}

.advant-content {
  display: flex;
  justify-content: space-between;
}
.advant-item {
  width: 25%;
  padding: 0 15px;
}
.advant-item-content {
  width: 100%;
  height: 100%;
  padding: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.advant-item .item__icon {
  text-align: center;
  font-size: 35px;
  margin-bottom: 20px;
}
.advant-item .item__text {
  text-align: center;
  line-height: 1.3;
}
.faq-item {
  margin-bottom: 20px;
  padding: 30px 25px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.faq-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-item-title {
  font-size: 18px;
}
.faq-item-icon {
  font-size: 25px;
  transform: rotate(0deg);
  transition: 0.3s;
}
.faq-item-answ {
  line-height: 1.3;
  margin-top: 15px;
  display: none;
}
.faq-item.active .faq-item-answ {
  display: block;
}
.faq-item.active .faq-item-icon {
  transform: rotate(180deg);
  transition: 0.3s;
}

.reviews .wrap {
  padding: 0;
}
.reviews-item {
  padding: 0 15px;
}
.reviews-item .inner {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  padding: 25px 15px;
}
.reviews-item .title__row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.reviews-item .item__img {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 150%;
  -moz-border-radius: 150%;
  border-radius: 150%;
  overflow: hidden;
  margin-right: 10px;
}
.reviews-item .item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviews-item .item__name {
  font-size: 20px;
  font-weight: 700;
}
.reviews-item .item__text {
  line-height: 1.3;
}
.slider-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider-nav-item {
  font-size: 45px;
  cursor: pointer;
}
.slider-nav-item.item__prev {
  transform: rotate(90deg);
}
.slider-nav-item.item__next {
  transform: rotate(-90deg);
}
.slider-nav .slick-next, .slider-nav .slick-prev {
  position: static;
}
.slider-nav .slick-dots {
  position: static;
}
.slider-nav .slick-dots li button {
  color: inherit;
}
.slider-nav .slick-dots li button::before {
  color: inherit;
  font-size: 10px;
}







/* Adaptive */
@media (max-width: 1100px) {
  .header .nav {
    display: none;
  }
  .mobile-btn {
    display: block;
  }
  .main-banner .girl {
    right: 0;
  }
  .offer {
    position: relative;
    z-index: 2;
  }
  .slots .slot {
    width: 25%;
  }
  .fixed-bar {
    display: none;
  }
}
@media (max-width: 1000px) {
  .bonus-banner .banner-img {
    display: none;
  }
  .banner {
    height: auto;
    display: block;
    padding: 100px 15px;
  }
  .offer {
    max-width: 100%;
    width: 100%;
    margin-bottom: 50px;
  }
  .offer-title {
    text-align: center;
  }
  .offer-desc {
    text-align: center;
  }
  .offer-btns {
    justify-content: center;
  }
  .banner-img {
    margin: 0 auto;
  }
  .advant-content {
    flex-wrap: wrap;
  }
  .advant-item {
    width: 50%;
    margin-bottom: 20px;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .aviator-banner {
    height: auto;
    display: block;
    padding-top: 30px;
  }
  .aviator-banner .banner-img {
    max-width: 350px;
    width: 100%;
    margin-top: 30px;
  }
  .app-banner .banner-img {
    display: none;
  }
}
@media (max-width: 700px) {
  /*body {*/
  /*  padding-bottom: 50px;*/
  /*}*/
  body.fixed-header {
    padding-top: 132px;
  }
  .header .wrap {
    position: relative;
    padding-bottom: 50px;
  }
  .header .custom-logo-link {
    max-width: 100px;
  }
  .header-btns {
    position: absolute;
    bottom: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .offer {
    max-width: 100%;
    width: 100%;
    padding: 0 15px;
    text-align: center;
  }
  .offer-title {
    font-size: 35px;
  }
  .offer-btn {
    margin: 0 auto;
  }
  .text-block-inner {
    display: block;
    padding: 30px 10px;
  }
  .text-block-content {
    margin-bottom: 30px;
  }
  .text-block-item {
    width: 100%;
  }
  .text-title {
    font-size: 30px;
  }
  .bonus-banner {
    height: auto;
    padding: 30px 0;
  }
  .apostas-banner.banner {
    display: block;
    padding-top: 50px;
  }
  .apostas-banner.banner .banner-img {
    position: static;
  }
  .apostas-banner.banner {
    height: auto;
  }
  .bonus-item {
    padding: 30px 15px;
  }
  .bonus-item-content {
    display: block;
  }
  .bonus-item-icon {
    margin: 0 auto 25px;
  }
  .bonus-item-text {
    text-align: center;
    margin: 0 auto 25px;
  }
  .bonus-btn {
    max-width: 290px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .slots .slot {
    width: 33.3333%;
  }
  .main-text-wrap {
    padding: 35px 15px;
  }
  .footer .pay-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .pay-item {
    width: 25%;
  }
  .offer-btns {
    display: block;
  }
  .offer-btns .btn {
    margin: 0 auto 20px;
  }
  .offer-btns .btn:nth-child(2) {
    margin: 0 auto;
  }
  .section {
    margin-bottom: 60px;
  }
}
@media (max-width: 500px) {
  .app-btn.btn {
    padding: 5px 15px;
    margin-right: 15px;
  }
  .advant-item {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .slots .slot {
    width: 50%;
  }
  .pay-item {
    width: 33.33333%;
  }
  .rate-banner {
    background-size: 65%;
  }
}