@import url('https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

html{
    scroll-behavior: smooth;
}

body{
    direction: ltr;
    font-family: 'Yantramanav', sans-serif !important;
    font-size: 16px;
    margin: 0;
    padding: 0px;
}

body.no-scroll {
  overflow: hidden;
}

a {
    text-decoration: none;
    cursor: pointer;
}
  
img {
    width: 100%;
}

.header-lay{
    padding-top: 20px;
    position: relative;
    width: 100%;
    background-position: center;
    background-size: cover;
}
  
.header-lay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(galleryarchive/background/bg-dark-0685185f118a0d.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    z-index: -1;
}

.header{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 5px;    
    background-color: rgba(255,255,255,0.8);
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 29px;
}

.TyuLogo{
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 21px;
  }
  
  .TyuLogoImg img{
    object-fit: contain;
    max-width: 45px;
    max-height: 45px;
  }
  
  .TyuLogo a{
    color: #000; 
    display: flex; 
    align-items: center; 
    gap: 20px;
  }

  .TyuLogoTitle h2{
    transition: color 0.3s ease;
    font-size: 17px;
    margin: 0;
  }

  .TyuLogoTitle h2:hover{
     opacity: 0.5; 
   }

  .header-nav{
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .primary-nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .primary-nav li{
    margin: 0;
    padding: 0;
  }

  .primary-nav-link{
    padding: 20px;
    font-size: 17px;
    transition: 0.4s ease;
    color: #000;
    text-decoration: none;
  }

  .primary-nav-link:hover{
    border-radius: 20px;
    background-color: rgba(0,0,0,0.8);
    color: #fff;
  }

  .header-content{
    padding: 34px 0;
    display: flex;
    align-items: center;
    gap: 34px;
    flex-direction: row-reverse;
  }

  .header-content-img{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-content-img img{
    transition: 0.5s ease-in-out;
    object-fit: contain;
    max-height: 73vh;
    max-width: 474px;
  }

  .header-content-img img:hover{
    transform: rotateY(180deg);
  }

  .header-content-text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 29px;
    flex: 1;
  }

  .header-content-text h2{
    margin: 0;
    letter-spacing: 2px;
    color: #fff;
  }

  .about-us-lay{
    position: relative;
    width: 100%;
    background-image: url(galleryarchive/background/opacity_bg-0685185f118bc4.png);
    background-size: cover;
    background-position: center;
    padding: 83px 0;
  }

  .about-us-lay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e39749;
    opacity: 0.8;
    z-index: -1;
}

  .about-us{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-us h2{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: #000;
    text-align: center;
  }

  .about-us-box{
    padding: 34px 0;
  }

  .WepAbout-border{
    object-fit: contain;
    max-height: 20px;
    max-width: 15%;
  }

  .about-us-box img:nth-child(1) {
    float: left;
    object-fit: contain;
    max-width: 110px;
    max-height: 110px;
    margin: 20px;
    margin-top: 0;
    margin-left: 0;
  }

  .about-us-box img:nth-child(2){
    float: right;
    object-fit: contain;
    max-width: 110px;
    max-height: 110px;
    margin: 20px;
    margin-top: 0;
    margin-right: 0;
  }

  .game-catalog-lay{
    position: relative;
    width: 100%;
    background-position: center;
    background-size: cover;
  }
  
  .game-catalog-lay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(galleryarchive/background/bg-dark-1685185f118a6d.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    z-index: -1;
}

  .game-catalog{
    padding: 83px 0;
  }

  .game-catalog h2{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 34px;
    text-align: center;
  }

  .game-catalog-box{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
  }

  .game-catalog-card {
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 29px 0px;
    position: relative;
    overflow: hidden;
    width: 100%; 
    border: 1px solid #ddd; 
}

.game-box-img {
    overflow: hidden;
    position: relative;
}

.game-box-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: filter 0.3s ease-in-out;
}

@media (min-width: 768px){
  .game-box-img img{
    height: 257px;
  }
}
@media (min-width: 992px){
  .game-box-img img{
    height: 380px;
  }
}

.game-box-img p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    margin: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.game-catalog-card:hover .game-box-img img {
    filter: blur(2px); 
}

.game-catalog-card:hover .game-box-img p {
    opacity: 1; 
}

.game-catalog-card h3 {
    transition: 0.5s ease-in-out;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    color: #fff;
    padding: 20px;
    text-align: center;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.game-catalog-card:hover h3 {
    bottom: -30%;
}

.qa-lay{
    display: none;
    position: relative;
    width: 100%;
    background-image: url(galleryarchive/background/opacity_bg-0685185f118bc4.png);
    background-size: cover;
    background-position: center;
  }
  
  .qa-lay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e39749;
    opacity: 0.8;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.faq {
    display: flex;
    flex-direction: column;
    padding: 83px 0;
}

.faq h2 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: #000;
    text-align: center;
}

.qa-box {
    padding: 34px 0;
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.qa-card {
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
    cursor: pointer;
}

.qa-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.question {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
}

.question i{
    transition: 0.3s ease;
}

.question p {
    margin: 0;
    font-weight: 700;
    color: #000;
}

.answer {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    display: none;
}

.answer p {
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.qa-card.active .answer {
    display: block;
}

.qa-card.active .question i{
    transform: rotateX(180deg);
}

.disclaimer-lay{
    position: relative;
    width: 100%;
    background-image: url(galleryarchive/dir-vector/pyramid-0685185f118fe1.svg);
    background-size: cover;
    background-position: center;
  }
  
  .disclaimer-lay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e39749;
    opacity: 0.8;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.disclaimer-box{
    padding-top: 34px;
    border-top: 0.1px solid rgba(255,255,255,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.disclaimer-box h2{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: #000;
    text-align: center;
}

.disclaimer{
    padding: 34px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 5px;
    font-size: 20px;
    background: #006F5Fb0;
    border-radius: 20px;
    padding: 21px;
    border: 1px solid;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    margin: 0;
    color: #fff;
}


.disclaimer img{
    object-fit: contain;
    max-height: 30vh;
    max-width: 100%;
}

.two-img-discklaimer{
    transform: scaleX(-1);
}

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

.process-step-game-lay{
    position: relative;
    width: 100%;
    background-position: center;
    background-size: cover;
}
  
.process-step-game-lay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(galleryarchive/background/bg-dark-2685185f118acb.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    z-index: -1;
}

.process-step-game{
    padding: 83px 0;
}

.process-step-game h2{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 34px;
    text-align: center;
}

.process-step-game-box{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

.process-step-game-box{
    cursor: pointer;
    transition: 0.5s ease-in-out;
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 12px;
    padding: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0,0,0,0.8);
}

.process-step-number{
    transition: 0.5s ease-in-out;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 800;
    font-size: 116px;
    opacity: 0.3;
    color: grey;
}

.process-step-game-box p{
    transition: 0.5s ease-in-out;
    transform: scaleX(-1);
    opacity: 0;
    text-align: justify;
    letter-spacing: 1px;
    position: relative;
    font-size: 17px;
    color: #fff;
    margin: 0;
}

.process-step-game-box:hover{
    transform: rotateY(180deg);
}

.process-step-game-box:hover .process-step-number{
    opacity: 0;
}

.process-step-game-box:hover p{
    opacity: 1;
}

.footer-lay{
    position: relative;
    width: 100%;
    padding: 83px 0;
  }

  .footer-lay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e39749;
    opacity: 0.5;
    z-index: -1;
}

.footer {
    display: flex;
    flex-direction: column;
    gap: 34px;
    justify-content: space-between;
  }
  
  .footer-top {
    display: flex;
    gap: 34px;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  
  .TyuLogo-footer {
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    gap: 21px;
  }
  
  .TyuLogoImg-footer img {
    object-fit: contain;
    max-width: 100%;
    max-height: 163px;
  }
  
  .TyuLogo-footer a {
    transition: 0.3s ease;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .TyuLogoTitle-footer h2 {
    text-transform: uppercase;
    font-weight: 700;
    transition: 0.3s ease;
    font-size: 20px;
    margin: 0;
  }
  
  .TyuLogoTitle-footer h2:hover {
    color: #000;
    opacity: 0.5;
  }
  
  .footer-menu {
    flex: 1;
  }
  
  .primary-nav-footer {
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
  }
  
  .primary-nav-footer li {
    list-style: none;
  }
  
  .primary-nav-link-footer {
    text-decoration: none;
    color: #000;
    transition: opacity 0.3s ease;
  }
  
  .primary-nav-link-footer:hover {
    color: #000;
    opacity: 0.5;
  }
  
  .img-footer {
    object-fit: contain;
    max-width: 100%;
    max-height: 163px;
    flex: 1;
  }
  
  .footer-bottom {
    padding-top: 34px;
    border-top: 0.1px solid rgba(255,255,255,0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 34px;
    flex-direction: column;
  }
  
  .privacy-footer ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
  }
  
  .privacy-footer ul li a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    transition: 0.3s ease;
    font-weight: 700;
    text-decoration: none;
    color: #000;
  }

  .privacy-footer ul li a:hover{
    color: #000;
    opacity: 0.5;
  }

  .copyright{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
  }
  
  .copyright p {
    text-align: center;
    margin: 0;
  }
  
  .disclaimer-img img {
    max-width: 110px;
  }

  .art-lay{
    padding: 36px 0px;
    position: relative;
    width: 100%;
    margin-top: -20px;
}

.art-lay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e39749;
    opacity: 0.2;
    z-index: -1;
}

  .art{
    padding: 34px 0;
    flex: 1;
  }
  
  .titleArt {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    font-weight: 800;
  }
  
  .picture-art-img {
    transition: 0.5s ease;
    border-radius: 20px;
    float: right;
    width: 37%;
    margin: 34px;
    margin-top: 0;
    margin-right: 0;
  }
  
  .picture-art-img:hover{
    box-shadow: rgba(0, 0, 0, 0.25) 0px 50px 50px, rgba(0, 0, 0, 0.12) 0px -12px 29px, rgba(0, 0, 0, 0.12) 0px 4px 12px, rgba(0, 0, 0, 0.17) 0px 12px 12px, rgba(0, 0, 0, 0.09) 0px -3px 12px;
  }
  
  .UwnArt-content {
    font-size: 15px;
  }
  

  .art-gallery{
    padding: 34px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 21px;
  }

  .art-gallery div img{
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
    height: 276px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .art-gallery img:hover{
    filter: blur(4px);
  }

  .playing{
    padding: 0 0 34px;
    width: 100%;
    height: 674px;
  }

  .playing iframe{
    width: 100%;
    height: 100%;
  }

  .form-lay{
    position: relative;
    width: 100%;
    background-image: url(galleryarchive/background/opacity_bg-0685185f118bc4.png);
    background-size: cover;
    background-position: center;
    padding: 83px 0;
  }

  .form-lay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e39749;
    opacity: 0.8;
    z-index: -1;
}

  .osn-form {
    display: flex;
    flex-direction: column;
  }
  
  .title-container{
    margin-bottom: 29px;
    text-align: center;
  }
  
  .title-container h3{
    margin: 0;
    font-weight: 800;
  }
  
  .input-container {
    position: relative;
  }
  
  .input-container .input-group_element--item, .input-container .textarea-group_element--item, .form button {
    outline: none;
    margin: 5px 0;
  }
  
  .input-container .input-group_element--item {
    background-color: transparent;
    padding: 12px;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.8);
    padding-right: 33px;
    font-size: 16px;
    line-height: 1.2;
    width: 100%;
  }
  
  .input-container .textarea-group_element--item {
    background-color: transparent;
    padding: 12px;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.8);
    padding-right: 33px;
    font-size: 16px;
    line-height: 1.2;
    width: 100%;
  }
  
  .check{
    text-decoration: underline;
    color: #2A2438;
  }
  
  .check:hover{
    opacity: 0.5;
    color: #2A2438;
  }
  
  .form-check {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
    padding: 12px 0;
  }
  
  .form-check .form-check-input{
    margin: 0;
  }
  
  .submit-form {
    margin: 0 auto;
  }

  .kontact-form{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .title-kontact-form{
    text-align: center;
    margin-bottom: 29px;
  }

  .title-kontact-form h3{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
  }
  
  .input-kontact-form .input {
    background-color: transparent;
    padding: 12px;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.8);
    padding-right: 33px;
    font-size: 16px;
    line-height: 1.2;
    width: 100%;
  }
  
  .input-kontact-form .input{
    outline: none;
    margin: 5px 0;
  }
  
  .input-kontact-form .textarea{
    background-color: transparent;
    padding: 12px;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.8);
    padding-right: 33px;
    font-size: 16px;
    line-height: 1.2;
    width: 100%;
  }
  
  .input-kontact-form .textarea{
    outline: none;
    margin: 5px 0;
  }
  
  .submit{
    margin: 0 auto;
    width: auto;
  }

  .contact-lay{
    padding: 116px 0px;
    position: relative;
    width: 100%;
}

.contact-lay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e39749;
    opacity: 0.2;
    z-index: -1;
}

.contacts{
  display: flex;
  gap: 34px;
  justify-content: space-between;
  flex-direction: column;
}

  .contacts-box{
    display: flex;
    justify-content: space-between;
    gap: 34px;
    flex-direction: row-reverse;
  }

  .map{
    flex: 1;
  }

  .map > iframe{
    height: 100%;
  }

  .contacts-page{
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.8);
    padding: 34px;
    position: relative;
    width: 100%;
  }

  .contacts-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background-image: url(galleryarchive/background/opacity_bg-0685185f118bc4.png);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

  .contacts-page h2{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 29px;
  }

  .contacts-page-box{
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-direction: column;
  }

  .contacts-page-box a{
    transition: 0.3s ease;
    color: #000;
    font-size: 17px;
  }

  .contacts-page-box a i{
    padding-right: 5px;
    color: #006F5F;
  }

  .contacts-page-box a:hover{
    color: #000;
    opacity: 0.5;
  }

  .menu-btn {
    cursor: pointer;
    display: none;
    width: 29px;
    height: 29px;
    position: relative;
    z-index: 100;
    overflow: hidden;
  }
  
  .menu-btn span {
    width: 20px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #222222;
    transition: all 0.5s;
  }
  
  .menu-btn span:nth-of-type(2) {
    top: calc(50% - 5px);
  }
  .menu-btn span:nth-of-type(3) {
    top: calc(50% + 5px);
  }
  
  .menu-btn.active span:nth-of-type(1) {
    display: none;
  }
  .menu-btn.active span:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(45deg);  
  }
  .menu-btn.active span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(-45deg); 
  }
  
  .menu {
    z-index: 99;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 20px;
    background-image: url(galleryarchive/background/opacity_bg-0685185f118bc4.png);
    background-size: cover;
    background-position: center;
    background-color: #ffffff;
    transform: translateY(-100vh);
    transition: transform 0.5s; 
  }
  
  .menu.active {
    transform: translateY(0);
  }
  
  .menu nav{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  
  .menu ul{
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 0;
  }
  
  .menu li {
    list-style-type: none;
  }
  
  .menu li a{
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
    font-size: 20px;
    color: #2A2438;
  }
  
  .menu li a:hover{
    color: #006F5F;
    border-bottom: 1px solid;
  }

  @media (max-width: 1199px) {
    .process-step-game-box{
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 991px) {
    .header-nav{
      display: none;
    }

    .menu-btn {
      display: block;
    }

    .header-content{
      flex-direction: column;
      text-align: center;
    }

    .header-content-img img{
      max-height: 30vh;
    }

    .header-lay::before{
      background-attachment: unset;
    }

    .game-catalog-box{
      grid-template-columns: repeat(2, 1fr);
    }

    .game-catalog-lay::before{
      background-attachment: unset;
    }

    .process-step-game-lay::before{
      background-attachment: unset;
    }

    .header-content-text{
      align-items: center;
    }

    .contacts-box{
      flex-direction: column;
    }

    .map > iframe{
      height: 348px;
    }

    .art-gallery{
      grid-template-columns: repeat(2, 1fr);
    }

    .picture-art-img{
      width: 100%;
      margin-right: 0;
    }

    .disclaimer img{
      display: none;
    }
  }
  
  @media (max-width: 767px) {
    .footer-top{
      flex-direction: column;
    }

    .disclaimer-img img {
      max-width: 98px;
    }

    .copyright{
      flex-direction: column;
    }

    .privacy-footer ul{
      align-items: center;
      flex-direction: column;
    }

    .game-catalog-box {
      grid-template-columns: repeat(1, 1fr);
  }

  .process-step-game-box{
    grid-template-columns: repeat(1, 1fr);
  }

  .art-gallery{
    grid-template-columns: repeat(1, 1fr);
  }

  .process-step-number{
    font-size: 52px;
  }

  .playing{
    height: 100vh;
  }

  .disclaimer h3{
    padding: 12px;
    letter-spacing: 1px;
    font-size: 17px;
  }
  }

  @media (max-width: 420px) {
    .about-us-box img:nth-child(1){
      max-width: 100%;
      margin: 20px;
      margin-top: 0;
      margin-left: 0;
      margin-right: 0;
    }

    .about-us-box img:nth-child(2){
      display: none;
    }

    .TyuLogo a{
      gap: 5px;
    }

    .header-content-text h2{
      font-size: 20px;
    }

    .contacts-page{
      padding: 12px;
    }
  }


  .but,
button {
  outline: none;
  border: none;
  background: inherit;
  box-sizing: border-box !important;
}

.button-1 {
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #ffcc00;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.button-1:hover {
  color: #fff;
  background-color: #ff9900;
}

.button-2 {
  background-color: #dfa952;
  color: #fff;
  padding: 20px 29px;
  border: none;
  border-radius: 5px;
  font-size: 17px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.button-2:hover {
  color: #fff;
  transform: scale(1.05);
}

.button-3 {
  background-color: rgb(153, 125, 102);
  color: #fff;
  padding:  12px  19px;
  border: none;
  border-radius: 3px;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.button-3:hover {
  color: #fff;
  box-shadow: 0 0  12px rgba(153, 125, 102, 0.8);
}

.button-4 {
  transition: 0.3s ease;
  background-color: #e74c3c;
  color: #fff;
  padding:  12px  29px;
  border: none;
  border-radius:  20px;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.button-4:hover {
  opacity: 0.5;
  color: #fff;
}

.button-5 {
  background-color: orange;
  color: #fff;
  padding: 20px 33px;
  border: 1pxpx solid #fff;
  border-radius: 50px;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.button-5:hover {
  color: #fff;
  border-color: rgb(196, 128, 0);
}

@media screen and (max-width: 600px) {
  .button-1,
  .button-2,
  .button-3,
  .button-4,
  .button-5 {
    width: 100%;
  }

  .game-box-img p{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}

  
.game-catalog-lay{
  position: relative;
  width: 100%;
  background-image: url(galleryarchive/background/opacity_bg-0685185f118bc4.png);
  background-size: cover;
  background-position: center;
}

.game-catalog-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e39749;
  background-attachment: unset;
  opacity: 0.2;
  z-index: -1;
  background-image: none;
  background-position: unset;
  background-size: unset;
}

.game-catalog h2{
  color: #000;
}

.map iframe{
  border: none;
}

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

.dop-page-privacy{
  overflow: hidden;
  text-align: justify;
  padding: 116px 0px;
  position: relative;
  width: 100%;
}

.dop-page-privacy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e39749;
  opacity: 0.2;
  z-index: -1;
}

.dop-page-privacy a{
  color: #000;
}

.dop-page-privacy a:hover{
  color: #000;
  opacity: 0.5;
}

.about-us-lay::before {
  content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #e39749;
      z-index: -1;
      opacity: 0.2;
}