@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

:root{
  --o-1: #c2fffc;
  --o-2: #c7ebff;
  --o-3: #e3f2ff;
  --o-4: #ffeac6;
  --o-5: #ffd9be;
  --accent: var(--o-1);
  --white: #fff;
  --black: #000000;
  --grey: #8a8a8a;
  --transition: 0.2s cubic-bezier(0.215, 0.610, 0.355, 1);
  --o1: #1e1e0e;
  --o2: #170f1b;
  --o3: #0c1715;
  --o4: #061806;
  --o5: #1c150b;
  --bg: var(--o1);
}

html{
  scroll-behavior: smooth;
}

*{
  box-sizing: border-box;
}

body{
  font-family: 'Tenor Sans', sans-serif !important;
  font-size: 16px;
  direction: ltr;
  margin: 0;
  padding: 0;
  height: 100%;
  position: relative;
  box-sizing: border-box;
}

a{
  text-decoration: none;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height:1.5;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.5rem;
}

ul ul, ol ul, ul ol, ol ol {
  margin-bottom: 0;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

img{
  width: 100%;
  display: block;
  box-sizing: border-box;
}

video{
  display: block;
  box-sizing: border-box;
}

h5{
  font-size: 1.1rem;
}

.module{
  padding: 59px 0;
  overflow: hidden;
}

.wrapper {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 19px;
  padding-left: 19px;
  box-sizing: border-box;
}

.row-2,
.row-3,
.row-4,
.row-5,
.row-6{
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  gap: 19px;
}

.col-30,
.col-70,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6{
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
}

.title{
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: 'Anton', sans-serif;
  color: var(--black);
  transition: var(--transition);
  text-align: center;
  position: relative;
  display: inline-block;
  text-align: start;
  margin-bottom: 30px;

  &::first-letter {
    margin-left: 19px; 
  }

  &::before{
    position: absolute;
    content: '';
    top: 15px;
    left: 0;
    width: 7px;
    height: 7px;
    background-color: var(--black);
    border-radius: 50%;
  }
}

.header{
  position: relative;
  overflow: hidden;
}

.header-nav-wr{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.header-nav-box{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 19px;
  padding: 12px 0;
}

.logo{
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  transition: var(--transition);

  img{
    width:58px;
    height: 58px;
    object-fit: contain;
  }

  h1{
    color: var(--black);
    margin: 0;
    font-size:  30px;
  }

  &:hover,
  &:focus{
    transform: rotate(3deg) translateY(12px);
  }
}

.menu{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: calc(19px + 20px);
  
  a{
    color: var(--black);
    transition: var(--transition);
    position: relative;
    display: inline-block;
    font-weight: 800;
    
    &::before{
      position: absolute;
      content: '';
      top: 50%;
      transform: translateY(-50%);
      left: -20px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background-color: var(--black);
      transition: var(--transition);
      opacity: 0;
    }

    &:hover::before,
    &:focus::before{
      opacity: 1;
      left: -10px;
    }
  }
}

.banner{
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 45px 0;
}

.main-img{
  width:622px;
  height:622px;
  background-color: var(--accent);
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  transition: var(--transition);
  filter: drop-shadow(1px 1px 3px #11111172);

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0.8;
    filter: grayscale(1);
    transition: var(--transition);
    animation: mainBgImg 5s linear infinite;
  }
}

.main-title{
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  left: 0%;
}

.main-title-box{
  padding-right: 19px;
  padding-top: 19px;
  padding-bottom: 19px;
  padding-left: 33px;
  position: relative;
}

.main-title-text{
  width: 100%;
  position: relative;
  z-index: 2;
  font-weight: 800;
  font-size: 22px;
  transition: var(--transition);
  animation: haderTitle 2s linear;

  &::before{
    position: absolute;
    content: '';
    top: 14px;
    left: 0;
    width: 7px;
    height: 7px;
    background-color: var(--black);
    border-radius: 50%;
  }
}

.main-title-text::first-letter {
  margin-left: 19px; 
}

.au-img{
  width: 100%;
  height: 100%;
  background-color: var(--accent);
  opacity: 0;
  transition: 0.5s linear;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(0.8);
    opacity: 0.8;
  }

  &:hover img,
  &:focus img{
    filter: grayscale(0.5);
  }
}

.au-img.slider-visible{
  opacity: 1;
}

.au-wr{
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.au-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  padding: 50px 19px;
  gap: 19px;
}

.au-img-sm{
  width: 100%;
  height: 100%;
  background-color: var(--accent);

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(1);
    opacity: 0.8;
  }

  &:hover img,
  &:focus img{
    filter: grayscale(0.7);
  }
}

.au-slider{
  width: 100%;
  height: 100%;
  overflow: hidden;
  direction: ltr;
}

.au-slider-box{
  width: 300%;
  height: 100%;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.ben-row{
  gap: 0;
  flex-direction: column !important;

  .col-4:nth-child(1) > .ben-boxs,
  .col-4:nth-child(2) > .ben-boxs,
  .col-4:nth-child(3) > .ben-boxs{
    border-bottom: 0;
  }
}

.ben-boxs{
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid var(--black);
  height: 100%;
  cursor: auto;
  background-color: var(--white);
  padding: 19px 19px 70px 19px;
  gap: 19px;
  transition: var(--transition);

  &:hover,
  &:focus{
    background-color: var(--accent);
    color: var(--black);
  }
}

.ben-imgss{
  width: 62px;
  height: 62px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.ben-focus{
  background-color: var(--accent);
  color: var(--black);

  &:hover,
  &:focus{
    background-color: var(--white);
    color: var(--black);
  }
}

.ben-text{
  text-align: center;
}

.benefits{
  direction: ltr;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  position: relative;

  &::before{
    position: absolute;
    content: '';
    background-color: var(--accent);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
    filter: grayscale(0.7);
  }

  .wrapper{
    position: relative;
    z-index: 2;
  }
}

.main1-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  border: 0.5px solid var(--accent);
  padding: 30px 12px;
  gap: 19px;
}

.gms1-desc{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  gap: 19px;
}

.main1-title{
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: 'Anton', sans-serif;
  color: var(--black);
  transition: var(--transition);
  text-align: center;
  position: relative;
  display: inline-block;
  transition: var(--transition);
  margin-top: 45px;
  z-index: 2;

  &::first-letter {
    margin-left: 19px; 
  }

  &::before{
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--accent);
    border-radius: 50%;
    z-index: 1;
    transition: var(--transition);
  }

  span{
    position: relative;
    z-index: 2;
  }

  &:hover::before,
  &:focus::before{
    left: 0;
  }
}

.games1-img{
  width:  164px;
  height:  164px;
  border-radius: 50%;
  position: relative;
  background-color: var(--accent);

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0.7;
    filter: grayscale(1);
    transition: var(--transition);
  }

  &:hover img,
  &:focus img{
    filter: grayscale(0.5);
  }
}

.main1-content{
  max-width: 400px;
  width: 100%;
  margin: 20px auto;

  p{
    text-align: center;
    margin: 0;
  }
}

.ball1{
  background-color: var(--accent);
  width:60;
  height:60;
  border-radius: 50%;
  position: absolute;
  left: 20px;
  top: -20px;
  opacity: 0;
  transition: var(--transition);
}

.ball2{
  background-color: var(--accent);
  width: 115px;
  height: 115px;
  border-radius: 50%;
  position: absolute;
  left: -40px;
  bottom: -10px;
  opacity: 0;
  transition: var(--transition);
}

.ball3{
  background-color: var(--accent);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: absolute;
  right: -20px;
  bottom: 50px;
  opacity: 0;
  transition: var(--transition);
}

.games1-img:hover,
.games1-img:focus{
  .ball1{
    animation: ball 0.5s linear;
    opacity: 1;
  }
  .ball2{
    animation: ball 1s linear;
    opacity: 1;
  }
  .ball3{
    animation: ball 0.7s linear;
    opacity: 1;
  }
}

#game1{
  display: block;
}

.game2-box {
  perspective: 500px;
  display: block;
  width: 100%;
  height: 425px;
  text-decoration: none;
}

.card-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.9s ease-in-out;
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden; 
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 6px;
  transition: 0.5s linear;
  border: 2px solid var(--black);
}

.card-front {
  background-color: var(--accent);
}

.card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  filter: grayscale(0.5);
  opacity: 0.7;
}

.card-back {
  background-color: var(--accent);
  color: var(--black);
  transform: rotateY(186deg); 
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: center;
  justify-content: center;
  padding: 19px;
}

.game2-box:hover .card,
.game2-box:focus .card {
  transform: rotateX(186deg) translateZ(10px);
}

.games2-titles{
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: 'Anton', sans-serif;
  color: var(--black);
  transition: var(--transition);
  text-align: center;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;

  &::first-letter {
    margin-left: 19px; 
  }

  &::before{
    position: absolute;
    content: '';
    top: 14px;
    left: 0;
    width: 7px;
    height: 7px;
    background-color: var(--black);
    border-radius: 50%;
  }
}

.game2-contents{
  text-align: center;
}

.game2-desc{
  transform: rotateX(184deg) rotateY(184deg);
}

.devops{
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  position: relative;

  &::before{
    position: absolute;
    content: '';
    background-color: var(--accent);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
    filter: grayscale(0.7);
  }

  .wrapper{
    position: relative;
    z-index: 2;
  }
}

.devopss-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
}

.devops-img{
  width: 100%;
  height: 234px;
  background-color: var(--accent);

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    opacity: 0.7;
    transition: var(--transition);
  }
}

.devopss-box:hover .devops-img img,
.devopss-box:focus .devops-img img{
  filter: grayscale(0.5);
}

.devops-name{
  text-align: center;
  font-weight: 800;
  font-size: 18px;
}

.devops-profs{
  text-align: center;
}

.faq-box {
  perspective: 600px; 
  display: block;
  width: 100%;
  height: 367px;
  text-decoration: none;
}

.faq-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.faq-card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d; 
  transition: transform 0.9s ease-in-out;
}

.faq-front,
.faq-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden; 
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 8px;
  border: 2px solid var(--black);
  padding: 19px;
}

.faq-front {
  background-color: var(--accent);
  background-image: url('content/background/opacity_bg-0685189247d1a8.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: grayscale(0.7);

  p{
    font-weight: 800;
    color: var(--black);
    font-size: 18px;
    text-align: center;
  }
}

.faq-front img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.faq-back {
  background-color: var(--accent);
  transform: rotateX(189deg) rotateZ(5deg); 
}

.faq-back p {
  transform: translateZ(20px);
  color: var(--black);
  font-weight: 800;
  font-size: 18px;
}

.faq-box:hover .faq-card {
  transform: rotateX(189deg) rotateZ(5deg); 
}

.form-module{
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  position: relative;

  &::before{
    position: absolute;
    content: '';
    background-color: var(--accent);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
    filter: grayscale(0.7);
  }

  .wrapper{
    position: relative;
    z-index: 2;
  }
}

.form-wr{
  background-color: var(--accent);
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
  border: 2px solid var(--black);
}

.contact-page-form-item{
  width: 100%;
}

.form{
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 19px;
}

.contact-page-form-item > input,
.contact-page-form-item > textarea,
.input-field--container-element,
.textarea-field--container-element{
  width: 100%;
  backgrund-color: var(--white);
  border: 1px solid var(--black);
  padding: 15px 18px;
  transition: var(--transition);
  outline: none;

  &:hover,
  &:focus{
    box-shadow: 13px 13px 20px var(--white), -13px -13px 20px var(--white), -13px 13px 20px var(--white), 13px -13px 20px var(--white);
  }
}

.privacy{
  color: var(--black);
  transition: var(--transition);
  text-align: center;
  position: relative;
  display: inline-block;
  margin-left: 10px;

  &:hover,
  &:focus{
    transform: rotate(4deg) translateY(6px);
  }
}

#comments{
  direction: ltr !important;
}

.comments-wr{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  background-color: var(--accent);
  border: 2px solid var(--black);
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.quote-img-wr{
  width: 100%;
  display: flex;
  justify-content: center;
}

.comment-slider{
  width: 100%;
  overflow: hidden;
  min-height: 250px;
  height: 100%;
}

.comment-box{
  width: 400%;
  height: 100%;
  display: flex;
  flex-direction: row;
  transition: 1s linear;
  gap: 19px;
}

.comment-item{
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 1s linear;
  display: flex;
  flex-direction: column;
  gap: 19px;
  padding: 19px;
}

.comment-item.comment-visible{
  opacity: 1;
  transition: 1s linear;
}

.quote-img{
  width: 100px;
  height: 100px;
  
  svg{
    width: 100%;
    height: 100%;
  }
}

.comment-text{
  color: var(--black);
  font-weight: 800;
  font-size: 18px;
}

.author-box{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.author-img{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--accent);
  border: 1px solid var(--black);

  img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.7;
    filter: grayscale(0.7);
  }
}

.author-name{
font-weight: 500;
}

.video-module{
  width: 100%;
  height: 425px;
  background-color: var(--accent);

  video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.9);
    transition: var(--transition);
    opacity: 0.7;
  }

  &:hover video,
  &:focus video{
    filter: grayscale(0.5);
  }
}

.footer{
  background-color: var(--accent);
  padding: 28px 0;
  border-top: 2px solid var(--black);
  overflow: hidden;
}

.disclaimer-wr{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  display: flex;
  animation: rubberBand 5s linear infinite;
  flex-direction: column;
  gap: 19px;
  padding:  30px;
  border: 2px solid var(--black);

  .title{
    margin: 0;
  }
}

.disclaimer-img{
  width: 109px;
  height: 109px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.disclaimer-text{
  text-align: center;
  margin: 0;
}

.footer-nav{
  margin-top: 19px;
}

.copyright{
  margin-top: 19px;
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  p{
    margin: 0;
    color: #565555ab;
  }
}

.btn-up {
  position: fixed;
  background-color: var(--accent);
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transition: 0.5s;
  border: 1px solid var(--black);
  opacity: 0.7;
  z-index: 3;
}

.btn-up::before {
  content: "";
  width: 20px;
  height: 20px;
  fill: var(--black);
  background: transparent no-repeat center center;
  background-size: 100% 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yNCAwdjI0SDBWMHpNMTIuNTkzIDIzLjI1OGwtLjAxMS4wMDJsLS4wNzEuMDM1bC0uMDIuMDA0bC0uMDE0LS4wMDRsLS4wNzEtLjAzNXEtLjAxNi0uMDA1LS4wMjQuMDA1bC0uMDA0LjAxbC0uMDE3LjQyOGwuMDA1LjAybC4wMS4wMTNsLjEwNC4wNzRsLjAxNS4wMDRsLjAxMi0uMDA0bC4xMDQtLjA3NGwuMDEyLS4wMTZsLjAwNC0uMDE3bC0uMDE3LS40MjdxLS4wMDQtLjAxNi0uMDE3LS4wMThtLjI2NS0uMTEzbC0uMDEzLjAwMmwtLjE4NS4wOTNsLS4wMS4wMWwtLjAwMy4wMTFsLjAxOC40M2wuMDA1LjAxMmwuMDA4LjAwN2wuMjAxLjA5M3EuMDE5LjAwNS4wMjktLjAwOGwuMDA0LS4wMTRsLS4wMzQtLjYxNHEtLjAwNS0uMDE5LS4wMi0uMDIybS0uNzE1LjAwMmEuMDIuMDIgMCAwIDAtLjAyNy4wMDZsLS4wMDYuMDE0bC0uMDM0LjYxNHEuMDAxLjAxOC4wMTcuMDI0bC4wMTUtLjAwMmwuMjAxLS4wOTNsLjAxLS4wMDhsLjAwNC0uMDExbC4wMTctLjQzbC0uMDAzLS4wMTJsLS4wMS0uMDF6Ii8+PHBhdGggZmlsbD0iY3VycmVudENvbG9yIiBkPSJNMTEuMjkzIDguMjkzYTEgMSAwIDAgMSAxLjQxNCAwbDUuNjU3IDUuNjU3YTEgMSAwIDAgMS0xLjQxNCAxLjQxNEwxMiAxMC40MTRsLTQuOTUgNC45NWExIDEgMCAwIDEtMS40MTQtMS40MTR6Ii8+PC9nPjwvc3ZnPg==');
}

.btn-up_hide {
  display: none;
}

.btn-up:hover {
  transform: translateY(-5px);
  opacity: 1;
}

.contact-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: var(--accent);
  filter: grayscale(0.7);
  transition: var(--transition);
  border: 2px solid var(--black);
  padding: 19px;

  a{
    color: var(--black);
    transition: var(--transition);
    word-break: break-all;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
  }

  &:hover a,
  &:focus a{
    transform: rotate(4deg) translateY(4px);
  }

  &:hover,
  &:focus{
    filter: grayscale(0.5);
  }
}

.adres{
  text-align: center;
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
}

.contact-form-module{
  border: none !important;
}

.box-iframe{
  width: 100%;
  height: 750px;
  
  iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid var(--black);
  }
}


.col-rev{
  display: flex;
  gap: 19px;
  flex-direction: column;
}

.page-img-wr{
  width: 100%;
  height: auto;
  padding: 19px;
  
  img{
    background-color: var(--accent);
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
    padding: 12px;
    filter: grayscale(0.7);
  }
}

.privacy-content{
  overflow: hidden;
  word-break: break-all;
}


@media (max-width: 420px){
  .logo h1{
    text-align: center;
  }
}

@media (max-width: 575px){
  .main-img img{
    opacity: 0.3;
  }
}

@media (min-width: 576px) {
  .col-5{
    width: calc(50% - 19px);
  }
  .row-5{
    flex-direction: row-reverse;
  }

  .col-5{
    width: calc(50% - 19px);
  }

  .title{
    font-size: 22px;
  }

  .main-title{
    bottom: 100px;
    transform: translateY(0);
    left: 10%;
  }

  .main-title-box{
    &::before{
      position: absolute;
      content: '';
      top: 50%;
      transform: translateY(-50%);
      left: 0;
      width: 350px;
      height: 350px;
      border-radius: 50%;
      background-color: var(--accent);
      z-index: 1;
      animation: mainTitleImg 2s linear;
      transition: var(--transition);
      filter: drop-shadow(1px 1px 3px #11111172);
    }
  }

  .games1-img{
    width: 300px;
    height: 300px;
  }

  .comments-wr{
    flex-direction: row;
  }

  .quote-img-wr{
    width: 20%;
  }

  .comment-slider{
    width: 80%;
  }

  .author-box{
    flex-direction: row;
  }

  .page-img-wr{
    height: 425px;
  }
}

@media (max-width: 767px){
  .header-nav-wr{
    background-color: var(--accent);
  }

  .header-nav-wr{
    transition: 0.5s linear;
    transform: translateY(Calc(-100% + 30px + (12px * 2)));
  }

  .menu-open{
    transition: 0.5s linear;
    transform: translateY(0);
  }

  .menu-btn{
    cursor: pointer;
    width: 30px;
    height: 30px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;

    svg{
      width: 25px;
      height: 25px;
      color: var(--black);
      transition: var(--transition);

      &:hover,
      &:focus{
        transform: translateY(5px);
      }
    }
  }

  .menu-open .menu-btn{
    transform: rotate(90deg);
  }

  .header-nav-box{
    flex-direction: column;
  }

  .au-img-sm{
    display: none;
  }

  .au-slider-box{
    height: 200px;
  }

  .card-back{
    transform: rotate(177deg) !important;
  }

  .game2-box:hover .card,
  .game2-box:focus .card{
      transform: rotate(0deg) !important;
  }
}

@media (min-width: 768px){
  .row-2,
  .row-3,
  .row-4{
    flex-direction: row-reverse;
  }

  .col-2,
  .col-3,
  .col-4{
    width: calc(50% - 19px);
  }
 
  .col-5{
    width: calc(33.333% - 19px);
  }

  .col-6{
    width: calc(33.333% - 19px);
  }

  .col-30{
    width: calc(30% - 19px);
  }

  .col-70{
    width: calc(70% - 19px);
  }

  .module{
    padding: 100px 0;
  }

  .title{
    font-size: 25px;

    &::before{
      top: 16px
    }
  }

  .menu-btn{
    display: none;
  }

  .header-nav-box{
    justify-content: center;
    gap: 33px;
  }

  .main-title{
    left: 20%;
  }

  .ben-row{
    flex-direction: row !important;
  }

  .ben-row{
    .col-4:nth-child(1) > .ben-boxs,
    .col-4:nth-child(2) > .ben-boxs{
      border-bottom: 0;
    }
    .col-4:nth-child(1) > .ben-boxs,
    .col-4:nth-child(3) > .ben-boxs{
      border-right: 0;
    }

    .col-4:nth-child(3) > .ben-boxs{
      border-bottom: 2px solid var(--black);
    }
  }

  .header-nav-wr{
    left: 50%;
    transform: translateX(-50%);
  }

  .page-img-wr{
    width: 350px;
    margin: 0 auto;
    height: 350px;
    float: none;
  }

  .page-content{
    min-height: 367px;
  }
}


@media (min-width: 992px){
  .col-3{
    width: calc(33.333% - 19px);
  }

  .col-4{
    width: calc(25% - 19px);
  }

  .col-5{
    width: calc(20% - 19px);
  }

  .col-6{
    width: calc(20% - 19px);
  }

  .title{
    font-size:  30px;
  }
  
  .header-nav-box{
    justify-content: space-between;
  }

  .main-title{
    left: 50%;
    bottom: 130px;
  }

  .ben-row{
    .col-4:nth-child(1) > .ben-boxs,
    .col-4:nth-child(2) > .ben-boxs,
    .col-4:nth-child(3) > .ben-boxs{
      border-right: 0;
    }

    .col-4:nth-child(1) > .ben-boxs,
    .col-4:nth-child(2) > .ben-boxs{
      border-bottom: 2px solid var(--black);
    }
  }

    .page-img-wr{
      width: 350px;
      height: 350px;
    }

    .page-content{
      min-height: 425px;
    }
}

@media (min-width: 1200px){
  .wrapper {
    max-width: 1300px;
  }

  .title{
    font-size:30px;

    &::before{
      top: 18px
    }
  }

  .logo h1{
    font-size: 46px;
  }

  .header{
    min-height: 750px;
  }

  .page-img-wr{
    width: 450px;
    height: 425px;
  }

  .page-content{
    min-height: 425px;
  }
}

.btn-box{
  position: relative;
  z-index: 1;
  text-align: center;
}

.button{
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 2;
}

.button-1{
  border: none;
  outline: none;
  background-color: var(--white);
  padding: 17px 18px;
  transition: var(--transition);
  color: var(--black);

  &:hover,
  &:focus{
    transform: rotate(4deg) translateY(4px);
  }
}

.button-2{
  background-color: transparent;
  color: var(--black);
  position: relative;
  background-image: url('content/background/opacity_bg-0685189247d1a8.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 22px 22px;
  border-radius: 23px;
  border: 2px solid var(--black);
  transition: var(--transition);

  &:hover,
  &:focus{
    background-position: left;
    font-size: 18px;
    font-weight: 800;
  }
}

.button-3{
  background-color: var(--white);
  border: 1px solid var(--black);
  color: var(--black);
  font-weight: 800;
  padding: 10px 19px;
  border-radius: 48px;
  transition: var(--transition);

  &:hover,
  &:focus{
   box-shadow: 13px 13px 20px var(--white), -13px -13px 20px var(--white), -13px 13px 20px var(--white), 13px -13px 20px var(--white); 
  }
}

.button-4{
  background-color: var(--black);
  border: 1px solid var(--white);
  color: var(--white);
  font-weight: 800;
  padding: 10px 19px;
  border-radius: 48px;
  transition: var(--transition);

  &:hover,
  &:focus{
    border-radius: 0;
  }
}

.button-5{
  background-color: var(--grey);
  border: none;
  color: var(--black);
  padding: 17px 18px;
  transition: var(--transition);
  outline: none;
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  font-weight: 700;

  &::before{
    position: absolute;
    content: '';
    top: -50%;
    left: 0;
    background-color: var(--white);
    border-radius: 48px;
    opacity: 0.7;
    width: 100%;
    height: 100%;
    transition: 0.5s linear;
  }

  span{
    position: relative;
    z-index: 2;;
  }

  &:hover::before,
  &:focus::before{
    top: 0;
  }
  &:hover,
  &:focus{
    color: var(--black);
  }
}

@keyframes mainImg{
  0%{
    transform: scale(0.2);
  }
  100%{
    transform: scale(1);
  }
}

@keyframes mainTitleImg{
  0%{
    transform: translateY(-50%) scale(0.2);
  }
  100%{
    transform: translateY(-50%) scale(1);
  }
}

@keyframes haderTitle{
  0%{
    transform: translateX(100%) scale(0.2);
    opacity: 0;
  }
  50%{
    transform: translateX(100%) scale(0.2);
    opacity: 0;
  }
  100%{
    transform: translateX(0%) scale(1);
    opacity: 1;
  }
}

@keyframes mainBg{
  0%{
    filter: drop-shadow(3px 3px 3px var(--accent)) drop-shadow(-3px -3px 3px var(--accent));
  }
  50%{
    filter: drop-shadow(33px 33px 60px var(--accent)) drop-shadow(-33px -33px 60px var(--accent));
  }
  100%{
    filter: drop-shadow(3px 3px 3px var(--accent)) drop-shadow(-3px -3px 3px var(--accent));
  }
}
@keyframes mainBgImg{
  0%{
    filter: grayscale(0.7);
  }
  50%{
    filter: grayscale(1);
  }
  100%{
    filter: grayscale(0.7);
  }
}

@keyframes ball{
  0%{
    opacity: 0;
    transform: scale(0.3);
  }
  100%{
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  15% {
    -webkit-transform: scale3d(1.12, 0.75, 1);
    transform: scale3d(1.12, 0.75, 1);
  }
  20% {
    -webkit-transform: scale3d(0.75, 1.12, 1);
    transform: scale3d(0.75, 1.12, 1);
  }
  25% {
    -webkit-transform: scale3d(1.07, 0.85, 1);
    transform: scale3d(1.07, 0.85, 1);
  }
  30% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }
  35% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }
  50% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
} 


.dop-params-headaer{
  min-height: 250px !important;
}