@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
--az-1:#F2A35E;
--az-2:#BF5D24;
--az-3:#D99066;
--az-4:#F2C1AE;
--az-5:#BF9C99;

 --decor-1:#2A3E59;
 --decor-2:#548c62;
 --decor-3:#F2D98D;
 --decor-4:#026273;
 --decor-5:#a004bf;
 --decor-gradient-1: linear-gradient(135deg, rgba(42, 62, 89, 0.7), rgba(242, 217, 141, 0.7));

 --decor-gradient-2: linear-gradient(45deg, rgba(2, 98, 115, 0.5), rgba(160, 4, 191, 0.7));
 
 --decor-gradient-3: linear-gradient(90deg, rgba(191, 93, 36, 0.5), rgba(242, 161, 174, 0.5));
 --decor-gradient-4: linear-gradient(225deg, rgba(160, 4, 191, 0.7), rgba(42, 62, 89, 0.7));
 --decor-gradient-5: linear-gradient(315deg, rgba(242, 217, 141, 0.8), rgba(2, 98, 115, 0.5));


--sec-padd:49px 0px;
--border-r:20px;
  --white:white;
  --black:black;
  --gap-25-30: 27px;
  --gap-30-40:33px;

}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
  
}


ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

body{
  overflow-x: hidden;
  line-height:1.5;
  background:var(--az-2);
  direction: ltr;
  font-family: 'Poppins', sans-serif !important;
  font-size: 18px;
  margin: 0;
  padding: 0px;
}
ul,li{
  padding: 0px;
  margin: 0px;
  list-style: none;
}
p,li{
  padding: 10px 0px;
}
a{text-decoration: none;
  transition: all 0.3s ease;
}

img{
  width: 100%;
  display: block;
}

.az-cont{
  position: relative;
  width: 100%; 
  max-width:1282px; 
  margin: 0 auto;
  padding: 0 17px;
  box-sizing: border-box;
  
}
.box-title-mrt{
  text-align: center;
  margin: 20px auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap:10px;
}
.box-title-mrt img{
  width:50%;
  height: 100%;
  object-fit: contain;
}
.title-mrt {
  font-size:clamp(19px,4vw,46px);
  color: var(--white); 
  text-align: center; 
  font-weight:500; 
}


.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding:  12px 19px;
  background-color: var(--az-2);
  color: white;
}
@media (max-width:991px) {
  .navbar{
    justify-content: space-between;
  }
}
.thumb-logo-main-mrt{
  width: 160px;
  display: flex;
  justify-content: center;
}
@media (max-width:991px) {
  .thumb-logo-main-mrt{
    display: none;
  }
}
.mob-logo-mrt{
  width: auto;
  object-fit: contain;
  height: 62px;
}
@media (min-width:992px) {
  .mob-logo-mrt{
    display: none;
  }
}
.mob-logo-mrt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb-logo-mrt{
  clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 50% 100%, 0 75%);  
  background-color: var(--decor-2);
  position: absolute;
  top: 0;
  height: 145px;
  width: 160px;
  z-index: 2;
}
.link-logo-mrt{
  display: flex;
  justify-content: center;
}
.logo-site-mrt{
  top: 5px;
  display: flex;
  position: absolute;
  width: 75px;
  height: 100px;
  z-index: 2;

}
.logo-site-mrt img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav-list {
  list-style: none;
  display: flex;
}

.nav-list li {
  margin: 0  12px;
}

.nav-list a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  position: relative;
}
.nav-list a::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: var(--decor-2);
  left: 0;
  bottom: 0%;
  transform: scaleX(0) rotate(45deg);;
  transform-origin: center;
  transition: transform 0.3s ease-in-out; 
}
.nav-list a:hover{
  color: var(--decor-2);
}
.nav-list a:hover::after {
  transform: scaleX(1) rotate(0deg);;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 25px;
  background-color: white;
  margin: 4px 0;
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .menu-toggle {
      display: flex;
  }

  .nav-list {
      display: flex;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 115px;
      left: 0;
      background: var(--az-2);
      transform: translateY(-100%);
      opacity: 0;
      transition: transform 0.5s ease, opacity 0.5s ease;
      visibility: hidden;
  }

  .nav-list.active {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
  }

  .nav-list li {
      margin: 19px 0;
      text-align: center;
  }
}


.az-sec-hero{

  position: relative;
  width: 100vw; 
  min-height: 602px;
  background: url('picgallery/back/bg-dark-068a499314f9d7.jpg') no-repeat center center;
  background-size: cover; 
  overflow: hidden; 
}
.az-sec-hero::before {
  content: ''; 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.thumb-hero-mrt{
  padding: 124px 0px;
  position: relative;
  z-index: 1;
}
.title-hero-mrt{
  text-align: center;
  font-size: clamp(21px,4vw,31px);
  font-weight: 900;
  color: var(--white);
  opacity: 0;
  animation: fadeIn 1s forwards;
}
.text-1 {
  animation-delay: 0s; 
}
.text-2 {
  animation-delay: 1s; 
}
.thumb-site-name-mrt h1{
  opacity: 0;
  animation: fadeIn 1s forwards;
  text-align: center;
  font-size: clamp(23px,4vw,65px);
  font-weight: 900;
  color: transparent;
      -webkit-text-stroke: 1px var(--white);
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.gallery-mrt {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap:var(--gap-25-30);
    justify-content: center;
    padding: 27px 0px;
}

.gallery-item-mrt {
  width: 100px;
  height: 209px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0;
  border-radius: var(--border-r);
  transform: translateY(20px) ;
  animation:fadeIn 1s forwards;
  transition: transform 0.3s ease;
}


.gallery-item-mrt:nth-child(1) {
  animation-delay: 0.5s;
}
.gallery-item-mrt:nth-child(2) {
  animation-delay: 1s;
}
.gallery-item-mrt:nth-child(3) {
  animation-delay: 1.5s;
}
.gallery-item-mrt:nth-child(4) {
  animation-delay: 2s;
}
@keyframes fadeIn {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
@media (min-width:1024px) {
  .gallery-item-mrt {
    width: calc(25% - 30px);
}}
@media (min-width:768px) and (max-width:1023px) {
  .gallery-item-mrt {
    width: calc(50% - 30px);
}}
.gallery-item-mrt:hover {
  transform: scale(1.1);
}

.modal-mrt {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content-mrt {
  max-width: 60%;
  max-height:60%;
  object-fit: cover;
}

.close-mrt {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size:  27px;
  cursor: pointer;
}

.az-sec-step{
  padding: var(--sec-padd);
  background: var(--az-2);
}
.thumb-step-mrt{
  display: flex;
  gap: var(--gap-30-40);
  align-items: center;
  flex-direction: row-reverse;
}
@media (max-width:900px) {
  .thumb-step-mrt{
    flex-direction: column;
  }
}
.title-steps-thumb-mrt{
  margin-bottom: -55px;
  position: relative;
  z-index: 1;
}
@media (min-width:1024px) {
  .title-steps-thumb-mrt{
    margin-bottom: -120px;
  }
}
.box-step-mrt {
  flex: 1;
}
.box-step-img-mrt {
  height:420px;
  position: relative;
}
.box-step-img-mrt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: var(--border-r);
  z-index: 0;}
.box-step-img-mrt img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-r);
}
.thumb-steps-txt-mrt {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.box-steps-txt-mrt {
  display: flex;
  gap:  12px;
}
.num-txt-steps-mrt{
  font-weight:900;
  color: var(--decor-2);
  font-size: clamp(18px,4vw,31px);
}
.txt-steps-mrt{
  font-size: clamp(16px,4vw,19px);
  color: var(--white);
}

.az-section-about {
  padding: var(--sec-padd);
  background: var(--az-2);

}

.thumb-about-mrt {
  direction: initial;
  display: flex;
  gap: var(--gap-25-30);
  flex-direction: row-reverse;

}
@media (max-width:991px) {
  .thumb-about-mrt{
    flex-direction: column-reverse;
  }
}
.box-about-mrt {
  flex:1;
  position: relative;
  padding-top:  36px;
}
.box-about-img-1-mrt {
  width: 65%;
  height: 550px;
  position: relative;
  top: -35px;
  left: 0;
}
.box-about-img-2-mrt {
  width: 45%;
  height: 420px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.box-about-img-3-mrt {
  width: 30%;
  height: 226px;
  position: absolute;
  bottom: 0;
  left: 30px;
}
.img-about-mrt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-r);
}
.txt-about-mrt{
  color: var(--white);
  font-size: clamp(18px,4vw,21px);
  font-weight: 500;
}
.btn-aboutus-mrt{
  display: flex;
  justify-content: center;
  margin: 19px 0px;
}

.az-sec-games1{
  padding: var(--sec-padd);
  background: var(--az-2);
}
.thumb-games1-mrt{
  display: flex;
  gap: var(--gap-30-40);
  flex-wrap: wrap;
  justify-content: center;
}
.box-img-games1-mrt::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.box-games1-mrt {

  padding: 12px;
  border: 1px dotted var(--decor-2);
}
.box-img-games1-mrt{
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 420px;
}
@media (min-width:768px) {
  .box-games1-mrt {
    width: calc(50% - 40px);
  }
}

.box-img-games1-mrt img{
  position: absolute;
  top:0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  object-fit: cover;
  height: 100%;
  transition: transform 0.3s ease;
}
.thumb-txt-games1-mrt{
  padding:  14px;
  height: 362px;
  position: relative;
  display: flex;
  z-index: 1  ;
  flex-direction: column;
}
.box-txt-games1-mrt{
  flex: 1 ;
}
.box-btn-mrt-games1{
  margin: 20px 0px;
  display: flex;
  justify-content: center;
}
.title-games1-mrt{
transition: all 0.3s ease;
  color: var(--white);
}
.box-games1-mrt .title-games1-mrt:hover{
color: var(--az-2);
}
.box-games1-mrt .title-games1-mrt:hover ~ .box-img-games1-mrt img {
  transform: scale(1.1);
}
.txt-games1-mrt {
  padding: 0;
  color: var(--white);
  display: -webkit-box; 
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; 
  overflow: hidden; 
  text-overflow: ellipsis; 
}

.az-sec-games2{
  padding: var(--sec-padd);
  background: var(--az-2);

}
.thumb-games2-mrt {
  display: flex;
  gap: var(--gap-25-30);
  flex-direction: column;
 
}
.box-games2-mrt {
  background-color: transparent;
  background-image: linear-gradient(135deg, var(--decor-2) 97%, #FFFFFF00 0%);
  display: flex;

  gap: 12px;
  padding: 12px;
}
@media (max-width:767px) {
  .box-games2-mrt{
    flex-direction: column;
  }
}
@media (min-width:768px) {
  .box-games2-mrt{
    min-height: 120px;
    max-height: 170px;
  }
}
.img-play-games2-mrt {
width: 10%;
padding: 12px;
}
@media (max-width:767px) {
  .img-play-games2-mrt {
    width: 20%;}
}
.img-play-games2-mrt svg{
  height: 100%;
    width: 100%;
    fill: var(--az-2);
}
.img-pic-games2-mrt {
  
  width: 35%;
  padding: 12px;
}
@media (max-width:767px) {
 .img-pic-games2-mrt{
  width: 100%;
  height: 255px;
 } 
}
.img-pic-games2-mrt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.box-txt-games2-mrt{
  margin:  20px  12px;
  border-left:  1px solid var(--az-2);
  border-right:  1px solid var(--az-2);
}
@media (min-width:768px) {
  .box-txt-games2-mrt{
    width: 40%;
    margin: 0;
    padding:  12px;
  
  }
}
.link-title-games2-mrt{
  color: var(--white);
  transition: all 0.3s ease;
}
.title-games2-mrt{
  text-align: center;
  font-size: clamp(18px,3vw,25px);

}
@media (max-width:575px) {
  .title-games2-mrt{
    padding: 0px  12px;}
}
.link-title-games2-mrt:hover{
  color: var(--az-2);
}

.txt-games2-mrt{
  padding: 0;
  color: var(--white);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width:1023px) {
  .txt-games2-mrt{
    display: none;
  }
}
.box-link-svg-games2-mrt{
  display: flex;
  justify-content: center;
  align-items: center;
  padding:  12px;
  width: 15%;
}
@media (max-width:767px) {
  .box-link-svg-games2-mrt{
    display: none;
  }
}
.box-svg-games2-mrt {
 
  transition: transform 0.3s ease;
  cursor: pointer;

}
.arrow {
  fill: var(--az-2);
  transition: transform 0.3s ease;
}


.box-link-svg-games2-mrt:hover .arrow {
  transform: translateX(10px);
}

.az-sec-faq{
  padding: var(--sec-padd);
}
.thumb-faq-mrt{
  display: flex;
  gap: var(--gap-30-40);
  align-items: center;
  flex-direction: row-reverse;

}
.box-faq-mrt{
  flex: 1;
}
@media (max-width:991px) {
  .img-box-faq-mrt{
    display: none;
  }
}

.card-box-faq-mrt{
  display: flex;
  flex-direction: column;
  gap: var(--gap-30-40);
  align-items: center;
}
.img-faq-mrt img{
  height: 100%;
  width: 100%;
  object-fit: cover;

}
.flip-card-mrt {
  background-color: transparent;
  
  perspective: 1000px;
  font-family: sans-serif;
}
@media (min-width:992px) {
  .flip-card-mrt {
    width: 600px;
    height: 254px;}
}
.title-faq-mrt {
  font-size: clamp(16px ,4vw,26px);
  font-weight:900;
  text-align: center;
  margin: 0;
  padding: 0  17px;
}
.title-faq-mrt-back {
  font-size: clamp(14px ,4vw,21px);
  font-weight:  500;
  text-align: center;
  margin: 0;
  padding: 0  17px;
}

.flip-card-inner-mrt {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
@media (max-width:991px) {
  .flip-card-inner-mrt{
    display: flex;
    flex-direction: column;
    gap:  12px;
  }
}
@media (min-width:992px) {
  .flip-card-mrt:hover .flip-card-inner-mrt {
    transform: rotateY(180deg);
  }
}

.flip-card-front-mrt, .flip-card-back-mrt {
  box-shadow: 0 8px 14px 0 rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 1px solid var(--decor-2);
  border-radius: 12px;
}
@media (min-width:992px) {
  .flip-card-front-mrt, .flip-card-back-mrt {
    position: absolute;}
}
.flip-card-front-mrt {
  background: linear-gradient(120deg, bisque 60%, rgb(255, 231, 222) 88%, 
    rgb(255, 211, 195) 40%, var(--decor-2) 48%);
  color: black;
}

.flip-card-back-mrt {
  background: linear-gradient(120deg, rgb(255, 174, 145) 30%, var(--decor-2) 88%, 
    var(--az-2) 40%, rgb(255, 185, 160) 78%);
  color: white;
}
@media (min-width:992px) {
  .flip-card-back-mrt {
    transform: rotateY(180deg);}
}

.faz-sec-form{
  position: relative;
  padding: var(--sec-padd);
  background: url('picgallery/back/bg-dark-068a499314f9d7.jpg') no-repeat center center;
  background-size: cover; 
  overflow: hidden;
}
.faz-sec-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--decor-gradient-2); 
  z-index: 1; 
}
.forms-width-mrt{
  display: flex;
  flex-direction: column;
  gap:  12px;
}
.main_form label{
  color: var(--white);
  font-size: clamp(16px,4vw,18px);
  font-weight: 500;
}

.input-btn_containercontrol{
  min-height:40px;
 
  outline: none;
border-radius: 0px;
height:40px;
padding: 0 27px 0 24px;
padding-right: 36px;
border: 1px dotted #E0E0E0;
color: #666666;
background-color: #fff;

font-size: 14px;
width: 100%;
}
.textarea-btn_containercontrol{
  min-height:40px;
 
  outline: none;
    border-radius: 0px;;
height:40px;
padding: 0 27px 0 24px;
padding-right: 36px;
border: 1px dotted #E0E0E0;
color: #666666;
background-color: #fff;

font-size: 14px;
width: 100%;}
.input-btn_containercontrol:focus{
  border: 1px  dotted var(--decor-2);

}
.textarea-btn_containercontrol:focus{
  border: 1px  dotted var(--decor-2);

}
.btn-form-mrt{
  display: flex;
  justify-content: center;
  margin: 27px 0px;
}

.az-sec-footer {
  padding: var(--sec-padd);
  background-color: var(--decor-2);
}

.thumb-footer-mrt {
  display: flex;
  gap: var(--gap-25-30);
  flex-direction: row-reverse;
}
@media (max-width:767px) {
  .thumb-footer-mrt {
    align-items: center;
    flex-direction: column-reverse;
}}
.flex-link-politik-mrt {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-mrt {

  color: var(--white);
}
.footer-links-mrt:hover{
  color: var(--az-2);
}
.thumb-block-discl-mrt {
  flex: 2;
  padding:17px;
  background: linear-gradient(120deg, bisque 60%, rgb(255, 231, 222) 88%, 
  rgb(255, 211, 195) 40%, var(--az-2) 48%);
  
}
.title-discl-mrt{
  text-align: center;
  animation: tilt 2s infinite alternate;
}
@keyframes tilt {
  0% {
      transform: skew(10deg) scale(1);
  }
  50% {
      transform: skew(-10deg) scale(1.1); 
  }
  100% {
      transform: skew(10deg) scale(1); 
  }
}
.box-discl-mrt{
  display: flex;
  align-items: center;
}
.txt-diclaimer-mrt {
  color: var(--black);
  font-size: clamp(16px,4vw,24px);
  font-weight:500;
  text-align: center;
  animation: textShadowAnimation 3s infinite;
}
@keyframes textShadowAnimation {
  0% {
    text-shadow: 2px 2px 5px var(--decor-2);
  }
  50% {
    text-shadow: 4px 4px 10px var(--decor-2);
  }
  100% {
    text-shadow: 2px 2px 5px var(--decor-2);
  }
}
.box-img-disclaimer-mrt {
  display: flex;
  justify-content: space-between;
  margin: 27px 0px;
  flex-direction: row-reverse;
  align-items: center;
}
.img-18-mrt {
  width: 75px;
}
.img-18-mrt img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.copy-title-mrt {
  font-size: clamp(16px,4vw,23px);
  color: var(--white);
}

.az-sec-contact{
  padding: var(--sec-padd);
}

.link-contacts-mrt{
  color: var(--white);
  transition: all 0.3s ease;
  font-size: clamp(14px,4vw,16px);
  
}
.txt-address-mrt{
  color: var(--white);
  font-size: clamp(14px,4vw,16px);
}
.link-contacts-mrt:hover{
  color: var(--decor-2);

}

.contact-info-mrt {
  display: flex;
  flex-wrap: wrap;
  gap:var(--gap-25-30);
  justify-content: space-around;
}

.info-item-mrt {
  margin: 12px 0px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-mrt svg{
  width: 40px;
  height: 40px;
  fill: var(--decor-2);
  margin-right: 12px;
}

.info-item-mrt h3 {
  color:var(--white);
  font-size:clamp(16px,4vw,20px);
  margin-bottom: 10px;
}
.left-section-mrt{
  margin: : 25px 0px;
}
.right-section-mrt {

  background-color: #1e1e1e;
  padding:  12px;
  border-radius:  12px;
}
@media (min-width:575px) {
  .right-section-mrt {

    padding: 38px;}
}



form {
  display: grid;
  gap: 17px;
}

.input-contacts-mrt {
  width: 100%;
  padding: 12px;
  background-color: #2b2b2b;
  border: 1px solid #444;
  border-radius: 0px;
  color: var(--az-2);
}
.input-contacts-mrt::placeholder{
  font-size: clamp( 14px,4vw,16px);
}
.box-privacy-cont-mrt{
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-color-mrt{
  font-size: clamp( 14px,4vw,18px);

  color: var(--white);
}
.checingcoda{
  color: var(--white);
}
.checingcoda:hover{
 
  color: var(--az-2)
}

.thumb-team-mrt{
  display: flex;
  gap: var(--gap-25-30);
  flex-wrap: wrap;
  justify-content: center;
}
.box-team-mrt{
  border-radius: var(--border-r);
  width: 100%;
}
@media (min-width:768px) and (max-width:1023px) {
  .box-team-mrt{
    width: calc(50% - 30px);
  }
}
@media (min-width:1024px) {
  .box-team-mrt{
    width: calc(33.33% - 30px);
  }
}


.our-team {
  padding: 25px 0 38px;
  margin-bottom: 25px;
 border-radius: var(--border-r);
  background-color: var(--decor-2);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.our-team .picture {
  display: inline-block;
  height: 99px;
  width: 99px;
  margin-bottom: 40px;
  z-index: 1;
  position: relative;
}

.our-team .picture::before {
  content: "";
  width: 100%;
  height: 0;
  border-radius:0%;
  background: var(--az-2);
  position: absolute;
  bottom: 135%;
  right: 0;
  left: 0;
  opacity: 0.9;
  transform: scale(3);
  transition: all 0.3s linear 0s;
}

.our-team:hover .picture::before {
  height: 100%;
}

.our-team .picture::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 0%;
  background: var(--az-2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.our-team .picture img {
  width: 100%;
  height: 100%;
  border-radius:0%;
  transform: scale(1);
  transition: all 0.9s ease 0s;
}

.our-team:hover .picture img {
  box-shadow: 0 0 0 14px #f7f5ec;
  transform: scale(0.7);
}
.name{
  color: var(--white);
}

.section-main-page-mrt {
padding: var(--sec-padd);
}

.main-igri {
  padding: 20px;
  background: linear-gradient(120deg, bisque 60%, rgb(255, 231, 222) 88%, 
  rgb(255, 211, 195) 40%, var(--decor-2) 48%);
}
@media (max-width:575px) {
  .main-igri {
    padding:  12px;
}}
.thumb-img-main-mrt {
  display: flex;
    justify-content: center;

}
.main-page-mrt {

  object-fit: contain;
}
@media (min-width:576px) {
  .main-page-mrt {
    height: 349px;
    object-fit: contain;
  }
}
.section-page-frame {
  margin-bottom:  40px;
}
.privacy-section-mrt {
  padding: var(--sec-padd);
}
.privacy-mrt {
  word-break: break-all;
  color: var(--white);
}
.content-color{
  color: #000;
}
.privacy-mrt h1{
  font-size: clamp(21px,4vw,30px);
}
.privacy-mrt h2{
  font-size: clamp(18px,4vw,24px);
}

.privacy-mrt h3{
  font-size: clamp(17px,4vw,22px);
}
.privacy-mrt ul li,
.privacy-mrt ol li {
  margin-bottom: 4px;
}
.privacy-mrt ul,
.privacy-mrt ol {
  margin-bottom: 12px;
  padding-left:  19px;
  list-style: inside;
}
.privacy-mrt a,.privacy-mrt table{
color: inherit;
}
.privacy-mrt p{
margin-bottom:  10px;
text-indent: 3ch;
}
.flex-colRev{
  display: flex;
  gap: 40px;
  flex-direction: column-reverse;
}

.thumb-contacts-mrt {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
}
.mrt-btn-1{
  border: 1px solid var(--decor-2);
  background-color: var(--decor-2);
  color: var(--white);
  text-align: center;
  text-transform: none;
  border-radius:  12px;
  justify-content: center;
  padding: 18px  20px;
  line-height: 1em;
  transition: all .3s;
  display: flex;
  cursor:pointer;
}
.mrt-btn-1:hover{
background-color: var(--white);
color: var(--decor-2);
}
.mrt-btn-2 {
  display: inline-block;
  padding:  12px  20px;
  font-size: 18px;
  font-weight:  500;
  color: var(--white);
  border: 1px solid var(--decor-2);
  border-radius:10px;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  font-family: inherit;
 }
 
 .mrt-btn-2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color:var(--decor-2);
  transform: translateX(-100%);
  transition: all .3s;
  z-index: -1;
 }
 
 .mrt-btn-2:hover::before {
  transform: translateX(0);
 }
 .mrt-btn-3 {
	
  color: #fff;
  cursor: pointer;
  border: 1px solid  var(--decor-2);
  border-radius:1px;
  padding: 12px 23px;
  background: var(--decor-2);
  transition: 0.2s;
}

.mrt-btn-3:hover {
  color: var(--white);
  transform: translate(-0.25rem, -0.25rem);
  background: var(--az-2);
  box-shadow: 0.25rem 0.25rem var(--az-2);
}

.mrt-btn-3:active {
  transform: translate(0);
  box-shadow: none;
}

.mrt-btn-4 {
  cursor: pointer;
  border-radius: 0px;
  padding: 12px 20px 12px;
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  background-color: transparent;
  display: inline-block;
  border:  1px solid var(--decor-2);
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.mrt-btn-4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.mrt-btn-4:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: var(--decor-2);
  transition: all 0.6s;
  z-index: -1;
}
.mrt-btn-4:hover {
  color: var(--white);
}
.mrt-btn-4:hover:before {
  bottom: 0;
  left: 0;
}
.mrt-btn-5 {
  display: flex;
  text-align: center;
 padding: 17px 23px;
  border-radius: 49px;
  background-image: linear-gradient(135deg, var(--az-2) 0%, var(--decor-2) 100%);
  box-shadow: 0 26px 30px -6px rgba(238, 103, 97, 0.5);
  outline: none;
  cursor: pointer;
  border: none;
  font-size: 18px;
  color: var(--white);
  justify-content: center;
}

.mrt-btn-5:hover {
  transform: translateY(3px);
  box-shadow: none;
}

.mrt-btn-5:active {
  opacity: 0.5;
}


#g1{
  display: none;
}


.game-main-mrt iframe{
  width: 100%;
  height: 100vh;
}

.pt-100{
  padding-top: 100px;
}

.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;
    }
  }
}