@import url('https://fonts.googleapis.com/css2?family=Mate:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');

:root{
    --o-1: #eb2d1c;
    --o-2: #1ceb26;
    --o-3: #1cd6eb;
    --o-4: #5384f7;
    --o-5: #eb7c1c;
    --accent: var(--o-5);
    --g-1: rgb(87, 12, 12);
    --g-2: rgb(11, 61, 8);
    --g-3: rgb(26 105 127);
    --g-4: rgb(45, 31, 104);
    --g-5: rgb(87, 37, 12);
    --bg: var(--g-5);
    --white: #fff;
    --black: #17161a;
    --transition: 0.4s ease-out;
}

html {
  scroll-behavior: smooth;
}

*{
  box-sizing: border-box;
}

body{
  box-sizing: border-box;
  font-family: 'Mate', sans-serif !important;
  font-size: 16px;
  direction: ltr;
  margin: 0;
  padding: 0;
  height: 100%;
  position: relative;
  background: radial-gradient(circle, var(--bg) 0%, rgba(0,0,0,1) 80%);
  background-attachment: fixed;
}


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: 90px 0;
  color: var(--white);
}

.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: 16px;
}

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

.banner{
  background: url('content/background/bg-dark-0689387f638944.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 3%, 0.555);
  }

  .wrapper{
    position: relative;
  }
}

.logo-wr{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 20px 0;
}

.logo{
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  transition: var(--transition);

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

  h1{
    font-size: 24px;
    font-weight: 900;
    margin: 0;
    line-height:1.5;
    color: var(--white);
    filter: drop-shadow(3px 3px 3px var(--black));
    font-family: 'Staatliches', sans-serif;
  }

  .highlight {
    color: var(--accent);
  }

  &:hover,
  &:focus{
    transform: translateX(3px);
    filter: drop-shadow(3px 3px 13px var(--black));
  }
}

  
.navbar{
  background: url('img/menu-extra.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 16px 16px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgb(0, 0, 0), inset 0 -5px rgb(0, 0, 0);
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    opacity: 0.6;
  }
}

.nav-items{
  position: relative;
  text-align: center;

  a{
    color: var(--white);
    font-weight: 400;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    font-family: 'Staatliches', sans-serif;

    &:hover,
    &:focus{
      transform: translateX(3px);
      filter: drop-shadow(3px 3px 13px var(--black));
    }
  }
}

.menu{
  background-color: transparent;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: var(--transition);
  cursor: pointer;
  filter: drop-shadow(3px 3px 3px var(--black));

  &:hover,
  &:focus{
    transform: translateX(3px);
    filter: drop-shadow(3px 3px 13px var(--black));
  }

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

.banner-body{
  padding:  67px 0;
}

.head-title{
  font-size: 32px;
  color: var(--white);
  font-weight: 900;
  filter: drop-shadow(3px 3px 3px var(--black));
  margin: 0;
}

.head-subtitle{
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 16px;
}

.title{
  color: var(--white);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 16px;
  font-family: 'Staatliches', sans-serif;

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

.benefits{
  .row-4{
    gap: 0 !important;
  }
}

.ben-block{
  position: relative;
  height: 100%;
  cursor: default;
  padding: 150px 16px 50px;
  transition: var(--transition);

  &:hover,
  &:focus{
    transform: translateY(-5px);
  }

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 3%, 0.555);
  }
  &::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--accent) 0%, rgba(0,0,0,1) 75%);
    z-index: 1;
    opacity: 0.2;
  }

  .ben-text{
    position: relative;
    text-align: center;
    z-index: 2;
  }
}

.ben-block-1{
  background: url('content/background/bg-dark-1689387f638954.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.ben-block-2{
  background: url('content/background/bg-dark-2689387f638961.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.ben-block-3{
  background: url('content/background/bg-dark-3689387f63896d.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.ben-block-4{
  background: url('content/background/bg-dark-4689387f638979.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.main-title{
  background: url('img/menu-extra.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 16px 16px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgb(0, 0, 0), inset 0 -5px rgb(0, 0, 0);
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    opacity: 0.6;
  }

}

.main-module{
  padding-top: 0;
}

.main-title-text{
  position: relative;
  color: var(--white);
  font-weight: 900;
  font-size: 24px;
  text-align: start;
  margin: 0;
}

.main-row{
  .col-30{
    background-color: #000000;
    padding: 14px;
    display: flex;
    flex-direction: column;
    height: fit-content;
  }
}

.main1-box{
  display: flex;
  flex-direction: row;
  background-color: #909090;
  transition: var(--transition);
  padding: 4px;
  border-bottom: 0.5px solid var(--black);

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

.main1-imgs{
  width: 220px;
  height: 180px;
  display: inline-block;
  position: relative;
  transition: var(--transition);

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

.img-link{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000b9;

  svg{
    color: var(--accent);
    width: 32px;
    height: 32px;
  }

  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.main1-imgs:hover .img-link,
.main1-imgs:focus .img-link{
  visibility: visible;
  opacity: 1;
}

.main1-descr{
  padding: 26px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.game-title{
  font-weight: 900;
  font-size: 16px;
  color: var(--black);
  transition: var(--transition);

  &:hover,
  &:focus{
    transform: translateX(3px);
    filter: drop-shadow(3px 3px 13px var(--black));
  }
}

.game-content{
  margin: 0;
  color: var(--black);
  max-width: 310px;
}

.rating{
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  

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

  .star-muted{
    --c-1: var(--accent);
    --c-2: #cccccc9e;
    color: var(--c-2);
  }
}

.player-games{
  color: var(--black);

  span{
    font-weight: 400;
    color: var(--accent);
  }
}

.liders-lists{
  background-color: #4a4a4aa0;
  margin-bottom: 16px;
}

.liders-items{
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  border-bottom: 0.5px solid var(--black);
  transition: var(--transition);

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

.number{
  width: 10%;
}

.liders-name{
  width: 60%;
  text-align: center;
  word-break: break-all;
}

.liders-scores{
  width: 30%;
}

.comment-list{
  display: flex;
  flex-direction: column;
  background-color: #4a4a4aa0;
}

.comment-item{
  padding: 14px;
  border-bottom: 0.5px solid var(--black);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);

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

.avatar{
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 0%;

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

#main1{
  display: none;
}

.category{
  .main1-box{
    height: 100%;
  }
}

.main2-images{
  width: 100%;
  height: 370px;
  position: relative;
  display: inline-block;
  transition: var(--transition);

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

  &::before{
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--accent) 0%, rgba(0,0,0,1) 75%);
    z-index: 1;
    opacity: 0.7;
    transition: var(--transition);
  }

  &:hover,
  &:focus{
    transform: translateY(-5px);
    filter: drop-shadow(3px 3px 3px var(--accent));
  }

  &:hover::before,
  &:focus::before{
    opacity: 0.5;
  }
}

.main2-box{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  padding: 16px;
  gap: 16px;
}

.main2-title{
  color: var(--white);
  font-weight: 900;
  font-size: 24px;
  text-align: center;
}

.main2-content{
  color: var(--white);
  text-align: center;
}


.step-to-game{
  position: relative;

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('content/background/bg-dark-5689387f638985.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.2;
  }

  .wrapper{
    position: relative;
  }
}

.step-list{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-items{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 14px;
  position: relative;
  border-radius: 9px;
  overflow: hidden;
  transition: var(--transition);
  
  &::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(to top, var(--accent) 0%, rgba(0,0,0,1) 75%);
    opacity: 0.7;
    transition: var(--transition);
  }

  &:hover,
  &:focus{
    filter: drop-shadow(3px 3px 3px var(--accent));
  }
  &:hover::before,
  &:focus::before{
    opacity: 0.5;
  }
}

.step-num{
  width: 20%;
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  position: relative;
}

.step-texts{
  color: var(--white);
  font-weight: 900;
  position: relative;
}

.faq{
  position: relative;

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('content/background/bg-dark-6689387f638992.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.2;
  }

  .wrapper{
    position: relative;
  }
}

.accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  border: 2px solid var(--black);
  color: var(--white);
  border-radius: 4px;
  transition: var(--transition);
  background: linear-gradient(to top, var(--accent) 0%, rgba(0,0,0,1) 75%);

  &:hover,
  &:focus{
    transform: translateY(-3px);
    filter: drop-shadow(3px 3px 3px var(--accent));
  }
}

.accordion-header {
  background-color: #00000080;
  cursor: pointer;
  padding: 16px;
  font-size: 16px;
  border: none;
  outline: none;
  text-align: left;
  width: 100%;
  transition: background-color 0.3s ease;
  color: var(--white);
}
        

.accordion-content {
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
 
.accordion-content.show {
  padding: 16px;
  max-height: 200px; 
}

.form-img-wr,
.step-img-wr,
.faq-img-wr{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-img,
.step-img,
.faq-img{
  width: 100%;
  height: 310px;
  animation: pirateMap 3s linear infinite;

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

@keyframes pirateMap{
  0%{
    filter: drop-shadow(3px 3px 9px var(--accent));
  }
  50%{
    filter: drop-shadow(0px 0px 0px var(--accent));
  }
  100%{
    filter: drop-shadow(3px 3px 9px var(--accent));
  }
}

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


.gallery{
  direction: ltr !important;
}

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

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

.close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--white);
  font-size: 40px;
  font-weight: 900;
  transition: 0.3s;
  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: -50px;
  color: var(--white);
  font-weight: 900;
  font-size: 20px;
  transition: 0.4s 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);
}

.parent {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
}

.div1 { 
  height: 310px;
  grid-area: 1 / 1 / 4 / 2;
 }

.div2 { 
  height: 200px;
  grid-area: 4 / 1 / 6 / 2;
 }

.div3 { 
  height: 100px;
  grid-area: 3 / 2 / 4 / 3; 
}

.div4 { 
  height: 200px;
  grid-area: 1 / 2 / 3 / 4;
 }

.div5 { 
  height: 310px;
  grid-area: 3 / 3 / 6 / 4;
 }

.div6 { 
  height: 200px;
  grid-area: 4 / 2 / 6 / 3;
 }

.div7 { 
  height: 100px;
  grid-area: 1 / 4 / 2 / 6;
 }

.div8 { 
  height: 200px;
  grid-area: 2 / 4 / 4 / 6;
 }

.div9 { 
  height: 200px;
  grid-area: 4 / 4 / 6 / 5;
 }

.div10 { 
  height: 100px;
  grid-area: 4 / 5 / 5 / 6;
 }

.div11 { 
  height: 100px;
  grid-area: 5 / 5 / 6 / 6;
 }

.gallery-items{
  padding: 4px;
  position: relative;
  transition: var(--transition);
  cursor: pointer;

  &::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(to top, var(--accent) 0%, rgba(0,0,0,1) 75%);
    opacity: 0.4;
    transition: var(--transition);
  }

  &:hover,
  &:focus{
    filter: drop-shadow(3px 3px 3px var(--accent));
  }
  &:hover::before,
  &:focus::before{
    opacity: 0.3;
  }
}

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

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

.contact-page-form-item{
  width: 100%;
}
.thumb-contsa{
  flex: 1;
  text-align: center;
}
.contact-page-form-item > input,
.contact-page-form-item > textarea,
.input-field__fielditem,
.textarea-field__fielditem{
  width: 100%;
  background: linear-gradient(to top, var(--accent) 0%, rgba(0,0,0,1) 75%);
  border: 0.4 solid  var(--black);
  border-radius: 9px;
  padding: 16px;
  outline: none;
  color: var(--white);
}

.contact-page-form-item > input::placeholder,
.contact-page-form-item > textarea::placeholder,
.input-field__fielditem::placeholder,
.textarea-field__fielditem::placeholder{
  color: #909090;
}

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

  &:hover,
  &:focus{
    transform: translateX(3px);
    filter: drop-shadow(3px 3px 3px var(--accent));
  }
}

.footer{
  background-color: var(--black);
  padding: 39px 0;
  color: var(--white);
}

.disclaimer-box{
  position: relative;
  border: 0.4px solid var(--accent);
  border-radius: 9px;
  padding: 20px;
  animation: disclaimer 4s linear infinite;
  margin-bottom: 30px;

  &::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(to top, var(--accent) 0%, rgba(0,0,0,1) 75%);
    transition: var(--transition);
    animation: disclaimerBg 4s linear infinite;
  }

  .title{
    position: relative;
    text-align: center;
  }
}

@keyframes disclaimer{
  0%{
    box-shadow: 3px 3px 10px var(--accent);
    transform: scale(1);
  }
  50%{
    box-shadow: 0px 0px 0px var(--accent);
    transform: scale(0.98);
  }
  100%{
    box-shadow: 3px 3px 10px var(--accent);
    transform: scale(1);
  }
}
@keyframes disclaimerBg{
  0%{
    opacity: 0.2;
  }
  50%{
    opacity: 0.7;
  }
  100%{
    opacity: 0.2;
  }
}

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

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

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

  .nav-items{
    padding: 0 5px;
  }
}

.copyright-box{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  border-top: 0.5px solid #909090;
  padding-top: 16px;
  margin-top: 30px;
}

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

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

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

  p{
    margin: 0;
  }
}

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

.au-video{
  width: 100%;
  height: 310px;
  display: none;
  animation: pirateMap 3s linear infinite;

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

.au-img{
  width: 100%;
  height: 310px;
  animation: pirateMap 3s linear infinite;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.rnd-game{
  display: flex;
  flex-direction:column-reverse ;
  gap: 26px;
}
.page-img{
  width: 100%;
  height: 310px;
  padding: 16px;
  animation: pirateMap 3s linear infinite;
  margin-bottom: 16px;
  
  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.box-iframe{
  width: 100%;
  height: 100vh;
  margin-top: 16px;
  margin-bottom: 50px;

  iframe{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    border: none;
  }
}

.map{
  width: 100%;
  height: 310px;

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

.contact-page-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 16px;
}

.contact-page-item{
  a{
    color: var(--white);
    transition: var(--transition);
    display: inline-block;
    word-break: break-all;

    &:hover,
    &:focus{
      transform: translateX(3px);
      filter: drop-shadow(3px 3px 3px var(--accent));
    }
  }
}

@media(max-width: 480px){
  .menu{
    margin: 0 auto;
  }

  .step-items{
    flex-direction: column;
  }

  .liders-items{
    flex-direction: column;
    gap: 10px
  }

  .liders-name,
  .liders-scores,
  .number{
    width: 100%;
    text-align: center;
  }
  
}

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

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

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

@media (max-width: 767px){
  .main1-box{
    flex-direction: column;
    align-items: center;
  }
}

@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% - 16px);
  }
 
  .col-5{
    width: calc(33.333% - 16px);
  }

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

@media (max-width: 991px){
  .navbar-wr{
    position: relative;
  }

.navbar{
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: var(--transition);
  position: absolute;
}

.navbar.menu-open{
  position: relative;
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);
  transition: var(--transition);
}

.banner-body{
  .row-2{
    flex-direction: column;
  }

  .col-2{
    width: 100%;
  }
}

.category{
  .main1-box{
    flex-direction: column;
    align-items: center;
  }
}
}

@media (min-width: 992px){
  .wrapper {
    max-width: 960px;
  }

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

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

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

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

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

  .menu{
    display: none;
  }

  .banner-body{
    padding: 140px 0;
  }

  #main2{
  .col-3{
    --wc-1: calc(33.333% - 16px);
    --wc-2: calc(50% - 16px);
    width: var(--wc-2);
  }
}

.page-img{
  height: 370px;
}

.module-contact{
  .row-2{
    gap: 26px;
  }
}
}

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

}

.form-btn{
  text-align: center;
}

.button-1{
  position: relative;
  padding: 16px;
  cursor: pointer;
  border: none;
  outline: none;;
  background: url('img/menu-extra.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 4px;
  overflow: hidden;
  color: var(--white);
  box-shadow: 0 2px 8px rgb(0, 0, 0), inset 0 -5px rgb(0, 0, 0);
  transition: var(--transition);
  display: inline-block;
  text-align: center;

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    opacity: 0.6;
  }

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

  &:hover,
  &:focus{
    transform: translateX(3px);
    filter: drop-shadow(3px 3px 13px var(--black));
  }
}


.button-2 {
  position: relative;
  padding: 10px 20px;
  border-radius: 9px;
  border: 2px solid #1ceb26;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2px;
  background: transparent;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  display: inline-block;
  text-align: center;
}

.button-2:hover {
  background: #1ceb26;
  box-shadow: 0 0 30px 5px hsla(123, 100%, 69%, 0.61);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.button-2:hover::before {
  -webkit-animation: sh02 0.4s 0s linear;
  -moz-animation: sh02 0.4s 0s linear;
  animation: sh02 0.4s 0s linear;
}

.button-2::before {
  content: '';
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 50px 30px #fff;
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

@keyframes sh02 {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

.button-2:active {
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: box-shadow 0.3s ease-in;
  -moz-transition: box-shadow 0.3s ease-in;
  transition: box-shadow 0.3s ease-in;
}

.button-3 {
  font-size: 16px;
  font-weight: 900;
  color: #1cd6eb;
  background-color: #2B3044;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 24px;
  position: relative;
  line-height: 24px;
  border-radius: 14px;
  box-shadow: 0px 1px 2px #2B3044,
    0px 4px 16px #2B3044;
  transform-style: preserve-3d;
  transform: scale(var(--s, 1)) perspective(600px)
    rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  perspective: 600px;
  transition: transform 0.1s;
  display: inline-block;
  text-align: center;
  transition: var(--transition);

  span {
    background: linear-gradient(
        90deg,
        #866ee7,
        #ea60da,
        #ed8f57,
        #fbd41d,
        #2cca91
      );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: block;
  }

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


.button-4 {
  background-color: #f3f7fe;
  color: #5384f7;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 15px 16px;
  transition: 0.3s;
  display: inline-block;
  text-align: center;

  &:hover,
  &:focus {
    background-color: #5384f7;
    box-shadow: 0 0 0 5px rgba(107, 164, 255, 0.777);
    color: #fff;
  }
}


.button-5 {
  position: relative;
  cursor: pointer;
  padding: 14px 16px;
  border: 0;
  border-radius: 9px;
  box-shadow: inset 0 0 0 1px var(--accent);
  background: radial-gradient(
    ellipse at bottom,
    rgba(71, 81, 92, 1) 0%,
    rgba(11, 21, 30, 1) 45%
  );
  color: var(--accent);
  transition: all 1s cubic-bezier(0.15, 0.83, 0.66, 1);
  display: inline-block;
  text-align: center;
}

.button-5::before {
  content: "";
  width: 70%;
  height: 1px;

  position: absolute;
  bottom: 0;
  left: 15%;

  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0.2;

  transition: all 1s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.button-5:hover {
  color: rgb(255, 255, 255, 1);
  transform: scale(1.1) translateY(-3px);
}

.button-5:hover::before {
  opacity: 1;
}

.privacy-box li a, .privacy-box p a{
  color: #fff !important;
}