/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444
}

a {
  color: #106eea;
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

section{
  overflow: hidden;
  width: 800px;
  max-width: 800px;
  margin: 0 auto;
}

main {
  width: 800px;
  max-width: 800px;
  margin: 0 auto;
  background-image: url('../img/Web_site_BG.jpg?t=1');
  background-repeat: no-repeat;
  background-size: cover;
}

.fix-to-top {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
  background-color:  #011d32;
  opacity: 0.9;
  transition: all 0.3s ease;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #011d32;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-top-color: #011d32;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

section#download_to_play {
    overflow: visible;
}

.download_to_play_img img {
    animation: rotate .5s linear infinite;
}

@keyframes rotate{
  0% {
      transform: translateY(0);
  }
  25% {
      transform: translateY(10px);
  }
  50% {
      transform: translateY(20px) scale(1.1, 0.9);
  }
  75% {
      transform: translateY(10px);
  }
  100% {
      transform: translateY(0);
  }
}

#new-joiner {
    position: relative;
}

.new-joiner-content {
    position: absolute;
    top: 23px;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-joiner-content p {
    margin: 0;
    font-size: 22px;
    color: #cc3;
    font-weight: bold;
}

.new-joiner-content span {
    color: #fff;
}

.banner_slider {
    position: relative;
}

.new_joiner_slider-main {
    position: relative;
}

.banner_slider {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 50px;
    display: flex;
    align-items: center;
    z-index: 9;
}

.slick-list.draggable {
    width: 100%;
}

#social_media {
    padding: 0 50px;
}

.telegram img {
    animation: rotate1 2s linear infinite;
}

@keyframes rotate1{
  0% {
    transform: translateX(0px);
  }
  10% {
      transform: translateX(-2px) rotate(2deg);
  }

  20% {
      transform: translateX(2px) rotate(-2deg);
  }
  30% {
      transform: translateX(0px);
  }
  100% {
      transform: translateX(0px);
  }
}

.eighteen-plus-content p {
    color: #ffcc00;
    font-size: 30px;
    text-align: center;
    font-weight: bold;
}

.eighteen-plus-usefull-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.eighteen-plus-usefull-link a {
    font-size: 26px;
    color: #fff;
    text-decoration: underline;
    margin: 0 10px;
    font-weight: bold;
}

#eighteen-plus {
    padding: 0 30px;
}

.eighteen-plus-footer-content p {
    font-size: 28px;
    margin-top: 20px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

@media screen and (max-width: 767.98px){
  main {
    width: 100%;
    max-width: 100%;
    
  }
  section {
    width: 100%;
    max-width: 100%;
   }
  .banner_slider {
      padding: 25px;
  }
  .eighteen-plus-content p {
    font-size: 12px;
  }
  .eighteen-plus-usefull-link a {
    font-size: 12px;
  }
  .eighteen-plus-footer-content p {
    font-size: 12px;
  }
}