.data-centers__container {
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .data-centers__container {
    padding-right: 32px;
    padding-left: 32px;
  }
}
@media only screen and (min-width: 1440px) {
  .data-centers__container {
    padding-right: 56px;
    padding-left: 56px;
  }
}
@media only screen and (min-width: 1920px) {
  .data-centers__container {
    padding-right: 164px;
    padding-left: 164px;
  }
}
.data-centers__title, .data-centers__description {
  padding-left: 16px;
  padding-right: 16px;
}
@media only screen and (min-width: 768px) {
  .data-centers__title, .data-centers__description {
    padding: 0;
  }
}
.data-centers__content {
  display: grid;
  grid-template-rows: auto auto;
  gap: 32px;
}
.data-centers__top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 90%;
}
@media only screen and (min-width: 768px) {
  .data-centers__top {
    max-width: 707px;
  }
}
@media only screen and (min-width: 1024px) {
  .data-centers__top {
    gap: 16px;
    max-width: 654px;
  }
}
.data-centers__description {
  font-size: 20px;
  line-height: 26px;
}
.data-centers__grid {
  display: grid;
  grid-template-columns: 17% auto;
  gap: 16px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .data-centers__grid {
    grid-template-columns: 100%;
  }
}
.data-centers__region-block {
  display: grid;
  align-content: start;
  gap: 8px;
  margin-top: 15px;
  padding-left: 16px;
  padding-right: 16px;
}
@media (max-width: 767px) {
  .data-centers__region-block {
    align-content: initial;
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  .data-centers__region-block {
    padding: 0;
  }
}
.data-centers__region {
  cursor: pointer;
  padding-bottom: 8px;
  border-bottom: 1px solid #d2d3d8;
}
.data-centers__region:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.data-centers__region-title {
  color: #7a7d8d;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.data-centers__region.active .data-centers__region-title, .data-centers__region:hover .data-centers__region-title, .data-centers__region:active .data-centers__region-title {
  color: #9000ed;
}
.data-centers__map-block {
  width: 768px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .data-centers__map-block {
    width: 100%;
  }
}
.data-centers__map-wrapper {
  position: relative;
  height: 550px;
}
@media only screen and (min-width: 768px) {
  .data-centers__map-wrapper {
    height: auto;
  }
}
.data-centers__map {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform ease 350ms;
  transition-delay: 550ms;
}
.data-centers__map_dark {
  display: none;
}
.data-centers__map__scale {
  transform: scale(1.7);
}
@media only screen and (min-width: 768px) {
  .data-centers__map__scale {
    transform: scale(1.5);
  }
}
.data-centers__points {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.data-centers__point-wrapper {
  position: relative;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  cursor: pointer;
}
.data-centers__point {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 4px;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  animation: fadeIn 0.3s ease-in;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 254, 255, 0.0509803922);
  border: 1px solid #d2d3d8;
}
.data-centers__point-wrapper.active .data-centers__point {
  border: 1px solid #fffeff;
  padding: 2px;
}
.data-centers__point-inside {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #7a7d8d;
  transition: all 0.3s ease;
}
.data-centers__point-wrapper:hover .data-centers__point-inside {
  background: #9000ed;
}
.data-centers__point-wrapper.active .data-centers__point-inside {
  width: 20px;
  height: 20px;
  background: #9000ed;
}
.data-centers__city-label {
  position: absolute;
  margin-left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #4a4f62;
}
@media (max-width: 1280px) {
  .data-centers__city-label {
    display: none;
  }
}
.data-centers__popup {
  display: grid;
  grid-template-rows: auto auto;
  position: absolute;
  transform: translate(-50px, -153px);
  background: rgba(255, 254, 255, 0.4);
  border: 1px solid #e8e9eb;
  box-shadow: 2px 4px 20px 0px rgba(144, 0, 237, 0.1019607843);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px;
  border-radius: 16px;
  z-index: 9999;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 767px) {
  .data-centers__popup {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    border-radius: 16px 16px 0 0;
    background: #fffeff;
    box-shadow: 0px 8px 16px 0px rgba(96, 46, 132, 0.15);
    border: none;
  }
}
.data-centers__popup.show {
  opacity: 1;
  transform: translate(-50px, -159px);
  pointer-events: auto;
  cursor: default;
}
@media (max-width: 1024px) {
  .data-centers__popup.show {
    transform: translate(-35%, -159px);
  }
}
@media (max-width: 767px) {
  .data-centers__popup.show {
    transform: none;
  }
}
.data-centers__popup.show.bottom {
  transform: translate(-50px, 19px);
}
@media (max-width: 1024px) {
  .data-centers__popup.show.bottom {
    transform: translate(-35%, 19px);
  }
}
@media (max-width: 767px) {
  .data-centers__popup.show.bottom {
    transform: none;
  }
}
.data-centers__popup.show.left {
  transform: translate(-50px, 19px);
}
@media (max-width: 1024px) {
  .data-centers__popup.show.left {
    transform: translate(-110%, -50%);
  }
}
@media (max-width: 767px) {
  .data-centers__popup.show.left {
    transform: none;
  }
}
.data-centers__popup.show.right {
  transform: translate(-50px, 19px);
}
@media (max-width: 1024px) {
  .data-centers__popup.show.right {
    transform: translate(10%, -50%);
  }
}
@media (max-width: 767px) {
  .data-centers__popup.show.right {
    transform: none;
  }
}
.data-centers__popup-header {
  display: none;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .data-centers__popup-header {
    display: flex;
  }
}
.data-centers__popup-close {
  display: block;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.data-centers__popup__top-block {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: start;
  gap: 8px;
  padding: 8px;
  border-bottom: 1px solid #d2d3d8;
}
.data-centers__popup__top-block img {
  width: 24px;
  height: 24px;
}
.data-centers__popup__bottom-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: start;
  gap: 8px;
  width: 100%;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
html.dark .data-centers__map_light {
  display: none;
}
html.dark .data-centers__map_dark {
  display: block;
}
html.dark .data-centers__point-inside {
  background: rgba(255, 254, 255, 0.7);
}
html.dark .data-centers__point {
  background: transparent;
  border-color: rgba(255, 254, 255, 0.2);
}
html.dark .data-centers__city-label {
  color: rgba(255, 254, 255, 0.8);
}
html.dark .data-centers__popup {
  background: rgba(255, 254, 255, 0.4);
  color: #fffeff;
  border: 1px solid rgba(255, 254, 255, 0.2);
  box-shadow: 0px 0px 16px rgba(144, 0, 237, 0.1), 2px 4px 20px rgba(144, 0, 237, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 767px) {
  html.dark .data-centers__popup {
    background: #1d233b;
    border: none;
  }
}
html.dark .data-centers__popup__top-block {
  border-color: rgba(255, 254, 255, 0.2);
}
.reviews {
  overflow: hidden;
}
.reviews__box-position {
  display: flex;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  overflow-x: visible;
}
.reviews__top-block {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .reviews__top-block {
    flex-direction: column;
    gap: 16px;
    align-items: start;
  }
}
.reviews__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid #e8e9eb;
  line-height: 1;
}
.reviews__pagination.swiper-pagination_custom {
  position: relative;
  width: auto;
  margin-left: auto;
}
.reviews__slider {
  overflow: visible;
}
.reviews__slider.swiper_custom {
  margin-right: 0;
}
.reviews__slider .swiper-wrapper {
  height: auto !important;
}
.reviews__slider .swiper-slide {
  cursor: grab;
}
.reviews__slider .swiper-slide:active {
  cursor: grabbing;
}
.review-card {
  display: flex;
  flex-direction: column;
  justify-items: start;
  gap: 8px;
  width: 100%;
  height: 100%;
  max-width: 400px;
  min-height: 240px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(29, 35, 59, 0.05);
  border: 1px solid #d2d3d8;
  position: relative;
  transition-property: transform;
}
.review-card__first-block {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
}
.review-card__title {
  display: grid;
  gap: 2px;
}
.review-card__source {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fffeff;
  position: relative;
  color: currentColor;
  text-decoration: none;
}
.review-card__img, .review-card__icn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.review-card__img {
  width: 24px;
  height: 24px;
  z-index: 1;
  opacity: 1;
}
.review-card__icn {
  width: 12px;
  height: 12px;
  z-index: -1;
  opacity: 0;
}
.review-card:hover .review-card__img {
  z-index: -1;
  opacity: 0;
}
.review-card:hover .review-card__icn {
  z-index: 1;
  opacity: 1;
}
.review-card__text {
  max-height: 200px;
  -webkit-line-clamp: 4;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.review-card__text.isActive {
  overflow: auto;
}
.review-card__stars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 8px;
  align-self: start;
  margin-top: auto;
}
.review-card__button {
  width: fit-content;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  color: #7a7d8d;
  font-family: "Proxima Nova", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
  text-decoration: underline;
  cursor: pointer;
}
html.dark .reviews__rating {
  background: rgba(255, 254, 255, 0.05);
  border-color: rgba(255, 254, 255, 0.1);
}
html.dark .review-card {
  background: rgba(255, 254, 255, 0.05);
  border-color: rgba(255, 254, 255, 0.1);
}
html.dark .review-card__source {
  background: rgba(255, 254, 255, 0.05);
}
html.dark .review-card__button {
  background: none;
  border: none;
  outline: none;
  color: rgba(255, 254, 255, 0.7);
}
.img-star {
  max-width: 20px;
  max-height: 20px;
}
.reviews-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: end;
  justify-content: center;
  width: 100vw;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 1024px) {
  .reviews-overlay {
    align-items: center;
  }
}
.reviews-overlay.isOpen {
  opacity: 1;
  pointer-events: auto;
}
.reviews-overlay.isOpen > .reviews-modal {
  transform: translateY(0);
}
.reviews-modal {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 95%;
  background: #fffeff;
  border-radius: 16px 16px 0px 0px;
  box-shadow: 0px 8px 16px 0px rgba(96, 46, 132, 0.15);
  transform: translateY(110%);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 1024px) {
  .reviews-modal {
    width: 75vw;
    max-height: 75vh;
    border-radius: 16px 16px 16px 16px;
  }
}
@media only screen and (min-width: 1440px) {
  .reviews-modal {
    width: 50vw;
    max-height: 60vh;
    border-radius: 16px 16px 16px 16px;
  }
}
.reviews-modal__header {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-bottom: 8px;
}
.reviews-modal__header__close {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
.reviews-modal__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: calc(100% - 153px);
  padding-right: 16px;
  padding-left: 16px;
  margin-bottom: 16px;
  flex: 1;
}
@media only screen and (min-width: 1024px) {
  .reviews-modal__content {
    padding-right: 48px;
    padding-left: 48px;
    margin-bottom: 48px;
    max-height: calc(100% - 100px);
  }
}
.reviews-modal__content__spacer {
  width: 100%;
  height: 1px;
  background-color: #e8e9eb;
}
.reviews-modal__content__info {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
}
.reviews-modal__content__title {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 2;
  color: #1d233b;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.48px;
}
.reviews-modal__content__date {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
  color: #a5a7b1;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
}
.reviews-modal__content__img {
  position: relative;
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(29, 35, 59, 0.05);
}
.reviews-modal__content__img:hover .reviews-modal__content__logo {
  opacity: 0;
  z-index: -1;
}
.reviews-modal__content__img:hover .reviews-modal__content__icon {
  opacity: 1;
  z-index: 1;
}
.reviews-modal__content__logo {
  position: relative;
  z-index: 1;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.reviews-modal__content__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  opacity: 0;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.reviews-modal__content__icon path {
  stroke: #090909;
}
.reviews-modal__content__message {
  overflow-y: auto;
}
@media only screen and (min-width: 1024px) {
  .reviews-modal__content__message {
    flex: 1;
  }
}
.reviews-modal__content__text {
  color: #4a4f62;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
}
.reviews-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid #fffeff;
}
@media only screen and (min-width: 1024px) {
  .reviews-modal__footer {
    border-top: none;
    padding: 0;
  }
}
.reviews-modal__footer__prev, .reviews-modal__footer__next {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px;
  background: none;
  border: none;
  outline: none;
  color: #1d233b;
  font-family: "Proxima Nova", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.48px;
  cursor: pointer;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.reviews-modal__footer__prev.disabled, .reviews-modal__footer__next.disabled {
  cursor: default;
  opacity: 0.4;
}
.reviews-modal__footer__prev:not(.disabled):hover, .reviews-modal__footer__next:not(.disabled):hover {
  color: #9000ed;
}
.reviews-modal__footer__prev:not(.disabled):hover .reviews-modal__footer__icon, .reviews-modal__footer__next:not(.disabled):hover .reviews-modal__footer__icon {
  stroke: #9000ed;
}
@media only screen and (min-width: 1024px) {
  .reviews-modal__footer__prev, .reviews-modal__footer__next {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: #1d233b;
    border-radius: 50%;
  }
}
@media only screen and (min-width: 1024px) {
  .reviews-modal__footer__prev {
    top: 50%;
    left: 0;
    transform: translate(-56px, -50%);
  }
  .reviews-modal__footer__next {
    top: 50%;
    right: 0;
    transform: translate(56px, -50%);
  }
  .reviews-modal__footer__icon {
    stroke: #fffeff;
  }
}
.reviews-modal__footer__text {
  display: block;
}
@media only screen and (min-width: 1024px) {
  .reviews-modal__footer__text {
    display: none;
  }
}
.reviews-modal__footer .reviews-modal__footer__icon {
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
html.dark .reviews-modal {
  background: #1d233b;
}
html.dark .reviews-modal__icon {
  stroke: #fffeff;
}
html.dark .reviews-modal__content__spacer {
  background-color: rgba(255, 254, 255, 0.1);
}
html.dark .reviews-modal__content__title {
  color: #fffeff;
}
html.dark .reviews-modal__content__date {
  color: rgba(255, 254, 255, 0.4);
}
html.dark .reviews-modal__content__img {
  background: rgba(255, 254, 255, 0.05);
}
html.dark .reviews-modal__content__icon path {
  stroke: #fffeff;
}
html.dark .reviews-modal__content__text {
  color: rgba(255, 254, 255, 0.8);
}
html.dark .reviews-modal__footer {
  border-top: 1px solid rgba(255, 254, 255, 0.2);
}
@media only screen and (min-width: 1024px) {
  html.dark .reviews-modal__footer {
    border-top: none;
  }
}
html.dark .reviews-modal__footer__prev, html.dark .reviews-modal__footer__next {
  color: #fffeff;
}
html.dark .reviews-modal__footer__prev:not(.disabled):hover, html.dark .reviews-modal__footer__next:not(.disabled):hover {
  color: #9000ed;
}
html.dark .reviews-modal__footer__prev:not(.disabled):hover .reviews-modal__footer__icon, html.dark .reviews-modal__footer__next:not(.disabled):hover .reviews-modal__footer__icon {
  stroke: #9000ed;
}
@media only screen and (min-width: 1024px) {
  html.dark .reviews-modal__footer__prev, html.dark .reviews-modal__footer__next {
    background: rgba(255, 254, 255, 0.2);
  }
}
html.dark .reviews-modal__footer__icon {
  stroke: #fffeff;
}
.our-expertise__content {
  display: grid;
  gap: 32px;
}
.our-expertise__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 1024px) {
  .our-expertise__grid {
    grid-template-columns: 100%;
  }
}
.expertise-card {
  display: grid;
  gap: 16px;
  align-content: start;
}
@media (max-width: 1024px) {
  .expertise-card {
    border-bottom: 1px solid #d2d3d8;
    padding-bottom: 32px;
  }
  .expertise-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.expertise-card__title {
  border-bottom: 1px solid #d2d3d8;
  padding-bottom: 16px;
}
@media (max-width: 1024px) {
  .expertise-card__title {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.expertise-card__descr {
  display: grid;
  justify-items: start;
  gap: 8px;
}
html.dark .expertise-card {
  border-color: rgba(255, 254, 255, 0.2);
}
html.dark .expertise-card__title {
  border-color: rgba(255, 254, 255, 0.2);
}
@media (max-width: 767px) {
  .product-card .container {
    padding: 0;
  }
}
.product-card__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 767px) {
  .product-card__content {
    grid-template-columns: 100%;
    text-align: center;
  }
}
.product-card__block {
  display: grid;
  grid-template-rows: 165px 1fr;
  gap: 24px;
  border-radius: 22px;
  padding: 48px;
}
@media (max-width: 1280px) {
  .product-card__block {
    padding: 32px;
  }
}
@media (max-width: 767px) {
  .product-card__block {
    padding: 24px;
  }
}
.product-card__block_filled {
  background: linear-gradient(180deg, rgba(214, 215, 251, 0.2) 0%, rgba(90, 81, 194, 0.2) 100%);
  border: 1px solid #e8e9eb;
}
.product-card__info {
  display: grid;
  gap: 32px;
}
.product-card__info-top {
  display: grid;
  gap: 8px;
}
.product-card__info-bottom {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
  gap: 8px;
}
@media (max-width: 1024px) {
  .product-card__info-bottom {
    grid-template-columns: 100%;
  }
}
.product-card__image-container {
  position: relative;
  width: fit-content;
  height: fit-content;
  padding-left: 20px;
  background: radial-gradient(circle, rgba(144, 0, 237, 0.25) 0%, rgba(151, 71, 255, 0) 70%);
}
@media (max-width: 767px) {
  .product-card__image-container {
    padding: 0;
    margin: auto;
  }
}
.product-card__img_mirrored {
  width: 100%;
  max-height: 43px;
  object-fit: cover;
  filter: blur(6px);
  top: 100%;
}
html.dark .product-card__block_filled {
  border-color: rgba(255, 254, 255, 0.1);
  background: linear-gradient(180deg, rgba(214, 215, 251, 0.15) 0%, rgba(90, 81, 194, 0.15) 100%);
}
.faq__content {
  display: grid;
  gap: 32px;
}
.faq__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 1024px) {
  .faq__list {
    grid-template-columns: 100%;
  }
}
.faq__list-content {
  display: block;
}
.faq__col {
  display: grid;
  grid-template-columns: 100%;
  align-items: start;
  align-content: start;
  gap: 16px;
}
.faq__card {
  display: none;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid #e8e9eb;
  position: relative;
  overflow: hidden;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  height: fit-content;
}
@media (max-width: 1024px) {
  .faq__card {
    border: none;
    border-bottom: 1px solid #e8e9eb;
    border-radius: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .faq__card {
    display: block;
  }
}
.faq__card.show {
  display: block;
}
.faq__tab {
  display: flex;
  width: 100%;
  align-items: center;
}
.faq__btn {
  width: 48px;
  height: 48px;
  padding: 14px;
  border-radius: 50%;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: auto;
}
.faq__btn:hover {
  background: #e8e9eb;
}
@media (max-width: 1024px) {
  .faq__btn:hover {
    background: transparent;
  }
}
.faq__btn:active {
  background: none;
}
.faq__btn.isActive {
  transform: rotate(45deg);
}
@media (max-width: 1024px) {
  .faq__btn.isActive {
    transform: none;
  }
  .faq__btn.isActive svg {
    display: none;
  }
  .faq__btn.isActive::before {
    content: " ";
    width: 12px;
    height: 1px;
    display: inline-block;
    background: #9000ed;
    line-height: 1;
  }
}
.faq__description {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
}
.faq__description.isVisible {
  opacity: 1;
  transform: translateY(0);
  margin: 10px 0;
}
html.dark .faq__card {
  border-color: rgba(255, 254, 255, 0.1);
  background-color: rgba(255, 254, 255, 0.05);
}
@media (max-width: 1024px) {
  html.dark .faq__card {
    background-color: transparent;
  }
}
.faq__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border: none;
  margin-top: 32px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: #1d233b;
  background-color: inherit;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__more:hover {
  color: #9000ed;
}
@media only screen and (min-width: 768px) {
  .faq__more {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .faq__more {
    display: none;
  }
}
html.dark .faq__more {
  color: #fffeff;
}
html.dark .faq_more:hover {
  color: #a85bf6;
}
.features--vps {
  position: relative;
  background-color: #fffeff;
}
.features__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .features__list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 1024px) {
  .features__list {
    flex-wrap: nowrap;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1440px) {
  .features__list {
    max-width: fit-content;
  }
}
.features__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #d2d3d8;
  background-color: rgba(29, 35, 59, 0.05);
}
@media only screen and (min-width: 768px) {
  .features__item {
    width: calc(50% - 8px);
  }
}
@media only screen and (min-width: 1024px) {
  .features__item {
    width: 100%;
  }
}
@media only screen and (min-width: 1440px) {
  .features__item {
    width: 264px;
  }
}
@media only screen and (min-width: 1920px) {
  .features__item {
    width: 319px;
  }
}
.features__item__title {
  color: #4a4f62;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.48px;
  text-align: center;
}
.features__item svg path {
  stroke: #9000ed;
}
.features__icon {
  width: 32px;
  height: 32px;
  background-size: cover;
  background-position: center;
}
.features__icon--dark {
  display: none;
}
html.dark .features--vps {
  background-color: #1d233b;
}
html.dark .features__list {
  background-color: #1d233b;
}
html.dark .features__item {
  border: 1px solid rgba(255, 254, 255, 0.1);
  background-color: rgba(255, 254, 255, 0.05);
}
html.dark .features__item__title {
  color: rgba(255, 254, 255, 0.8);
}
html.dark .features__item svg path {
  stroke: #a85bf6;
}
html.dark .features__icon {
  display: none;
}
html.dark .features__icon--dark {
  display: block;
}
.features-second__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 16px;
  grid-column-gap: 8px;
}
@media only screen and (min-width: 768px) {
  .features-second__list {
    grid-row-gap: 24px;
    grid-column-gap: 24px;
  }
}
@media only screen and (min-width: 1024px) {
  .features-second__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 40px;
  }
}
.features-second__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 148px;
  border-radius: 22px;
  background: #FFFEFF;
  box-shadow: 0 0 16px 0 rgba(144, 0, 237, 0.1), 2px 4px 20px 0px rgba(144, 0, 237, 0.1);
}
@media only screen and (min-width: 768px) {
  .features-second__item {
    height: auto;
    padding: 24px;
  }
}
.features-second__item__title {
  color: #9000ED;
  text-align: center;
  font-size: 64px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: 1.28px;
}
.features-second__item__descr {
  display: flex;
  flex-direction: column;
  color: #7A7D8D;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
}
@media only screen and (min-width: 768px) {
  .features-second__item__descr {
    flex-direction: row;
  }
}
html.dark .features-second__item {
  box-shadow: 0 2px 18px 0 rgba(151, 71, 255, 0.5);
  background-color: #1D233B;
}
html.dark .features-second__item__title {
  color: #A85BF6;
}
html.dark .features-second__item__descr {
  color: rgba(255, 254, 255, 0.7);
}
.cases {
  color: #1d233b;
  margin-bottom: 0;
  padding-bottom: 104px;
}
@media only screen and (min-width: 1440px) {
  .cases {
    padding-bottom: 120px;
  }
}
.cases__title {
  margin-bottom: 32px;
}
.cases__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media only screen and (min-width: 1024px) {
  .cases__body {
    flex-direction: row;
    gap: 16px;
  }
}
.cases__lists {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}
@media only screen and (min-width: 768px) {
  .cases__lists {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1024px) {
  .cases__lists {
    flex-shrink: 0;
    width: 620px;
  }
}
@media only screen and (min-width: 1200px) {
  .cases__lists {
    padding: 16px 0;
    width: 690px;
  }
}
@media only screen and (min-width: 1440px) {
  .cases__lists {
    width: 880px;
  }
}
@media only screen and (min-width: 1920px) {
  .cases__lists {
    width: fit-content;
  }
}
.cases__lists--game {
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  .cases__lists--game {
    padding: 16px 0;
  }
}
@media only screen and (min-width: 1440px) {
  .cases__lists--game {
    width: 767px;
  }
}
@media only screen and (min-width: 1920px) {
  .cases__lists--game {
    width: fit-content;
  }
  .cases__lists--game .cases__list {
    width: 386px;
  }
}
@media only screen and (min-width: 1440px) {
  .cases__lists--vps {
    width: 768px;
    gap: 40px;
  }
  .cases__lists--vps .cases__list {
    width: fit-content;
  }
}
@media only screen and (min-width: 1920px) {
  .cases__lists--vps {
    width: 920px;
  }
}
.cases__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .cases__list {
    width: 100%;
    gap: 24px;
  }
}
@media only screen and (min-width: 1024px) {
  .cases__list {
    gap: 32px;
  }
}
@media only screen and (min-width: 1920px) {
  .cases__list {
    width: 520px;
    flex-shrink: 0;
  }
}
.cases__item {
  display: flex;
  gap: 8px;
}
.cases__item svg {
  flex-shrink: 0;
}
.cases__label {
  font-size: 18px;
  line-height: 24px;
}
@media only screen and (min-width: 1024px) {
  .cases__label {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
html.dark .cases {
  color: #fffeff;
}
html.dark .cases__spot {
  background-color: #7318F2;
}
.backup-cases__picture {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 328px;
  height: 186.96px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .backup-cases__picture {
    display: none;
    margin: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .backup-cases__picture {
    display: flex;
    width: 100%;
    height: auto;
    margin-bottom: 16px;
  }
}
.backup-cases__spot {
  position: absolute;
  top: -46px;
  left: 100px;
  transform: rotate(69.162deg);
  width: 147.524px;
  height: 313.348px;
  border-radius: 313.348px;
  opacity: 0.3;
  background-color: #6418F2;
  filter: blur(56.060092926px);
}
@media only screen and (min-width: 1024px) {
  .backup-cases__spot {
    top: 0;
    width: 200.355px;
    height: 425.564px;
    border-radius: 425.564px;
    filter: blur(76.1363677979px);
  }
}
@media only screen and (min-width: 1440px) {
  .backup-cases__spot {
    left: 180px;
  }
}
@media only screen and (min-width: 1920px) {
  .backup-cases__spot {
    top: 16px;
  }
}
.backup-cases__screen {
  position: relative;
  width: 138px;
  height: 141px;
  margin-bottom: -16px;
}
@media only screen and (min-width: 1024px) {
  .backup-cases__screen {
    width: 213.18px;
    height: 218.89px;
    margin-bottom: -30px;
  }
}
@media only screen and (min-width: 1920px) {
  .backup-cases__screen {
    width: 260.386px;
    height: 266.479px;
    margin-bottom: -36px;
  }
}
.backup-cases__big-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  height: 130px;
}
@media only screen and (min-width: 1024px) {
  .backup-cases__big-img {
    width: 169.579px;
    height: 200.751px;
  }
}
@media only screen and (min-width: 1920px) {
  .backup-cases__big-img {
    width: 207.091px;
    height: 245.159px;
  }
}
.backup-cases__small-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 94px;
  height: 112px;
}
@media only screen and (min-width: 1024px) {
  .backup-cases__small-img {
    width: 144.641px;
    height: 173.319px;
  }
}
@media only screen and (min-width: 1920px) {
  .backup-cases__small-img {
    width: 176.636px;
    height: 211.659px;
  }
}
.backup-cases__mirror {
  position: relative;
  width: 129.745px;
  height: 33.838px;
}
@media only screen and (min-width: 1024px) {
  .backup-cases__mirror {
    width: 200.679px;
    height: 62.354px;
  }
}
@media only screen and (min-width: 1920px) {
  .backup-cases__mirror {
    width: 260.386px;
    height: 72px;
  }
}
.backup-cases__big-shadow {
  position: absolute;
  top: 0;
  right: 0;
  height: 25.226px;
  width: 104.324px;
  filter: blur(6.3511338234px);
}
@media only screen and (min-width: 1024px) {
  .backup-cases__big-shadow {
    width: 149px;
    height: auto;
  }
}
@media only screen and (min-width: 1920px) {
  .backup-cases__big-shadow {
    width: 180px;
  }
}
.backup-cases__small-shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 21.518px;
  width: 94.875px;
  filter: blur(6.3511338234px);
}
@media only screen and (min-width: 1024px) {
  .backup-cases__small-shadow {
    width: 124px;
    height: auto;
  }
}
@media only screen and (min-width: 1920px) {
  .backup-cases__small-shadow {
    width: 156px;
  }
}
html.dark .backup-cases__spot {
  background-color: #7318F2;
}
.cloud-cases__picture {
  position: relative;
  width: 328px;
  height: 186px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .cloud-cases__picture {
    display: none;
    margin: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .cloud-cases__picture {
    display: block;
    width: 100%;
    height: auto;
  }
}
.cloud-cases__spot {
  position: absolute;
  top: -46px;
  left: 100px;
  transform: rotate(69.162deg);
  width: 129.327px;
  height: 274.698px;
  border-radius: 274.698px;
  opacity: 0.3;
  background-color: #6418F2;
  filter: blur(29.1091346741px);
}
@media only screen and (min-width: 1024px) {
  .cloud-cases__spot {
    top: -100px;
    width: 244.605px;
    height: 519.554px;
    border-radius: 519.554px;
    filter: blur(55.0560188293px);
  }
}
@media only screen and (min-width: 1440px) {
  .cloud-cases__spot {
    left: 108px;
  }
}
.cloud-cases__img {
  position: absolute;
  top: 29px;
  left: 76px;
  width: 157.029px;
  height: 127.95px;
}
@media only screen and (min-width: 1024px) {
  .cloud-cases__img {
    top: 32px;
    left: 0;
    width: 297px;
    height: 242px;
  }
}
@media only screen and (min-width: 1440px) {
  .cloud-cases__img {
    left: 94px;
  }
}
.dedicated-cases__picture {
  position: relative;
  width: 328px;
  height: 313px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .dedicated-cases__picture {
    display: none;
    margin: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .dedicated-cases__picture {
    display: block;
    width: 100%;
    height: auto;
  }
}
.dedicated-cases__spot {
  position: absolute;
  top: 36px;
  left: 29px;
  transform: rotate(63.081deg);
  width: 212px;
  height: 262px;
  border-radius: 261px;
  opacity: 0.3;
  background-color: #6418F2;
  filter: blur(40.3221092224px);
}
@media only screen and (min-width: 1024px) {
  .dedicated-cases__spot {
    width: 300px;
    height: 340px;
  }
}
@media only screen and (min-width: 1200px) {
  .dedicated-cases__spot {
    top: 0;
    left: 48px;
    width: 346px;
    height: 428px;
    border-radius: 428px;
  }
}
@media only screen and (min-width: 1920px) {
  .dedicated-cases__spot {
    width: 372px;
    height: 460px;
    border-radius: 460px;
  }
}
.dedicated-cases__img {
  position: absolute;
  top: 36px;
  left: 29px;
  width: 244px;
  height: 244px;
}
@media only screen and (min-width: 1024px) {
  .dedicated-cases__img {
    left: 0;
    width: 324px;
    height: 324px;
  }
}
@media only screen and (min-width: 1200px) {
  .dedicated-cases__img {
    top: 0;
    width: 431px;
    height: 431px;
  }
}
@media only screen and (min-width: 1920px) {
  .dedicated-cases__img {
    width: 463px;
    height: 463px;
  }
}
html.dark .dedicated-cases__spot {
  background-color: #7318F2;
}
.server-cases__picture {
  position: relative;
  width: 328px;
  height: 189.862px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .server-cases__picture {
    display: none;
    margin: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .server-cases__picture {
    display: block;
    width: 100%;
    height: auto;
  }
}
.server-cases__spot {
  position: absolute;
  top: -46px;
  left: 100px;
  transform: rotate(69.162deg);
  width: 133.261px;
  height: 278.665px;
  border-radius: 278.665px;
  opacity: 0.3;
  background-color: #6418F2;
  filter: blur(29.1091346741px);
}
@media only screen and (min-width: 1024px) {
  .server-cases__spot {
    top: -66px;
    width: 211.267px;
    height: 441.786px;
    border-radius: 441.786px;
    filter: blur(63.0488395691px);
  }
}
@media only screen and (min-width: 1920px) {
  .server-cases__spot {
    top: -140px;
    left: 180px;
    width: 282.809px;
    height: 591.389px;
    border-radius: 591.389px;
  }
}
.server-cases__img {
  position: absolute;
  top: 0;
  left: 49.92px;
  width: 213.2px;
  height: 213.2px;
}
@media only screen and (min-width: 1024px) {
  .server-cases__img {
    left: 0;
    width: 338px;
    height: 338px;
  }
}
@media only screen and (min-width: 1440px) {
  .server-cases__img {
    left: 79.13px;
  }
}
@media only screen and (min-width: 1920px) {
  .server-cases__img {
    top: -81px;
    width: 456px;
    height: 456px;
  }
}
.gpu-cases__picture {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 328px;
  height: 219.171px;
  margin: 0 auto;
  padding-top: 9px;
}
@media only screen and (min-width: 768px) {
  .gpu-cases__picture {
    display: none;
    margin: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .gpu-cases__picture {
    display: flex;
    width: 100%;
    height: auto;
    padding-top: 12px;
  }
}
@media only screen and (min-width: 1920px) {
  .gpu-cases__picture {
    padding: 0;
  }
}
.gpu-cases__spot {
  position: absolute;
  left: 100px;
  top: -64px;
  transform: rotate(69.162deg);
  width: 166.139px;
  height: 352.888px;
  border-radius: 352.888px;
  opacity: 0.3;
  background-color: #6418F2;
  filter: blur(53.6245956421px);
}
@media only screen and (min-width: 1024px) {
  .gpu-cases__spot {
    width: 219.83px;
    height: 466.931px;
    border-radius: 466.931px;
    filter: blur(70.9544906616px);
  }
}
@media only screen and (min-width: 1920px) {
  .gpu-cases__spot {
    width: 251.618px;
    height: 534.451px;
    filter: blur(81.2147064209px);
    left: 180px;
    top: -140px;
  }
}
.gpu-cases__img {
  position: relative;
  z-index: 1;
  width: 202.252px;
  height: 182.324px;
}
@media only screen and (min-width: 1024px) {
  .gpu-cases__img {
    width: 267.614px;
    height: 241.245px;
  }
}
@media only screen and (min-width: 1920px) {
  .gpu-cases__img {
    width: 306.312px;
    height: 276.13px;
    margin-top: -32px;
  }
}
.gpu-cases__shadow {
  position: absolute;
  top: 140px;
  left: 50%;
  transform: translate(-50%);
  z-index: 0;
  height: 76.745px;
  width: 142.069px;
  filter: blur(5.3624591827px);
  object-fit: cover;
}
@media only screen and (min-width: 1024px) {
  .gpu-cases__shadow {
    top: 188px;
    width: 187.982px;
    height: 101.546px;
  }
}
@media only screen and (min-width: 1920px) {
  .gpu-cases__shadow {
    top: 170px;
    width: 215px;
    height: 116px;
  }
}
html.dark .gpu-cases__spot {
  background-color: #7318F2;
}
.nl-cases__picture {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 328px;
  height: 208px;
  margin: 0 auto;
  padding-top: 28px;
}
@media only screen and (min-width: 768px) {
  .nl-cases__picture {
    display: none;
    margin: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .nl-cases__picture {
    display: flex;
    width: 100%;
    max-width: 544px;
    height: auto;
    padding-top: 35.8px;
  }
}
@media only screen and (min-width: 1920px) {
  .nl-cases__picture {
    padding-top: 43px;
    max-width: none;
  }
}
.nl-cases__spot {
  position: absolute;
  top: -8px;
  transform: rotate(-114.95deg);
  width: 142.375px;
  height: 280.105px;
  border-radius: 280.105px;
  opacity: 0.3;
  background-color: #6418F2;
  filter: blur(48.9084014893px);
}
@media only screen and (min-width: 1024px) {
  .nl-cases__spot {
    width: 204.061px;
    height: 401.464px;
    border-radius: 401.464px;
    filter: blur(70.0986328125px);
  }
}
@media only screen and (min-width: 1440px) {
  .nl-cases__spot {
    top: -16px;
  }
}
@media only screen and (min-width: 1920px) {
  .nl-cases__spot {
    width: 245.122px;
    height: 482.246px;
    filter: blur(84.2038421631px);
  }
}
.nl-cases__img {
  position: relative;
  z-index: 1;
  width: 184.705px;
  height: 163.795px;
}
@media only screen and (min-width: 1024px) {
  .nl-cases__img {
    width: 264.731px;
    height: 234.761px;
  }
}
@media only screen and (min-width: 1920px) {
  .nl-cases__img {
    width: 318px;
    height: 282px;
  }
}
.game-cases__picture {
  position: relative;
  width: 328px;
  height: 188px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .game-cases__picture {
    display: none;
    margin: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .game-cases__picture {
    display: block;
    width: 100%;
    height: 292px;
  }
}
.game-cases__spot {
  position: absolute;
  left: 94px;
  top: -46px;
  transform: rotate(-103.194deg);
  width: 135.883px;
  height: 318.529px;
  border-radius: 318.529px;
  opacity: 0.3;
  background: #6418F2;
  filter: blur(54.2610206604px);
}
@media only screen and (min-width: 1024px) {
  .game-cases__spot {
    top: -64px;
    width: 210.867px;
    height: 494.303px;
    border-radius: 494.303px;
    filter: blur(84.2038421631px);
  }
}
@media only screen and (min-width: 1440px) {
  .game-cases__spot {
    left: 138px;
  }
}
@media only screen and (min-width: 1920px) {
  .game-cases__spot {
    left: 275px;
  }
}
.game-cases__img {
  position: absolute;
  top: 0;
  left: 87.6px;
  width: 150.764px;
  height: 171.465px;
}
@media only screen and (min-width: 1024px) {
  .game-cases__img {
    width: 233.96px;
    height: 266.084px;
  }
}
@media only screen and (min-width: 1440px) {
  .game-cases__img {
    left: 135px;
  }
}
@media only screen and (min-width: 1920px) {
  .game-cases__img {
    left: 275px;
  }
}
.vps-cases__picture {
  position: relative;
  display: flex;
  justify-content: center;
  margin-right: -16px;
  margin-left: -16px;
  padding-top: 13.32px;
  border-radius: 22px;
  height: 172.059px;
  background: linear-gradient(180deg, rgba(144, 0, 237, 0.04) 0%, rgba(151, 71, 255, 0) 100%), linear-gradient(180deg, rgba(214, 215, 251, 0.08) 0%, rgba(90, 81, 194, 0.08) 100%);
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .vps-cases__picture {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .vps-cases__picture {
    display: flex;
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
    width: 100%;
    height: 260px;
  }
}
.vps-cases__spot {
  position: absolute;
  top: -98px;
  transform: rotate(-53.468deg);
  width: 125.66px;
  height: 354.209px;
  border-radius: 354.209px;
  opacity: 0.2;
  background: #4B18F2;
  filter: blur(49.6323509216px);
}
@media only screen and (min-width: 1024px) {
  .vps-cases__spot {
    transform: rotate(-53.468deg) translateX(20%);
    width: 189.886px;
    height: 535.25px;
    border-radius: 535.25px;
    filter: blur(75px);
  }
}
.vps-cases__img {
  width: 107.206px;
  height: 150.882px;
  margin-right: -4px;
}
@media only screen and (min-width: 1024px) {
  .vps-cases__img {
    width: 162px;
    height: 228px;
  }
}
.benefits {
  color: #1d233b;
}
.benefits__content {
  display: grid;
  grid-template-rows: auto auto;
  gap: 32px;
}
.benefits__descr {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.36px;
}
@media only screen and (min-width: 1024px) {
  .benefits__descr {
    width: 50%;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
.benefits .benefits__devider {
  display: none;
  width: 100%;
  height: 1px;
  background-color: #d2d3d8;
}
@media only screen and (min-width: 1024px) {
  .benefits .benefits__devider {
    display: block;
  }
}
.benefits__grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .benefits__grid {
    gap: 32px;
  }
  .benefits__grid .divider {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .benefits__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
  }
}
.benefits-card {
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr;
  grid-template-areas: "img title" "text text";
  margin-bottom: -16px;
}
@media only screen and (min-width: 768px) {
  .benefits-card {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .benefits-card {
    grid-template-columns: auto 1fr;
    grid-template-areas: "img title" "img text";
    gap: 8px 32px;
    grid-template-rows: auto 1fr;
    height: fit-content;
  }
}
@media only screen and (min-width: 1440px) {
  .benefits-card {
    padding-right: 40px;
  }
}
.benefits-card__pic {
  grid-area: img;
  display: flex;
  justify-content: center;
  align-content: center;
  width: 56px;
  min-width: 56px;
  padding: 16px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(29, 35, 59, 0.0509803922);
}
@media only screen and (min-width: 1024px) {
  .benefits-card__pic {
    width: 136px;
    min-width: 136px;
    padding: 40px;
  }
}
.benefits-card__title {
  grid-area: title;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  font-weight: 400;
  padding-right: 36px;
}
@media only screen and (min-width: 768px) {
  .benefits-card__title {
    padding-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .benefits-card__title {
    font-weight: 600;
    height: fit-content;
    align-items: flex-start;
  }
}
.benefits-card__trigger {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  cursor: pointer;
  color: currentColor;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.benefits-card__trigger svg path {
  stroke: #a5a7b1;
}
.benefits-card__trigger.isActive {
  transform: translateY(-50%) rotate(-180deg);
}
@media only screen and (min-width: 768px) {
  .benefits-card__trigger {
    display: none;
  }
}
.benefits-card__text {
  grid-area: text;
  width: 100%;
  height: fit-content;
  display: grid;
  grid-template-columns: 100%;
  justify-content: start;
  justify-items: start;
  gap: 8px;
}
.benefits-card__descr {
  display: none;
  margin-bottom: 16px;
  font-size: 18px;
  color: #4a4f62;
}
.benefits-card__descr.isCollapsed {
  display: none;
}
.benefits-card__descr.isActive {
  display: block;
}
@media only screen and (min-width: 768px) {
  .benefits-card__descr {
    display: block;
    margin-bottom: 0;
  }
}
.benefits-card.isActive .benefits-card__descr {
  display: block;
}
@media (min-width: 768px) {
  .benefits-card.isActive .benefits-card__link {
    display: inline-block;
  }
}
html.dark .benefits {
  color: #fffeff;
}
html.dark .benefits-card {
  border-color: rgba(255, 254, 255, 0.1);
}
html.dark .benefits-card__trigger svg path {
  stroke: rgba(255, 254, 255, 0.4);
}
html.dark .benefits-card__pic {
  background-color: rgba(255, 254, 255, 0.05);
}
html.dark .benefits-card__descr {
  color: rgba(255, 254, 255, 0.8);
}
html.dark .benefits__devider {
  background-color: rgba(255, 254, 255, 0.2);
}
.order {
  color: #1d233b;
}
.order__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .order__cards {
    flex-direction: row;
  }
}
.order__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 24px;
  height: 432px;
  margin-left: -16px;
  margin-right: -16px;
  border: 1px solid transparent;
  padding: 0 24px 32px 24px;
}
@media only screen and (min-width: 768px) {
  .order__card {
    width: 100%;
    height: 440px;
    margin: 0;
    padding: 0 32px 34px 32px;
  }
}
@media only screen and (min-width: 1024px) {
  .order__card {
    gap: 32px;
    height: 464px;
    padding: 0 48px 48px 48px;
  }
}
.order__card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media only screen and (min-width: 1024px) {
  .order__card__info {
    align-items: flex-start;
    min-height: 94px;
  }
}
@media only screen and (min-width: 1440px) {
  .order__card__info {
    width: 518px;
  }
}
.order__card__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.6px;
}
.order__card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.order__card__actions .btn {
  width: 100%;
  height: 48px;
}
.order__card__actions .btn__icon {
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M4.16699 10H15.8337M15.8337 10L10.8337 15M15.8337 10L10.8337 5' stroke='%23FFFEFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
@media only screen and (min-width: 768px) {
  .order__card__actions {
    gap: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .order__card__actions {
    flex-direction: row;
    gap: 8px;
  }
  .order__card__actions .btn {
    width: fit-content;
  }
}
.order__card__message {
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.32px;
}
@media only screen and (min-width: 1024px) {
  .order__card__message {
    text-align: start;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.36px;
  }
}
.order__card__image {
  align-self: center;
  width: 214px;
  height: 204.767px;
  margin-bottom: -24px;
}
@media only screen and (min-width: 1024px) {
  .order__card__image {
    align-self: flex-start;
    margin-left: 20px;
  }
}
.order__card__picture {
  position: absolute;
  left: 50%;
  top: 43px;
  transform: translateX(-50%);
  width: 154px;
  height: 154px;
}
@media only screen and (min-width: 1024px) {
  .order__card__picture {
    left: 120px;
  }
}
.order__card__spot {
  position: absolute;
  left: 60%;
  top: 0;
  transform: rotate(-56deg) translate(-50%, -50%);
  width: 138px;
  height: 267px;
  border-radius: 267px;
  background-color: #4B18F2;
  filter: blur(50px);
  opacity: 0.2;
}
@media only screen and (min-width: 1024px) {
  .order__card__spot {
    left: 200px;
  }
}
.order__card--top {
  border-radius: 22px;
  border-color: #e8e9eb;
  background: linear-gradient(180deg, rgba(214, 215, 251, 0.15) 0%, rgba(90, 81, 194, 0.15) 100%);
  overflow: hidden;
}
.order__card--bottom {
  padding: 0 24px 26px 24px;
}
@media only screen and (min-width: 1024px) {
  .order__card--bottom {
    padding: 0 48px 48px 48px;
  }
}
.order__card--second.order__card {
  height: 480px;
}
@media only screen and (min-width: 768px) {
  .order__card--second.order__card {
    height: 504px;
  }
}
.order__card--second.order__card.order__card--bottom {
  padding-bottom: 100px;
}
@media only screen and (min-width: 1024px) {
  .order__card--second.order__card.order__card--bottom {
    padding-bottom: 48px;
  }
}
html.dark .order {
  color: #fffeff;
}
html.dark .order__card__spot {
  background-color: #7318F2;
}
html.dark .order__card--top {
  border-color: rgba(255, 254, 255, 0.1);
}
.main-order__card__filter {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #9000ED 0%, rgba(151, 71, 255, 0) 100%);
  mix-blend-mode: soft-light;
  opacity: 0.5;
}
.main-order__card__image {
  align-self: center;
  width: 122px;
  height: 121px;
  margin-bottom: -26px;
}
@media only screen and (min-width: 1024px) {
  .main-order__card__image {
    align-self: flex-start;
    margin-left: 20px;
  }
}
.main-order__card__image--shadow {
  align-self: center;
  width: 122px;
  height: 43px;
  transform: rotateX(180deg);
  opacity: 0.9;
  filter: blur(7px);
}
@media only screen and (min-width: 1024px) {
  .main-order__card__image--shadow {
    margin-left: 20px;
    align-self: flex-start;
  }
}
.backup-order__card__filter {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #9000ED 0%, rgba(151, 71, 255, 0) 100%);
  mix-blend-mode: soft-light;
  opacity: 0.5;
}
.backup-order__card__image {
  align-self: center;
  width: 214px;
  height: 204.767px;
  margin-bottom: -24px;
}
@media only screen and (min-width: 1024px) {
  .backup-order__card__image {
    align-self: flex-start;
    margin-left: 20px;
  }
}
html.dark .backup-order__card__spot {
  background-color: #7318F2;
}
.server-management-order__card__filter {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #9000ED 0%, rgba(151, 71, 255, 0) 100%);
  mix-blend-mode: soft-light;
  opacity: 0.5;
}
.server-management-order__card__image {
  position: relative;
  align-self: center;
  width: 122px;
  height: 163px;
}
@media only screen and (min-width: 1024px) {
  .server-management-order__card__image {
    align-self: flex-start;
    margin-left: 20px;
  }
}
.server-management-order__card__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 127.495px;
}
.server-management-order__card__shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.9;
  filter: blur(7px);
  width: 100%;
  height: 47px;
  object-fit: cover;
  object-position: bottom;
}
.cloud-box-order__card__filter {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #9000ED 0%, rgba(151, 71, 255, 0) 100%);
  mix-blend-mode: soft-light;
  opacity: 0.5;
  border-radius: 22px;
}
.cloud-box-order__card__img {
  position: absolute;
  left: 50%;
  top: 25%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1024px) {
  .cloud-box-order__card__img {
    left: 30%;
  }
}
.cloud-box-order__card__shadow {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  opacity: 0.65;
  filter: blur(3.8700566292px);
  width: 133px;
  height: 29px;
  object-fit: cover;
  object-position: bottom;
}
@media only screen and (min-width: 1024px) {
  .cloud-box-order__card__shadow {
    left: 30%;
  }
}
.dedicated-nl-order__card__filter {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #9000ED 0%, rgba(151, 71, 255, 0) 100%);
  mix-blend-mode: soft-light;
  opacity: 0.5;
  z-index: 2;
}
.dedicated-nl-order__card__img {
  position: absolute;
  left: 50%;
  top: 25%;
  z-index: 1;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1024px) {
  .dedicated-nl-order__card__img {
    left: 30%;
  }
}
.dedicated-nl-order__card__shadow {
  position: absolute;
  left: 39%;
  top: 35%;
  opacity: 0.9;
  filter: blur(7px);
  width: 130px;
  height: 47px;
  object-fit: cover;
  object-position: top;
  transform: rotate(180deg);
}
@media only screen and (min-width: 768px) {
  .dedicated-nl-order__card__shadow {
    left: 31%;
  }
}
@media only screen and (min-width: 1024px) {
  .dedicated-nl-order__card__shadow {
    left: 18%;
  }
}
.dedicated-server-order__card__filter {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #9000ED 0%, rgba(151, 71, 255, 0) 100%);
  mix-blend-mode: soft-light;
  opacity: 0.5;
  border-radius: 22px;
}
.dedicated-server-order__card__image {
  display: inline-block;
  max-width: 100%;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 31px;
}
@media only screen and (min-width: 1024px) {
  .dedicated-server-order__card__image {
    margin-left: 20px;
  }
}
.dedicated-server-order__card__img {
  max-width: 100%;
  position: relative;
  z-index: 0;
}
.dedicated-server-order__card__shadow {
  max-width: 100%;
  position: absolute;
  transform: scaleY(-1);
  opacity: 0.9;
  object-fit: cover;
  filter: blur(7px);
  z-index: 0;
  width: 113px;
  height: 43px;
  top: 123px;
  left: 5px;
}
.gpu-order__card__filter {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #9000ED 0%, rgba(151, 71, 255, 0) 100%);
  mix-blend-mode: soft-light;
  opacity: 0.5;
  z-index: 2;
}
.gpu-order__card__image {
  position: relative;
  align-self: center;
  width: 122px;
  height: 163px;
  margin-bottom: -12px;
}
@media only screen and (min-width: 1024px) {
  .gpu-order__card__image {
    align-self: flex-start;
    margin-left: 20px;
  }
}
.gpu-order__card__img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 127.495px;
}
.gpu-order__card__shadow {
  position: absolute;
  left: 0;
  bottom: 4px;
  opacity: 0.9;
  filter: blur(7px);
  width: 100%;
  height: 47px;
  object-fit: cover;
  object-position: top;
  transform: rotate(180deg);
  z-index: 0;
}
.server-card {
  border-radius: 12px;
  border: 4px solid transparent;
  background-color: rgba(29, 35, 59, 0.05);
  color: #1d233b;
  height: 100%;
}
.server-card__wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 12px;
  border: 1px solid transparent;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  min-height: 654px;
}
.server-card__block {
  padding: 8px;
  border-bottom: 1px solid #d2d3d8;
}
.server-card__block--body {
  flex-grow: 1;
}
.server-card__block--bottom {
  border: none;
}
.server-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  border-radius: 12px;
  padding: 4px 14px;
  color: #fffeff;
}
.server-card__col-8 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
}
.server-card__col-4 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.server-card__subtitle {
  font-size: 20px;
  line-height: 26px;
}
.server-card__location {
  display: flex;
  align-items: center;
  gap: 8px;
}
.server-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 0;
}
.server-card__chips {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px 4px 0;
}
.server-card__chips svg path {
  stroke: #a5a7b1;
}
.server-card__details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px;
}
.server-card__old-price {
  display: none;
  gap: 2px;
}
.server-card__price {
  display: flex;
  gap: 8px;
}
.server-card__count {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}
.server-card__count--old {
  text-decoration: line-through;
}
.server-card__actions {
  display: flex;
  gap: 8px;
  padding: 8px;
}
.server-card__actions .btn {
  width: 100%;
}
.server-card[data-status=default] .server-card__wrap {
  border-color: transparent;
  box-shadow: none;
}
.server-card[data-status=default] .server-card__badge {
  display: none;
}
.server-card[data-status=sale] {
  border-color: rgba(237, 0, 40, 0.08);
}
.server-card[data-status=sale] .server-card__wrap {
  border-color: #ED0028;
}
.server-card[data-status=sale] .server-card__badge {
  background-color: #ED0028;
}
.server-card[data-status=sale] .server-card__old-price {
  display: flex;
}
.server-card[data-status=new] {
  border-color: rgba(144, 0, 237, 0.08);
}
.server-card[data-status=new] .server-card__wrap {
  border-color: #9000ed;
}
.server-card[data-status=new] .server-card__badge {
  background-color: #9000ed;
}
html.dark .server-card {
  border: 4px solid transparent;
  background-color: rgba(255, 254, 255, 0.05);
  color: #fffeff;
}
html.dark .server-card__block {
  border-bottom: 1px solid rgba(255, 254, 255, 0.2);
}
html.dark .server-card__block--bottom {
  border: none;
}
html.dark .server-card__chips svg path {
  stroke: rgba(255, 254, 255, 0.4);
}
html.dark .server-card[data-status=sale] {
  border-color: rgba(237, 0, 40, 0.08);
}
html.dark .server-card[data-status=new] {
  border-color: rgba(168, 91, 246, 0.2);
}
html.dark .server-card[data-status=new] .server-card__wrap {
  border-color: #a85bf6;
}
html.dark .server-card[data-status=new] .server-card__badge {
  background-color: #a85bf6;
}
.reasons__title {
  margin-bottom: 32px;
}
.reasons__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}
@media only screen and (min-width: 768px) {
  .reasons__body {
    gap: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .reasons__body {
    flex-direction: row;
    align-items: center;
  }
}
.reasons__message {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reasons__text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 768px) {
  .reasons__text {
    -webkit-line-clamp: unset;
  }
}
@media only screen and (min-width: 1024px) {
  .reasons__text {
    padding: 16px;
  }
}
.reasons__text p {
  margin-bottom: 24px;
}
.reasons__text p:last-child {
  margin-bottom: 0;
}
.reasons__text.expanded {
  -webkit-line-clamp: unset;
}
.reasons__more {
  color: #7a7d8d;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
}
@media only screen and (min-width: 768px) {
  .reasons__more {
    display: none;
  }
}
.reasons__picture {
  position: relative;
  height: 181.783px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .reasons__picture {
    height: 208px;
  }
}
@media only screen and (min-width: 1024px) {
  .reasons__picture {
    flex-shrink: 0;
    height: 244px;
    width: 334.256px;
  }
}
@media only screen and (min-width: 1440px) {
  .reasons__picture {
    width: 432px;
    height: 244px;
  }
}
@media only screen and (min-width: 1920px) {
  .reasons__picture {
    width: 520px;
    height: 244px;
  }
}
.reasons__spot {
  position: absolute;
  left: 30%;
  bottom: -20px;
  width: 88.89px;
  height: 244.884px;
  transform: rotate(-114.653deg);
  background-color: #6418F2;
  opacity: 0.3;
  filter: blur(62.1108970642px);
}
@media only screen and (min-width: 768px) {
  .reasons__spot {
    left: 300px;
  }
}
@media only screen and (min-width: 1024px) {
  .reasons__spot {
    width: 119.691px;
    height: 334.256px;
    left: 120px;
  }
}
@media only screen and (min-width: 1440px) {
  .reasons__spot {
    left: 160px;
    bottom: -48px;
  }
}
@media only screen and (min-width: 1920px) {
  .reasons__spot {
    left: 200px;
  }
}
.reasons__img {
  position: absolute;
  top: 5.22px;
  left: 20%;
  width: 178.079px;
  height: 181.879px;
}
@media only screen and (min-width: 768px) {
  .reasons__img {
    top: 13.22px;
    left: 251.14px;
  }
}
@media only screen and (min-width: 1024px) {
  .reasons__img {
    top: 7px;
    left: 32px;
    width: 244px;
    height: 244px;
  }
}
@media only screen and (min-width: 1440px) {
  .reasons__img {
    left: 92px;
  }
}
@media only screen and (min-width: 1920px) {
  .reasons__img {
    left: 132px;
  }
}
.reasons__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .reasons__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 32px 16px;
  }
  .reasons__grid .divider {
    display: none;
  }
}
.reasons-item {
  display: flex;
  flex-direction: column;
  position: relative;
}
.reasons-item.expanded .reasons-item__btn {
  transform: rotate(180deg);
}
.reasons-item.expanded .reasons-item__descr {
  opacity: 1;
  pointer-events: all;
  margin-top: 16px;
}
@media only screen and (min-width: 768px) {
  .reasons-item {
    gap: 8px;
    padding: 16px 0 16px 40px;
  }
}
.reasons-item__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reasons-item__number {
  flex-shrink: 0;
  width: 58px;
  text-align: center;
  font-size: 64px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.28px;
  color: #9000ed;
  opacity: 0.2;
}
@media only screen and (min-width: 768px) {
  .reasons-item__number {
    position: absolute;
    left: 8px;
    top: -32px;
    font-size: 95px;
    line-height: 100%;
    letter-spacing: 1.9px;
  }
}
.reasons-item__title {
  flex-grow: 1;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.4px;
}
@media only screen and (min-width: 768px) {
  .reasons-item__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0.48px;
    z-index: 1;
  }
}
.reasons-item__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 100%;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 768px) {
  .reasons-item__btn {
    display: none;
  }
}
.reasons-item__btn svg {
  width: 20px;
  height: 20px;
}
.reasons-item__btn svg path {
  stroke: #a5a7b1;
}
.reasons-item__descr {
  opacity: 0;
  max-height: 0;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
  color: #4a4f62;
}
@media only screen and (min-width: 768px) {
  .reasons-item__descr {
    opacity: 1;
    max-height: none;
    pointer-events: all;
    font-size: 18px;
    line-height: 24px;
  }
}
html.dark .reasons-item__number {
  opacity: 0.4;
  color: #a85bf6;
}
html.dark .reasons-item__btn svg path {
  stroke: rgba(255, 254, 255, 0.4);
}
html.dark .reasons-item__descr {
  color: rgba(255, 254, 255, 0.8);
}
.protect {
  color: #1d233b;
}
.protect__title {
  margin-bottom: 32px;
}
.protect__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 1024px) {
  .protect__content {
    flex-direction: row;
    align-items: center;
  }
}
.protect__screen {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 216px;
  border-radius: 22px;
  margin-left: -16px;
  margin-right: -16px;
  background: linear-gradient(180deg, rgba(214, 215, 251, 0.15) 0%, rgba(90, 81, 194, 0.15) 100%);
}
@media only screen and (min-width: 768px) {
  .protect__screen {
    height: 352px;
    margin-right: 0;
    margin-left: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .protect__screen {
    flex-shrink: 0;
    width: calc(50% - 8px);
    height: 394px;
  }
}
.protect__description {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.36px;
}
@media only screen and (min-width: 1024px) {
  .protect__description {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
html.dark .protect {
  color: #fffeff;
}
.server-management-protect__spot {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #4B18F2;
  filter: blur(21.4915924072px);
}
@media only screen and (min-width: 768px) {
  .server-management-protect__spot {
    filter: blur(39.1624565125px);
  }
}
.server-management-protect__spot--smal {
  width: 112.258px;
  height: 254.701px;
  border-radius: 254.701px;
  transform: rotate(143.374deg) translateX(50%);
  left: 50%;
  opacity: 0.2;
}
@media only screen and (min-width: 768px) {
  .server-management-protect__spot--smal {
    width: 204.558px;
    height: 464.122px;
    border-radius: 464.122px;
  }
}
.server-management-protect__spot--big {
  width: 173.375px;
  height: 393.369px;
  transform: rotate(136.172deg) translateX(50%);
  left: 50%;
  opacity: 0.15;
}
@media only screen and (min-width: 768px) {
  .server-management-protect__spot--big {
    width: 315.927px;
    height: 716.806px;
    border-radius: 716.806px;
    transform: rotate(136.172deg) translateX(70%);
  }
}
.server-management-protect__img {
  width: 192.622px;
  height: 192.622px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .server-management-protect__img {
    width: 318px;
    height: 318px;
  }
}
@media only screen and (min-width: 1024px) {
  .server-management-protect__img {
    width: 351px;
    height: 351px;
  }
}
.server-management-protect__shadow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 192.622px;
  height: 80.517px;
  opacity: 0.9;
  filter: blur(6.1936321259px);
  object-fit: cover;
  object-position: top;
}
@media only screen and (min-width: 768px) {
  .server-management-protect__shadow {
    width: 318px;
    height: 131.926px;
    bottom: -32px;
    filter: blur(10.2250804901px);
  }
}
@media only screen and (min-width: 1024px) {
  .server-management-protect__shadow {
    width: 351px;
    height: 146.72px;
    filter: blur(11.2861738205px);
  }
}
.server-management-protect__filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #9000ED 0%, rgba(151, 71, 255, 0) 100%);
  opacity: 0.5;
  mix-blend-mode: soft-light;
}
.backup-protect__filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #9000ED 0%, rgba(151, 71, 255, 0) 100%);
  opacity: 0.5;
  mix-blend-mode: soft-light;
}
.backup-protect__spot {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #4B18F2;
  filter: blur(21.4915924072px);
}
@media only screen and (min-width: 768px) {
  .backup-protect__spot {
    filter: blur(39.1624565125px);
  }
}
.backup-protect__spot--smal {
  width: 112.258px;
  height: 254.701px;
  border-radius: 254.701px;
  transform: rotate(143.374deg) translateX(50%);
  left: 50%;
  opacity: 0.2;
}
@media only screen and (min-width: 768px) {
  .backup-protect__spot--smal {
    width: 204.558px;
    height: 464.122px;
    border-radius: 464.122px;
  }
}
.backup-protect__spot--big {
  width: 173.375px;
  height: 393.369px;
  transform: rotate(136.172deg) translateX(70%);
  left: 50%;
  opacity: 0.15;
}
@media only screen and (min-width: 768px) {
  .backup-protect__spot--big {
    width: 315.927px;
    height: 716.806px;
    border-radius: 716.806px;
    transform: rotate(136.172deg) translateX(70%);
  }
}
.backup-protect__img {
  width: 192px;
  height: 188.53px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .backup-protect__img {
    width: 332px;
    height: 326px;
  }
}
.backup-protect__shadow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .backup-protect__shadow {
    opacity: 0.9;
    width: 318px;
    height: 131.926px;
    bottom: -32px;
  }
}
@media only screen and (min-width: 1024px) {
  .backup-protect__shadow {
    width: 351px;
    height: 146.72px;
  }
}
.cloud-box-protect__filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #9000ED 0%, rgba(151, 71, 255, 0) 100%);
  opacity: 0.5;
  mix-blend-mode: soft-light;
}
.cloud-box-protect__spot {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: rotate(80.686deg) translateY(20%);
  width: 105.839px;
  height: 223.404px;
  background-color: #4B18F2;
  opacity: 0.2;
  filter: blur(17.8914756775px);
}
@media only screen and (min-width: 768px) {
  .cloud-box-protect__spot {
    width: 206.975px;
    height: 436.879px;
    border-radius: 436.879px;
    filter: blur(34.9877738953px);
  }
}
@media only screen and (min-width: 1024px) {
  .cloud-box-protect__spot {
    width: 231.67px;
    height: 489.007px;
    border-radius: 489.007px;
    filter: blur(39.1624565125px);
  }
}
.cloud-box-protect__img {
  width: 156px;
  height: 143px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .cloud-box-protect__img {
    width: 302px;
    height: 277px;
  }
}
@media only screen and (min-width: 1024px) {
  .cloud-box-protect__img {
    width: 354px;
    height: 326px;
  }
}
.countries__title {
  margin-bottom: 32px;
}
.countries__description {
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
}
@media only screen and (min-width: 768px) {
  .countries__description {
    width: calc(50% - 8px);
  }
}
@media only screen and (min-width: 1024px) {
  .countries__description {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
.countries__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media only screen and (min-width: 1024px) {
  .countries__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.config-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background-color: rgba(29, 35, 59, 0.05);
}
@media only screen and (min-width: 1440px) {
  .config-card {
    flex: 1;
  }
}
.config-card:first-child .tooltip {
  transform: translateX(-40%);
}
.config-card:first-child .tooltip .tooltip__arrow {
  transform: translateX(-330%);
}
.config-card__top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid #d2d3d8;
}
.config-card__title {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.4px;
}
.config-card__btn {
  position: relative;
  padding: 0;
  margin: 0;
  border: none;
  background-color: inherit;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.config-card__btn svg {
  width: 20px;
  height: 20px;
  stroke: #7a7d8d;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.config-card__btn:hover svg, .config-card__btn:active svg, .config-card__btn.active svg {
  stroke: #9000ed;
}
@media only screen and (min-width: 1024px) {
  .config-card__btn:hover .tooltip {
    opacity: 1;
    z-index: 2;
  }
}
.config-card__tooltip {
  width: 400px;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}
.config-card__tooltip .tooltip__text {
  text-align: start;
}
.config-card__list {
  flex-grow: 1;
  padding: 0 8px;
  border-bottom: 1px solid #d2d3d8;
}
.config-card__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.config-card__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
}
.config-card__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}
.config-card__options .btn {
  width: 100%;
  height: 48px;
}
html.dark .config-card {
  background-color: rgba(255, 254, 255, 0.05);
}
html.dark .config-card__top, html.dark .config-card__list {
  border-color: rgba(255, 254, 255, 0.2);
}
html.dark .config-card__btn svg {
  stroke: rgba(255, 254, 255, 0.7);
}
html.dark .config-card__btn:hover svg, html.dark .config-card__btn:active svg, html.dark .config-card__btn.active svg {
  stroke: #a85bf6;
}
.cities {
  overflow: hidden;
}
.cities__title {
  margin-bottom: 32px;
}
@media only screen and (min-width: 768px) {
  .cities__title {
    max-width: 460px;
  }
}
@media only screen and (min-width: 1024px) {
  .cities__title {
    max-width: none;
  }
}
.cities__description {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
  margin-bottom: 32px;
}
@media only screen and (min-width: 768px) {
  .cities__description {
    width: calc(50% - 8px);
  }
}
@media only screen and (min-width: 1024px) {
  .cities__description {
    width: 778px;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
.cities__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .cities__content {
    flex-direction: row;
  }
}
.cities__map {
  position: relative;
  height: 407px;
  width: 328px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .cities__map {
    flex-shrink: 0;
    width: 224px;
    height: 254px;
    border-radius: 22px;
    border: 1px solid #d2d3d8;
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .cities__map {
    width: 432px;
    height: 500px;
  }
}
.cities__img {
  position: absolute;
  object-fit: contain;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 100%;
  height: 100%;
  display: block;
}
.cities__img--dark {
  display: none;
}
.cities__location {
  position: absolute;
  cursor: pointer;
}
.cities__location:hover .cities__location__fill {
  background-color: #9000ed;
}
.cities__location.active .cities__location__point {
  border-color: #fffeff;
  padding: 2px;
}
.cities__location.active .cities__location__fill {
  background-color: #9000ed;
}
.cities__location.active .cities__location__name {
  visibility: visible;
}
.cities__location__point {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 4px;
  border-radius: 60px;
  border: 1px solid #d2d3d8;
  backdrop-filter: blur(5px);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cities__location__fill {
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background-color: #7a7d8d;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cities__location__name {
  position: absolute;
  left: 28px;
  top: 4px;
  visibility: hidden;
  color: #4a4f62;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.28px;
  white-space: nowrap;
}
.cities__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .cities__info {
    width: 464px;
  }
}
@media only screen and (min-width: 1024px) {
  .cities__info {
    width: 512px;
  }
}
@media only screen and (min-width: 1200px) {
  .cities__info {
    width: 688px;
  }
}
@media only screen and (min-width: 1440px) {
  .cities__info {
    width: auto;
  }
}
.cities__tabs {
  margin-right: -16px;
  margin-left: -16px;
  padding-right: 16px;
  padding-left: 16px;
  overflow-x: scroll;
  scrollbar-width: none;
}
.cities__tabs::-webkit-scrollbar {
  display: none;
}
@media only screen and (min-width: 768px) {
  .cities__tabs {
    margin-right: -360px;
    margin-left: 0;
    padding-right: 360px;
    padding-left: 0;
  }
}
.cities__accordeon {
  display: none;
}
.cities__accordeon.active {
  display: block;
}
.city-card {
  padding: 12px;
  border-bottom: 1px solid #d2d3d8;
  height: fit-content;
  overflow: hidden;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.city-card:last-child {
  border-bottom: none;
}
.city-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.city-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.4px;
}
.city-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  width: 48px;
  height: 48px;
  padding: 14px;
  border-radius: 48px;
  cursor: pointer;
  background-color: transparent;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 1024px) {
  .city-card__btn:hover {
    background-color: #e8e9eb;
  }
}
.city-card__btn.isActive {
  transform: rotate(45deg);
}
.city-card__icon {
  width: 20px;
  height: 20px;
  background-image: url("../assets/icons/plus.svg");
}
.city-card__descr {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
  pointer-events: none;
  padding-right: 48px;
  color: #7a7d8d;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
}
.city-card__descr.isVisible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
html.dark .cities__map {
  border-color: rgba(255, 254, 255, 0.2);
}
html.dark .cities__img--light {
  display: none;
}
html.dark .cities__img--dark {
  display: block;
}
html.dark .cities__location:hover .cities__location__fill {
  background-color: #a85bf6;
}
html.dark .cities__location.active .cities__location__fill {
  background-color: #a85bf6;
}
html.dark .cities__location__point {
  border-color: rgba(255, 254, 255, 0.2);
}
html.dark .cities__location__fill {
  background-color: rgba(255, 254, 255, 0.7);
}
html.dark .cities__location__name {
  color: rgba(255, 254, 255, 0.8);
}
html.dark .city-card {
  border-color: rgba(255, 254, 255, 0.2);
}
html.dark .city-card__icon {
  background-image: url("../assets/icons/plus-dark.svg");
}
html.dark .city-card__descr {
  color: rgba(255, 254, 255, 0.7);
}
.dedicated-advantages {
  color: #1d233b;
}
.dedicated-advantages__title {
  margin-bottom: 32px;
}
.dedicated-advantages__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .dedicated-advantages__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px 16px;
  }
  .dedicated-advantages__list .divider {
    display: none;
  }
}
.dedicated-advantages__item {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  border-left: 3px solid #9000ed;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 768px) {
  .dedicated-advantages__item {
    gap: 8px;
    width: calc(50% - 8px);
    padding: 0 24px;
  }
}
.dedicated-advantages__item.expanded .dedicated-advantages__icon {
  transform: rotate(180deg);
}
.dedicated-advantages__item.expanded .dedicated-advantages__text {
  opacity: 1;
  transform: translateY(0);
  margin-top: 8px;
  pointer-events: all;
}
.dedicated-advantages__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 1;
}
.dedicated-advantages__label {
  font-size: 20px;
  line-height: 26px;
}
@media only screen and (min-width: 768px) {
  .dedicated-advantages__label {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
  }
}
.dedicated-advantages__icon {
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 768px) {
  .dedicated-advantages__icon {
    display: none;
  }
}
.dedicated-advantages__icon path {
  stroke: #a5a7b1;
}
.dedicated-advantages__text {
  font-size: 18px;
  line-height: 24px;
  color: #4a4f62;
  opacity: 0;
  transform: translateY(-20%);
  max-height: 0px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .dedicated-advantages__text {
    opacity: 1;
    transform: translateY(0);
    max-height: fit-content;
    pointer-events: all;
  }
}
html.dark .dedicated-advantages {
  color: #fffeff;
}
html.dark .dedicated-advantages__item {
  border-color: #a85bf6;
}
html.dark .dedicated-advantages__icon path {
  stroke: rgba(255, 254, 255, 0.4);
}
html.dark .dedicated-advantages__text {
  color: rgba(255, 254, 255, 0.7);
}
.case-studies__content {
  display: grid;
  grid-template-rows: auto auto;
  gap: 32px;
}
.case-studies__top-block {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1024px) {
  .case-studies__top-block {
    grid-template-columns: 100%;
    justify-items: start;
  }
}
.case-studies__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-content: start;
  gap: 16px;
}
.case-studies__card {
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  border-radius: 22px;
  background: rgba(255, 254, 255, 0.0509803922);
  border: 1px solid #d2d3d8;
  cursor: pointer;
  transition: all 0.3s ease;
}
.case-studies__card:hover {
  box-shadow: 2px 4px 20px 0 rgba(144, 0, 237, 0.1019607843);
}
.case-studies__card__img {
  border-radius: 22px 22px 0 0;
  width: 100%;
}
.case-studies__card__desc {
  padding: 16px 32px 32px 32px;
  box-shadow: 0px 0px 16px 0px rgba(144, 0, 237, 0.1019607843);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 0 0 22px 22px;
}
.case-studies__card__desc p {
  font-size: 20px;
  line-height: 26px;
  color: #1d233b;
}
.plan__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.plan__content__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.plan__top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.plan__top .btn {
  width: fit-content;
  height: 48px;
}
@media only screen and (min-width: 1024px) {
  .plan__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.plan__block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 32px;
}
.plan__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 1024px) {
  .plan__details {
    flex-direction: row;
    justify-content: space-between;
  }
}
.plan__details .btn {
  width: fit-content;
  height: fit-content;
}
.plan__descr {
  font-size: 18px;
  line-height: 24px;
}
@media only screen and (min-width: 1024px) {
  .plan__descr {
    font-size: 20px;
    line-height: 26px;
    max-width: 656px;
  }
}
.plan__box-position {
  display: flex;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  overflow-x: visible;
}
.plan__slider {
  overflow: visible;
}
.plan__slider.swiper.swiper_custom {
  margin-right: 0;
  padding-bottom: 56px;
  width: 100%;
  padding-right: 0;
}
@media only screen and (min-width: 1440px) {
  .plan__slider {
    margin: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .plan__slider .swiper-wrapper {
    display: flex;
    gap: 16px;
  }
}
.plan__slider.swiper_custom.swiper-initialized:after {
  bottom: 24px;
  left: 70px;
  transform: translateX(0);
  width: calc(100% - 126px);
}
@media only screen and (min-width: 1920px) {
  .plan__slider.swiper_custom.swiper-initialized:after {
    display: none;
  }
}
.plan__slider .swiper-button-next {
  left: auto;
  right: 0;
}
.plan__slider .swiper-button-prev {
  left: 16px;
}
.plan__slider .swiper-button-prev,
.plan__slider .swiper-button-next {
  height: 48px;
  width: 48px;
  padding: 14px;
  bottom: 0;
}
@media only screen and (min-width: 1440px) {
  .plan__slider .swiper-button-prev,
  .plan__slider .swiper-button-next {
    display: none;
  }
}
.plan__slider .swiper-slide {
  width: 320px;
}
.plan__slider .swiper-slide .server-card,
.plan__slider .swiper-slide .server-card__wrap {
  height: 100%;
}
@media only screen and (min-width: 1920px) {
  .plan__slider .swiper-slide {
    width: 386px;
  }
}
html.dark .plan__slider.swiper.swiper_custom {
  padding-right: 0;
}
.benefits-second__title {
  margin-bottom: 32px;
}
.benefits-second__divider {
  margin-left: -16px;
  margin-right: -16px;
  height: 1px;
  background-color: #d2d3d8;
  margin-bottom: 32px;
}
.benefits-second__divider:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .benefits-second__divider {
    margin-left: 0;
    margin-right: 0;
  }
}
.benefits-second__grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 16px;
  margin-bottom: 32px;
}
@media only screen and (min-width: 768px) {
  .benefits-second__grid {
    gap: 32px;
  }
}
@media only screen and (min-width: 1024px) {
  .benefits-second__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
  }
}
@media only screen and (min-width: 768px) {
  .benefits-second__grid .divider {
    display: none;
  }
}
.benefits-second__grid .divider.hidden {
  display: none;
}
.benefits-second__button {
  display: flex;
  padding: 14px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}
.benefits-second__button__hide {
  display: none;
}
.benefits-second__button__arrow, .benefits-second__button__hide, .benefits-second__button__show {
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.benefits-second__button.isShow .benefits-second__button__arrow {
  transform: rotate(180deg);
}
.benefits-second__button.isShow .benefits-second__button__hide {
  display: inline;
}
.benefits-second__button.isShow .benefits-second__button__show {
  display: none;
}
.benefits-second-card {
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr;
  grid-template-areas: "img title" "text text";
  margin-bottom: -16px;
}
.benefits-second-card.hidden {
  display: none;
}
@media only screen and (min-width: 768px) {
  .benefits-second-card {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .benefits-second-card {
    grid-template-columns: auto 1fr;
    grid-template-areas: "img title" "img text";
    gap: 8px 32px;
    grid-template-rows: auto 1fr;
    height: fit-content;
  }
}
@media only screen and (min-width: 1440px) {
  .benefits-second-card {
    padding-right: 40px;
  }
}
.benefits-second-card__pic {
  grid-area: img;
  display: flex;
  justify-content: center;
  align-content: center;
  width: 56px;
  min-width: 56px;
  padding: 16px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(29, 35, 59, 0.0509803922);
}
@media only screen and (min-width: 1024px) {
  .benefits-second-card__pic {
    width: 136px;
    min-width: 136px;
    padding: 40px;
  }
}
.benefits-second-card__title {
  grid-area: title;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  font-weight: 400;
  padding-right: 36px;
}
@media only screen and (min-width: 768px) {
  .benefits-second-card__title {
    padding-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .benefits-second-card__title {
    font-weight: 600;
    height: fit-content;
    align-items: flex-start;
  }
}
.benefits-second-card__trigger {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  cursor: pointer;
  color: currentColor;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.benefits-second-card__trigger svg path {
  stroke: #a5a7b1;
}
.benefits-second-card__trigger.isActive {
  transform: translateY(-50%) rotate(-180deg);
}
@media only screen and (min-width: 768px) {
  .benefits-second-card__trigger {
    display: none;
  }
}
.benefits-second-card__text {
  grid-area: text;
  width: 100%;
  height: fit-content;
  display: grid;
  grid-template-columns: 100%;
  justify-content: start;
  justify-items: start;
  gap: 8px;
}
.benefits-second-card__descr {
  display: none;
  margin-bottom: 16px;
  font-size: 18px;
  color: #4a4f62;
}
.benefits-second-card__descr.isCollapsed {
  display: none;
}
.benefits-second-card__descr.isActive {
  display: block;
}
@media only screen and (min-width: 768px) {
  .benefits-second-card__descr {
    display: block;
    margin-bottom: 0;
  }
}
.benefits-second-card.isActive .benefits-second-card__descr {
  display: block;
}
@media (min-width: 768px) {
  .benefits-second-card.isActive .benefits-second-card__link {
    display: inline-block;
  }
}
html.dark .benefits-second__divider {
  background-color: rgba(255, 254, 255, 0.2);
}
html.dark .benefits-second-card {
  border-color: rgba(255, 254, 255, 0.1);
}
html.dark .benefits-second-card__trigger svg path {
  stroke: rgba(255, 254, 255, 0.4);
}
html.dark .benefits-second-card__pic {
  background-color: rgba(255, 254, 255, 0.05);
}
html.dark .benefits-second-card__descr {
  color: rgba(255, 254, 255, 0.8);
}