@import url('https://fonts.googleapis.com/css2?family=Neuton:ital,wght@0,200;0,300;0,400;0,700;0,800;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');

:root{
    --o-1: #ff0052;
    --o-2: #bfff00;
    --o-3: #00fff7;
    --o-4: #26f267;
    --o-5: #ff0000;
    --accent: var(--o-4);
    --h-1: #090d33;
    --h-2: #02120d;
    --h-3: #020509;
    --h-4: #1b0629;
    --h-5: #180303;
    --bg: var(--h-4);
    --g-1: rgba(35, 42, 92, .3);
    --g-2: rgba(35, 92, 73, 0.3);
    --g-3: rgba(22, 51, 78, 0.3);
    --g-4: rgba(79, 35, 92, 0.3);
    --g-5: rgba(92, 35, 35, 0.3);
    --bg-opacity: var(--g-4);
    --k-1: #1d224e;
    --k-2: #1a463c;
    --k-3: #1d354d;
    --k-4: #3b1a4a;
    --k-5: #3f1717;
    --bg-extra: var(--k-4);
    --white: #fff;
    --black: #1d1d1d;
    --transition: 0.5s linear;
}

html {
  scroll-behavior: smooth;
}

*{
  box-sizing: border-box;
}

body{
  box-sizing: border-box;
  font-family: 'Neuton', sans-serif !important;
  font-size: 18px;
  direction: ltr;
  margin: 0;
  padding: 0;
  height: 100%;
  position: relative;
  background-color: var(--bg);
}


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: 70px 0;
  color: var(--white);
}

.wrapper {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

.row-2,
.row-3,
.row-4,
.row-5{
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 19px;
}

.col-30,
.col-70,
.col-2,
.col-3,
.col-4,
.col-5{
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
}

.header{
  background: var(--bg-opacity);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.header-wr{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 11px;
}

.logo{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  img{
    width: 50px;
    height: 50px;
    object-fit: contain;
  }

  h1{
    margin: 0;
    color: var(--white);
    font-family: 'Staatliches', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 32px;
    transition: var(--transition);
  }

  &:hover>h1,
  &:focus>h1{
    color: var(--accent);
  }
}

.body-nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #02050977;
  backdrop-filter: blur(5px);
  z-index: 2;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}

.body-nav.visible{
  opacity: 1;
  visibility: visible;
}

.header-nav{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 3;
  max-width: 800px;
  max-height: 400px;
  width: 90%;
  height: 100%;
  gap: 11px;
  background: var(--bg-opacity);
  backdrop-filter: blur(20px);
  padding:  23px;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}

.header-nav.visible{
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.phone,
.mail,
.menu-item{
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Staatliches', sans-serif;
  font-size: 20px;
  text-align: center;

  a{
    color: var(--white);
    transition: var(--transition);

    &:hover,
    &:focus{
      color: var(--accent);
    }
  }
}

.delimeter{
  width: 40%;
  margin: 0 auto;
  height: 0.5px;
  background-color: #ffffff65;
}

.close-menu{
  color: var(--white);
  cursor: pointer;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  right: 10px;

  svg{
    width: 20px;
    height: 20px;
  }

  &:hover,
  &:focus{
    color: var(--accent);
  }
}

.banner{
  background: url('mediamansion/background/hero.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg);
    opacity: 0.8;
  }

  .wrapper{
    position: relative;
    z-index: 0;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.menu{
  width: 40px;
  height: 40px;
  color: var(--white);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  &:hover,
  &:focus{
    color: var(--accent);
  }

  svg{
    width: 30px;
    height: 30px;
  }
}

.header-title{
  color: var(--white);
  font-weight: 500;
  font-size: 26px;
}

.header-subtitle{
  color: var(--accent);
  font-style: italic;
}

.banner-box{
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.banner-logo{
  font-size: 22px;
  line-height: 1.2;

  h1{
    text-transform: uppercase;
    font-weight: 900;
    color: var(--white);
    margin: 0;
  }
}

.banner-img-wr{
  width: 100%;
  min-height: 350px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scene {
	width: 200px;
	height: 200px;
	transform-style: preserve-3d;
	animation: rotate 20s infinite linear;
}

.cube {
	width: 100%;
	height: 100%;
	position: relative;
	transform-style: preserve-3d;
}

.face {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0.8;
	border: 2px solid var(--accent);
}

.front {
	transform: rotateY(0deg) translateZ(100px);
	background-image: url("mediamansion/background/bg-all-1.webp");
}
.right {
	transform: rotateY(90deg) translateZ(100px);
	background-image: url("mediamansion/background/bg-all-2.webp");
}
.back {
	transform: rotateY(180deg) translateZ(100px);
	background-image: url("mediamansion/background/bg-all-3.webp");
}
.left {
	transform: rotateY(-90deg) translateZ(100px);
	background-image: url("mediamansion/background/bg-all-4.webp");
}
.top {
	transform: rotateX(90deg) translateZ(100px);
	background-image: url("mediamansion/background/bg-all-5.webp");
}
.bottom {
	transform: rotateX(-90deg) translateZ(100px);
	background-image: url("mediamansion/background/bg-all-6.jpg");
}

@keyframes rotate {
	0% {
		transform: rotateX(0) rotateY(0);
	}
	100% {
		transform: rotateX(360deg) rotateY(360deg);
	}
}

.body-shape{
  position: fixed;
  top: -50%;
  left: 0;
  z-index: -1;

  img{
    max-width: 100%;
    height: auto;
  }
}

.benefits{
  position: relative;
  color: var(--white);

  .wrapper{
    position: relative;
    z-index: 1;
  }

  .row-4{
    row-gap: 30px;
  }

  .col-4{
    transition: var(--transition);
  }
  .col-4:hover,
  .col-4:focus{
    transform: translateY(10px);
    box-shadow: 0 3px 20px rgba(0, 0, 0, .4);
  }

  .col-4:hover .ben-box::before,
  .col-4:focus .ben-box::before,
  .col-4:hover .ben-box::after,
  .col-4:hover .ben-box::after{
    bottom: 0;
  }
}

.title{
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Staatliches', sans-serif;
}

.ben-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  gap: 19px;
  background: var(--bg-extra);
  border-radius: 6px;
  height: 100%;
  position: relative;

  &::before{
    position: absolute;
    content: '';
    width: 95%;
    height: 95%;
    border: 1px solid rgba(255, 255, 255, .04);
    bottom: -12px;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
    transition: var(--transition);
    border-radius: 3px;
    background-color: rgba(255, 255, 255, .1);
  }

  &::after{
    position: absolute;
    content: '';
    width: 90%;
    height: 90%;
    border: 1px solid rgba(255, 255, 255, .04);
    bottom: -22px;
    left: 50%;
    z-index: -2;
    transform: translateX(-50%);
    transition: var(--transition);
    border-radius: 3px;
    background-color: rgba(255, 255, 255, .1);
  }
}

.ben-img{
  width: 150px;
  height: 150px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.ben-text{
  text-align: center;
}

.f-none{
  display: flex;
}

.au-box{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.au-video{
  width: 100%;
  height: 400px;

  video{
    width: 100%;
    height: 100%;
    object-fit: cover;
      border-radius: 6px;
  }
}

.game-box{
  width: 100%;
  height: 300px;
  position: relative;

    &::before{
    position: absolute;
    content: '';
    width: 95%;
    height: 95%;
    border: 1px solid rgba(255, 255, 255, .04);
    bottom: -12px;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
    transition: var(--transition);
    border-radius: 3px;
    background-color: rgba(255, 255, 255, .1);
  }

  &::after{
    position: absolute;
    content: '';
    width: 90%;
    height: 90%;
    border: 1px solid rgba(255, 255, 255, .04);
    bottom: -22px;
    left: 50%;
    z-index: -2;
    transform: translateX(-50%);
    transition: var(--transition);
    border-radius: 3px;
    background-color: rgba(255, 255, 255, .1);
  }
  
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
  }
}

.main{
  .row-3{
    row-gap: 30px !important;
  }

  .col-3{
    transition: var(--transition);
  }
  .col-3:hover,
  .col-3:focus{
    transform: translateY(10px);
    box-shadow: 0 3px 20px rgba(0, 0, 0, .4);
  }

  .col-3:hover .game-box::before,
  .col-3:focus .game-box::before,
  .col-3:hover .game-box::after,
  .col-3:hover .game-box::after{
    bottom: 0;
  }
}

.game-title-box{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px;
  background-color: var(--bg-extra);
  transition: var(--transition);
}

.game-title{
  color: var(--bg-white);
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Staatliches', sans-serif;
}

#main1{
  display: block;
}

.game-box-2{
  background-color: var(--bg-extra);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 6px;
  height: 100%;
  justify-content: space-between;
  gap: 11px;
  padding: 19px;
}

.game-img-box{
  width: 100%;
  height: 200px;
  display: inline-block;
  transition: var(--transition);
  position: relative;
  overflow: hidden;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: var(--transition);
  }

  &::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 30%,
      var(--accent),
      rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -130%;
    opacity: 0.4;
    z-index: 1;
  }

  &:hover::before {
    animation: shine 3s ease-out infinite;
  }
  &:hover img{
    transform: scale(1.3) rotate(5deg);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

.game-content2{
  text-align: center;
}

.game-desc{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}

.game-title-desc{
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 22px;
  font-family: 'Staatliches', sans-serif;
  margin-bottom: 0;
}

.liders{
  background-color: var(--bg-extra);
  border-radius: 6px;
  padding: 19px;
}

.liders-item{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: 11px;
}

.liders-score{
  color: var(--accent);
  font-family: 'Staatliches', sans-serif;
  font-size: 26px;
}

.hp{
  background-color: var(--bg-extra);
  border-radius: 6px;
  padding: 19px;
}

.hp-list{
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.hp-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: 11px;
}

.d-column{
  display: flex;
  gap:  19px;
  flex-direction: column
}

.main-row{
  height: 100%;
  justify-content: space-between;
}

.hp-num{
  font-size: 48px;
  font-family: 'Staatliches', sans-serif;
  color: var(--accent);
}

.hp-text{
  text-align: center;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq {
  background-color: transparent;
  border: 1px solid var(--accent);
  border-radius: 10px;
  margin: 20px 0;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  direction: ltr;
}

.faq.active {
  background-color: var(--bg-opacity);
  box-shadow: 0 3px 6px var(--accent), 0 3px 6px var(--accent);
}

.faq.active::before,
.faq.active::after {
  content: "";
  background: url('mediamansion/other/gaming_icons-067348e200df0a.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  opacity: 0.2;
  top: 20px;
  left: 20px;
  z-index: 0;
  width: 120px;
  height: 120px;
}

.faq.active::before {
  top: -10px;
  left: -30px;
  transform: rotateY(180deg);
}

.faq-title {
  margin: 0 35px 0 0;
  cursor: pointer;
}

.faq-text {
  display: none;
  margin: 30px 0 0;
}

.faq.active .faq-text {
  display: block;
}

.faq-toggle {
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 0;
  position: absolute;
  top: 30px;
  right: 30px;
  height: 30px;
  width: 30px;
}

.faq-toggle:focus {
  outline: 0;
}

.faq-toggle .fa-times {
  display: none;
}

.faq.active .faq-toggle .fa-times {
  color: #fff;
  display: block;
  width: 20px;
  height: 20px;
}

.fa-chevron-down{
  color: #fff;
  width: 20px;
  height: 20px;
}

.faq.active .faq-toggle .fa-chevron-down {
  display: none;
  width: 20px;
  height: 20px;
}

.footer{
  background: url('mediamansion/background/bg-all-267348e200da84.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  color: var(--white);

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg);
    opacity: 0.8;
  }

  .wrapper{
    position: relative;
    z-index: 0;
  }
}

.footer-contact-box{
  background-color: var(--bg-opacity);
  border-right: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
  border-top: 1px solid var(--accent);
  padding: 11px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;


  a{
    color: var(--white);
    transition: var(--transition);
    word-break: break-all;
    font-weight: 700;

    &:hover,
    &:focus{
      color: var(--accent);
    }
  }

  .icon{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

    svg{
      width: 100%;
      height: 100%;
    }
  }
}

.fci{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 11px;;
}

.fcr{
  gap: 0 !important;
}

.bi-phone{
  fill: #dadb0d;
}

.bi-envelope-at{
  fill: #6dfd75;
}

.bi-geo-alt{
  fill: #55edf2;
}

.bi-whatsapp{
  fill: #f255cd;
}

.adres{
  text-align: center;
}

.footer-box{
  padding: 30px 0;
}

.form{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.contact-page-form-item{
  width: 100%;
}

.form-page-wr{
  border-radius: 6px;
  background-color: var(--bg-extra);
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-page-form-item > input,
.contact-page-form-item > textarea,
.input-btnitem-part,
.textarea-btnitem-part{
  width: 100%;
  padding: 10px 15px;
  background-color: var(--bg-opacity);
  border: 1px solid var(--accent);
  border-radius: 6px;
  box-sizing: border-box;
  color: var(--white);
}

.footer-form-title{
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 19px;
}

.privacy{
  color: var(--white);
  transition: var(--transition);
  display: inline-block;

  &:hover,
  &:focus{
    color: var(--accent);
  }
}

.footer-form-box{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
  text-align: center;
  background-color: var(--bg);
  padding: 20px;
  border-radius: 6px;
}

.disclaimer-box{
  background-color: var(--bg);
  border: 1px solid var(--accent);
  padding: 20px;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;

  &::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, var(--accent), rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -130%;
    opacity: 0.4;
    z-index: 1;
    animation: shine 3s ease-out infinite;
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

.title-disclaimer{
  color: var(--accent);
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-nav{
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;

  a{
    color: var(--white);
    text-align: center;
    transition: var(--transition);
    display: inline-block;
    font-family: 'Staatliches', sans-serif;

    &:hover,
    &:focus{
      color: var(--accent);
    }
  }
}

.footer-del{
  width: 100%;
  margin: 30px 0;
  height: 1px;
  background-color: var(--accent);
}

.copyright-box{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.disclaimer-img{
  width: 40px;
  height: 40px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.copyright{
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  color: #ffffff87;

  p{
    margin: 0;
  }
}

.team-box{
  background-color: var(--bg-extra);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  padding: 11px;
  transition: var(--transition);
  position: relative;

  &::before{
    position: absolute;
    content: '';
    width: 95%;
    height: 95%;
    border: 1px solid rgba(255, 255, 255, .04);
    bottom: -12px;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
    transition: var(--transition);
    border-radius: 3px;
    background-color: rgba(255, 255, 255, .1);
  }

  &::after{
    position: absolute;
    content: '';
    width: 90%;
    height: 90%;
    border: 1px solid rgba(255, 255, 255, .04);
    bottom: -22px;
    left: 50%;
    z-index: -2;
    transform: translateX(-50%);
    transition: var(--transition);
    border-radius: 3px;
    background-color: rgba(255, 255, 255, .1);
  }
}

.team{
  .row-5{
    row-gap: 30px;
  }

  .col-5{
    transition: var(--transition);
  }
  .col-5:hover,
  .col-5:focus{
    transform: translateY(10px);
    box-shadow: 0 3px 20px rgba(0, 0, 0, .4);
  }

  .col-5:hover .team-box::before,
  .col-5:focus .team-box::before,
  .col-5:hover .team-box::after,
  .col-5:hover .team-box::after{
    bottom: 0;
  }
}

.team-img{
  width: 100%;
  height: 200px;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.team-name{
  text-align: center;
  color: var(--accent);
}

.team-prof{
  text-align: center;
}

.au-video-page{
  margin: 30px 0;
  height: 600px !important;
}

.page-img{
  width: 100%;
  height: auto;
  margin: 0 auto;
  background-color: var(--bg-extra);
  border-radius: 6px;
  border: 1px solid var(--accent);
  padding: 15px;
  margin-bottom: 19px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.box-iframe{
  width: 100%;
  height: 400px;
  margin: 30px 0;

  iframe{
    border-radius: 6px;
    border: 1px solid var(--accent);
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.contact-page-item{
  background-color: var(--bg-extra);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap:  11px;
  padding:  19px;
  height: 100%;
  transition: var(--transition);
  position: relative;

  &::before{
    position: absolute;
    content: '';
    width: 95%;
    height: 95%;
    border: 1px solid rgba(255, 255, 255, .04);
    bottom: -12px;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
    transition: var(--transition);
    border-radius: 3px;
    background-color: rgba(255, 255, 255, .1);
  }

  &::after{
    position: absolute;
    content: '';
    width: 90%;
    height: 90%;
    border: 1px solid rgba(255, 255, 255, .04);
    bottom: -22px;
    left: 50%;
    z-index: -2;
    transform: translateX(-50%);
    transition: var(--transition);
    border-radius: 3px;
    background-color: rgba(255, 255, 255, .1);
  }

  a{
    color: var(--white);
    transition: var(--transition);
    word-break: break-all;
    display: inline-block;

    &:hover,
    &:focus{
      color: var(--accent);
    }
  }
}

.contact-module{
  .row-4{
    row-gap: 30px;
  }

  .col-4{
    transition: var(--transition);
  }
  .col-4:hover,
  .col-4:focus{
    transform: translateY(10px);
    box-shadow: 0 3px 20px rgba(0, 0, 0, .4);
  }

  .col-4:hover .contact-page-item::before,
  .col-4:focus .contact-page-item::before,
  .col-4:hover .contact-page-item::after,
  .col-4:hover .contact-page-item::after{
    bottom: 0;
  }
}

.cpi-icon{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;

  svg{
    width: 100%;
    height: 100%;
  }
}

.map{
  width: 100%;
  height: 400px;
  margin: 30px 0 30px;

  iframe{
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent);
    border-radius: 6px;
    overflow: hidden;
    object-fit: cover;
  }
}

.privacy-box{
  overflow: hidden;
  word-break: break-word;
}

@media (min-width: 480px){
  .header-wr{
    flex-direction: row;
  }

  .logo{
    flex-direction: row;
  }

  .banner-logo{
    font-size: 26px;
    line-height: 1.3;
  }

  .banner{
    .wrapper{
      padding-top: 70px;
      padding-bottom: 70px;
    }
  }
}

@media (min-width: 576px) {
  .wrapper {
    max-width: 540px;
  }

  .row-5{
    flex-direction: row-reverse;
  }

  .col-5{
    width: calc(50% - 19px);
  }

  .page-img{
    height: 300px;
  }
}

@media (max-width: 767px){
  .fcr{
    flex-direction: column !important;
  }
}

@media (min-width: 768px){
  .wrapper {
    max-width: 720px;
  }

  .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);
  }

  .banner{
    .wrapper{
      padding-top: 100px;
      padding-bottom: 100px;
    }
  }

  .title{
    font-size: 26px;
  }

  .main{
    .row-3{
      row-gap: 30px;
    }

    .col-3:hover .game-title-box,
    .col-3:focus .game-title-box{
      opacity: 1;
      transform: scale(1);
    }
  }

  .game-title-box{
      opacity: 0;
      transform: scale(0);
    }

    .d-column{
      flex-direction: row-reverse;
    }

    .page-img{
      height: 350px;
    }

    .header{
      position: fixed;
    }
  }

  @media (max-width: 991px){
    .fcr{
      .col-3:nth-child(1) .footer-contact-box,
      .col-3:nth-child(2) .footer-contact-box{
        border-bottom: none;
      }
    }
  }

@media (min-width: 992px){
  .wrapper {
    max-width: 960px;
  }

  .col-3{
    width: calc(33.333% - 19px);
  }

  .col-4{
    width: calc(25% - 19px);
  }
  .col-5{
    width: calc(20% - 19px);
  }

  .col-70{
    width: calc(70% - 19px);
  }

  .col-30{
    width: calc(30% - 19px);
  }

  .banner{
    .wrapper{
      padding-top: 150px;
      padding-bottom: 150px;
    }
  }

  #main1{
    .col-3{
      --w-1: calc(33.333% - 19px);
      --w-2: calc(50% - 19px);
      width: var(--w-2);
    }
  }

  .d-column{
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
  }

  .page-img{
    height: 400px;
  }

  .liders{
    height: 100%;
  }
}

@media (max-width: 1199px){
  
}

@media (min-width: 1200px){
  .wrapper {
    max-width: 1300px;
  }

  .banner-logo{
    font-size: 40px;
    line-height: 1.3;
  }

  .scene {
    width: 300px;
    height: 300px;
  }

  .front {
    transform: rotateY(0deg) translateZ(150px);
  }
  .right {
    transform: rotateY(90deg) translateZ(150px);
  }
  .back {
    transform: rotateY(180deg) translateZ(150px);
  }
  .left {
    transform: rotateY(-90deg) translateZ(150px);
  }
  .top {
    transform: rotateX(90deg) translateZ(150px);
  }
  .bottom {
    transform: rotateX(-90deg) translateZ(150px);
  }

  .title{
    font-size: 32px;
  }

  .page-img{
    height: 450px;
  }
}

.button-1{
  font-size: 1.125rem;
  color: var(--accent);
  font-weight: 700;
  transition: .3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  padding: 10px 20px;
  border-radius: 3px;
  position: relative;
  display: inline-block;

  &::before{
    background-color: #fff;
    z-index: 1;
    box-shadow: .2rem .2rem .5rem rgba(0, 0, 0, .2);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transition: .3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
    height: 100%;
    width: 100%;
    border-radius: 4px;
  }

  &::after{
    background-color: var(--accent);
    transform: translate(4px, 4px);
    z-index: 0;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transition: .3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
    height: 100%;
    width: 100%;
    border-radius: 4px;
  }

  span{
    position: inherit;
    z-index: 2;
  }

  &:hover,
  &:focus{
    transform: translate(4px, 4px);
    color: #fff;
  }

  &:hover::before{
    background-color: var(--accent);
  }

  &:hover::after{
    background-color: #fff;
  }
}


.button-2 {
  border: none;
  color: #fff;
  background-image: linear-gradient(30deg, var(--accent), var(--bg));
  border-radius: 20px;
  background-size: 100% auto;
  font-family: inherit;
  font-size: 17px;
  padding: 0.6em 1.5em;
  display: inline-block;
  padding: 17px;

  &:hover,
  &:focus {
    background-position: right center;
    background-size: 200% auto;
    -webkit-animation: pulse 2s infinite;
    animation: pulse512 1.5s infinite;
  }
}

@keyframes pulse512 {
 0% {
  box-shadow: 0 0 0 0 #fff;
 }

 70% {
  box-shadow: 0 0 0 10px rgb(218 103 68 / 0%);
 }

 100% {
  box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
 }
}

.button-3 {
  border: 3px solid var(--accent);
  border-radius: 45px;
  transition: all 0.3s;
  cursor: pointer;
  background: white;
  font-size: 18px;
  font-weight: 550;
  display: inline-block;
  padding: 12px 20px;
  text-align: center;
  color: var(--bg-extra);
  
  &:hover,
  &:focus {
    background: var(--accent);
    color: white;
    font-size: 22px;
  }
}


.button-4 {
  background: #333;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Consolas, Courier New, monospace;
  border: solid #404c5d 1px;
  font-size: 16px;
  color: rgb(161, 161, 161);
  -webkit-transition: 500ms;
  transition: 500ms;
  border-radius: 5px;
  background: linear-gradient(145deg, #2e2d2d, #212121);
  -webkit-box-shadow: -1px -5px 15px #41465b, 5px 5px 15px #41465b,
    inset 5px 5px 10px #212121, inset -5px -5px 10px #212121;
  box-shadow: -1px -5px 15px #41465b, 5px 5px 15px #41465b,
    inset 5px 5px 10px #212121, inset -5px -5px 10px #212121;
    display: inline-block;
    padding: 17px;
    text-align: center;
}

.button-4:hover {
  -webkit-box-shadow: 1px 1px 13px #20232e, -1px -1px 13px #545b78;
  box-shadow: 1px 1px 13px #20232e, -1px -1px 13px #545b78;
  color: #d6d6d6;
  -webkit-transition: 500ms;
  transition: 500ms;
}


.button-5 {
  display: inline-flex;
  padding: 10px 20px;
  cursor: pointer;
  gap: 0.4rem;
  font-weight: bold;
  border-radius: 10px;
  text-shadow: 2px 2px 3px rgba(136, 0, 0, 0.5);
  background: linear-gradient(15deg, #880088, #aa2068, #cc3f47, #de6f3d, #f09f33, #de6f3d, #cc3f47, #aa2068, #880088) no-repeat;
  background-size: 300%;
  color: #fff;
  border: none;
  background-position: left center;
  box-shadow: 0 30px 10px -20px rgba(0,0,0,.2);
  transition: background .3s ease;
  
  &:hover {
    background-size: 320%;
    background-position: right center;
  }
}
