@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

section,
footer {
  overflow-x: hidden;
}


* {
    box-sizing: border-box;
}
button {
  cursor: pointer;
}
body{
  background-image: url('img/connected.png');
  background-color: var(--bg-light);
    direction: ltr;
    font-family: 'Lexend', sans-serif !important;
    font-size: 17px;
    margin: 0;
    padding: 0px;
    line-height: 1.5;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0;
}

ul {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    list-style: none;
    padding-inline-start: 0;
}

img {
    display: block;
}

.link {
    text-decoration: none;
}

.link:hover,
.link:focus {
    cursor: pointer;
}

.title-g10 {
  margin-bottom: 16px;
  border-bottom: solid  5px var(--accent-color);
  clip-path: polygon(5% 0, 100% 10%, 95% 100%, 0 90%);
  position: relative;
  display: inline-block;
  display: flex;
  margin-left: auto;
  padding:  16px;
  justify-content: flex-end;
  direction: initial;
}
.title-g10::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  background-color: var(--bg-light);
  height: 10px;
  animation: title_anim 10s linear infinite;
}

@keyframes title_anim {
  0% {
    width: 100%;
  }
  50%{
    width: 0%;
  }
  100%{
    width: 100%;
  }
}

.title-g10 h2 {
    display: inline-block;
    color: var(--bg-first);
    font-size: 24px;
    text-align: right;
}

@media screen and (min-width: 575px) {
  .title-g10 {
    margin-bottom: 30px;
  }  
  .title-g10 h2 {
    font-size: 27px;
}

}

@media screen and (min-width: 768px) {
  .title-g10 {
    width: 80%;
    padding: 20px 46px 0 20px;
    margin-bottom: 46px;
  }

  .title-g10 h2 {
    font-size: 36px;
  }
}
  
.container-g10 {
    padding-left: 13px;
    padding-right: 13px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1203px !important;
}

@media screen and (min-width: 576px) and (max-width: 990px) {
    .container-g10 {
        padding-left: 13px;
        padding-right: 13px;
    }
}

@media screen and (min-width: 991px) {
    .container-g10 {
        padding-left: 16px;
        padding-right: 16px;
    }
}

:root {
  --bg-first: #ACA22E;
  --bg-light: #fcfcfc;
  --accent-color: #e2da93;
  --white-color: #ffffff;
}

.flex {
  display: flex;
  flex-direction: column-reverse;
}

@media screen and (min-width: 576px) {
  .flex {
    flex-direction: row-reverse;
  }
}

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

@media screen and (min-width: 768px) {
  .header-g10 {
    width: 60%;
  }
}

.nav-inner-g10 {
  position: relative;
  display: flex;
  gap: 46px;
  flex-direction: column;
  justify-content: space-between;
  padding:  20px 0;
  direction: initial;
}

@media screen and (min-width: 991px) {
  .nav-inner-g10 {
    gap:  46px;
    padding:  46px 0;
  }
}

.logo-link-g10 {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 28px;
  font-weight:700;
  color: #ffffff;
  word-break: break-word;
  line-height: 1.1;
  -webkit-text-stroke: 1px var(--bg-first);
  transform: all 0.5 ease-in-out;
}

@media screen and (min-width: 425px) {
  .logo-link-g10 {
    font-size: 36px;
  }
}
@media screen and (min-width: 576px) {
  .logo-link-g10 {
    font-size: 44px;
  }
}

@media screen and (min-width: 768px) {
  .logo-link-g10 {
    width: 60%;
  }
}

.logo-link-g10:hover,
.logo-link-g10:focus {
  text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.7), 0 0 25px var(--bg-first);
  color: #fff;
}

.logo-link-g10 div {
  height: 98px;
}

.logo-link-g10__img {
  display: inline-block;
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.navigation-block {
  width: 200px;
}
@media screen and (min-width: 991px) {
  .navigation-block {
    display: none;
  }
}

.hamberger-menu {
  width: 35px;
  height: 35px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.bar {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--white-color), var(--accent-color), var(--bg-first) var(--accent-color), var(--white-color));
  position: absolute;
  transition: all 0.3s ease-out;
  background-color: var(--white-color);
}

.bar.upper-bar {
  transform: translatey(-10px);
}

.bar.lower-bar {
  transform: translatey(10px);
}

.hamberger-menu,
.menu-list {
  position: fixed;
  z-index: 2;
}

.menu-list {
  display: none;
  top: 50px
}

.menu-list > ul {
  list-style: none;
  margin-top:  20px;
}

.menu-list > ul > li a {
  color: var(--white-color);
  text-decoration: none;
  padding: 10px  16px;
  display: block;
  border-bottom: solid 1px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.menu-list > ul > li a:hover {
  background-color: rgba(0,0,0,0.2);
  animation: linkAnimation 0.2s ease-out;
}

.menu-background {
  width: 600px;
  height: 600px;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1;
  background-color: var(--bg-first);
  transform: translate(-100%, -100%);
  transition: all 0.3s ease-out;
  border-radius: 100%;
  border:  16px double var(--accent-color);
}

.navigation-block.is-active .bar.upper-bar,
.navigation-block.is-active .bar.lower-bar {
  transform: translatey(0px);
}

.navigation-block.is-active .bar.upper-bar {
  transform: rotate(45deg);
}

.navigation-block.is-active .bar.lower-bar {
  transform: rotate(-45deg);
}

.navigation-block.is-active .bar.middle-bar {
  transform: translatex(-1000px);
}

.navigation-block.is-active .menu-list {
  display: block;
}

.navigation-block.is-active .menu-background {
  animation: bubblePresent 0.3s ease-out;
  transform: translate(-50%, -30%);
}

@keyframes linkAnimation {
  0% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bubblePresent {
  0% {
    transform: translate(-100%, -100%);
  }
  80% {
    transform: translate(-45%, -25%);
  }
  100% {
    transform: translate(-50%, -30%);
  }
}


.menu-btn-g10 .icon-menu,
.menu-btn-g10 .icon-cross {
  fill: var(--bg-first);
}

.menu-btn-g10 {
  border: none;
  border-top: solid 1px var(--bg-first);
  border-bottom: solid 1px var(--bg-first);
  background-color: var(--white-color);
  padding: 0;
  width: 40px;
  clip-path: polygon(5% 0, 100% 10%, 95% 100%, 0 90%);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 992px) {
  .menu-btn-g10 {
      display: none;
  }
}

  .menu-btn-g10 .icon-cross {
      display: none;
  }

  .menu-btn-g10.is-active .icon-cross {
    display: block;
}

.menu-btn-g10.is-active .icon-menu {
  display: none;
}

.mob-menu-g10 {
  display: none;
  z-index: 9;
  position: absolute;
  top: 100%;
  right: 0;
  width: min(100%, 500px);
  overflow-y: scroll;
  background-color: #0f1a37;;
}

@media screen and (max-width: 990px) {
  .mob-menu-g10.is-open {
      display: flex;
      flex-direction: column;
  }
}

@media screen and (min-width: 991px) {
  .mob-menu-g10 {
      display: none;
  }
}

.mob-nav-bar-g10 {
  margin-top:  30px;
}

.mob-nav-bar-g10__item {
  position: relative;
  background-color: var(--main-color-1);
  border-bottom: 1px solid var(--main-text-color-1);
}

.mob-nav-bar-g10__list .mob-nav-bar-g10__item::before {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  left: 10px;
  position: absolute;
}

.mob-nav-bar-g10__link {
  display: block;
  font-weight:  600;
  line-height: 1.5;
  letter-spacing: 0.8px;
  font-size:  13px;
  padding: 10px  16px;
  color: var(--main-text-color-1);
  text-transform: uppercase;
}

.mob-nav-bar-g10__item:hover .mob-nav-bar-g10__link{
  color: var(--arcade_light-bg-1);
}

.menu-img {
  max-width: 70%;
  margin: 30px auto 0 auto;
}

.nav-bar-g10 {
      display: none;
  }

@media screen and (min-width: 992px) {
  .nav-bar-g10 {
      display: block;
      width: unset;
  }
}

.nav-bar-g10__list {
  display: flex;
  gap: 30px;
}

.nav-bar-g10__item {
  box-shadow: 4px 3px 20px 0px var(--accent-color);
  background: rgb(226 218 147 / 66%);
  border-radius: 10px;
}

.nav-bar-g10__link {
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.8;
  padding:  10px  10px;
  display: inline-block;
}

.nav-bar-g10__item:hover,
.nav-bar-g10__item:focus {
  box-shadow: 4px 3px 20px 0px var(--white-color);
}


.hero-g10 {
  padding: 262px 0 750px 0;
  background: radial-gradient(ellipse farthest-corner at top left, transparent 20%, transparent 35%, var(--bg-first) 61%, var(--bg-first) 69%, var(--bg-light) 0%), url(content/dir-bg/bg-all-068dcee9c938bf.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  position: relative;
  overflow: hidden;
  direction: initial;
}

.hero-g10-content {
  margin-left: 10px;
  border-top: solid  16px var(--accent-color);
  border-bottom: solid  16px var(--accent-color);
  clip-path: polygon(5% 0, 100% 5%, 95% 100%, 0 95%);
  background-color: var(--bg-light);
  padding:  50px 26px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-g10-content h1 {
  font-size: 21px;
}

.form-block-g10 {
  border-top: solid  16px #ffffff;
  border-bottom: solid  16px var(--bg-first);
  clip-path: polygon(5% 0, 100% 10%, 95% 100%, 0 90%);
  background-color: var(--accent-color);
  padding: 42px  50px  42px 15%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  align-content: center;
}

.form-block-g10 .title-g10 {
  width: 100%;
  padding: 0 20px 0  16px;
  margin-bottom:  16px;
}

.form-block-g10 h2{
  color: var(--bg-first);
  font-size: 24px;
}

.input-main_column__item,
.textarea-main_column__item,
.input-g10 {
  background-color: var(--white-color);
  font-size:  13px;
  font-weight:600;
  color: var(--bg-first);
  border: solid 1px var(--white-color);
  border-radius: 7px;
  padding:  5px 18px;
  transition: all .3s;
  line-height:1.5;
  min-height: 38px;
  margin:  10px 0;
  width: 100%;
  outline: none;
}

.input-main_column__item:focus,
.textarea-main_column__item:focus,
.input-g10:focus {
  border-color: var(--bg-first);
}

.form-g10 label:not(.form-g10-check-label) {
  font-size: 18px;
  font-weight: 600;
  color: var(--bg-first);
  margin: 10px;
}

.input-main_column__item::placeholder,
.textarea-main_column__item::placeholder {
  font-size:  13px;
  font-weight:  600;
  color: var(--bg-first);
}

.form-g10-check {
  font-size:  18px;
  font-weight: 600;
  color: var(--white-color);
  margin: 10px;
}

.form-g10-check a {
  color: var(--bg-first);
}

@media screen and (min-width: 576px) and (max-width: 767px) {
  .hero-g10 {
    padding: 270px 0 750px 0;
  }
  .hero-g10-content {
    padding: 30px 44px;
  }  
  .form-block-g10 {
    margin-left: 0;
    padding: 35px 44px;
    width: 100%;
  }
}


@media screen and (min-width: 768px) {
  .hero-g10 {
    padding: 270px 0 200px 0;
  }
    .hero-g10-content {
    margin-left: 20px;
    width: 60%;
    padding: 50px;
    clip-path: polygon(5% 0, 100% 10%, 95% 100%, 0 90%);

  }  
  .form-block-g10 {
    padding: 35px 50px 35px 12%;
    width: 50%;
    margin-left: -100px;
    right: 0;
    bottom: 0;
  }
}

@media screen and (min-width: 991px) {
  .hero-g10-content {
    margin-left: 35px;
  }  
  .hero-g10-content h1 {
    font-size: 25px;
  }
  
  .form-block-g10 {
    right: 20px;
    top: 10%;
    bottom: unset;
    padding: 35px 50px 35px 15%;
  }
  .form-block-g10 .title-g10 h2{
    font-size: 28px ;
  }
}

.border {
  width: 95%;
  height: 35px;
  text-align: center;
  margin: 44px auto;
  background-image: url(content/tematik-assets/borders_long-068dcee9c939c1.png);
  background-position: 0 0;
  background-size: contain;
  background-repeat: repeat-x;
}

.border img {
  width: 100%;
}

.sec-benefits-g10 {
  margin-bottom: 105px;
}

.benefits-g10 {
  background-color: var(--bg-light);
  border: solid 35px var(--bg-first);
  clip-path: polygon(5% 0, 100% 5%, 95% 100%, 0 95%);
  padding: 16px 10px;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}

.benefit-g10 {
  flex: 50%;
  background: transparent;
  clip-path: polygon(5% 0, 100% 10%, 95% 100%, 0 90%);
  border-top: solid  20px var(--accent-color);
  border-bottom: solid  20px var(--accent-color);
  display: flex;
  gap: 13px;
  padding:  20px  5px;
  color: var(--bg-first);
}

.benefit-g10:nth-child(1) {
  border-top-left-radius: 100%;
  text-align: right;
  align-items: flex-end;
}

.benefit-g10:nth-child(2) {
  border-top-right-radius: 100%;
  text-align: left;
  align-items: flex-end;
}
.benefit-g10:nth-child(3) {
  border-bottom-left-radius: 100%;
  text-align: right;
  align-items: flex-start;
}

.benefit-g10:nth-child(4) {
  border-bottom-right-radius: 100%;
  text-align: left;
  align-items: flex-start;
}

.benefit-g10__icon {
  margin-bottom: 26px;
}

.benefit-g10__icon svg {
  width:  50px;
  fill: var(--bg-first);
}

.benefit-g10__text {
  color: var(--bg-first);
}

@media screen and (min-width: 768px) {
  .benefits-g10 {
    padding: 44px;
    flex-wrap: wrap;
    clip-path: polygon(5% 0, 100% 10%, 95% 100%, 0 90%);
    flex-direction: row-reverse;
  }

  .benefit-g10 {
    padding: 10px;
  }
}

.games-g10 {
  padding-bottom: 105px;
}

.games-g10__list {
  gap: 30px;
  flex-direction: column-reverse;
}

.games-g10__item {
  flex: 100%;
  display: flex;
  position: relative;
  flex-direction: column;
  direction: initial;
}

.games-g10__img {
  clip-path: polygon(5% 0, 100% 10%, 95% 100%, 0 90%);
  border-top: solid 20px var(--accent-color);
  border-bottom: solid 20px var(--accent-color);
  width: min(100%, 500px);
  margin: 0 auto;
}

.games-g10__img img{

  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}
.games-g10__img-2 {
  border-top: none !important;
}
.games-g10__img-2 img{
  height: 450px;
}

.games-g10__item div {
  clip-path: polygon(5% 0, 100% 10%, 95% 100%, 0 90%);
  border-top: solid 5px var(--bg-first);
  border-bottom: solid 5px var(--bg-first);
  background-color: var(--accent-color);
  margin-top: -20px;
  padding: 20px 26px;
  border-bottom-right-radius: calc(50% + 1%);
}

.games-g10__img:hover {
  -webkit-animation: scale-up-center 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: scale-up-center 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  z-index: 2;
}

.games-g10__item div h3 {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--bg-first);
}
.games-g10__img-2:hover {
  -webkit-animation: none !important;
  animation: none !important; 
  z-index: 2;
}
@media screen and (min-width: 576px) {
  .games-g10__img {
    width: 50%;
    margin: unset;
  }
  .games-g10__item div {
    position: absolute;
    left: 40%;
    top: 50%;
    padding: 20px 26px 20px 70px;
    width: 60%;
    transform: translateY(-50%);
    margin-top: unset;
  }
}

@media screen and (min-width: 768px) {
  .games-g10__list {
    flex-wrap: wrap;
    flex-direction: row-reverse;
  }
  
  .games-g10__item {
    flex: 50%;
  }  
}

@media screen and (min-width: 991px) {
  .games-g10__list {
    gap: unset;
  }
}

@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}

.game-page-g10 .games-g10__img img {
  object-fit: contain;
  aspect-ratio: unset;
}

.about-us-g10 {
  margin: 105px 0;
  padding: 50px 0;
  border-top: solid  20px var(--bg-first);
  border-bottom: solid  20px var(--bg-first);
  background-color: var(--accent-color);
  border-radius: 50%;
  direction: initial;
}

@media screen and (min-width: 576px){
  .about-us-g10 .flex {
    flex-direction: row;
    align-items: center;
  }
}

.aboutus-g10-visual {
  flex: 1;
  overflow: hidden;
}

.aboutus-g10-visual img {
  height: 625px;
  object-fit: contain;
  position: relative;
}

.aboutus-g10-visual.lpart img {
  left: 0;
}

.aboutus-g10-visual.rpart img {
  left: -100%;
}

.aboutus-g10-content {
  flex: 3;
  padding: 0 35px;
  -webkit-animation: scale-up-hor-center 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: scale-up-hor-center 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.aboutus-g10__text.cut{
  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 35px;
}

.aboutus-g10__text ul li,
.aboutus-g10__text ol li {
  margin-bottom: 5px;
}
.aboutus-g10__text ul,
.aboutus-g10__text ol {
  margin-bottom: 13px;
  padding-left:  20px;
  list-style: inside;
}
.aboutus-g10__text a,.aboutus-g10__text table{
color: inherit;
}
.aboutus-g10__text p{
margin-bottom:  5px;
text-indent: 3ch;
}

@media screen and (max-width: 575px){
  .about-us-g10 {
    padding: 100px 0;
  }  
  .lpart {
    display: none;
  }
  .aboutus-g10-visual img {
    width: 70%;
    margin: 16px auto;
  }
  .aboutus-g10-visual.rpart img {
    left: 0;
  }  
  .aboutus-g10-content .title-g10 {
    margin-right: 20%;
  }
}


@-webkit-keyframes scale-up-hor-center {
  0% {
    -webkit-transform: scaleX(0.4);
            transform: scaleX(0.4);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes scale-up-hor-center {
  0% {
    -webkit-transform: scaleX(0.4);
            transform: scaleX(0.4);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.faq-g10 .flex {
  justify-content: center;
  align-items: center;
}

.wrapper {
  width: 60%;
}

.imgwrap {
  flex: 1;
}

@media screen and (max-width: 990px){
  .imgwrap {
    display: none;
  }
}

.imgwrap img {
  width: 100%;
  margin-left: 30px;
  margin-bottom: 30px;
}


.container {
  background-color: var(--bg-light);
  color: black;
  margin: 16px 0;
  border-top: solid 16px var(--accent-color);
  border-bottom: solid 16px var(--accent-color);
  clip-path: polygon(5% 0, 100% 10%, 95% 100%, 0 90%);
}

.question {
  font-size: 20px;
  font-weight:600;
  padding: 20px 80px 20px 35px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.question::after {
  content: "\002B";
  font-size: 2.2rem;
  position: absolute;
  right: 20px;
  transition: 0.2s;
}

.question.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  padding: 0 20px 20px;
  line-height: 1.5;
}

@media screen and (max-width: 790px){
 
  .wrapper {
  width: 80%;
}
}

.footer-g10 {
  padding: 100px 0 46px 0;
  background: radial-gradient(ellipse farthest-corner at bottom right, transparent 20%, transparent 35%, var(--bg-first) 61%, var(--bg-first) 69%, var(--bg-light) 0%), url(content/dir-bg/bg-all-168dcee9c938ec.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  position: relative;
  overflow: hidden;
  direction: initial;
}

.footer-g10 .flex{
  align-items: center;
  justify-content: center;
  gap: 35px;
}

@media screen and (min-width: 576px) {
  .footer-g10 .flex{
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.footer-g10 .flex div:not(.disclamer-g10) {
  flex: 1;
  order: 2;
}

.disclamer-g10 {
  border-bottom: solid  16px var(--bg-light);
  border-top: solid  16px var(--bg-first);
  clip-path: polygon(5% 0, 100% 10%, 95% 100%, 0 90%);
  background-color: #d45b85;
  padding: 35px;
  background-image: url(content/dir-bg/opacity_bg-068dcee9c93979.png);
  flex: 2;
}

@media screen and (min-width: 576px) and (max-width: 767px){
  .disclamer-g10 {
    flex: 100%;
  }
  .politics-links {
    margin-right: 30px;
  }
}

@media screen and (min-width: 576px) and (max-width: 1200px){
  .politics-links {
    margin-right: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .disclamer-g10 {
    margin-left: -13%;
  }
}

.adult-g10 {
  width: 100px;
  flex: 1;
  float: left;
  shape-outside: circle(50%);
  clip-path: ellipse(58% 88% at 50% 50%);
  margin-right: 35px;
}

.adult-g10 img {
  width: 100%;
}

:where(.menu-footer, .politics-links) .nav-bar-g10__item:nth-child(1) {
  margin: 0 -30px 0 30px;
}
:where(.menu-footer, .politics-links) .nav-bar-g10__item:nth-child(2) {
  margin: 0 -20px 0  20px;
}
:where(.menu-footer, .politics-links) .nav-bar-g10__item:nth-child(3) {
  margin: 0 -10px 0 10px;
}
:where(.menu-footer, .politics-links) .nav-bar-g10__item:nth-child(4) {
  margin: 0;
}
.politics-links .nav-bar-g10__item:nth-child(5) {
  margin: 0 10px 0 -10px;
}

.link-footer {
  color: #000;
  font-weight:700;
  font-size: 17px;
  line-height: 1.8;
  padding: 5px 10px;
  display: inline-block;
}

@media screen and (max-width: 575px) {
  .link-footer {
    font-size: 15px;
  }
}

.copyright-g10 {
  text-align: center;
  color: var(--white-color);
  font-size: 20px;
  padding: 10px;
  margin-top: 26px;
}

.copyright-g10 a {
  font-size: inherit;
  color: var(--bg-first);
}

.copyright-g10 img {
 
  max-height: 20px;
  display: inline-block;
}

.comment-g10 {
  display: flex;
}

.comment-g10-avatar {
  object-fit: cover;
  width: 136px;
  aspect-ratio: 1;
  border-radius:50%;
  overflow: hidden;
}

.comment-g10-body {
  flex: 1;
}

.comment-g10-nick {
  color: #ffffff;
  -webkit-text-stroke: 1px var(--bg-first);
  font-size: 20px;
}

.comment-g10:nth-child(1), 
.comment-g10:nth-child(3) {
  flex-direction: column;
}

.comment-g10:nth-child(2), 
.comment-g10:nth-child(4) {
  flex-direction: column-reverse;
}


@media screen and (min-width: 767px) {
  .comment-g10:nth-child(1), 
  .comment-g10:nth-child(3) {
    flex-direction: row;
  }
  .comment-g10:nth-child(2),
  .comment-g10:nth-child(4) {
    flex-direction: row-reverse;
  }
}

.game-page-g10 .game-g10 {
  flex-direction: column;
}

.game-page-g10 .games-g10__img {
  flex: 1;
  margin-left: auto;
  margin-bottom: -120px;
  z-index: 1;
}

.game-page-g10 .game-g10-discription {
  flex: 1;
  border-top: solid  16px var(--bg-first);
  border-bottom: solid  16px var(--bg-first);
  clip-path: polygon(5% 0, 100% clamp(6%, 10vw, 10%), 95% 100%, 0 95%);  background-color: var(--accent-color);
  padding: 70% 30px;
  color: #181818;
}

@media screen and (min-width: 400px) {
  .game-page-g10 .game-g10-discription {
    padding: 40% 30px;
  }
}
@media screen and (min-width: 500px) {
  .game-page-g10 .game-g10-discription {
    padding: 25% 30px;
  }
}

@media screen and (min-width: 576px) {
  .game-page-g10 .game-g10-discription {
    padding:  98px  35px;
  }
}

@media screen and (min-width: 768px) {
  .game-page-g10 .game-g10-discription {
    clip-path: polygon(5% 0, 100% 10%, 95% 100%, 0 90%);
    padding: 100px 70px;
  }
}


.game-section {
  background-image: linear-gradient(9deg, transparent 40%, var(--bg-first) 40%, var(--bg-first) 45%, transparent 45%), linear-gradient(-2deg, transparent 25%, var(--bg-first) 25%, var(--bg-first) 30%, transparent 30%), radial-gradient(circle, var(--bg-first) 10%, transparent 10%);
  padding: 98px 0;
}
.game-frame-g10 iframe{
  height: 100vh;
  width: 100%;
}


.contacts-g10 {
  padding: 98px 0;
  direction: initial;
}

.contacts-g10__list {
  gap:20px;
  margin-bottom: 67px;
  flex-direction: column-reverse;
}

.contacts-g10__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 21px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .contacts-g10__list {
    flex-direction: row-reverse;
  }
  .contacts-g10__item:nth-child(2) {
    border-right: 1px solid var(--bg-first);
    border-left: 1px solid var(--bg-first);
  }
}

.contacts-g10_img {
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 98px;
  height: 98px;
  padding: 20px;
}

.contacts-g10_img svg {
  fill: var(--bg-first);
}

.contacts-g10__item p {
  font-size: 36px;
}

.contacts-g10__item .contacts-g10_det {
  word-break: break-all;
  font-size: 18px;
  color: var(--bg-first);
}

.form-part-g10 {
  background: radial-gradient(ellipse farthest-corner at center right, transparent 20%, transparent 35%, var(--bg-first) 61%, var(--bg-first) 69%, var(--bg-light) 0%), url(content/dir-bg/bg-all-268dcee9c93916.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  padding: 98px 0;
}

.form-part-g10 .form-block-g10 {
  position: relative;
  padding: 44px;
  top: unset;
  right: unset;
  margin-left: 0;
}

@media screen and (min-width: 768px) {
  .form-part-g10 .form-block-g10 {
    left: 20%;
  }
}

.privacy-g10 {
  word-break: break-all;
  padding: 67px 0;
  color: #2b2a2a;
}

.about-txt{
word-break: break-word;
}
.about-txt ul li,
.about-txt ol li {
  margin-bottom: 5px;
}
.about-txt ul,
.about-txt ol {
  margin-bottom: 13px;
  padding-left:  20px;
  list-style: inside;
}
.about-txt a,.about-txt table{
color: inherit;
}
.about-txt p{
margin-bottom:  5px;
text-indent: 3ch;
}
.flexSectionGHJ{
  display: flex;
  flex-direction: column-reverse;
}


@media (max-width: 567px) {
  .games-g10__img-2 img {
    height: auto;
  }
  .benefit-g10:nth-child(1) {
    text-align: start;
  }
  .benefit-g10:nth-child(2) {
    text-align: start;
  }
  .benefit-g10:nth-child(3) {
    text-align: start;
  }
  .benefit-g10:nth-child(4) {
    text-align: start;
  }
  .aboutus-g10-visual img {
    height: 250px;
  }
  .about-us-g10 {
    border-radius: 0;
  }
  .contacts-g10__item p{
    font-size: 21px;
  }
}


.button_1 {
  background: linear-gradient(140.14deg, #ec540e 15.05%, #d6361f 114.99%)
      padding-box,
    linear-gradient(142.51deg, #ff9465 8.65%, #af1905 88.82%) border-box;
  border-radius: 7px;
  border: 2px solid transparent;

  text-shadow: 1px 1px 1px #00000040;
  box-shadow:  7px  7px  20px 0px #45090059;

  padding: 10px 35px;
  line-height:  20px;
  cursor: pointer;
  transition: all 0.3s;
  color: white;
  font-size: 17px;
  font-weight: 600;
}

.button_1:hover {
  box-shadow: none;
  opacity: 80%;
}

   
.button_2 {
  padding:  13px 21px;
 border: 1px solid var(--bg-first);
 position: relative;
 overflow: hidden;
 background-color: transparent;
 text-align: center;
 text-transform: uppercase;
 font-size: 18px;
 transition: .3s;
 z-index: 1;
 font-family: inherit;
 color: var(--bg-first);
 display: inline-block;
}

.button_2::before {
 content: '';
 width: 0;
 height: 300%;
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%) rotate(45deg);
 background: var(--bg-first);
 transition: .5s ease;
 display: block;
 z-index: -1;
}

.button_2:hover::before {
 width: 105%;
}

.button_2:hover {
 color: #111;
}
  

  .button_3 {
    position: relative;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 21px;
    display: inline-block;
    cursor: pointer;
    border-radius: 35px;
    transition: all 0.2s;
    border: none;
    font-family: inherit;
    font-weight:600;
    color: black;
    background-color: white;
  }
  
  .button_3:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px  20px rgba(0, 0, 0, 0.2);
  }
  
  .button_3:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  
  .button_3::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.4s;
  }
  
  .button_3::after {
    background-color: #fff;
  }
  
  .button_3:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
  }
       
.button_4 {
    --color: var(--bg-first);
    --color2: rgb(10, 25, 30);
    padding: 10px  21px;
    background-color: transparent;
    border-radius: 7px;
    border: 1px solid var(--color);
    transition: .5s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    font-weight: 100;
    font-size: 17px;
    text-transform: uppercase;
    color: var(--color);
    display: inline-block;
   }
   
   .button_4::after, .button_4::before {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    transform: skew(90deg) translate(-50%, -50%);
    position: absolute;
    inset: 50%;
    left: 25%;
    z-index: -1;
    transition: .5s ease-out;
    background-color: var(--color);
   }
   
   .button_4::before {
    top: -50%;
    left: -25%;
    transform: skew(90deg) rotate(180deg) translate(-50%, -50%);
   }
   
   .button_4:hover::before {
    transform: skew(45deg) rotate(180deg) translate(-50%, -50%);
   }
   
   .button_4:hover::after {
    transform: skew(45deg) translate(-50%, -50%);
   }
   
   .button_4:hover {
    color: var(--color2);
   }
   
   .button_4:active {
    filter: brightness(.7);
    transform: scale(.98);
   }
     

.button_5 {
  --border-color: linear-gradient(-45deg, #ffae00, #7e03aa, #00fffb);
  --border-width: 1px;
  --curve-size: 0.5em;
  --blur: 30px;
  --bg: #080312;
  --color: #afffff;
  color: var(--color);
  cursor: pointer;
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-content: center;
  padding: 10px 20px;
  font-size: 18px;
  border: 0;
  text-transform: uppercase;
  box-shadow: 10px 10px  20px rgba(0, 0, 0, 0.6);
  clip-path: polygon(
    0% var(--curve-size),
    var(--curve-size) 0,
    100% 0,
    100% calc(100% - var(--curve-size)),
    calc(100% - var(--curve-size)) 100%,
    0 100%
  );
  transition: color 250ms;
}

.button_5::after,
.button_5::before {
  content: "";
  position: absolute;
  inset: 0;
}

.button_5::before {
  background: var(--border-color);
  background-size: 300% 300%;
  animation: move-bg7234 5s ease infinite;
  z-index: -2;
}

@keyframes move-bg7234 {
  0% {
    background-position: 31% 0%;
  }

  50% {
    background-position: 70% 100%;
  }

  100% {
    background-position: 31% 0%;
  }
}

.button_5::after {
  background: var(--bg);
  z-index: -1;
  clip-path: polygon(
    var(--border-width)
      calc(var(--curve-size) + var(--border-width) * 0.5),
    calc(var(--curve-size) + var(--border-width) * 0.5) var(--border-width),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width)),
    var(--border-width) calc(100% - var(--border-width))
  );
  transition: clip-path 500ms;
}

.button_5:where(:hover, :focus)::after {
  clip-path: polygon(
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width)),
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width))
  );
  transition: 200ms;
}

.button_5:where(:hover, :focus) {
  color: #fff;
}

.footer-logos {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-direction: row;
  flex-wrap: wrap;

  a img {
    max-height: 50px;
    width: 100%;
    display: block;
    max-width: none;
    transition: 0.3s linear;
    
    &:hover,
    &:hover{
      transform: scale(0.96);
      opacity: 0.8;
    }
  }
}
.pt-100{
  padding-top: 120px;
}