@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');


.button-1 {
    --green: #1BFD9C;
    font-size: 14px;
    padding: 14px 39px;
    letter-spacing: 0.06em;
    position: relative;
    font-family: inherit;
    border-radius: 0.6em;
    overflow: hidden;
    transition: all 0.2s;
    line-height: 1.4em;
    border: 2px solid var(--green);
    background: linear-gradient(to right, rgba(27, 253, 156, 0.1) 1%, transparent 40%,transparent 60% , rgba(27, 253, 156, 0.1) 100%);
    color: var(--green);
    box-shadow: inset 0 0 10px rgba(27, 253, 156, 0.4), 0 0 9px 3px rgba(27, 253, 156, 0.1);
  }
  
  .button-1:hover {
    color: #82ffc9;
    box-shadow: inset 0 0 10px rgba(27, 253, 156, 0.6), 0 0 9px 3px rgba(27, 253, 156, 0.2);
  }
  
  .button-1:before {
    content: "";
    position: absolute;
    left: -4em;
    width: 4em;
    height: 100%;
    top: 0;
    transition: transform .5s ease-in-out;
    background: linear-gradient(to right, transparent 1%, rgba(27, 253, 156, 0.1) 40%,rgba(27, 253, 156, 0.1) 60% , transparent 100%);
  }
  
  .button-1:hover:before {
    transform: translateX(15em);
  }

  
.button-2 {
    --green: #1BFD9C;
    font-size: 14px;
    padding: 14px 39px;
    letter-spacing: 0.06em;
    position: relative;
    font-family: inherit;
    border-radius: 0.6em;
    overflow: hidden;
    transition: all 0.2s;
    line-height: 1.4em;
    border: 2px solid var(--green);
    background: linear-gradient(to right, rgba(27, 253, 156, 0.1) 1%, transparent 40%,transparent 60% , rgba(27, 253, 156, 0.1) 100%);
    color: var(--green);
    box-shadow: inset 0 0 10px rgba(27, 253, 156, 0.4), 0 0 9px 3px rgba(27, 253, 156, 0.1);
  }
  
  .button-2:hover {
    color: #82ffc9;
    box-shadow: inset 0 0 10px rgba(27, 253, 156, 0.6), 0 0 9px 3px rgba(27, 253, 156, 0.2);
  }
  
  .button-2:before {
    content: "";
    position: absolute;
    left: -4em;
    width: 4em;
    height: 100%;
    top: 0;
    transition: transform .5s ease-in-out;
    background: linear-gradient(to right, transparent 1%, rgba(27, 253, 156, 0.1) 40%,rgba(27, 253, 156, 0.1) 60% , transparent 100%);
  }
  
  .button-2:hover:before {
    transform: translateX(15em);
  }

  .button-3 {
    padding: 15px 27px;
    border: 2px solid #2c2c2c;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    border-radius: 27px;
    transition: all 0.5s ease;
    outline: none;
    position: relative;
    overflow: hidden;
    font-weight: 700;
  }
  
  .button-3::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(255, 255, 255, 0) 70%
    );
    transform: scale(0);
    transition: transform 0.5s ease;
  }
  
  .button-3:hover::after {
    transform: scale(4);
  }
  
  .button-3:hover {
    border-color: #666666;
    background: #292929;
  }
  
  
   
  .button-4 {
    color: #fff;
    border-radius: 5px;
    padding: 10px 20px;
    font-family: 'Lato', sans-serif;
    font-weight:700;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255,255,255,.5),
      7px 7px 20px 0px rgba(0,0,0,.1),
      4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
    background: rgb(96,9,240);
    background: linear-gradient(0deg, rgba(96,9,240,1) 0%, rgba(129,5,240,1) 100%);
    border: none;
   }
   
   .button-4:before {
    height: 0%;
    width: 2px;
   }
   
   .button-4:hover {
    box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5),
                 -4px -4px 6px 0 rgba(116, 125, 136, .5), 
       inset -4px -4px 6px 0 rgba(255,255,255,.2),
       inset 4px 4px 6px 0 rgba(0, 0, 0, .4);
   }
   

   .button-5 {
    padding: 15px 27px;
    border: 2px solid #2c2c2c;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    border-radius: 27px;
    transition: all 0.5s ease;
    outline: none;
    position: relative;
    overflow: hidden;
    font-weight: 700;
  }
  
  .button-5::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(255, 255, 255, 0) 70%
    );
    transform: scale(0);
    transition: transform 0.5s ease;
  }
  
  .button-5:hover::after {
    transform: scale(4);
  }
  
  .button-5:hover {
    border-color: #666666;
    background: #292929;
  }
  
 

* {
    box-sizing: border-box;
}

body{
    direction: ltr;
    font-family: 'Saira Condensed', sans-serif !important;
    font-size:18px;
    margin: 0;
    padding: 0px;
    line-height:1.3;
    background-color: #6a6e00;
background-image: url("picture/img/tileable-wood-colored.png");
}

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-gg067 {
    font-weight: 700;
    background-image: linear-gradient(to bottom, #f3a20a, #f7e81a, #f3a20a, #f7e81a);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-box-decoration-break: clone;
  -webkit-text-stroke: 2px #672911;
    color: var(--white);
    text-align: center;
    font-size: min(32px, 36px);
    margin-bottom: 42px;
    text-transform: uppercase;
    text-shadow: 40px 32px 12px #484444;
    
}

@media screen and (min-width: 768px) {
    .title-g05 {
        font-size: 27px;
    }
}

:root {
  --white: #ffffff;

  --color-one-1: #1d8022;
  --color-two-1: #38f340;

  --color-one-2: #29a387;
  --color-two-2: #39eac2;

  --color-one-3: #adb42c;
    --color-two-3: #eaf344;
  
    --color-one-4: #bd541f;
    --color-two-4: #f37f44;
  
    --color-one-5: #2e39ad;
  --color-two-5: #4454f3;


  --color-one-6: #7c2997;
    --color-two-6: #c644f3;
  

    --color-one-7: #992c68;
      --color-two-7: #f344a3;
  

      --color-one-8: #a52c2c;
    --color-two-8: #f34444;


    --color-one-9: #9ca82d;
      --color-two-9: #e2f344;
}
  
.container-gg067 {
    padding-left: 14px;
    padding-right: 14px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px !important;
}

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

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

.header-gg067 {
    position: absolute;
    top: 20px;
    width: 100%;
    z-index: 3;
}

.navigation {
    display: flex;
    justify-content: space-between;
}

.main-menu {
    display: flex;
    gap: 27px;
}

.menu-item1 {
    border: 5px outset var(--color-one-8);
    background: #e7c862;
    padding: 14px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 23px 50px -12px inset, rgba(0, 0, 0, 0.3) 0px 11px 27px -18px inset, rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.menu-item1:nth-child(odd) {
    margin-bottom: 23px;
}

.menu-item1:nth-child(even) {
    margin-top: 23px;
}

.menu-item1:nth-child(2) {
    animation-duration: 2s;
    animation-delay: 0.5s;  
}

.menu-item1:nth-child(3) {
    animation-duration: 1.5s;
    animation-delay: 1.5s;  
}

.menu-item1:nth-child(4) {
    animation-duration: 3s;
    animation-delay: 1s;  
}


.menu-item1 a {
    color: #391b09;
    font-weight: 700;
    text-shadow: 4px 2px 4px #4d4848;
}

.logo-link-gg067 {
    display: flex;
    gap: 23px;
    font-size: 23px;
    color: yellow;
    text-shadow: 0 0 2px #000;
  -moz-text-shadow: 0 0 2px #000;
  -webkit-text-shadow: 0 0 2px #000;
  animation-duration: 3s;
  animation-delay: 1s;
}
@media screen and (min-width: 576px) and (max-width: 990px) {
    .logo-link-gg067 {
        font-size: 39px;
    }
}


.logo-link-gg067 img {
    max-height: 44px;
}

.close-icon svg,
.menu-icon svg {
    color: yellow;
    width: 40px;
    padding: 3px;
}

.mob-menu-gg067 {
    background: #2acb0c;
    position: absolute;
    width: 100%;
    z-index: 20;
    left: 0%;
    top: 100%;
    margin: 0em 0em;
    transition: transorm 3s ease-in-out;
    transform: translateY(-100%);
}

.mob-menu-gg067__item {
    display: block;
    float: none;
    padding: 1em 0;
    text-align: center;
    border-bottom: 1px solid #fff;
}

.mob-menu-gg067__link {
    color: #fff;
    border: none;
    padding: 0;
}

#burger,
.close-icon,
.mob-menu-gg067 {
    display: none;
}

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

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


#burger:checked + .close-icon {
    display: block;
}

#burger:checked ~ .menu-icon {
    display: none;
}

#burger:checked + .close-icon + .mob-menu-gg067 {
    display: block;
    transform: translateY(0);
}

.floating{ 
    animation-name: floating; -webkit-animation-name: floating; animation-duration: 1.5s; -webkit-animation-duration: 1.5s; animation-iteration-count: infinite; -webkit-animation-iteration-count: infinite; } 
    
    @keyframes floating { 0% { transform: translateY(0%); } 50% { transform: translateY(8%); } 100% { transform: translateY(0%); } } 
    
    @-webkit-keyframes floating { 0% { -webkit-transform: translateY(0%); } 50% { -webkit-transform: translateY(8%); } 100% { -webkit-transform: translateY(0%); } }

.hero-gg067 img {
    z-index: -1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.hero-inner-gg067 {
    text-align: center;
    padding: 150px 0 100px 0;
}

@media screen and (min-width: 768px)  {
    .hero-inner-gg067 {
        padding: 250px 0 100px 0;
        }
}

.hero-inner-gg067 h2 {
    position: relative;
    z-index: 2;
    font-size: 20px;
}

@media screen and (min-width: 576px)  {
    .hero-inner-gg067 h2 {
        animation: 3s linear 1s infinite alternate slidein;
        width: 70%;
        font-size: 39px;
    }
}


@keyframes slidein {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(43%);
    }
}

.pullUp { animation-name: pullUp; -webkit-animation-name: pullUp; animation-duration: 3s; -webkit-animation-duration: 3s; animation-timing-function: ease-out; -webkit-animation-timing-function: ease-out; transform-origin: 50% 100%; -ms-transform-origin: 50% 100%; -webkit-transform-origin: 50% 100%; 
} 

@keyframes pullUp { 0% { transform: scaleY(0.1); } 40% { transform: scaleY(1.02); } 60% { transform: scaleY(0.98); } 80% { transform: scaleY(1.01); } 100% { transform: scaleY(0.98); } 80% { transform: scaleY(1.01); } 100% { transform: scaleY(1); } 
}

 @-webkit-keyframes pullUp { 0% { -webkit-transform: scaleY(0.1); } 40% { -webkit-transform: scaleY(1.02); } 60% { -webkit-transform: scaleY(0.98); } 80% { -webkit-transform: scaleY(1.01); } 100% { -webkit-transform: scaleY(0.98); } 80% { -webkit-transform: scaleY(1.01); } 100% { -webkit-transform: scaleY(1); } }

.steps-gg067 {
    padding-bottom: 100px;
}

 .steps-gg067__list {
    display: flex;
    flex-direction: column;
    gap: 39px;
 }

 @media screen and (min-width: 576px)  {
    .steps-gg067__list {
        flex-direction: row;
        flex-wrap: wrap;
    }
}
@media screen and (min-width: 991px) {
    .steps-gg067__list {
        flex-wrap: nowrap;
    }
}



 .steps-gg067__item {
    position: relative;
 }

 @media screen and (min-width: 576px)  {
    .steps-gg067__item {
        flex: calc(100% / 2 - 39px);
        }
}
@media screen and (min-width: 991px) {
    .steps-gg067__item {
        flex: calc(100% / 4 - 39px);
        }
}


 .steps-gg067__number {
    font-size: 200px;
    text-align: center;
    background-image: linear-gradient(to bottom, #f3a20a, #f7e81a, #f3a20a, #f7e81a);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-box-decoration-break: clone;
  -webkit-text-stroke: 2px #672911;
 }

.steps-gg067__text {
    position: absolute;
    align-content: center;
    align-items: center;
    visibility: visible;
    text-align: center;
    top: 50%;
    color: #fefbf8;
    text-shadow: 0px 2px 12px var(--color-two-8);
}
@media screen and (min-width: 991px) {
    .steps-gg067__text {
        visibility: hidden;
    }

    .steps-gg067__item:hover .steps-gg067__text {
        animation-name: fadeIn; -webkit-animation-name: fadeIn; animation-duration: 1s; -webkit-animation-duration: 1s; animation-timing-function: ease-in-out; -webkit-animation-timing-function: ease-in-out; visibility: visible !important; 
    } 
}


 
@keyframes fadeIn { 
    0% { transform: scale(0); opacity: 0.0; transform: translateY(-50%);} 60% { transform: scale(1.1); } 80% { transform: scale(0.9); opacity: 1; } 100% { transform: scale(1); opacity: 1; } 
} 
@-webkit-keyframes fadeIn { 
    0% { -webkit-transform: scale(0); opacity: 0.0; } 60% { -webkit-transform: scale(1.1); } 80% { -webkit-transform: scale(0.9); opacity: 1; } 100% { -webkit-transform: scale(1); opacity: 1; } 
}

.section-pos {
    position: relative;
    overflow: hidden;
}

.bg-img {
    position: absolute;
    width: 120%;
    z-index: -1;
    transform: rotate(19deg);
    top: 30%;
    left: -10%;
}

.games-gg067_list {
    width: min(100%, 1000px);
    margin: 0 auto;
}

.games-gg067_list li {
    align-content: center;
}

.games-gg067_list li >img {
    max-height: 57px;
    margin: 0 auto;
}

.games-gg067_item {
    border: 18px outset rgba(146, 84, 14);
    background: #e7c862;
    padding: 14px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 23px 50px -12px inset, rgba(0, 0, 0, 0.3) 0px 11px 27px -18px inset, rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px, inset -10px 0px 25px 8px rgba(0, 0, 0, 0.34);
}

.games-gg067_item_header {
    font-size: 20px;
    text-align: center;
}

.games-gg067_item_header a {
    color: var(--color-one-8);
    text-shadow: 9px 2px 12px var(--color-two-8);
}

.games-gg067_item:hover .games-gg067_item_header a {
    animation-name: bounce; -webkit-animation-name: bounce; animation-duration: 1.6s; -webkit-animation-duration: 1.6s; animation-timing-function: ease; -webkit-animation-timing-function: ease; transform-origin: 50% 100%; -ms-transform-origin: 50% 100%; -webkit-transform-origin: 50% 100%; 
} 

@keyframes bounce { 
    0% { transform: translateY(0%) scaleY(0.6); } 60%{ transform: translateY(-100%) scaleY(1.1); } 70%{ transform: translateY(0%) scaleY(0.95) scaleX(1.05); } 80%{ transform: translateY(0%) scaleY(1.05) scaleX(1); } 90%{ transform: translateY(0%) scaleY(0.95) scaleX(1); } 100%{ transform: translateY(0%) scaleY(1) scaleX(1); } 
} 

@-webkit-keyframes bounce { 
    0% { -webkit-transform: translateY(0%) scaleY(0.6); } 60%{ -webkit-transform: translateY(-100%) scaleY(1.1); } 70%{ -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05); } 80%{ -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1); } 90%{ -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1); } 100%{ -webkit-transform: translateY(0%) scaleY(1) scaleX(1); } 
} 


.games-gg067_item_content p {
    color: #4c584e;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.games-gg067_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.games-gg067_item_img {
    visibility: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.games-gg067_item:hover {
    transform: rotate(0);
}

.games-gg067_item:hover .games-gg067_item_img img {
animation-name: fadeIn; -webkit-animation-name: fadeIn; animation-duration: 2s; -webkit-animation-duration: 2s; animation-timing-function: ease-in-out; -webkit-animation-timing-function: ease-in-out; visibility: visible !important; 
} 

@keyframes fadeIn { 0% { transform: scale(0); opacity: 0.0; } 60% { transform: scale(1.1); } 80% { transform: scale(0.9); opacity: 1; } 100% { transform: scale(1); opacity: 1; } 
} 

@-webkit-keyframes fadeIn { 0% { -webkit-transform: scale(0); opacity: 0.0; } 60% { -webkit-transform: scale(1.1); } 80% { -webkit-transform: scale(0.9); opacity: 1; } 100% { -webkit-transform: scale(1); opacity: 1; } } 
    
.parent {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    grid-template-rows: repeat(11, 1fr);
    gap: 5px;
}
    
.div1 {
    grid-row: span 3 / span 3;
}

.div2 {
    grid-column-start: 2;
    grid-row-start: 2;
}

.div3 {
    grid-row: span 3 / span 3;
    grid-column-start: 3;
    grid-row-start: 1;
}

.div4 {
    grid-row-start: 4;
}

.div5 {
    grid-column-start: 3;
    grid-row-start: 4;
}

.div6 {
    grid-row: span 3 / span 3;
    grid-row-start: 5;
}

.div7 {
    grid-column-start: 2;
    grid-row-start: 6;
}

.div8 {
    grid-row: span 3 / span 3;
    grid-column-start: 3;
    grid-row-start: 5;
}

.div9 {
    grid-row-start: 8;
}

.div10 {
    grid-column-start: 3;
    grid-row-start: 8;
}

.div11 {
    grid-row: span 3 / span 3;
    grid-row-start: 9;
}

.div12 {
    grid-column-start: 2;
    grid-row-start: 10;
}

.div13 {
    grid-row: span 3 / span 3;
    grid-column-start: 3;
    grid-row-start: 9;
}

@media screen and (max-width: 575px)  {
    .parent {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(23, 1fr);
        gap: 5px;
    }
        
    .div1 {
        grid-column-start: 1;
        grid-row: span 3 / span 3;
    }
    
    .div2 {
        grid-column-start: 1;
        grid-row-start: 4;
    }
    
    .div3 {
        grid-row: span 3 / span 3;
        grid-column-start: 1;
        grid-row-start: 5;
    }
    
    .div4 {
        grid-column-start: 1;
        grid-row-start: 8;
    }
    
    .div5 {
        display: none;
    }
    
    .div6 {
        grid-row: span 3 / span 3;
        grid-column-start: 1;
        grid-row-start: 9;
    }
    
    .div7 {
        grid-column-start: 1;
        grid-row-start: 12;
    }
    
    .div8 {
        grid-row: span 3 / span 3;
        grid-column-start: 1;
        grid-row-start: 13;
    }
    
    .div9 {
        grid-column-start: 1;
        grid-row-start: 16;
    }
    
    .div10 {
        display: none;
    }
    
    .div11 {
        grid-row: span 3 / span 3;
        grid-column-start: 1;
        grid-row-start: 17;
    }
    
    .div12 {
        grid-column-start: 1;
        grid-row-start: 20;
    }
    
    .div13 {
        grid-row: span 3 / span 3;
        grid-column-start: 1;
        grid-row-start: 21;
    }
    
}

.fog {
    position: relative;
    width: 100%;
    background: #fff;
    background: linear-gradient(to top, #00000070, #00000070), url("mediamansion/background/bg-dark-068d52f7343c08.jpg");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    border: 11px outset rgba(146, 84, 14);
    margin: 145px 0;
  }

  .fog-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
  }
  
  .fog-img {
    position: absolute;
    height: 100%;
    width: 300vw;
    z-index: 2;
  }
  
  .fog-img-first {
    background: url("picture/img/fog-1.png");
    background-repeat: repeat-x;
    background-size: contain;
    background-position: center;
    animation: marquee 60s linear infinite;
  }
  
  .fog-img-second {
    background: url("picture/img/fog-2.png");
    background-repeat: repeat-x;
    background-size: contain;
    background-position: center;
    animation: marquee 30s linear infinite;
  }
  
  @keyframes marquee {
    0% {
      transform: translate3d(0, 0, 0);
    }
  
    100% {
      transform: translate3d(-200vw, 0, 0);
    }
  }

  .fog .about-text-wrapp {
    text-align: center;
    margin: 100px auto;
  }

  @media screen and (min-width: 576px) {
    .fog .about-text-wrapp {
        max-width: 60%;
    }
}


  .fog .about-text-wrapp .about-txt{
    color: #fefbf8;
    text-shadow: 0px 2px 12px var(--color-two-8);
        margin-bottom:23px;
  }

  .fog .about-text-wrapp .img-group {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 27px;
  }

  .fog .about-text-wrapp .img-group img {
    height: 100%;
    max-height: 57px;
  }

  .fog .about-text-wrapp a {
    z-index: 1;
  }

.section-pad {
    padding: 104px 0;
}
.faq {
    background-image: url(mediamansion/tematik-assets/liana-068d52f7343f80.svg);
    background-repeat: no-repeat;
    background-position-y: bottom;
    direction: initial;
}
@media screen and (min-width: 991px) {
    .faq {
        background-size: 50%;
    }
}
@media screen and (max-width: 575px) {
    .faq {
        display: none;
    }
}

.flex-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
@media screen and (min-width: 991px) {
    .flex-container {
        flex-direction: row;
    }
}

.wrapper {
    position: relative;
    width:  50vw;
  }
  
  @media (width <=991px){
    .wrapper{
      width: 80vw;
    }
  }
  
  @media (width <=650px){
    .wrapper{
      width: 95vw;
    }
  }
  
  input[name="tip"] {
    position: absolute;
    left: -39px;
    opacity: 0;
  }
  
  input[name="tip"]:nth-child(1) {
    top: 0;
  }
  
  input[name="tip"]:nth-child(2) {
    top: 30px;
  }
  
  input[name="tip"]:nth-child(3) {
    top: 60px;
  }
  
  #tip1:checked ~ .tips #desc1,
  #tip2:checked ~ .tips #desc2,
  #tip3:checked ~ .tips #desc3 {
    color: #000;
  
   
  }

  #tip1:checked ~ .tips #desc1:before,
  #tip2:checked ~ .tips #desc2:before,
  #tip3:checked ~ .tips #desc3:before {
    box-shadow: var(--color-two-8) 19px 4px 16px, var(--color-two-8) 0px 6px 6px;
  }


  #tip1:checked ~ .tips #desc1 > .tip_item__wrapper,
  #tip2:checked ~ .tips #desc2 > .tip_item__wrapper,
  #tip3:checked ~ .tips #desc3 > .tip_item__wrapper {
    transition: .2s ease-in;
    width: 100%;
    z-index: 1;
    background-color: #272716;
    color: #fff;
    border-radius: 0px;
    max-height: initial;
    height: calc(60vh + 40px);
    overflow-y: auto;
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    border: 5px outset #512f0a;
  }
  
  
  #tip1:checked ~ .tips #desc1 > .tip_item__wrapper {
    transform: translate(calc(-100% - 20px), 0);
  }
  
  #tip2:checked ~ .tips #desc2 > .tip_item__wrapper {
    transform: translate(calc(-100% - 20px), calc(-20vh - 20px));
  }
  
  #tip3:checked ~ .tips #desc3 > .tip_item__wrapper {
    transform: translate(calc(-100% - 20px), calc(-40vh - 40px));
  }
  
  
  .tips {
    display: grid;
    grid-gap: 23px;
    grid-template-columns: 1fr 1fr;
  }
  
  .tips_big {
    position: relative;
    grid-row: 1 / 4;
    grid-gap: 23px;
    border-radius: 0px;
    z-index: -2;
  }
  
  .tips_item {
    position: relative;
    grid-column: 2 / -1;
    height: 20vh;
    border-radius: 0px;
    background-color: #000;
    cursor: pointer;
    z-index: 2;
    box-sizing: border-box;
  
  }

  .tips_item:after {
    content: attr(data-text);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    text-align: center;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 22px;
    font-weight: 700;
    text-shadow: 1px 1px 0 white,
    -1px -1px 0 white,
    1px -1px 0 white,
    -1px 1px 0 white;
  }

  .tips_item:before {
    content: '';
    position: absolute;
    background-color: #000;
    width: 100%;
    height: calc(100% + 1px);
    z-index: 1;
    border-radius: 0px;
  }

  
  .tip_item__wrapper {
    box-sizing: border-box;
    transition: .2s ease-in;
    width: 100%;
    max-height: 100%;
    will-change: transform;
    overflow: hidden;
    padding: 14px 23px;
    position: absolute;
    left: 0;
    transform-origin: 50% 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: -1;
    scrollbar-width: thin;
    scrollbar-color: #565348 #1a1a17;
  }  
  
.tip_item__title {
    margin: 0 auto 10px;
    font-size: 22px;
  }
  
  .tip_item__img {
    position: absolute;
    width: 100%;
    object-fit: cover;
    z-index: 2;
    border-radius: 0px;
    max-height: 20vh;
    filter: blur(2px);
  }

.df-section {
    background-image: url(mediamansion/tematik-assets/liana-168d52f7343fae.svg);
    background-position: right center;
    background-repeat: no-repeat;
    margin: 100px 0 42px;
    direction: initial;
}
@media screen and (min-width: 991px) {
    .df-section {
        background-size: 60%;
    }
}

.flex {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 39px;
}

@media screen and (min-width: 991px) {
    .flex {
        flex-direction: row;
        gap: unset;
    }
}


.disclamer-container {
    padding: 42px 12px;
    min-height: 380px;
    text-align: center;
    font-size: 22px;
    line-height: 1.2;
    color: #fefbf8;
    text-shadow: 0px 2px 12px var(--color-two-8);
    background-image: linear-gradient(to top, #00000070, #00000070), url(mediamansion/background/bg-dark-168d52f7343c48.jpg);
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}
@media screen and (min-width: 991px) {
    .disclamer-container {
        flex: 1;
        padding: 100px 50px;
        }
}


.disclamer-content-gg067 {
    width: min(100%, 550px);
    margin: 0 auto;
    animation-name: hatch; -webkit-animation-name: hatch; animation-duration: 2s; -webkit-animation-duration: 2s; animation-timing-function: ease-in-out; -webkit-animation-timing-function: ease-in-out; transform-origin: 50% 100%; -ms-transform-origin: 50% 100%; -webkit-transform-origin: 50% 100%; visibility: visible !important; 
    animation-iteration-count: infinite;
}


@keyframes hatch { 0% { transform: rotate(0deg); } 20% { transform: rotate(-2deg) scaleY(1.05); } 35% { transform: rotate(2deg) scaleY(1); } 50% { transform: rotate(-2deg); } 65% { transform: rotate(1deg); } 80% { transform: rotate(-1deg); } 100% { transform: rotate(0deg); } 
}

@-webkit-keyframes hatch { 0% { -webkit-transform: rotate(0deg); } 20% { -webkit-transform: rotate(-2deg) scaleY(1.05); } 35% { -webkit-transform: rotate(2deg) scaleY(1); } 50% { -webkit-transform: rotate(-2deg); } 65% { -webkit-transform: rotate(1deg); } 80% { -webkit-transform: rotate(-1deg); } 100% { -webkit-transform: rotate(0deg); } }

.form-wrapper {
    flex: 1;
    margin-top: 27px;
    padding: 0 50px;
}
@media screen and (max-width: 500px) {
    .form-wrapper {
        padding: 0 18px;
    }
}



.input-inputblock__group,
.textarea-inputblock__group,
.form-control-custom {
    display: block;
    width: 100%;
    line-height: 1.25;
    font-size: 14px;
    font-weight:700;
    background: #e7c862;
    padding: 14px 23px;
    margin: 5px 0;
    height: auto;
    transition: 0.2s all;
    border: 5px outset rgba(146, 84, 14);
    outline: none;
    color: #4c584e;
}

.input-inputblock__group::placeholder,
.textarea-inputblock__group::placeholder,
.form-control-custom::placeholder {
    font-size: 14px;
    color: var(--white);
}

.form-gg067 label {
    font-size: 14px;
    color: #fefbf8;
    text-shadow: 0px 2px 12px var(--color-two-8);
    letter-spacing: 1px;
    margin-top: 18px;
    display: inline-block;
}

.form-gg067-check {
    margin-bottom: 27px;
}

.form-gg067-check-input a {
    color: var(--color-one-6);
}

.foo {
    position: relative;
}
  
  footer {
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-end;
    padding: 5rem 2vw;
    position: relative;
  }
  
  footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(#291a0b00 5%, #291a0b4d 20%, #291a0b99 30%, #291a0bcc 40%, #291a0b 50%, #291a0b);
    z-index: -7;
  }
  
  .backdrop {
    z-index: -5;
    position: absolute;
    inset: 0;
  
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
  
    mask-image: linear-gradient(#291a0b00, #291a0b80 10%, #291a0bcc 20%, #291a0b 30%, #291a0b);
  
    -webkit-mask-image: linear-gradient(#291a0b00, #291a0b80 10%, #291a0bcc 20%, #291a0b 30%, #291a0b);
  }
  
  .col {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 23px;
    width: 28%;
  }

  .adult {
    width: 80px;
    margin-top: 27px;
}

  
  .col2,
  .col3 {
    background-color: #e7c862;
    text-align: left;
  }

  .col2 a::after,
  .col3 a::after {
    content: '';
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3e%3cpath d='M4 18.0001H9.5V19.2501C9.5 20.7688 8.26878 22.0001 6.75 22.0001C5.23122 22.0001 4 20.7688 4 19.2501V18.0001ZM8 6.12067C10 6.12067 11 9.00006 11 11.0001C11 12.0001 10.5 13.0001 10 14.5001L9.5 16.0001H4C4 15.0001 3.5 13.5001 3.5 11.0001C3.5 8.50006 5.49783 6.12067 8 6.12067ZM20.054 14.0984L19.8369 15.3294C19.5732 16.8251 18.1468 17.8238 16.6511 17.5601C15.1554 17.2964 14.1567 15.87 14.4205 14.3743L14.6375 13.1433L20.054 14.0984ZM18.1776 1.70488C20.6417 2.13938 22.196 4.82954 21.7619 7.29156C21.3278 9.75358 20.5749 11.144 20.4013 12.1288L14.9848 11.1737L14.7529 9.60967C14.5209 8.04564 14.2022 6.974 14.3758 5.9892C14.7231 4.01958 16.2079 1.35759 18.1776 1.70488Z'%3e%3c/path%3e%3c/svg%3e"); 
    background-size: contain; 
    width: 23px;
    height:23px;
    opacity: 0;
    animation: foot 2s infinite;
}

.col2 li:nth-child(4) a::after,
.col3 li:nth-child(4) a::after {
    animation-delay: .2s;
}

.col2 li:nth-child(3) a::after,
.col3 li:nth-child(3) a::after {
    animation-delay: .5s;
}
.col2 li:nth-child(2) a::after,
.col3 li:nth-child(2) a::after {
    animation-delay: .6s;
}
.col2 li:nth-child(1) a::after,
.col3 li:nth-child(1) a::after {
    animation-delay: .8s;
}


  
  .link-foo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 23px;
  }

  @keyframes foot {
    0% {
        opacity: 0;
    }
    40% {
        opacity: 0;
    }
    60% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }

  }
  
  
  @media screen and (max-width: 500px) {
    footer {
      flex-direction: column;
      gap: 23px;
    }
    .col {
      width: 100%;
    }
  }

  @media screen and (min-width: 501px) and (max-width: 767px) {
    footer {
      gap: 23px;
      flex-wrap: wrap;
    }
    .col1 {
      width: 100%;
    }
    .col2,
    .col3 {
        width: calc((100% - 20px) / 2);
    }
  }

  @media screen and (min-width: 768px) and (max-width: 990px) {
    footer {
        justify-content: space-between;
    }
  }

.game-gg067 {
    border: 18px outset rgba(146, 84, 14);
    background: #e7c862;
    padding: 14px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 23px 50px -12px inset, rgba(0, 0, 0, 0.3) 0px 11px 27px -18px inset, rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px, inset -10px 0px 25px 8px rgba(0, 0, 0, 0.34);
}
.rand-igra-section{
    display: flex;
    flex-direction: column-reverse;
}
.privacy-blocke{
    padding: 100px 0;
}
.page-gg067-img {
    width: min(100%, 550px);
   
    margin: 0 auto;
}
@media screen and (min-width: 991px) {
    .page-gg067-img {
        float: right;
        margin: 42px;
    }
}
.page-gg067-img {
    height: 400px;
    object-fit: contain;
}


.game-gg067_title {
    font-size: 20px;
    text-align: center;
    color: var(--color-one-8);
    text-shadow: 9px 2px 12px var(--color-two-8);
    margin-top: 42px;
    position: relative;
    z-index: 1;
    animation-name: hatch; -webkit-animation-name: hatch; animation-duration: 2s; -webkit-animation-duration: 2s; animation-timing-function: ease-in-out; -webkit-animation-timing-function: ease-in-out; transform-origin: 50% 100%; -ms-transform-origin: 50% 100%; -webkit-transform-origin: 50% 100%; visibility: visible !important; 
    animation-iteration-count: infinite;
}

.game-gg067_content {
    color: #4c584e;
    text-shadow: -12px 2px 75px #377939;
    margin:18px;
}

.game-frame-gg067 {
    border: 5px outset rgba(146, 84, 14);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 23px 50px -12px inset, rgba(0, 0, 0, 0.3) 0px 11px 27px -18px inset, rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px, inset -10px 0px 25px 8px rgba(0, 0, 0, 0.34);
    height: 100vh;
    
    iframe{
        width: 100%;
        height: 100vh;
    }
}

.game-now {
    display: flex;
    height: 104px;
    align-items: center;
    justify-content: center;
}

.game-now h3 {
    font-size:42px;
    color: #e7e8e1;
    text-shadow: 9px 2px 12px var(--color-two-8);
    animation-name: hatch;
    -webkit-animation-name: hatch;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
    visibility: visible !important;
    animation-iteration-count: infinite;
}

.game-now > div {
    width: 100px;
    height: 600px;
    position: relative;
}


.arrow {
    opacity: 0;
    position: absolute;
        left: 50%;
        top: 50%;
    transform-origin: 50% 50%;
    transform: translate3d(-50%, -50%, 0);
}

.arrow-first {
    animation: arrow-movement 2s ease-in-out infinite;
}
.arrow-second {
    animation: arrow-movement 2s 1s ease-in-out infinite;
}

.arrow:before,
.arrow:after {
    background: #fff;
    content: '';
    display: block;
    height: 3px; 
    position: absolute;
        top: 0;
        left: 0;
    width: 30px;
    box-shadow: var(--color-two-8) 0px -3px 4px, var(--color-two-8) 0px -9px 6px;
}

.arrow:before {
    transform: rotate(45deg) translateX(-23%);
    transform-origin: top left;
}

.arrow:after {
    transform: rotate(-45deg) translateX(23%);
    transform-origin: top right;
}

@keyframes arrow-movement {
    0% { 
        opacity: 0;
        top: 45%;
    }
    70% {
        opacity: 1;
    }
    100% { 
        opacity: 0;
    }
}

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

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

.contact_i {
    background-color: transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 27px;
    padding: 27px;
    z-index: 1;
    flex: 1;
    color: var(--white);
}

.contact_i::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    color:#3f2525a9;
    color: #291502;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(2px 1px 8px #291502);

}

.contact_i:nth-child(1):before {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3e%3cpath d='M441.6 171.61L266.87 85.37a24.57 24.57 0 00-21.74 0L70.4 171.61A40 40 0 0048 207.39V392c0 22.09 18.14 40 40.52 40h335c22.38 0 40.52-17.91 40.52-40V207.39a40 40 0 00-22.44-35.78z' fill='none' stroke='%233f2525a9' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'/%3e%3cpath d='M397.33 368L268.07 267.46a24 24 0 00-29.47 0L109.33 368M309.33 295l136-103M61.33 192l139 105' fill='none' stroke='%233f2525a9' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'/%3e%3c/svg%3e");
}

.contact_i:nth-child(2):before {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3e%3cpath d='M448 256c0-106-86-192-192-192s64 150 64 256s86 192 192 192 192-86 192-192z' fill='none' stroke='%233f2525a9' stroke-miterlimit='10' stroke-width='32'/%3e%3cpath d='M350.67 150.93l-117.2 46.88a64 64 0 00-35.66 35.66l-46.88 117.2a8 8 0 0010.4 10.4l117.2-46.88a64 64 0 0035.66-35.66l46.88-117.2a8 8 0 00-10.4-10.4zM256 280a24 24 0 1124-24 24 24 0 01-24 24z' fill='%233f2525a9' /%3e%3c/svg%3e");
}

.contact_i:nth-child(3):before {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3e%3cpath d='M451 374c-15.88-16-54.34-39.35-73-48.76-24.3-12.24-26.3-13.24-45.4.95-12.74 9.47-21.21 17.93-36.12 14.75s-47.31-21.11-75.68-49.39-47.34-61.62-50.53-76.48 5.41-23.23 14.79-36c13.22-18 12.22-21 .92-45.3-8.81-18.9-32.84-57-48.9-72.8C119.9 44 119.9 47 108.83 51.6A160.15 160.15 0 0083 65.37C67 76 58.12 84.83 51.91 98.1s-9 44.38 23.07 102.64 54.57 88.05 101.14 134.49S258.5 406.64 310.85 436c64.76 36.27 89.6 29.2 102.91 23s22.18-15 32.83-31a159.09 159.09 0 0013.8-25.8C465 391.17 468 391.17 451 374z' fill='none' stroke='%233f2525a9' stroke-miterlimit='10' stroke-width='32'/%3e%3c/svg%3e");
}

.contact_i .title {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
    font-size: 32px;
}

.contact_i .text {
    display: block;
    line-height: normal;
    margin: 0 auto;
    font-weight:700;
    font-size: 18px;
    text-shadow: 9px 2px 12px var(--color-two-8);
    font-size: 27px;
    color: yellow;
}
.contact_i a {
    word-break: break-all;
}
.form-gr {
    position: relative;
    flex: 80%;
}

@media screen and (min-width: 768px) {
    .form-group {
        flex: 48%;
    }
}

.box_wrap {
    background-image: url(mediamansion/tematik-assets/svg_dinosaur-068d52f7343f1a.svg);
    background-position: bottom right;
    background-size: contain;
    background-repeat: no-repeat;
}
.privacy {
    word-break: break-all;
}
.privacy li {
    margin-left: 27px;
    list-style: square;
}
@media (max-width:576px) {
    .page-gg067-img {
        height: auto;
    }
    .game-gg067_title {
        font-size: 18px;
    }
}

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

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

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