@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap');

:root{
  --o-1: #FF5C00;
  --o-2: #910808;
  --o-3: #ff0000;
  --o-4: #35f5e3;
  --o-5: #35f563;
  --accent: var(--o-2);
  --oe-1: #7414719c;
  --oe-2: #91081f9c;
  --oe-3: #9108089c;
  --oe-4: #91088d9c;
  --oe-5: #082c919c;
  --extra-accent: var(--oe-2);
  --white: #fff;
  --black: #000000;
  --background-1: radial-gradient(103.95% 102.72% at 53.02% 10.62%, rgba(255, 255, 255, 0.66) 0%, #F57A35 29.07%, #741471  83.9%, #FDAF84 100%), #FF5C00;
  --background-2: radial-gradient(103.95% 102.72% at 53.02% 10.62%, rgb(255 255 255 / 66%) 0%, #f5dd35 29.07%, #91081f 83.9%, #fd8484 100%), #ff7800;
  --background-3: radial-gradient(103.95% 102.72% at 53.02% 10.62%, rgba(255, 255, 255, 0.66) 0%, #f53535 29.07%, #910808 83.9%, #fd8484 100%), #ff0000;
  --background-4: radial-gradient(103.95% 102.72% at 53.02% 10.62%, rgb(255 255 255 / 66%) 0%, #35f5e3 29.07%, #91088d 83.9%, #fd8784 100%), #00ff22;
  --background-5: radial-gradient(103.95% 102.72% at 53.02% 10.62%, rgb(255 255 255 / 66%) 0%, #35f563 29.07%, #082c91 83.9%, #bb84fd 100%), #00fff6;
  --gradient: var(--background-2);
  --border-color: #1c1f25;
  --transition: 0.2s cubic-bezier(0.215, 0.610, 0.355, 1);
  --drop-shadow: drop-shadow(2px 2px 14px var(--accent)) drop-shadow(-2px -2px 14px var(--accent));
  --box-shadow: 0px 10px 20px 0px var(--extra-accent);
}

html{
  scroll-behavior: smooth;
}

*{
  box-sizing: border-box;
}

body{
  font-family: 'Asap', sans-serif !important;
  font-size: 18px;
  direction: ltr;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  height: 100%;
  position: relative;
  box-sizing: border-box;
  overflow-x: hidden;

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('picgallery/bg/opacity_bg-06894cde972370.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
  }
}

a{
  text-decoration: none;
}

p {
  margin-bottom: 18px;
}

ul, ol {
  margin-bottom: 18px;
  padding-left: 22px;
}

li {
  margin-bottom: 0.5rem;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

img{
  width: 100%;
  display: block;
  box-sizing: border-box;
}

video{
  display: block;
  box-sizing: border-box;
}

.block-space{
  position: relative;
  z-index: 2;
}

.content-holder {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  box-sizing: border-box;
}

.zone{
  position: relative;
  padding: 54px 0;
}

.flex-row-2,
.flex-row-3,
.flex-row-4,
.flex-row-5,
.flex-row-6{
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  gap: 16px;
}

.flex-col-30,
.flex-col-70,
.flex-col-2,
.flex-col-3,
.flex-col-4,
.flex-col-5,
.flex-col-6{
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
}

.page-heading {
  color: var(--white);
  font-family: 'Caveat', sans-serif;
  text-align: start;
  text-transform: inherit;
  font-weight: 900;
  font-size: clamp(24px,4vw,68px);
  margin-bottom: 24px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.banner{
  direction: ltr !important;
  overflow: hidden;
  background: var(--gradient);
  padding: 40px 0 40px;
  position: relative;
}
@media screen and (width < 992px){
  .banner{
      padding: 75px 0 40px;
  }

}
@media screen and (width < 767px){
  .banner{
      padding: 120px 0 40px;
  }

}

@media screen and (width < 576px){
  .banner{
      padding: 170px 0 40px;
  }

}

.slider-container {
  width: 100%;
  height: 368px;
  position: relative;
}

.slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  transform: scale(0.3) translateY(100%);
  opacity: 0.6;
  
  img {
    width: 311px;
    height: 311px;
    object-fit: contain;
  }
}

.slide.animated{
  transition: var(--transition);
  transform: scale(1.04) translateY(0);
  opacity: 1;
  filter: drop-shadow(5px 5px 5px var(--accent));
}

.banner-wr{
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.banner-box{
  display: flex;
  position: relative;
  z-index: 2;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.brand-logo{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  justify-content: center;

  img{
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: var(--drop-shadow);
  }
  
  h1{
    text-align: center;
    color: var(--white);
    filter: var(--drop-shadow);
    text-shadow: 1px 1px 1px var(--accent), -1px -1px 1px var(--accent), -1px 1px 1px var(--accent), 1px -1px 1px var(--accent);
    margin: 0;
    font-weight: 900;
    font-size: clamp(24px,4vw,68px);
    text-transform: inherit;
    transition: var(--transition);
    font-family: 'Caveat', sans-serif;
  }


  &:hover h1,
  &:focus h1{
    color: var(--accent);
    text-shadow: 1px 1px 1px var(--white), -1px -1px 1px var(--white), -1px 1px 1px var(--white), 1px -1px 1px var(--white);
  }
}

.menu-nav{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-direction: row;

  a{
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 900;
    display: inline-block;
    color: var(--white);
    filter: var(--drop-shadow);
    text-shadow: 1px 1px 1px var(--accent), -1px -1px 1px var(--accent), -1px 1px 1px var(--accent), 1px -1px 1px var(--accent);
    transition: var(--transition);

    &:hover,
    &:focus{
      color: var(--accent);
      text-shadow: 1px 1px 1px var(--white), -1px -1px 1px var(--white), -1px 1px 1px var(--white), 1px -1px 1px var(--white);
    }
  }
}

.site-desc{
  text-align: center;
  color: var(--white);
  font-weight: 700;
  font-size: clamp(18px, 4vw, 24px);
  text-shadow: 0.51px 0.51px 0.51px var(--accent), -0.51px -0.51px 0.51px var(--accent), -0.51px 0.51px 0.51px var(--accent), 0.51px -0.51px 0.51px var(--accent);
  filter: var(--drop-shadow);
}

#advantages{
  .content-holder{
    margin-bottom: 113px;
  }
}

.advantage-box{
  min-height: 316px;
  width: 90%; 
  margin: 0 auto;
  background: var(--gradient);
  position: relative;
  padding: 14px;
}

.ab1{
  border-radius: 38px 0 0 0;
}

.ab2{
  border-radius: 0 0 30px 0;
}

.ab3{
  border-radius: 0 24px 0 0;
}

.ab4{
  border-radius: 0 0 0 54px;
}

.advantage-img{
  margin: 0 auto;
  height: 73px;
  width: 73px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.advantages-front{
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  filter: var(--drop-shadow);
  border: 1px solid var(--extra-accent);
  background-color: var(--white);
  padding: 14px;
  transition: var(--transition);
}

.v1{
  top: calc(14px + 73px);
  left: 16px;
  border-radius: 38px 0 0 0;

}

.v2{
  top: calc(16px + 73px);
  left: -14px;
  border-radius: 0 0 30px 0;
}

.v3{
  top: calc(18px + 73px);
  left: 18px;
  border-radius: 0 24px 0 0;
}

.v4{
  top: calc(7px + 73px);
  left: -7px;
  border-radius: 0 0 0 54px;
}

.animated{
  top: 0;
  left: 0;
}

.know-us-wr{
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  position: relative;
  height: 100%;
  justify-content: center;
  border-radius: 26px;
  padding: 16px;
  gap: 16px;

  .page-heading,
  .know-us-text{
    position: relative;
  }

  &::before{
    background-color: rgb(255, 255, 255);
    filter: blur(3px);
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 26px;
    box-shadow: var(--box-shadow);
    opacity: 0.5;
  }
}

.know-us-img-wr{
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border-radius: 26px;
  padding: 16px;
  position: relative;

  &::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('img/cart-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: blur(3px);
    z-index: 1;
  }
}

.know-us-img-box{
  display: flex;
  position: relative;
  height: 100%;
  z-index: 2;
  gap: 16px;
  flex-direction: column;
}

.know-us-img{
  width: 100%;
  height: 318px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.know-us-img-link{
  position: absolute;
  right: 16px;
  top: 16px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.know-us-img-unit{
  cursor: pointer;
  background-color: var(--white);
  display: inline-block;
  box-shadow: var(--box-shadow);
  height: 54px;
  width: 54px;
  border-radius: 26px;
  padding: 14px;
  transition: var(--transition);

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  &:hover,
  &:focus{
    transform: scale(1.14);
  }
}

.metrics-wr{
  position: relative;
  display: flex;
  z-index: 2;
  filter: drop-shadow(0px 4px 8px var(--extra-accent));
  flex-direction: row-reverse;
  gap: 14px;
}

.metrics-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap:  14px;
  word-break: break-word;
  width: 74px;
  min-height: 141px;
  flex-direction: column;
  background-color: #F5F7F9;
  padding: 14px;
  clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
}

.metrics-text{
  color: #979797;
  text-align: center;
  font-size: 14px;
}

.metrics-num{
  text-align: center;
  color: var(--accent);
}

#knowUsImg{
  display: block;
}


.know-us-video-wr{
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: var(--box-shadow);
  border-radius: 26px;

  video{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}


.invert{
  display: flex;
  flex-direction: column;
}

.playing-v1-box{
  display: flex;
  flex-direction: column;
  position: relative;
}

.playing-v1-img{
  width: 100%;
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border-radius: 26px;
  height: 216px;
  position: relative;
  z-index: 2;

  img{
    transition: var(--transition);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  &:hover img,
  &:focus img{
    transform: scale(1.12);
  }
}

.playing-v1-desc{
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
  width: 90%;
  margin: -26px auto 0;
  gap: 16px;
  border-radius: 26px;
  padding: 16px;
}

.playing-v1-title{
  color: var(--white);
  transition: var(--transition);
  font-family: 'Caveat', sans-serif;
  text-align: start;
  text-transform: inherit;
  font-weight: 900;
  font-size: clamp(18px,4vw,22px);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;

  &:hover,
  &:focus{
    transform: scale(1.12);
  }
}

.playing-v1-content{
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-align: center;
  color: #979797;
  margin: 0;
  direction: ltr !important;
}

.rating{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 4px;

  svg{
    color: var(--accent);
    height: 14px;
    width: 14px;
  }
}

.without-star{
  display: block;
}

#playing-v1{
  display: block;
}

.playing-v2{
  direction: ltr !important;

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.6;
  }

  .content-holder{
    position: relative;
  }
}

.step-by-step{
  direction: ltr !important;
}

.page-heading-wr{
  clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0 100%, 0 0);
  background-color: #F5F7F9;
  width: fit-content;
  margin-bottom: 26px;
  padding: 14px;

  .page-heading{
    margin: 0 41px 0 0;
  }
}

.playing-v2-list{
  .flex-col-2{
    position: relative;
  }

  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
}
.playing-v2-img{
  width: 100%;
  display: inline-block;
  overflow: hidden;
  border-radius: 26px;
  height: 318px;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }

  
  &:hover img,
  &:focus img{
    transform: scale(1.12);
    --box-shadow: 0px 10px 20px 0px inset var(--extra-accent);
  }
}

.playing-v2-desc{
  position: relative;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  padding: 26px;
  height: 90%;
  border-radius: 26px;
}

.playing-v2-title{
  z-index: 3;
  font-weight: 900;
  font-size: clamp(18px, 4vw, 32px);
  color: var(--white);
  font-family: 'Caveat', sans-serif;
  text-align: start;
  text-transform: inherit;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition);

  &:hover,
  &:focus{
    transform: translateY(2px) scale(1.04);
  }
}

.delimetr{
  width: 100%;
  height: 7px;
  position: relative;
  margin: 26px 0;

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('picgallery/other-dir/borders_long-06894cde9723d9.png');
    background-repeat: repeat;
    background-size: contain;
    background-position: center;
  }
}

.step-by-step-num{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 141px;
  height: 141px;
  background: var(--gradient);
  z-index: 1;
  border-radius: 26px;

  span{
    position: relative;
    z-index: 2;
    color: var(--white);
    font-size: clamp(20px, 4vw, 68px);
    font-weight: 900;
  }
}


.step-by-step-text{
  display: flex;
  text-align: center;
  align-items: center;
  position: relative;
  height: 100%;
  justify-content: center;
  border-radius: 26px;
  padding: 16px;

  &::before{
    background-color: rgb(255, 255, 255);
    filter: blur(3px);
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 26px;
    box-shadow: var(--box-shadow);
  }

  span{
    position: relative;
    z-index: 2;
  }
}

.step-by-step-num-v2{
  &::before{
    position: absolute;
    content: '';
    z-index: 0;
    background: var(--extra-accent);
    width: 30px;
    height: 30px;
    opacity: 0.6;
    left: 50%;
    bottom: calc(-30px - 10px);
    transform: translateX(-50%);
    clip-path: polygon(50% 100%, 100% 0, 0 0);
  }
}
.step-by-step-num-v3{
  &::after{
    position: absolute;
    content: '';
    z-index: 0;
    background: var(--extra-accent);
    width: 30px;
    height: 30px;
    left: 50%;
    bottom: calc(-30px - 10px);
    transform: translateX(-50%);
    clip-path: polygon(50% 100%, 100% 0, 0 0);
    opacity: 0.6;
  }
  
}
.step-by-step-num-v4{
  &::after{
    position: absolute;
    content: '';
    z-index: 0;
    background: var(--extra-accent);
    width: 30px;
    height: 30px;
    left: 50%;
    bottom: calc(-30px - 10px);
    transform: translateX(-50%);
    clip-path: polygon(50% 100%, 100% 0, 0 0);
    opacity: 0.6;
  }
  
}

.step-by-step-list{
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.form-zone{
  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.6;
    transform: rotateX(180deg);
  }

  .content-holder{
    position: relative;
  }

  .page-heading{
    text-align: start !important;
  }
}

.form{
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  display: flex;
  margin: 0 auto;
  width: 100%;
  flex-direction: column;
  gap:  16px;
  border-radius: 26px;
  max-width: 775px;
  padding: 26px;
}

.form-box{
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  gap: 16px;
}

.contact-page-input{
  width: 100%;
}

.contact-page-input input,
.contact-page-input textarea,
.input-main-container__input,
.textarea-main-container__input{
  width: 100%;
  margin: 0 auto;
  background: var(--gradient);
  color: var(--white);
  border-radius: 26px;
  border: 1px solid var(--accent);
  padding:  14px 16px;
  transition: var(--transition);

  &::placeholder{
    color: #ffffff8f;
  }

  &:hover,
  &:focus{
    box-shadow: var(--box-shadow);
  }
}

.privacy{
  color: var(--accent);
  display: inline-block;
  transition: var(--transition);

  &:hover,
  &:focus{
    filter: var(--drop-shadow);
  }
}

.devops-box{
  width: 100%;
  position: relative;
  height: 318px;
  filter: var(--drop-shadow);
  border-radius: 26px;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 26px;
  }
}

.devops-name-box{
  position: absolute;
  bottom: 14px;
  left: -14px;
  width: 90%;
  filter: var(--drop-shadow);
  padding: 14px;
}

.devops-name-dr{
  padding: 14px;
  background-color: #F5F7F9;
  clip-path: polygon(80% 0, 100% 50%, 80% 100%, 0 100%, 0 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.devops-name{
  color: var(--accent);
  font-weight: 900;
  font-size: clamp(18px, 4vw, 18px);
}

.devops-prof{
  font-size: 14px;
}

.podval{
  position: relative;
  background: var(--gradient);
  padding: 113px 0 41px;
}

.legal-note{
  background-color: #F5F7F9;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  margin: 0 auto;
  filter: var(--drop-shadow);
  max-width: 100%;
  padding: 26px;
  flex-direction: column;
  gap: 16px;
  border-radius: 26px;
  animation: legalNote 4s linear infinite;

  .page-heading, p{
    margin: 0;
  }
}

.legal-note-img{
  height: 100px;
  width: 100px;

  imf{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.podval-link-list{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  padding: 26px 0;
  gap: 16px;
  justify-content: center;

  a{
    display: inline-block;
    color: var(--white);
    transition: var(--transition);
    filter: var(--drop-shadow);

    &:hover,
    &:focus{
      transform: scale(1.04) rotateX(20deg);
    }
  }
}

.rights{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  padding-top:  26px;
  border-top: 1px solid #ffffffcd;
  justify-content: start;

  p{
    margin: 0;
    color: #ffffffcd;
  }
}

.photo-collection-list{
  display: flex;
  flex-direction: row;
  gap: 14px;
}

.photo-collection-item{
  transition: var(--transition);
  height: 224px;
  width: calc((100% / 5) - 14px);

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  &:hover,
  &:focus{
    position: relative;
    z-index: 2;
    filter: var(--drop-shadow);
    transform: scale(1.14) rotateX(20deg);
  }
}

.page-img{
  width: 100%;
  margin: 0 auto;
  height: auto;
  padding: 16px;
  
  img{
    background-color: #F5F7F9;
    box-shadow: var(--box-shadow);
    border-radius: 26px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
  }
}

.page-iframe{
  width: 100%;
  height: 318px;
  background-color: #F5F7F9;
  box-shadow: var(--box-shadow);
  border-radius: 26px;

  iframe{
    width: 100%;
    height: 100%;
    border: 0;
    padding: 16px;
  }
  
}

.page-invert{
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.reach-us-wr{
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 26px;

  &::before{
    background-color: rgb(255, 255, 255);
    filter: blur(3px);
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 26px;
    box-shadow: var(--box-shadow);
    opacity: 0.5;
  }
}

.reach-us-list{
  width: 100%;
  position: relative;
  display: flex;
  gap: 16px;
  flex-direction: column-reverse;
}

.reach-us-item{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;

  a{
    transition: var(--transition);
    display: inline-block;
    color: var(--accent);
    font-size: clamp(18px, 4vw,  24px);
    font-weight: 900;

    &:hover,
    &:focus{
      color: var(--black);
    }
  }
}

.adres{
  color: var(--black);
  word-break: break-all;
  font-size: clamp(18px, 4vw,  24px);
  font-weight: 900;
}

.reach-us-icon{
  color: var(--accent);
  height: 41px;
  width: 41px;

  svg{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  color: var(--extra-accent);
  filter: var(--drop-shadow);
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: scroll-left 50s linear infinite;
}

.marquee-inner span {
  font-weight: 900;
  padding: 0 26px;
  font-size: clamp(18px, 4vw, 24px);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 400px){
  .legal-note{
    margin-top: 41px;
  }

  .brand-logo{
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 576px) {
  .flex-col-5{
    width: calc(50% - 16px);
  }

  .flex-row-5{
    flex-direction: row-reverse;
  }

  .flex-col-5{
    width: calc(50% - 16px);
  }

  .flex-row-4{
    flex-direction: row-reverse;
  }

  .flex-col-4{
    width: calc(50% - 16px);
  }


}


@media (max-width: 767px){
  .slider-block{
    display: none;
  }

  .step-by-step-row:nth-child(odd){
    flex-direction: column !important;
  }
  .step-by-step-row:nth-child(even){
    flex-direction: column-reverse !important;
  }

  .step-by-step-num-v1{
    margin-bottom: 95px;

    &::before{
      position: absolute;
      content: '';
      z-index: 0;
      background: var(--extra-accent);
      width: 30px;
      height: 30px;
      opacity: 0.6;
      left: 50%;
      bottom: calc(-30px - 10px);
      transform: translateX(-50%);
      clip-path: polygon(50% 100%, 100% 0, 0 0);
    }
  }

  .step-by-step-num-v4,
  .step-by-step-num-v3,
  .step-by-step-num-v2{
    margin-bottom: 95px;
  }

}

@media (min-width: 768px){
  .flex-row-2,
  .flex-row-3,
  .flex-row-4{
    flex-direction: row-reverse;
  }

  .flex-col-2,
  .flex-col-3,
  .flex-col-4{
    width: calc(50% - 16px);
  }
 
  .flex-col-5{
    width: calc(33.333% - 16px);
  }

  .flex-col-6{
    width: calc(33.333% - 16px);
  }

  .flex-col-30{
    width: calc(30% - 16px);
  }

  .flex-col-70{
    width: calc(70% - 16px);
  }

  .banner{
    .flex-row-2{
      flex-direction: row !important;
    }

    &::before{
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      width: 50%;
      height: 100%;
      background: url('img/text-bg.png');
      background-repeat: no-repeat;
      background-position: top right;
      background-size: cover;
    }
  }

  .playing-v2-desc{
    position: absolute;
  }

  .step-by-step-row{
    flex-direction: row !important;
  }

  
.step-by-step-num-v1{
  &::after{
    position: absolute;
    content: '';
    z-index: 0;
    width: 30px;
    height: 30px;
    background: var(--gradient);
    right: calc(-30px - 10px);
    top: 50%;
    transform: translateY(-50%);
    clip-path: polygon(100% 50%, 0 0, 0 100%);
  }
}

.step-by-step-num-v2{
  &::before{
    position: absolute;
    content: '';
    z-index: 0;
    background: var(--extra-accent);
    width: 30px;
    height: 30px;
    opacity: 0.6;
    left: 50%;
    top: calc(-30px - 10px);
    transform: translateX(-50%);
    clip-path: polygon(50% 100%, 100% 0, 0 0);
  }

  &::after{
    position: absolute;
    content: '';
    z-index: 0;
    width: 30px;
    height: 30px;
    background: var(--gradient);
    top: 50%;
    left: calc(-30px - 10px);
    transform: translateY(-50%);
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
  }
}

.step-by-step-num-v3{
  &::after{
    top: calc(-30px - 10px);
  }
  
  &::before{
    position: absolute;
    content: '';
    z-index: 0;
    background: var(--gradient);
    width: 30px;
    height: 30px;
    top: 50%;
    right: calc(-30px - 10px);
    transform: translateY(-50%);
    clip-path: polygon(0 100%, 100% 50%, 0 0);
  }
}

.step-by-step-num-v4{
  &::after{
    top: calc(-30px - 10px);
  }
  
  &::before{
    position: absolute;
    content: '';
    z-index: 0;
    background: var(--gradient);
    width: 30px;
    height: 30px;
    top: 50%;
    left: calc(-30px - 10px);
    transform: translateY(-50%);
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
  }
}

.step-by-step-list{
  gap: 95px;
}

  .page-img{
    float: right;
    width: 318px;
    height: 318px;
  }

  .page-iframe{
    height: 318px;
  }

  .page-content{
    min-height: 318px;
  }
}


@media (max-width: 991px){
  #advantages{
    .flex-row-4{

      row-gap: calc(16px + 73px + 16px);
    }
  }
}


@media (min-width: 992px){
  .flex-col-3{
    width: calc(33.333% - 16px);
  }

  .flex-col-4{
    width: calc(25% - 16px);
  }

  .flex-col-5{
    width: calc(20% - 16px);
  }

  .flex-col-6{
    width: calc(20% - 16px);
  }

.slide{
  img {
    width: 318px;
    height: 318px;
  }
}
  
  .zone{
    padding: 73px 0;
  }

  .know-us-img-link{
    flex-direction: column;
  }

  .step-by-step-num{
    width: 214px;
    height: 214px;
  }

  .step-by-step-num-v1{
    &::after{
      width: 41px;
      height: 41px;
      right: calc(-41px - 10px);
    }
  }

  .step-by-step-num-v2{
    &::before{
      width: 41px;
      height: 41px;
      top: calc(-41px - 10px);
    }
    &::after{
      width: 41px;
      height: 41px;
      left: calc(-41px - 10px);
    }
  }

  .step-by-step-num-v3{
    &::before{
      width: 41px;
      height: 41px;
      right: calc(-41px - 10px)
    }
    &::after{
      width: 41px;
      height: 41px;
      top: calc(-41px - 10px);
    }
  }

  .step-by-step-num-v4{
    &::before{
      width: 41px;
      height: 41px;
      left: calc(-41px - 10px);
    }
    &::after{
      width: 41px;
      height: 41px;
      top: calc(-41px - 10px);
    }
  }

  .page-img{
    width: 373px;
    height: 373px;
  }

  .page-iframe{
    height: 373px;
  }

  .page-content{
    min-height: 373px;
  }

  .podval{
    .know-us-img-link{
      flex-direction: row-reverse;
    }
  }
}

@media (min-width: 1200px){
  .content-holder {
    max-width:  1255px;
  }

  .slide{
    img {
      width: 368px;
      height: 368px;
    }
  }

  .page-img{
    width: 368px;
    height: 368px;
  }

  .page-iframe{
    height: 100vh;
  }

  .page-content{
    min-height: 368px;
  }
}

.btn{
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.btn-1{
  background: var(--gradient);
  border: none;
  color: var(--white);
  padding: 14px 18px;
  border-radius: 26px;

  &:hover,
  &:focus{
    transform: scale(1.14);
  }
}

.btn-2{
  color: var(--accent);
  background-color: var(--white);
  padding: 16px;
  border: 1px solid var(--accent);

  &:hover,
  &:focus{
    border-radius: 30px;
  }
}

.btn-3{
  overflow: hidden;
  background-color: var(--white);
  border: 1px solid var(--black);
  color: var(--black);
  padding: 26px;

  &::before{
    position: absolute;
    content: '';
    top: -100%;
    left: 0;
    transition: var(--transition);
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background: var(--extra-accent);
  }

  span{
    position: relative;
    z-index: 2;
  }

  &:hover::before,
  &:focus::before{
    top: 0;
    border-radius: 0;
  }
}

.btn-4 span{
  float: left;
  transition: var(--transition);
  position: relative;
  display: block;
  overflow: hidden;
  padding: 16px;
  text-align: center;
  background: transparent;
  text-transform: uppercase;
  font-weight: 900;
  background-color: #fd8684a3;

  &:before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 5px;
    width: 100%;
    border-bottom: 5px solid transparent;
    border-left: 5px solid transparent;
    box-sizing: border-box;
    transform: translateX(100%);
  }

  &:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    border-top: 5px solid transparent;
    border-right: 5px solid transparent;
    box-sizing: border-box;
    transform: translateX(-100%);
  }

  &:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  }

  &:hover:before {
    border-color: #262626;
    height: 100%;
    transform: translateX(0);
    transition: .3s transform linear, .3s height linear .3s;
  }

  &:hover:after {
    border-color: #262626;
    height: 100%;
    transform: translateX(0);
    transition: .3s transform linear, .3s height linear .5s;
  }
}

.btn-4 {
  color: black;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  border: none;
  background-color: transparent;
}


.btn-5 {
  padding: 14px 16px;
  font-weight: 700;
  color: #000;
  background-color: #fff;
  border: none;
  border-radius: 41px;
  box-shadow: 0px 7px 16px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  outline: none;


&:hover {
  background-color: #23c483;
  box-shadow: 0px 16px 18px rgba(46, 229, 157, 0.4);
  color: #fff;
  transform: translateY(-7px);
}

}

@keyframes legalNote{
  0%{
    transform: scale(0.94) rotateX(20deg);
  }
  50%{
    transform: scale(1) rotateX(0deg);
  }
  100%{
    transform: scale(0.94) rotateX(20deg);
  }
}