﻿@charset "UTF-8";

/*fonts*/
@font-face {
    font-family: 'Faktum';
    src: url("");
    src: local('Faktum Light'), local('Faktum-Light'),
        url("") format('embedded-opentype'),
        url("Faktum-Light.woff2") format('woff2'),
        url("Faktum-Light.woff") format('woff'),
        url("Faktum-Light.ttf") format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Faktum';
    src: url("");
    src: local('Faktum Regular'), local('Faktum-Regular'),
        url("") format('embedded-opentype'),
        url("Faktum-Regular.woff2") format('woff2'),
        url("Faktum-Regular.woff") format('woff'),
        url("Faktum-Regular.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face { 
    font-family: 'Faktum';
    src: url("");
    src: url("")format("embedded-opentype"),
    url("FaktumMedium.woff") format("woff"),
    url("FaktumMedium.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
}
@font-face {
    font-family: 'Faktum';
    src: url("");
    src: local('Faktum SemiBold'), local('Faktum-SemiBold'),
        url("") format('embedded-opentype'),
        url("Faktum-SemiBold.woff2") format('woff2'),
        url("Faktum-SemiBold.woff") format('woff'),
        url("Faktum-SemiBold.ttf") format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face { 
    font-family: 'Faktum';
    src: url("");
    src: url("")format("embedded-opentype"),
    url("FaktumBold.woff") format("woff"),
    url("FaktumBold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
}


/*'Faktum', sans-serif;*/

/*baisic*/
html{
  -webkit-locale: "en";
  direction: ltr;
  unicode-bidi: isolate;
  min-height: 100%;
}
html, body{
  min-height: 100%;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}
body{
  font: 400 16px/1.2 'Faktum', sans-serif;
  color: #fff;
  background: #000;
  min-width: 310px; 
  min-height: 100%;
  position: relative;
  overflow-x: hidden;
  opacity: 1;
  -moz-font-feature-settings: 'kern';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  font-feature-settings: 'pnum' on, 'lnum' on;
}
/*box-sizing*/
*, *:before, *:after, input[type="search"]{
  box-sizing: border-box;
}
body::-webkit-scrollbar {width: 7px;}
body::-webkit-scrollbar-track {
  background: #fff;
  background-color: #fff;
  border: none;
  box-shadow: none;
  outline: none;
}
body::-webkit-scrollbar-thumb {
  background: #11a97d;
  background-color: #11a97d;
  border-radius: 3.5px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #0d78c5;
  background-color: #0d78c5;
}

/*buttons*/
.btn{
  display: block;
  padding: 0;
  outline: 0!important;
  outline-color: transparent!important;
  outline-width: 0!important;
  outline-style: none!important;
  box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  border: none;
  background: none;
  box-shadow: none;
  transition: .25s ease;  
  cursor: pointer;
  border-radius: 0;
  white-space: nowrap;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.btn::-moz-focus-inner {border: 0;}
.btn:disabled {
  cursor: default;
  opacity: 1;
  user-select: none;	
}
.btn-primery{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  border-radius: 10px;
  padding: 0 32px;
  gap: 16px;
  background-color: rgba(17, 169, 125, 1);
  font-weight: 500;
  font-size: 22px;
  color: #fff;
}
.btn-primery:hover{background-color: rgba(17, 169, 125, .8);}
.btn-secondary{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  border-radius: 10px;
  padding: 0 32px;
  gap: 16px;
  background-color: rgba(255, 255, 255, .1);
  font-weight: 500;
  font-size: 22px;
  color: #fff;
}
.btn-secondary:hover{background-color: rgba(255, 255, 255, .2);}
.btn-secondary svg{
  display: block;
  flex-shrink: 0;
}

/*layout*/
.wrapper{
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: column;
  min-height: 100vh;
}
.container{
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/*typographyc*/
ol,ul,li,h1,h2,h3,h4,h5,h6,p,q,figure,figcaption,blockquote,cite,fieldset,hr{    
  margin:0;
  padding: 0;    
  border: none;
}
ul li, ol li{list-style: none;}
a{
  text-decoration: none;
  outline: none;
  transition: .25s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:-moz-any-link:focus ,
a:-moz-focusring,
a::-moz-focus-inner,
a::-moz-focus-outer{
  outline: 0!important;
  outline: none;
}
a:active {outline: none;}
a[href^="tel:"],
a[href^="mailto:"]{white-space: nowrap;}
img{
  display: block;
  max-width: 100%;
  height: auto;
}

.sec-title{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 44px;
  line-height: 140%;
  text-align: center;
}
.sec-title svg{
  display: block;
  fill: #fff;
}
.sec-title span{opacity: .5;}
.more{
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
@media only screen and (max-width : 767px){
  .sec-title{font-size: 32px;}
  .sec-title{flex-wrap: wrap;}
  .sec-title span{
    display: block;
    width: 100%;
  }
}

/*header*/
.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 800;  
  backdrop-filter: blur(4px);
}
.header.fix{background: linear-gradient(180deg, #0c0e12, rgba(12, 14, 18, .1));}
.header__wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
.header-link{
  width: 56px;
  height: 56px;
  padding: 0;
}
.header-nav ul{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.header-nav ul li a{
  font-weight: 400;
  font-size: 16px;
  line-height: 138%;
  letter-spacing: .25px;
  color: #fff;
}
.header-nav ul li a:hover{opacity: .7;}
@media only screen and (max-width : 767px){
  .header-nav{display: none;}
}

/*hero*/
.hero{background: url("hero.svg") right 0 no-repeat;}
.hero__wrap{
  padding: 200px 0 100px;
  position: relative;
}
.hero__row{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 130px;
  gap: 60px;
}
.hero-logo{margin-left: -5px;}
.hero-logo__sub{
  text-align: right;
  padding-right: 5px;
  margin-top: 15px;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: .25px;
  color: #11A97D;
}
.hero-prize{
  font-weight: 400;
  font-size: 26px;
  line-height: 123%;
  text-align: right;
  color: #DFE313;
}
.hero-prize span{
  display: block;
  margin-bottom: 10px;
  font-weight: 300;
  font-size: 62px;
  line-height: 110%;
  font-feature-settings: 'tnum' on, 'lnum' on, 'ss10' on;
  text-shadow: 0px 0px 10px rgba(17, 169, 125, .9);
}
.hero__footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__item,
.hero__bar,
.hero__btns{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hero__bar{gap: 64px}
.hero__item{gap: 12px}
.hero__item{
  font-size: 20px;
  line-height: 120%;
}
@media only screen and (max-width : 1099px){
  .hero__bar{gap: 32px}
}
@media only screen and (max-width : 991px){
  .hero__bar{
    align-items: flex-end;
    flex-direction: column;
    gap: 16px;
  }
}
@media only screen and (max-width : 767px){
  .hero{background-size: 767px auto;}
  .hero__wrap{padding: 120px 0 60px;}
  .hero__row{
    display: block;
    margin-bottom: 60px;
    gap: 0;
    margin-bottom: 0;
  }
  .hero-logo{margin-bottom: 40px;}
  .hero-logo__sub{
    text-align: center;
    padding-right: 0;
  }
  .hero-prize{text-align: center;}
  .hero__footer{
    flex-direction: column;
    margin-top: 40px;
    gap: 24px;
  }
  .hero__btns .btn{
    width: calc(50% - 4px);
    padding: 0 16px;
  }
  .hero__btns{
    gap: 8px;
    width: 100%;
  }
  .hero__bar{gap: 16px}
  .hero__item{
    justify-content: center;
    width: 100%;
  }
}

.mouse{
  width: 40px;
  height: 60px;
  border: 2px solid rgba(17, 169, 125, 1);
  border-radius: 20px;
  z-index: 300;
  position: absolute;
  top: 50vh;
  left: -7.5vw;
}
.mouse__roll{
  position: absolute;
  left: 50%;
  top: 10px;
  width: 2px;
  height: 8px;
  margin-left: -1px;
  border-radius: 1px;
  background-color: rgba(17, 169, 125, 1);
  animation: mouse 1s linear;
  animation-iteration-count: infinite;
}
.mouse:hover{border-color: rgba(17, 169, 125, .8);}
.mouse:hover .mouse__roll{animation-play-state: paused;}
@keyframes mouse {
  0% { 
    height: 4px;
    top: 10px;
  }
  25% {
    height: 14px;
    top: 10px;
  }
  50% {
    height: 4px;
    top: 20px;
  }
  75% {
    height: 14px;
    top: 10px;
  }
  100% { 
    height: 4px;
    top: 10px;
  }
}
@media only screen and (max-width : 1369px){
  .mouse{left: -50px;}
}
@media only screen and (max-width : 1299px){
  .mouse{display: none;}
}


/*prizes*/
.prizes{padding: 80px 0 120px;}
.prizes__txt{
  text-align: center;
  margin-bottom: 48px;
  font-weight: 500;
  font-size: 32px;
  line-height: 140%;
}
.prizes__txt strong{
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 8px;
}
.prizes__row{
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 16px;
}
.prizes-item{
  width: calc((100% - 48px) / 4);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 24px 20px;
  gap: 8px;
  background-color: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 8px;
}
.prizes-item__title{
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
}
.prizes-item__mark{
  font-weight: 500;
  font-size: 16px;
  line-height: 138%;
}
.prizes-item__mark--yello{color: #DFE313;}
.prizes-item__mark--blue{color: rgba(186, 223, 255, 1);}
.prizes-item__mark--orange{color: rgba(193, 96, 26, 1);}
.prizes-item__txt{
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  opacity: .5;
}
@media only screen and (max-width : 991px){
  .prizes__row{flex-wrap: wrap;}
  .prizes-item{width: calc(50% - 8px);}
}
@media only screen and (max-width : 767px){
  .prizes{padding: 60px 0 80px;}
  .prizes-item{width: 100%;}
  .prizes__txt{font-size: 22px;}
}

/*blockchain*/
.blockchain__wrap{
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 0;
}
.blockchain__wrap::before,
.blockchain__wrap::after{
  content: '';
  display: block;
  position: absolute;
  background: center center no-repeat;
  background-size: contain;
  user-select: none;
  pointer-events: none;
}
.blockchain__wrap::before{
  top: 0;
  right: 50%;
  background-image: url("blockchain-top.svg");
  width: 1198px;
  height: 888px;
  transform: translate(25%, -12.5%);
}
.blockchain__wrap::after{
  bottom: 0;
  left: 50%;
  background-image: url("blockchain-bottom.svg");
  width: 1199px;
  height: 888px;
}
.blockchain-sec{
  text-align: center;
  padding: 64px 0;
  position: relative;
  z-index: 3;
}
.blockchain-sec__txt{
  margin-top: 32px;
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
}
.blockchain-br{
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, .2);
}
.blockchain-sec-title{
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  text-align: left;
}
.blockchain-sec__lists{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 48px 0;
  gap: 40px;
}
.blockchain-sec-list{  
  text-align: left;
  font-size: 20px;
  line-height: 25px;
}
.blockchain-sec-list ul{
  margin-top: 20px;
  color: rgba(255, 255, 255, .5);
}
.blockchain-sec-list:last-child{
  width: 360px;
  flex-shrink: 0;
}
.blockchain-sec-list ul li{
  position: relative;
  padding-left: 30px;
}
.blockchain-sec-list ul li:not(:last-child){margin-bottom: 10px;}
.blockchain-sec-list ul li::before{
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 10px;
  left: 12px;
}
.blockchain-sec-list ul li span{color: #fff;}
.blockchain-sec-tab__overlay{overflow-x: auto;}
.blockchain-sec-tab__sub{
  margin-top: 10px;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -.1px;
  color: rgba(255, 255, 255, .5);
  text-align: left;
}
.blockchain-sec-tab__overlay table{
  min-width: 100%;
  border-radius: 12px;
  border-collapse: collapse;
  box-shadow: 0 0 0 1px #5c5c5c inset;
  overflow: hidden;
}
.blockchain-sec-tab__overlay table td,
.blockchain-sec-tab__overlay table th{
  width: 25%;
  min-width: 25%;
  border-bottom: 1px solid #5c5c5c;  
  border-right: 1px solid #5c5c5c;  
  padding: 12px;
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  color: #fff;
}
.blockchain-sec-tab__overlay table th{color: rgba(255, 255, 255, .5);}
.blockchain-sec-tab__overlay table tr:last-child td{border-bottom: none;}
.blockchain-sec-tab__overlay table td:last-child,
.blockchain-sec-tab__overlay table th:last-child{border-right: none;}
.blockchain-sec-bar{
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
}
.blockchain-sec-bar .btn{
  padding: 0;
  flex-grow: 1;
}
.blockchain-sec-subtitle{
  font-weight: 500;
  font-size: 32px;
  line-height: 140%;
}
.blockchain-sec-subtitle svg{
  vertical-align: middle;
  position: relative;
  bottom: 3px;
}
@media only screen and (max-width : 991px){
  .blockchain-sec-bar{flex-wrap: wrap;}
  .blockchain-sec-bar .btn{width: calc(50% - 24px);}
}
@media only screen and (max-width : 767px){
  .blockchain__wrap{padding: 0;}
  .blockchain-sec{padding: 60px 0;}
  .blockchain-sec__txt{
    margin-top: 24px;
    font-size: 22px;
  }
  .blockchain-sec__lists{
    display: block;
    gap: 0;
  }
  .blockchain-sec-list:last-child{
    width: 100%;
    margin-top: 40px;
  }
  .blockchain-sec-tab__overlay{
    display: flex;
    align-items: stretch;
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  .blockchain-sec-tab__overlay::before,
  .blockchain-sec-tab__overlay::after{
    content: '';
    display: block;
    width: 20px;
    flex-shrink: 0;
  }
  .blockchain-sec-tab__overlay table{min-width: 800px;}
  .blockchain-sec-bar{
    gap: 8px;
    margin-top: 24px;
  }
  .blockchain-sec-bar .btn{width: 100%;}
}

/*agenda*/
.agenda{padding: 80px 0 120px;}
.agenda__wrap{
  max-width: 960px;
  margin: 46px auto 0;
}
.agenda-br{
  height: 1px;
  width: 100%;
  margin: 48px 0;
  background-color: rgba(255, 255, 255, .2);
}
.agenda-sec{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.agenda-sec__date{
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  width: nowrap;
  width: 100px;
  flex-shrink: 0;
}
.agenda-sec__month{white-space: nowrap;}
.agenda-sec__date--green{color: #11A97D;}
.agenda-sec__date--orange{color: rgba(193, 96, 26, 1);}
.agenda-sec__date--blue{color: rgba(186, 223, 255, 1);}
.agenda-sec__date--yello{color: rgba(223, 227, 19, 1);}
.agenda-sec__month{opacity: .5;}
.agenda-sec__timeline{
  flex-grow: 1;
  max-width: 618px;
}
.agenda-sec__row{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;  
  gap: 40px;
}
.agenda-sec__row:not(:last-child){margin-bottom: 20px;}
.agenda-sec__time{
  width: 130px;
  flex-shrink: 0;
  font-size: 20px;
  line-height: 120%;
  text-align: right;
  white-space: nowrap;
}
.agenda-sec__main{flex-grow: 1;}
.agenda-sec__title{
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}
.agenda-sec__txt{
  margin-top: 4px;
  font-size: 20px;
  line-height: 120%;
  opacity: .5;
}
@media only screen and (max-width : 767px){
  .agenda{padding: 60px 0;}
  .agenda-sec{display: block;}
  .agenda-sec__date{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 24px;
    gap: 16px
  }
  .agenda-sec__time {
    width: 100px;
    font-size: 16px;
  }
  .agenda-sec__row{gap: 20px;}
  .agenda-sec__txt,
  .agenda-sec__title{font-size: 16px;}
}

/*come-chill*/
.come-chill{padding: 120px 0;}
.come-chill__wrap{
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 20px;
  background: url("come-chill-min.webp") center center no-repeat;
  background-size: auto 100%;
  text-align: center;
  border-radius: 40px;
}
.come-chill__icn{
  display: block;
  margin: 0 auto 24px;
}
.come-chill .btn-secondary{
  width: fit-content;
  margin: 0 auto;
}
@media only screen and (max-width : 767px){
  .come-chill{padding: 60px 0;}
}

/*mentors*/
.mentors{padding: 80px 0 120px;}
.mentors__wrap{
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}
.mentor{
  width: calc((100% - 24px) / 4);
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  color: #fff;
}
.mentor__img{
  width: 100%;
  height: 213px;
  flex-shrink: 0;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mentor__img img{
  width: 100%;
  height: 100%;
  max-width: unset;
  object-fit: cover;
  object-position: center;
}
.mentor__main{
  flex-grow: 1;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 8px;
  flex-direction: column;
  background-color: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .06);
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 24px 20px;
}
.mentor__name{
  font-weight: 500;
  font-size: 22px;
  line-height: 140%;
}
.mentor__txt{
  flex-grow: 1;
  font-size: 16px;
  line-height: 140%;
  opacity: .5;
}
.mentor__loc{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: 16px;
  line-height: 140%;
  opacity: .5;
}
.mentor__loc svg{
  display: block;
  fill: #fff;
}
@media only screen and (max-width : 991px){
  .mentor{width: calc(50% - 4px);}
}
@media only screen and (max-width : 767px){
  .mentors{padding: 60px 0;}
  .mentor{width: 100%;}
  .mentor__img{height: auto;}
}


/*faq*/
.faq{padding: 80px 0 120px;}
.faq__wrap{
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}
.faq__wrap::before{
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  background: url("faq-spot.svg") center center no-repeat;
  background-size: contain;
  width: 1198px;
  height: 888px;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  user-select: none;
  pointer-events: none;
}
.faq__accordion{
  border-top: 1px solid rgba(255, 255, 255, .2);
  margin-top: 48px;
}
.faq-item{
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.faq-item__header{
  padding: 28px 50px 10px 0;
  position: relative;
  cursor: pointer;
  font-weight: 500;
  font-size: 22px;
  line-height: 140%;
  transition: color .1s;
  color: #fff;
}
.faq-item__header::before,
.faq-item__header::after{
  content: '';
  display: block;
  position: absolute;
  top: 43px;
  right: 4px;
  background-color: #fff;
  height: 1px;
  width: 32px;
}
.faq-item__header::after{
  transform: rotate(90deg);
  transition: transform .2s;
}
.faq-item__header.open::after{transform: rotate(0);}
.faq-item__header:hover{color: rgba(255, 255, 255, .7);}
.faq-item__hide{
  padding-right: 50px;
  padding-bottom: 18px;
  font-size: 16px;
  line-height: 140%;
  display: none;
}
.faq-item__hide a{
  color: #fff;
  text-decoration: underline;
}
.faq-item__hide a:hover{opacity: .7;}
@media only screen and (max-width : 767px){
  .faq{padding: 60px 0;}
}

/*footer*/
.footer{
  background-color: rgba(255, 255, 255, .08);
  padding: 40px 0;
}
.footer-nav,
.footer__wrap{
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
}
.footer-q{flex-grow: 1;}
.footer-q .btn{width: fit-content;}
.footer-q__txt{
  font-size: 20px;
  line-height: 140%;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 24px;
}
.footer-q__txt span{
  display: block;
  color: #fff;
}
.footer-copyright{
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 14px;
  line-height: 130%;
  color: rgba(255, 255, 255, .5);
}
.footer-nav__title{
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #fff;
}
.footer-nav__col ul li:not(:last-child){margin-bottom: 16px;}
.footer-nav__col ul li a{
  font-size: 18px;
  line-height: 130%;
  color: #fff;
  opacity: .5;
}
.footer-nav__col ul li a:hover{opacity: 1;}
@media only screen and (max-width : 991px){
  .footer-nav, .footer__wrap{gap: 32px;}
}
@media only screen and (max-width : 767px){
  .footer-q__txt{margin-bottom: 16px;}
  .footer__wrap{display: block;}
  .footer-nav{
    flex-wrap: wrap;
    gap: 40px;
  }
  .footer-q{
    margin-bottom: 40px;
    text-align: center;
  }
  .footer-q .btn{width: 100%;}
  .footer-copyright{
    position: static;
    text-align: center;
    margin-top: 40px;
  }
  .footer-nav__col{min-width: calc(50% - 20px);}
}

