/* reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-margin-start: 0px;
          margin-inline-start: 0px;
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
}

ul[class],
ol[class] {
  list-style: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

button {
  cursor: pointer;
  border: 1px solid transparent;
}

@font-face {
  font-family: "Red Hat Display";
  src: url(../fonts/RedHatDisplay-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Red Hat Display";
  src: url(../fonts/RedHatDisplay-Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: "Red Hat Display";
  src: url(../fonts/RedHatDisplay-Bold.ttf);
  font-weight: 700;
}
@font-face {
  font-family: "Red Hat Display";
  src: url(../fonts/RedHatDisplay-Black.ttf);
  font-weight: 900;
}
html.open {
  overflow: hidden;
}

body {
  font-family: "Red Hat Display";
  background-color: #141721;
  color: #FFF;
}

main {
  margin-top: 100px;
}

.container {
  max-width: 1330px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  transition: inherit;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 500px;
  color: #2C2F36;
  border: 1px solid #252938;
  background: #E5E7EF;
  padding: 13px 38px;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  position: relative;
}
.btn:after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: linear-gradient(90deg, #D2B143 0%, #FFE9A0 100%);
  border-radius: 500px;
  z-index: 0;
  opacity: 0;
  transition: 0.3s linear;
}
.btn span {
  position: relative;
  z-index: 1;
  margin: 0;
}
.btn:hover::after {
  opacity: 1;
}

.gold-btn {
  background: linear-gradient(90deg, #D2B143 0%, #FFE9A0 100%);
  color: #141721;
  transition: all 0.3s ease;
}
.gold-btn:after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: #FFE695;
  border-radius: 500px;
  z-index: 0;
  opacity: 0;
  transition: 0.3s linear;
}
.gold-btn:hover:after {
  opacity: 1;
}

section,
footer {
  position: relative;
  z-index: 1;
}

.mb-m {
  margin-bottom: 100px;
}
@media screen and (max-width: 1023px) {
  .mb-m {
    margin-bottom: 60px;
  }
}

.mb-s {
  margin-bottom: 60px;
}

.breadcrumbs__container {
  padding: 25px 0 60px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.breadcrumbs__container a {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.breadcrumbs__container span {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1023px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .grid-container {
    display: flex;
    flex-direction: column;
  }
}

.page-wrap {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .page-wrap {
    flex-direction: column;
  }
}

.main-content {
  width: 77%;
}
@media screen and (max-width: 767px) {
  .main-content {
    width: 100%;
  }
}

.navbar {
  width: 22.5%;
}
@media screen and (max-width: 767px) {
  .navbar {
    width: 100%;
  }
  .navbar .navbar-news, .navbar div:first-of-type, .navbar .btn:first-of-type {
    display: none;
  }
}
.navbar div:not([class]) {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .navbar div:not([class]) {
    font-size: 20px;
  }
}
.navbar .btn {
  max-width: 100%;
  width: 100%;
  margin-bottom: 60px;
}

.navbar-news,
.airdrop-list {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.navbar-news .news-item-img {
  aspect-ratio: 270/160;
  min-height: 160px;
}
.navbar-news .news-item-img img {
  aspect-ratio: inherit;
  min-height: 160px;
}
.navbar-news .news-item-wrap {
  padding: 20px 10px;
}
.navbar-news .news-item-wrap div {
  text-align: left;
}

.airdrop-list .airdrop__item {
  padding: 25px 20px;
}
.airdrop-list .airdrop__item_top-icon {
  max-width: 40px;
  max-height: 40px;
}
.airdrop-list .airdrop__socials a {
  max-width: 28px;
  max-height: 28px;
}
.airdrop-list .airdrop__bottom span {
  font-size: 10px;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}
.socials a {
  max-width: 64px;
  max-height: 64px;
  width: 100%;
  height: 100%;
}
.socials a svg {
  width: 100%;
  height: 100%;
}

.center-title {
  text-align: center;
  padding: 0 20px;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .center-title {
    font-size: 30px;
  }
}

.scroll {
  overflow: hidden;
  overflow-x: auto;
}

.sticky-name {
  border-top: 2px solid #252938;
  background: #1E222F;
  padding: 15px 0;
  position: relative;
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 49;
}
.sticky-body .sticky-name {
  position: fixed;
  display: flex;
}

.sticky-name__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
}
.sticky-name__container .btn {
  max-width: 100%;
  width: 100%;
}

.sticky__name-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sticky__name-top img {
  max-width: 32px;
  max-height: 32px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sticky__name-top span {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
@media screen and (max-width: 767px) {
  .sticky__name-top span {
    font-size: 20px;
  }
}

.wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 0.4em;
  line-height: normal;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 0;
  border: none;
  position: absolute;
  bottom: -35px;
  left: 0;
  font-size: 0.5em;
}

.arrow_up {
  position: fixed;
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  border: 2px solid #D2B143;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  background-color: transparent;
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
}
.up .arrow_up {
  visibility: visible;
  opacity: 1;
}
.arrow_up:hover {
  background-color: #D2B143;
}
.arrow_up:hover svg path {
  stroke: #fff;
}
.arrow_up svg path {
  stroke: #D2B143;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  height: auto;
  width: 100%;
  z-index: 50;
}

.header__top-animation {
  display: flex;
  gap: 30px;
  color: #FFF;
  overflow: hidden;
  border-bottom: 1px solid #252938;
  background-color: #141721;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.header__container-link {
  display: flex;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  align-items: center;
  min-width: fit-content;
  width: 100%;
  white-space: nowrap;
  padding: 10px 40px 10px 20px;
  transition: all 0.1s ease-in-out;
  background-color: #141721;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .header__container-link:hover {
    background-color: #252938;
  }
}
.header__container-link img {
  width: 26px;
  height: 26px;
}
.header__container-link span {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  padding: 4px 8px;
  border-radius: 5px;
}
.header__container-link.livedown .current {
  background-color: #BE4D45;
}
.header__container-link.liveup .current {
  background-color: #00B27C;
}

.wrapper {
  width: 100%;
  background-color: #141721;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  white-space: nowrap;
}

.box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  position: relative;
  width: auto;
  white-space: nowrap;
  overflow: visible;
}

.header__bottom__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background-color: #181C27;
  border-radius: 0px 0px 30px 30px;
  border-right: 1px solid #252938;
  border-bottom: 1px solid #252938;
  border-left: 1px solid #252938;
  padding: 20px;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .header__bottom__container {
    min-width: calc(100vw - 15px);
    margin-left: -15px;
    margin-right: -15px;
    gap: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .header__bottom__container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 374px) {
  .header__bottom__container .wpml-ls-legacy-dropdown-click a span {
    display: none;
  }
}

.logo {
  min-width: 115px;
  height: 26px;
}

.header__nav {
  position: relative;
}
.header__nav nav {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .header__nav nav {
    width: 100%;
    padding: 46px 0;
    height: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .header__nav {
    position: fixed;
    background-color: #252938;
    width: 100%;
    height: calc(100vh - 17px);
    top: 17px;
    bottom: 0;
    right: 0;
    left: -100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 115px;
    z-index: -1;
    overflow-y: auto;
    padding-top: 117px;
  }
  .open .header__nav {
    left: 0;
  }
}
.header__nav .menu {
  display: flex;
  align-items: center;
  color: #FFF;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .header__nav .menu {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    padding: 0 20px;
  }
}
.header__nav .menu li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
@media screen and (max-width: 1023px) {
  .header__nav .menu li:not(.sub-menu li) {
    display: block;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    width: 100%;
    padding: 30px 0;
    align-items: flex-start;
  }
  .header__nav .menu li:not(.sub-menu li):not(:nth-last-of-type(1)) {
    border-bottom: 1px solid #D1D1D2;
  }
  .header__nav .menu li:not(.sub-menu li):nth-last-of-type(1) {
    padding-top: 40px;
  }
  .header__nav .menu li:not(.sub-menu li).show > .sub-menu {
    display: flex;
    flex-direction: column;
    max-height: 100vh;
    opacity: 1;
    overflow: visible;
    visibility: visible;
    margin-top: 20px;
  }
  .header__nav .menu li:not(.sub-menu li).show:after {
    background: url(../images/vector-blue.svg) center center/contain no-repeat;
    transform: rotate(0deg);
  }
}
@media screen and (min-width: 1024px) {
  .header__nav .menu li:not(.sub-menu li) {
    padding: 27px 20px;
  }
}
.header__nav .menu li:has(.sub-menu).show > a {
  background: linear-gradient(90deg, #D2B143 0%, #FFE9A0 27.8%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header__nav .menu li:has(.sub-menu):hover > a {
  background: linear-gradient(90deg, #D2B143 0%, #FFE9A0 27.8%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header__nav .menu li a {
  transition: 0.3s ease-in-out;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  position: relative;
}
.header__nav .menu li a:hover {
  background: linear-gradient(90deg, #D2B143 0%, #FFE9A0 27.8%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 1024px) {
  .header__nav .menu li:has(.sub-menu):hover:after {
    background: url(../images/vector-blue.svg) center center/contain no-repeat;
    transform: rotate(180deg);
  }
}
.header__nav .menu li:has(.sub-menu)::after {
  content: "";
  background: url(../images/vector-white.svg) center center/contain no-repeat;
  width: 8px;
  height: 8px;
  transition: 0.3s ease-in-out;
  transform: rotate(0);
}
@media screen and (max-width: 1023px) {
  .header__nav .menu li:has(.sub-menu)::after {
    position: absolute;
    right: 10px;
    top: 40px;
    content: "";
  }
}
@media screen and (min-width: 1024px) {
  .header__nav .menu li:hover .sub-menu, .header__nav .menu li:focus-visible .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(74px);
  }
}
.header__nav .menu .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px 15px 15px 15px;
  border-radius: 0px 0px 10px 10px;
  border: 1px solid #252938;
  background: #181C27;
  position: absolute;
  top: 0;
  width: 146px;
  transform: translateY(105px);
  height: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease-in-out;
}
.header__nav .menu .sub-menu:hover {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 1023px) {
  .header__nav .menu .sub-menu {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s linear;
    overflow: hidden;
    gap: 10px;
    width: 100%;
    padding: 0;
    box-shadow: none;
    position: relative;
    background-color: inherit;
    top: 0;
    transform: translate(0);
  }
}
.header__nav .switcher {
  max-width: calc(100% - 40px);
  width: 100%;
  margin: 0 auto;
  border-radius: 500px;
  background-color: #252938;
  display: block;
}
@media screen and (min-width: 1024px) {
  .header__nav .switcher {
    display: none;
  }
}
.header__nav .switcher img {
  border-radius: inherit;
  width: 100%;
  max-height: 43px;
}

.switcher {
  margin-left: auto;
  display: none;
}
@media screen and (min-width: 1024px) {
  .switcher {
    margin-left: 0;
  }
}

.burgerBtn {
  display: none;
}
@media screen and (max-width: 1023px) {
  .burgerBtn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 40px;
    padding: 14px 10px;
    background: linear-gradient(90deg, #D2B143 0%, #FFE9A0 100%);
    border-radius: 5px;
  }
  .burgerBtn span {
    width: 20px;
    height: 3px;
    background-color: #141721;
    border-radius: 500px;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    opacity: 1;
  }
  .open .burgerBtn span:nth-of-type(1) {
    transform: rotate(360deg) rotate(45deg) translate(3px, 4px) scale(1.07);
  }
  .open .burgerBtn span:nth-of-type(2) {
    transform: rotate(360deg) rotate(-45deg) translate(2px, -3px) scale(1.07);
  }
}

.wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover > a, .wpml-ls-legacy-dropdown-click a:focus, .wpml-ls-legacy-dropdown-click a:hover {
  background-color: #0f205e;
  color: #fff;
}

.wpml-ls {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.wpml-ls.wpml-ls-legacy-dropdown-click a {
  background-color: #252938;
  color: #fff;
  border: none;
  border-radius: 500px;
  padding: 12px 36px 12px 20px;
  transition: all 0.5s;
}
.wpml-ls.wpml-ls-legacy-dropdown-click a:hover {
  background-color: #0f205e;
  color: #fff;
}
.wpml-ls.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
  border-top: none;
}
.wpml-ls .wpml-ls-sub-menu a {
  width: 100%;
}

.o-page {
  z-index: 2;
}

.o-page__bg {
  z-index: -1;
  position: fixed;
  top: 0%;
  left: 0%;
  bottom: 0%;
  right: 0%;
  overflow: hidden;
}

.o-page__bg__hor {
  z-index: 1;
  grid-row-gap: 5rem;
  flex-direction: column;
  display: flex;
  position: absolute;
  top: 0%;
  left: 0%;
  bottom: 0%;
  right: 0%;
}

.o-page__bg__vert {
  z-index: 1;
  grid-column-gap: 10rem;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.o-page__bg__hline {
  transform-origin: 0%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.o-page__bg__hline {
  transform: scaleX(0);
}

.o-page__bg__vline {
  transform-origin: 50% 0%;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.o-page__bg__vline {
  transform: scaleY(0);
}

.airdrop__container {
  display: flex;
  gap: 40px;
  color: #fff;
  flex-wrap: wrap;
}

.airdrop__items {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: calc(33.3333333333% - 30px);
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .airdrop__items {
    width: 100%;
  }
}
.airdrop__items h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
@media screen and (max-width: 767px) {
  .airdrop__items h3 {
    font-size: 20px;
  }
}
.airdrop__items .btn {
  max-width: 100%;
  width: 100%;
}

.airdrop__wrapper {
  display: flex;
  flex-direction: row-reverse;
  max-height: 80vh;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  position: relative;
  width: 100%;
  scrollbar-width: none;
}
.airdrop__wrapper::-webkit-scrollbar {
  background-color: #181C27;
  width: 6px;
  display: none;
}

.airdrop__items__wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-right: 26px;
}

.progress-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  z-index: 1;
  border-radius: 500px;
}
.short .progress-wrapper {
  display: none;
}

.progress {
  background-color: #1E222F;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  position: absolute;
  top: 0;
  right: 2px;
  z-index: 1;
  border-radius: 500px;
}

.progress-bar {
  border-radius: 500px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: #D1D1D2;
  border-radius: 500px;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.2s linear;
  z-index: 2;
}

.airdop-blockchain {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  position: absolute;
  left: -20px;
  top: -20px;
}

.airdrop__item {
  padding: 30px;
  position: relative;
  height: auto;
  width: 100%;
  border-radius: 20px;
  background: var(--dark-theme-blue-2, #181C27);
}

.airdrop__item_top {
  display: flex;
  position: relative;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid #252938;
}

.airdrop-cat {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px 15px;
  border-radius: 0px 20px 0px 0px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.airdrop-cat.green {
  background-color: #00B27C;
}
.airdrop-cat.red {
  background-color: #BE4D45;
}
.airdrop-cat.yellow {
  background: #ddbe59;
}
.airdrop-cat.lightgreen {
  background: #00de5d;
}

.airdrop__item_top-name {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.airdrop__item_top-icon {
  max-width: 75px;
  max-height: 75px;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
}
.airdrop__item_top-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.airdrop-name {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
@media screen and (max-width: 767px) {
  .airdrop-name {
    font-size: 20px;
  }
}

.airdrop__socials {
  display: flex;
  gap: 5px;
  align-items: center;
  flex-wrap: wrap;
}
.airdrop__socials a {
  max-width: 32px;
  max-height: 32px;
  width: 100%;
  height: 100%;
}
.airdrop__socials a:hover .gold-path {
  fill: #FFE695;
}
.airdrop__socials a:hover .black-path {
  fill: #141721;
}
.airdrop__socials a svg {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
}
.airdrop__socials a svg path {
  transition: 0.3s linear;
}

.airdrop__bottom {
  margin-top: 20px;
}
.airdrop__bottom span {
  text-wrap: balance;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
}
.airdrop__bottom ul {
  gap: 10px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 1023px) {
  .hero {
    overflow: hidden;
    margin-top: -70px;
  }
}

.hero__container {
  display: flex;
  border-radius: 18px;
  border: 1px solid #252938;
  background: url(../images/bg.svg) center center/cover no-repeat;
  padding: 0 0px 0 80px;
  gap: 80px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .hero__container {
    gap: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .hero__container {
    flex-direction: column;
    padding: 170px 20px 0 20px;
    min-width: calc(100vw - 30px);
    margin-left: -15px;
    margin-right: -15px;
    background: url(../images/bg-mobile.svg) center center/cover no-repeat;
  }
}

.hero__content {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-grow: 1;
  padding: 40px 0;
  max-width: 559px;
  width: 100%;
  margin: auto 0;
}
@media screen and (max-width: 1100px) {
  .hero__content {
    max-width: 100%;
    padding: 40px 20px;
  }
}
.hero__content span {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 15px;
}
.hero__content h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .hero__content h1 {
    font-size: 30px;
  }
}
.hero__content p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 30px;
}
.hero__content p:nth-last-of-type(1) {
  margin-bottom: 0;
}
.hero__content .btn span {
  margin: 0;
}

.hero__image {
  display: flex;
  max-width: 515px;
  width: 100%;
  display: flex;
  max-width: 515px;
  width: 100%;
  height: auto;
  flex-grow: 1;
  aspect-ratio: 515/450;
}
@media screen and (max-width: 1100px) {
  .hero__image {
    max-width: 100%;
  }
}
.hero__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__title {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 60px;
  color: #D7DBE4;
}
.about__title h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
@media screen and (max-width: 767px) {
  .about__title h2 {
    font-size: 30px;
  }
}

.about__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 100px 80px 0 80px;
  border-radius: 30px 30px 0px 0px;
  background: linear-gradient(180deg, #181C27 0%, #141721 100%);
}
@media screen and (max-width: 1023px) {
  .about__wrapper {
    flex-direction: column-reverse;
    min-width: calc(100vw - 30px);
    margin-left: -15px;
    margin-right: -15px;
    padding: 70px 40px 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .about__wrapper {
    padding: 40px 20px 0 20px;
  }
}

.about__image {
  display: flex;
  max-width: 500px;
  width: 100%;
  height: auto;
  align-items: flex-end;
  flex-grow: 1;
}
@media screen and (max-width: 1023px) {
  .about__image {
    max-width: 100%;
  }
}
.about__image img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.about__content {
  padding: 0 0 30px 0;
  flex-grow: 1;
  max-width: 518px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .about__content {
    max-width: 100%;
  }
}
.about__content h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .about__content h3 {
    font-size: 22px;
  }
}
.about__content p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 30px;
}
.about__content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
  padding-left: 0;
}
.about__content ul li {
  position: relative;
  /* display: flex; */
  /* gap: 5px;
  align-items: center; */
}
.about__content ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: linear-gradient(90deg, #D2B143 0%, #FFE9A0 100%);
  border-radius: 50%;
}
.about__content .btn {
  padding: 13px 28px;
}

.choose__title {
  text-align: center;
  margin-bottom: 60px;
}
.choose__title h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
@media screen and (max-width: 767px) {
  .choose__title h2 {
    font-size: 30px;
  }
}

.choose__content {
  display: flex;
  gap: 20px;
  width: 100%;
}
.choose__content::-webkit-scrollbar {
  background-color: #181C27;
  width: 6px;
  display: none;
}

.choose__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
}

.choose__item {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .choose__item {
    flex-direction: column;
  }
}

.choose__item__content {
  flex-grow: 1;
  width: 49%;
}
@media screen and (max-width: 1023px) {
  .choose__item__content {
    width: 100%;
  }
}
.choose__item__content h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .choose__item__content h3 {
    font-size: 22px;
  }
}
.choose__item__content p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 40px;
}
.choose__item__content p:has(+ p), .choose__item__content p:has(+ ul), .choose__item__content p:has(+ ol) {
  margin-bottom: 10px;
}
.choose__item__content h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .choose__item__content h4 {
    font-size: 20px;
  }
}
.choose__item__content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.choose__item__content ul li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.choose__item__content ul li:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/marker.svg) center center/cover no-repeat;
}

.choose__item__image {
  overflow: hidden;
  flex-grow: 1;
  padding: 60px 75px;
  width: 40%;
  border-radius: 20px;
  border: 2px solid #252938;
  background-color: #181C27;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .choose__item__image {
    width: 100%;
  }
}
.choose__item__image img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.choose__item__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 340px;
  max-height: 340px;
}
.choose__item__image-wrap:after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgb(161, 189, 255) 0%, rgb(24, 28, 39) 100%) center center/340px 340px no-repeat;
  opacity: 0.75;
  filter: blur(75px);
}

.choose__item-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 15px;
}
.choose__item-step span {
  background: linear-gradient(90deg, #D2B143 0%, #FFE9A0 100%);
  color: #000;
  border-radius: 500px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  font-weight: 700;
}
.choose__item-step span:nth-of-type(1) {
  padding: 5px 10px;
}
.choose__item-step span:nth-of-type(2) {
  padding: 5px 15px;
}

.choose__scrollBar {
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
  right: 0;
  width: 27px;
  height: 501px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .choose__scrollBar {
    display: none;
  }
}
.choose__scrollBar span {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
.choose__scrollBar span:nth-of-type(1) {
  margin-bottom: 14px;
}
.choose__scrollBar span:nth-of-type(2) {
  margin-top: 14px;
}
.choose__scrollBar .progress-wrapper {
  position: relative;
}

.curren__container .btn {
  margin: 0 auto;
  width: 100%;
  max-width: 190px;
}
@media screen and (max-width: 767px) {
  .curren__container .btn {
    max-width: 100%;
  }
}

.curren__title {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 60px;
  max-width: 700px;
}
.curren__title h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
@media screen and (max-width: 767px) {
  .curren__title h2 {
    font-size: 30px;
  }
}

.curren__table-wrap {
  margin-bottom: 60px;
}

table.crypto {
  max-width: 100%;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  table.crypto {
    margin-bottom: 50px;
  }
}
.article table.crypto img {
  margin-bottom: 0;
}
table.crypto tbody {
  display: flex;
  flex-direction: column;
  width: 100%;
}
table.crypto td, table.crypto th {
  padding: 20px 40px;
  white-space: nowrap;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
}
table.crypto td:not(:nth-of-type(1)), table.crypto th:not(:nth-of-type(1)) {
  text-align: center;
}
table.crypto td:nth-of-type(1), table.crypto th:nth-of-type(1) {
  width: 36%;
  display: flex;
  align-items: center;
}
table.crypto td:nth-of-type(1) span:nth-of-type(1), table.crypto th:nth-of-type(1) span:nth-of-type(1) {
  margin-right: 30px;
}
table.crypto td:nth-of-type(1) img, table.crypto th:nth-of-type(1) img {
  max-width: 28px;
  aspect-ratio: 1;
  margin-right: 8px;
}
table.crypto td:nth-of-type(2), table.crypto th:nth-of-type(2) {
  width: 31%;
  display: flex;
  align-items: center;
}
table.crypto td:nth-of-type(3), table.crypto th:nth-of-type(3) {
  display: flex;
  align-items: center;
  padding: 0;
}
table.crypto td:nth-of-type(3) span, table.crypto th:nth-of-type(3) span {
  padding: 4px 10px;
  background: #003C29;
  color: #00B27C;
  border-radius: 5px;
}
table.crypto td:nth-of-type(4), table.crypto th:nth-of-type(4) {
  width: 30%;
  display: flex;
  justify-content: center;
}
table.crypto td:nth-of-type(4) .btn:hover, table.crypto th:nth-of-type(4) .btn:hover {
  color: #fff;
}
table.crypto thead tr:nth-of-type(1) {
  background: linear-gradient(90deg, #D2B143 0%, #FFE9A0 100%);
  color: #1E222F;
}
table.crypto thead tr:nth-of-type(1) th:nth-of-type(3) span {
  background-color: transparent;
  color: #1E222F;
}
table.crypto tr {
  background: #1E222F;
  display: flex;
  margin-bottom: 3px;
}
table.crypto tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
table.crypto tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
table.crypto tr:first-child th:first-child {
  border-top-left-radius: 10px;
}
table.crypto tr:first-child th:last-child {
  border-top-right-radius: 10px;
}

table {
  max-width: 100%;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  table {
    margin-bottom: 30px;
  }
}
.article table img {
  margin-bottom: 0;
}
table td, table th {
  padding: 20px 40px;
  white-space: nowrap;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
}
table td:not(:nth-of-type(1)), table th:not(:nth-of-type(1)) {
  text-align: center;
}
table td:nth-of-type(3) span, table th:nth-of-type(3) span {
  padding: 4px 10px;
  background: #003C29;
  color: #00B27C;
  border-radius: 5px;
}
table thead tr:nth-of-type(1) {
  background: linear-gradient(90deg, #D2B143 0%, #FFE9A0 100%);
  color: #1E222F;
}
table thead tr:nth-of-type(1) th:nth-of-type(3) span {
  background-color: transparent;
  color: #1E222F;
}
table tr {
  background: #1E222F;
  margin-bottom: 3px;
}
table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
table tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
table tr:first-child th:first-child {
  border-top-left-radius: 10px;
}
table tr:first-child th:last-child {
  border-top-right-radius: 10px;
}

.news__title {
  margin: 0 auto;
  margin-bottom: 60px;
  max-width: 700px;
  text-align: center;
}
.news__title h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
@media screen and (max-width: 767px) {
  .news__title h2 {
    font-size: 30px;
  }
}

.news-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: #181C27;
  padding: 10px;
  height: auto;
}

.news-item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  min-height: 250px;
  width: 100%;
  max-height: 250px;
  height: 100%;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .news-item-img {
    aspect-ratio: 310/210;
    max-height: 100%;
  }
}
.news-item-img img {
  border-radius: 15px;
  max-width: 100%;
  height: 100%;
  width: 100%;
  aspect-ratio: 400/250;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .news-item-img img {
    aspect-ratio: 310/210;
    max-height: 100%;
  }
}

.news-item-wrap {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .news-item-wrap {
    padding: 20px 10px;
  }
}
.news-item-wrap div:not([class]),
.news-item-wrap h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .news-item-wrap div:not([class]),
.news-item-wrap h3 {
    font-size: 20px;
  }
}
.news-item-wrap a p {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  color: #D1D1D2;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-item-wrap span {
  margin-top: auto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

div.coins {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}
div.coins a {
  display: flex;
  gap: 5px;
  background: linear-gradient(90deg, #D2B143 0%, #FFE9A0 100%);
  border-radius: 500px;
  padding: 4px 10px;
  align-items: center;
  color: #2C2F36;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
div.coins a img {
  width: 15px;
  height: 15px;
}

.news__item__wrap {
  position: relative;
}

.news__slider__wrap {
  position: relative;
}

.newsSlider {
  width: 95%;
}

.arrow {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #252938;
  border-radius: 50%;
  top: 40%;
  z-index: 10;
  max-width: 62px;
  max-height: 62px;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .arrow {
    display: none;
  }
}
.arrow svg {
  width: 20px;
  height: 13px;
  transition: 0.3s ease-in-out;
}
.arrow svg circle {
  transition: 0.3s ease-in-out;
}
.arrow:hover {
  background: linear-gradient(90deg, #D2B143 0%, #FFE9A0 100%);
}
.arrow.swiper-button-disabled {
  cursor: not-allowed;
  background: #4E4E4E;
}

.news-button-prev {
  left: 0px;
}

.news-button-next {
  right: 0px;
}

.swiper-pagination-bullets.news-pagination {
  margin: 0 auto;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 30px;
}

.news-pagination .swiper-pagination-bullet {
  background-color: #252938;
  opacity: 1;
  height: 14px;
  width: 14px;
  position: relative;
}
.news-pagination .swiper-pagination-bullet:after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translate(50%, 50%);
  display: block;
  border-radius: 50%;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background-color: #4E4E4E;
}

.accord {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  gap: 10px;
}

.accord-item {
  max-width: 100%;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s linear;
}
.accord-item-top {
  max-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 40px;
  border-radius: 500px;
  background-color: #181C27;
  z-index: 2;
  transition: 0.3s linear;
}
@media screen and (max-width: 767px) {
  .accord-item-top {
    padding: 15px;
    gap: 10px;
  }
}
@media screen and (max-width: 367px) {
  .accord-item-top {
    gap: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    white-space: pre-wrap;
  }
}
.accord-item-top p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  white-space: pre-wrap;
  margin-bottom: 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
@media screen and (max-width: 767px) {
  .accord-item-top p {
    font-size: 20px;
  }
}
@media screen and (max-width: 515px) {
  .accord-item-top p {
    font-size: 16px;
  }
}
@media screen and (max-width: 367px) {
  .accord-item-top p {
    overflow-wrap: anywhere;
  }
}
.accord-item-top svg {
  max-width: 48px;
  max-height: 48px;
  width: 100%;
  height: 100%;
  margin-right: 5px;
  transition: all 0.3s linear;
  margin-left: auto;
}
.accord-item-top svg path, .accord-item-top svg circle {
  transition: 0.3s linear;
}
@media screen and (max-width: 767px) {
  .accord-item-top svg {
    max-width: 31px;
    max-height: 31px;
  }
}
.accord-item-bottom {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: 0.2s linear;
  padding: 80px 40px 0px 40px;
  position: relative;
  z-index: -1;
  margin-top: -80px;
}
.accord-item-bottom p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .accord-item-bottom {
    padding: 50px 20px 0px 20px;
    margin-top: -50px;
  }
}

.accord-count {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  padding: 5px 15px;
  background-color: #252938;
  border-radius: 500px;
  max-width: 50px;
  transition: 0.3s linear;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .accord-count {
    font-size: 14px;
    min-width: 37px;
    padding: 4px 10px;
  }
}
@media screen and (max-width: 367px) {
  .accord-count {
    font-size: 12px;
    min-width: 37px;
    padding: 4px;
  }
}

.icon-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  margin-left: auto;
}

.initial-state {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s linear;
}

.hover-state {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s linear;
}

.accord-item.active .accord-item-bottom {
  background-color: #252938;
  opacity: 1;
  max-height: 100vh;
  overflow: visible;
  padding: 80px 40px 40px 40px;
  border-radius: 0 0 10px 10px;
  z-index: -1;
  position: relative;
  border-radius: 0px 0px 20px 20px;
  margin-top: -46px;
  z-index: -5;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .accord-item.active .accord-item-bottom {
    padding: 70px 20px 20px 20px;
    margin-top: -50px;
  }
}

@media screen and (min-width: 1023px) {
  .accord-item:hover .accord-count {
    background: linear-gradient(90deg, #D2B143 0%, #FFE9A0 100%);
    color: #141721;
  }
  .accord-item:hover .initial-state {
    opacity: 0;
  }
  .accord-item:hover .hover-state {
    opacity: 1;
  }
}
.accord-item.active .accord-count {
  background: linear-gradient(90deg, #D2B143 0%, #FFE9A0 100%);
  color: #141721;
}

.accord-item.active .initial-state {
  opacity: 0;
}

.accord-item.active .hover-state {
  opacity: 1;
}

.faq__title {
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .faq__title {
    font-size: 30px;
  }
}

.faq__container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.footer__container {
  padding: 60px 60px 20px 60px;
  border-radius: 60px 60px 0px 0px;
  background: #181C27;
}
@media screen and (max-width: 1023px) {
  .footer__container {
    padding: 40px 40px 20px 40px;
    border-radius: 40px 40px 0px 0px;
  }
}
@media screen and (max-width: 767px) {
  .footer__container {
    padding: 40px 20px 20px 20px;
    border-radius: 40px 40px 0px 0px;
    min-width: calc(100vw - 30px);
    margin-left: -15px;
    margin-right: -15px;
  }
}

.footer__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 60px;
}
@media screen and (max-width: 1023px) {
  .footer__top {
    flex-direction: column;
    align-items: center;
  }
}

.footer__top__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 250px;
}
@media screen and (max-width: 1023px) {
  .footer__top__info {
    max-width: 350px;
  }
}
.footer__top__info .logo {
  max-width: 115px;
}
.footer__top__info p {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  color: #D1D1D2;
}
.footer__top__info .btn {
  max-width: 100%;
  width: 100%;
}

.footer__top__nav {
  display: flex;
  gap: 60px;
}
@media screen and (min-width: 1200px) {
  .footer__top__nav {
    width: 100%;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1023px) {
  .footer__top__nav {
    flex-direction: column;
  }
}
.footer__top__nav nav .menu {
  display: flex;
  gap: 60px;
}
.footer__top__nav nav .menu li:not(.sub-menu li) {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__top__nav nav .menu li:not(.sub-menu li) > a {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .footer__top__nav nav .menu li:not(.sub-menu li) > a {
    font-size: 20px;
  }
}
.footer__top__nav nav .menu .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1023px) {
  .footer__top__nav nav .menu .sub-menu {
    flex-direction: column;
    margin: 0 auto;
  }
}
.footer__top__nav nav .menu .sub-menu a {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  color: #D1D1D2;
  transition: 0.3s ease-in;
}
.footer__top__nav nav .menu .sub-menu a:hover {
  color: #FFF;
}

.footer__top__form {
  max-width: 350px;
  width: 100%;
}
.footer__top__form div {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .footer__top__form div {
    font-size: 20px;
  }
}
.footer__top__form p {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  color: #D1D1D2;
  margin-bottom: 30px;
}
.footer__top__form form {
  display: flex;
  border-radius: 8px;
  position: relative;
}
.footer__top__form form input:not([type=submit]) {
  padding: 13px 28px;
  border-radius: 8px 0 0 8px;
  background-color: #252938;
  outline: none;
  border: none;
  max-width: 300px;
  width: 100%;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  color: #FFF;
}
.footer__top__form form input:not([type=submit])::-moz-placeholder {
  color: #D1D1D2;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.footer__top__form form input:not([type=submit]):-ms-input-placeholder {
  color: #D1D1D2;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.footer__top__form form input:not([type=submit])::placeholder {
  color: #D1D1D2;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.footer__top__form form input[type=submit] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  border-radius: 0 8px 8px 0;
}
.footer__top__form form .submit__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 50px;
  width: 100%;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(90deg, #D2B143 0%, #FFE9A0 100%);
  position: relative;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  margin-bottom: 0;
}
.footer__top__form form .submit__wrap .wpcf7-spinner {
  display: none;
}
.footer__top__form form .submit__wrap svg {
  max-width: 15px;
  height: 9px;
}

.footer__copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-top: 2px solid #252938;
  flex-wrap: wrap;
}
.footer__copy span {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

a:hover .gold-path {
  fill: #FFE695;
}
a:hover .black-path {
  fill: #141721;
}

.footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.footer__social a {
  max-width: 44px;
  max-height: 44px;
  width: 100%;
  height: 100%;
}
.footer__social a:hover .gold-path {
  fill: #FFE695;
}
.footer__social a:hover .black-path {
  fill: #141721;
}
.footer__social a svg {
  width: 100%;
  height: 100%;
}
.footer__social a svg path {
  transition: 0.3s linear;
}

.footer__nb {
  padding-top: 20px;
}
.footer__nb p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: #D1D1D2;
}

.air__container {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1023px) {
  .air__container {
    flex-direction: column;
  }
}

.air__info {
  width: 33%;
}
@media screen and (max-width: 1023px) {
  .air__info {
    width: 100%;
  }
}

.air__info__panel {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px;
  border-radius: 30px;
  background: #181C27;
  margin-bottom: 30px;
}

.info__panel__name {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.info__panel__name img {
  max-width: 84px;
  max-height: 84px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.info__panel__name span {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
@media screen and (max-width: 767px) {
  .info__panel__name span {
    font-size: 30px;
  }
}

.info__panel__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info__panel__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  overflow: hidden;
  overflow-x: auto;
}
.info__panel__list li:not(:nth-last-of-type(1)) {
  padding-bottom: 20px;
  border-bottom: 2px solid #252938;
}
.info__panel__list li span {
  width: 50%;
}
.info__panel__list li span:nth-of-type(1) {
  text-align: left;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.info__panel__list li span:nth-of-type(2) {
  text-align: right;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.air__info__btns {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin-bottom: 30px;
}
.air__info__btns .btn {
  max-width: 100%;
  width: 100%;
}

.air__descr {
  padding: 70px;
  border-radius: 30px;
  background: #181C27;
  width: 66%;
}
@media screen and (max-width: 1023px) {
  .air__descr {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .air__descr {
    padding: 40px 20px;
  }
}
.air__descr h1 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
@media screen and (max-width: 767px) {
  .air__descr h1 {
    font-size: 30px;
  }
}
.air__descr p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 15px;
}
.air__descr p:has(+ div) {
  margin-bottom: 30px;
}
.air__descr div {
  padding: 50px;
  border-radius: 20px;
  background: #252938;
}
@media screen and (max-width: 767px) {
  .air__descr div {
    padding: 40px 20px;
  }
}
.air__descr div h2 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .air__descr div h2 {
    font-size: 20px;
  }
}
.air__descr div ol, .air__descr div ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
  margin-left: 15px;
}
.air__descr div ol li, .air__descr div ul li {
  width: 100%;
}
.air__descr div ol li p, .air__descr div ul li p {
  margin-bottom: 0;
}
.air__descr div ol li a, .air__descr div ul li a {
  position: relative;
  color: #D2B143;
  text-decoration: underline;
}

.conf {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 15px;
  border-radius: 500px;
  margin-bottom: 10px;
}
.air__descr .conf__wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background-color: transparent;
  flex-wrap: wrap;
}
.conf.red {
  background: #3E2220;
  color: #BE4D45;
}
.conf.green {
  background: #00B27C;
  color: #FFF;
}
.conf.yellow {
  background: #ddbe59;
}
.conf.lightgreen {
  background: #00de5d;
}

.similar {
  overflow: hidden;
}

.similar__title {
  text-align: center;
}
.similar__title h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .similar__title h2 {
    font-size: 30px;
  }
}

.similar__wrap {
  margin-bottom: 60px;
}

.similar__airdrop__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1023px) {
  .similar__airdrop__links {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .similar__airdrop__links {
    display: none;
  }
}
.similar__airdrop__links .btn {
  max-width: 100%;
  width: 100%;
}

.swiper-pagination-bullets.similar-pagination {
  margin: 0 auto;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 30px;
}

.similar-pagination .swiper-pagination-bullet {
  background-color: #252938;
  opacity: 1;
  height: 14px;
  width: 14px;
  position: relative;
}
.similar-pagination .swiper-pagination-bullet:after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translate(50%, 50%);
  display: block;
  border-radius: 50%;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background-color: #4E4E4E;
}

.blog__title {
  margin: 0 auto;
  margin-bottom: 60px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.blog__title h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
@media screen and (max-width: 767px) {
  .blog__title h2 {
    font-size: 30px;
  }
}

.blog__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .blog__tabs {
    flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: auto;
  }
}

.blog__tab {
  display: flex;
  padding: 15px 25px;
  justify-content: center;
  align-items: center;
  gap: 15px;
  border-radius: 300px;
  background: #252938;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  cursor: pointer;
}
.blog__tab span {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 500px;
  padding: 2px 15px;
  background: #141721;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFF;
}
.active-tab .blog__tab span {
  color: #D2B143;
}
.blog__tab.active-tab {
  background: linear-gradient(90deg, #D2B143 0%, #FFE9A0 100%);
  color: #141721;
}
.blog__tab.active-tab span {
  color: #D2B143;
  color: #ffdd6e;
}
@media screen and (max-width: 767px) {
  .blog__tab {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    white-space: nowrap;
  }
}

.blog__tabs-content {
  margin-bottom: 40px;
}

.blog__tabs-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 auto;
}

.blog__tabs-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #252938;
  padding: 10px;
  border-radius: 500px;
}
.blog__tabs-pagination a, .blog__tabs-pagination span {
  text-align: center;
  padding: 2px 5px;
  border-radius: 50%;
  background: transparent;
  width: 26px;
  height: 26px;
}
.blog__tabs-pagination a.current, .blog__tabs-pagination span.current {
  background: linear-gradient(90deg, #D2B143 0%, #FFE9A0 100%);
  color: #141721;
}

.pagination-arrow, .next, .prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: #252938;
  border-radius: 50%;
}
.pagination-arrow img, .next img, .prev img {
  width: 15px;
  height: 9px;
}

.article img {
  max-width: 100%;
  width: 100%;
  border-radius: 30px;
  margin-bottom: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .article img {
    aspect-ratio: 330/200;
  }
}
.article .coins {
  margin-bottom: 20px;
}
.article .coins img {
  margin-bottom: 0;
}
.article h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .article h1 {
    font-size: 30px;
  }
}
.article h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .article h2 {
    font-size: 30px;
  }
}
.article h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .article h3 {
    font-size: 22px;
  }
}
.article h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .article h4 {
    font-size: 20px;
  }
}
.article p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.article p:not(:nth-last-of-type(1)) {
  margin-bottom: 40px;
}
.article p:has(+ ul, + ol) {
  margin-bottom: 15px;
}
.article ul, .article ol {
  list-style-type: disc;
  list-style-position: outside;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
  margin-left: 25px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  padding: 0;
}
.article ul li strong, .article ol li strong {
  font-weight: 900;
}
.article ol {
  list-style: decimal;
  margin-left: 0;
  list-style-position: inside;
}
.article ol li::marker {
  font-weight: 900;
}
.article a {
  color: #D2B143;
  position: relative;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 140%;
  text-decoration: underline;
}
.article div:not([class]) {
  padding: 30px;
  border-radius: 0px 15px 15px 0px;
  border-left: 5px solid #D2B143;
  background: #252938;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .article div:not([class]) {
    padding: 20px;
  }
}

.author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
.author img {
  max-width: 80px;
  max-height: 80px;
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}
.author span {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .author span {
    font-size: 20px;
  }
}
.author div {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.mini-article {
  padding: 60px;
  border-radius: 30px;
  border: 2px solid #252938;
  background: #181C27;
}
@media screen and (max-width: 767px) {
  .mini-article {
    padding: 40px 20px;
  }
}

.error__container {
  display: flex;
  justify-content: space-between;
  border-radius: 30px 30px 0px 0px;
  background: linear-gradient(180deg, #181C27 0%, #141721 100%);
  padding: 80px 100px;
  gap: 40px;
}
@media screen and (max-width: 1023px) {
  .error__container {
    flex-direction: column-reverse;
    padding: 40px 20px;
    min-width: calc(100vw - 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
}

.error__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40%;
  flex-grow: 1;
}
@media screen and (max-width: 1023px) {
  .error__content {
    width: 100%;
  }
}
.error__content h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .error__content h1 {
    font-size: 30px;
  }
}
.error__content p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .error__content .btn {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
}

.error__image {
  width: 31%;
  flex-grow: 1;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .error__image {
    width: 100%;
  }
}
.error__image img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .error__image img {
    aspect-ratio: 1;
    max-width: 250px;
    margin: 0 auto;
  }
}

.contact__title {
  text-align: center;
  margin-bottom: 60px;
}
.contact__title h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
@media screen and (max-width: 767px) {
  .contact__title h2 {
    font-size: 30px;
  }
}

.contact__wrap {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .contact__wrap {
    flex-direction: column;
  }
}

.get {
  width: 41%;
  border-radius: 20px;
  border: 1px solid #252938;
  background: #181C27;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .get {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .get {
    padding: 40px 20px;
  }
}
.get__title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .get__title {
    font-size: 22px;
  }
}
.get p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 30px;
}
.get form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.get form input:not([type=submit]), .get form textarea {
  width: 100%;
  padding: 15px 20px;
  border-radius: 10px;
  background: #252938;
  outline: none;
  border: none;
  color: #D1D1D2;
}
.get form input:not([type=submit])::-moz-placeholder, .get form textarea::-moz-placeholder {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.get form input:not([type=submit]):-ms-input-placeholder, .get form textarea:-ms-input-placeholder {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.get form input:not([type=submit])::placeholder, .get form textarea::placeholder {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.get form textarea {
  resize: none;
  min-height: 167px;
  max-height: 167px;
}
.get .wpcf7-not-valid-tip {
  font-size: 0.7em;
  left: 5px;
  bottom: 2px;
}
.get .wpcf7 form.invalid .wpcf7-response-output, .get .wpcf7 form.unaccepted .wpcf7-response-output, .get .wpcf7 form.payment-required .wpcf7-response-output, .get .wpcf7 form.failed .wpcf7-response-output, .get .wpcf7 form.aborted .wpcf7-response-output, .get .wpcf7 form .wpcf7-response-output {
  font-size: 0.7em;
  bottom: 0;
}

.contacts {
  width: 58%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .contacts {
    width: 100%;
  }
}

.contacts__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #252938;
  background: #181C27;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  line-height: 140%;
  min-height: 174px;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .contacts__item {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .contacts__item {
    padding: 30px;
  }
}

.contact__socials {
  justify-content: left;
  gap: 10px;
}

.contact__socials__item {
  gap: 30px;
  flex-grow: 2;
}
@media screen and (max-width: 640px) {
  .contact__socials__item {
    padding: 40px;
  }
  .contact__socials__item a {
    max-width: 74px;
    max-height: 74px;
  }
  .contact__socials__item a svg {
    aspect-ratio: 1;
  }
}

.all__container .loadMore {
  margin: 0 auto;
}

.all__title {
  text-align: center;
  margin-bottom: 60px;
}
.all__title h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
@media screen and (max-width: 767px) {
  .all__title h1 {
    font-size: 30px;
  }
}

.all__filters {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .all__filters {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
}

.all_sorting {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 1023px) {
  .all_sorting {
    flex-wrap: wrap;
    gap: 0;
  }
}
.all_sorting .all__search {
  width: 100%;
}

.filter {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  gap: 30px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .filter {
    max-width: 100%;
  }
}
.filter div {
  white-space: nowrap;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  border: 0.5px solid transparent;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 30px;
  padding: 10px 25px;
  border-radius: 500px;
  background: #252938;
}
@media screen and (max-width: 767px) {
  .filter div {
    justify-content: space-between;
  }
}
.filter div:after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../images/filter-arrow.svg) center center/cover no-repeat;
}
.filter ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 27px 15px 15px 15px;
  border-radius: 0px 0px 10px 10px;
  border: 0.5px solid transparent;
  border-top: none;
  background: #252938;
  position: absolute;
  top: 21px;
  width: 100%;
  left: 0;
  height: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease-in-out;
  z-index: -4;
}
@media screen and (max-width: 1023px) {
  .filter ul {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s linear;
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 26px 15px 0px 15px;
    top: 0;
    transform: translate(0);
    margin-top: -26px;
    height: 0;
  }
}

.filter.showFilter > ul {
  display: flex;
  flex-direction: column;
  max-height: 100vh;
  opacity: 1;
  overflow: visible;
  visibility: visible;
  background-color: #252938;
  gap: 10px;
  height: auto;
  padding: 26px 15px 15px 15px;
  border-color: #141721;
}

.filter.showFilter > div:after {
  transform: rotate(180deg);
}

.all__search {
  margin-bottom: 60px;
}
.all__search form {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .all__search form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.all__search form input:not([type=submit]) {
  width: 100%;
  outline: none;
  border-radius: 500px;
  background: #252938;
  padding: 10px 25px;
  border: none;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #FFF;
}
.all__search form input:not([type=submit])::-moz-placeholder {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #FFF;
}
.all__search form input:not([type=submit]):-ms-input-placeholder {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #FFF;
}
.all__search form input:not([type=submit])::placeholder {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .all__search form input[type=submit] {
    position: absolute;
    right: 2px;
    top: 2px;
    bottom: 2px;
    left: inherit;
    max-width: 150px;
    width: 100%;
    padding: 0;
  }
}

.all__items {
  margin-bottom: 40px;
}/*# sourceMappingURL=style.css.map */