@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Stencil+Display:wght@400;500;600;700&display=swap');

:root{
    --o-1: #7fc64a;
    --o-2: #ffab00;
    --o-3: #e4d508;
    --o-4: #ff7979;
    --o-5: #1293b7;
    --accent: var(--o-5);
    --h-1: #2e463e;
    --h-2: #3a2121;
    --h-3: #1e1b44;
    --h-4: #3f2e46;
    --h-5: #162c37;
    --bg-dark: var(--h-5);
    --sh-1: 0px 5px 16px 0px rgba(127, 198, 74, 0.55);
    --sh-2: 0px 5px 16px 0px rgba(198, 169, 74, 0.55);
    --sh-3: 0px 5px 16px 0px rgba(217, 212, 122, 0.55);
    --sh-4: 0px 5px 16px 0px rgba(218, 109, 154, 0.55);
    --sh-5: 0px 5px 16px 0px rgba(99, 179, 219, 0.55);
    --box-shadow: var(--sh-5);
    --white: #fff;
    --black: #1d1d1d;
    --transition: 0.5s linear;
}

html {
  scroll-behavior: smooth;
}

*{
  box-sizing: border-box;
}

body{
  box-sizing: border-box;
  font-family: 'Questrial', sans-serif !important;
  font-size: 16px;
  direction: ltr;
  margin: 0;
  padding: 0;
  height: 100%;
}


a{
  text-decoration: none;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height:1.4;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

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;
  overflow: hidden;
}

video{
  display: block;
  box-sizing: border-box;
}

h5{
  font-size: 1.1rem;
}

.module{
  padding: 57px 0;
}

.wrapper {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

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

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

.header{
  background-color: var(--bg-dark);
  color: var(--white);
}

.header-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}

.logo{
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: 17px 0;
  
  img{
    width: 59px;
    height: 59px;
    object-fit: contain;
  }
  
  h1{
    text-transform: uppercase;
    font-weight: 800;
    font-size: 16px;
    text-align: center;
    font-family: 'Big Shoulders Stencil Display', sans-serif;
    color: var(--white);
    margin: 0;
    transition: var(--transition);
  }

  &:hover > h1,
  &:focus > h1{
    color: var(--accent);
  }
}

.menu-nav{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 0 0 17px;

  a{
    color: var(--white);
    text-transform: capitalize;
    font-size: 20px;
    transition: var(--transition);
    font-family: 'Big Shoulders Stencil Display', sans-serif;

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.banner{
  overflow: hidden;
  position: relative;

  .wrapper{
    padding-bottom: 100px;
  }
}

.banner-content{
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-bg{
  width: 100%;
	height: 100%;
  overflow: hidden;
	margin: 0;
	background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
}

.banner-img{
  padding-top: 95px;
  width: 100%;
  height: 362px;
  margin: 0 auto;
  position: relative;

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

#svg {
	width: 100%;
	height: 100%;
	animation: fade_in 0.8s linear forwards;
	will-change: contents;
  opacity: 0.15;
}

* {
	overflow: visible;
}

#svg svg {
	transform-box: border-box;
	transform-origin: center;
	will-change: opacity transform;
}

#svg rect {
	transform-box: fill-box;
	transform-origin: center;
	animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	animation-iteration-count: infinite;
	opacity: 0;
}

svg path {
	transform-box: fill-box;
}

#svg svg:nth-of-type(5n) rect {
	filter: blur(2px);
}

#svg svg:nth-of-type(9n) rect {
	filter: blur(4px);
}


@keyframes fade_in_out {
	0% {
		opacity: 0%;
		transform: translateY(200%) scale(0.7);
	} 15%, 40% {
		opacity: 1;
		transform: translateY(0) scale(1);
	} 55%, 100% {
		opacity: 0%;
		transform: translateY(-200%) scale(0.7);
	}
}

@keyframes fade_in {
	0%, 60% { opacity: 0; }
	100% { opacity 1; }
}

.header-title{
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  margin-top: 20px;
}

#scrollTopBtn {
  display: none; 
  position: fixed; 
  bottom: 20px; 
  right: 20px; 
  z-index: 99; 
  border: none; 
  outline: none; 
  background-color: #555;
  color: white; 
  cursor: pointer; 
  padding: 16px;
  font-size:16px; 
}

#scrollTopBtn:hover {
  background-color: var(--accent); 
}

.main-box{
  display: flex;
  flex-direction: column-reverse;
  gap: 17px;
}

.main-item{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  border-radius: 5px;
  background-color: #ecf0f1;
  overflow: hidden;
}

.main-child{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px;
  width: 100%;
}

.main-child:nth-child(4){
  background-color: #dfe6e9;
}

.rating{
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  border-radius: 14px;
  padding: 2px 15px;
  background-color: #fff;

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

.game-img-box{
  width: 100%;
  height: 104px;
  display: inline-block;

  img{
    width: 100%;
    height: 100%;
    border-radius: 3px;
    object-fit: cover;
    transition: var(--transition);

    &:hover,
    &:focus{
      box-shadow: var(--box-shadow);
    }
  }
}

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

.title{
  text-transform: capitalize;
  font-size: 36px;
  font-weight: 800;
  font-family: 'Big Shoulders Stencil Display', sans-serif;
  color: var(--accent);
  text-align: end;
  margin-bottom: 17px;
}

.subtitle{
  font-style: italic;
  text-align: end;
  margin-bottom: 17px;
}

.block{
  --c-1: var(--accent);
  --c-2: #8f8f8f75;
  color: var(--c-1) !important;
}

.game-title{
  font-weight: 800;
  text-align: center;
  font-size:20px;
}

#main1{
  display: none;
}

.main2{
  background-color: #f1f3f4;

  .row-4{
    margin: 17px 0;
  }

  .title{
    color: var(--bg-dark);
    margin-bottom: 15px;
  }
}

.game-box-2{
  background: var(--white);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap:  17px;
  padding: 17px;
  height: 100%;

  video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 5px;
  }
}

.d-none{
  --d-1: flex;
  --d-2: none;
  display: var(--d-1);
}

.main-row2{

  .game-box-2{
    background-color: var(--bg-dark);
    color: var(--white);
  }
}

.game-desc{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}

.game-title-desc{
  font-weight:800;
  font-size: 22px;
  text-align: center;
}

.game-content2{
  text-align: center;
}


.slider {
  position: relative;
  width: 80%;
  margin: 0 auto; 
  height: 353px; 
  overflow: hidden;
}

.slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider img.active {
  opacity: 1;
}

.au-box{
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap:  17px;
}

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

.ben-box{
  height: 100%;
  background-color: var(--bg-dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding:  17px;
  transition: var(--transition);

  &:hover,
  &:focus{
    box-shadow: var(--box-shadow);
    transform: scale(1.03);
  }
}

.ben-icon{
  width: 45px;
  height: 45px;

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

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

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

.liders{
  background-color: #f1f3f4;
}

.liders-box{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.liders-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 13px;
  width: 100%;
  position: relative;
  border-radius: 5px;
  flex-grow: 1;
  gap: 13px;
  transition: var(--transition);

  &::before{
    border-radius: 5px;
  }

  &:hover,
  &:focus{
    transform: scale(1.02);
    box-shadow: var(--box-shadow);
  }
}

.liders-item:nth-child(1)::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  opacity: 1;
}
.liders-item:nth-child(2)::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  opacity: 0.9;
}
.liders-item:nth-child(3)::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  opacity: 0.8;
}
.liders-item:nth-child(4)::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  opacity: .7;
}
.liders-item:nth-child(5)::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  opacity: .6;
}
.liders-item:nth-child(6)::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  opacity: .5;
}
.liders-item:nth-child(7)::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  opacity: .4;
}

.liders-name{
  position: relative;
  color: var(--white);
  text-align: center;
}

.liders-image{
  position: relative;
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.liders-number{
  position: relative;
  color: var(--white);
  font-size: 36px;
  font-weight:800;
  text-align: center;
}

.liders-item:nth-child(1),
.liders-item:nth-child(2),
.liders-item:nth-child(3){
  .liders-image{
    position: absolute;
    top: 5px;
    left: 7px;
    z-index: 1;
  }
}

.liders-avatar{
  position: relative;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  overflow: hidden;

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

.liders-score{
  position: relative;
  background-color: var(--o-2);
  color: var(--white);
  padding: 5px;
  border-radius: 5px;
  width: 100%;
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  margin-top: 26px;
}


.progress-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px;
  background-color: transparent;
  border-radius:5px;
  margin-bottom: 20px;
  position: relative;
  max-width: 770px;
  margin: 0 auto;
  margin-bottom: 17px;
}

.progress-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--accent);
  z-index: 1;
  transform: translateY(-50%);
}

.step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--bg-dark);
  color: var(--white);
  font-size: 26px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);

  &:hover,
  &:focus{
    background-color: var(--accent);
    box-shadow: var(--box-shadow);
  }
}

.step.completed {
  background-color: var(--accent);
  color: #fff;
}

.content {
  background-color: #fff;
  padding: 20px;
  border-radius:5px;
  box-shadow: var(--box-shadow);
  min-height: 332px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 770px;
  margin: 0 auto;

  p{
    text-align: center;
    font-weight: 700;
    font-size: 22px;
    color: var(--bg-dark);
  }
}

.step-col{
  height: 353px;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius:5px;
  }
}

.form-module{
  background-color: var(--bg-dark);
  color: var(--white);
}

.form{
  display: flex;
  flex-direction: column;
  gap: 13px;
  max-width: 770px;
  margin: 0 auto;
}

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

.contact-form-item > input,
.contact-form-item > textarea,
.input-control__container-section,
.textarea-control__container-section{
  width: 100%;
  background-color: transparent;
  box-shadow: var(--box-shadow);
  border: none;
  outline: none;
  padding: 16px 20px;
  color: var(--white);
}

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

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

.footer{
  background-color: #0c0b0b;
  color: var(--white);
  padding: 30px 0;
}

.footer-wr{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

.footer-nav{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 17px;

  a{
    color: var(--white);
    transition: var(--transition);
    text-align: center;

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

.copyright-box{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.copyright{
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  color: #ffffff8a;
}

.disclaimer-img{
  width: 45px;
  height: 45px;

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

.disclaimer-box{
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 17px;
  border: 2px solid;
  animation: fadeInBorderColorChange 2s ease-in-out infinite alternate;
}

.animated-text {
  animation: fadeInColorChange 2s ease-in-out infinite alternate;
}

.title-disclaimer{
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 20px;
}

.disclaimer-text{
  font-size: 20px;
}

@keyframes fadeInColorChange {
  0% {
    color: var(--o-3); 
  }
  50% {
    color: var(--o-4);
  }
  100% {
    color: var(--o-5)
  }
}
@keyframes fadeInBorderColorChange {
  0% {
    border-color: var(--o-3); 
  }
  50% {
    border-color: var(--o-4);
  }
  100% {
    border-color: var(--o-5)
  }
}

.gallery{
  direction: ltr !important;
  background-color: #dfe6e9;
}

.modal {
  display: none;
  position: fixed;
  z-index: 100;
  padding-top: 59px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  display: block;
  width: 80%;
  max-width: 770px;
  display: block;
  width: 80%;
  max-width: 770px;
  top: 50%;
  left: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
}

.close {
  position: absolute;
  top: 90px;
  right: 35px;
  color: var(--white);
  font-size: 37px;
  font-weight: 800;
  transition: 0.2s;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
}

.prevImg,
.nextImg {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -46px;
  color: var(--white);
  font-weight:800;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.nextImg {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prevImg:hover,
.nextImg:hover {
  color: var(--accent);
}

.gallery-list{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.gallery-item{
  box-sizing: border-box;
  width: calc(50% - 5px);
  border-radius:5px;
  height: 135px;
  cursor: pointer;
  transition: var(--transition);

  img{
    border-radius:5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  &:hover,
  &:focus{
    box-shadow: var(--box-shadow);
    transform: scale(1.02);
  }
}
.sec-games-module{
  display: flex;
  flex-direction: column-reverse;
  gap:20px ;
}
.page-img{
  width: 100%;
  height: auto;
  padding:  17px;
  
  img{
    padding:  13px;
    animation: pageImg  2s linear infinite;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #dfe6e9;
    border-radius:5px;
  }
}

@keyframes pageImg {
  0% {
    box-shadow: 0px 5px 16px 0px rgba(217, 212, 122, 0.55);
  }
  50% {
    box-shadow: 0px 5px 16px 0px rgba(218, 109, 154, 0.55);
  }
  100% {
    box-shadow: 0px 5px 16px 0px rgba(99, 179, 219, 0.55);
  }
}

.box-iframe{
  width: 100%;
  height: 100vh;
  margin: 17px 0;

  iframe{
    border-radius:5px;
    width: 100%;
    height: 100%;
    border: none;
  }
}

.contact-page-item{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;

  gap: 17px;
  padding: 17px;
  color: var(--white);

  a{
    position: relative;
    color: var(--white);
    transition: var(--transition);
    word-break: break-all;
    font-size: 20px;

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

  .adres{
    color: var(--white);
    text-align: center;
    position: relative;
    font-size: 20px;
  }
}

.cpi1::before{
  position: absolute;
    border-radius:5px;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  opacity: 1;
}

.cpi2::before{
  position: absolute;
    border-radius:5px;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  opacity: .9;
}

.cpi3::before{
  position: absolute;
    border-radius:5px;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  opacity: .8;
}

.cpi4::before{
  position: absolute;
    border-radius:5px;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  opacity: .7;
}

.map{
  width: 100%;
  height: 353px;
  margin: 17px 0;

  iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius:5px;
    border: none;
  }
}

.cpi-icon{
  width: 57px;
  height: 57px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  svg{
    width: 46px;
    height: 46px;
  }
}

.privacy-content{
  word-break: break-all;
  overflow: hidden;
}

#steps{
  direction: ltr !important;
}


.content-block {
  display: block;
}

.content-block.hidden {
  display: none;
}


@media (max-width: 479px){
  .menu-nav{
    width: 100% !important;
  }

  .header-box{
    flex-direction: column !important;
    padding: 17px;
  }

  .logo-box{
    padding: 0;
  }

  .logo{
    flex-direction: column;
    justify-content: center;
  }
}

@media (min-width: 480px){
  .liders-box{
    flex-direction: row;
  }
  
  .liders-item{
    width: calc((100% / 2) - 5px);
  }
}

@media (min-width: 576px) {
  .wrapper {
    max-width: 540px;
  }

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

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

  .liders-item{
    width: calc((100% / 3) - 5px);
  }

  .step {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .copyright-box{
    flex-direction: row;
  }

  .page-img{
    height: 353px;
  }

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


@media (min-width: 768px){
  .wrapper {
    max-width: 720px;
  }

  .row-2,
  .row-3,
  .row-4{
    flex-direction: row-reverse;
  }

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

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

  .header-title{
    font-size: 26px;
    padding: 0 46px;
  }

  .main-item{
    flex-direction: row;
  }
  
  .main-child{
    width: 50%;
  }  

  .liders-item{
    width: calc((100% / 4) - 5px);
  }

  .step {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .gallery-item{
    width: calc(25% - 5px);
    height: 353px;
  }

  .page-img{
    height: 353px;
    width: 353px;
    margin: 0 auto;
    float: none;
  }

  .page-content{
    min-height: 353px;
  }

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

@media (max-width: 991px){
  .step-col{
    display: none;
  }
}
@media (min-width: 992px){
  .wrapper {
    max-width: 960px;
  }

  .col-3{
    width: calc(33.333% - 17px);
  }

  .col-4{
    width: calc(25% - 17px);
  }
  .col-5{
    width: calc(20% - 17px);
  }

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

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

  
  .header-title{
    font-size: 36px;
    padding: 0  95px;
  }

  .main-item{
    flex-direction: row;
  }

  .main-child:nth-child(1){
    width: 25%;
  }
  
  .main-child:nth-child(2){
    width: 20%;
  }
  
  .main-child:nth-child(3){
    width: 35%;
  }
  
  .main-child:nth-child(4){
    width: 20%;
  }

  .liders-item{
    width: calc((100% / 5) - 5px);
  }

  .step-col{
    width: calc(20% - 17px) !important;
  }

  .step {
    width: 80px;
    height: 80px;
    font-size: 42px;
  }

  .page-img{
    width: 362px;
    height:362px;
  }

  .page-content{
    min-height: 362px;
  }

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

@media (max-width: 1199px){
  .menu{
    width: 25px;
    height: 20px;
    position: relative;;
    cursor: pointer;
  
    span {
      height: 3px;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      transition: all 0.3s ease;
      left: 0;
      background: #ffffff;
      display: inline-block;
      width: 100%;
      position: absolute;
      content: "";
    }
  
    span:first-child {
      top: 0;
    }
  
    span:nth-child(2) {
      top: 52%;
      transform: translateY(-50%);
      width: 100%;
      left: 0%;
    }
  
    span:last-child {
      bottom: 0;
    }
  
    &.active span:nth-child(2) {
      width: 70%;
      left: 30%;
    }
  }

  .header-box{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .menu-nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: baseline;
    padding: 17px;
    justify-content: start;
    transform: translateX(-100%);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    direction: ltr;
    
    &::before{
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      content: '';
      background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
    }
  }

  .menu-nav.visible{
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  
  .close-menu{
    color: var(--white);
    cursor: pointer;
    margin-left: auto;
    transition: var(--transition);
    width: 25px;
    height: 25px;
    position: relative;

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

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

  .menu-item{
    position: relative;
  }
}

@media (min-width: 1200px){
  .wrapper {
    max-width: 1300px;
  }

  .menu{
    display: none;
  }

  .close-menu{
    display: none;
  }

  .liders-item{
    width: calc((100% / 7) - 5px);
  }

  .step {
    font-size: 42px;
  }

  .page-img{
    width: 500px;
  }

  .menu-nav{
    gap: 36px;
  }
}

.button-1{
  color: #ffffff !important;
  background-color: var(--accent) !important;
  box-shadow: var(--box-shadow);
  display: inline-block;
  text-align: center;
  padding: 20px;
  border-radius: 5px;
  transition: var(--transition);

  &:hover,
  &:focus{
    box-shadow: 0px 5px 15px 0px rgba(127, 198, 74, 0) ;
  }
}


.button-2 {
  font-size: 16px;
  padding: 0.8em 26px;
  background-color: #7c7c7c;
  border: 2px solid var(--accent);
  border-radius: 15px;
  color: #fff;
  font-weight: bolder;
  transition: cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s;
  box-shadow: -5px 5px 0px 0px var(--accent);
  display: inline-block;
  text-align: center;
}

.button-2:hover {
  transform: translate(5px, -5px);
}

.button-3 {
  padding: 16px 26px;
  font-size: 16px;
  outline: none;
  border: none;
  border-radius: 14px;
  transition: 0.3s;
  background: var(--bg-dark);
  cursor: pointer;
  color: var(--accent);
  box-shadow: 0 0 14px #363636, inset 0 0 14px var(--accent);
  display: inline-block;
  text-align: center;
}

.button-3:hover {
  animation: a 0.5s 1 linear;
}

@keyframes a {
  0% {
    transform: scale(0.7, 1.3);
  }

  25% {
    transform: scale(1.3, 0.7);
  }

  50% {
    transform: scale(0.7, 1.3);
  }

  75% {
    transform: scale(1.3, 0.7);
  }

  100% {
    transform: scale(1, 1);
  }
}


.button-4 {
  position: relative;
  text-decoration: none;
  padding: 16px 26px;
  display: inline-block;
  border-radius: 6em;
  transition: all .2s;
  border: none;
  font-family: inherit;
  font-weight: 700;
  color: var(--bg-dark);
  background-color: var(--accent);
  display: inline-block;
  text-align: center;
 }
 
 .button-4:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--accent);
 }

 
 .button-4::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 95px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all .3s;
 }
 
 .button-4::after {
  background-color: #fff;
 }
 
 .button-4:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
 }


.button-5 {
  display: inline-block;
  padding: 12px 28px;
  margin: 10px;
  font-weight: bold;
  color: #fff;
  background-image: linear-gradient(to bottom right, var(--accent), var(--bg-dark));
  border: none;
  border-radius: 40px;
  box-shadow: 0px 4px 0px var(--bg-dark);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  text-align: center;
}

.button-5:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 0px var(--bg-dark);
}




.footer-logos {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-direction: row;
  flex-wrap: wrap;

  a img {
    max-height: 50px;
    width: 100%;
    display: block;
    max-width: none;
    transition: 0.3s linear;
    
    &:hover,
    &:hover{
      transform: scale(0.96);
      opacity: 0.8;
    }
  }
}
