@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

html {
  scroll-behavior: smooth;
}

body{
  background-attachment: fixed;
  direction: ltr;
  font-family: 'Chakra Petch', sans-serif !important;
  font-size: 16px;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

body > div {
  background-color: #f5d810;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0;
}

.list {
    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 {
    cursor: pointer;
}

.main {
  position: relative;
  z-index: 1;
  margin-bottom: 0!important; 
  background: #fff; 
}
.footer-linkImg {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

.footer-linkImg a img {
  max-height: 50px;
  width: auto;
  display: block;
  box-sizing: content-box;
  background-color: #38247f;
}
@media (max-width: 575px){
  .footer-linkImg a img{
        max-height: 30px;
  }}

footer {

  background: linear-gradient(to bottom, #f5d810, #f7ec54);
}

@media screen and (max-width: 767px) {
  .main {
    margin-bottom: 0; 
  }
  footer {
    position: relative;
  }
}



.container-g16 {
  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-g16 {
      padding-left: 16px;
      padding-right: 16px;
  }
}

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

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

:root {
  --border-radius-s: 120px 0 120px 0;
  --border-radius-m: 131px 0 131px 0;
  --border-radius-l: 233px 0 233px 0;
  --main-shadow: 4px 3px 12px 0px rgba(72, 55, 128, 1);


  --main-color: #a63434;
  --dark-color: #080101;
  --light-color: #f8f5f1;
  --gold: #EFBF04;
  --white: #fff;
}

.title-g16 {
  background: linear-gradient(to right, #4da9f5, #282882);    
  border-radius: 120px 8px 120px 8px;
  display: inline-block;
  padding: 8px 25px;
  box-shadow: 7px 3px 26px -1px rgba(227, 248, 250, 0.8), -7px 0px 34px 10px rgba(250, 252, 252, 0.5);
}

.title-g16 h2 {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  word-break: break-word;
  text-align: right;
  display: inline-block;
}

@media screen and (min-width: 576px) {
  .title-g16 h2 {
    font-size: 27px;
  }
}

@media screen and (min-width: 991px) {
  .title-g16 {
    border-radius: 233px 8px 233px 8px;
    padding: 8px 120px;
  }
  .title-g16 h2 {
    font-size: 29px;
  }
}

.menu-trigger {
  position: fixed;
  top: 0;
  left: 0;
  width: 50px;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: #2faae0;
}
.menu-trigger:hover, .menu-trigger.active {
  border-right: none;
}
.menu-trigger.active > .bars > span:first-of-type, .menu-trigger.active > .bars > span:last-of-type {
  transform: translateY(-5px);
  opacity: 0;
}
.menu-trigger:hover > .bars > span:nth-of-type(2), .menu-trigger.active > .bars > span:nth-of-type(2) {
  transform: scaleY(1.2);
  transform-origin: center bottom;
}
.menu-trigger.active > .menu {
  transform: translateX(50px);
}
@media screen and (min-width: 576px) {
  .menu-trigger:hover > .menu {
    transform: translateX(50px)
  }
  .menu-trigger:hover > .bars > span:first-of-type, .menu-trigger:hover > .bars > span:last-of-type {
    transform: translateY(-5px);
    opacity: 0;
  }
}

.menu-trigger:hover > .menu > ul > li > a,
.menu-trigger.active > .menu > ul > li > a  {
  transform: translateY(0);
  color: #383664;
}

.menu-trigger:hover > p,
.menu-trigger.active > p {
  transform: translateY(40px) rotate(-90deg);
  opacity: 1;
}
.menu-trigger > p {
  color: #555454;
  transform: translateY(60px) rotate(-90deg);
  margin-top: 30px;
  font-weight: bold;
  letter-spacing: 0.12rem;
  transition: all 0.4s ease;
  position: absolute;
  opacity: 0;
  font-size: 0.9rem;
  z-index: 10;
}

.bars {
  display: flex;
  width: 50%;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}
.bars > span {
  width: 4px;
  height: 40px;
  background: #666;
  transition: all 0.4s ease;
}

.menu {
  position: absolute;
  top: 0;
  left: 0;
  background: #35cbef;
  height: 100%;
  border-right: 1px solid #444;
  transform: translateX(calc(-100% + 51px));
  transition: all 0.8s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  padding: 50px 100px 50px 50px;
  will-change: transform;
}
.menu > ul:hover > li:not(:hover) {
  color: rgba(249, 249, 237, 0.5);
}
.menu > ul > li {
  color: #f9f9ed;
  font-size:  21px;
  cursor: pointer;
  padding: 10px 0;
  overflow: hidden;
}
.menu > ul > li:first-of-type {
  padding-top: 0;
}
.menu > ul > li:last-of-type {
  padding-bottom: 0;
}
.menu > ul > li:nth-of-type(1) > a {
  transition: transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.1s, color 0.2s ease;
}
.menu > ul > li:nth-of-type(2) > a {
  transition: transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.2s, color 0.2s ease;
}
.menu > ul > li:nth-of-type(3) > a {
  transition: transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s, color 0.2s ease;
}
.menu > ul > li:nth-of-type(4) > a {
  transition: transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.4s, color 0.2s ease;
}
.menu > ul > li:nth-of-type(5) > a {
  transition: transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s, color 0.2s ease;
}
.menu > ul > li > a {
  transform: translateY(calc(100% + 10px));
}

@media screen and (max-width: 575px) {
  .menu-trigger {
    width: 30px;
  }
  .menu-trigger.active > .menu {
    transform: translateX(30px);
  }
  .menu {
    padding: 20px 40px 20px 20px;
    transform: translateX(calc(-100% + 31px));
  }
  .menu > ul > li {
    font-size: 1.5rem;
  }  
}

.hero-g16 {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(to top, #057deea1, #057deea1), url(mediamansion/dir-bg/bg-light-0688a35859061d.jpg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  padding: 60px 0 120px 0;
}

.gms-frame iframe{
  width: 100%;
  height: 100vh;
}
.hero-g16 .dec-wave{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.dec-wave svg {
  display: block;
}

.hero-g16-content {
  gap: 72px;
}

.hero-g16-title {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.logo-g16__link {
  flex-direction: column;
  font-size: clamp(46px, 10vw, 63px);
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.logo-g16__link .name {
  color: var(--white);
  word-break: break-word;
  font-weight: 800;
  -webkit-text-stroke:  3px var(--white);
  -webkit-text-fill-color: transparent;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .logo-g16__link .name {
    font-size: 27px;
  }
}

.logo-g16__img {
  border-radius: 0%;
  border:  3px solid var(--white);
  padding: 22px;
}

.logo-g16__link img {
  max-height: 150px;
}

.wrapper {
  width: 100%;
}

.wrapper svg {
	width: 100%; 
  height: 100%;
}
.wrapper svg text {
	animation: stroke 5s infinite alternate;
	stroke-width: 2;
	stroke: var(--white);
  font-size: clamp(46px, 10vw, 63px);
}

@keyframes stroke {
	0%   {
		fill: transparent; stroke: var(--white);
		stroke-dashoffset: 25%; stroke-dasharray: 0 50%; stroke-width: 1;
	}
	70%  {fill: transparent; stroke: var(--white); }
	80%  {fill: transparent; stroke: var(--white); stroke-width: 2; }
	100% {
		fill: var(--white); stroke: rgba(54,95,160,0);
		stroke-dashoffset: -25%; stroke-dasharray: 50% 0; stroke-width: 0;
	}
}

.hero-img-block {
  flex: 1;
}

.hero-img-block img {
  width: 100%;
  border-radius: var(--border-radius-m);
  box-shadow: 4px 3px 12px 0px rgba(72, 55, 128, 1);
  height: 458px;
  object-fit: cover;
}
@media screen and (min-width: 1200px) {
  .hero-g16 .container-g16 {
    padding-bottom: 70px; 
  }
}
@media screen and (max-width: 575px) {
  .hero-g16 {
    padding: 42px 0;
  }
  .hero-img-block {
    display: none;
  }
}

.about-us {
  background-image: linear-gradient(to bottom, #388ce1, #6a9cf4);
  padding: 104px 0;
}

.about-us > .flex {
  gap: 72px;
}

.big-element {
  flex: 1;
  min-height: 458px;
  position: relative;
}

.about-image-wrap {
  height: 90%;
  width: calc((100% - 50px) * 0.9);
  margin: 0 50px;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--main-shadow);
  border-radius: var(--border-radius-l);
  max-height: 614px;
}

.small-img {
  position: absolute;
  bottom: 0;
  right: 8px;
  width: 36%;
  height: 36%;
  border-radius: var(--border-radius-s);
  box-shadow: var(--main-shadow);
  object-fit: cover;
}

.big-element.row-reverce {
  display: flex;
  flex-direction: row-reverse;
}

.content-about {
  max-width: calc(600px - 72px / 2);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 25px;
}

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

.benefits-g16 {
  flex-wrap: wrap;
  gap: 39px 25px;
}

.benefits-g16__item {
  display: flex;
  flex: calc((100% - 39px) / 2);
  gap: 16px;
}

.benefits-g16-icon div {
  background-color: #35cbef;
  aspect-ratio: 1;
  width: 18px;
  border-radius: 8px 0 8px 0;
}

.benefits-g16-icon svg {
  display: block;
  width: 140%;
  height: 140%;
  fill: var(--white);
}

.benefits-g16__item p {
  margin: 0;
  color: var(--white);
}

@media screen and (max-width: 575px) {
  .big-element {
    min-height: unset;
  }  
  .about-image-wrap {
    height: unset;
    width: 100%;
    margin: unset;
  }
  .small-img {
    display: none;
  }
  .about-image-wrap img {
    border-radius: var(--border-radius-s);
    max-height: 614px;
  }
}

@media screen and (max-width: 767px) {
  .about-us > .flex {
    flex-direction: column;
  }
}

@media screen and (max-width: 990px) {
  .about-image-wrap {
    width: 100%;
    margin: unset;
  }
  .benefits-g16 {
    flex-wrap: nowrap;
    flex-direction: column;
  }  
}

@media screen and (min-width: 576px) and (max-width: 990px) {
  .small-img {
    width: 60%;
  }
}

.catalog-g16 {
  position: relative;
  background-image: linear-gradient(to bottom, #6a9cf4, #62f1e28a, #6a9cf4), url(mediamansion/tematik/school-fish-0688a358590ae6.svg);
  background-repeat: repeat-x;
  background-position-y: 50%;
  background-size: 43%;
  padding: 120px 0;
  overflow: hidden;
}

.catalog-g16.one {
  background-image: linear-gradient(to bottom, #388ce1, #62f1e28a, #388ce1), url(mediamansion/tematik/school-fish-0688a358590ae6.svg);
}

.decor-1 {
  position: absolute;
  right: 22px;
  top: 3%;
  width: 402pxpx;
  max-height: 402pxpx;
  z-index: -1;
}

.catalog-g16 .title-g16,
.testim .title-g16 {
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  margin-bottom: 40px;
}

.catalog-g16__list {
  flex-wrap: wrap;
  gap: 40px;
}

.catalog-g16__item {
  width: 100%;
  border-radius: 22px 0 89px 0;
  background: linear-gradient(135deg, #131385, #1386cc);
}

.catalog-g16__img-wr {
  flex: 1.5;
}

.catalog-g16__img-wr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 253px;
  border-radius: var(--border-radius-s);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.catalog-g16__disc {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 25px;
  justify-content: space-between;
}

.catalog-g16__disc h3 {
  color: var(--white);
  line-height: 1.5;
  font-size: 20px;
}

.stars {
  text-align: right;
  font-size: 21px;
  color: #ffdb4f;
}

.catalog-g16__disc p {
  margin: 0;
}

@media screen and (min-width: 576px) {
  .catalog-g16__item {
    flex-direction: column;
    flex: calc((100% - 40px) / 2);
    border-radius: 22px 0 120px 0;
  }
  .catalog-g16__disc h3 {
    font-size: 21px;
  }
}
@media screen and (min-width: 768px) {
  .catalog-g16__item {
    flex-direction: row;
  }
  .catalog-g16__disc h3 {
    font-size: 27px;
  }
  .catalog-g16__img-wr img {
    max-height: 317px;
  }
}

.testim {
  background-image: linear-gradient(180deg, #6a9cf4, #6a9cf4c9 12%, #1216879e 43%, #6a9cf3ad, #6a9cf4), url(mediamansion/dir-bg/bg-dark-0688a3585906a2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  direction: initial;
}

.testim .wrap {
  position: relative;
  width: 100%;
  max-width: 1020px;
  padding: 39px 0;
  margin: auto;
}

.testim .arrow {
  display: block;
  position: absolute;
  color: var(--white);
  cursor: pointer;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .3s ease-in-out;    
  -ms-transition: all .3s ease-in-out;    
  -moz-transition: all .3s ease-in-out;    
  -o-transition: all .3s ease-in-out;    
  transition: all .3s ease-in-out;
  padding: 8px;
  z-index: 1;
  width: 69px;
}

@media screen and (max-width: 768px) {
  .testim .arrow {
    display: none;
  }
}


.testim .arrow:before {
  cursor: pointer;
}

.testim .arrow:hover {
  color: #ffdb4f;
}
  

.testim .arrow.left {
  left: 12px;
}

.testim .arrow.right {
  right: 12px;
}

.testim .dots {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  display: block;
  z-index: 3333;
  height: 12px;
  padding: 0;
}

.testim .dots .dot {
  list-style-type: none;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #eee;
  margin: 0 12px;
  cursor: pointer;
  -webkit-transition: all .5s ease-in-out;    
  -ms-transition: all .5s ease-in-out;    
  -moz-transition: all .5s ease-in-out;    
  -o-transition: all .5s ease-in-out;    
  transition: all .5s ease-in-out;
  position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
  background: #ffdb4f;
  border-color: #ffdb4f;
}

.testim .dots .dot.active {
  -webkit-animation: testim-scale .5s ease-in-out forwards;   
  -moz-animation: testim-scale .5s ease-in-out forwards;   
  -ms-animation: testim-scale .5s ease-in-out forwards;   
  -o-animation: testim-scale .5s ease-in-out forwards;   
  animation: testim-scale .5s ease-in-out forwards;   
}
  
.testim .cont {
  position: relative;
  overflow: hidden;
}

.testim .cont > div {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 0 12px 0;
  opacity: 0;
}

.testim .cont > div.inactive {
  opacity: 1;
}

.testim .cont > div.active {
  position: relative;
  opacity: 1;
}

.testim .cont div .img img {
  display: block;
  width: 104px;
  height: 104px;
  margin: auto;
  border-radius: 40px 0 40px 0;
  box-shadow: rgba(53, 203, 239, 0.25) 0px 54px 55px, rgba(53, 203, 239, 0.12) 0px -12px 30px, rgba(53, 203, 239, 0.12) 0px 4px 6px, rgba(53, 203, 239, 0.17) 0px 12px 13px, rgba(53, 203, 239, 0.09) 0px -3px 5px;
  object-fit: cover;
}

.testim .cont div h2 {
  color: #ffdb4f;
  font-size: 1em;
  margin: 16px 0;
}

.testim .cont div p {
  font-size: 1.15em;
  color: var(--white);
  width: 83%;
  margin: auto;
}

.testim .cont div.active .img img {
  -webkit-animation: testim-show .5s ease-in-out forwards;            
  -moz-animation: testim-show .5s ease-in-out forwards;            
  -ms-animation: testim-show .5s ease-in-out forwards;            
  -o-animation: testim-show .5s ease-in-out forwards;            
  animation: testim-show .5s ease-in-out forwards;            
}

.testim .cont div.active h2 {
  -webkit-animation: testim-content-in .4s ease-in-out forwards;    
  -moz-animation: testim-content-in .4s ease-in-out forwards;    
  -ms-animation: testim-content-in .4s ease-in-out forwards;    
  -o-animation: testim-content-in .4s ease-in-out forwards;    
  animation: testim-content-in .4s ease-in-out forwards;    
}

.testim .cont div.active p {
  -webkit-animation: testim-content-in .5s ease-in-out forwards;    
  -moz-animation: testim-content-in .5s ease-in-out forwards;    
  -ms-animation: testim-content-in .5s ease-in-out forwards;    
  -o-animation: testim-content-in .5s ease-in-out forwards;    
  animation: testim-content-in .5s ease-in-out forwards;    
}

.testim .cont div.inactive .img img {
  -webkit-animation: testim-hide .5s ease-in-out forwards;            
  -moz-animation: testim-hide .5s ease-in-out forwards;            
  -ms-animation: testim-hide .5s ease-in-out forwards;            
  -o-animation: testim-hide .5s ease-in-out forwards;            
  animation: testim-hide .5s ease-in-out forwards;            
}

.testim .cont div.inactive h2 {
  -webkit-animation: testim-content-out .4s ease-in-out forwards;        
  -moz-animation: testim-content-out .4s ease-in-out forwards;        
  -ms-animation: testim-content-out .4s ease-in-out forwards;        
  -o-animation: testim-content-out .4s ease-in-out forwards;        
  animation: testim-content-out .4s ease-in-out forwards;        
}

.testim .cont div.inactive p {
  -webkit-animation: testim-content-out .5s ease-in-out forwards;    
  -moz-animation: testim-content-out .5s ease-in-out forwards;    
  -ms-animation: testim-content-out .5s ease-in-out forwards;    
  -o-animation: testim-content-out .5s ease-in-out forwards;    
  animation: testim-content-out .5s ease-in-out forwards;    
}

@-webkit-keyframes testim-scale {
  0% {
      -webkit-box-shadow: 0px 0px 0px 0px #eee;
      box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
      -webkit-box-shadow: 0px 0px 10px 5px #eee;        
      box-shadow: 0px 0px 10px 5px #eee;        
  }

  70% {
      -webkit-box-shadow: 0px 0px 10px 5px #35cbef;        
      box-shadow: 0px 0px 10px 5px #35cbef;        
  }

  100% {
      -webkit-box-shadow: 0px 0px 0px 0px #35cbef;        
      box-shadow: 0px 0px 0px 0px #35cbef;        
  }
}

@-moz-keyframes testim-scale {
  0% {
      -moz-box-shadow: 0px 0px 0px 0px #eee;
      box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
      -moz-box-shadow: 0px 0px 10px 5px #eee;        
      box-shadow: 0px 0px 10px 5px #eee;        
  }

  70% {
      -moz-box-shadow: 0px 0px 10px 5px #35cbef;        
      box-shadow: 0px 0px 10px 5px #35cbef;        
  }

  100% {
      -moz-box-shadow: 0px 0px 0px 0px #35cbef;        
      box-shadow: 0px 0px 0px 0px #35cbef;        
  }
}

@-ms-keyframes testim-scale {
  0% {
      -ms-box-shadow: 0px 0px 0px 0px #eee;
      box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
      -ms-box-shadow: 0px 0px 10px 5px #eee;        
      box-shadow: 0px 0px 10px 5px #eee;        
  }

  70% {
      -ms-box-shadow: 0px 0px 10px 5px #35cbef;        
      box-shadow: 0px 0px 10px 5px #35cbef;        
  }

  100% {
      -ms-box-shadow: 0px 0px 0px 0px #35cbef;        
      box-shadow: 0px 0px 0px 0px #35cbef;        
  }
}

@-o-keyframes testim-scale {
  0% {
      -o-box-shadow: 0px 0px 0px 0px #eee;
      box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
      -o-box-shadow: 0px 0px 10px 5px #eee;        
      box-shadow: 0px 0px 10px 5px #eee;        
  }

  70% {
      -o-box-shadow: 0px 0px 10px 5px #35cbef;        
      box-shadow: 0px 0px 10px 5px #35cbef;        
  }

  100% {
      -o-box-shadow: 0px 0px 0px 0px #35cbef;        
      box-shadow: 0px 0px 0px 0px #35cbef;        
  }
}

@keyframes testim-scale {
  0% {
      box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
      box-shadow: 0px 0px 10px 5px #eee;        
  }

  70% {
      box-shadow: 0px 0px 10px 5px #35cbef;        
  }

  100% {
      box-shadow: 0px 0px 0px 0px #35cbef;        
  }
}

@-webkit-keyframes testim-content-in {
  from {
      opacity: 0;
      -webkit-transform: translateY(100%);
      transform: translateY(100%);
  }
  
  to {
      opacity: 1;
      -webkit-transform: translateY(0);        
      transform: translateY(0);        
  }
}

@-moz-keyframes testim-content-in {
  from {
      opacity: 0;
      -moz-transform: translateY(100%);
      transform: translateY(100%);
  }
  
  to {
      opacity: 1;
      -moz-transform: translateY(0);        
      transform: translateY(0);        
  }
}

@-ms-keyframes testim-content-in {
  from {
      opacity: 0;
      -ms-transform: translateY(100%);
      transform: translateY(100%);
  }
  
  to {
      opacity: 1;
      -ms-transform: translateY(0);        
      transform: translateY(0);        
  }
}

@-o-keyframes testim-content-in {
  from {
      opacity: 0;
      -o-transform: translateY(100%);
      transform: translateY(100%);
  }
  
  to {
      opacity: 1;
      -o-transform: translateY(0);        
      transform: translateY(0);        
  }
}

@keyframes testim-content-in {
  from {
      opacity: 0;
      transform: translateY(100%);
  }
  
  to {
      opacity: 1;
      transform: translateY(0);        
  }
}

@-webkit-keyframes testim-content-out {
  from {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
  }
  
  to {
      opacity: 0;
      -webkit-transform: translateY(-100%);        
      transform: translateY(-100%);        
  }
}

@-moz-keyframes testim-content-out {
  from {
      opacity: 1;
      -moz-transform: translateY(0);
      transform: translateY(0);
  }
  
  to {
      opacity: 0;
      -moz-transform: translateY(-100%);        
      transform: translateY(-100%);        
  }
}

@-ms-keyframes testim-content-out {
  from {
      opacity: 1;
      -ms-transform: translateY(0);
      transform: translateY(0);
  }
  
  to {
      opacity: 0;
      -ms-transform: translateY(-100%);        
      transform: translateY(-100%);        
  }
}

@-o-keyframes testim-content-out {
  from {
      opacity: 1;
      -o-transform: translateY(0);
      transform: translateY(0);
  }
  
  to {
      opacity: 0;
      transform: translateY(-100%);        
      transform: translateY(-100%);        
  }
}

@keyframes testim-content-out {
  from {
      opacity: 1;
      transform: translateY(0);
  }
  
  to {
      opacity: 0;
      transform: translateY(-100%);        
  }
}

@-webkit-keyframes testim-show {
  from {
      opacity: 0;
      -webkit-transform: scale(0);
      transform: scale(0);
  }
  
  to {
      opacity: 1;
      -webkit-transform: scale(1);       
      transform: scale(1);       
  }
}

@-moz-keyframes testim-show {
  from {
      opacity: 0;
      -moz-transform: scale(0);
      transform: scale(0);
  }
  
  to {
      opacity: 1;
      -moz-transform: scale(1);       
      transform: scale(1);       
  }
}

@-ms-keyframes testim-show {
  from {
      opacity: 0;
      -ms-transform: scale(0);
      transform: scale(0);
  }
  
  to {
      opacity: 1;
      -ms-transform: scale(1);       
      transform: scale(1);       
  }
}

@-o-keyframes testim-show {
  from {
      opacity: 0;
      -o-transform: scale(0);
      transform: scale(0);
  }
  
  to {
      opacity: 1;
      -o-transform: scale(1);       
      transform: scale(1);       
  }
}

@keyframes testim-show {
  from {
      opacity: 0;
      transform: scale(0);
  }
  
  to {
      opacity: 1;
      transform: scale(1);       
  }
}

@-webkit-keyframes testim-hide {
  from {
      opacity: 1;
      -webkit-transform: scale(1);       
      transform: scale(1);       
  }
  
  to {
      opacity: 0;
      -webkit-transform: scale(0);
      transform: scale(0);
  }
}

@-moz-keyframes testim-hide {
  from {
      opacity: 1;
      -moz-transform: scale(1);       
      transform: scale(1);       
  }
  
  to {
      opacity: 0;
      -moz-transform: scale(0);
      transform: scale(0);
  }
}

@-ms-keyframes testim-hide {
  from {
      opacity: 1;
      -ms-transform: scale(1);       
      transform: scale(1);       
  }
  
  to {
      opacity: 0;
      -ms-transform: scale(0);
      transform: scale(0);
  }
}

@-o-keyframes testim-hide {
  from {
      opacity: 1;
      -o-transform: scale(1);       
      transform: scale(1);       
  }
  
  to {
      opacity: 0;
      -o-transform: scale(0);
      transform: scale(0);
  }
}

@keyframes testim-hide {
  from {
      opacity: 1;
      transform: scale(1);       
  }
  
  to {
      opacity: 0;
      transform: scale(0);
  }
}

@media all and (max-width: 500px) {
.testim .arrow {
  font-size: 1.5em;
}

.testim .cont div p {
  line-height: 1.5;
}

}

.another-info {
  background-image: linear-gradient(to top, #388ce1, #6a9cf4);
  padding: 120px 0;
  display: flex;
  flex-direction: column-reverse;
  gap: 89px;
  overflow: hidden;
}

.another-info > .flex {
  align-items: flex-start;
  gap: 50px;
}

.another-info .image-block,
.another-info-content {
  flex: 1;
}

.another-info-content {
  display: flex;
  flex-direction: row;
}

.another-info-content > div {
  display: flex;
  flex-direction: column;
  max-width: calc(600px - 50px / 2);
  gap: 25px;
}

.lid_table {
	position: relative;	
	padding-top: 0.0001px;
	max-width: 100%;
}
.lid_table table {
	width: 100%;
}
.lid_table table th,
.lid_table table td {
	padding: 1em;
}
@media screen and (max-width: 400px) {
  .lid_table table th,
  .lid_table table td {
    padding: 0.5em;
  }
}
.lid_table table tr:first-child td {
	font-weight:bold;
}

.lid_table table tr:nth-child(odd) {
	background-color: #2b318a29;
}

.lid_table table tr:nth-child(even) {
	background-color: #2a2e8761;
}

.lid_table table tr td img {
    height: 25px;
    margin: 0 auto;
}

.another-info .image-block {
  position: relative;
  align-content: end;
  direction: initial;
}

.another-info .image-block img {
  box-shadow: var(--main-shadow);
  object-fit: cover;
}

.another-info .image-block img:first-child {
  max-height: 614px;
  border-radius: 0 233px 0 0 ;
  width: 78%;
}

.another-info .image-block img:last-child {
  aspect-ratio: 1;
  position: absolute;
  top: 0;
  right: 22px;
  border-radius: var(--border-radius-m);
  width: 36%;
}

@media screen  and (min-width: 576px) and (max-width: 767px) {
  .another-info .image-block {
    display: none;
  }
}

@media screen and (max-width: 990px) {
  .another-info .image-block img:first-child {
    width: 100%;
  }
  
  .another-info .image-block img:last-child {
    display: none;
  }
}

.gamers {
  flex: 1;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 25px;
}

.gamer {
  width: 100%;
  display: flex;
  text-align: center;
  gap: 24px;
}

.gamer h3 {
  font-size: 47px;
  font-weight: 800;
  -webkit-text-stroke: 2px var(--white);
  -webkit-text-fill-color: transparent;
}

.gamer p {
  font-size: 22px;
  font-weight: 400;
}

.gamer img {
  width: 100%;
  max-height: 80px;
}

.another-dec {
  flex: 1;
}

.another-dec img {
  width: 100%;
}

@media screen and (min-width: 576px) and (max-width: 767px) {
  .another-dec:last-child {
    display: none;
  }
  .gamers {
    flex: unset;
  }  
}

.form-part-g16 {
  position: relative;
  background-image: linear-gradient(to top, #6a9cf4, #388ce1);  
  padding: 120px 0 234px 0;
  overflow: hidden;
}

.form-part-g16 marquee {
  position: absolute;
  top: 0;
  width: calc(100% + 317px);
  direction: initial;
}

.form-part-g16 marquee img {
  width: 317px;
}

.form-part-g16 > .flex {
  align-items: center;
  gap: 25px;
}

.form-part-g16 > .flex > div {
  flex: 1;
}

.form-part-g16 > .flex > div > img {
  width: 100%;
  max-height: 342px;
  margin: 0 auto;
}

.form-part-g16-cont,
.disclamer-g16-cont {
  display: flex;
  flex-direction: row-reverse;
}

.form-part-g16-cont > div > div,
.disclamer-g16-cont > div > div {
  position: relative;
  max-width: calc(600px - 25px / 2);
  padding: 39px;
  text-align: right;
  box-shadow: var(--main-shadow);
  z-index: 1;
}

.disclamer-g16-cont > div > div {
  border-radius: var(--border-radius-m);
  background: #df8307;
}

.disclamer-g16-cont__wraper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: var(--border-radius-s);
  padding: 22px;
  border: double 13px #fcd829;
}
.disclamer-g16-cont__wraper h2 {
  text-align: center;
}
.disclamer-g16-cont__wraper img {
  width: 100%;
  margin: 0 auto;
  max-width: 150px;
}

@media screen and (max-width: 575px) {
  .form-part-g16 {
    padding:  89px 0;
  }
  .form-part-g16 marquee {
    display: none;
  }
  .disclamer-g16-cont > div > div {
    padding: 8px;
    border-radius: var(--border-radius-s);
  }
  .form-part-g16-cont > div > div {
    padding: 16px;
    border-radius: var(--border-radius-s);
    width: calc(100% - 50px);
    margin: 0 auto;
}
  .disclamer-g16-cont__wraper {
    flex-direction: column;
  }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
  .form-part-g16 > .flex {
    flex-direction: column;
  }
  .disclamer-g16-cont__wraper {
    flex-direction: row-reverse;
  }
}

.dec-wave2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.dec-wave2 svg{
  display: block;
}

footer {
  padding: 40px 0;
}

footer > .flex {
  gap: 40px;
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  footer > .flex {
    flex-direction: column;
  }
}

.footer-main {
  display: flex;
    flex-direction: column;
    gap: 39px;
    justify-content: space-between;
}

.politics-g16__list {
  flex-wrap: wrap;
  gap: 25px;
}

.politics-g16__list li a {
  color: #df8307;
  word-break: break-word;
  font-size: 20px;
  padding: 25px 0;
}

.copyright-g16 {
  color: #35cbef;
  font-size: 20px;
}

.form-g16 {  
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 22px 0;
}

.input-form_areapart,
.textarea-form_areapart,
.input-g16 {
  font-size: 16px;
  font-weight: 400;
  transition: all .4s;
  line-height: 1.5;
  margin: 8px 0;
  outline: none;
  width: 100%;
  padding: 8px;
  border: 2px solid #ccc;
  border-radius: 2px; 
}

.input-form_areapart:placeholder,
.textarea-form_areapart:placeholder,
.input-g16:placeholder {
  color: #000;
}
.input-form_areapart:focus,
.textarea-form_areapart:focus,
.input-g16:focus {
  box-shadow: #292e87 5px 2px 8px;
    border: 4px solid var(--gold);
}
.form-g16 label {
  font-size: 16px;
  color:  #000;
}

.input-form_areapart::placeholder,
.textarea-form_areapart::placeholder,
.input-g16::placeholder {
  font-size: 15px;
  font-weight: 400;
  color: #000;
}

.form-g16-check {
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  margin: 22px 0;
}

.form-g16-check a {
  color: var(--gold);
}


.my-form {
  border-radius: 22px 0 22px 0;
  background-color: #35cbef;
  padding: 22px;
  box-shadow: var(--main-shadow);
  border-radius: 120px 0 0 0;
}

@media screen and (max-width: 1200px) {
  section, footer {
    padding-left: 50px !important;
  }  
}

section, footer {
  color: #f8f5f1;
}

@media screen and (max-width: 575px) {
  section, footer {
    padding-left: 30px !important;
  }  
}

.game-g16, .contacts-page-g16,
.about-us.page {
  background-image: linear-gradient(to bottom, #388bdf 5%, #57b7e1c7, #398ce1 95%), url(mediamansion/tematik/school-fish-2688a358590b0c.svg) ;
  padding: 120px 0 233px 0;
  overflow: hidden;
}

.game-g16 .container-g16 > .flex {
  margin-top: 50px;
  gap: 50px;
  flex-direction: column;
}

.game-g16-details {
  margin: 40px 0;
}

.game-g16-image {
  width: min(458px, 100%);
  float: left;
  margin: 39px;
}

.game-g16-details img {
  object-fit: contain;
  width: 100%;
  height: 440px;
  box-shadow: var(--main-shadow);
  border-radius: var(--border-radius-l);
}

@media screen and (max-width:990px) {
  .game-g16-image {
    margin: 39px auto;
    float: unset;
  }
  .game-g16-details img {
    border-radius: var(--border-radius-s);
  }
}
@media (max-width:576px)  {
  .game-g16-details img {
    height: auto;
  }
}
.game-frame-g16 {
  position: relative;
}

.game-frame-g16 > .flex{
  justify-content: center;
  margin-bottom: 39px;
}

.game-frame-g16 iframe {
  width: 100%;
  height: 440px;

}

.game-frame-g16 img {
  width: min(100%, 317px);
  max-height: 100px;
}

.game-frame-g16 h4,
.arrow-mistic h4 {
  -webkit-text-stroke: 2px var(--white);
    -webkit-text-fill-color: transparent;
    font-size:  31px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-frame-g16 h4::before {
  content: '';
  background-image: url(mediamansion/tematik/helmet-0688a358590b8b.svg);
  width: 150px;
  height: max(100%, 69px);
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
}

.contacts-page-g16 > .flex {
  gap: 89px;
  flex-direction: column;
}

.hidden-dec {
  position: relative;
}

.hidden-dec::before {
  content: '';
  width: 100vw;
  height: 200%;
  position: absolute;
  bottom: -50%;
  left: 0;
  right: 0;
  background-image: url(mediamansion/tematik/seaweed-0688a35859095c.png), url(mediamansion/tematik/seaweed-1688a358590987.png), url(mediamansion/tematik/seaweed-2688a3585909b0.png);
  background-repeat: repeat-x;
  background-size: auto 60%, auto 80%, contain;
  background-position: bottom left, center, top left;
}

.contacts-list {
  position: relative;
  transition: all 0.5s ease;
  gap: 25px;
  justify-content: center;
}

@media screen and (max-width:767px) {
  .contacts-list {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .hidden-dec::before {
    height: 108%;
    bottom: -4%;
  }
}

.contacts-list div {
  background: linear-gradient(45deg, #4da8f4, #292a84);
  box-shadow: var(--main-shadow);
  border-radius: var(--border-radius-m);
  padding: 0 22px;
  min-width: 20%;
  align-content: center;
  text-align: center;
}

.contacts-list div p,
.contacts-list div a {
  display: block;
  margin: 0;
  word-break: break-all;
  color: var(--white);
  padding: 22px;
}


@media screen and (min-width:767px) and (max-width: 990px) {
  .contacts-list div:nth-child(2) {
    order: 2;
  }
  .contacts-list {
    flex-wrap: nowrap;
  }
}

.arrow-mistic {
  text-align: center;
  margin-bottom: 50px;
}

.arrow-mistic svg {
  width: 50px;
  animation: slide1 1s ease-in-out infinite;
}

@keyframes slide1 {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, 20px);
  }
}

.privacy-g16 {
  background-image: linear-gradient(to bottom, #388ce1, #6a9cf4);
  padding: 120px 0 233px 0;

}

.privacy-g16-txt {
  word-break: break-all;
}

.privacy-g16-txt li {
  margin-left: 36px;
  padding: 12px 0;
  list-style: disc;
}

.privacy-g16-txt a {
  color: var(--white);
}


.btn-1,
.btn-1 *,
.btn-1 :after,
.btn-1 :before,
.btn-1:after,
.btn-1:before {
  border: 0 solid;
  box-sizing: border-box;
}
.btn-1 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #ffd634;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#ffd634, #fff);
  padding: 0;
  text-transform: uppercase;
}
.btn-1:disabled {
  cursor: default;
}
.btn-1:-moz-focusring {
  outline: auto;
}
.btn-1 svg {
  display: block;
  vertical-align: middle;
}
.btn-1 [hidden] {
  display: none;
}
.btn-1 {
  border-radius: var(--border-radius-s);
  border-width: 2px;
  overflow: hidden;
  padding: 0.8rem 3rem;
  position: relative;
}
.btn-1 span {
  mix-blend-mode: difference;
}
.btn-1:after,
.btn-1:before {
  --tilt: 1.2rem;
  background: #0cc5e6;
  -webkit-clip-path: polygon(
    0 0,
    calc(100% - var(--tilt)) 0,
    100% 100%,
    0 100%
  );
  clip-path: polygon(0 0, calc(100% - var(--tilt)) 0, 100% 100%, 0 100%);
  content: "";
  display: block;
  height: 100%;
  left: calc(-100% - var(--tilt));
  position: absolute;
  top: 0;
  transform: translateX(var(--progress, 0));
  transition: transform 0.2s ease;
  width: calc(100% + var(--tilt));
}
.btn-1:after {
  left: 100%;
  transform: translateX(var(--progress, 0)) rotate(180deg);
  z-index: -1;
}
.btn-1:hover:before {
  --progress: 100%;
}
.btn-1:hover:after {
  --progress: -100%;
}


.btn-2,
.btn-2 *,
.btn-2 :after,
.btn-2 :before,
.btn-2:after,
.btn-2:before {
  border: 0 solid;
  box-sizing: border-box;
}
.btn-2 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #ffd634;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#ffd634, #fff);
  padding: 0;
}
.btn-2:disabled {
  cursor: default;
}
.btn-2:-moz-focusring {
  outline: auto;
}
.btn-2 svg {
  display: block;
  vertical-align: middle;
}
.btn-2 [hidden] {
  display: none;
}
.btn-2 {
  background: none;
  border: 2px solid;
  border-radius: var(--border-radius-s);
  box-sizing: border-box;
  display: block;
  padding: 1.2rem 3rem;
  position: relative;
  text-transform: uppercase;
}
.btn-2 span {
  font-weight: 900;
}
.btn-2:after,
.btn-2:before {
  border: 2px solid #ff8800;
  border-radius: var(--border-radius-s);
  content: "";
  inset: -2px;
  position: absolute;
  z-index: -1;
}
.btn-2:after {
  border-color: #1313fc;
}
.btn-2:hover:before {
  -webkit-animation: glitch-border 0.2s infinite;
  animation: glitch-border 0.2s infinite;
}
.btn-2:hover:after {
  animation: glitch-border 0.2s infinite reverse;
}
.btn-2:hover span {
  -webkit-animation: glitch-text 0.2s infinite;
  animation: glitch-text 0.2s infinite;
}
@-webkit-keyframes glitch-text {
  0% {
    text-shadow: 0 0 0 #ff8800, 0 0 0 #1313fc;
  }
  to {
    text-shadow: -2px 1px 0 #ff8800, 2px -1px 0 #1313fc;
  }
}
@keyframes glitch-text {
  0% {
    text-shadow: 0 0 0 #ff8800, 0 0 0 #1313fc;
  }
  to {
    text-shadow: -2px 1px 0 #ff8800, 2px -1px 0 #1313fc;
  }
}
@-webkit-keyframes glitch-border {
  0% {
    transform: translate(2px, -1px);
  }
  to {
    transform: translate(-2px, -1px);
  }
}
@keyframes glitch-border {
  0% {
    transform: translate(2px, -1px);
  }
  to {
    transform: translate(-2px, -1px);
  }
}


.btn-3,
.btn-3 *,
.btn-3 :after,
.btn-3 :before,
.btn-3:after,
.btn-3:before {
  border: 0 solid;
  box-sizing: border-box;
}
.btn-3 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #ff8800;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#ff8800, #fff);
  padding: 0;
}
.btn-3:disabled {
  cursor: default;
}
.btn-3:-moz-focusring {
  outline: auto;
}
.btn-3 svg {
  display: block;
  vertical-align: middle;
}
.btn-3 [hidden] {
  display: none;
}
.btn-3 {
  background: linear-gradient(90deg, #1313fc, #ff8800);
  border-radius: var(--border-radius-s);
  box-sizing: border-box;
  color: #000;
  display: block;
  font-weight: 900;
  overflow: hidden;
  padding: 1.8rem 5rem;
  position: relative;
  text-transform: uppercase;
}
.btn-3 span {
  background: #1e293b;
  border-radius: var(--border-radius-s);
  color: #fff;
  display: grid;
  inset: 5px;
  place-items: center;
  position: absolute;
  transition: background 0.3s;
}
.btn-3:hover span {
  background: none;
}


.btn-4,
.btn-4 *,
.btn-4 :after,
.btn-4 :before,
.btn-4:after,
.btn-4:before {
  border: 0 solid;
  box-sizing: border-box;
}
.btn-4 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #ff8800;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#ff8800, #fff);
  padding: 0;
  text-transform: uppercase;
}
.btn-4:disabled {
  cursor: default;
}
.btn-4:-moz-focusring {
  outline: auto;
}
.btn-4 svg {
  display: block;
  vertical-align: middle;
}
.btn-4 [hidden] {
  display: none;
}
.btn-4 {
  border-radius: var(--border-radius-s);
  border-width: 2px;
  -webkit-mask-image: none;
  overflow: hidden;
  padding: 0.8rem 3rem;
  position: relative;
}
.btn-4 span {
  mix-blend-mode: difference;
}
.btn-4:before {
  background: #ffd634;
  -webkit-clip-path: polygon(
    0 calc(var(--progress, 100%) / 2),
    100% calc(var(--progress, 100%) / 2),
    100% calc(100% - var(--progress, 100%) / 2),
    0 calc(100% - var(--progress, 100%) / 2)
  );
  clip-path: polygon(
    0 calc(var(--progress, 100%) / 2),
    100% calc(var(--progress, 100%) / 2),
    100% calc(100% - var(--progress, 100%) / 2),
    0 calc(100% - var(--progress, 100%) / 2)
  );
  content: "";
  inset: 0;
  position: absolute;
  transition: -webkit-clip-path 0.2s ease;
  transition: clip-path 0.2s ease;
  transition: clip-path 0.2s ease, -webkit-clip-path 0.2s ease;
}
.btn-4:hover:before {
  --progress: 0%;
}



.btn-5,
.btn-5 *,
.btn-5 :after,
.btn-5 :before,
.btn-5:after,
.btn-5:before {
  border: 0 solid;
  box-sizing: border-box;
}
.btn-5 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #ff8800;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#ff8800, #fff);
  padding: 0;
  text-transform: uppercase;
}
.btn-5:disabled {
  cursor: default;
}
.btn-5:-moz-focusring {
  outline: auto;
}
.btn-5 svg {
  display: block;
  vertical-align: middle;
}
.btn-5 [hidden] {
  display: none;
}
.btn-5 {
  border-radius: var(--border-radius-s);
  border-width: 2px;
  overflow: hidden;
  padding: 0.8rem 3rem;
  position: relative;
}
.btn-5 span {
  mix-blend-mode: difference;
}
.btn-5:before {
  --tilt: 1.2rem;
  background: #ffd634;
  -webkit-clip-path: polygon(
    0 0,
    calc(100% - var(--tilt)) 0,
    100% 50%,
    calc(100% - var(--tilt)) 100%,
    0 100%
  );
  clip-path: polygon(
    0 0,
    calc(100% - var(--tilt)) 0,
    100% 50%,
    calc(100% - var(--tilt)) 100%,
    0 100%
  );
  content: "";
  display: block;
  height: 100%;
  left: calc(-100% - var(--tilt));
  position: absolute;
  top: 0;
  transform: translateX(var(--progress, 0));
  transition: transform 0.2s ease;
  width: calc(100% + var(--tilt));
}
.btn-5:hover:before {
  --progress: 100%;
}

