@charset "UTF-8";
@font-face {
  font-family: "CircularStd-Bold";
  font-display: swap;
  src: url("../fonts/CircularStd-Bold.woff2") format("woff2"), url("../fonts/CircularStd-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "CircularStd-Medium";
  font-display: swap;
  src: url("../fonts/CircularStd-Medium.woff2") format("woff2"), url("../fonts/CircularStd-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "CircularStd-Regular";
  font-display: swap;
  src: url("../fonts/CircularStd-Book.woff2") format("woff2"), url("../fonts/CircularStd-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
[class^=_icon-]:before,
[class*=" _icon-"]:before {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^=_icon-]:before,
[class*=" _icon-"]:before {
  display: block;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html {
  font-size: 16px;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-family: "Urbanist";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "Urbanist";
  font-size: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background-color: inherit;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

/*
&::-webkit-scrollbar {
	display: none;
}
*/
body {
  color: var(--text-icon-secondary, #c8c7d8);
  font-weight: 400;
  background-color: rgb(28, 28, 40);
  line-height: 1.5;
}
body._lock {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
._container {
  max-width: 1224px;
  margin: 0 auto;
  padding: 0px 10px;
}

.button {
  display: inline-flex;
  padding: 0px 0px;
}
.button._fw {
  width: 100%;
}

.select {
  position: relative;
}
.select__item {
  position: relative;
}
.select__title {
  color: #000;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 4px;
}
@media (max-width: 991.98px) {
  .select__title {
    font-size: 18px;
  }
}
.select__value {
  display: flex;
  font-size: 14px;
  height: 30px;
  padding: 0px 15px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.select__value span {
  height: 1em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.select__value:before {
  content: "";
  display: inline-block;
  transition: all 0.3s ease 0s;
  width: 11px;
  height: 7px;
  background: url("../img/icons/select.svg") center/100% no-repeat;
}
.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}
.select__options {
  color: #000;
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #d9d9d9;
  border-top: 0;
  font-size: 14px;
  padding: 10px 0px 5px 0px;
}
@media (max-width: 991.98px) {
  .select__options {
    font-size: 18px;
  }
}
.select__option {
  cursor: pointer;
  padding: 5px 15px;
  margin: 0px 0px 0px 0px;
}
@media (min-width: 992px) {
  .select__option:hover {
    background: #d9d9d9;
  }
}
.select._active {
  z-index: 5;
}
.select._active .select__value:before {
  transform: rotate(-180deg);
}
.select._active .select__options {
  display: block;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  outline: none;
}

.input {
  border-radius: 0 !important;
  width: 100%;
  display: block;
  padding: 0px 20px;
}
textarea.input {
  resize: none;
  padding: 0px 0px;
}

.checkbox {
  position: relative;
}
.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.checkbox__input:checked + .checkbox__text:before {
  background: #fff url("../img/icons/check.svg") center no-repeat;
}
.checkbox__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
  cursor: pointer;
}
.checkbox__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.checkbox a {
  color: #fff;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .checkbox a:hover {
    text-decoration: none;
  }
}
.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

.options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.options__item {
  position: relative;
  cursor: pointer;
}
.options__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}
.options__input:checked + .options__text:after {
  transform: scale(1);
}
.options__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.options__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.options__text:after {
  content: "";
  transition: all 0.3s ease 0s;
  transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #77243a;
  position: absolute;
  left: 5px;
  top: 4px;
}

.rating {
  display: flex;
  align-items: flex-end;
  font-size: 40px;
  line-height: 0.75;
  transition: opacity 0.3s ease 0s;
}

.rating.rating_sending {
  opacity: 0.2;
}

.rating.rating_set .rating__active,
.rating.rating_set .rating__item {
  cursor: pointer;
}

.rating__body {
  position: relative;
}

.rating__body::before {
  content: "★★★★★";
  display: block;
}

.rating__active {
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.rating__active::before {
  content: "★★★★★";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #ffd300;
}

.rating__items {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.rating__item {
  flex: 0 0 20%;
  height: 100%;
  opacity: 0;
}

.rating__value {
  font-size: 50%;
  line-height: 1;
  padding: 0px 0px 0px 10px;
}

.quantity {
  width: 88px;
  height: 40px;
  display: flex;
  border: 1px solid rgba(166, 166, 166, 0.45);
}
.quantity__button {
  flex: 0 0 30px;
  position: relative;
  cursor: pointer;
}
.quantity__button::before, .quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}
@media (min-width: 991.98px) {
  .quantity__button:hover::before, .quantity__button:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.quantity__button_plus::before {
  transform: rotate(-90deg);
}
.quantity__input {
  flex: 1 1 auto;
}
.quantity__input input {
  height: 100%;
  color: #a6a6a6;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

.button {
  color: #fff;
  font-weight: 500;
  font-family: "Urbanist";
  padding: 12px 16px;
  border-radius: 7px;
  background: var(--accent-brand, #6966FF);
  transition: background-color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .button:hover {
    background: var(--accent-brand, #4745b1);
  }
}

.button_gray {
  background: var(--background-secondary, #393953);
  transition: background-color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .button_gray:hover {
    background: var(--background-secondary, #2b2b3e);
  }
}

.block-header {
  max-width: 600px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.block-header:not(:last-child) {
  padding: 0px 0px 80px 0px;
}
@media (max-width: 479.98px) {
  .block-header:not(:last-child) {
    padding: 0px 0px 48px 0px;
  }
}

.header-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  position: relative;
}
@media (max-width: 479.98px) {
  .header-title {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

.header-text {
  font-size: 1.125rem;
  line-height: 1.33;
  letter-spacing: -0.01575rem;
}
@media (max-width: 479.98px) {
  .header-text {
    font-size: 1rem;
  }
}

.header-link {
  font-size: 1.125rem;
  line-height: 1.33;
  letter-spacing: -0.01575rem;
  color: var(--accent-brand, #6966FF);
  position: relative;
  padding: 0px 32px 0px 0px;
}
@media (max-width: 479.98px) {
  .header-link {
    font-size: 1rem;
  }
}
.header-link::before {
  content: "";
  position: absolute;
  background: url(../img/home/projects/avatar/arrowsvg.svg) no-repeat;
  width: 24px;
  height: 24px;
  right: 0;
}
.header-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-brand, #6966FF);
  transform: scaleX(0);
  transition: transform 0.3s ease 0s;
}
@media (any-hover: hover) {
  .header-link:hover::after {
    transform: scaleX(1);
    transition: transform 0.3s ease 0s;
  }
}

.tab-nav {
  display: flex;
  column-gap: 24px;
  align-items: center;
  justify-content: center;
}

.tab-button {
  color: var(--text-icon-primary, #FFF);
  font-weight: 500;
  letter-spacing: -0.011rem;
  padding: 12px 16px;
  transition: all 0.3s ease 0s;
  border-radius: 7.29px;
}
@media (any-hover: hover) {
  .tab-button:hover {
    background: var(--background-secondary, #5e5e88);
  }
}
@media (max-width: 479.98px) {
  .tab-button {
    padding: 12px 10px;
  }
}
.tab-button._active {
  background: var(--background-secondary, #393953);
}
@media (any-hover: hover) {
  .tab-button._active:hover {
    background: var(--background-secondary, #4d4d70);
  }
}

.tabs-content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease 0s;
}
.tabs-content._active {
  height: auto;
  opacity: 1;
}

.avatar {
  overflow: hidden;
}
.avatar:not(:first-child) {
  margin: 0px 0px 0px -16px;
}
.avatar img {
  border-radius: 50%;
  border: 2px solid rgb(57, 57, 83);
}
.avatar span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(105, 102, 255);
  border-radius: 50%;
  color: var(--base-white, #FFF);
}

.row:after {
  display: block;
  content: "";
  clear: both;
}

.rub:after {
  content: "₽";
}

ol.counter {
  list-style-type: none;
  counter-reset: item;
}
ol.counter li {
  position: relative;
  padding: 0px 0px 0px 45px;
}
ol.counter li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  color: #818181;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid #4274bb;
}

.ellipsis {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.table {
  display: table;
  font-size: 0;
  width: 100%;
}

.trow {
  display: table-row;
}

.cell {
  display: table-cell;
}
.cell.full {
  width: 100%;
}

._ibg {
  position: relative;
}
._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

._video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}
._video video,
._video iframe,
._video object,
._video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

._more-content {
  transition: all 0.3s ease 0s;
  overflow: hidden;
}

._more-link {
  cursor: pointer;
}
._more-link span {
  font-style: normal;
}
._more-link span:first-child {
  display: block;
}
._more-link span:last-child {
  display: none;
}
._more-link._active span {
  font-style: normal;
}
._more-link._active span:first-child {
  display: none;
}
._more-link._active span:last-child {
  display: block;
}

#map {
  background: url("../img/icons/loading.gif") center/50px no-repeat;
}

._swiper {
  overflow: hidden;
}
._swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative;
}
._swiper.swiper-container-vertical .swiper-wrapper {
  flex-direction: column;
}
._swiper.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
}

.swiper-container-initialized .swiper-slide {
  flex-shrink: 0;
}

.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

._tabs-block {
  display: none;
}
._tabs-block._active {
  display: block;
}

.mirror {
  transform: scale(-1, 1);
}

.nicescroll-rails {
  z-index: 1000 !important;
}

._custom-scroll {
  position: fixed;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  z-index: 1000;
}
._custom-scroll__line {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px 0 0 3px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 30px 10px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}
.popup::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
}
.popup.show {
  visibility: visible;
  overflow: auto;
}
.popup.show::before {
  opacity: 1;
}
.popup.show .popup__body {
  transform: scale(1);
}
.popup._active {
  overflow: auto;
  visibility: visible;
}
.popup._active::before {
  opacity: 1;
}
.popup._active .popup__body {
  transition: all 0.3s ease 0.2s;
  transform: scale(1);
}
.popup__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup__body {
  transform: scale(0);
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 50px;
  width: 100%;
  max-width: 800px;
}
.popup__close {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  z-index: 30;
  background: url("../img/icons/close.svg") 0 0 no-repeat;
}

.header {
  padding: 36px 32px;
  position: fixed;
  width: 100%;
  z-index: 50;
  display: grid;
  align-items: center;
  grid-template-columns: auto minmax(auto, 711px) 141px;
  font-family: "Space Mono";
  column-gap: 28px;
}
@media (max-width: 1236px) {
  .header {
    column-gap: 15px;
    padding: 30px 20px;
  }
}
@media (max-width: 991.98px) {
  .header {
    grid-template-columns: auto 141px 24px;
    column-gap: 28px;
    padding: 20px 20px;
  }
}
@media (max-width: 479.98px) {
  .header {
    grid-template-columns: auto auto 24px;
    column-gap: 15px;
    padding: 10px 20px;
  }
}
.header._scroll {
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.501);
  transition: all 0.3s ease 0s;
  padding: 20px 20px;
}
@media (max-width: 479.98px) {
  .header._scroll {
    padding: 10px 20px;
  }
}
.header__logo {
  position: relative;
  z-index: 5;
}
.header__menu {
  justify-self: end;
}
.header__button {
  display: flex;
  position: relative;
  z-index: 5;
  justify-content: space-between;
  max-width: 141px;
}
@media (max-width: 479.98px) {
  .header__button {
    justify-content: center;
    max-width: 66px;
    justify-self: end;
  }
  .header__button span {
    display: none;
  }
}

.menu__list {
  display: flex;
  align-items: center;
  column-gap: 32px;
  row-gap: 5px;
}

.list__link {
  color: inherit;
  position: relative;
}
.list__link::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-icon-secondary, #C8C7D8);
  transform: scaleX(0);
  transition: transform 0.3s ease 0s;
}
@media (any-hover: hover) {
  .list__link:hover::before {
    transform: scaleX(1);
    transition: transform 0.3s ease 0s;
  }
}

.icon-menu {
  display: none;
}
@media (max-width: 991.98px) {
  .icon-menu {
    display: block;
    position: relative;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 5;
  }
  .icon-menu span {
    transition: all 0.3s ease 0s;
    top: calc(50% - 2px);
    left: 0px;
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 5px;
    background-color: #ffffff;
  }
  .icon-menu span:first-child {
    top: 0px;
  }
  .icon-menu span:last-child {
    top: auto;
    bottom: 0px;
  }
  .icon-menu._active span {
    transform: scale(0);
  }
  .icon-menu._active span:first-child {
    transform: rotate(-45deg);
    top: calc(50% - 2px);
  }
  .icon-menu._active span:last-child {
    transform: rotate(45deg);
    bottom: calc(50% - 2px);
  }
}

.menu__body {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 991.98px) {
  .menu__body {
    overflow: auto;
    padding: 100px 30px 30px 30px;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--background-secondary, #393953);
    transition: left 0.3s ease 0s;
  }
  .menu__body .menu__list {
    flex-direction: column;
    row-gap: 30px;
    align-items: start;
  }
  .menu__body .menu__list li {
    font-size: 2rem;
  }
  .menu__body._active {
    left: 0;
  }
}

.footer {
  padding: 80px 108px 40px 108px;
  display: grid;
  grid-template-columns: 60px auto 80px;
  align-items: center;
  column-gap: 32px;
}
@media (max-width: 1236px) {
  .footer {
    padding: 80px 80px 40px;
  }
}
@media (max-width: 991.98px) {
  .footer {
    grid-template-columns: auto;
    row-gap: 32px;
  }
}
@media (max-width: 479.98px) {
  .footer {
    align-items: start;
    padding: 40px 24px;
  }
}
.footer__list {
  display: flex;
  align-items: center;
  column-gap: 32px;
  flex-wrap: wrap;
  row-gap: 7px;
}
@media (max-width: 479.98px) {
  .footer__list {
    flex-direction: column;
    align-items: start;
    row-gap: 24px;
  }
}
.footer__link {
  color: var(--text-icon-secondary, #C8C7D8);
  position: relative;
  white-space: nowrap;
}
.footer__link::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-icon-secondary, #C8C7D8);
  transform: scaleX(0);
  transition: transform 0.3s ease 0s;
}
@media (any-hover: hover) {
  .footer__link:hover::before {
    transform: scaleX(1);
    transition: transform 0.3s ease 0s;
  }
}
.footer__link_icon {
  position: relative;
  padding: 0px 24px 0px 0px;
}
.footer__link_icon::after {
  content: "";
  position: absolute;
  background: url(../img/footer/external-link.svg) 0 0 no-repeat;
  width: 16px;
  height: 16px;
  top: 0;
  right: 0;
}
.footer__icons {
  display: flex;
  align-items: center;
  column-gap: 32px;
}
.page {
  flex: 1 1 auto;
  padding: 230px 0px 0px 0px;
  color: var(--text-icon-primary, #fff);
}
@media (max-width: 991.98px) {
  .page {
    padding: 170px 0px 0px 0px;
  }
}
@media (max-width: 767.98px) {
  .page {
    padding: 150px 0px 0px 0px;
  }
}
@media (max-width: 479.98px) {
  .page {
    padding: 120px 0px 0px 0px;
  }
}

.grant {
  padding: 0px 0px 40px 0px;
  color: var(--text-icon-primary, #fff);
}
@media (max-width: 991.98px) {
  .grant {
    padding: 0px 0px 40px 0px;
  }
}
@media (max-width: 767.98px) {
  .grant {
    padding: 0px 0px 30px 0px;
  }
}
@media (max-width: 479.98px) {
  .grant {
    padding: 0px 0px 20px 0px;
  }
}
.grant__container {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  align-items: center;
  text-align: center;
}
.grant__title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1; /* 88/80 */
  max-width: 808px;
  position: relative;
  z-index: 5;
}
.grant__title span {
  position: relative;
  max-width: 233px;
}
.grant__title span::before {
  content: "";
  position: absolute;
  background: url(../img/home/decore/decore-grant.svg) no-repeat;
  bottom: -20px;
  right: -15px;
  width: 277px;
  height: 24px;
}
@media (max-width: 991.98px) {
  .grant__title span::before {
    right: 0;
  }
}
@media (max-width: 479.98px) {
  .grant__title span::before {
    width: 115px;
    height: 24px;
    right: 0;
  }
}
@media (max-width: 767.98px) {
  .grant__title {
    font-size: 3rem;
  }
}
@media (max-width: 479.98px) {
  .grant__title {
    font-size: 2.5rem;
  }
}
.grant__action {
  display: flex;
  column-gap: 32px;
}
@media (max-width: 479.98px) {
  .grant__action {
    flex-direction: column;
    row-gap: 16px;
  }
}
@media (max-width: 479.98px) {
  .grant__button {
    min-width: 100%;
    flex: 1 1 100%;
    padding: 10px 16px;
    justify-content: center;
  }
}
.grant__button:last-child {
  position: relative;
  padding-right: 46px;
}
.grant__button:last-child::after {
  content: "";
  position: absolute;
  background: url(../img/home/grant/arrow.svg) no-repeat;
  width: 16px;
  height: 16px;
  right: 20px;
  top: 16px;
}
@media (max-width: 479.98px) {
  .grant__button:last-child::after {
    top: 14px;
  }
}

.benefits {
  padding: 40px 0px 80px 0px;
  font-family: "Space Mono";
}
@media (max-width: 991.98px) {
  .benefits {
    padding: 40px 0px 80px 0px;
  }
}
@media (max-width: 767.98px) {
  .benefits {
    padding: 30px 0px 60px 0px;
  }
}
@media (max-width: 479.98px) {
  .benefits {
    padding: 20px 0px 55px 0px;
  }
}
.benefits__container {
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: repeat(3, minmax(33.333%, 1fr));
  column-gap: 10px;
}
@media (max-width: 767.98px) {
  .benefits__container {
    grid-template-columns: auto;
    row-gap: 32px;
  }
}
.benefits__item {
  text-align: center;
}
.benefits__title {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--base-white, #FFF);
}
.projects {
  padding: 130px 0px 80px 0px;
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
}
.projects::before {
  content: "";
  position: absolute;
  background: url(../img/home/decore/decore-projects.svg) center center/100% no-repeat;
  width: 32px;
  height: 100px;
  top: 0;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media (max-width: 479.98px) {
  .projects::before {
    width: 20px;
    height: 65px;
  }
}
@media (max-width: 991.98px) {
  .projects {
    padding: 120px 0px 80px 0px;
  }
}
@media (max-width: 767.98px) {
  .projects {
    padding: 100px 0px 60px 0px;
  }
}
@media (max-width: 479.98px) {
  .projects {
    padding: 60px 0px 55px 0px;
  }
}
.projects__container {
  min-width: 0;
}
.projects__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 24px;
}
.projects__header:not(:last-child) {
  padding: 0px 0px 80px 0px;
}
@media (max-width: 479.98px) {
  .projects__header {
    row-gap: 16px;
  }
  .projects__header:not(:last-child) {
    padding: 0px 0px 48px 0px;
  }
}
@media (max-width: 767.98px) {
  .projects__slide {
    max-width: 500px;
  }
}
@media (min-width: 479.98px) {
  .projects__slide {
    min-width: 362px;
  }
}

.swiper-slide .slide-projects__image {
  height: 0;
  transition: all 0.3s ease 0s;
}
.swiper-slide-active .slide-projects__image {
  height: auto;
  width: 100%;
  height: 180px;
  background-color: rgb(28, 28, 40);
  border-radius: 15px;
  border: 1px solid rgba(28, 28, 40, 0.8);
}

.slide-projects {
  background-color: rgb(57, 57, 83);
  min-height: 600px;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  border: 1px solid rgba(82, 82, 118, 0.8);
}
.slide-projects__content {
  padding: 24px;
}
.slide-projects__sub-title {
  color: var(--text-icon-tertiary, #A59EBA);
  font-family: "Space Mono";
}
.slide-projects__sub-title:not(:last-child) {
  padding: 0px 0px 8px 0px;
}
.slide-projects__title {
  color: var(--text-icon-primary, #FFF);
  line-height: 1.33;
  font-size: 1.5rem;
  font-weight: 700;
}
.slide-projects__title:not(:last-child) {
  padding: 0px 0px 8px 0px;
}
.slide-projects__price {
  color: var(--text-icon-tertiary, #A59EBA);
  font-family: "Space Mono";
}
.slide-projects__price:not(:last-child) {
  padding: 0px 0px 16px 0px;
}
.slide-projects__text {
  letter-spacing: -0.011rem;
  flex: 1 1 auto;
  min-height: 100%;
  color: var(--text-icon-primary, #FFF);
}
.slide-projects__text:not(:last-child) {
  padding: 0px 0px 16px 0px;
}
.slide-projects__avatars {
  display: flex;
}
.slide-projects__avatar {
  overflow: hidden;
}
.slide-projects__avatar:not(:first-child) {
  margin-left: -14px;
}
.slide-projects__avatar img {
  border-radius: 50%;
  border: 2px solid rgb(57, 57, 83);
}

.projects__slider-button-prev, .projects__slider-button-next {
  position: relative;
}
.projects__slider-button-prev::after, .projects__slider-button-next::after {
  content: "";
  position: absolute;
  color: #000000;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 479.98px) {
  .projects__slider-button-prev::after, .projects__slider-button-next::after {
    display: none;
  }
}

.swiper-button-disabled::after {
  display: none;
}

.whatsnew {
  padding: 80px 0px 80px 0px;
}
@media (max-width: 991.98px) {
  .whatsnew {
    padding: 80px 0px 80px 0px;
  }
}
@media (max-width: 767.98px) {
  .whatsnew {
    padding: 60px 0px 60px 0px;
  }
}
@media (max-width: 479.98px) {
  .whatsnew {
    padding: 55px 0px 55px 0px;
  }
}
.whatsnew__title {
  z-index: 5;
}
.whatsnew__title:not(:last-child) {
  padding: 0px 0px 16px 0px;
}
.whatsnew__title::after {
  content: "";
  position: absolute;
  background: url(../img/home/decore/decore-whatsnew.svg) 0 0/100% no-repeat;
  width: 63px;
  height: 60px;
  top: -35px;
  right: -60px;
}
@media (max-width: 479.98px) {
  .whatsnew__title::after {
    width: 29px;
    height: 28px;
    top: -5px;
    right: -25px;
  }
}
.whatsnew__text:not(:last-child) {
  padding: 0px 0px 24px 0px;
}
.whatsnew__body {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(auto, 50%) minmax(auto, 50%);
  column-gap: 25px;
  justify-items: center;
}
@media (max-width: 767.98px) {
  .whatsnew__body {
    grid-template-columns: auto;
    row-gap: 24px;
  }
}
@media (max-width: 767.98px) {
  .whatsnew__cart {
    max-width: 500px;
  }
}

.whatsnew-cart__image img {
  width: 100%;
}
.whatsnew-cart__content {
  padding: 24px;
  background-color: rgb(57, 57, 83);
  border-radius: 0px 0px 16px 16px;
  transition: background-color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .whatsnew-cart__content:hover {
    background-color: #4F4C64;
  }
}
.whatsnew-cart__sub-title:not(:last-child) {
  padding: 0px 0px 8px 0px;
}
.whatsnew-cart__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: -0.0285rem;
}
@media (max-width: 479.98px) {
  .whatsnew-cart__title {
    font-size: 1.25rem;
  }
}
.whatsnew-cart__title:not(:last-child) {
  padding: 0px 0px 80px 0px;
}
.whatsnew-cart__title a {
  color: #fff;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .whatsnew-cart__title a:hover {
    color: #d2cfcf;
  }
}
.questions {
  padding: 80px 0px 80px 0px;
}
@media (max-width: 991.98px) {
  .questions {
    padding: 80px 0px 80px 0px;
  }
}
@media (max-width: 767.98px) {
  .questions {
    padding: 60px 0px 60px 0px;
  }
}
@media (max-width: 479.98px) {
  .questions {
    padding: 55px 0px 55px 0px;
  }
}
.questions__title:not(:last-child) {
  margin: 0px 0px 24px 0px;
}
.questions__title::before {
  content: "";
  position: absolute;
  background: url(../img/home/decore/decore-questions.svg) 0 0/100% no-repeat;
  width: 230px;
  height: 64px;
  bottom: -5px;
  right: -40px;
}
@media (max-width: 479.98px) {
  .questions__title::before {
    width: 129px;
    height: 35.896px;
    bottom: 2px;
    right: -15px;
  }
}
.spoller-questions__title {
  padding: 24px 40px 24px 0px;
  border-bottom: 1px solid var(--border-subtle, #393953);
  position: relative;
  width: 100%;
  text-align: left;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.33;
  letter-spacing: -0.01575rem;
  transition: all 0.3s ease 0s;
}
.spoller-questions__title::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: #fff;
  right: 5px;
  top: 36px;
}
.spoller-questions__title::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: #fff;
  right: 5px;
  top: 36px;
  transform: rotate(90deg);
  transition: all 0.2s ease 0s;
}
.spoller-questions__title._active::after {
  transform: rotate(0deg);
}
.spoller-questions__body {
  padding: 20px 0px;
}

.process {
  padding: 80px 0px 60px 0px;
}
@media (max-width: 991.98px) {
  .process {
    padding: 80px 0px 50px 0px;
  }
}
@media (max-width: 767.98px) {
  .process {
    padding: 60px 0px 40px 0px;
  }
}
@media (max-width: 479.98px) {
  .process {
    padding: 55px 0px 30px 0px;
  }
}
.process__title:not(:last-child) {
  padding: 0px 0px 16px 0px;
}
.process__title::after {
  content: "";
  position: absolute;
  background: url(../img/home/decore/decore-process.svg) 0 0/100% no-repeat;
  width: 161px;
  height: 16px;
  right: -20px;
  bottom: 0px;
}
@media (max-width: 479.98px) {
  .process__title::after {
    width: 81px;
    height: 8px;
    right: 0px;
    bottom: 15px;
  }
}
.process__body {
  display: grid;
  grid-template-columns: repeat(3, minmax(auto, 33.333%));
  column-gap: 30px;
}
@media (max-width: 767.98px) {
  .process__body {
    grid-template-columns: auto;
    row-gap: 24px;
    justify-content: center;
  }
}
.process__item {
  height: 480px;
  max-width: 400px;
}
@media (max-width: 479.98px) {
  .process__item {
    height: 340px;
  }
}

.item-process {
  background-color: rgb(57, 57, 83);
  position: relative;
  padding: 24px;
  z-index: 1;
  border-radius: 16px;
  transition: background-color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .item-process:hover {
    background-color: #4F4C64;
  }
}
.item-process__number {
  font-family: "Nanum Pen";
  font-size: 4rem;
  font-weight: 400;
  color: var(--text-icon-primary, #FFF);
}
.item-process__number:not(:last-child) {
  padding: 0px 0px 32px 0px;
}
@media (max-width: 479.98px) {
  .item-process__number {
    font-size: 3rem;
  }
  .item-process__number:not(:last-child) {
    padding: 0px 0px 16px 0px;
  }
}
.item-process__title {
  font-size: 1.5rem;
  color: var(--text-icon-primary, #FFF);
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: -0.0285rem;
}
.item-process__title:not(:last-child) {
  padding: 0px 0px 16px 0px;
}
.item-process__text {
  color: var(--text-icon-primary, #FFF);
  letter-spacing: -0.011rem;
}

.item-process_1 {
  transform: rotate(-1deg);
}
.item-process_1::after {
  content: "";
  z-index: 5;
  position: absolute;
  background: url(../img/home/decore/decore-process_arrow.svg) 0 0/100% no-repeat;
  width: 120px;
  height: 40px;
}
@media (min-width: 767.98px) {
  .item-process_1::after {
    top: -10px;
    right: -60px;
  }
}
@media (max-width: 767.98px) {
  .item-process_1::after {
    transform: rotate(90deg);
    bottom: -44px;
    left: 60px;
  }
}

.item-process_2 {
  transform: rotate(3deg);
  margin: 24px 0px 0px 0px;
  position: relative;
  z-index: 0;
}
.item-process_2::after {
  content: "";
  z-index: 1;
  position: absolute;
  background: url(../img/home/decore/decore-process_arrow.svg) 0 0/100% no-repeat;
  width: 120px;
  height: 40px;
  transform: rotateX(180deg);
}
@media (min-width: 767.98px) {
  .item-process_2::after {
    bottom: 0;
    right: -60px;
  }
}
@media (max-width: 767.98px) {
  .item-process_2::after {
    transform: rotate(270deg) rotateX(0deg) rotateY(180deg);
    bottom: -50px;
    left: 0px;
  }
}

.item-process_3 {
  transform: rotate(-2deg);
  position: relative;
  z-index: -1;
}

.letscreate {
  padding: 80px 24px;
}
@media (max-width: 991.98px) {
  .letscreate {
    padding: 80px 24px;
  }
}
@media (max-width: 767.98px) {
  .letscreate {
    padding: 60px 24px;
  }
}
@media (max-width: 479.98px) {
  .letscreate {
    padding: 55px 24px;
  }
}
.letscreate__container {
  border-radius: 16px;
  background: var(--gradient-brand, linear-gradient(322deg, #6966FF 0%, rgba(105, 102, 255, 0.36) 100%));
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}
.letscreate__sub-title {
  font-size: 1.125rem;
  color: var(--text-icon-primary, #FFF);
  line-height: 1.33;
  letter-spacing: -0.01575rem;
}
.letscreate__sub-title:not(:last-child) {
  padding: 0px 0px 8px 0px;
}
.letscreate__title:not(:last-child) {
  padding: 0px 0px 40px 0px;
}
.letscreate__button {
  padding: 12px 48px 12px 16px;
  background: var(--base-white, #FFF);
  display: inline-block;
  border-radius: 8px;
}
.letscreate__button::before {
  right: 18px;
}
.letscreate__button::after {
  display: none;
}
@media (any-hover: hover) {
  .letscreate__button:hover {
    background: var(--base-white, rgba(255, 255, 255, 0.8));
  }
}

.rfp__header:not(:last-child) {
  padding: 0px 0px 40px 0px;
}
@media (max-width: 479.98px) {
  .rfp__header:not(:last-child) {
    padding: 0px 0px 24px 0px;
  }
}
.rfp__title:not(:last-child) {
  padding: 0px 0px 24px 0px;
}
.tabs-rfp__nav:not(:last-child) {
  padding: 0px 0px 80px 0px;
}
@media (max-width: 479.98px) {
  .tabs-rfp__nav {
    column-gap: 10px;
  }
  .tabs-rfp__nav:not(:last-child) {
    padding: 0px 0px 40px 0px;
  }
}
.tabs-rfp__content {
  display: grid;
  row-gap: 24px;
}
.tabs-rfp__item {
  max-width: 808px;
  min-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  background-color: rgb(57, 57, 83);
  padding: 24px;
  border-radius: 15px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
@media (any-hover: hover) {
  .tabs-rfp__item:hover {
    background-color: #4F4C64;
  }
}
.tabs-rfp__item_funded .tabs-rfp__blank {
  border: 1px solid var(--border-subtle, #393953);
  background: var(--background-primary, #1C1C28);
}
.tabs-rfp__item_open .tabs-rfp__blank {
  background: var(--accent-brand, #6966FF);
}
.tabs-rfp__item_completed .tabs-rfp__blank {
  position: relative;
  background: var(--accent-green, #16B57F);
  padding-right: 40px;
}
.tabs-rfp__item_completed .tabs-rfp__blank::after {
  content: "";
  position: absolute;
  background: url(../img/discover/rfp/check.svg) 0 0 no-repeat;
  width: 16px;
  height: 16px;
  right: 15px;
  top: 7px;
}
.tabs-rfp__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 479.98px) {
  .tabs-rfp__header {
    flex-direction: column;
    align-items: start;
    row-gap: 16px;
  }
}
.tabs-rfp__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: -0.0285rem;
}
.tabs-rfp__blank {
  padding: 4px 16px;
  border-radius: 100px;
  color: var(--text-icon-primary, #FFF);
  letter-spacing: -0.011rem;
  display: flex;
  flex-direction: column;
  align-self: self-start;
}
.tabs-rfp__text {
  color: var(--text-icon-primary, #FFF);
  letter-spacing: -0.011rem;
  max-width: 643px;
}
.tabs-rfp__price {
  font-family: "Space Mono";
  color: var(--text-icon-secondary, #C8C7D8);
}

.fundedgrants__title {
  padding: 0px 0px 40px 0px;
}
.tabs-fundedgrants__body {
  padding: 80px 0px 80px 0px;
}
@media (max-width: 991.98px) {
  .tabs-fundedgrants__body {
    padding: 80px 0px 80px 0px;
  }
}
@media (max-width: 767.98px) {
  .tabs-fundedgrants__body {
    padding: 60px 0px 60px 0px;
  }
}
@media (max-width: 479.98px) {
  .tabs-fundedgrants__body {
    padding: 55px 0px 55px 0px;
  }
}
.tabs-fundedgrants__content {
  display: grid;
  grid-template-columns: minmax(auto, 33.333%) minmax(auto, 33.333%) minmax(auto, 33.333%);
  gap: 24px;
}
@media (max-width: 991.98px) {
  .tabs-fundedgrants__content {
    grid-template-columns: minmax(auto, 50%) minmax(auto, 50%);
  }
}
@media (max-width: 767.98px) {
  .tabs-fundedgrants__content {
    grid-template-columns: auto;
  }
}
.tabs-fundedgrants__item {
  height: 560px;
  display: grid;
  background-color: rgb(57, 57, 83);
  border-radius: 15px;
  row-gap: 8px;
}
.tabs-fundedgrants__item_image {
  grid-template-rows: 180px auto;
}
.tabs-fundedgrants__info {
  padding: 24px;
  display: grid;
  grid-template-rows: 24px minmax(32px, 55px) minmax(24px, 32px) auto 45px;
  justify-self: start;
}
.tabs-fundedgrants__image {
  background-color: rgb(40, 40, 56);
  border-radius: 15px;
}
.tabs-fundedgrants__sub-title {
  font-family: "Space Mono";
  color: var(--text-icon-tertiary, #A59EBA);
}
.tabs-fundedgrants__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: -0.0285rem;
}
.tabs-fundedgrants__price {
  font-family: "Space Mono";
  color: var(--text-icon-tertiary, #A59EBA);
}
.tabs-fundedgrants__text {
  padding-top: 16px;
  letter-spacing: -0.011rem;
  color: #fff;
}
.tabs-fundedgrants__avatars {
  display: flex;
}
.expenses__title:not(:last-child) {
  padding: 0px 0px 40px 0px;
}
@media (max-width: 479.98px) {
  .expenses__tab_nav {
    overflow-x: auto;
    justify-content: start;
  }
}
.tabs-expenses__body {
  padding: 80px 0px 80px 0px;
}
@media (max-width: 991.98px) {
  .tabs-expenses__body {
    padding: 80px 0px 80px 0px;
  }
}
@media (max-width: 767.98px) {
  .tabs-expenses__body {
    padding: 60px 0px 60px 0px;
  }
}
@media (max-width: 479.98px) {
  .tabs-expenses__body {
    padding: 55px 0px 55px 0px;
  }
}
.tabs-expenses__content {
  display: grid;
  row-gap: 24px;
  max-width: 808px;
  margin: 0 auto;
}
.tabs-expenses__item {
  min-width: 100%;
  padding: 24px;
  border-radius: 15px;
  background-color: rgb(40, 40, 56);
}
.tabs-expenses__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
}
.tabs-expenses__header:not(:last-child) {
  padding: 0px 0px 8px 0px;
}
.tabs-expenses__title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02125rem;
}
@media (max-width: 479.98px) {
  .tabs-expenses__title {
    font-size: 1rem;
  }
}
.tabs-expenses__sum {
  font-family: "Space Mono";
  color: var(--text-icon-primary, #FFF);
  padding: 0px 40px 0px 0px;
  position: relative;
}
.tabs-expenses__sum::before {
  content: "";
  position: absolute;
  background: url(../img/expenses/external-link.svg) no-repeat;
  width: 24px;
  height: 24px;
  right: 0;
  top: -2px;
}
.tabs-expenses__sub-title {
  font-family: "Space Mono";
  color: var(--text-icon-secondary, #C8C7D8);
}
@media (max-width: 479.98px) {
  .tabs-expenses__sub-title {
    font-size: 0.875rem;
  }
}
.tabs-expenses__sub-title:not(:last-child) {
  padding: 0px 0px 16px 0px;
}
.tabs-expenses__text {
  letter-spacing: -0.176px;
  color: #fff;
}
@media (max-width: 479.98px) {
  .tabs-expenses__text {
    font-size: 0.875rem;
  }
}

.blog__content {
  display: grid;
  max-width: 808px;
  margin: 0 auto;
  grid-template-columns: minmax(auto, 50%) minmax(auto, 50%);
  gap: 24px;
  justify-content: center;
  padding: 80px 0px 80px 0px;
}
@media (max-width: 991.98px) {
  .blog__content {
    padding: 80px 0px 80px 0px;
  }
}
@media (max-width: 767.98px) {
  .blog__content {
    padding: 60px 0px 60px 0px;
    grid-template-columns: auto;
  }
}
@media (max-width: 479.98px) {
  .blog__content {
    padding: 55px 0px 55px 0px;
  }
}
.blog__item {
  max-width: 392px;
}

.item-blog {
  background-color: rgb(57, 57, 83);
  border-radius: 15px;
}
.item-blog__image {
  overflow: hidden;
}
.item-blog__image img {
  border-radius: 16px;
  width: 100%;
}
.item-blog__content {
  padding: 24px;
}
.item-blog__sub-title {
  color: var(--text-icon-secondary, #C8C7D8);
  font-family: "Space Mono";
}
.item-blog__sub-title:not(:last-child) {
  padding: 0px 0px 8px 0px;
}
.item-blog__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.33;
}
.item-blog__title:not(:last-child) {
  padding: 0px 0px 80px 0px;
}
.item-blog__date {
  color: var(--text-icon-secondary, #C8C7D8);
  font-family: "Space Mono";
}

.faq__title:not(:last-child) {
  padding: 0px 0px 40px 0px;
}
.faq__spollers {
  padding: 80px 0px 80px 0px;
}
@media (max-width: 991.98px) {
  .faq__spollers {
    padding: 80px 0px 80px 0px;
  }
}
@media (max-width: 767.98px) {
  .faq__spollers {
    padding: 60px 0px 60px 0px;
    grid-template-columns: auto;
  }
}
@media (max-width: 479.98px) {
  .faq__spollers {
    padding: 55px 0px 55px 0px;
  }
}
.faq__block:not(:last-child) {
  padding: 0px 0px 80px 0px;
}

.block-faq__title {
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: -0.456px;
  font-size: 1.5rem;
  color: #fff;
}
.block-faq__title:not(:last-child) {
  padding: 0px 0px 40px 0px;
}
.spolers-faq__title {
  padding: 24px 40px 24px 0px;
  border-bottom: 1px solid var(--border-subtle, #393953);
  border-top: 1px solid var(--border-subtle, #393953);
  position: relative;
  width: 100%;
  text-align: left;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.33;
  letter-spacing: -0.01575rem;
  transition: all 0.3s ease 0s;
}
.spolers-faq__title::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: #fff;
  right: 5px;
  top: 36px;
}
.spolers-faq__title::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: #fff;
  right: 5px;
  top: 36px;
  transform: rotate(90deg);
  transition: all 0.2s ease 0s;
}
.spolers-faq__title._active::after {
  transform: rotate(0deg);
}
.spolers-faq__text {
  padding: 20px 0px;
}