@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap');

:root{
    --o-1: #FFC827;
    --o-2: #ff2768;
    --o-3: #27ff85;
    --o-4: #FFC827;
    --o-5: #ff8c27;
    --accent: var(--o-1);
    --h-1: #2e0327;
    --h-2: #2e0303;
    --h-3: #15032e;
    --h-4: #03252e;
    --h-5: #2e0303;
    --bg: var(--h-1);
    --w-1: -3.828px -3.828px 6px 0px rgba(255, 200, 39, 0.4), 3px 5px 8px 0px rgba(255, 82, 1, 0.2);
    --w-2: -3.828px -3.828px 6px 0px rgba(255, 39, 64, 0.4), 3px 5px 8px 0px rgba(255, 1, 60, 0.2);
    --w-3: -3.828px -3.828px 6px 0px rgba(64, 255, 39, 0.4), 3px 5px 8px 0px rgba(1, 255, 124, 0.2);
    --w-4: -3.828px -3.828px 6px 0px rgba(251, 255, 39, 0.4), 3px 5px 8px 0px rgba(255, 162, 1, 0.2);
    --w-5: -3.828px -3.828px 6px 0px rgba(255, 129, 39, 0.4), 3px 5px 8px 0px rgba(255, 1, 1, 0.2);
    --box-shadow: var(--w-1);
    --wh-1: -4.828px -4.828px 12px 0px rgba(255, 200, 39, 0.4), 3px 5px 15px 0px rgba(255, 82, 1, 0.2);
    --wh-2: -4.828px -4.828px 12px 0px rgba(255, 39, 64, 0.4), 3px 5px 15px 0px rgba(255, 1, 60, 0.2);
    --wh-3:  -4.828px -4.828px 12px 0px rgba(64, 255, 39, 0.4), 3px 5px 15px 0px rgba(1, 255, 124, 0.2);
    --wh-4:  -4.828px -4.828px 12px 0px rgba(251, 255, 39, 0.4), 3px 5px 15px 0px rgba(255, 162, 1, 0.2);
    --wh-5:  -4.828px -4.828px 12px 0px rgba(255, 129, 39, 0.4), 3px 5px 15px 0px rgba(255, 1, 1, 0.2);
    --box-shadow-hover: var(--wh-1);
    --white: #fff;
    --black: #0a1b16;
    --transition: 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

html {
  scroll-behavior: smooth;
}

*{
  box-sizing: border-box;
}

body{
  box-sizing: border-box;
  font-family: 'Oswald', sans-serif !important;
  font-size: 17px;
  direction: ltr;
  margin: 0;
  padding: 0;
  height: 100%;
}


a{
  text-decoration: none;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

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;
}

video{
  display: block;
  box-sizing: border-box;
}

h5{
  font-size: 1.1rem;
}

.module{
  padding: 70px 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-wr{
  background-color: var(--bg);
}
.header{
  position: fixed;
  padding: 13px 0;
  top: 0;
  width: 100%;
  z-index: 3;
  background-color: var(--bg);
  color: var(--white);
  padding: 13px 0;
  transition: var(--transition);
}

.hiddenHeader{
  transform: translateY(-100%);
  transition: var(--transition);
}

.nav{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
}

.logo{
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  justify-content: center;

  img{
    width: 50px;
    height: 50px;
    object-fit: contain;
    animation: rotate 5s linear infinite; 
  }

  h1{
    margin: 0;
    color: var(--accent);
    font-weight: 900;
    text-transform: uppercase;
    font-family: 'Teko', sans-serif;
  }
}


@keyframes rotate {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

.menu-nav{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

.menu-item{
  a{
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    transition: var(--transition);
    font-family: 'Teko', sans-serif;

    &:hover,
    &:focus{
      color: var(--accent);
    }
  }
}

.banner{
  position: relative;
  min-height: 700px;
  overflow: hidden;

  &::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background:  linear-gradient(to bottom, var(--bg), rgba(0, 0, 0, 0.298)), url('content/back/bg-all-066e0025604034.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.5;
  }

  .wrapper{
    position: relative;

  }

  .row-2{
    padding: 50px 0;
  }
}

.banner-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 17px;
}

.banner-title{
  font-size: 22px;
  color: var(--white);
  font-weight: 600;
}

.banner-subtitle{
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}

.banner-img-wr{
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.banner-img{
  position: relative;
  width: 100%;
  height: 400px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    animation: banner-img 7s linear infinite; 

  }
}

@keyframes banner-img {
  0% {
    transform: rotate(0deg) scale(1.1);
  }
  25% {
    transform: rotate(15deg) scale(1);
  }
  50% {
    transform: rotate(0deg) scale(1.1);
  }
  75% {
    transform: rotate(-15deg) scale(1);
  }
  100% {
    transform: rotate(0deg) scale(1.1);
  }
}

.au-module{
  background-color: var(--bg);
  color: var(--white);
}

.au-img-wr{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.au-img{
  width: 100%;
  height: 300px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.au-box{
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.title{
  font-family: 'Teko', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--accent);
}

.text{
  color: var(--white);
  font-weight: 400;
  font-size: 18px;
}


.main{
  background-color: var(--bg);
  color: var(--white);
  position: relative;
  background: url('content/dir-vector/tematik-066e00256043f2.svg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  &::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--bg);
    opacity: .9;
  }

  .title{
    margin-bottom:  17px;
  }

  .wrapper{
    position: relative;
  }
}

.game-box{
  display: inline-block;
  width: 100%;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition);
  height: 100%;
  text-align: center;
  padding: 35px 40px;
  border-radius: 10px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--box-shadow);

  &::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--bg);
    opacity: .9;
  }

  &::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url('content/dir-vector/tematik-166e002560444c.svg');
    border-radius: 10px;
    z-index: -1;
    overflow: hidde
  }
}

.animate-game {
  opacity: 1;
  transform: scale(1);
}

.game-img-box{
  width: 100%;
  height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 7px;
  overflow: hidden;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.game-title{
  display: none;
}

.game-wr{
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  gap:  17px;
}

.game-title-desc{
  text-transform: uppercase;
  font-weight: 500;
  font-size: 20px;
  color: var(--accent);
  font-family: 'Teko', sans-serif;
  text-align: center;
}

.game-content{
  text-align: center;
  color: var(--white);
}

.ball{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transform: rotate(45deg);
  -webkit-transition: all ease .3s;
  -moz-transition: all ease .3s;
  transition: all ease .3s;
  box-shadow: var(--box-shadow);
}

.game-box:hover,
.game-box:focus{
  box-shadow: var(--box-shadow-hover);

  .ball{
    width: 45px;
    height: 45px;
    box-shadow: var(--box-shadow-hover);
  }
}

#main-1{
  display: none;
}

.game-box-2{
  display: inline-block;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition);
  width: 100%;
  height: 450px;

  .game-img-box{
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: var(--box-shadow);
    border-radius: 7px;
    overflow: hidden;

    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .game-desc{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap:  17px;
    background-color: #000000b4;
    align-items: center;
    justify-content: center;
    padding:  17px;
    transform: scale(0);
    opacity: 0;
    transition: var(--transition);
  }

  &:hover .game-desc,
  &:focus .game-desc{
    transform: scale(1);
    opacity: 1;
  }

  &:hover,
  &:focus{
    box-shadow: var(--box-shadow-hover);
  }
}


.animate-game-2 {
  opacity: 1;
  transform: scale(1);
}

.benefits{
  background-color: var(--bg);
  color: var(--white);
}

.ben-icon{
  width: 70px;
  height: 70px;
  padding: 10px;
  box-shadow: var(--box-shadow);
  border-radius: 50%;
  transition: var(--transition);

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.ben-title-box{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;

  .title{
    word-break: break-word;
  }
}

.ben-box{
  display: flex;
  flex-direction: column-reverse;
  gap: 17px;
}

.ben-item{
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: 17px;
  align-items: start;
  

  &:hover .ben-icon > img,
  &:focus .ben-icon > img{
    animation: pulse 3s linear infinite;
  }

  &:hover .ben-icon,
  &:focus .ben-icon{
    box-shadow: var(--box-shadow-hover);
  }
}


@keyframes pulse{
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2);
  }
  20% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.2);
  }
  40% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

.ben-text{
  text-align: start;
}


.hp{
  background-color: var(--bg);
  color: var(--white);
  position: relative;
  background: url('content/dir-vector/tematik-266e00256044a5.svg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  direction: ltr !important;

  &::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--bg);
    opacity: .9;
  }

  .title{
    margin-bottom:  17px;
  }

  .wrapper{
    position: relative;
  }

  .row-4{
    column-gap: 0;
  }
}

.step-box{
  position: relative;

  &::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 0;
    border: 1px dashed var(--accent);
    top: 60px;
    right: -50%
  }

  &:hover .step-ball,
  &:focus .step-ball{
    box-shadow: var(--box-shadow-hover);
  }
}

.pos{
  &::before{
    display: none;
  }
}

.step-ball{
  width: 120px;
  height: 120px;
  background: var(--bg);
  border-radius: 50%;
  font-size: 46px;
  margin: 0 auto 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
  color: var(--white);
  font-size: 48px;
  font-weight: 700;
  transition: var(--transition);
}

.step-text{
  text-align: center;
}

.reverse{
  display: flex;
  flex-direction: column-reverse;
}

.faq{
  background-color: var(--bg);
  color: var(--white);

  .title{
    margin-bottom:  17px;
  }
}

.accordion-item{
  height: 100%;
}

.accordion-header {
  background-color: var(--bg);
  box-shadow: var(--box-shadow);
  cursor: pointer;
  padding: 15px;
  font-size: 16px;
  border: none;
  outline: none;
  text-align: left;
  width: 100%;
  color: var(--white);
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);

  p{
    margin: 0;
  }

  span{
    width: 20px;
    height: 20px;
    color: var(--white);
    transition: var(--transition);
  }
}
.accordion-header:hover {
  box-shadow: var(--box-shadow-hover);
}

.accordion-content {
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  background-color: var(--bg);
  color: var(--white);
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;

}
.accordion-content.show {
  padding: 15px;
  max-height: 200px; 
}

.accordion-col{
  display: flex;
  flex-direction: column-reverse;
  gap: 17px;
}

.liders{
  background-color: var(--bg);
  color: var(--white);
  position: relative;
  background: url('content/dir-vector/tematik-366e00256044f7.svg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  direction: ltr !important;

  &::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--bg);
    opacity: .9;
  }

  .wrapper{
    position: relative;
  }
}

.liders-box{
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 17px;
}

.liders-img{
  width: 100%;
  height: 150px;
  margin: 0 auto;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.slider {
  width: 100%; 
  overflow: hidden;
  position: relative;
}

.slider-content {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 33.333%; 
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.lider-avatar{
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 10px;
  width: 80px;
  height: 80px;
  position: relative;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  p{
    position: absolute;
    padding: 0px 10px;
    border-radius: 20px;
    font-size: 13px;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    color: #1f1f23;
    font-weight: 600;
    background-color: var(--accent);
    display: flex;
    flex-direction: row;
    gap: 2px;
  }
}

.nickname{
  text-align: center;
  color: var(--accent);
  word-break: break-all;
  padding: 0 5px;
  margin-top: 20px;
}

#form{
  background-color: var(--bg);
  color: var(--white);

  .title{
    margin-bottom: 17px;
  }
}

.form{
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.contact-form-item{
  width: 100%;
}

.contact-form-item > input,
.contact-form-item > textarea,
.input-form_holderblock,
.textarea-form_holderblock{
  width: 100%;
  border: none;
  outline: none;
  padding: 15px;
  box-sizing: border-box;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  background-color: var(--bg);
  color: var(--white);
}

.contact-form-item > input:hover,
.contact-form-item > input:focus,
.contact-form-item > textarea:hover,
.contact-form-item > textarea:focus,
.input-form_holderblock:hover,
.textarea-form_holderblock:hover,
.input-form_holderblock:focus,
.textarea-form_holderblock:focus{
  box-shadow: var(--box-shadow-hover);
}

.privacy{
  color: var(--white);
  transition: var(--transition);

  &:hover,
  &:focus{
    color: var(--accent);
  }
}

.form-img-wr{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.form-img{
  width: 90%;
  height: 300px;
  margin: 0 auto;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: pulseImg 7s linear infinite;
  }
}

@keyframes pulseImg{
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(0.9);
  }
  20% {
    transform: scale(1);
  }
  30% {
    transform: scale(1);
  }
  40% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.footer{
  background-color: #0e0c0c;
  color: var(--white);
  padding: 25px 0;
}

.disclaimer-box{
  position: relative;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  padding: 17px;
  text-align: center;

  &::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 30%,
     var(--accent),
      rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -50%;
    opacity: 0.3;
    animation: shineDisclaimer 5s linear infinite;
  }
}


@keyframes shineDisclaimer {
  0% {
    left: -50%;
  }
  60% {
    left: 100%;
  }
  to {
    left: 100%;
  }
}

.footer-nav{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap:  17px;
  margin: 16px 0;
}

.footer-menu-item{
  text-align: center;

  a{
    font-family: 'Teko', sans-serif;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    text-align: center;

    &:hover,
    &:focus{
      color: var(--accent);
    }
  }
}

.copyright-box{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
}

.copyright{
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  justify-content: center;
  color: #ffffff81;
  flex-wrap: wrap;

  p{
    margin: 0;
  }
}

.disclaimer-img{
  width: 50px;
  height: 50px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.au-video{
  width: 100%;
  height: 400px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);

  video{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  &:hover,
  &:focus{
    box-shadow: var(--box-shadow-hover);
  }
}

.page-module{
  background-color: var(--bg);
  color: var(--white);
  position: relative;
  background: url('content/dir-vector/tematik-066e00256043f2.svg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  &::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--bg);
    opacity: .9;
  }

  .wrapper{
    position: relative;
  }

  .title{
    margin-bottom: 25px;
  }
}

.page-img{
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding:  17px;


  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    box-shadow: var(--box-shadow);
  }
}

.map,
.box-iframe{
  width: 100%;
  height: 400px;
  transition: var(--transition);
  margin: 17px 0;
  box-shadow: var(--box-shadow);

  iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
  }

  &:hover,
  &:focus{
    box-shadow: var(--box-shadow-hover);
  }
}

.contact-module{
  background-color: var(--bg);
  color: var(--white);

  .title{
    margin-bottom: 25px;
  }
}

.contact-page-item{
  box-shadow: var(--box-shadow);
  padding: 13px 17px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);

  &:hover,
  &:focus{
    box-shadow: var(--box-shadow-hover);
  }

  a{
    color: var(--white);
    word-break: break-all;
    text-transform: uppercase;
    font-family: 'Teko', sans-serif;
    flex-flow: 600;
    font-size: 20px;
    transition: var(--transition);
    text-align: center;

    &:hover,
    &:focus{
      color: var(--accent);
    }
  }
}

.adres{
  text-align: center;
}

.form-module{
  background-color: var(--bg);
  color: var(--white);
  position: relative;
  background: url('content/dir-vector/tematik-166e002560444c.svg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  &::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--bg);
    opacity: .9;
  }

  .wrapper{
    position: relative;
  }

  .title{
    margin-bottom: 25px;
  }
}

.privacy-module{
  background-color: var(--bg);
  color: var(--white);

  .title{
    margin-bottom: 25px;
  }
}

@media (max-width: 575px){
.logo{
  flex-direction: column;
  justify-content: center;

    h1{
      text-align: center;
    }
  }

  .game-box{
    padding:  17px;
  }
}

@media (min-width: 576px) {
  .wrapper {
    max-width: 540px;
  }

  .row-5{
    flex-direction: row;
  }

  .col-5{
    width: calc(50% - 17px);
  }

  .nav{
    flex-direction: row;
  }

  .page-img{
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 767px){
  .game-box-2{
    .game-desc{
      transform: scale(1);
      opacity: 1;
    }
  }

  .benefits{
    .row-3{
      flex-direction: column !important;
    }
  }

  .step-box{
    &::before{
      display: none;
    }
  }

  .hp{
    .row-4{
      flex-direction: column;
    }
  }
}

@media (min-width: 768px){
  .wrapper {
    max-width: 720px;
  }

  .row-2,
  .row-3,
  .row-4{
    flex-direction: row;
  }

  .col-2,
  .col-3,
  .col-4{
    width: calc(50% - 17px);
  }
 
  .col-5{
    width: calc(33.333% - 17px);
  }

  .banner-title{
    font-size: 31px;
  }

  .banner{
    .row-2{
      padding: 70px 0;
    }
  }

  .hp{
    .row-4{
      flex-direction: row;
    }
  }

  .page-img{
    width: 300px;
    float: right;
  }

  .page-content{
    min-height: 300px;
  }
}

@media (min-width: 768px) and (max-width: 991px){
  .row{
    flex-direction: row;
  }

  .pos2{
    &::before{
      display: none;
    }
  }

  .liders{
    .row-3{
      flex-direction: column-reverse;
    }

    .col-3{
      width: 100%;
    }
  }
}

@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);
  }

  .banner-title{
    font-size: 42px;
  }

  .banner{
    .row-2{
      padding: 160px 0;
    }
  }

  #main-2{
    .col-3{
      --w-1: calc(33.333% - 17px);
      --w-2: calc(50% - 17px);
      width: var(--w-2);
    }
  }

  .page-img{
    width: 350px;
    height: 350px;
  }

  .page-content{
    min-height: 350px;
  }
}

@media (min-width: 1200px){
  .wrapper {
    max-width: 1170px;
  }

  .banner-title{
    font-size: 48px;
  }

  .page-img{
    width: 450px;
    height: 450px;
  }

  .page-content{
    min-height: 450px;
  }
}

.button-1{
  padding: 20px 15px;
  border-radius: 8px;
  display: inline-block;
  text-align: center;
  background: linear-gradient(0deg, #ff9c19 40%, #ffdd2d 110%);
  box-shadow: -3.828px -3.828px 6px 0px rgba(255, 200, 39, 0.4), 3px 5px 8px 0px rgba(255, 82, 1, 0.2);
  transition: var(--transition);
  color: var(--white);

  &:hover,
  &:focus{
    box-shadow: 11px 11px 32px rgba(255, 82, 1, 0.2), -11px -11px 32px rgba(255, 200, 39, 0.4);
  }
}


.button-2 {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: var(--bg)
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
}

.button-2:hover {
  transform: scale(1.05);
  border-color: var(--accent);
  color: var(--accent);
}

.button-2:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button-2::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    var(--accent),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}


.button-3 {
  padding: 0.8em 1.8em;
  border: 2px solid var(--accent);
  position: relative;
  overflow: hidden;
  background-color: transparent;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  transition: .3s;
  z-index: 1;
  font-family: inherit;
  color: var(--accent);
  display: inline-block;
 }
 
 .button-3::before {
  content: '';
  width: 0;
  height: 500%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--accent);
  transition: .5s ease;
  display: block;
  z-index: -1;
 }
 
 .button-3:hover::before {
  width: 105%;
 }
 
.button-3:hover {
  color: #111;
 }
 
.button-4 {
  padding: 1.1em 2em;
  background: none;
  border: 2px solid #fff;
  color: #ffffff;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  border-radius: 12px;
  background-color: var(--accent);
  font-weight: bolder;
  box-shadow: 0 2px 0 2px #000;
  display: inline-block;
 }
 
 .button-4:before {
  content: "";
  position: absolute;
  width: 200px;
  height: 120%;
  background-color: #ff6700;
  top: 50%;
  transform: skewX(30deg) translate(-150%, -50%);
  transition: all 0.5s;
 }
 
 .button-4:hover {
  background-color: #4cc9f0;
  color: #fff;
  box-shadow: 0 2px 0 2px #0d3b66;
 }
 
 .button-4:hover::before {
  transform: skewX(30deg) translate(150%, -50%);
  transition-delay: 0.1s;
 }
 

.button-5 {
  background-color: var(--accent);
  padding: 14px 40px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 10px;
  border: 2px dashed var(--accent);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: .4s;
  display: inline-block;
  text-align: center;
 }
 
 .button-5:hover {
  transition: .4s;
  border: 2px dashed var(--accent);
  background-color: #fff;
  color: var(--accent);
 }
 
 
 