@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');


.btn-1 {
    appearance: none;
    background-color: transparent;
    border: 0.125em solid var(--brand-color);
    border-radius: 0.9375em;
    box-sizing: border-box;
    color: var(--brand-color);
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-height: 3.75em;
    min-width: 0;
    outline: none;
    padding: 1em 2.3em;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    will-change: transform;
   }
      
   .btn-1:hover {
    color: #fff;
    background-color: var(--brand-color)91;
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
   }
   
   .btn-1:active {
    box-shadow: none;
    transform: translateY(0);
   }

  .btn-2 {
    position: relative;
    display: inline-block;
    margin: 15px;
    padding: 15px 30px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--brand-color);
    background: transparent;
    cursor: pointer;
    transition: ease-out 0.5s;
    border: 2px solid var(--brand-color);
    border-radius: 10px;
    box-shadow: inset 0 0 0 0 var(--brand-color);
  }
  
  .btn-2:hover {
    color: white;
    box-shadow: inset 0 -100px 0 0 var(--brand-color);
  }
  
  .btn-2:active {
    transform: scale(0.9);
  }

  .btn-3 {
    border: none;
    border-radius: 10em;
    background: var(--brand-color);
    font-size: 17px;
    color: #ffffff;
    font-family: inherit;
    font-weight: 500;
    display: inline-block;
    padding: 15px 20px;
   }
   
   .btn-3:hover {
    animation: shake3856 0.3s linear infinite both;
   }
   
   @keyframes shake3856 {
    0% {
     -webkit-transform: translate(0);
     transform: translate(0);
    }
   
    20% {
     -webkit-transform: translate(-2px, 2px);
     transform: translate(-2px, 2px);
    }
   
    40% {
     -webkit-transform: translate(-2px, -2px);
     transform: translate(-2px, -2px);
    }
   
    60% {
     -webkit-transform: translate(2px, 2px);
     transform: translate(2px, 2px);
    }
   
    80% {
     -webkit-transform: translate(2px, -2px);
     transform: translate(2px, -2px);
    }
   
    100% {
     -webkit-transform: translate(0);
     transform: translate(0);
    }
   }
   
  .btn-4 {
    background: transparent;
    position: relative;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--brand-color);
    border-radius: 25px;
    outline: none;
    overflow: hidden;
    color: var(--brand-color);
    transition: color 0.3s 0.1s ease-out;
    text-align: center;
  }
    
  .btn-4::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: '';
    border-radius: 50%;
    display: block;
    width: 20em;
    height: 20em;
    left: -5em;
    text-align: center;
    transition: box-shadow 0.5s ease-out;
    z-index: -1;
  }
  
  .btn-4:hover {
    color: #fff;
    border: 1px solid var(--brand-color);
  }
  
  .btn-4:hover::before {
    box-shadow: inset 0 0 0 10em var(--brand-color);
  }

  .btn-5 {
    padding: 10px 20px;
    text-transform: uppercase;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 500;
    color: #ffffff80;
    text-shadow: none;
    background: transparent;
    cursor: pointer;
    box-shadow: transparent;
    border: 1px solid #ffffff80;
    transition: 0.5s ease;
    user-select: none;
  }
  
  .btn-5:hover,
  .btn-5:focus {
    color: #ffffff;
    background: var(--brand-color);
    border: 1px solid var(--brand-color);
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 20px #ffffff;
    box-shadow: 0 0 5px var(--brand-color), 0 0 20px var(--brand-color), 0 0 50px var(--brand-color),
      0 0 100px var(--brand-color);
  }
  

* {
    box-sizing: border-box;
}

body{
    direction: ltr;
    font-family: 'Albert Sans', sans-serif !important;
    font-size: 17px;
    margin: 0;
    padding: 0px;
    line-height: 1.3;
    background-color: #060606;

}

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 {
    color: inherit;
    cursor: pointer;
}

.title-g04 {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    /* text-align: center; */
    /* text-transform: uppercase; */
    line-height: 1.053;
    letter-spacing: -1.1px;
}

@media screen and (min-width: 768px) {
    .title-g04 {
        font-size: 39px;
    }
}

.subtitle-g04 {
    color: var(--brand-color);
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    opacity: 0.9;
    margin-bottom: 1.1em;
}

:root {
  --brand-color: #5B69E7;
  --anim: 800ms cubic-bezier(0.4, 0, 0.2, 1);

}

.container-g04 {
    padding-left: 12px;
    padding-right: 12px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px !important;
}

@media screen and (min-width: 576px) and (max-width: 990px) {
    .container-g04 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (min-width: 991px) {
    .container-g04 {
        padding-left: 19px;
        padding-right: 19px;
    }
}

.header-g04 {
    position: absolute;
    z-index: 5;
    top: 20px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0) !important;
}

.main-menu-g04 {
    position: relative;
    display: none;
    justify-content: space-between;
    padding: 20px 0;
    align-items: center;
}

@media screen and (min-width: 991px) {
    .main-menu-g04 {
        display: flex;
    }
} 

.logo-link-g04 {
    display: flex;
    gap: 20px;
    font-weight: 600;
    color: #ffffff;
    align-items: center;
    font-size: 26px;
    text-shadow: #272727 1px 0 10px;
}

@media screen and (min-width: 425px) {
    .logo-link-g04 {
        font-size: 28px;
    }
}


.logo-link-g04 img {
    display: inline-block;
    max-height: 45px;
}

.nav-bar-g04 {
    display: none;
}

@media screen and (min-width: 991px) {
    .nav-bar-g04 {
        display: block;
        width: unset;
    }
}

.nav-bar-g04__list {
    text-align: left;
    vertical-align: middle;
    padding-left: 0 !important;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.nav-bar-g04__list li {
    position: relative;
    float: left;
    z-index: 20;
    margin: 0;
}

.nav-bar-g04__link,
.custom_links_list_item_link {
    color: #ffffff;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    padding: 14px;
    position: relative;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    display: block;
}

.nav-bar-g04__link:hover,
.nav-bar-g04__link:focus {
    color: #ffffff;
}

.nav-bar-g04__link::after,
.custom_links_list_item_link::after {
    content: "";
    display: block !important;
    position: relative;
    z-index: 1;
    top: auto;
    bottom: 0;
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 0;
    height: 2px;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    color: #ffffff;
}

    .nav-bar-g04__link:hover::after,
    .nav-bar-g04__link:focus::after,
    .custom_links_list_item_link:hover::after,
    .custom_links_list_item_link:focus::after {
        background-color: #ffffff;
        width: 100%;
    }   
    
.mobile-menu-g04 {
    display: flex;
    height: 100%;
    flex-wrap: wrap;
    gap: 40px 20px;
    position: relative;
    justify-content: space-between;
}

@media screen and (min-width: 991px) {
    .mobile-menu-g04 {
        display: none;
    }
}

.icon-menu,
.icon-cross {
    fill: #ffffff;
}

.menu-btn-g04 {
    border: none;
    background-color: transparent;
    padding: 0;
    -webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, .7));
    filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, .7));
}

@media screen and (min-width: 991px) {
    .menu-btn-g04 {
        display: none;
    }
}

    .mob-menu-g04 {
        display: none;
        z-index: 9;
        position: fixed;
        bottom: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        padding: 13px 12px;
        overflow-y: scroll;
        background-color: #120d1c;
        color: #ffffff;
    }

    .mob-menu-g04 > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .btn-cross {
        border: none;
        background-color: transparent;
        padding: 0;
        margin-left: auto;
    }

    .btn-cross .icon-cross {
        fill: #ffffff;
    }

    .mob-menu-g04.is-active {
        display: flex;
        flex-direction: column;
    }

.mob-nav-bar-g04 {
    margin-top: 30px;
}

.mob-nav-bar-g04__item {
    position: relative;
    padding: 3px 0 3px 2em;
    font-size: 22px;
    line-height: 1.5em;
    font-weight: 700;
    letter-spacing: 0;
    /* display: inline-block; */
    width: auto;
    text-align: left;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.mob-nav-bar-g04__list .mob-nav-bar-g04__item::before {
    content: '\2654';
    color: var(--text-g01-color);
    font-size: 22px;
    font-weight: 700;
    left: 10px;
    position: absolute;
}

.mob-nav-bar-g04__link {
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: 0.02em;
    font-size: 15px;
    padding: 14px 16px;
    color: #ffffff;
    text-transform: uppercase;
 }

.mob-nav-bar-g04__item:hover .mob-nav-bar-g04__link{
    color: var(--brand-color);
}

    .mob-menu-g04 .btn-cross:hover .icon-cross {
        -webkit-animation-name: fadeInAnimScale;
        animation-name: fadeInAnimScale;
        -webkit-animation-fill-mode: backwards;
        animation-fill-mode: backwards;
        transform-origin: 50% 54%;
        -webkit-animation-duration: 0.6s;
        animation-duration: 0.6s;
        visibility: visible;
    }


    @-webkit-keyframes fadeInAnimScale {
        0% {opacity: 0; -webkit-transform:scale(0.2) rotate(0);}
        100% {opacity: 1; -webkit-transform:scale(1) rotate(180deg);}
    }
    @keyframes fadeInAnimScale {
        0% {opacity: 0; transform:scale(0.2) rotate(0);}
        100% {opacity: 1; transform:scale(1) rotate(180deg);}
    }

.hero-g04 {
    position: relative;
    background-image: linear-gradient(to right, #301d1b73, #301d1b73), url(mediamansion/background/bg-all-06780d27e352f8.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

#back {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
  
    .img-wrap.spin {
      position: absolute;
      width: 135%;
      margin-top: -9em;
      animation: rotateImage 50s linear infinite;
      border-radius: 50%;
  
      @media (max-width: 1279px) {
        margin-top: 0;
      }
      @media (max-width: 1023px) {
        margin-top: 3em;
      }
      @media (max-width: 767px) {
        width: 180%;
      }

      img {
        width: 100%;
      }
    }
  }
  
  
  @keyframes rotateImage {
    0% {
       transform: rotate(0deg);
    }
    100% {
       transform: rotate(360deg);
    }
  }

.hero-inner-g04 {
    padding: 200px 0;
}

.welcome-title-g04, .bread-title {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    text-shadow: #272727 1px 0 10px;
}

@media screen and (max-width: 575px) {
    .welcome-title-g04, .bread-title {
        width: 100%;
    }
}
@media screen and (min-width: 576px) and (max-width: 990px) {
    .welcome-title-g04, .bread-title {
        width: 80%;
    }
}

.section1 {
    padding: 100px 0;
    background-image: url(sass/img/casino-stain-1.webp), url(sass/img/casino-stain-3.webp);
    background-position: top left, bottom right;
    background-repeat: no-repeat;
    background-size: 40% auto;
}

.about-flex {
    display: flex;
    gap: 100px;
    flex-direction: column;
}
@media screen and (min-width: 992px) {
    .about-flex {
        flex-direction: row;
    }
}

.about-us-g04-wraper, .about-g04-text {
    padding: 0 15px;
    flex: 1;
}

.about-us-g04-wraper img {
    width: 100%;
}

.about-g04-text p {
    margin-top: 1.1em;
    color: #d2d3d5;
}

.about-g04-text img {
    width: 100%;
    margin-top: 85px;
}

.counter-flex {
margin-top: 60px;
}

.counter-flex {
    position: relative;
}

.counter {
    color: #ffffff14;
    font-size: 150px;
    text-align: center;
}

.counter_title {
    text-align: center;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.counter-flex:not(:last-child)::after {
    content: '';
    display: block;
    width: 120px;
    height: 1px;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #3d3c3e
}

.el-bg1{
    width: 45%;
    max-width: 45%;
    position: absolute;
    top: 0;
    left: 11%;
    z-index: 1;
}

.el-bg1 img{
    width: 100%;
}

.games-g04 {
    margin-top: 100px;
    position: relative;
}
.games-g04_list {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    margin-top: 35px;
    gap: 26px;
}

.games-g04_item {
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (min-width: 576px) {
       
}

@media screen and (min-width: 991px) {
    
}

.games-g04_item_info {
    text-align: left;
}

.games-g04_item_header h4 {
    font-size: 30px;
    line-height: 1.25;
    margin: 0;
    font-weight: 700;
    margin-top: 35px;
}

.games-g04_item_header h4 a{
    color: #ffffff;
}

.games-g04_item_content {
    font-size: 17px;
    line-height: 1.65em;
    margin-top: 1.25em;
}

.games-g04_item_content p{
    margin-bottom: 0;
    color: #d2d3d5;
}

.games-g04_item_button {
    margin: 1.2em 0 0;
    display: inline-block;
}

.games-g04_item_more_link {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-size: 16px;
    line-height: 21px;
    font-weight: 700;
    color: #ffffff;
    overflow: hidden;overflow: hidden;
}

.link_text {
    display: inline-block;
    position: relative;
    margin-right: 0;
    vertical-align: middle;
    text-indent: -300px;
    visibility: hidden;
    white-space: nowrap;
    opacity: 0;
    -webkit-transition: visibility 0.4s ease,margin-right 0.4s ease-out,text-indent 0.5s ease-out,opacity 0.4s ease;
    -ms-transition: visibility 0.4s ease,margin-right 0.4s ease-out,text-indent 0.5s ease-out,opacity 0.4s ease;
    transition: visibility 0.4s ease,margin-right 0.4s ease-out,text-indent 0.5s ease-out,opacity 0.4s ease;
    will-change: visibility,margin-right,text-indent,opacity;
}

.games-g04_item:hover .games-g04_item_more_link .link_text, 
.games-g04_item .games-g04_item_more_link:hover .link_text {
    opacity: 1;
    text-indent: 0;
    margin-right: 10px;
    visibility: visible;
    -webkit-transition: visibility 0.4s ease,margin-right 0.3s ease-out,text-indent 0.4s ease-out,opacity 0.4s ease;
    -ms-transition: visibility 0.4s ease,margin-right 0.3s ease-out,text-indent 0.4s ease-out,opacity 0.4s ease;
    transition: visibility 0.4s ease,margin-right 0.3s ease-out, text-indent 0.4s ease-out,opacity 0.4s ease;
}

.games-g04_item .games-g04_item_more_link .link_icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    height: 1.4em;
    line-height: 1.4em;
    text-align: center;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box
}

.games-g04_item .games-g04_item_more_link .link_icon:before {
    font-size: 24px;
    line-height: inherit;
    font-weight: 400;
    font-style: inherit;
    content: '\2794';
    display: inline-block;
    vertical-align: top;
    color: currentColor;
}

.games-g04_item_img {
    width: 100%;
    max-height: 300px;
    margin-top: 51px;
    overflow: hidden;
}

.games-g04_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.games-g04_item:hover .games-g04_item_img img {
    transform: scale(1.2);
}

.video-sec {
    display: none;
}

@media screen and (min-width: 991px) {
    .video-sec {
        display: block;
        background-image: url(mediamansion/other/tematik_big-06780d27e35703.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        height: 500px;
    }
}

.video-play_link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-play-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    border: solid 3px var(--brand-color);
    border-radius: 50%;
    background-color: transparent;
}

.video-play-wrap svg {
    width: 40px;
    fill: var(--brand-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
    bottom: 0;
  }

  .backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
    transition: opacity var(--anim), visibility var(--anim);
    overflow-y: scroll;
    direction: initial;
  }
  
  @media screen and (max-width: 767px) {
    .backdrop {
      padding: 93px 15px;
    }
  }
  
  .backdrop.is-hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
  
  .modal {
    width: 100%;
    height: auto;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 1px rgba(0, 0, 0, 0.14), 0px 2px 1px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
  }
  
  @media screen and (max-width: 767px) {
    .modal {
      position: relative;
      padding: 35px;
    }
  }
  
  @media screen and (min-width: 480px) {
    .modal {
      max-height: 609px;
      margin-right: auto;
      margin-left: auto;
    }
  }
  
  @media screen and (min-width: 768px) {
    .modal {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      padding: 40px;
    }
  }
  
  @media screen and (min-width: 1200px) {
    .modal {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
        max-height: 90vh;
    }
  }

.modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    padding: 0;
    background: transparent;
}

.modal-btn svg {
    width: 30px;
    fill: #ffffff;
}

.modal video {
    height: 80vh;
    position: relative;
    transform: translateX(-50%);
    left: 50%;
    width: unset;
    max-width: 95%;
}

@media (max-width: 990px) {
    .modal video {
        max-width: 80%;
        height: unset;
    }
}

.staps-g04 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

@media screen and (min-width: 576px) {
    .staps-g04 {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.staps-g04__item{
    flex-basis: 100%;
}

@media screen and (min-width: 576px) {
    .staps-g04__item{
        flex-basis: calc(100% / 2 - 30px);
    }
    }
@media screen and (min-width: 991px) {
    .staps-g04__item{
        flex-basis: calc(100% / 4 - 30px);
    }
}

.staps-g04__item::before{
    content: ' ';
    width: 0;
    height: 0;
    display: inline-block
}

.staps-g04__item-content {
    position: relative;
    background-image: linear-gradient(to bottom, #0a0019, #0a0019 64%, #86128a 78%, #86128a 64%,#0A0017 94%,  #0A0017);
    color: #fff;
    padding: 34px;
    text-align: center;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.staps-g04__item-content:before {
    content: ' ';
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.3);
    -webkit-transition: opacity 0.3s ease-out,background-color 0.3s ease-out;
    -ms-transition: opacity 0.3s ease-out,background-color 0.3s ease-out;
    transition: opacity 0.3s ease-out,background-color 0.3s ease-out
    transition: all 0.3s ease;
}
.staps-g04__item:hover .staps-g04__item-content:before {
    opacity: .9;
    background: #f82f77;
    background: -moz-linear-gradient(180deg, #f82f774d 0%, #f82f77 100%);
    background: -webkit-linear-gradient(180deg, #f82f774d 0%, #f82f77 100%);
    background: linear-gradient(180deg, #f82f774d 0%, #f82f77 100%);
    z-index: 0;
}

.staps-g04__item-content_inner_top {
    position: absolute;
    text-align: left;
    font-size: 24px;
    margin-bottom: 20px;
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
    opacity: 0;
    will-change: transform,opacity;
    -webkit-transition: -webkit-transform 0.3s ease-out,opacity 0.3s ease-out;
    -ms-transition: -ms-transform 0.3s ease-out,opacity 0.3s ease-out;
    transition: transform 0.3s ease-out,opacity 0.3s ease-out;
}

.staps-g04__item:hover .staps-g04__item-content_inner_top {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.staps-g04__item img {
    width: 80%;
    max-height: 200px;
    margin: 40px auto 20px auto;
}

.staps-g04__item-content p {
    margin: 0;
    z-index: 0;
}

.footer-flex {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

@media screen and (min-width: 576px) {
    .footer-flex {
        flex-wrap: wrap;
        flex-direction: row;

    }
}

.footer-g04-item {
    flex: 1;
}

.footer-g04-item.disclamer-g04 {
    flex: 3;
}
@media screen and (min-width: 576px) and (max-width: 767px) {
    .footer-g04-item.disclamer-g04 {
        order: 2;
    }
}

.disclamer-g04 {
    color: #ffffff;
}

.disclamer-top {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.adult {
    width: 70px;
    margin-left: auto;
    margin-right: auto;
}
.disclamer-g04-wrap {
    background-image: linear-gradient(to top, #0a0019, #0a0019 64%, #86128a 78%, #86128a 64%, #0A0017 94%, #0A0017);
    padding: 10px 20px;
}

.disclamer-decor {
    border: 4mm ridge #762979;
}

.disclamer-g04-text {
    color: #d2d3d5;
}

.custom_links_list_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.custom_links_list_item .custom_links_list_item_link {
    color: #d2d3d5;
    padding: 0;
    margin-top: 14px;
}

.custom_links_list_item h2,
.custom_links_list_item h3 {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 25px 0;
}

.custom_links_list_item h2 {
    font-size: 22px;
    margin-top: 40px;
}

.disclamer-g04 h3 {
    margin-top: 50px;
}

.contacts-block{
    padding: 120px 0 50px 0;

}

.contacts-block-flex {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
}
@media screen and (min-width: 576px) {
    .contacts-block-flex {
        flex-direction: row;
    }
}

.contacts-block__item {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.contacts-block__item svg {
    height: 28px;
    fill: var(--brand-color);
}

.contacts-block__item p,
.contacts-block__item a {
    color: #d2d3d5;
    font-size: 17px;
    margin: 0;
}

.contacts-block__item.phone a {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.contacts-block-flex__item {
    flex: 1;
}

.form-g04 label {
    font-size: 17px;
    color: #d2d3d5;
    margin-top: 10px;
    display: inline-block;
}

.input-form__container_element,
.textarea-form__container_element,
.style-line textarea,
.style-line input {
    box-shadow: 0 15px 15px -14px rgba(0, 0, 0, 0.009);
    padding: 13px 0;
    line-height: 1.5em;
    border-color: transparent;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    border-bottom: solid 1px #d2d3d578;
    color: #ffffff;
    background: transparent;
    width: 100%;
    transition: all 0.4s ease;
}

.input-form__container_element:hover,
.textarea-form__container_element:hover,
.input-form__container_element:focus,
.textarea-form__container_element:focus {
    border-bottom: solid 1px #ffffff;
}

.input-form__container_element::placeholder,
.textarea-form__container_element::placeholder {
    color: #d2d3d5;
    font-size: 16px;
}

.form-g04-check {
    margin: 25px 0;
}

.form-g04-check label {
    display: block;
}

.form-g04-check label input {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    display: inline-block;
    color: #d2d3d5;
}

.form-g04-check label span {
    position: relative;
    font-size: 14px;
    padding-left: 1.8em;
    line-height: 22px;
    display: inline-block;
    vertical-align: top;
}

.form-g04-check__input + span::before {
    content: ' ';
    font-size: 7px;
    font-weight: 400;
    letter-spacing: -0.7px;
    display: block;
    text-align: center;
    border: 1px solid #3d3c3e;
    width: 16px;
    height: 16px;
    line-height: 15px;
    position: absolute;
    z-index: 1;
    top: 0.35em;
    left: 0;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    color: #ffffff;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.form-g04-check__input:checked + span::before {
    content: '\273A';
}

.form-g04-check label span a {
    border-bottom: 1px solid #d2d3d5;
    color: #d2d3d5;
}

.form-g04-check label span a:hover, 
.form-g04-check label span a:focus{
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
}

.subscribe {
    background-image: url(mediamansion/background/bg-all-16780d27e3535f.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0;
}

.subscribe-flex {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    justify-content: center;
}
@media screen and (min-width: 576px) {
    .subscribe-flex {
        flex-direction: row;
    }
}

.subscribe-form form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}
@media screen and (min-width: 900px) {
    .subscribe-form form {
        flex-direction: row;
    }
}

.subscribe h2 {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    text-shadow: #19191c 9px 2px 18px;
}

.subscribe input {
    padding: 0.7em 1.7em;
    font-size: 16px;
    line-height: 22px;
    margin: 0;
    height: 55px;
    border: none;
    color: #06020c;
    background-color: #ffffff !important;
    -webkit-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 3px 25px rgba(0, 0, 0, 0.05) !important;
    -ms-box-shadow: 0 3px 25px rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.05) !important;
}
@media screen and (min-width: 991px) {
    .subscribe input {
        width: calc(100% - 280px);
    }
}    

.subscribe button svg {
    width: 15px;
    margin-right: 10px;
    fill: #ffffff;
}

.subscribe-text {
    flex: 1;
}

.subscribe-form {
    flex: 2;
}

.hero-wrap {
    background-image: url(sass/img/img-1.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.overlay {
    background-color: #000000;
    opacity: 0.35;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.hero-text svg {
    width: 38px;
    fill: #ffffff;
}

.hero-text {
    padding: 215px 0 100px 0;
    text-align: center;
}

.bread-title {
    font-size: 54px;
    margin-bottom: 35px;
}

/* comments */
.comments-g04__list {
    display: flex;
    gap: 50px;
    margin-top: 80px;
    flex-direction: column;
}
@media screen and (min-width: 768px) {
    .comments-g04__list {
        flex-direction: row;
    }
}

.comments-g04__item {
    flex: 1;
    padding: 50px;
    background-color: #120d1c;
    color: #ffffff;
}

.comments-g04__item p {
    margin: 0;
}

.comments-g04__item h4 {
    font-size: 19px;
    line-height: 28px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: -0.2px;
    margin-bottom: 3px;
    margin-top: 1.65em;
    padding-left: 60px;
    position: relative;
}

.comments-g04__item h4::before {
    content: ' ';
    background-color: #f82f77;
    height: 2px;
    left: 0;
    position: absolute;
    top: 50%;
    width: 40px;
}

.page-g04-flex {
    display: flex;
    gap: 30px;
    flex-direction: column;
}
@media screen and (min-width: 768px) {
    .page-g04-flex {
        flex-direction: row;
    }
}

.page-g04-content {
    flex: 2;
    color: #ffffff;
}
.page-g04-wraper {
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-g04-wraper img{
    width: 51%;
}

.page-g04-table {
    flex: 1;
    color: #ffffff;
    position: relative;
}

.sticky {
    position: sticky;
    top: 0;
}

.page-g04-table h3{
    font-size: 33px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.1;
    text-decoration: none;
    text-transform: none;
    letter-spacing: -0.35px;
    margin-top: 1.29em;
    margin-bottom: 0.52em;
    text-align: center;
}

.sc_table {
	position: relative;	
	padding-top: 0.0001px;
	max-width: 100%;
}
.sc_table table {
	width: 100%;
}
.sc_table table th,
.sc_table table td {
	padding: 1.8em 1em;
}
.sc_table table tr:first-child td {
	font-weight:bold;
}

.sc_table table tr:nth-child(even) {
	background-color: #120d1c;
}

.sc_table table tr td img {
    height: 30px;
    margin: 0 auto;
}

.game-frame iframe {
    height: 500px;
}

.contact-text {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.style-line {
    position: relative;
    display: inline-block;
    width: 100%;
}
@media screen and (min-width: 870px) {
    .style-line {
        width: calc((100% - 30px) / 2);
    }
}

.style-line:last-child {
    width: 100%;
}

.style-line .line {
    display: block;
    height: 1px;
    width: 100%;
    position: relative;
    background-color: #3d3c3e;
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 1;
    margin-top: -1px;
}

.style-line .line:before {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-color: #ffffff;
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
    

.style-line input[type="text"]:active 
    + .line:before,
.style-line input[type="email"]:active 
+ .line:before, 
.style-line textarea:active + .line:before,
.style-line input[type="text"]:focus 
    + .line:before,
.style-line input[type="email"]:focus 
+ .line:before, 
.style-line textarea:focus + .line:before  {
    width: 100%;
}

.style-line:hover .line:before {
    width: 100%;
}

.style-line svg {
    height: 28px;
    position: absolute;
    left: 0;
    top: 13px;
}

.style-line[class*="icon-"] textarea,
.style-line[class*="icon-"] input {
    padding-left: 36px;
}
.style-line[class*="icon-"] textarea {
    height: 99px;
    width: 100%;
    border-bottom: none;
}
.style-line[class*="icon-"] {
    color: #d2d3d5;
}

.contacts-block.bezpad {
    padding: 0;
}
.contacts-block.bezpad .contacts-block-flex {
    margin: 0;
}

.section-priv {
    color: #ffffff;
    padding: 106px 0px;
}

.section-priv li {
    margin-left: 30px;
    list-style: decimal;
}

