@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');

:root{
  --o-1: #00eaff;
  --o-2: #00ffb7;
  --o-3: #ff2f00;
  --o-4: #ff00ee;
  --o-5: #ffd500;
  --accent: var(--o-5);
  --first-color: #00eaff;
  --second-color: #0bfd96;
  --third-color: #f0f;
  --fourth-color: #585b97;
  --white: #fff;
  --black: #000000;
  --ob-1: #1f2038;
  --ob-2: #13182d;
  --ob-3: #2a2b36;
  --ob-4: #1a0f23;
  --ob-5: #1f282b;
  --bg: var(--ob-5);
  --on-1: #18192c;
  --on-2: #000000;
  --on-3: #1d1e20;
  --on-4: #0b050f;
  --on-5: #1e2021;
  --header: var(--on-5);
  --border-color: #1c1f25;
  --transition: 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
  --bg-color-opacity: rgba(88, 91, 151, .15);
}

html{
  scroll-behavior: smooth;
}

*{
  box-sizing: border-box;
}

body{
  font-family: 'DM Mono', sans-serif !important;
  font-size: 16px;
  direction: ltr;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  height: 100%;
  position: relative;
  box-sizing: border-box;
  background-size: 120px;
  background-color: var(--bg);
  background-image: url('img/bg.svg');
  background-repeat: repeat;
  background-attachment: fixed;
  width: 100%;

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('content/dir-bg/opacity_bg-06865958599929.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.7;
    z-index: -1;
  }
}

a{
  text-decoration: none;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.3;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 22px;
}

li {
  margin-bottom: 0.5rem;
}

ul ul, ol ul, ul ol, ol ol {
  margin-bottom: 0;
}

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

h5{
  font-size: 1.2rem;
}

.custom-module{
  padding: 55px 0;
  overflow: hidden;
  color: var(--white);
}

.custom-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  box-sizing: border-box;
}

.grid-row-2,
.grid-row-3,
.grid-row-4,
.grid-row-5,
.grid-row-6{
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  gap: 16px;
}

.grid-col-30,
.grid-col-70,
.grid-col-2,
.grid-col-3,
.grid-col-4,
.grid-col-5,
.grid-col-6{
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
}

.title{
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  font-family: 'Fjalla One', sans-serif;
  color: var(--white);
  text-align: center;
  margin-bottom: 26px;
}

.custom-header{
  background: var(--header);
  border-bottom: 3px solid var(--border-color);
  left: 0;
  padding: 14px 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 3;
  min-height: 120px;
  transition: var(--transition);
}

.nav-wr{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap:  10px;
  justify-content: space-between;
}

.logo{
  display: flex;
  flex-direction: row;
  gap: 3px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  img{
    width: 80px;
    height: 80px;
    object-fit: contain;
  }

  h1{
    color: var(--accent);
    font-family: 'Fjalla One', sans-serif;
    font-style: italic;
    font-weight: 900;
    font-size: 22px;
    margin: 0;
    transition: var(--transition);
  }

  &:hover h1,
  &:focus h1{
    text-shadow: 2px 2px 2px var(--o-5), -2px -2px 2px var(--first-color);
  }
}

.burger #ck {
  display: none;
}

.burger .toggle {
  position: relative;
  width: 26px;
  height: 26px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.burger .bars {
  width: 100%;
  height: 5px;
  background: var(--accent);
  border-radius: 5px;
  transition: var(--transition);
}

.burger:hover .bars,
.burger:focus .bars{
    box-shadow: 3px 3px 3px var(--o-5), -3px -3px 3px var(--first-color);
}

.burger #bar2 {
  transition-duration: 0.9s;
}

.burger #bar1, #bar3 {
  width: 70%;
}

.burger input[type='checkbox']:checked + .toggle .bars {
  position: absolute;
  transition: var(--transition);
}

.burger input[type='checkbox']:checked + .toggle #bar2 {
  transform: scaleX(0);
  transition: var(--transition);
}

.burger input[type='checkbox']:checked + .toggle #bar1 {
  width: 100%;
  transform: rotate(45deg);
  transition: var(--transition);
}

.burger input[type='checkbox']:checked + .toggle #bar3 {
  width: 100%;
  transform: rotate(-45deg);
  transition: var(--transition);
}

.burger input[type='checkbox']:checked + .toggle {
  transition: var(--transition);
  transform: rotate(180deg);
}

.nav-bar{
  padding: 120px 26px;
  position: fixed;
  top: -60%;
  left: 50%;
  width: 100%;
  max-width: 1156px;
  height: 100%;
  background-color: var(--header);
  transform: scale(0) translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 2;
  max-height: 549px;
  border: 4px solid var(--border-color);

  .grid-row-2{
    height: 100%;
  }
}

#body-blur{
  position: fixed;
  background-color: #000000e2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.nav-bar.nav-bar-open{
  top: 60%;
  left: 50%;
  transform: scale(1) translate(-50%, -50%);
  opacity: 1;
  visibility: visible;
  transition: var(--transition);
  z-index: 3;
}

.nav-bar-box{
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  
  a{
    font-size: 22px;
    color: var(--accent);
    font-family: 'Fjalla One', sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
    
    &:hover,
    &:focus{
      text-shadow: 3px 3px 3px var(--o-5), -3px -3px 3px var(--first-color);
    }
  }
}

.nav-bar-img-wr{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-bar-img{
  width: 100%;
  height: 248px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.custom-banner-img-wr{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-banner{
  overflow: hidden;
  position: relative;
  padding-top: calc(120px + 91px);
  padding-bottom: 120px;
}


.custom-banner-img{
  width: 100%;
  height: 248px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: rotateIn 9s linear infinite;
  }
}

.banner-title-wr{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px;
}

.banner-title{
  font-weight: 900;
  color: var(--white);
  font-size: 26px;
  animation: title 5s linear infinite;
}

.organizers-line {
  background: linear-gradient(90deg, rgba(31, 31, 55, 0) -.71%, var(--accent) 57.27%, rgba(31, 32, 56, 0) 100.5%);
  width: 100%;
  height: 3px;
  margin: 18px 0 10px;
}

.stat-list{
  margin-bottom: 26px;
}

.stat-item{
  display: none;
}

.stat-item.stat-visible{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  transition: var(--transition);
  gap: 14px;
  animation: statAnim 2s linear;

  span{
    color: var(--white);
  }
}

.stat-num{
  color: var(--accent);
  font-weight: 900;
  font-size: 20px;
}

.stat-text{
  color: var(--white);
  font-weight: 900;
  font-size: 20px;
}

.our-story{
  background: var(--bg-color-opacity);
  border: 1px solid var(--accent);
  padding: 15px;
  position: relative;
}

.corner-left{
  position: absolute;
  top: -2px;
  left: -2px;
  width: 48px;
  height: 48px; 

  svg{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.corner-right{
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 48px;
  height: 48px;
  transform: rotate(180deg);

  svg{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.our-story-box {
  line-height: 1.3;
  padding:  16px;
  white-space: pre-wrap;
  display: flex;
  flex-direction: column;
}

.our-story-text{
  font-size: 22px;
  font-weight: 500;
}

.steps-row{
  .grid-col-4:nth-child(1){
    .step-item{
      animation-delay: 1.3s;
    }
  }
  .grid-col-4:nth-child(2){
    .step-item{
      animation-delay: 2.3s;
    }
  }
  .grid-col-4:nth-child(3){
    .step-item{
      animation-delay: 3.3s;
    }
  }
  .grid-col-4:nth-child(4){
    .step-item{
      animation-delay: 4.3s;
    }
  }
}

.step-item{
  width: 248px;
  margin: 0 auto;
  height: 248px;
  background-color: var(--bg-color-opacity);
  border: 2px solid var(--accent);
  border-radius:  50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 16px;
  animation: stepScale 9s linear infinite;
}

.step-num{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5;
  font-size: 47px;
}

.corner-step{
  position: absolute;
  left: 37%;
  top: calc(100% - (47px / 2) + 16px);
  width: 47px;
  height: 47px;
  transform: rotate(225deg);

  svg{
    width: 100%;
    height: 100%;
  }
}

.steps-row{
  flex-direction: column !important;
}

.step-text{
  text-align: center;
}

.game-card-box{
  display: flex;
  flex-direction: row;
  gap: 14px;
  padding: 26px;
  background-color: var(--bg-color-opacity);
  border: 3px solid var(--accent);
  position: relative;
}

.game-card-img{
  width: 100%;
  max-width: 248px;
  height: 336px;
  border: 3px solid var(--accent);
  overflow: hidden;

  img{
    width: 100%;
    height: 100%;
    transition: var(--transition);
    transform: scale(1.2);
    object-fit: cover;
  }

  &:hover img,
  &:focus img{
    transform: scale(1);
  }
}

.game-card-decs{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.game-card-title{
  text-align: center;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 900;
  transition: var(--transition);

  &:hover,
  &:focus{
    color: var(--white);
  }
}

.game-card-content{
  text-align: center;
}

.planet-img{
  width: 40px;
  height: 40px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: rotateIn 9s linear infinite;
  }
}

.planet-img-2 img{
  animation-delay: 1.3s;
}

.planet-img-3 img{
  animation-delay: 2.3s;
}

.planet-img-4 img{
  animation-delay: 3.3s;
}

.planet-img-5 img{
  animation-delay: 4.3s;
}

.planet-img-6 img{
  animation-delay: 5.3s;
}

#game-box-one{
  display: block;
}

.game-box-second-list{
  display: flex;
  gap: 15px;
  flex-direction: column-reverse;
}

.game-box-second-item{
  position: relative;
  display: inline-block;
  transition: var(--transition);
}

.game-box-second-img{
  width: 100%;
  height: 249px;
  position: relative;
  z-index: 1;
  border: 2px solid var(--accent);
  display: inline-block;
  transition: var(--transition);

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

.game-box-second-title{
  position: absolute;
  margin: 0;
  left: 0;
  bottom: 0;
  color: var(--white);
  background-color: #000000a9;
  transition: var(--transition);
  padding:  16px;
}

.game-box-second-decs{
  height: 249px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background-color: var(--bg-color-opacity);
  transition: var(--transition);
  padding: 16px;
}

.game-box-second-item:hover,
.game-box-second-item:focus{
  box-shadow:  10px 10px 26px var(--o-5), -10px -10px 26px var(--first-color);

  .game-box-second-img{
    border: 3px solid var(--bg-color-opacity);
  }

  .game-box-second-title{
    color: var(--accent);
  }
}

.game-box-second-content{
  p{
    text-align: center;
    color: var(--white);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    font-size: 22px;
  }
}

.photo-list{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-direction: row-reverse;
  align-items: center;
}

.photo-item{
  transition: var(--transition);
  width: calc(((100% - 74%) / 4) - 14px);
  height: 336px;
  border: 2px solid var(--accent);

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

.big-photo{
  transition: var(--transition);
  width: calc(74% - 14px);
}

.liders-top-item{
  padding: 3px;
  background-color: var(--accent);
  max-width: 249px;
  width: 100%;
  margin: 0 auto;
  clip-path: polygon(88% 0, 100% 12%, 100% 100%, 0 100%, 0 0);
}

.liders-top-box{
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
  padding: 16px;
  background-color: var(--bg);
  height: 100%;
  width: 100%;
  margin: 0 auto;
  clip-path: polygon(88% 0, 100% 12%, 100% 100%, 0 100%, 0 0);
}

.liders-img{
  width: 100%;
  height: 249px;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(88% 0, 100% 12%, 100% 100%, 0 100%, 0 0);
  }
}

.liders-desc{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 14px;
}

.liders-name{
  color: var(--white);
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
}

.liders-score{
  color: var(--accent);
  font-size: 22px;
  font-weight: 900;
}

.form-wr{
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 887px;
  width: 100%;
  margin: 0 auto;
  gap: 16px;
  background-color: var(--bg-color-opacity);
  border: 2px solid var(--accent);
  padding: 16px;
}

.form{
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--white);
  gap: 16px;
}

.contact-page-form-item{
  width: 100%;
}

.contact-page-form-item > input,
.contact-page-form-item > textarea,
.input-group__row--element,
.textarea-group__row--element{
  color: var(--white);
  width: 100%;
  border: 2px solid var(--accent);
  background-color: transparent;
  outline: none;
  transition: var(--transition);
  padding: 14px 16px;

  &:hover,
  &:focus{
    box-shadow: 5px 5px 22px var(--o-5), -5px -5px 22px var(--first-color);
  }
}

.privacy{
  color: var(--white);
  transition: var(--transition);
  display: inline-block;

  &:hover,
  &:focus{
    text-shadow: 2px 2px 2px var(--o-5), -2px -2px 2px var(--first-color);
  }
}

.custom-cprt{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-top: 26px;

  p{
    margin: 0;
    color: #ffffffa2;
  }
}

.custom-fq-list{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-direction: column-reverse;
}

.custom-fq-item{
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.custom-fq-q{ 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 2px solid var(--accent);
  height: 140px;
}

.custom-fq-a{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;;
  max-height: 336px;
  opacity: 1;
  visibility: visible;
  transition: var(--transition);
  background-color: var(--bg-color-opacity);
}


.custom-footer{
  background-color: var(--header);
  border: 2px solid var(--border-color);
  padding: 26px 0;
}

.discl-module{
  overflow: hidden;
}

.disclaimer-wr{
  width: 100%;
  max-width: 1156px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  gap: 16px;
  padding: 15px;
  

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    opacity: 0.2;
    animation: discl 6s linear infinite;
    z-index: 1;
  }
  &::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    opacity: 0.2;
    animation: disclRight 6s linear infinite;
    z-index: 1;
  }

  .title,
  .disclaimer-text{
    position: relative;
    z-index: 2;
  }
}

.disclaimer-img{
  width: 140px;
  height: 140px;
  position: relative;
  z-index: 2;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.custom-f-box{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.custom-f-list{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-direction: column-reverse;

  a{
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
    color: var(--white);
    transition: var(--transition);
    font-size: 22px;

    &:hover,
    &:focus{
      text-shadow: 3px 3px 3px var(--o-5), -3px -3px 3px var(--first-color);
    }
  }
}

.contact-item{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: var(--bg-color-opacity);
  transition: var(--transition);
  padding: 16px;
  border: 2px solid var(--accent);

  &:hover,
  &:focus{
    border: 2px solid transparent;
    box-shadow: 6px 6px 18px var(--o-5), -6px -6px 18px var(--first-color);
  }

  a{
    text-align: center;
    color: var(--white);
    display: inline-block;
    word-break: break-all;
    transition: var(--transition);
    font-weight: 900;
    font-size: 22px;

    &:hover,
    &:focus{
      text-shadow: 2px 2px 2px var(--o-5), -2px -2px 2px var(--first-color);
    }
  }
}

.adres{
    text-align: center;
    color: var(--white);
    display: inline-block;
    word-break: break-all;
    font-weight: 900;
    font-size: 22px;
}

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

.box-iframe{
  width: 100%;
  height: 373px;

  iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid var(--accent);
  }
}

.page-img-wr{
  background-color: var(--bg-color-opacity);
  width: 100%;
  height: auto;
  padding: 16px;
  border: 2px solid var(--accent);

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.prv-box{
  overflow: hidden;
  word-break: break-all;
}

  #steps-game{
    direction: ltr;
  }

@media (max-width: 575px){
  .game-card-box{
    flex-direction: column;
  }

  .game-card-img{
    height: 140px;
    width: 100%;
    max-width: none;
  }

  .photo-list{
    flex-direction: column-reverse;
  }

  .photo-item{
    width: 100%;
    height: 74px;
  }

  .big-photo{
    height: 373px;
  }
}

@media (min-width: 576px) {
  .grid-col-5{
    width: calc(50% - 16px);
  }

  .grid-row-5{
    flex-direction: row-reverse;
  }

  .grid-col-5{
    width: calc(50% - 16px);
  }

  .title{
    font-size: 20px;
  }

  .page-img-wr{
    height: 373px;
  }
}

@media (max-width: 767px){
  .nav-bar-col{
    display: none;
  }

  .step-item{
    margin-bottom: 50px;
  }

  .step-text{
    padding-top: 47px;
  }
  

}

@media (min-width: 768px){
  .grid-row-2,
  .grid-row-3,
  .grid-row-4{
    flex-direction: row-reverse;
  }

  .grid-col-2,
  .grid-col-3,
  .grid-col-4{
    width: calc(50% - 16px);
  }
 
  .grid-col-5{
    width: calc(33.333% - 16px);
  }

  .grid-col-6{
    width: calc(33.333% - 16px);
  }

  .grid-col-30{
    width: calc(30% - 16px);
  }

  .grid-col-70{
    width: calc(70% - 16px);
  }

  .custom-module{
    padding: 140px 0;
  }

  .title{
    font-size: 26px;
  }

  .logo h1{
    font-size: 20px;
  }

  .nav-bar-box{
    a{
      font-size: 36px;
    }
  }

  .stat-num{
    font-size: 36px;
  }

  .stat-text{
    font-size: 36px;
  }

  .custom-banner{
    direction: ltr;
    padding-top: calc(135px);
    padding-bottom: calc(135px);
    
    &::after{
      position: absolute;
      content: '';
      bottom: 0;
      right: 74px;
      background: url('content/other/ships-06865958599b0a.png');
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      max-width: 248px;
      width: 100%;
      height: 422px;
      transform: translateY(var(--rocket-transform, 0)); 
      z-index: -1;
      opacity: 0.7;
    }
  }

  .custom-banner-img{
    height: 390px;
  }

  .steps-row{
    flex-direction: row !important;

    .grid-col-4:nth-child(2){
      .corner-step{
        left: -14px;
        top: 75%;
        transform: rotate(270deg);
      }
    }

    .grid-col-4:nth-child(3),
    .grid-col-4:nth-child(1){
      .corner-step{
        right: -30px !important;
        top: 45% !important;
        left: auto !important;
        transform: rotate(140deg) !important;
      }
    }
  }

  .custom-banner-row{
    flex-direction: row !important;
  }

  .game-box-second-decs{
    overflow: hidden;
    max-height: 0;
    padding: 0;
  }

  .game-box-second-item:hover,
  .game-box-second-item:focus{
    .game-box-second-decs{
      max-height: 336px;
      padding: 16px;
    }
  }

  .game-box-second-list{
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }

  .page-img-wr{
    height: 422px;
  }

  .custom-fq-a{
    padding: 0;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
  }

.custom-fq-item:hover,
.custom-fq-item:focus{
  box-shadow: 5px 5px 18px var(--o-5), -5px -5px 18px var(--first-color);

  .custom-fq-a{
    padding: 16px;;
    max-height: 336px;
    opacity: 1;
    visibility: visible;
  }

  .custom-fq-q{ 
    border: 2px solid transparent;
  }
}

}


@media (min-width: 992px){
  .grid-col-3{
    width: calc(33.333% - 16px);
  }

  .grid-col-4{
    width: calc(25% - 16px);
  }

  .grid-col-5{
    width: calc(20% - 16px);
  }

  .grid-col-6{
    width: calc(20% - 16px);
  }

  .title{
    font-size: 30px;
  }
  
  .banner-title{
    font-size: 30px;
  }
 
  .custom-banner{
    padding-top: calc(135px + 100px);
    padding-bottom: calc(135px + 100px);
  }

  .corner-step{
    right: -30px !important;
    top: 45% !important;
    transform: rotate(140deg) !important;
  }

  .step-item-even{
    margin-top: 55px;
  }

  .grid-col-4:nth-child(2){
    .corner-step{
      left: auto !important;
    }
  }
}

@media (min-width: 1200px){
  .custom-container {
    max-width:  1291px;
  }

  .title{
    font-size: 42px;
  }

  .logo h1{
    font-size: 50px;
  }
}

.btn-box{
  position: relative;
  z-index: 1;
  text-align: center;
}

.button{
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 2;
}

.button-1{
  background-color: transparent;
  border:  2px solid var(--accent);
  padding: 14px 16px;
  border-radius: 1px;
  color: var(--white);
  text-transparent: uppercase;
  font-size: 18px;
  font-weight: 900;
  transition: var(--transition);

  &:hover,
  &:focus{
    box-shadow: 76px 76px  18px var(--o-5), -76px -76px  18px var(--first-color);
  }
}

.button-2{
  background-color: var(--accent);
  border: none;
  padding: 15px 16px;
  border-radius: 25%;
  color: var(--black);
  font-size:  18px;
  transition: var(--transition);

  &:hover,
  &:focus{
    background-color: var(--black);
    color: var(--accent);
    padding-right: 26px;
    padding-left: 26px;
  }
}

.button-3{
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 22px;
  transition: var(--transition);
  padding: 16px 26px;

  &:hover,
  &:focus{
    font-size: 20px;
  }
}

.button-4{
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 22px;
  transition: var(--transition);
  padding: 16px 26px;

  &:hover,
  &:focus{
    transform: translate(6px, -6px);
    box-shadow: 3px 3px 6px var(--white), -3px -3px 6px var(--white);
  }
}

.button-5{
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 22px;
  position: relative;
  transition: var(--transition);
  padding: 14px 16px;

  &::before{
    position: absolute;
    content: '';
    background-color: var(--accent);
    opacity: 0.7;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }

  span{
    position: relative;
    z-index: 2;
    transition: var(--transition);
  }

  &:hover::before,
  &:focus::before{
    filter: blur(4px);
    top: 3px;
    left: 3px;
    bottom: 3px;
    right: 3px;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -160deg);
    transform: rotate3d(0, 0, 1, -160deg);
    opacity: 0;
  }
  50% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }

  51% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 160deg);
    transform: rotate3d(0, 0, 1, 160deg);
    opacity: 0;
  }
} 

@keyframes title{
  0%{
    text-shadow:  3px  3px 6px var(--o-5), - 3px - 3px 6px var(--first-color);
  }
  50%{
    text-shadow: 0px 0px 0px var(--black), 0px 0px 0px var(--black);
  }
  100%{
    text-shadow:  3px  3px 6px var(--o-5), - 3px - 3px 6px var(--first-color);
  }
}

@keyframes statAnim{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

@keyframes stepScale{
  0%{
    transform: scale(1);
  }
  10%{
    transform: scale(0.6);
  }
  20%{
    transform: scale(1);
  }
  100%{
    transform: scale(1);
  }
}


@keyframes discl{
  0%{
    opacity: 0.2;
    transform: scale(1) rotate(0deg);
  }
  50%{
    opacity: 0.2;
    transform: scale(1.1) rotate(6deg);
  }
  100%{
    opacity: 0.2;
    transform: scale(1) rotate(0deg);
  }
}
@keyframes disclRight{
  0%{
    opacity: 0.2;
    transform: scale(1) rotate(0deg);
  }
  50%{
    opacity: 0.2;
    transform: scale(1.1) rotate(-6deg);
  }
  100%{
    opacity: 0.2;
    transform: scale(1) rotate(0deg);
  }
}