*,
::before,
::after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  line-height: 1.2;
  color: #ffffff;
}

a {
  text-decoration: none;
}

.wrapper {
  background-color: #000;
  /*background-image: url(../img/bg.jpg);*/
  background-repeat: no-repeat !important;
  background-position: 50% 0 !important;
  background-size: cover !important;
}

.inner {
  max-width: 1366px;
  margin: 0 auto;
  padding-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 25px;
}

.container {
  max-width: 1366px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.logo {
  margin-bottom: 70px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.logo img {
  width: 100%;
  max-width: 170px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: nowrap;
  text-align: center;
  margin-bottom: 36px;
}

.hero__offer {
  align-self: flex-start;
  text-align: left;
}

.hero__title {
  font-weight: 700;
  font-size: 70px;
  line-height: 1;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.hero__subtitle {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.2;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.hero__subtitle span {
  font-weight: 400;
}

.hero__text {
  padding-bottom: 50px;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.hero__text span {
  font-weight: 400;
}

.hero__button {
  display: block;
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  background: #ff005c;
  color: #ffffff;
  border-radius: 10px;
  padding: 11px 0px 12px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.hero__button:hover {
  background: #c40e50;
}

.login{
  text-align: center;
  font-size: 16px;
}
.login a{ text-decoration: underline; }

.hero__img img {
  margin-top: -150px;
  width: 100%;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.steps {
  text-align: center;
  margin: 0 -5px;
}

.steps a {
  display: flex;
  justify-content: space-between;
}

.steps img {
  width: 100%;
  max-width: 435px;
  padding: 0 5px;

  margin-bottom: 10px;
}

.disclaimer {
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
  background-color: #252525;
  padding: 15px;
}

.disclaimer__title {
  margin-bottom: 8px;
}

/* game providers */

.gray-logos {
  text-align: center;
  padding: 20px 0;
  background: #e8e8e8;
}

.gray-logos img {
  display: inline !important;
  height: 36px;
  width: auto;
  margin: 5px;
  opacity: 0.7;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.gray-logos img:hover {
  opacity: 1;
  -webkit-filter: none;
  filter: none;
}

/* payment methods */

.payment_methods {
  text-align: center;
  padding: 20px 0;
  background: #000000;
}

.payment_methods img {
  display: inline !important;
  width: 120px;
  height: auto;
}

.payment_methods a.game_provider {
  filter: none !important;
  transition: all 0.3s ease;
  display: inline !important;
}

/* partners */

.partners {
  padding: 10px;
  background: #111111;
  text-align: center;
}

.partners img {
  max-height: 50px;
  width: auto;
  margin: 8px;
}

/* copyright*/

.copy {
  width: 100%;
  padding: 10px;
  line-height: 1.3;
  text-align: center;
  background: #dfe1df;
  font-size: 11px;
  color: #7a7a7a;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* @media (max-width: 1270px) {
  .hero__img img {
    margin-top: 0px;
    max-height: 500px;
  }
} */

@media (max-width: 1014px) {
  .logo {
    margin-top: 15px;
    margin-bottom: 25px;
  }

  .logo img {
    max-width: 120px;
  }

  .hero {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero__offer {
    margin-bottom: 50px;
    text-align: center;
  }

  .hero__img img {
    margin-top: 0;
  }

  .steps a {
    flex-wrap: wrap;
    justify-content: center;
  }

  .inner {
    padding-bottom: 15px;
  }
}

@media (max-width: 540px) {

  .hero__title {
    font-size: 54px;
    font-weight: 900;
  }

  .hero__subtitle {
    font-size: 44px;
  }

  .hero__text {
    font-size: 18px;
    letter-spacing: 1px;
    margin-top: 20px;
  }

}

