.hero {
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 33vw;
  gap: 32px;
  position: relative;
  padding-top: 100px;
}
@media (max-width: 1280px) {
  .hero__grid {
    grid-template-columns: 1fr 40vw;
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .hero__grid {
    grid-template-columns: 100%;
  }
}
.hero__bg1, .hero__bg2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero__ellipse-bg {
  position: absolute;
  z-index: -1;
  width: 269.08px;
  height: 903.47px;
  top: -70px;
  left: 60%;
  transform: rotate(-45deg);
  background: #7318f2;
  filter: blur(200px);
}
@media (max-width: 1024px) {
  .hero__ellipse-bg {
    width: 159.605px;
    height: 535.899px;
    border-radius: 535.899px;
    top: 0;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .hero__ellipse-bg {
    top: 80%;
    left: 15%;
  }
}
.hero__bg1 {
  background: linear-gradient(180deg, rgba(214, 215, 251, 0.2) 0%, rgba(90, 81, 194, 0.2) 100%);
}
.hero__bg2 {
  opacity: 0.5;
  background: linear-gradient(180deg, #9000ed 0%, rgba(151, 71, 255, 0) 100%);
  mix-blend-mode: soft-light;
}
.hero__txt {
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  align-items: start;
  padding: 110px 0;
}
@media (max-width: 1024px) {
  .hero__txt {
    padding-top: 70px;
  }
}
@media (max-width: 767px) {
  .hero__txt {
    padding-top: 24px;
  }
}
.hero__txt-top {
  max-width: 790px;
  min-width: 340px;
}
@media (max-width: 768px) {
  .hero__txt-top {
    max-width: 460px;
  }
}
.hero__txt-top-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero__title {
  font-weight: 700;
}
.hero__txt-center {
  display: inline-flex;
  margin-top: 32px;
}
.hero__txt-bottom {
  display: flex;
  margin-top: 64px;
}
.hero__actions {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
  gap: 16px;
}
@media (max-width: 767px) {
  .hero__actions {
    width: 100%;
    grid-template-columns: 100%;
  }
}
.hero__actions-btn {
  max-height: 48px;
}
.hero__bg {
  position: absolute;
  top: 25%;
  display: none;
}
@media only screen and (min-width: 768px) {
  .hero__bg {
    display: block;
    right: -100px;
    width: 436px;
  }
}
@media only screen and (min-width: 1024px) {
  .hero__bg {
    right: -50px;
  }
}
@media only screen and (min-width: 1200px) {
  .hero__bg {
    width: 500px;
    right: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .hero__bg {
    right: 50px;
  }
}
@media only screen and (min-width: 1920px) {
  .hero__bg {
    right: 200px;
  }
}
.advantages-container {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 22px;
  border-radius: 0 64px 64px 0;
  background: rgba(255, 254, 255, 0.4);
  position: relative;
}
.advantages-container::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 254, 255, 0.4) 0%, rgba(255, 255, 255, 0) 50%);
  position: absolute;
  top: 0;
  right: 100%;
}
@media (max-width: 1024px) {
  .advantages-container {
    grid-template-columns: 100%;
    gap: 4px;
    background: transparent;
  }
  .advantages-container::before {
    display: none;
  }
}
.advantages {
  display: grid;
  grid-template-columns: 24px auto;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-radius: 0 64px 64px 0;
  position: relative;
}
@media (max-width: 1024px) {
  .advantages {
    padding: 8px 16px 8px 0;
    background: rgba(255, 254, 255, 0.4);
  }
  .advantages::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 100%;
    background: inherit;
  }
}
@media (min-width: 1024px) {
  .advantages:first-child {
    padding-left: 0;
  }
}
html.dark .hero__bg1, html.dark .hero__bg2 {
  display: none;
}
html.dark .advantages-container {
  background: rgba(255, 254, 255, 0.1);
}
html.dark .advantages-container::before {
  background: linear-gradient(to left, rgba(255, 254, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
}
@media (max-width: 1024px) {
  html.dark .advantages-container {
    background: transparent;
  }
}
@media (max-width: 1024px) {
  html.dark .advantages {
    background: rgba(255, 254, 255, 0.1);
  }
}
.choose__content {
  display: grid;
  grid-template-rows: auto auto;
  position: relative;
  gap: 32px;
  align-content: start;
}
.choose__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-rows: auto;
  gap: 16px;
}
@media (max-width: 767px) {
  .choose__grid {
    margin: 0 -16px;
  }
}
.choose__grid_3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .choose__grid_3 {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "cell1 cell2" "cell3 cell3";
  }
}
@media (max-width: 768px) {
  .choose__grid_3 {
    grid-template-columns: 1fr;
    grid-template-areas: "cell1" "cell2" "cell3";
  }
}
@media (max-width: 1024px) {
  .choose__grid_3 .choose__grid-cell_1 {
    grid-area: cell1;
  }
  .choose__grid_3 .choose__grid-cell_2 {
    grid-area: cell2;
  }
  .choose__grid_3 .choose__grid-cell_3 {
    grid-area: cell3;
  }
}
.choose__grid_4 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .choose__grid_4 {
    grid-template-columns: 100%;
  }
}
.choose__grid_5 {
  grid-template-columns: repeat(6, 1fr);
  grid-template-areas: "cell1 cell1 cell1 cell2 cell2 cell2" "cell3 cell3 cell4 cell4 cell5 cell5";
}
@media (max-width: 1024px) {
  .choose__grid_5 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "cell1 cell2" "cell3 cell4" "cell5 cell5";
  }
}
@media (max-width: 768px) {
  .choose__grid_5 {
    grid-template-columns: 100%;
    grid-template-areas: "cell1" "cell2" "cell3" "cell4" "cell5";
  }
}
.choose__grid_5 .choose__grid-cell_1 {
  grid-area: cell1;
}
.choose__grid_5 .choose__grid-cell_2 {
  grid-area: cell2;
}
.choose__grid_5 .choose__grid-cell_3 {
  grid-area: cell3;
}
.choose__grid_5 .choose__grid-cell_4 {
  grid-area: cell4;
}
.choose__grid_5 .choose__grid-cell_5 {
  grid-area: cell5;
}
.choose__card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 8px;
  border-radius: 36px;
  width: auto;
  height: 100%;
  background: linear-gradient(180deg, rgba(214, 215, 251, 0.2) 0%, rgba(90, 81, 194, 0.2) 100%);
  border: 1px solid #e8e9eb;
  box-shadow: 0px 4px 20px 0px rgba(12, 50, 237, 0.07);
  padding: 32px;
  overflow: hidden;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  position: relative;
  text-decoration: none;
  color: #1d233b;
}
.choose__card::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.5;
  background: linear-gradient(180deg, #9000ed 0%, rgba(151, 71, 255, 0) 100%);
  mix-blend-mode: soft-light;
}
.choose__card:hover {
  box-shadow: 0px 8px 16px 0px rgba(96, 46, 132, 0.15);
  border-color: #9000ed;
}
.choose__card-title {
  font-size: clamp(30px, 2vw, 36px);
  z-index: 0;
}
.choose__card-descr {
  align-self: start;
  z-index: 0;
}
.choose__card-image-container {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: auto;
}
.choose__card-image-container .reflection {
  width: 160px;
  height: 160px;
}
.choose__card-image-container .reflection__img_layer {
  top: 100%;
}
.choose__card-image-container .reflection__img_layer--3 {
  top: 100px;
}
.choose__card-image-container .reflection__img_layer--4 {
  top: 140px;
}
.choose__card-image-container .reflection__img_layer--5 {
  top: 116px;
}
.dark .choose__card {
  border-color: rgba(255, 254, 255, 0.1);
  color: #fffeff;
}
.dark .choose__card::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='432' height='362' viewBox='0 0 432 362' fill='none'%3E%3Cg style='mix-blend-mode:soft-light' opacity='0.5'%3E%3Cpath d='M0 0H432V362H0V0Z' fill='url(%23paint0_linear_880_44920)'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_880_44920' x1='216' y1='0' x2='216' y2='362' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%239000ED'/%3E%3Cstop offset='1' stop-color='%239747FF' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  mix-blend-mode: initial;
  background-size: cover;
}
.dark .choose__card:hover {
  box-shadow: 0px 8px 16px 0px rgba(190, 113, 235, 0.25);
  border-color: #a85bf6;
}
.our-solutions__content {
  display: grid;
  grid-template-rows: auto auto;
  gap: 32px;
}
.our-solutions__descr {
  max-width: 524px;
}
.our-solutions__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 1024px) {
  .our-solutions__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .our-solutions__grid {
    grid-template-columns: 1fr;
  }
}
.solution-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: start;
  gap: 16px;
}
@media (max-width: 768px) {
  .solution-card {
    padding-bottom: 32px;
    border-bottom: 1px solid #d2d3d8;
  }
}
.solution-card__img {
  width: 32px;
  aspect-ratio: 1;
}
.solution-card__title {
  white-space: nowrap;
  padding-bottom: 16px;
  border-bottom: 1px solid #d2d3d8;
}
@media (max-width: 768px) {
  .solution-card__title {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.solution-card__descr {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  justify-items: start;
  gap: 8px;
}
.solution-card__link {
  margin-top: auto;
}
.dark .solution-card {
  border-color: rgba(255, 254, 255, 0.1);
}
.compr-solutns__content {
  display: grid;
  grid-template-rows: auto auto;
  gap: 32px;
}
@media (max-width: 1279px) {
  .compr-solutns__content {
    display: block;
  }
}
.compr-solutns__top-block {
  display: grid;
  grid-template-rows: auto auto;
  gap: 32px;
}
@media (max-width: 1279px) {
  .compr-solutns__top-block {
    margin-bottom: 32px;
  }
}
.compr-solutns__descr {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1024px) {
  .compr-solutns__descr {
    grid-template-columns: 100%;
    justify-items: start;
  }
}
.compr-solutns__bottom-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1279px) {
  .compr-solutns__bottom-block {
    display: none;
  }
}
.compr-solutns__row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 16px;
  height: 230px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.compr-solutns__slider {
  display: none;
}
@media (max-width: 1279px) {
  .compr-solutns__slider {
    display: block;
  }
}
.compr-solutn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  gap: 8px;
  background: rgba(29, 35, 59, 0.0509803922);
  border: 1px solid #d2d3d8;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.compr-solutn__img {
  width: 32px;
  height: 32px;
}
.compr-solutn__title {
  margin-top: auto;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.compr-solutn_large .compr-solutn__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0;
}
.compr-solutn_small .compr-solutn__title {
  max-width: 80%;
  color: #4a4f62;
}
.compr-solutn__description {
  display: block;
  height: 1px;
  gap: 8px;
  opacity: 0;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.compr-solutn_large .compr-solutn__description {
  display: block;
  height: 100px;
  overflow: auto;
  opacity: 1;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.compr-solutn__text {
  color: #4a4f62;
}
.dark .compr-solutn {
  background: rgba(255, 254, 255, 0.0509803922);
  border-color: rgba(255, 254, 255, 0.1);
}
.dark .compr-solutn__title {
  color: rgba(255, 254, 255, 0.8);
}
.dark .compr-solutn__text {
  color: rgba(255, 254, 255, 0.7);
}
.offers__top-block {
  margin-bottom: 32px;
}
.offers__top-block {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
}
.offers .swiper-pagination {
  position: relative;
}
.news__title {
  margin-bottom: 32px;
}
.news__grid {
  display: grid;
  grid-template-columns: minmax(0, min(27vw, 520px)) calc(100% - min(27vw, 520px));
  gap: 16px;
  align-items: start;
}
@media (max-width: 1024px) {
  .news__grid {
    grid-template-columns: 100%;
  }
}
@media (max-width: 1024px) {
  .news__first-card {
    display: none;
  }
}
.news__second__card {
  position: relative;
}
.news__second-card__link-mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
@media only screen and (min-width: 1024px) {
  .news__second-card__link-mobile {
    display: none;
  }
}
.news .banner-card__figure {
  border-radius: 24px;
}
.news .banner-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .news .banner-card__figure-btn {
    display: none;
  }
}
.news .swiper-pagination_custom {
  width: auto;
  text-align: left;
  padding-left: 5%;
  bottom: 4%;
}
.news__link {
  display: none;
}
@media (max-width: 768px) {
  .news__link {
    margin-top: 32px;
    display: block;
  }
}
.backup-service {
  padding-top: 100px;
}
.backup__hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 64px;
  color: #1d233b;
  padding-top: 24px;
}
@media only screen and (min-width: 1024px) {
  .backup__hero {
    padding-top: 39px;
  }
}
@media only screen and (min-width: 1920px) {
  .backup__hero {
    padding-top: 52px;
  }
}
@media only screen and (min-width: 768px) {
  .backup__hero {
    padding-top: 32px;
  }
}
@media only screen and (min-width: 1440px) {
  .backup__hero {
    padding-top: 55px;
  }
}
@media only screen and (min-width: 768px) {
  .backup__hero__container {
    display: flex;
  }
}
@media only screen and (min-width: 1024px) {
  .backup__hero__content {
    width: 80%;
  }
}
@media only screen and (min-width: 1200px) {
  .backup__hero__content {
    width: 65%;
  }
}
@media only screen and (min-width: 1440px) {
  .backup__hero__content {
    width: 788px;
  }
}
.backup__hero__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
  color: #1d233b;
}
@media only screen and (min-width: 1024px) {
  .backup__hero__title {
    font-size: 48px;
  }
}
.backup__hero__title--second {
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.6px;
  color: #7a7d8d;
  margin-bottom: 32px;
}
@media only screen and (min-width: 768px) {
  .backup__hero__title--second {
    max-width: 400px;
  }
}
@media only screen and (min-width: 1024px) {
  .backup__hero__title--second {
    font-size: 36px;
    max-width: 100%;
  }
}
@media only screen and (min-width: 1920px) {
  .backup__hero__title--second {
    max-width: 440px;
  }
}
.backup__hero__description {
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
  color: #9000ed;
}
@media only screen and (min-width: 1024px) {
  .backup__hero__description {
    font-size: 18px;
    line-height: 24px;
  }
}
.backup__hero__characteristics {
  margin-bottom: 32px;
}
@media only screen and (min-width: 1024px) {
  .backup__hero__characteristics {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-column-gap: 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .backup__hero__characteristics {
    grid-column-gap: 32px;
  }
}
.backup__hero__characteristics__item {
  display: flex;
  gap: 8px;
  align-items: start;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
  color: #1d233b;
}
.backup__hero__characteristics__item:not(:last-child) {
  margin-bottom: 16px;
}
@media only screen and (min-width: 1024px) {
  .backup__hero__characteristics__item {
    font-size: 20px;
    line-height: 26px;
  }
}
.backup__hero__characteristics__icon--dark {
  display: none;
}
.backup__hero__price {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 4px;
  padding-right: 16px;
  padding-bottom: 4px;
  border-radius: 0px 32px 32px 0px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
  color: #1d233b;
  background-color: #ffffff;
}
.backup__hero__price::before {
  content: "";
  height: calc(100% - 2px);
  width: 100%;
  background: #ffffff;
  position: absolute;
  top: 1px;
  left: -100%;
}
.backup__hero__price--bg {
  position: relative;
  width: fit-content;
  border-radius: 0px 32px 32px 0px;
  background: linear-gradient(to left, rgb(144, 0, 237), rgba(144, 0, 237, 0.5) 80%);
  margin-bottom: 32px;
  padding-top: 1px;
  padding-right: 1px;
  padding-bottom: 1px;
}
.backup__hero__price--bg::before {
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(to left, rgba(144, 0, 237, 0.5), rgba(144, 0, 237, 0) 50%);
  position: absolute;
  top: 0;
  left: -100%;
}
.backup__hero__price__value {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.48px;
  color: #9000ed;
}
.backup__hero__btn {
  width: 100%;
  height: 48px;
}
@media only screen and (min-width: 768px) {
  .backup__hero__btn {
    width: fit-content;
  }
}
.backup__hero__image {
  position: relative;
  display: none;
  width: 34%;
}
@media only screen and (min-width: 768px) {
  .backup__hero__image {
    display: flex;
    align-items: flex-start;
    padding-top: 125px;
    height: 707px;
  }
}
@media only screen and (min-width: 1024px) {
  .backup__hero__image {
    padding-top: 92px;
    width: auto;
    height: 658px;
  }
}
@media only screen and (min-width: 1920px) {
  .backup__hero__image {
    height: 701px;
    padding-top: 104px;
  }
}
.backup__hero__image__ellipse {
  position: absolute;
  width: 392.872px;
  height: 672.68px;
  flex-shrink: 0;
  border-radius: 672.68px;
  opacity: 0.2;
  background: #4B18F2;
  filter: blur(65.4613418579px);
}
@media only screen and (min-width: 768px) {
  .backup__hero__image__ellipse {
    transform: rotate(-45deg) translate(40%, 0%);
  }
}
@media only screen and (min-width: 1024px) {
  .backup__hero__image__ellipse {
    width: 415.131px;
    height: 710.793px;
    border-radius: 710.793px;
  }
}
@media only screen and (min-width: 1920px) {
  .backup__hero__image__ellipse {
    width: 554.785px;
    height: 949.91px;
    border-radius: 949.91px;
    transform: rotate(-45deg) translate(70%, -10%);
  }
}
.backup__hero__image__img {
  position: relative;
  left: 30px;
  width: 361.09px;
  height: 361.09px;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .backup__hero__image__img {
    left: 80px;
    width: 436.409px;
    height: 436.409px;
  }
}
@media only screen and (min-width: 1920px) {
  .backup__hero__image__img {
    width: 500px;
    height: 500px;
    left: 184px;
  }
}
.backup__hero__image__img-shadow {
  position: absolute;
  bottom: 104px;
  left: 36px;
  opacity: 0.9;
  width: 350.257px;
  height: 220px;
  filter: blur(5.0552549362px);
  background-image: url("../assets/backupService/hero/backup-hero-img.webp");
  background-position: bottom;
  background-size: cover;
}
@media only screen and (min-width: 1024px) {
  .backup__hero__image__img-shadow {
    left: 80px;
    bottom: 0;
    width: 423.317px;
    height: 260.025px;
  }
}
@media only screen and (min-width: 1920px) {
  .backup__hero__image__img-shadow {
    width: 485px;
    height: 305px;
    left: 191px;
    bottom: -64px;
  }
}
.backup__hero__image__img-filter {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 737px;
  height: 220px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
  opacity: 0.7;
  transform: rotate(180deg);
}
@media only screen and (min-width: 1024px) {
  .backup__hero__image__img-filter {
    width: 423.317px;
    height: 260.025px;
  }
}
@media only screen and (min-width: 1920px) {
  .backup__hero__image__img-filter {
    width: 952px;
    height: 182.661px;
    bottom: 64px;
  }
}
html.dark .backup__hero {
  color: #fffeff;
}
html.dark .backup__hero__title {
  color: #fffeff;
}
html.dark .backup__hero__title--second {
  color: rgba(255, 254, 255, 0.7);
}
html.dark .backup__hero__description {
  color: #a85bf6;
}
html.dark .backup__hero__characteristics__item {
  color: #fffeff;
}
html.dark .backup__hero__characteristics__item svg path {
  stroke: #a85bf6;
}
html.dark .backup__hero__price {
  color: #fffeff;
  background-color: #1d233b;
}
html.dark .backup__hero__price::before {
  background: #1d233b;
}
html.dark .backup__hero__price--bg {
  background: linear-gradient(to left, rgb(168, 91, 246), rgba(168, 91, 246, 0.5) 80%);
}
html.dark .backup__hero__price--bg::before {
  background: linear-gradient(to left, rgba(168, 91, 246, 0.5), rgba(168, 91, 246, 0) 50%);
}
html.dark .backup__hero__price__value {
  color: #a85bf6;
}
html.dark .backup__hero__image__img-filter {
  background: linear-gradient(0deg, rgba(29, 35, 59, 0) 0%, #1D233B 100%);
}
.backup-advantages {
  color: #1d233b;
}
.backup-advantages__title {
  margin-bottom: 32px;
}
.backup-advantages__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .backup-advantages__content {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
  }
  .backup-advantages__content .divider {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .backup-advantages__content {
    gap: 32px 16px;
  }
}
.backup-item {
  display: flex;
  flex-direction: column;
}
.backup-item.expanded .backup-item__btn {
  transform: rotate(180deg);
}
.backup-item.expanded .backup-item__descr {
  opacity: 1;
  pointer-events: all;
  margin-top: 16px;
}
@media only screen and (min-width: 768px) {
  .backup-item {
    gap: 8px;
    padding: 16px 16px 16px 40px;
  }
}
.backup-item__head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.backup-item__number {
  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) {
  .backup-item__number {
    position: absolute;
    left: -32px;
    bottom: -15px;
    font-size: 95px;
    line-height: 100%;
    letter-spacing: 1.9px;
  }
}
.backup-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) {
  .backup-item__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0.48px;
    z-index: 1;
  }
}
.backup-item__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 768px) {
  .backup-item__btn {
    display: none;
  }
}
.backup-item__btn svg path {
  stroke: #a5a7b1;
}
.backup-item__descr {
  opacity: 0;
  max-height: 0px;
  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: #a5a7b1;
}
@media only screen and (min-width: 768px) {
  .backup-item__descr {
    opacity: 1;
    max-height: none;
    pointer-events: all;
    font-size: 18px;
    line-height: 24px;
    color: #1d233b;
  }
}
html.dark .backup-advantages {
  color: #fffeff;
}
html.dark .backup-item__number {
  opacity: 0.4;
  color: #a85bf6;
}
html.dark .backup-item__btn svg path {
  stroke: rgba(255, 254, 255, 0.4);
}
html.dark .backup-item__descr {
  color: rgba(255, 254, 255, 0.4);
}
@media only screen and (min-width: 768px) {
  html.dark .backup-item__descr {
    color: #fffeff;
  }
}
.backup-range {
  color: #1d233b;
}
.backup-range__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.backup-range__txt {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.4px;
}
@media only screen and (min-width: 1024px) {
  .backup-range__txt {
    max-width: 50%;
  }
}
.backup-range__tiles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .backup-range__tiles {
    flex-direction: row;
  }
}
.backup-range__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 0;
  width: 100%;
  border-radius: 12px;
  background-color: rgba(29, 35, 59, 0.03);
}
.backup-range__item__img {
  width: 64px;
  height: 64px;
}
html.dark .backup-range {
  color: #fffeff;
}
html.dark .backup-range__toggle {
  background-color: rgba(255, 254, 255, 0.05);
}
html.dark .backup-range__item {
  background-color: rgba(255, 254, 255, 0.05);
}
.cloud {
  margin-top: 100px;
  overflow: hidden;
}
.cloud__hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 64px;
  padding-top: 24px;
  color: #1d233b;
}
@media only screen and (min-width: 768px) {
  .cloud__hero {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  .cloud__hero {
    margin-bottom: 24px;
    padding-top: 39px;
  }
}
@media only screen and (min-width: 1920px) {
  .cloud__hero {
    margin-bottom: 102px;
    padding-top: 45px;
  }
}
@media only screen and (min-width: 768px) {
  .cloud__hero__container {
    display: flex;
  }
}
@media only screen and (min-width: 1024px) {
  .cloud__hero__content {
    width: 80%;
  }
}
@media only screen and (min-width: 1200px) {
  .cloud__hero__content {
    width: 65%;
  }
}
@media only screen and (min-width: 1440px) {
  .cloud__hero__content {
    width: 788px;
  }
}
.cloud__hero__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
  color: #1d233b;
}
@media only screen and (min-width: 1024px) {
  .cloud__hero__title {
    font-size: 48px;
  }
}
.cloud__hero__title--second {
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.6px;
  color: #7a7d8d;
  margin-bottom: 32px;
}
@media only screen and (min-width: 1024px) {
  .cloud__hero__title--second {
    font-size: 36px;
    width: 468px;
  }
}
.cloud__hero__description {
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
}
@media only screen and (min-width: 1024px) {
  .cloud__hero__description {
    font-size: 18px;
    line-height: 24px;
  }
}
.cloud__hero__characteristics {
  margin-bottom: 32px;
}
@media only screen and (min-width: 1024px) {
  .cloud__hero__characteristics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 24px;
  }
}
.cloud__hero__characteristics__item {
  display: flex;
  gap: 8px;
  align-items: start;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
  color: #1d233b;
}
.cloud__hero__characteristics__item:not(:last-child) {
  margin-bottom: 16px;
}
@media only screen and (min-width: 1024px) {
  .cloud__hero__characteristics__item {
    font-size: 20px;
    line-height: 26px;
  }
}
.cloud__hero__price {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 4px;
  padding-right: 16px;
  padding-bottom: 4px;
  border-radius: 0 32px 32px 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
  color: #1d233b;
  background-color: #ffffff;
}
.cloud__hero__price::before {
  content: "";
  height: calc(100% - 2px);
  width: 100%;
  background: #ffffff;
  position: absolute;
  top: 1px;
  left: -100%;
}
.cloud__hero__price--bg {
  position: relative;
  width: fit-content;
  border-radius: 0px 32px 32px 0px;
  background: linear-gradient(to left, rgb(144, 0, 237), rgba(144, 0, 237, 0.5) 80%);
  margin-bottom: 32px;
  padding-top: 1px;
  padding-right: 1px;
  padding-bottom: 1px;
}
.cloud__hero__price--bg::before {
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(to left, rgba(144, 0, 237, 0.5), rgba(144, 0, 237, 0) 50%);
  position: absolute;
  top: 0;
  left: -100%;
}
.cloud__hero__price__value {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.48px;
  color: #9000ed;
}
.cloud__hero__btn {
  width: 100%;
  height: 48px;
}
@media only screen and (min-width: 768px) {
  .cloud__hero__btn {
    width: fit-content;
  }
}
.cloud__hero__image {
  position: relative;
  display: none;
  width: 50%;
}
@media only screen and (min-width: 768px) {
  .cloud__hero__image {
    display: flex;
    align-items: flex-start;
    padding-top: 113px;
    height: 657px;
  }
}
@media only screen and (min-width: 1024px) {
  .cloud__hero__image {
    padding-top: 114px;
    width: auto;
    height: 605px;
  }
}
@media only screen and (min-width: 1920px) {
  .cloud__hero__image {
    height: 639px;
    padding-top: 109px;
  }
}
.cloud__hero__image__ellipse {
  position: absolute;
  width: 402.731px;
  height: 689.561px;
  flex-shrink: 0;
  border-radius: 689.561px;
  opacity: 0.2;
  background: #4B18F2;
  filter: blur(61.4401512146px);
}
@media only screen and (min-width: 768px) {
  .cloud__hero__image__ellipse {
    transform: rotate(-45deg) translate(40%, -10%);
  }
}
@media only screen and (min-width: 1920px) {
  .cloud__hero__image__ellipse {
    width: 554.785px;
    height: 949.91px;
    border-radius: 949.91px;
    transform: rotate(-45deg) translate(70%, -10%);
  }
}
.cloud__hero__image__img {
  position: relative;
  left: 85px;
  width: 339.116px;
  height: 439.494px;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .cloud__hero__image__img {
    left: 77px;
  }
}
@media only screen and (min-width: 1920px) {
  .cloud__hero__image__img {
    width: 375px;
    height: 486px;
    left: 210px;
  }
}
.cloud__hero__image__img-shadow {
  background-image: url("../assets/cloudBox/hero/cloud-hero-img-desk.webp");
  background-position: bottom;
  background-repeat: no-repeat;
  opacity: 0.8;
  filter: blur(9px);
  width: 340px;
  height: 166px;
  position: absolute;
  bottom: 16px;
  left: 85px;
  transform: rotate(180deg);
}
@media only screen and (min-width: 1024px) {
  .cloud__hero__image__img-shadow {
    left: 77px;
    bottom: -20px;
  }
}
@media only screen and (min-width: 1920px) {
  .cloud__hero__image__img-shadow {
    width: 375px;
    height: 247px;
    left: 210px;
    bottom: -91px;
  }
}
.cloud__hero__image__img-shadow__layer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
}
html.dark .cloud__hero {
  color: #fffeff;
}
html.dark .cloud__hero__nav {
  color: rgba(255, 254, 255, 0.4);
}
html.dark .cloud__hero__title {
  color: #fffeff;
}
html.dark .cloud__hero__title--second {
  color: rgba(255, 254, 255, 0.7);
}
html.dark .cloud__hero__description {
  color: #fffeff;
}
html.dark .cloud__hero__characteristics__item {
  color: #fffeff;
}
html.dark .cloud__hero__price {
  color: #fffeff;
  background-color: #1d233b;
}
html.dark .cloud__hero__price::before {
  background: #1d233b;
}
html.dark .cloud__hero__price--bg {
  background: linear-gradient(to left, rgb(168, 91, 246), rgba(168, 91, 246, 0.5) 80%);
}
html.dark .cloud__hero__price--bg::before {
  background: linear-gradient(to left, rgba(168, 91, 246, 0.5), rgba(168, 91, 246, 0) 50%);
}
html.dark .cloud__hero__price__value {
  color: #a85bf6;
}
html.dark .cloud__hero__image__img-shadow__layer {
  background: linear-gradient(0deg, rgba(29, 35, 59, 0) 0%, #1D233B 59.5%);
}
.cloud-advantages {
  color: #1d233b;
}
.cloud-advantages__title {
  margin-bottom: 32px;
}
.cloud-advantages__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .cloud-advantages__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .cloud-advantages__items .divider {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .cloud-advantages__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
.cloud-card {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .cloud-card {
    gap: 8px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid #d2d3d8;
  }
}
.cloud-card.expanded .cloud-card__arrow {
  transform: rotate(180deg);
}
.cloud-card.expanded .cloud-card__descr {
  opacity: 1;
  margin-top: 16px;
}
.cloud-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .cloud-card__head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.cloud-card__picture {
  flex-shrink: 0;
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: linear-gradient(258deg, rgba(243, 236, 254, 0.4) 1.8%, rgba(241, 236, 249, 0.4) 28.07%, rgba(226, 212, 252, 0.4) 56.77%, rgba(241, 236, 249, 0.4) 73.8%, rgba(243, 236, 254, 0.4) 99.09%);
}
@media only screen and (min-width: 768px) {
  .cloud-card__picture {
    width: 100%;
    height: 220px;
    border-radius: 12px;
  }
}
.cloud-card__picture .icon-big {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  opacity: 0.1;
}
@media only screen and (min-width: 768px) {
  .cloud-card__picture .icon-big {
    width: 160px;
    height: 160px;
  }
}
.cloud-card__picture .icon-small {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
}
@media only screen and (min-width: 768px) {
  .cloud-card__picture .icon-small {
    width: 64px;
    height: 64px;
  }
}
.cloud-card__picture .icon-small--dark {
  display: none;
}
.cloud-card__big-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46.545px;
  height: 46.545px;
  opacity: 0.1;
}
.cloud-card__big-icon path {
  stroke: #9000ed;
}
@media only screen and (min-width: 768px) {
  .cloud-card__big-icon {
    width: 160px;
    height: 160px;
  }
}
.cloud-card__small-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18.618px;
  height: 18.618px;
}
.cloud-card__small-icon path {
  stroke: #9000ed;
}
@media only screen and (min-width: 768px) {
  .cloud-card__small-icon {
    width: 64px;
    height: 64px;
  }
}
.cloud-card__title {
  flex-grow: 1;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.4px;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .cloud-card__title {
    padding: 0 8px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: 0.48px;
  }
}
.cloud-card__arrow {
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cloud-card__arrow path {
  stroke: #a5a7b1;
}
@media only screen and (min-width: 768px) {
  .cloud-card__arrow {
    display: none;
  }
}
.cloud-card__descr {
  opacity: 0;
  max-height: 0px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.32px;
  color: #7a7d8d;
}
@media only screen and (min-width: 768px) {
  .cloud-card__descr {
    opacity: 1;
    max-height: fit-content;
    padding: 0 8px;
    color: #1d233b;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.36px;
  }
}
html.dark .cloud-advantages {
  color: #fffeff;
}
@media only screen and (min-width: 768px) {
  html.dark .cloud-card {
    background-color: rgba(255, 254, 255, 0.05);
    border-color: rgba(255, 254, 255, 0.1);
  }
}
html.dark .cloud-card__picture {
  background: linear-gradient(258deg, rgba(29, 35, 59, 0.8) 1.8%, rgba(72, 17, 140, 0.8) 29.04%, rgba(87, 10, 168, 0.8) 56.77%, rgba(46, 13, 115, 0.8) 73.8%, rgba(29, 35, 59, 0.8) 99.09%);
}
html.dark .cloud-card__picture .icon-big {
  opacity: 0.4;
}
html.dark .cloud-card__picture .icon-small {
  display: none;
}
html.dark .cloud-card__picture .icon-small--dark {
  display: block;
}
html.dark .cloud-card__big-icon {
  opacity: 0.4;
}
html.dark .cloud-card__small-icon path {
  stroke: #a85bf6;
}
html.dark .cloud-card__arrow path {
  stroke: rgba(255, 254, 255, 0.4);
}
html.dark .cloud-card__descr {
  color: rgba(255, 254, 255, 0.7);
}
@media only screen and (min-width: 768px) {
  html.dark .cloud-card__descr {
    color: #fffeff;
  }
}
.range {
  color: #1d233b;
}
.range__title {
  margin-bottom: 32px;
}
.range__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 1024px) {
  .range__content {
    flex-direction: row;
  }
}
.range__message {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.36px;
}
@media only screen and (min-width: 1024px) {
  .range__message {
    flex-grow: 1;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
.range__tiles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 1024px) {
  .range__tiles {
    flex: 1 0 75%;
  }
}
.range__row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .range__row {
    flex-direction: row;
  }
}
.range__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 0;
  width: 100%;
  border-radius: 12px;
  background-color: rgba(29, 35, 59, 0.03);
}
@media only screen and (min-width: 768px) {
  .range__item--grow {
    flex: 1 0 66%;
  }
}
.range__item__title {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.4px;
}
.range__item__img {
  width: 64px;
  height: 64px;
}
html.dark .range {
  color: #fffeff;
}
html.dark .range__item {
  background-color: rgba(255, 254, 255, 0.05);
}
.dedicated-server {
  margin-top: 100px;
  padding-top: 16px;
  overflow: hidden;
}
.dedicated-server__hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 64px;
}
@media only screen and (min-width: 768px) {
  .dedicated-server__hero {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .dedicated-server__hero__container {
    display: flex;
  }
}
.dedicated-server__hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  .dedicated-server__hero__content {
    width: 80%;
  }
}
@media only screen and (min-width: 1200px) {
  .dedicated-server__hero__content {
    width: 65%;
  }
}
@media only screen and (min-width: 1440px) {
  .dedicated-server__hero__content {
    width: 55%;
  }
}
.dedicated-server__hero__nav {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.dedicated-server__hero__nav__link {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.28px;
  color: #a5a7b1;
  text-decoration: none;
}
.dedicated-server__hero__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
  color: #1d233b;
}
@media only screen and (min-width: 1024px) {
  .dedicated-server__hero__title {
    font-size: 48px;
  }
}
.dedicated-server__hero__title--second {
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.6px;
  color: #7a7d8d;
  margin-bottom: 32px;
}
@media only screen and (min-width: 1024px) {
  .dedicated-server__hero__title--second {
    font-size: 36px;
  }
}
.dedicated-server__hero__description {
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
  color: #9000ed;
}
@media only screen and (min-width: 1024px) {
  .dedicated-server__hero__description {
    font-size: 18px;
    line-height: 24px;
  }
}
.dedicated-server__hero__characteristics {
  margin-bottom: 32px;
}
@media only screen and (min-width: 1024px) {
  .dedicated-server__hero__characteristics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 24px;
  }
}
.dedicated-server__hero__characteristics__item {
  display: flex;
  gap: 8px;
  align-items: start;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
  color: #1d233b;
}
.dedicated-server__hero__characteristics__item:not(:last-child) {
  margin-bottom: 16px;
}
@media only screen and (min-width: 1024px) {
  .dedicated-server__hero__characteristics__item {
    font-size: 20px;
    line-height: 26px;
  }
}
.dedicated-server__hero__price {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 4px;
  padding-right: 16px;
  padding-bottom: 4px;
  border-radius: 0px 32px 32px 0px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
  color: #1d233b;
  background-color: #ffffff;
}
.dedicated-server__hero__price::before {
  content: "";
  height: calc(100% - 2px);
  width: 100%;
  background: #ffffff;
  position: absolute;
  top: 1px;
  left: -100%;
}
.dedicated-server__hero__price--bg {
  position: relative;
  width: fit-content;
  border-radius: 0px 32px 32px 0px;
  background: linear-gradient(to left, rgb(144, 0, 237), rgba(144, 0, 237, 0.5) 80%);
  margin-bottom: 32px;
  padding-top: 1px;
  padding-right: 1px;
  padding-bottom: 1px;
}
.dedicated-server__hero__price--bg::before {
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(to left, rgba(144, 0, 237, 0.5), rgba(144, 0, 237, 0) 50%);
  position: absolute;
  top: 0;
  left: -100%;
}
.dedicated-server__hero__price__value {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.48px;
  color: #9000ed;
}
.dedicated-server__hero__btn {
  width: 100%;
  height: 48px;
}
@media only screen and (min-width: 768px) {
  .dedicated-server__hero__btn {
    width: fit-content;
  }
}
.dedicated-server__hero__image {
  position: relative;
  display: none;
  width: 50%;
}
@media only screen and (min-width: 768px) {
  .dedicated-server__hero__image {
    display: flex;
    align-items: flex-start;
    padding-top: 145px;
    height: 691px;
  }
}
@media only screen and (min-width: 1024px) {
  .dedicated-server__hero__image {
    height: 640px;
    padding-top: 94px;
    width: auto;
  }
}
.dedicated-server__hero__image__ellipse {
  position: absolute;
  width: 453.789px;
  height: 776.984px;
  transform: rotate(-45deg) translate(50%, 10%);
  flex-shrink: 0;
  border-radius: 776.984px;
  opacity: 0.2;
  background: #4B18F2;
  filter: blur(61.3466262817px);
}
@media only screen and (min-width: 768px) {
  .dedicated-server__hero__image__ellipse {
    transform: rotate(-45deg) translate(70%, 0);
  }
}
@media only screen and (min-width: 1024px) {
  .dedicated-server__hero__image__ellipse {
    transform: rotate(-45deg) translate(60%, -20%);
  }
}
@media only screen and (min-width: 1440px) {
  .dedicated-server__hero__image__ellipse {
    transform: rotate(-45deg) translate(70%, -10%);
  }
}
.dedicated-server__hero__image__img {
  position: relative;
  left: 85px;
  width: 317px;
  height: 315px;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .dedicated-server__hero__image__img {
    left: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .dedicated-server__hero__image__img {
    left: 100px;
    width: 375px;
    height: 372px;
  }
}
@media only screen and (min-width: 1920px) {
  .dedicated-server__hero__image__img {
    width: 420px;
    height: 418px;
  }
}
.dedicated-server__hero__image__img-shadow {
  position: absolute;
  bottom: 80px;
  left: 91.5px;
  width: 293px;
  height: 203px;
  transform: scale(1, -1);
  background: url("../assets/dedicatedServer/dedicated-sever-hero.webp") lightgray 0px -2.105px/100% 119.261% no-repeat;
  filter: blur(8.4086818695px);
  flex-shrink: 0;
  background-position: center;
}
@media only screen and (min-width: 1024px) {
  .dedicated-server__hero__image__img-shadow {
    left: 10px;
  }
}
@media only screen and (min-width: 1440px) {
  .dedicated-server__hero__image__img-shadow {
    left: 114px;
    width: 346px;
    height: 211px;
    bottom: 0;
  }
}
@media only screen and (min-width: 1920px) {
  .dedicated-server__hero__image__img-shadow {
    width: 388px;
    height: 182.661px;
  }
}
.dedicated-server__hero__image__img-filter {
  position: absolute;
  top: -50px;
  left: -20px;
  z-index: 1;
  width: 250%;
  height: 150%;
  opacity: 0.9;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
}
@media only screen and (min-width: 1440px) {
  .dedicated-server__hero__image__img-filter {
    top: 0;
  }
}
html.dark .dedicated-server__hero__nav {
  color: rgba(255, 254, 255, 0.4);
}
html.dark .dedicated-server__hero__title {
  color: #fffeff;
}
html.dark .dedicated-server__hero__title--second {
  color: rgba(255, 254, 255, 0.7);
}
html.dark .dedicated-server__hero__description {
  color: #a85bf6;
}
html.dark .dedicated-server__hero__characteristics__item {
  color: #fffeff;
}
html.dark .dedicated-server__hero__price {
  color: #fffeff;
  background-color: #1d233b;
}
html.dark .dedicated-server__hero__price::before {
  background: #1d233b;
}
html.dark .dedicated-server__hero__price--bg {
  background: linear-gradient(to left, rgb(168, 91, 246), rgba(168, 91, 246, 0.5) 80%);
}
html.dark .dedicated-server__hero__price--bg::before {
  background: linear-gradient(to left, rgba(168, 91, 246, 0.5), rgba(168, 91, 246, 0) 50%);
}
html.dark .dedicated-server__hero__price__value {
  color: #a85bf6;
}
html.dark .dedicated-server__hero__image__img-shadow {
  background: url("../assets/dedicatedServer/dedicated-sever-hero.webp") 0px -2.105px/100% 119.261% no-repeat;
}
html.dark .dedicated-server__hero__image__img-filter {
  background: linear-gradient(0deg, rgba(29, 35, 59, 0) 0%, #1D233B 100%);
}
.take {
  color: #1d233b;
}
@media only screen and (min-width: 1024px) {
  .take--large {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
.take__top {
  margin-bottom: 32px;
}
@media only screen and (min-width: 1024px) {
  .take__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
  }
}
.take__buttons {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .take__buttons {
    display: flex;
    gap: 8px;
    padding: 7px 0;
  }
}
.take__buttons .swiper-button-prev,
.take__buttons .swiper-button-next {
  position: static;
  width: 48px;
  height: 48px;
  padding: 14px;
}
.take__box-position {
  display: flex;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  overflow-x: visible;
}
.take__slider {
  overflow: visible;
}
.take__slider.swiper.swiper_custom {
  margin-right: 0;
  padding-bottom: 56px;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .take__slider.swiper.swiper_custom {
    padding-bottom: 44px;
  }
}
.take__slider .swiper-wrapper {
  height: auto !important;
}
.take__slider .swiper-slide {
  width: fit-content;
  cursor: grab;
}
.take__slider .swiper-slide:active {
  cursor: grabbing;
}
.take__slider.swiper_custom.swiper-initialized:after {
  bottom: 24px;
  left: 70px;
  transform: translateX(0);
  width: calc(100% - 126px);
}
@media only screen and (min-width: 1024px) {
  .take__slider.swiper_custom.swiper-initialized:after {
    display: none;
  }
}
.take__slider .swiper-button-prev {
  left: 16px;
}
.take__slider .swiper-button-next {
  left: auto;
  right: 0;
}
.take__slider .swiper-button-prev,
.take__slider .swiper-button-next {
  height: 48px;
  width: 48px;
  padding: 14px;
  bottom: 0;
}
@media only screen and (min-width: 1024px) {
  .take__slider .swiper-button-prev,
  .take__slider .swiper-button-next {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .take__slider .swiper-pagination {
    bottom: 0;
  }
}
.take__slider .swiper-pagination-bullet {
  opacity: 1;
}
.take__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 320px;
  height: 100%;
  min-height: 340px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid #d2d3d8;
  background-color: rgba(29, 35, 59, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media only screen and (min-width: 768px) {
  .take__card {
    width: 464px;
    min-height: 268px;
    padding: 24px;
  }
}
@media only screen and (min-width: 1024px) {
  .take__card {
    width: 432px;
    min-height: 288px;
  }
}
@media only screen and (min-width: 1920px) {
  .take__card {
    width: 520px;
    min-height: 248px;
  }
}
.take__card__icon {
  flex-shrink: 0;
}
.take__card__icon path {
  stroke: #9000ed;
}
.take__card__title {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.48px;
}
.take__card__txt {
  flex-shrink: 0;
  flex-grow: 1;
  font-size: 16px;
  line-height: 20px;
  color: #4a4f62;
}
html.dark .take {
  color: #fffeff;
}
html.dark .take__card {
  border-color: rgba(255, 254, 255, 0.2);
  background-color: rgba(255, 254, 255, 0.05);
}
html.dark .take__card__icon path {
  stroke: #a85bf6;
}
html.dark .take__card__txt {
  color: rgba(255, 254, 255, 0.8);
}
html.dark .take__slider .swiper-pagination-bullet {
  opacity: 0.2;
}
html.dark .take__slider .swiper-pagination-bullet-active {
  opacity: 1;
}
.systems {
  color: #1d233b;
  overflow: hidden;
  padding-bottom: 20px;
}
.systems__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media only screen and (min-width: 1024px) {
  .systems__options {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.systems__nav {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .systems__nav {
    display: flex;
    gap: 8px;
    height: fit-content;
  }
  .systems__nav .swiper-button-prev,
  .systems__nav .swiper-button-next {
    position: static;
    height: 48px;
    width: 48px;
    padding: 14px;
  }
}
.systems__box-position {
  display: flex;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  overflow-x: visible;
}
.systems__slider {
  overflow: visible;
}
.systems__slider.swiper.swiper_custom {
  margin-right: 0;
  padding-bottom: 56px;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .systems__slider.swiper.swiper_custom {
    padding-bottom: 52px;
  }
}
.systems__slider .swiper-wrapper {
  min-height: fit-content;
}
.systems__slider .swiper-button-prev {
  left: 16px;
}
.systems__slider .swiper-button-next {
  left: auto;
  right: 0;
}
.systems__slider .swiper-button-prev,
.systems__slider .swiper-button-next {
  height: 48px;
  width: 48px;
  padding: 14px;
  bottom: 0;
}
@media only screen and (min-width: 1024px) {
  .systems__slider .swiper-button-prev,
  .systems__slider .swiper-button-next {
    display: none;
  }
}
.systems__slider.swiper_custom.swiper-initialized:after {
  bottom: 24px;
  left: 70px;
  transform: translateX(0);
  width: calc(100% - 126px);
}
@media only screen and (min-width: 1024px) {
  .systems__slider.swiper_custom.swiper-initialized:after {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .systems__slider .swiper-pagination {
    bottom: 0;
  }
}
.systems__slider .swiper-pagination-bullet {
  opacity: 1;
}
.systems__card {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 320px;
  padding: 40px 0;
  border-radius: 22px;
  background-color: rgba(29, 35, 59, 0.03);
}
.systems__card.visible {
  display: flex;
}
@media only screen and (min-width: 768px) {
  .systems__card {
    width: 208px;
  }
}
.systems__card__title {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
}
.systems__card__img {
  width: 64px;
  height: 64px;
}
html.dark .systems {
  color: #fffeff;
}
html.dark .systems__card {
  background-color: rgba(255, 254, 255, 0.05);
}
html.dark .systems__slider .swiper-pagination-bullet {
  opacity: 0.2;
}
html.dark .systems__slider .swiper-pagination-bullet-active {
  opacity: 1;
}
html.dark .systems .toggle {
  background-color: rgba(255, 254, 255, 0.05);
}
.server-management {
  padding-top: 100px;
  overflow: hidden;
}
.server__hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 64px;
  padding-top: 24px;
  color: #1d233b;
}
@media only screen and (min-width: 768px) {
  .server__hero {
    margin-bottom: 32px;
  }
}
@media only screen and (min-width: 1024px) {
  .server__hero {
    padding-top: 39px;
  }
}
@media only screen and (min-width: 1440px) {
  .server__hero {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1920px) {
  .server__hero {
    padding-top: 45px;
  }
}
@media only screen and (min-width: 768px) {
  .server__hero__container {
    display: flex;
  }
}
@media only screen and (min-width: 1024px) {
  .server__hero__content {
    width: 80%;
  }
}
@media only screen and (min-width: 1200px) {
  .server__hero__content {
    width: 65%;
  }
}
@media only screen and (min-width: 1440px) {
  .server__hero__content {
    width: 788px;
  }
}
.server__hero__breadcrumb {
  margin-bottom: 24px;
}
@media only screen and (min-width: 1024px) {
  .server__hero__breadcrumb {
    margin-bottom: 39px;
  }
}
@media only screen and (min-width: 1920px) {
  .server__hero__breadcrumb {
    margin-bottom: 45px;
  }
}
.server__hero__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
  color: #1d233b;
}
@media only screen and (min-width: 1024px) {
  .server__hero__title {
    font-size: 48px;
  }
}
.server__hero__title--second {
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.6px;
  color: #7a7d8d;
  margin-bottom: 32px;
}
@media only screen and (min-width: 1024px) {
  .server__hero__title--second {
    font-size: 36px;
  }
}
.server__hero__description {
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
  color: #9000ed;
}
@media only screen and (min-width: 1024px) {
  .server__hero__description {
    font-size: 18px;
    line-height: 24px;
  }
}
.server__hero__characteristics {
  margin-bottom: 32px;
}
@media only screen and (min-width: 1024px) {
  .server__hero__characteristics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 24px;
  }
}
.server__hero__characteristics__item {
  display: flex;
  gap: 8px;
  align-items: start;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
  color: #1d233b;
}
.server__hero__characteristics__item:not(:last-child) {
  margin-bottom: 16px;
}
@media only screen and (min-width: 1024px) {
  .server__hero__characteristics__item {
    font-size: 20px;
    line-height: 26px;
  }
}
.server__hero__characteristics__item svg {
  flex-shrink: 0;
}
.server__hero__characteristics__item svg path {
  stroke: #9000ed;
}
.server__hero__price {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 4px;
  padding-right: 16px;
  padding-bottom: 4px;
  border-radius: 0px 32px 32px 0px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
  color: #1d233b;
  background-color: #ffffff;
}
.server__hero__price::before {
  content: "";
  height: calc(100% - 2px);
  width: 100%;
  background: #ffffff;
  position: absolute;
  top: 1px;
  left: -100%;
}
.server__hero__price--bg {
  position: relative;
  width: fit-content;
  border-radius: 0px 32px 32px 0px;
  background: linear-gradient(to left, rgb(144, 0, 237), rgba(144, 0, 237, 0.5) 80%);
  margin-bottom: 32px;
  padding-top: 1px;
  padding-right: 1px;
  padding-bottom: 1px;
}
.server__hero__price--bg::before {
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(to left, rgba(144, 0, 237, 0.5), rgba(144, 0, 237, 0) 50%);
  position: absolute;
  top: 0;
  left: -100%;
}
.server__hero__price__value {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.48px;
  color: #9000ed;
}
.server__hero__btn {
  width: 100%;
  height: 48px;
}
@media only screen and (min-width: 768px) {
  .server__hero__btn {
    width: fit-content;
  }
}
.server__hero__image {
  position: relative;
  display: none;
  width: 35%;
}
@media only screen and (min-width: 768px) {
  .server__hero__image {
    display: flex;
    align-items: flex-start;
    padding-top: 137px;
    height: 701px;
  }
}
@media only screen and (min-width: 1024px) {
  .server__hero__image {
    padding-top: 123px;
    width: auto;
    height: 661px;
  }
}
@media only screen and (min-width: 1920px) {
  .server__hero__image {
    height: 701px;
    padding-top: 89px;
  }
}
.server__hero__image__ellipse {
  position: absolute;
  width: 362.555px;
  height: 620.771px;
  flex-shrink: 0;
  border-radius: 620.771px;
  opacity: 0.2;
  background: #4B18F2;
  filter: blur(57.938495636px);
}
@media only screen and (min-width: 768px) {
  .server__hero__image__ellipse {
    transform: rotate(-45deg) translate(60%, 0%);
  }
}
@media only screen and (min-width: 1024px) {
  .server__hero__image__ellipse {
    width: 366.741px;
    height: 627.939px;
  }
}
@media only screen and (min-width: 1920px) {
  .server__hero__image__ellipse {
    width: 554.785px;
    height: 949.91px;
    border-radius: 949.91px;
    transform: rotate(-45deg) translate(70%, -10%);
  }
}
.server__hero__image__img {
  position: relative;
  left: 29px;
  width: 431.788px;
  height: 431.788px;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .server__hero__image__img {
    left: 53px;
  }
}
@media only screen and (min-width: 1920px) {
  .server__hero__image__img {
    width: 494px;
    height: 494px;
    left: 164px;
  }
}
.server__hero__image__img-shadow {
  opacity: 0.8;
  flex-shrink: 0;
  width: 259.597px;
  height: 321.656px;
  position: absolute;
  bottom: 24px;
  left: 169px;
}
@media only screen and (min-width: 1024px) {
  .server__hero__image__img-shadow {
    left: 193px;
    bottom: 0;
  }
}
@media only screen and (min-width: 1920px) {
  .server__hero__image__img-shadow {
    width: 297px;
    height: 368px;
    left: 324px;
    bottom: -6px;
  }
}
.server__hero__image__floor {
  position: absolute;
  left: 0;
  bottom: 104px;
  width: 420px;
  height: 180px;
}
@media only screen and (min-width: 1024px) {
  .server__hero__image__floor {
    left: 24px;
    bottom: 80px;
  }
}
@media only screen and (min-width: 1920px) {
  .server__hero__image__floor {
    left: 161px;
    bottom: 94px;
  }
}
html.dark .server__hero {
  color: #fffeff;
}
html.dark .server__hero__nav {
  color: rgba(255, 254, 255, 0.4);
}
html.dark .server__hero__title {
  color: #fffeff;
}
html.dark .server__hero__title--second {
  color: rgba(255, 254, 255, 0.7);
}
html.dark .server__hero__description {
  color: #a85bf6;
}
html.dark .server__hero__characteristics__item {
  color: #fffeff;
}
html.dark .server__hero__characteristics__item svg path {
  stroke: #a85bf6;
}
html.dark .server__hero__price {
  color: #fffeff;
  background-color: #1d233b;
}
html.dark .server__hero__price::before {
  background: #1d233b;
}
html.dark .server__hero__price--bg {
  background: linear-gradient(to left, rgb(168, 91, 246), rgba(168, 91, 246, 0.5) 80%);
}
html.dark .server__hero__price--bg::before {
  background: linear-gradient(to left, rgba(168, 91, 246, 0.5), rgba(168, 91, 246, 0) 50%);
}
html.dark .server__hero__price__value {
  color: #a85bf6;
}
.server-advantages {
  color: #1d233b;
}
.server-advantages__title {
  margin-bottom: 32px;
}
.server-advantages__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-left: 0;
}
.server-advantages__items li {
  list-style: none;
}
@media only screen and (min-width: 768px) {
  .server-advantages__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .server-advantages__items .divider {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .server-advantages__items {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (min-width: 1920px) {
  .server-advantages__items {
    gap: 32px 16px;
  }
}
.server-advantages__card {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .server-advantages__card {
    gap: 8px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid #d2d3d8;
  }
}
.server-advantages__card.expanded .server-advantages__card__arrow {
  transform: rotate(180deg);
}
.server-advantages__card.expanded .server-advantages__card__descr {
  opacity: 1;
  margin-top: 16px;
  pointer-events: all;
}
.server-advantages__card__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .server-advantages__card__head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.server-advantages__card__picture {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: linear-gradient(258deg, rgba(243, 236, 254, 0.4) 1.8%, rgba(241, 236, 249, 0.4) 28.07%, rgba(226, 212, 252, 0.4) 56.77%, rgba(241, 236, 249, 0.4) 73.8%, rgba(243, 236, 254, 0.4) 99.09%);
}
@media only screen and (min-width: 768px) {
  .server-advantages__card__picture {
    width: 100%;
    height: 220px;
    border-radius: 12px;
  }
}
.server-advantages__card__picture__monitoring {
  width: 24px;
  height: 24px;
  background-image: url("../assets/icons/server-monitor.svg");
}
@media only screen and (min-width: 768px) {
  .server-advantages__card__picture__monitoring {
    width: 80px;
    height: 80px;
  }
}
.server-advantages__card__picture__expertise {
  width: 24px;
  height: 24px;
  background-image: url("../assets/icons/expertise.svg");
}
@media only screen and (min-width: 768px) {
  .server-advantages__card__picture__expertise {
    width: 80px;
    height: 80px;
  }
}
.server-advantages__card__picture__increased-uptime {
  width: 24px;
  height: 24px;
  background-image: url("../assets/icons/increased-uptime.svg");
}
@media only screen and (min-width: 768px) {
  .server-advantages__card__picture__increased-uptime {
    width: 80px;
    height: 80px;
  }
}
.server-advantages__card__picture__improved-security {
  width: 24px;
  height: 24px;
  background-image: url("../assets/icons/improved-security.svg");
}
@media only screen and (min-width: 768px) {
  .server-advantages__card__picture__improved-security {
    width: 80px;
    height: 80px;
  }
}
.server-advantages__card__picture__cost-savings {
  width: 24px;
  height: 24px;
  background-image: url("../assets/icons/cost-savings.svg");
}
@media only screen and (min-width: 768px) {
  .server-advantages__card__picture__cost-savings {
    width: 80px;
    height: 80px;
  }
}
.server-advantages__card__picture__enhanced-productivity {
  width: 24px;
  height: 24px;
  background-image: url("../assets/icons/enhanced-productivity.svg");
}
@media only screen and (min-width: 768px) {
  .server-advantages__card__picture__enhanced-productivity {
    width: 80px;
    height: 80px;
  }
}
.server-advantages__card__picture__compliance {
  width: 24px;
  height: 24px;
  background-image: url("../assets/icons/compliance.svg");
}
@media only screen and (min-width: 768px) {
  .server-advantages__card__picture__compliance {
    width: 80px;
    height: 80px;
  }
}
.server-advantages__card__picture__peace-of-mind {
  width: 24px;
  height: 24px;
  background-image: url("../assets/icons/peace-of-mind.svg");
}
@media only screen and (min-width: 768px) {
  .server-advantages__card__picture__peace-of-mind {
    width: 80px;
    height: 80px;
  }
}
.server-advantages__card__title {
  flex-grow: 1;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.4px;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .server-advantages__card__title {
    padding: 0 8px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: 0.48px;
  }
}
.server-advantages__card__arrow {
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.server-advantages__card__arrow path {
  stroke: #a5a7b1;
}
@media only screen and (min-width: 768px) {
  .server-advantages__card__arrow {
    display: none;
  }
}
.server-advantages__card__descr {
  opacity: 0;
  max-height: 0px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.32px;
  color: #7a7d8d;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .server-advantages__card__descr {
    opacity: 1;
    max-height: fit-content;
    padding: 0 8px;
    color: #1d233b;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.36px;
    pointer-events: all;
  }
}
html.dark .server-advantages {
  color: #fffeff;
}
@media only screen and (min-width: 768px) {
  html.dark .server-advantages__card {
    background-color: rgba(255, 254, 255, 0.05);
    border-color: rgba(255, 254, 255, 0.1);
  }
}
html.dark .server-advantages__card__picture {
  background: rgba(255, 254, 255, 0.05);
}
@media only screen and (min-width: 768px) {
  html.dark .server-advantages__card__picture {
    background: #1d233b;
  }
}
html.dark .server-advantages__card__picture__monitoring {
  background-image: url("../assets/icons/server-monitor-dark.svg");
}
html.dark .server-advantages__card__picture__expertise {
  background-image: url("../assets/icons/expertise-dark.svg");
}
html.dark .server-advantages__card__picture__increased-uptime {
  background-image: url("../assets/icons/increased-uptime-dark.svg");
}
html.dark .server-advantages__card__picture__improved-security {
  background-image: url("../assets/icons/improved-security-dark.svg");
}
html.dark .server-advantages__card__picture__cost-savings {
  background-image: url("../assets/icons/cost-savings-dark.svg");
}
html.dark .server-advantages__card__picture__enhanced-productivity {
  background-image: url("../assets/icons/enhanced-productivity-dark.svg");
}
html.dark .server-advantages__card__picture__compliance {
  background-image: url("../assets/icons/compliance-dark.svg");
}
html.dark .server-advantages__card__picture__peace-of-mind {
  background-image: url("../assets/icons/peace-of-mind-dark.svg");
}
html.dark .server-advantages__card__arrow path {
  stroke: rgba(255, 254, 255, 0.4);
}
html.dark .server-advantages__card__descr {
  color: rgba(255, 254, 255, 0.7);
}
@media only screen and (min-width: 768px) {
  html.dark .server-advantages__card__descr {
    color: #fffeff;
  }
}
.support {
  color: #1d233b;
}
.support__title {
  margin-bottom: 32px;
}
.support__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
  margin-left: -16px;
  margin-right: -16px;
}
.support__list .support-card--empty {
  display: none;
}
@media only screen and (min-width: 768px) {
  .support__list {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 0;
    margin-right: 0;
  }
  .support__list .support-card--empty {
    display: flex;
  }
}
@media only screen and (min-width: 1024px) {
  .support__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .support__list .support-card--empty {
    display: none;
  }
}
.support__remark {
  color: #4a4f62;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.36px;
}
.support-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 724px;
  border: 1px solid #d2d3d8;
  border-radius: 22px;
  background-color: rgba(29, 35, 59, 0.05);
}
@media only screen and (min-width: 768px) {
  .support-card {
    min-height: 768px;
  }
}
@media only screen and (min-width: 1024px) {
  .support-card {
    min-height: 724px;
  }
}
@media only screen and (min-width: 1920px) {
  .support-card {
    min-height: 660px;
  }
}
.support-card--empty {
  align-items: center;
  justify-content: center;
  border-color: transparent;
}
.support-card__label {
  position: absolute;
  top: 12px;
  right: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 4px 14px;
  height: 24px;
  font-size: 16px;
  line-height: 20px;
  color: #fffeff;
}
.support-card__top {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}
@media only screen and (min-width: 1024px) {
  .support-card__top {
    min-height: 505px;
    flex-grow: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .support-card__top {
    min-height: 480px;
    flex-grow: 1;
  }
}
@media only screen and (min-width: 1440px) {
  .support-card__top {
    min-height: 456px;
  }
}
.support-card__head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.support-card__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
}
.support-card__bold {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.48px;
}
.support-card__text-lg {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.36px;
}
.support-card__hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid #d2d3d8;
  background-color: #fffeff;
}
.support-card__area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  height: 260px;
  text-align: center;
}
.support-card__included {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.support-card__included-txt {
  font-size: 20px;
  line-height: 26px;
}
.support-card__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.support-card__toggle {
  width: 100%;
}
.support-card__toggle .toggle__item {
  width: 100%;
}
.support-card__options {
  display: none;
  flex-direction: column;
  gap: 16px;
}
.support-card__options .divider {
  background-color: #d2d3d8;
}
.support-card__options.visible {
  display: flex;
}
.support-card__link {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #9000ed;
  border-radius: 60px;
  color: #1d233b;
  font-weight: 600;
  background: none;
  box-shadow: none;
  text-decoration: none;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  user-select: none;
}
.support-card__link::before {
  content: "";
  display: block;
  opacity: 0;
  border-radius: inherit;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(115, 24, 242, 0.1215686275);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.support-card__link:hover::before {
  opacity: 1;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
}
.support-card__bottom {
  flex-grow: 1;
  padding: 16px;
  min-height: 244px;
  background-color: rgba(29, 35, 59, 0.05);
}
@media only screen and (min-width: 768px) {
  .support-card__bottom {
    min-height: 264px;
  }
}
@media only screen and (min-width: 1024px) {
  .support-card__bottom {
    min-height: 244px;
  }
}
@media only screen and (min-width: 1920px) {
  .support-card__bottom {
    min-height: 204px;
  }
}
.support-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}
.support-card__item {
  display: flex;
  gap: 8px;
}
.support-card__item svg {
  flex-shrink: 0;
}
.support-card[data-type=popular] {
  border-color: #9000ed;
  box-shadow: 0 0 4px 4px rgba(144, 0, 237, 0.08);
}
.support-card[data-type=popular] .support-card__label {
  display: flex;
  background-color: #9000ed;
}
.support-card[data-type=popular] .support-card__link {
  color: #fffeff;
}
.support-card[data-type=popular] .support-card__link::before {
  opacity: 1;
  background-color: #9000ed;
}
html.dark .support {
  color: #fffeff;
}
html.dark .support__remark {
  color: rgba(255, 254, 255, 0.8);
}
html.dark .support-card {
  border-color: rgba(255, 254, 255, 0.1);
  background-color: rgba(255, 254, 255, 0.05);
}
html.dark .support-card__hours {
  border-color: rgba(255, 254, 255, 0.1);
  background-color: #1d233b;
}
html.dark .support-card__toggle {
  background-color: #1d233b;
}
html.dark .support-card__options .divider {
  background-color: rgba(255, 254, 255, 0.2);
}
html.dark .support-card__link {
  color: #fffeff;
}
html.dark .support-card__bottom {
  background-color: rgba(255, 254, 255, 0.05);
}
html.dark .support-card[data-type=popular] {
  border-color: #a85bf6;
  box-shadow: 0 0 4px 4px rgba(168, 91, 246, 0.2);
}
.apps {
  color: #1d233b;
}
.apps__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.apps__description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .apps__description {
    flex-direction: row;
  }
}
.apps__txt {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.4px;
}
.apps__tiles {
  display: none;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 1200px) {
  .apps__tiles {
    flex-direction: row;
  }
}
.apps__tiles.visible {
  display: flex;
}
.apps__row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .apps__row {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(6, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  .apps__row {
    display: contents;
  }
}
.apps__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-shrink: 1;
  flex-grow: 0;
  padding: 40px 0;
  width: 100%;
  border-radius: 12px;
  background-color: rgba(29, 35, 59, 0.03);
}
.apps__item__img {
  width: 64px;
  height: 64px;
}
@media only screen and (min-width: 768px) {
  .apps__item {
    grid-column: span 2;
  }
  .apps__item:nth-last-child(2):nth-child(3n+1), .apps__item:last-child:nth-child(3n+2) {
    grid-column: span 3;
  }
  .apps__item:last-child:nth-child(3n+1) {
    grid-column: span 6;
  }
}
html.dark .apps {
  color: #fffeff;
}
html.dark .apps__toggle {
  background-color: rgba(255, 254, 255, 0.05);
}
html.dark .apps__item {
  background-color: rgba(255, 254, 255, 0.05);
}
.vps-usa {
  padding-top: 101px;
  color: #1d233b;
}
.vps-usa__hero {
  margin-bottom: 64px;
}
@media only screen and (min-width: 768px) {
  .vps-usa__hero {
    margin-bottom: 48px;
  }
}
@media only screen and (min-width: 1440px) {
  .vps-usa__hero {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .vps-usa__hero__container {
    display: flex;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .vps-usa__hero__container {
    padding-top: 36px;
  }
}
@media only screen and (min-width: 1440px) {
  .vps-usa__hero__container {
    padding-right: 17px;
  }
}
@media only screen and (min-width: 1920px) {
  .vps-usa__hero__container {
    padding-right: 0;
    padding-top: 0;
  }
}
.vps-usa__hero__content {
  padding-top: 24px;
}
@media only screen and (min-width: 768px) {
  .vps-usa__hero__content {
    width: 396px;
    flex-shrink: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .vps-usa__hero__content {
    width: 55%;
    padding-top: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .vps-usa__hero__content {
    width: 788px;
    padding-top: 75px;
  }
}
@media only screen and (min-width: 1920px) {
  .vps-usa__hero__content {
    padding-top: 89px;
  }
}
.vps-usa__hero__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
  color: #1d233b;
}
@media only screen and (min-width: 1024px) {
  .vps-usa__hero__title {
    font-size: 48px;
  }
}
.vps-usa__hero__title--second {
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.6px;
  color: #7a7d8d;
  margin-bottom: 32px;
}
@media only screen and (min-width: 1024px) {
  .vps-usa__hero__title--second {
    font-size: 36px;
    margin-bottom: 30px;
  }
}
.vps-usa__hero__description {
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
}
@media only screen and (min-width: 768px) {
  .vps-usa__hero__description {
    width: 344px;
  }
}
@media only screen and (min-width: 1024px) {
  .vps-usa__hero__description {
    width: 100%;
  }
}
.vps-usa__hero__characteristics {
  margin-bottom: 32px;
}
@media only screen and (min-width: 1440px) {
  .vps-usa__hero__characteristics {
    margin-bottom: 64px;
  }
}
.vps-usa__hero__characteristics__item {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.36px;
  color: #1d233b;
}
@media only screen and (min-width: 768px) {
  .vps-usa__hero__characteristics__item {
    width: 344px;
  }
}
@media only screen and (min-width: 1024px) {
  .vps-usa__hero__characteristics__item {
    width: 520px;
  }
}
@media only screen and (min-width: 1440px) {
  .vps-usa__hero__characteristics__item {
    width: 654px;
  }
}
.vps-usa__hero__characteristics__item:not(:last-child) {
  margin-bottom: 16px;
}
.vps-usa__hero__btn {
  width: 100%;
  height: 48px;
}
@media only screen and (min-width: 768px) {
  .vps-usa__hero__btn {
    width: fit-content;
  }
}
.vps-usa__hero__image {
  position: relative;
  display: none;
}
@media only screen and (min-width: 768px) {
  .vps-usa__hero__image {
    display: block;
    width: 100%;
  }
}
@media only screen and (min-width: 1440px) {
  .vps-usa__hero__image {
    height: 648px;
  }
}
@media only screen and (min-width: 1920px) {
  .vps-usa__hero__image {
    height: 702px;
  }
}
.vps-usa__hero__map {
  position: absolute;
  right: 0;
  top: 37px;
  width: 376px;
  height: 577px;
}
@media only screen and (min-width: 1024px) {
  .vps-usa__hero__map {
    top: 0;
    width: 700px;
    height: 475px;
  }
}
@media only screen and (min-width: 1440px) {
  .vps-usa__hero__map {
    width: 958px;
    height: 575px;
  }
}
@media only screen and (min-width: 1920px) {
  .vps-usa__hero__map {
    top: -69px;
    width: 1086px;
    height: 848px;
  }
}
.vps-usa__hero__map.light-img {
  display: block;
}
.vps-usa__hero__map.dark-img {
  display: none;
}
html.dark .vps-usa {
  color: #fffeff;
}
html.dark .vps-usa__hero__nav {
  color: rgba(255, 254, 255, 0.4);
}
html.dark .vps-usa__hero__title {
  color: #fffeff;
}
html.dark .vps-usa__hero__title--second {
  color: rgba(255, 254, 255, 0.7);
}
html.dark .vps-usa__hero__description {
  color: #fffeff;
}
html.dark .vps-usa__hero__characteristics__item {
  color: #fffeff;
}
html.dark .vps-usa__hero__map.light-img {
  display: none;
}
html.dark .vps-usa__hero__map.dark-img {
  display: block;
}
.vps-key__title {
  margin-bottom: 32px;
}
.vps-key__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid #d2d3d8;
  border-bottom: 1px solid #d2d3d8;
}
@media only screen and (min-width: 1024px) {
  .vps-key__content {
    gap: 64px;
  }
}
.vps-key__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding-left: 0;
}
@media only screen and (min-width: 768px) {
  .vps-key__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .vps-key__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}
.vps-key__item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px 12px 12px;
}
.vps-key__label {
  padding-left: 4px;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.4px;
}
.vps-key__btn {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .vps-key__btn {
    width: fit-content;
    align-self: center;
  }
}
.vps-key__btn svg {
  width: 20px;
  height: 20px;
}
html.dark .vps-key__content {
  border-color: rgba(255, 254, 255, 0.2);
}
.usa-choose {
  overflow: hidden;
}
.usa-choose__head {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}
@media only screen and (min-width: 1024px) {
  .usa-choose__head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
@media only screen and (min-width: 1024px) {
  .usa-choose__title {
    max-width: 648px;
  }
}
.usa-choose__title-divider {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .usa-choose__title-divider {
    display: inline;
  }
}
.usa-choose__link {
  width: fit-content;
}
.usa-choose__box-position {
  display: flex;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  overflow-x: visible;
}
.usa-choose__slider {
  overflow: visible;
}
.usa-choose__slider.swiper.swiper_custom {
  margin-right: 0;
  padding-bottom: 56px;
  width: 100%;
  padding-right: 0;
}
@media only screen and (min-width: 1440px) {
  .usa-choose__slider.swiper.swiper_custom {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .usa-choose__slider {
    margin: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .usa-choose__slider .swiper-wrapper {
    display: flex;
    gap: 16px;
  }
}
.usa-choose__slider.swiper_custom.swiper-initialized:after {
  bottom: 24px;
  left: 70px;
  transform: translateX(0);
  width: calc(100% - 126px);
}
@media only screen and (min-width: 1920px) {
  .usa-choose__slider.swiper_custom.swiper-initialized:after {
    display: none;
  }
}
.usa-choose__slider .swiper-button-next {
  left: auto;
  right: 0;
}
.usa-choose__slider .swiper-button-prev {
  left: 16px;
}
.usa-choose__slider .swiper-button-prev,
.usa-choose__slider .swiper-button-next {
  height: 48px;
  width: 48px;
  padding: 14px;
  bottom: 0;
}
@media only screen and (min-width: 1440px) {
  .usa-choose__slider .swiper-button-prev,
  .usa-choose__slider .swiper-button-next {
    display: none;
  }
}
.usa-choose__slider .swiper-slide {
  width: 320px;
}
@media only screen and (min-width: 1920px) {
  .usa-choose__slider .swiper-slide {
    width: 386px;
  }
}
.gpu {
  padding-top: 101px;
  overflow: hidden;
}
.gpu__hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 64px;
  color: #1d233b;
}
@media only screen and (min-width: 768px) {
  .gpu__hero {
    margin-bottom: 32px;
  }
}
@media only screen and (min-width: 1024px) {
  .gpu__hero {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .gpu__hero__container {
    display: flex;
  }
}
.gpu__hero__content {
  padding-top: 24px;
}
@media only screen and (min-width: 1024px) {
  .gpu__hero__content {
    width: 80%;
    padding-top: 27px;
  }
}
@media only screen and (min-width: 1200px) {
  .gpu__hero__content {
    width: 65%;
  }
}
@media only screen and (min-width: 1440px) {
  .gpu__hero__content {
    width: 788px;
  }
}
@media only screen and (min-width: 1920px) {
  .gpu__hero__content {
    padding-top: 48px;
  }
}
.gpu__hero__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
  color: #1d233b;
}
@media only screen and (min-width: 1024px) {
  .gpu__hero__title {
    font-size: 48px;
  }
}
.gpu__hero__title--second {
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.6px;
  color: #7a7d8d;
  margin-bottom: 32px;
}
@media only screen and (min-width: 1024px) {
  .gpu__hero__title--second {
    font-size: 36px;
    max-width: 100%;
  }
}
.gpu__hero__description {
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
  color: #9000ed;
}
@media only screen and (min-width: 1024px) {
  .gpu__hero__description {
    font-size: 18px;
    line-height: 24px;
  }
}
.gpu__hero__characteristics {
  margin-bottom: 32px;
}
@media only screen and (min-width: 1024px) {
  .gpu__hero__characteristics {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-column-gap: 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .gpu__hero__characteristics {
    grid-column-gap: 32px;
  }
}
.gpu__hero__characteristics__item {
  display: flex;
  gap: 8px;
  align-items: start;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
  color: #1d233b;
}
.gpu__hero__characteristics__item:not(:last-child) {
  margin-bottom: 16px;
}
@media only screen and (min-width: 1024px) {
  .gpu__hero__characteristics__item {
    font-size: 20px;
    line-height: 26px;
  }
}
.gpu__hero__characteristics__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-size: cover;
  background-position: center;
}
.gpu__hero__price {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 4px;
  padding-right: 16px;
  padding-bottom: 4px;
  border-radius: 0px 32px 32px 0px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
  color: #1d233b;
  background-color: #ffffff;
}
.gpu__hero__price::before {
  content: "";
  height: calc(100% - 2px);
  width: 100%;
  background: #ffffff;
  position: absolute;
  top: 1px;
  left: -100%;
}
.gpu__hero__price--bg {
  position: relative;
  width: fit-content;
  border-radius: 0px 32px 32px 0px;
  background: linear-gradient(to left, rgb(144, 0, 237), rgba(144, 0, 237, 0.5) 80%);
  margin-bottom: 32px;
  padding-top: 1px;
  padding-right: 1px;
  padding-bottom: 1px;
}
.gpu__hero__price--bg::before {
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(to left, rgba(144, 0, 237, 0.5), rgba(144, 0, 237, 0) 50%);
  position: absolute;
  top: 0;
  left: -100%;
}
.gpu__hero__price__value {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.48px;
  color: #9000ed;
}
.gpu__hero__btn {
  width: 100%;
  height: 48px;
}
@media only screen and (min-width: 768px) {
  .gpu__hero__btn {
    width: fit-content;
  }
}
.gpu__hero__image {
  position: relative;
  display: none;
  width: 34%;
}
@media only screen and (min-width: 768px) {
  .gpu__hero__image {
    display: flex;
    align-items: flex-start;
    padding-top: 88px;
    height: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .gpu__hero__image {
    padding-top: 84px;
    width: auto;
    height: 658px;
  }
}
@media only screen and (min-width: 1920px) {
  .gpu__hero__image {
    padding-top: 78px;
    height: 702px;
  }
}
.gpu__hero__image__ellipse {
  position: absolute;
  width: 392.872px;
  height: 672.68px;
  border-radius: 672.68px;
  opacity: 0.2;
  background: #4B18F2;
  filter: blur(65.4613418579px);
}
@media only screen and (min-width: 768px) {
  .gpu__hero__image__ellipse {
    transform: rotate(-45deg) translate(55%, -10%);
  }
}
@media only screen and (min-width: 1024px) {
  .gpu__hero__image__ellipse {
    width: 410.778px;
    height: 703.339px;
    border-radius: 703.339px;
  }
}
@media only screen and (min-width: 1920px) {
  .gpu__hero__image__ellipse {
    width: 554.785px;
    height: 949.91px;
    border-radius: 949.91px;
    transform: rotate(-55deg) translate(70%, -5%);
    filter: blur(75px);
  }
}
.gpu__hero__image__img {
  position: relative;
  left: 0;
  width: 461.945px;
  height: 461.945px;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .gpu__hero__image__img {
    left: 60px;
    width: 439.986px;
    height: 439.986px;
  }
}
@media only screen and (min-width: 1920px) {
  .gpu__hero__image__img {
    width: 478px;
    height: 478px;
    left: 179px;
  }
}
.gpu__hero__image__img-shadow {
  position: absolute;
  top: 236px;
  left: 16px;
  opacity: 0.9;
  width: 436.818px;
  height: 444.55px;
  filter: blur(4.8320617676px);
  background-image: url("../assets/gpu/gpu-hero-img.webp");
  background-size: cover;
}
@media only screen and (min-width: 1024px) {
  .gpu__hero__image__img-shadow {
    left: 72px;
    width: 416.054px;
    height: 423.418px;
  }
}
@media only screen and (min-width: 1920px) {
  .gpu__hero__image__img-shadow {
    width: 452px;
    height: 460px;
    left: 191px;
  }
}
.gpu__hero__image__img-filter {
  position: absolute;
  bottom: -30px;
  left: 0;
  transform: rotate(180deg);
  width: 746px;
  height: 257px;
  opacity: 0.9;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
}
@media only screen and (min-width: 1024px) {
  .gpu__hero__image__img-filter {
    width: 771px;
    height: 245px;
    bottom: 0;
  }
}
@media only screen and (min-width: 1920px) {
  .gpu__hero__image__img-filter {
    width: 952px;
    height: 269px;
  }
}
html.dark .gpu__hero {
  color: #fffeff;
}
html.dark .gpu__hero__title {
  color: #fffeff;
}
html.dark .gpu__hero__title--second {
  color: rgba(255, 254, 255, 0.7);
}
html.dark .gpu__hero__description {
  color: #a85bf6;
}
html.dark .gpu__hero__characteristics__item {
  color: #fffeff;
}
html.dark .gpu__hero__price {
  color: #fffeff;
  background-color: #1d233b;
}
html.dark .gpu__hero__price::before {
  background: #1d233b;
}
html.dark .gpu__hero__price--bg {
  background: linear-gradient(to left, rgb(168, 91, 246), rgba(168, 91, 246, 0.5) 80%);
}
html.dark .gpu__hero__price--bg::before {
  background: linear-gradient(to left, rgba(168, 91, 246, 0.5), rgba(168, 91, 246, 0) 50%);
}
html.dark .gpu__hero__price__value {
  color: #a85bf6;
}
html.dark .gpu__hero__image__img-filter {
  background: linear-gradient(0deg, rgba(29, 35, 59, 0) 0%, #1D233B 100%);
}
.gpu-servers {
  color: #1d233b;
}
.gpu-servers__title {
  margin-bottom: 32px;
}
.gpu-servers__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 1024px) {
  .gpu-servers__content {
    flex-direction: row;
  }
}
.gpu-servers__screen {
  position: relative;
  overflow: hidden;
  margin-right: -16px;
  margin-left: -16px;
  padding-top: 22px;
  padding-bottom: 32px;
  border-radius: 22px;
  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) {
  .gpu-servers__screen {
    width: 100%;
    height: 414.538px;
    margin-left: 0;
    margin-right: 0;
    padding-top: 43px;
    padding-bottom: 63px;
  }
}
@media only screen and (min-width: 1024px) {
  .gpu-servers__screen {
    flex: 1 0 50%;
    height: 536px;
    padding-top: 140px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1920px) {
  .gpu-servers__screen {
    padding: 48px;
    padding-left: 0;
    padding-right: 0;
    height: 464px;
  }
}
.gpu-servers__filter {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, #9000ED 0%, rgba(151, 71, 255, 0) 100%);
  opacity: 0.5;
  mix-blend-mode: soft-light;
}
.gpu-servers__spot {
  position: absolute;
  background-color: #4B18F2;
  filter: blur(17.8914794922px);
}
.gpu-servers__spot--small {
  left: 25%;
  top: 40%;
  width: 25%;
  height: 100%;
  border-radius: 212.036px;
  opacity: 0.2;
  transform: rotate(143.374deg);
}
@media only screen and (min-width: 768px) {
  .gpu-servers__spot--small {
    width: 182.753px;
    height: 414.647px;
    border-radius: 414.647px;
  }
}
.gpu-servers__spot--big {
  left: 35%;
  top: -20%;
  width: 40%;
  height: 140%;
  transform: rotate(136.172deg);
  border-radius: 327.475px;
  opacity: 0.15;
}
@media only screen and (min-width: 768px) {
  .gpu-servers__spot--big {
    width: 282.249px;
    height: 640.395px;
    border-radius: 640.395px;
  }
}
.gpu-servers__img {
  width: 100%;
  height: auto;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .gpu-servers__img {
    height: 308.223px;
  }
}
@media only screen and (min-width: 1024px) {
  .gpu-servers__img {
    height: auto;
  }
}
.gpu-servers__descr {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 1024px) {
  .gpu-servers__descr {
    flex: 1 0 50%;
  }
}
.gpu-servers__text {
  padding: 8px 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
}
@media only screen and (min-width: 1440px) {
  .gpu-servers__text {
    padding: 8px 0 8px 8px;
  }
  .gpu-servers__text:nth-child(2) {
    padding-left: 56px;
  }
}
html.dark .gpu-servers {
  color: #fffeff;
}
.paragraphs {
  color: #1d233b;
}
.paragraphs__title {
  margin-bottom: 32px;
}
.paragraphs__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 1024px) {
  .paragraphs__content {
    flex-direction: row;
  }
}
.paragraphs__item {
  padding: 0 24px;
  border-left: 3px solid #9000ed;
}
.paragraphs__subtitle {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.48px;
  margin-bottom: 8px;
}
.paragraphs__text {
  color: #4a4f62;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
}
html.dark .paragraphs {
  color: #fffeff;
}
html.dark .paragraphs__item {
  border-color: #a85bf6;
}
html.dark .paragraphs__text {
  color: rgba(255, 254, 255, 0.8);
}
.processors {
  color: #1d233b;
}
.processors__title {
  margin-bottom: 32px;
}
@media only screen and (min-width: 1920px) {
  .processors__title {
    margin-bottom: 0;
  }
}
.processors__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media only screen and (min-width: 768px) {
  .processors__content {
    gap: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .processors__content {
    flex-direction: row;
  }
}
.processors__message {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
}
@media only screen and (min-width: 1024px) {
  .processors__message {
    flex: 1 1 50%;
    font-size: 20px;
    line-height: 26px;
  }
}
@media only screen and (min-width: 1920px) {
  .processors__message {
    align-self: center;
  }
}
.processors__screen {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 9.33px;
}
@media only screen and (min-width: 768px) {
  .processors__screen {
    padding-top: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .processors__screen {
    flex: 1 1 50%;
    display: block;
    padding-top: 18px;
    margin-top: -14px;
  }
}
@media only screen and (min-width: 1920px) {
  .processors__screen {
    margin-top: -6px;
    padding-top: 20px;
    height: 288px;
  }
}
.processors__filter {
  position: absolute;
  left: -25%;
  right: -25%;
  top: -3px;
  bottom: -16px;
  background: linear-gradient(180deg, #9000ED 0%, rgba(151, 71, 255, 0) 100%);
  opacity: 0.5;
  mix-blend-mode: soft-light;
}
.processors__spot {
  position: absolute;
  bottom: -38px;
  width: 88.314px;
  height: 201.705px;
  border-radius: 201.705px;
  transform: rotate(89.068deg);
  background: #4B18F2;
  opacity: 0.21;
  filter: blur(21.5062122345px);
}
@media only screen and (min-width: 768px) {
  .processors__spot {
    width: 189.552px;
    height: 432.927px;
    border-radius: 432.927px;
    filter: blur(46.1596717834px);
    bottom: -88px;
    left: 28%;
  }
}
@media only screen and (min-width: 1024px) {
  .processors__spot {
    width: 176.628px;
    height: 403.409px;
    border-radius: 403.409px;
    filter: blur(43.012424469px);
  }
}
@media only screen and (min-width: 1440px) {
  .processors__spot {
    left: 35%;
  }
}
@media only screen and (min-width: 1920px) {
  .processors__spot {
    width: 194.123px;
    height: 443.368px;
    border-radius: 443.368px;
    filter: blur(47.2728919983px);
  }
}
.processors__img {
  position: relative;
  z-index: 1;
  width: 183.408px;
  height: 121.912px;
}
@media only screen and (min-width: 768px) {
  .processors__img {
    width: 393.655px;
    height: 261.665px;
  }
}
@media only screen and (min-width: 1024px) {
  .processors__img {
    left: 86px;
    width: 366.815px;
    height: 243.824px;
  }
}
@media only screen and (min-width: 1440px) {
  .processors__img {
    left: 186px;
  }
}
@media only screen and (min-width: 1920px) {
  .processors__img {
    left: 240px;
    width: 403.149px;
    height: 267.976px;
  }
}
.processors__shadow {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translate(-50%);
  z-index: -1;
  width: 214.85px;
  height: 90.49px;
  object-fit: cover;
  object-position: bottom;
  filter: blur(13.7288446426px);
}
@media only screen and (min-width: 768px) {
  .processors__shadow {
    width: 461.14px;
    height: 194.22px;
    filter: blur(29.4667873383px);
  }
}
@media only screen and (min-width: 1024px) {
  .processors__shadow {
    left: 46px;
    transform: none;
    width: 429.699px;
    height: 180.977px;
    filter: blur(27.4576892853px);
  }
}
@media only screen and (min-width: 1440px) {
  .processors__shadow {
    left: 146px;
  }
}
@media only screen and (min-width: 1920px) {
  .processors__shadow {
    left: 240px;
    width: 314.841px;
    height: 132.602px;
  }
}
html.dark .processors {
  color: #fffeff;
}
html.dark .processors__filter {
  display: none;
}
.reasons {
  color: #1d233b;
}
.reasons__title {
  margin-bottom: 32px;
}
.reasons__message {
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
}
@media only screen and (min-width: 1024px) {
  .reasons__message {
    max-width: calc(50% - 8px);
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
.reasons__list {
  display: grid;
  grid-template-columns: 100%;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .reasons__list .divider {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .reasons__list {
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
    padding: 32px 0;
    border-top: 1px solid #d2d3d8;
    border-bottom: 1px solid #d2d3d8;
  }
}
.reasons-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) {
  .reasons-card {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .reasons-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) {
  .reasons-card {
    padding-right: 40px;
  }
}
.reasons-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) {
  .reasons-card__pic {
    width: 136px;
    min-width: 136px;
    padding: 40px;
  }
}
.reasons-card__img {
  width: 24px;
  height: 24px;
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 1024px) {
  .reasons-card__img {
    width: 56px;
    height: 56px;
  }
}
.reasons-card__img--heart {
  background-image: url("../assets/icons/heart-handshake.svg");
}
.reasons-card__img--setting {
  background-image: url("../assets/icons/settings-check.svg");
}
.reasons-card__img--perfom {
  background-image: url("../assets/icons/powerful.svg");
}
.reasons-card__img--lock {
  background-image: url("../assets/icons/lock-pass.svg");
}
.reasons-card__title {
  grid-area: title;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  font-weight: 400;
  padding-right: 36px;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.4px;
}
@media only screen and (min-width: 768px) {
  .reasons-card__title {
    padding-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .reasons-card__title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    height: fit-content;
    align-items: flex-start;
  }
}
.reasons-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);
}
.reasons-card__trigger svg {
  width: 20px;
  height: 20px;
}
.reasons-card__trigger svg path {
  stroke: #a5a7b1;
}
.reasons-card__trigger.isActive {
  transform: translateY(-50%) rotate(-180deg);
}
@media only screen and (min-width: 768px) {
  .reasons-card__trigger {
    display: none;
  }
}
.reasons-card__text {
  grid-area: text;
  width: 100%;
  height: fit-content;
  display: grid;
  grid-template-columns: 100%;
  justify-content: start;
  justify-items: start;
  gap: 8px;
}
.reasons-card__descr {
  display: none;
  margin-bottom: 16px;
  font-size: 18px;
  color: #4a4f62;
}
.reasons-card__descr.isCollapsed {
  display: none;
}
.reasons-card__descr.isActive {
  display: block;
}
@media only screen and (min-width: 768px) {
  .reasons-card__descr {
    display: block;
    margin-bottom: 0;
  }
  .reasons-card__descr.txt {
    font-size: 18px;
    line-height: 24px;
  }
}
.reasons-card.isActive .reasons-card__descr {
  display: block;
}
@media (min-width: 768px) {
  .reasons-card.isActive .reasons-card__link {
    display: inline-block;
  }
}
html.dark .reasons {
  color: #fffeff;
}
html.dark .reasons__list {
  border-color: rgba(255, 254, 255, 0.2);
}
html.dark .reasons-card__img--heart {
  background-image: url("../assets/icons/heart-handshake-dark.svg");
}
html.dark .reasons-card__img--setting {
  background-image: url("../assets/icons/settings-check-dark.svg");
}
html.dark .reasons-card__img--perfom {
  background-image: url("../assets/icons/powerful-dark.svg");
}
html.dark .reasons-card__img--lock {
  background-image: url("../assets/icons/lock-pass-dark.svg");
}
html.dark .reasons-card__trigger svg path {
  stroke: rgba(255, 254, 255, 0.4);
}
html.dark .reasons-card__pic {
  background-color: rgba(255, 254, 255, 0.05);
}
html.dark .reasons-card__descr {
  color: rgba(255, 254, 255, 0.8);
}
.accel {
  color: #1d233b;
}
.accel__title {
  margin-bottom: 32px;
}
.accel__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media only screen and (min-width: 768px) {
  .accel__content {
    gap: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .accel__content {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1024px) {
  .accel__select {
    display: none;
  }
}
.accel__toggle {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .accel__toggle {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 266px;
    border-radius: 24px;
    padding: 8px;
  }
  .accel__toggle .toggle__item {
    text-align: start;
  }
}
@media only screen and (min-width: 1440px) {
  .accel__toggle {
    width: 320px;
  }
}
@media only screen and (min-width: 1920px) {
  .accel__toggle {
    width: 386px;
  }
}
.accel__field {
  display: none;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .accel__field {
    grid-template-columns: 1fr 223px;
    grid-template-rows: auto auto;
    grid-template-areas: "top img" "bottom bottom";
  }
}
@media only screen and (min-width: 1024px) {
  .accel__field {
    grid-template-columns: 1fr 320px;
    grid-template-areas: "top img" "bottom img";
  }
}
@media only screen and (min-width: 1920px) {
  .accel__field {
    grid-template-columns: 1fr 390px;
  }
}
.accel__field.visible {
  display: grid;
}
.accel__top {
  padding-top: 16px;
}
@media only screen and (min-width: 768px) {
  .accel__top {
    grid-area: top;
    padding: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .accel__top {
    padding: 16px 16px 0 16px;
  }
}
.accel__subtitle {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.48px;
  margin-bottom: 8px;
}
.accel__options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid #d2d3d8;
  border-bottom: 1px solid #d2d3d8;
}
@media only screen and (min-width: 768px) {
  .accel__options {
    grid-template-columns: 156px 1fr;
    grid-template-rows: repeat(2, auto);
  }
}
@media only screen and (min-width: 1024px) {
  .accel__options {
    grid-template-columns: 192px 1fr;
  }
}
.accel__option {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.accel__bottom {
  padding-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .accel__bottom {
    padding-bottom: 0;
    grid-area: bottom;
  }
}
@media only screen and (min-width: 1024px) {
  .accel__bottom {
    padding: 0 16px 16px 16px;
  }
}
.accel__description {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
}
.accel__picture {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -16px;
  margin-right: -16px;
  border-radius: 22px;
  border: 1px solid #d2d3d8;
  overflow: hidden;
  background-color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .accel__picture {
    grid-area: img;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    height: 180px;
    padding: 6.421px;
    align-self: end;
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .accel__picture {
    align-self: start;
    margin-bottom: 0;
    padding: 8px;
    height: 263px;
  }
}
@media only screen and (min-width: 1920px) {
  .accel__picture {
    height: 320px;
  }
}
.accel__img {
  width: 360px;
  height: 269px;
  object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .accel__img {
    width: 100%;
    height: 100%;
  }
}
html.dark .accel {
  color: #fffeff;
}
html.dark .accel__toggle {
  background-color: rgba(255, 254, 255, 0.05);
}
html.dark .accel__options {
  border-color: rgba(255, 254, 255, 0.2);
}
.dedicated-nl__hero {
  margin-bottom: 64px;
}
@media only screen and (min-width: 768px) {
  .dedicated-nl__hero {
    margin-bottom: 56px;
  }
}
@media only screen and (min-width: 1440px) {
  .dedicated-nl__hero {
    margin-bottom: 56px;
  }
  .dedicated-nl__hero + .features {
    margin-bottom: 192px;
  }
}
@media only screen and (min-width: 768px) {
  .dedicated-nl__hero__container {
    display: flex;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .dedicated-nl__hero__container {
    padding-right: 16px;
  }
}
@media only screen and (min-width: 1920px) {
  .dedicated-nl__hero__container {
    padding-right: 159px;
  }
}
.dedicated-nl__hero__content {
  padding-top: 24px;
}
@media only screen and (min-width: 768px) {
  .dedicated-nl__hero__content {
    width: 464px;
    flex-shrink: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .dedicated-nl__hero__content {
    width: 55%;
    padding-top: 44px;
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  .dedicated-nl__hero__content {
    width: 788px;
  }
}
@media only screen and (min-width: 1920px) {
  .dedicated-nl__hero__content {
    padding-top: 89px;
  }
}
.dedicated-nl__hero__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
  color: #1d233b;
}
@media only screen and (min-width: 1024px) {
  .dedicated-nl__hero__title {
    font-size: 48px;
    width: 449px;
  }
}
.dedicated-nl__hero__title--second {
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.6px;
  color: #7a7d8d;
  margin-bottom: 32px;
}
@media only screen and (min-width: 1024px) {
  .dedicated-nl__hero__title--second {
    font-size: 36px;
    margin-bottom: 30px;
  }
}
.dedicated-nl__hero__description {
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
}
.dedicated-nl__hero__characteristics {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 32px;
}
@media only screen and (min-width: 1200px) {
  .dedicated-nl__hero__characteristics:has(li:nth-child(5)) {
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  .dedicated-nl__hero__characteristics {
    margin-bottom: 40px;
  }
}
.dedicated-nl__hero__characteristics__item {
  display: flex;
  gap: 8px;
  align-items: start;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.36px;
  color: #1d233b;
}
@media only screen and (min-width: 768px) {
  .dedicated-nl__hero__characteristics__item {
    width: 344px;
  }
}
@media only screen and (min-width: 1024px) {
  .dedicated-nl__hero__characteristics__item {
    width: 100%;
  }
}
.dedicated-nl__hero__characteristics__item:not(:last-child) {
  margin-bottom: 8px;
}
.dedicated-nl__hero__characteristics__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.dedicated-nl__hero__characteristics__icon-dark {
  display: none;
}
.dedicated-nl__hero__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media only screen and (min-width: 768px) {
  .dedicated-nl__hero__options {
    flex-direction: row;
    gap: 16px;
  }
}
.dedicated-nl__hero__btn {
  width: 100%;
  height: 48px;
}
@media only screen and (min-width: 768px) {
  .dedicated-nl__hero__btn {
    width: fit-content;
  }
}
.dedicated-nl__hero__image {
  position: relative;
  display: none;
}
@media only screen and (min-width: 768px) {
  .dedicated-nl__hero__image {
    display: block;
    width: 100%;
  }
}
@media only screen and (min-width: 1440px) {
  .dedicated-nl__hero__image {
    height: 600px;
  }
}
@media only screen and (min-width: 1920px) {
  .dedicated-nl__hero__image {
    height: 702px;
  }
}
.dedicated-nl__hero__map {
  position: absolute;
  right: 0;
  top: 0;
  width: 272px;
  height: 579px;
}
@media only screen and (min-width: 1024px) {
  .dedicated-nl__hero__map {
    top: 44px;
    width: 453px;
    height: 386px;
  }
}
@media only screen and (min-width: 1200px) {
  .dedicated-nl__hero__map {
    width: 510px;
    height: 434px;
  }
}
@media only screen and (min-width: 1440px) {
  .dedicated-nl__hero__map {
    width: 600px;
    height: 579px;
  }
}
@media only screen and (min-width: 1920px) {
  .dedicated-nl__hero__map {
    top: 0;
    width: 708px;
    height: 676px;
  }
}
.dedicated-nl__hero__map.light-img {
  display: block;
}
.dedicated-nl__hero__map.dark-img {
  display: none;
}
html.dark .dedicated-nl__hero__nav {
  color: rgba(255, 254, 255, 0.4);
}
html.dark .dedicated-nl__hero__title {
  color: #fffeff;
}
html.dark .dedicated-nl__hero__title--second {
  color: rgba(255, 254, 255, 0.7);
}
html.dark .dedicated-nl__hero__description {
  color: #fffeff;
}
html.dark .dedicated-nl__hero__characteristics__item {
  color: #fffeff;
}
html.dark .dedicated-nl__hero__characteristics__icon {
  display: none;
}
html.dark .dedicated-nl__hero__characteristics__icon-dark {
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
html.dark .dedicated-nl__hero__map.light-img {
  display: none;
}
html.dark .dedicated-nl__hero__map.dark-img {
  display: block;
}
.nl-key__title {
  margin-bottom: 32px;
}
.nl-key__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 16px;
  margin-right: -16px;
  margin-left: -16px;
  border-top: 1px solid #d2d3d8;
  border-bottom: 1px solid #d2d3d8;
}
@media only screen and (min-width: 768px) {
  .nl-key__content {
    padding: 32px 0;
    margin: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .nl-key__content {
    gap: 64px;
  }
}
.nl-key__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding-left: 0;
}
@media only screen and (min-width: 768px) {
  .nl-key__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1024px) {
  .nl-key__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}
.nl-key__item {
  display: flex;
  gap: 4px;
  padding: 12px 16px 12px 12px;
}
.nl-key__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.nl-key__icon--dark {
  display: none;
}
.nl-key__label {
  padding-left: 4px;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.4px;
}
.nl-key__btn {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .nl-key__btn {
    width: fit-content;
    align-self: center;
  }
}
.nl-key__btn svg {
  width: 20px;
  height: 20px;
}
html.dark .nl-key__content {
  border-color: rgba(255, 254, 255, 0.2);
}
html.dark .nl-key__icon--light {
  display: none;
}
html.dark .nl-key__icon--dark {
  display: block;
}
.nl-products__title {
  margin-bottom: 32px;
}
.nl-products__descr {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
  margin-bottom: 32px;
}
@media only screen and (min-width: 768px) {
  .nl-products__descr {
    width: calc(50% - 8px);
  }
}
@media only screen and (min-width: 1024px) {
  .nl-products__descr {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.4px;
  }
}
.nl-products__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-left: 0;
  list-style-type: none;
}
@media only screen and (min-width: 1024px) {
  .nl-products__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  .nl-products__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.nl-product-card {
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e9eb;
}
.nl-product-card:last-child {
  border-bottom: none;
}
@media only screen and (min-width: 768px) {
  .nl-product-card {
    padding: 24px;
    border-radius: 22px;
    border: 1px solid #d2d3d8;
  }
  .nl-product-card:last-child {
    border-bottom: 1px solid #d2d3d8;
  }
}
.nl-product-card.expanded .nl-product-card__text {
  opacity: 1;
  pointer-events: all;
  margin-top: 8px;
}
.nl-product-card.expanded .nl-product-card__btn {
  transform: rotate(180deg);
}
.nl-product-card__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.nl-product-card__picture {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background-color: rgba(29, 35, 59, 0.03);
}
.nl-product-card__img {
  width: 32px;
  height: 32px;
}
.nl-product-card__img--dark {
  display: none;
}
.nl-product-card__title {
  align-self: center;
  margin: 0;
  width: 100%;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.4px;
}
@media only screen and (min-width: 768px) {
  .nl-product-card__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0.48px;
  }
}
.nl-product-card__btn {
  flex-shrink: 0;
  margin: 22px 0 0 0;
  padding: 0;
  border: none;
  background-color: inherit;
  width: 20px;
  height: 20px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 768px) {
  .nl-product-card__btn {
    display: none;
  }
}
.nl-product-card__icn {
  width: 20px;
  height: 20px;
}
.nl-product-card__icn path {
  stroke: #a5a7b1;
}
.nl-product-card__text {
  opacity: 0;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
  pointer-events: none;
  color: #4a4f62;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
}
@media only screen and (min-width: 768px) {
  .nl-product-card__text {
    opacity: 1;
    pointer-events: all;
    margin-top: 8px;
    max-height: fit-content;
  }
}
html.dark .nl-product-card {
  border-color: rgba(255, 254, 255, 0.1);
}
html.dark .nl-product-card__picture {
  background-color: rgba(255, 254, 255, 0.05);
}
html.dark .nl-product-card__img--light {
  display: none;
}
html.dark .nl-product-card__img--dark {
  display: block;
}
html.dark .nl-product-card__icn path {
  stroke: rgba(255, 254, 255, 0.4);
}
html.dark .nl-product-card__text {
  color: rgba(255, 254, 255, 0.8);
}
.nl-servers {
  overflow: hidden;
}
.nl-servers__title {
  margin-bottom: 32px;
}
.nl-servers__link {
  margin-bottom: 32px;
}
@media only screen and (min-width: 1024px) {
  .nl-servers__link__mob-text {
    display: none;
  }
}
.nl-servers__link__desk-text {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .nl-servers__link__desk-text {
    display: inline;
  }
}
.nl-servers__box-position {
  display: flex;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  margin-bottom: 8px;
  overflow-x: visible;
}
@media only screen and (min-width: 1024px) {
  .nl-servers__box-position {
    margin-bottom: 16px;
  }
}
.nl-servers__slider {
  overflow: visible;
}
.nl-servers__slider.swiper.swiper_custom {
  margin-right: 0;
  margin-bottom: 0;
  padding-bottom: 56px;
  width: 100%;
  padding-right: 0;
}
@media only screen and (min-width: 1440px) {
  .nl-servers__slider.swiper.swiper_custom {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .nl-servers__slider {
    margin: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .nl-servers__slider .swiper-wrapper {
    display: flex;
    gap: 16px;
  }
}
.nl-servers__slider.swiper_custom.swiper-initialized:after {
  bottom: 24px;
  left: 70px;
  transform: translateX(0);
  width: calc(100% - 126px);
}
@media only screen and (min-width: 1920px) {
  .nl-servers__slider.swiper_custom.swiper-initialized:after {
    display: none;
  }
}
.nl-servers__slider .swiper-button-next {
  left: auto;
  right: 0;
}
.nl-servers__slider .swiper-button-prev {
  left: 16px;
}
.nl-servers__slider .swiper-button-prev,
.nl-servers__slider .swiper-button-next {
  height: 48px;
  width: 48px;
  padding: 14px;
  bottom: 0;
}
@media only screen and (min-width: 1440px) {
  .nl-servers__slider .swiper-button-prev,
  .nl-servers__slider .swiper-button-next {
    display: none;
  }
}
.nl-servers__slider .swiper-slide {
  width: 320px;
  transform: none;
}
@media only screen and (min-width: 1440px) {
    .nl-servers__slider .swiper-slide {
        width: 320px;
        flex-grow: 0;
        flex-shrink: 0;
    }
}





.nl-servers__notice {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
}
.gallery__title {
  margin-bottom: 32px;
}
@media only screen and (min-width: 768px) {
  .gallery__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}
.gallery__slider.swiper.swiper_custom {
  padding-bottom: 56px;
  padding-right: 16px;
}
@media only screen and (min-width: 768px) {
  .gallery__slider.swiper.swiper_custom {
    margin: 0;
    padding-bottom: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 768px) {
  .gallery__slider .swiper-wrapper {
    display: flex;
  }
}
.gallery__slider.swiper_custom.swiper-initialized:after {
  bottom: 24px;
  width: 70%;
}
@media only screen and (min-width: 768px) {
  .gallery__slider.swiper_custom.swiper-initialized:after {
    display: none;
  }
}
.gallery__slider .swiper-button-prev,
.gallery__slider .swiper-button-next {
  height: 48px;
  width: 48px;
  padding: 14px;
  bottom: 0;
}
@media only screen and (min-width: 768px) {
  .gallery__slider .swiper-button-prev,
  .gallery__slider .swiper-button-next {
    display: none;
  }
}
.gallery-card {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .gallery-card {
    gap: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .gallery-card {
    flex-direction: row;
    align-items: center;
  }
  .gallery-card:nth-child(2n) .gallery-card__content {
    order: 1;
  }
  .gallery-card:nth-child(2n) picture {
    order: 2;
  }
}
.gallery-card__img {
  margin-left: -16px;
  margin-right: -16px;
  width: calc(100% + 32px);
  height: 70%;
  border-radius: 22px;
  object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .gallery-card__img {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    height: 440px;
  }
}
@media only screen and (min-width: 1024px) {
  .gallery-card__img {
    height: auto;
  }
}
@media only screen and (min-width: 1440px) {
  .gallery-card__img {
    height: 458px;
  }
}
.gallery-card__content {
  padding: 16px 0;
}
@media only screen and (min-width: 768px) {
  .gallery-card__content {
    padding: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .gallery-card__content {
    flex-shrink: 0;
    width: calc(50% - 8px);
    padding: 16px;
  }
}
.gallery-card__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.48px;
  margin: 0 0 8px 0;
}
@media only screen and (min-width: 768px) {
  .gallery-card__title {
    font-size: 30px;
    line-height: 38px;
    letter-spacing: 0.6px;
  }
}
@media only screen and (min-width: 1024px) {
  .gallery-card__title {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 24px;
  }
}
.gallery-card__text {
  color: #4a4f62;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
}
@media only screen and (min-width: 768px) {
  .gallery-card__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.36px;
  }
}
html.dark .gallery__slider.swiper.swiper_custom {
  padding-right: 16px;
}
@media only screen and (min-width: 768px) {
  html.dark .gallery__slider.swiper.swiper_custom {
    padding-right: 0;
  }
}
html.dark .gallery-card__text {
  color: rgba(255, 254, 255, 0.8);
}
.nl-solutions {
  padding: 56px 0;
  background-color: rgba(29, 35, 59, 0.03);
}
.nl-solutions__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media only screen and (min-width: 768px) {
  .nl-solutions__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media only screen and (min-width: 768px) {
  .nl-solutions__title {
    max-width: 320px;
  }
}
@media only screen and (min-width: 1024px) {
  .nl-solutions__title {
    max-width: 472px;
  }
}
.nl-solutions__message {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.4px;
}
@media only screen and (min-width: 1024px) {
  .nl-solutions__message {
    padding: 16px;
  }
}
html.dark .nl-solutions {
  background-color: rgba(255, 254, 255, 0.05);
}
.game-hero {
  margin-bottom: 64px;
}
@media only screen and (min-width: 768px) {
  .game-hero {
    margin-bottom: 32px;
  }
}
@media only screen and (min-width: 1024px) {
  .game-hero {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .game-hero__container {
    display: flex;
  }
}
.game-hero__content {
  padding-top: 24px;
}
@media only screen and (min-width: 1024px) {
  .game-hero__content {
    width: 65%;
    padding-top: 40px;
    flex-shrink: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .game-hero__content {
    width: 768px;
  }
}
@media only screen and (min-width: 1920px) {
  .game-hero__content {
    padding-top: 96px;
    width: 788px;
  }
}
.game-hero__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
}
@media only screen and (min-width: 1024px) {
  .game-hero__title {
    font-size: 48px;
  }
}
.game-hero__title--second {
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.6px;
  color: #7a7d8d;
  margin-bottom: 32px;
}
@media only screen and (min-width: 1024px) {
  .game-hero__title--second {
    font-size: 36px;
    max-width: 100%;
  }
}
.game-hero__description {
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.36px;
}
@media only screen and (min-width: 1024px) {
  .game-hero__description {
    font-size: 18px;
    line-height: 24px;
  }
}
.game-hero__characteristics {
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media only screen and (min-width: 1024px) {
  .game-hero__characteristics {
    grid-template-columns: repeat(2, auto);
    grid-column-gap: 24px;
    gap: 16px 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .game-hero__characteristics {
    grid-column-gap: 32px;
  }
}
.game-hero__characteristics__item {
  display: flex;
  gap: 8px;
  align-items: start;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.36px;
}
.game-hero__price {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 4px;
  padding-right: 16px;
  padding-bottom: 4px;
  border-radius: 0px 32px 32px 0px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
  background-color: #ffffff;
}
.game-hero__price::before {
  content: "";
  height: calc(100% - 2px);
  width: 100%;
  background: #ffffff;
  position: absolute;
  top: 1px;
  left: -100%;
}
.game-hero__price--bg {
  position: relative;
  width: fit-content;
  border-radius: 0px 32px 32px 0px;
  background: linear-gradient(to left, rgb(144, 0, 237), rgba(144, 0, 237, 0.5) 80%);
  margin-bottom: 32px;
  padding-top: 1px;
  padding-right: 1px;
  padding-bottom: 1px;
}
.game-hero__price--bg::before {
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(to left, rgba(144, 0, 237, 0.5), rgba(144, 0, 237, 0) 50%);
  position: absolute;
  top: 0;
  left: -100%;
}
.game-hero__price__value {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.48px;
  color: #9000ed;
}
.game-hero__btn {
  width: 100%;
  height: 48px;
}
@media only screen and (min-width: 768px) {
  .game-hero__btn {
    width: fit-content;
  }
}
.game-hero__image {
  position: relative;
  display: none;
  width: 34%;
}
@media only screen and (min-width: 768px) {
  .game-hero__image {
    display: flex;
    align-items: flex-start;
    padding-top: 102px;
    height: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .game-hero__image {
    padding-top: 39px;
    width: 100%;
    height: 624px;
  }
}
@media only screen and (min-width: 1920px) {
  .game-hero__image {
    padding-top: 32px;
    height: 668px;
  }
}
.game-hero__image__ellipse {
  position: absolute;
  width: 405.828px;
  height: 694.864px;
  border-radius: 694.864px;
  opacity: 0.2;
  background: #4B18F2;
  filter: blur(54.8628349304px);
}
@media only screen and (min-width: 768px) {
  .game-hero__image__ellipse {
    transform: rotate(-45deg) translate(52%, 0%);
  }
}
@media only screen and (min-width: 1024px) {
  .game-hero__image__ellipse {
    width: 415.131px;
    height: 710.793px;
    border-radius: 710.793px;
    transform: rotate(-45deg) translate(65%, 10%);
  }
}
@media only screen and (min-width: 1920px) {
  .game-hero__image__ellipse {
    width: 554.785px;
    height: 949.91px;
    border-radius: 949.91px;
    transform: rotate(-45deg) translate(65%, -5%);
    filter: blur(75px);
  }
}
.game-hero__image__img {
  position: relative;
  left: 15px;
  width: 410.024px;
  height: 410.024px;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .game-hero__image__img {
    left: 40px;
    width: 458.482px;
    height: 458.482px;
  }
}
@media only screen and (min-width: 1920px) {
  .game-hero__image__img {
    width: 553px;
    height: 553px;
    left: 159px;
  }
}
.game-hero__image__img-shadow {
  position: absolute;
  bottom: 54px;
  left: 23px;
  opacity: 0.9;
  width: 396.678px;
  height: 210.573px;
  filter: blur(5.9316368103px);
  background-image: url("../assets/gameServer/hero/game-hero-tabl.webp");
  background-size: cover;
  background-position: bottom;
}
@media only screen and (min-width: 1024px) {
  .game-hero__image__img-shadow {
    left: 49px;
    bottom: 50px;
    width: 443.558px;
    height: 246px;
    filter: blur(6.632648468px);
    background-image: url("../assets/gameServer/hero/game-hero-desk.webp");
  }
}
@media only screen and (min-width: 1920px) {
  .game-hero__image__img-shadow {
    width: 535px;
    height: 294px;
    left: 159px;
    bottom: 0;
  }
}
.game-hero__image__img-filter {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(180deg);
  width: 705.61px;
  height: 207.48px;
  opacity: 0.9;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
}
@media only screen and (min-width: 1024px) {
  .game-hero__image__img-filter {
    width: 789px;
    height: 232px;
  }
}
@media only screen and (min-width: 1920px) {
  .game-hero__image__img-filter {
    width: 952px;
    height: 207px;
  }
}
html.dark .game-hero__price {
  background-color: #1d233b;
}
html.dark .game-hero__price::before {
  background: #1d233b;
}
html.dark .game-hero__price--bg {
  background: linear-gradient(to left, rgb(168, 91, 246), rgba(168, 91, 246, 0.5) 80%);
}
html.dark .game-hero__price--bg::before {
  background: linear-gradient(to left, rgba(168, 91, 246, 0.5), rgba(168, 91, 246, 0) 50%);
}
html.dark .game-hero__price__value {
  color: #a85bf6;
}
html.dark .game-hero__image__img-filter {
  background: linear-gradient(0deg, rgba(29, 35, 59, 0) 0%, #1D233B 100%);
}
.game-info__title {
  margin-bottom: 32px;
}
.game-info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media only screen and (min-width: 1024px) {
  .game-info__grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}
.game-info__picture {
  margin-left: -16px;
  margin-right: -16px;
}
@media only screen and (min-width: 768px) {
  .game-info__picture {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    height: 312px;
  }
}
@media only screen and (min-width: 1024px) {
  .game-info__picture {
    height: 222px;
  }
}
@media only screen and (min-width: 1200px) {
  .game-info__picture {
    height: 262px;
  }
}
@media only screen and (min-width: 1440px) {
  .game-info__picture {
    height: 292px;
  }
}
.game-info__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 22px;
}
@media only screen and (min-width: 768px) {
  .game-info__img {
    height: 100%;
  }
}
.game-info__description {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media only screen and (min-width: 1024px) {
  .game-info__description {
    padding: 16px;
  }
}
.game-info__text {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.36px;
}
.game-range__title {
  margin-bottom: 32px;
}
.game-range__descr {
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.36px;
}
@media only screen and (min-width: 1024px) {
  .game-range__descr {
    width: 654px;
  }
}
.game-range__slider.swiper.swiper_custom {
  padding-bottom: 56px;
  padding-right: 16px;
}
@media only screen and (min-width: 1024px) {
  .game-range__slider.swiper.swiper_custom {
    margin: 0;
    padding-bottom: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .game-range__slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    transform: none;
  }
}
.game-range__slider .swiper-slide {
  transform: none;
}
@media only screen and (min-width: 1024px) {
  .game-range__slider .swiper-slide {
    display: none;
  }
  .game-range__slider .swiper-slide.show {
    display: block;
  }
}
.game-range__slider.swiper_custom.swiper-initialized:after {
  bottom: 24px;
  width: 70%;
}
@media only screen and (min-width: 1024px) {
  .game-range__slider.swiper_custom.swiper-initialized:after {
    display: none;
  }
}
.game-range__slider .swiper-button-prev,
.game-range__slider .swiper-button-next {
  height: 48px;
  width: 48px;
  padding: 14px;
  bottom: 0;
}
@media only screen and (min-width: 1024px) {
  .game-range__slider .swiper-button-prev,
  .game-range__slider .swiper-button-next {
    display: none;
  }
}
.game-range__show-more {
  display: none;
  padding: 14px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
}
@media only screen and (min-width: 1024px) {
  .game-range__show-more {
    display: flex;
  }
}
.game-range__show-more__close {
  display: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.game-range__show-more__open {
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.game-range__show-more__arrow {
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.game-range__show-more.isShow .game-range__show-more__open {
  display: none;
}
.game-range__show-more.isShow .game-range__show-more__close {
  display: inline;
}
.game-range__show-more.isShow .game-range__show-more__arrow {
  transform: rotate(180deg);
}
html.dark .game-range__slider.swiper.swiper_custom {
  padding-right: 16px;
}
@media only screen and (min-width: 1024px) {
  html.dark .game-range__slider.swiper.swiper_custom {
    padding-right: 0;
  }
}
.game-card {
  position: relative;
  width: 100%;
}
.game-card--has-list {
  margin-bottom: 13px;
}
.game-card--has-list .game-card__main-card::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -12px;
  display: block;
  height: 12px;
  border-radius: 0 0 16px 16px;
  border-right: 1px solid #d2d3d8;
  border-left: 1px solid #d2d3d8;
  border-bottom: 1px solid #d2d3d8;
}
.game-card__head {
  display: none;
}
@media only screen and (min-width: 768px) {
  .game-card__head {
    padding: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .game-card__head {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    width: fit-content;
    height: fit-content;
    padding: 0;
  }
}
.game-card__close {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  height: 48px;
  width: 48px;
  padding: 14px;
  border-radius: 48px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.game-card__close svg {
  stroke: #1d233b;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.game-card__close:hover svg {
  stroke: #9000ed;
}
@media only screen and (min-width: 1024px) {
  .game-card__close {
    margin-left: 0;
  }
}
.game-card__main-card {
  position: relative;
  z-index: 2;
  padding: 8px;
  border: 1px solid #d2d3d8;
  border-radius: 22px;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.game-card__main-card__bg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 144px;
  border-radius: 16px;
  background-color: rgba(29, 35, 59, 0.03);
}
.game-card__main-card__logo {
  width: 174px;
  height: 76px;
  object-fit: contain;
}
.game-card__main-card__info {
  padding: 8px;
  height: 100%;
}
.game-card__main-card__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.48px;
}
.game-card__main-card__count {
  color: #4a4f62;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
}
.game-card__list {
  position: absolute;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 0 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 750ms, opacity 0s cubic-bezier(0.4, 0, 0.2, 1) 750ms;
  transform-origin: top;
  scrollbar-width: none;
}
.game-card__list::-webkit-scrollbar {
  width: 0;
}
.game-card:not(.isOpen) .game-card__list {
  transition: none;
}
@media only screen and (min-width: 768px) {
  .game-card__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1024px) {
  .game-card__list {
    padding: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .game-card__list--triple {
    grid-template-columns: repeat(3, 1fr);
  }
}
.game-card__item {
  padding: 8px;
  border: 1px solid #d2d3d8;
  border-radius: 22px;
}
@media only screen and (min-width: 1024px) {
  .game-card__item {
    background-color: #ffffff;
  }
}
.game-card__item__bg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  border-radius: 16px;
  background-color: rgba(29, 35, 59, 0.03);
}
@media only screen and (min-width: 1024px) {
  .game-card__item__bg {
    height: 144px;
  }
}
.game-card__item__logo {
  width: auto;
  max-width: 200px;
  height: auto;
  max-height: 100%;
}
.game-card__item__title {
  margin: 0;
  padding: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.48px;
}
.game-card__body {
  position: relative;
  transition: all ease-in-out 250ms;
}
.game-card.isOpen {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0;
  padding-top: 32px;
  background-color: rgba(255, 254, 255, 0.4);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 999;
}
@media only screen and (min-width: 1024px) {
  .game-card.isOpen {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }
}
.game-card.isOpen .game-card__head {
  display: block;
}
.game-card.isOpen .game-card__body {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 16px;
  height: 100%;
  border-radius: 16px 16px 0 0;
  background-color: #fffeff;
}
@media only screen and (min-width: 1024px) {
  .game-card.isOpen .game-card__body {
    position: relative;
    width: 780px;
    height: fit-content;
    background-color: transparent;
    overflow: hidden;
  }
}
.game-card.isOpen .game-card__main-card {
  flex-shrink: 0;
  width: 100%;
  height: 160px;
  background-color: #d2d3d8;
}
@media only screen and (min-width: 1024px) {
  .game-card.isOpen .game-card__main-card {
    border-color: #d2d3d8;
    background-color: #ffffff;
  }
}
.game-card.isOpen .game-card__main-card::after {
  display: none;
}
.game-card.isOpen .game-card__main-card__bg {
  height: 100%;
  background-color: #fffeff;
}
@media only screen and (min-width: 1024px) {
  .game-card.isOpen .game-card__main-card__bg {
    background-color: rgba(29, 35, 59, 0.03);
  }
}
.game-card.isOpen .game-card__main-card__logo {
  width: 288px;
}
.game-card.isOpen .game-card__main-card__info {
  display: none;
}
.game-card.isOpen .game-card__list {
  position: relative;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  padding-bottom: 16px;
  max-height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.game-card.isOpen .game-card__list ::-webkit-scrollbar {
  display: none;
}
@media only screen and (min-width: 768px) {
  .game-card.isOpen .game-card__list {
    padding-bottom: 48px;
  }
}
@media only screen and (min-width: 1024px) {
  .game-card.isOpen .game-card__list {
    padding-bottom: 24px;
  }
}
html.dark .game-card__close svg {
  stroke: #fffeff;
}
@media only screen and (min-width: 1024px) {
  html.dark .game-card__close svg {
    stroke: #1d233b;
  }
}
html.dark .game-card__close:hover svg {
  stroke: #9000ed;
}
html.dark .game-card__main-card {
  border-color: rgba(255, 254, 255, 0.2);
}
html.dark .game-card__main-card::after {
  border-color: rgba(255, 254, 255, 0.2);
}
html.dark .game-card__main-card__bg {
  background-color: #F8F7F9;
}
html.dark .game-card__main-card__count {
  color: rgba(255, 254, 255, 0.8);
}
html.dark .game-card__item {
  border-color: rgba(255, 254, 255, 0.2);
}
@media only screen and (min-width: 1024px) {
  html.dark .game-card__item {
    background-color: #1d233b;
  }
}
html.dark .game-card__item__bg {
  background-color: #F8F7F9;
}
html.dark .game-card.isOpen {
  background-color: rgba(29, 35, 59, 0.2);
}
@media only screen and (min-width: 1024px) {
  html.dark .game-card.isOpen {
    background-color: rgba(0, 0, 0, 0.2);
  }
}
html.dark .game-card.isOpen .game-card__body {
  background-color: #1d233b;
}
@media only screen and (min-width: 1024px) {
  html.dark .game-card.isOpen .game-card__body {
    background-color: transparent;
  }
}
html.dark .game-card.isOpen .game-card__main-card {
  background-color: rgba(255, 254, 255, 0.2);
  border: none;
}
@media only screen and (min-width: 1024px) {
  html.dark .game-card.isOpen .game-card__main-card {
    border: 1px solid rgba(255, 254, 255, 0.2);
    background-color: #1d233b;
  }
}
html.dark .game-card.isOpen .game-card__main-card__bg {
  background-color: #F8F7F9;
}
.vps-hero {
  margin-bottom: 64px;
}
@media only screen and (min-width: 768px) {
  .vps-hero {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .vps-hero__container {
    display: flex;
  }
}
@media only screen and (min-width: 1920px) {
  .vps-hero__container {
    gap: 16px;
  }
}
.vps-hero__content {
  padding-top: 24px;
}
@media only screen and (min-width: 768px) {
  .vps-hero__content {
    width: 344px;
    flex-shrink: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .vps-hero__content {
    width: 50%;
    padding-top: 52px;
  }
}
@media only screen and (min-width: 1440px) {
  .vps-hero__content {
    width: 658px;
  }
}
@media only screen and (min-width: 1920px) {
  .vps-hero__content {
    padding-top: 96px;
    width: 788px;
  }
}
.vps-hero__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
}
@media only screen and (min-width: 1024px) {
  .vps-hero__title {
    font-size: 48px;
    width: 491px;
  }
}
.vps-hero__title--second {
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.6px;
  color: #7a7d8d;
  margin-bottom: 32px;
}
@media only screen and (min-width: 1024px) {
  .vps-hero__title--second {
    font-size: 36px;
    max-width: 100%;
  }
}
.vps-hero__characteristics {
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.vps-hero__characteristics__item {
  display: flex;
  gap: 8px;
  align-items: start;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.36px;
}
.vps-hero__btn {
  width: 100%;
  height: 48px;
}
@media only screen and (min-width: 768px) {
  .vps-hero__btn {
    width: fit-content;
  }
}
.vps-hero__image {
  position: relative;
  display: none;
}
@media only screen and (min-width: 768px) {
  .vps-hero__image {
    display: flex;
    align-items: flex-start;
    padding-top: 59px;
    height: 622px;
  }
}
@media only screen and (min-width: 1024px) {
  .vps-hero__image {
    padding-top: 57px;
    width: 100%;
    height: 660px;
  }
}
@media only screen and (min-width: 1920px) {
  .vps-hero__image {
    padding-top: 45px;
  }
}
.vps-hero__image__ellipse {
  position: absolute;
  width: 420.585px;
  height: 720.131px;
  border-radius: 720.131px;
  opacity: 0.2;
  background: #4B18F2;
  filter: blur(56.8578605652px);
}
@media only screen and (min-width: 768px) {
  .vps-hero__image__ellipse {
    transform: rotate(-45deg) translate(60%, -5%);
  }
}
@media only screen and (min-width: 1024px) {
  .vps-hero__image__ellipse {
    width: 451.714px;
    height: 773.431px;
    border-radius: 710.793px;
    transform: rotate(-45deg) translate(65%, 0%);
  }
}
@media only screen and (min-width: 1920px) {
  .vps-hero__image__ellipse {
    width: 554.785px;
    height: 949.91px;
    border-radius: 949.91px;
    transform: rotate(-45deg) translate(65%, -25%);
    filter: blur(75px);
  }
}
.vps-hero__image__img {
  position: relative;
  left: 66px;
  width: 357.508px;
  height: 445.167px;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .vps-hero__image__img {
    left: 130px;
    width: 368.202px;
    height: 458.482px;
  }
}
@media only screen and (min-width: 1920px) {
  .vps-hero__image__img {
    width: 416px;
    height: 518px;
    left: 168px;
  }
}
.vps-hero__image__img-shadow {
  position: absolute;
  bottom: 20px;
  left: 66px;
  transform: scaleY(-1);
  width: 356px;
  height: 215px;
  filter: blur(6.8751630783px);
  background-image: url("../assets/vps/hero/vps-hero-tabl.webp");
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 1024px) {
  .vps-hero__image__img-shadow {
    left: 130px;
    width: 368.202px;
    height: 336px;
    filter: blur(7.0808091164px);
    background-image: url("../assets/vps/hero/vps-hero-desk.webp");
    background-position: bottom;
  }
}
@media only screen and (min-width: 1920px) {
  .vps-hero__image__img-shadow {
    width: 416px;
    height: 332px;
    left: 168px;
    border-radius: 0 0 180px 0;
    bottom: 10px;
  }
}
.vps-hero__image__img-filter {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(180deg);
  width: 705.61px;
  height: 189px;
  opacity: 0.9;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
}
@media only screen and (min-width: 1024px) {
  .vps-hero__image__img-filter {
    width: 789px;
    height: 232px;
  }
}
@media only screen and (min-width: 1920px) {
  .vps-hero__image__img-filter {
    width: 952px;
    height: 207px;
  }
}
html.dark .vps-hero__image__img-filter {
  background: linear-gradient(0deg, rgba(29, 35, 59, 0) 0%, #1D233B 100%);
}
.vps-os {
  overflow: hidden;
}
.vps-os__title {
  margin-bottom: 32px;
}
.vps-os__message {
  margin-bottom: 32px;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
}
@media only screen and (min-width: 1024px) {
  .vps-os__message {
    width: 656px;
  }
}
@media only screen and (min-width: 1920px) {
  .vps-os__message {
    width: 788px;
  }
}
.vps-os__subtitle {
  margin-bottom: 16px;
}
.vps-os__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}
@media only screen and (min-width: 1024px) {
  .vps-os__info {
    flex-direction: row;
    justify-content: space-between;
  }
}
.vps-os__descr__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
}
@media only screen and (min-width: 1024px) {
  .vps-os__descr__text {
    width: 656px;
  }
}
.vps-os__descr__text > *:not(:first-child) {
  display: none;
}
.vps-os__descr__text.isExpanded > *:not(:first-child) {
  display: block;
}
.vps-os__more {
  display: inline-block;
  margin-top: 16px;
}
.vps-os__more__close {
  display: none;
}
.vps-os__more.isOpen .vps-os__more__open {
  display: none;
}
.vps-os__more.isOpen .vps-os__more__close {
  display: inline;
}
.vps-os__more.hidden {
  display: none;
}
.vps-os__button {
  width: 100%;
  height: 48px;
}
@media only screen and (min-width: 768px) {
  .vps-os__button {
    width: fit-content;
  }
}
@media only screen and (min-width: 1024px) {
  .vps-os__button {
    margin-top: 20px;
  }
}
.vps-os__box-position {
  display: flex;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  overflow-x: visible;
  margin-bottom: 64px;
}
.vps-os__box-position:last-child {
  margin-bottom: 0;
}
.vps-os__slider {
  overflow: visible;
}
.vps-os__slider.swiper.swiper_custom {
  margin-right: 0;
  padding-bottom: 56px;
  width: 100%;
  padding-right: 0;
}
@media only screen and (min-width: 1440px) {
  .vps-os__slider.swiper.swiper_custom {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .vps-os__slider {
    margin: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .vps-os__slider .swiper-wrapper {
    display: flex;
    gap: 16px;
  }
}
.vps-os__slider.swiper_custom.swiper-initialized:after {
  bottom: 24px;
  left: 70px;
  transform: translateX(0);
  width: calc(100% - 126px);
}
@media only screen and (min-width: 1920px) {
  .vps-os__slider.swiper_custom.swiper-initialized:after {
    display: none;
  }
}
.vps-os__slider .swiper-button-next {
  left: auto;
  right: 0;
}
.vps-os__slider .swiper-button-prev {
  left: 16px;
}
.vps-os__slider .swiper-button-prev,
.vps-os__slider .swiper-button-next {
  height: 48px;
  width: 48px;
  padding: 14px;
  bottom: 0;
}
@media only screen and (min-width: 1440px) {
  .vps-os__slider .swiper-button-prev,
  .vps-os__slider .swiper-button-next {
    display: none;
  }
}
.vps-os__slider .swiper-slide {
  width: 320px;
}
@media only screen and (min-width: 1920px) {
  .vps-os__slider .swiper-slide {
    width: 386px;
  }
}
.services__title {
  margin-bottom: 32px;
}
.services__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .services__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1024px) {
  .services__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services-card {
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e9eb;
  transition: gap 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 768px) {
  .services-card {
    gap: 8px;
    padding: 16px 8px;
    border-bottom: none;
  }
}
@media only screen and (min-width: 1440px) {
  .services-card {
    padding: 24px;
  }
}
.services-card:last-child {
  border-bottom: none;
}
.services-card.isOpen {
  gap: 8px;
}
.services-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .services-card__head {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}
.services-card__title {
  flex-grow: 1;
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.4px;
}
@media only screen and (min-width: 768px) {
  .services-card__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0.48px;
  }
}
.services-card__trigger {
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
  stroke: #a5a7b1;
}
.services-card__trigger.isActive {
  transform: rotate(180deg);
}
@media only screen and (min-width: 768px) {
  .services-card__trigger {
    display: none;
  }
}
.services-card__text {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  font-size: 16px;
  line-height: 20px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.services-card__text.isVisible {
  opacity: 1;
  pointer-events: auto;
}
@media only screen and (min-width: 768px) {
  .services-card__text {
    max-height: fit-content;
    opacity: 1;
    pointer-events: auto;
  }
}
html.dark .services-card {
  border-color: rgba(255, 254, 255, 0.1);
}
html.dark .services-card__trigger {
  stroke: rgba(255, 254, 255, 0.4);
}
.about-us__hero.section {
  padding-top: 24px;
  margin-bottom: 64px;
}
@media only screen and (min-width: 768px) {
  .about-us__hero.section {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .about-us__hero-container.container {
    display: grid;
    grid-template-columns: 55% 40%;
  }
}
@media only screen and (min-width: 1024px) {
  .about-us__hero-container.container {
    grid-template-columns: 40% 50%;
  }
}
@media only screen and (min-width: 1200px) {
  .about-us__hero-container.container {
    grid-gap: 56px;
  }
}
@media only screen and (min-width: 1440px) {
  .about-us__hero-container.container {
    grid-gap: 100px;
    grid-template-columns: 40% auto;
  }
}
@media only screen and (min-width: 1920px) {
  .about-us__hero-container.container {
    grid-gap: 300px;
  }
}
.about-us__hero__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media only screen and (min-width: 768px) {
  .about-us__hero__content {
    padding-top: 96px;
    padding-bottom: 110px;
  }
}
@media only screen and (min-width: 1200px) {
  .about-us__hero__content {
    padding-top: 116px;
    padding-bottom: 185px;
  }
}
@media only screen and (min-width: 1920px) {
  .about-us__hero__content {
    padding-top: 116px;
    padding-bottom: 210px;
  }
}
.about-us__hero__title {
  color: #1D233B;
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
}
.about-us__hero__title span {
  color: #9000ED;
}
@media only screen and (min-width: 1440px) {
  .about-us__hero__title {
    width: 90%;
  }
}
@media only screen and (min-width: 1920px) {
  .about-us__hero__title {
    width: 70%;
  }
}
.about-us__hero__description {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
}
.about-us__hero__picture {
  display: none;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .about-us__hero__picture {
    display: block;
  }
}
.about-us__hero__picture__spot {
  top: -130px;
  position: absolute;
  left: 200px;
  width: 360.347px;
  height: 616.991px;
  transform: rotate(-45deg);
  flex-shrink: 0;
  border-radius: 616.991px;
  opacity: 0.2;
  background: #4B18F2;
  filter: blur(56.8225288391px);
}
.about-us__hero__picture__img {
  position: absolute;
  left: 50px;
  top: 50px;
  width: 471px;
  height: 337px;
  flex-shrink: 0;
}
@media only screen and (min-width: 1440px) {
  .about-us__hero__picture__img {
    width: 543px;
    height: 388px;
  }
}
@media only screen and (min-width: 1920px) {
  .about-us__hero__picture__img {
    top: 0;
    width: 581px;
    height: 415px;
  }
}
.about-us__hero__picture__shadow {
  z-index: -1;
  bottom: 0;
  position: absolute;
  width: 711.786px;
  height: 485.23px;
  overflow: hidden;
}
.about-us__hero__picture__shadow-filter {
  bottom: -150px;
  position: absolute;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  transform: rotateX(180deg);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 39.64%, #FFF 68.14%);
  filter: blur(4.3401594162px);
}
.about-us__hero__picture__shadow-img {
  transform: rotateX(180deg);
  position: absolute;
  left: 55px;
  bottom: -110px;
  z-index: -1;
  width: 461px;
  height: 330px;
  flex-shrink: 0;
  filter: blur(1.7360637188px);
}
@media only screen and (min-width: 1200px) {
  .about-us__hero__picture__shadow-img {
    bottom: -60px;
  }
}
@media only screen and (min-width: 1440px) {
  .about-us__hero__picture__shadow-img {
    width: 532px;
    height: 381px;
  }
}
@media only screen and (min-width: 1920px) {
  .about-us__hero__picture__shadow-img {
    bottom: -100px;
    width: 570.159px;
    height: 408.328px;
  }
}
html.dark .about-us__hero__title {
  color: #FFFEFF;
}
html.dark .about-us__hero__title span {
  color: #A85BF6;
}
html.dark .about-us__hero__picture__shadow-filter {
  background: linear-gradient(0deg, rgba(29, 35, 59, 0) 39.64%, #1D233B 68.14%);
  filter: blur(4.3401594162px);
}
.about-us__our__container.container {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media only screen and (min-width: 768px) {
  .about-us__our__container.container {
    padding: 0 32px;
    margin: auto;
  }
}
@media only screen and (min-width: 1440px) {
  .about-us__our__container.container {
    padding-left: 56px;
    padding-right: 56px;
  }
}
@media only screen and (min-width: 1920px) {
  .about-us__our__container.container {
    padding-left: 164px;
    padding-right: 164px;
  }
}
@media only screen and (min-width: 768px) {
  .about-us__our__content {
    display: flex;
    gap: 32px;
    padding: 32px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 22px;
    border: 1px solid #E8E9EB;
    background: linear-gradient(180deg, #F8F6FE 0%, #DEDDF3 100%);
  }
  .about-us__our__content:nth-child(2n+2) {
    flex-direction: row-reverse;
  }
}
.about-us__our__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
}
@media only screen and (min-width: 768px) {
  .about-us__our__info {
    padding: 0;
  }
}
.about-us__our__divider {
  width: 100%;
  height: 1px;
  background: rgba(168, 91, 246, 0.5);
}
.about-us__our__title {
  color: #1D233B;
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.6px;
}
.about-us__our__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #4A4F62;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
}
.about-us__our__item {
  position: relative;
  padding-left: 40px;
}
.about-us__our__item:before {
  content: "1";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFEFF;
  background-color: #9000ED;
}
.about-us__our__item:nth-child(n+2):before {
  content: "2";
}
.about-us__our__item:nth-child(n+3):before {
  content: "3";
}
.about-us__our__item:nth-child(n+4):before {
  content: "4";
}
.about-us__our__item:nth-child(n+5):before {
  content: "5";
}
.about-us__our__item:nth-child(n+6):before {
  content: "6";
}
.about-us__our__item:nth-child(n+7):before {
  content: "7";
}
.about-us__our__item:nth-child(n+8):before {
  content: "8";
}
.about-us__our__img {
  display: flex;
  gap: 8px;
  border-radius: 22px;
  margin: 0 auto;
}
@media only screen and (min-width: 1200px) {
  .about-us__our__img {
    width: 506px;
    height: 276px;
  }
}
@media only screen and (min-width: 1920px) {
  .about-us__our__img {
    width: 560px;
    height: 304px;
  }
}
@media only screen and (min-width: 768px) {
  html.dark .about-us__our__content {
    border: 1px solid rgba(255, 254, 255, 0.1);
    background: linear-gradient(180deg, #44287A 0%, #2A2D56 100%);
  }
}
html.dark .about-us__our__title {
  color: #FFFEFF;
}
html.dark .about-us__our__text {
  color: rgba(255, 254, 255, 0.8);
}
html.dark .about-us__our__item:before {
  color: #1D233B;
  background-color: #A85BF6;
}
.at-introserve__container.container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .at-introserve__container.container {
    padding: 0 32px;
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 1200px) {
  .at-introserve__container.container {
    gap: 32px;
    align-items: center;
  }
}
@media only screen and (min-width: 1440px) {
  .at-introserve__container.container {
    gap: 48px;
    padding: 0 56px;
  }
}
@media only screen and (min-width: 1920px) {
  .at-introserve__container.container {
    gap: 48px;
    padding: 0 164px;
  }
}
.at-introserve__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 16px;
}
@media only screen and (min-width: 768px) {
  .at-introserve__info {
    padding: 0;
  }
}
.at-introserve__title {
  color: #1D233B;
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.6px;
}
.at-introserve__title span {
  color: #9000ED;
}
.at-introserve__paragraph {
  color: #4A4F62;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
  padding-left: 16px;
  border-left: 3px solid #9000ED;
}
.at-introserve__descr {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #1D233B;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
}
.at-introserve__img {
  display: block;
  border-radius: 22px;
  border: 1px solid #D2D3D8;
  margin-left: auto;
  margin-right: auto;
}
html.dark .at-introserve__title {
  color: #FFFEFF;
}
html.dark .at-introserve__title span {
  color: #A85BF6;
}
html.dark .at-introserve__paragraph {
  color: rgba(255, 254, 255, 0.8);
  border-left: 3px solid #A85BF6;
}
html.dark .at-introserve__descr {
  color: #FFFEFF;
}
.highlights__container.container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.highlights__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: 0.72px;
}
.highlights__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.highlights__content__button {
  display: flex;
  gap: 8px;
  width: fit-content;
  height: 48px;
  padding: 14px;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.48px;
  color: #1D233B;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .highlights__content__button {
    display: none;
  }
}
.highlights__content__button.isActive svg {
  transform: rotateX(180deg);
}
.highlights__content__button .icon-stroke {
  stroke: #1D233B;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.highlights__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .highlights__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 1024px) {
  .highlights__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.highlights__item {
  display: none;
  padding: 16px;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  border-radius: 16px;
  background: #FFFEFF;
  box-shadow: 0 0 16px 0 rgba(144, 0, 237, 0.1), 2px 4px 20px 0 rgba(144, 0, 237, 0.1);
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.4px;
}
@media only screen and (min-width: 768px) {
  .highlights__item {
    display: flex;
  }
}
.highlights__item.show {
  display: flex;
}
.highlights__item__icon {
  display: flex;
  padding: 14px;
  align-items: center;
  border-radius: 50%;
  background: rgba(29, 35, 59, 0.05);
}
html.dark .highlights__content__button {
  color: #FFFEFF;
}
html.dark .highlights__content__button .icon-stroke {
  stroke: #FFFEFF;
}
html.dark .highlights__item {
  background: #1D233B;
  box-shadow: 0 2px 18px 0 rgba(151, 71, 255, 0.5);
}
html.dark .highlights__item__icon {
  background: rgba(255, 254, 255, 0.05);
}
.offerings__container.container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.offerings__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: 0.72px;
}
.offerings__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .offerings__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.offerings__item {
  cursor: pointer;
  border-radius: 22px;
  background: linear-gradient(180deg, #F8F6FE 0%, #DEDDF3 100%);
}
@media only screen and (min-width: 1200px) {
  .offerings__item:hover .offerings__item__btn-container {
    background: #9000ED;
  }
}
.offerings__item__link {
  position: relative;
  display: flex;
  width: 100%;
  padding: 20px 0;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #1D233B;
}
@media only screen and (min-width: 1200px) {
  .offerings__item__link {
    padding: 20px;
    align-items: start;
  }
}
.offerings__item__btn {
  position: absolute;
  right: 10px;
  top: 10px;
}
.offerings__item__btn .icon-stroke {
  stroke: #9000ED;
}
@media only screen and (min-width: 1200px) {
  .offerings__item__btn .icon-stroke {
    stroke: #fffeff;
  }
}
@media only screen and (min-width: 1200px) {
  .offerings__item__btn svg {
    transform: rotateZ(45deg);
  }
}
.offerings__item__btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 1200px) {
  .offerings__item__btn-container {
    top: unset;
    bottom: 0;
    right: 0;
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 2px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 254, 255, 0.1);
    background: #1D233B;
  }
}
@media only screen and (min-width: 1200px) {
  .offerings__item__btn {
    top: unset;
    bottom: 0;
    right: 0;
    background-color: #fffeff;
    padding-top: 10px;
    padding-left: 10px;
    border-radius: 30px 0 0 0;
  }
  .offerings__item__btn:before {
    content: "";
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyMyAyNCIgZmlsbD0iI0ZGRkVGRiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMjRDMTIuNzAyNiAyNCAyMyAxMy43MDI1IDIzIDFWMjRIMFoiIC8+CjxwYXRoIGQ9Ik0yMi45Nzg1IDBIMjNWMUMyMyAwLjY2NDk0OCAyMi45OTI3IDAuMzMxNTczIDIyLjk3ODUgMFoiIC8+Cjwvc3ZnPgo=");
    position: absolute;
    bottom: 0;
    left: -50%;
    background-size: cover;
    aspect-ratio: 1;
    display: block;
    height: 50%;
  }
  .offerings__item__btn:after {
    content: "";
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyMyAyNCIgZmlsbD0iI0ZGRkVGRiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMjRDMTIuNzAyNiAyNCAyMyAxMy43MDI1IDIzIDFWMjRIMFoiIC8+CjxwYXRoIGQ9Ik0yMi45Nzg1IDBIMjNWMUMyMyAwLjY2NDk0OCAyMi45OTI3IDAuMzMxNTczIDIyLjk3ODUgMFoiIC8+Cjwvc3ZnPgo=");
    position: absolute;
    top: -50%;
    right: 0;
    background-size: cover;
    aspect-ratio: 1;
    display: block;
    height: 50%;
  }
}
.offerings__item__picture {
  padding: 20px 0 0 0;
}
.offerings__item__picture-img {
  height: 48px;
}
@media only screen and (min-width: 1200px) {
  .offerings__item__picture-img {
    height: 88px;
  }
}
.offerings__item__title {
  align-items: center;
  justify-content: center;
  display: flex;
  text-align: center;
  height: 48px;
  padding: 0 14px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.48px;
}
@media only screen and (min-width: 1200px) {
  .offerings__item__title {
    padding: 14px 0 0 0;
    height: auto;
  }
}
.offerings__item--no-info {
  display: flex;
  align-items: center;
  justify-content: center;
}
.offerings__item--no-info svg {
  width: 52px;
  height: 28px;
}
@media only screen and (min-width: 1200px) {
  .offerings__item--no-info svg {
    width: 106px;
    height: 58px;
  }
}
.offerings__item--no-info svg .icon-opacity {
  opacity: 0.4;
}
.offerings__item--no-info svg .icon-fill {
  fill: #9000ED;
}
html.dark .offerings__item {
  background: linear-gradient(180deg, #44287A 0%, #2A2D56 100%);
}
@media only screen and (min-width: 1200px) {
  html.dark .offerings__item:hover .offerings__item__btn-container {
    background: #a85bf6;
  }
}
@media only screen and (min-width: 1200px) {
  html.dark .offerings__item__btn {
    background: #1D233B;
  }
  html.dark .offerings__item__btn:before, html.dark .offerings__item__btn:after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyMyAyNCIgZmlsbD0iIzFEMjMzQiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMjRDMTIuNzAyNiAyNCAyMyAxMy43MDI1IDIzIDFWMjRIMFoiIC8+CjxwYXRoIGQ9Ik0yMi45Nzg1IDBIMjNWMUMyMyAwLjY2NDk0OCAyMi45OTI3IDAuMzMxNTczIDIyLjk3ODUgMFoiIC8+Cjwvc3ZnPgo=");
  }
}
html.dark .offerings__item__btn .icon-stroke {
  stroke: #A85BF6;
}
@media only screen and (min-width: 1200px) {
  html.dark .offerings__item__btn .icon-stroke {
    stroke: #fffeff;
  }
}
html.dark .offerings__item__link {
  color: #fffeff;
}
html.dark .offerings__item--no-info svg .icon-opacity {
  opacity: 0.7;
}
html.dark .offerings__item--no-info svg .icon-fill {
  fill: #A85BF6;
}
.our-data-centers__container.container {
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .our-data-centers__container.container {
    padding: 0 32px;
  }
}
@media only screen and (min-width: 1440px) {
  .our-data-centers__container.container {
    padding: 0 56px;
  }
}
@media only screen and (min-width: 1920px) {
  .our-data-centers__container.container {
    padding: 0 164px;
  }
}
.our-data-centers__title {
  padding: 0 16px;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: 0.72px;
}
.our-data-centers__map-img {
  display: block;
  width: 100%;
  max-width: 1010px;
  margin: auto;
  margin-top: 32px;
}
.our-data-centers__map-img--dark {
  display: none;
  width: 100%;
  max-width: 1010px;
  margin: auto;
  margin-top: 32px;
}
html.dark .our-data-centers__map-img {
  display: none;
}
html.dark .our-data-centers__map-img--dark {
  display: block;
}
.about-info__container.container {
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .about-info__container.container {
    padding: 0 32px;
  }
}
@media only screen and (min-width: 1200px) {
  .about-info__container.container {
    display: flex;
    flex-direction: row;
    gap: 16px;
  }
}
@media only screen and (min-width: 1440px) {
  .about-info__container.container {
    padding: 0 56px;
  }
}
@media only screen and (min-width: 1920px) {
  .about-info__container.container {
    padding: 0 164px;
  }
}
.about-info__list-btn {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 16px;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .about-info__list-btn {
    padding: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .about-info__list-btn {
    max-width: 320px;
    gap: 16px;
    margin-bottom: 0;
  }
}
.about-info__item-btn {
  display: flex;
  padding: 8px;
  align-items: center;
  gap: 16px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 36px;
  border: 1px solid #D2D3D8;
  background: #FFFEFF;
  color: #7A7D8D;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.about-info__item-btn:hover {
  background: rgba(115, 24, 242, 0.12);
}
.about-info__item-btn.isActive {
  color: #1D233B;
  border: 1px solid #9000ED;
  box-shadow: 0 0 16px 0 rgba(144, 0, 237, 0.1), 2px 4px 20px 0 rgba(144, 0, 237, 0.1);
}
.about-info__item-btn__picture {
  display: flex;
  padding: 4px;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  background: rgba(29, 35, 59, 0.05);
}
@media only screen and (min-width: 1200px) {
  .about-info__item-btn__picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
  }
}
@media only screen and (min-width: 1200px) {
  .about-info__item-btn {
    padding: 8px 40px;
    font-size: 36px;
    font-weight: 600;
    line-height: 46px;
    letter-spacing: 0.72px;
  }
}
.about-info__cards#about-us-info-card-list {
  padding: 0 0 48px 0;
  margin: 0;
}
@media only screen and (min-width: 1024px) {
  .about-info__cards#about-us-info-card-list {
    padding: 0;
  }
}
.about-info__item-card {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, #F8F6FE 0%, #DEDDF3 100%);
}
.about-info__item-card__descr {
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
}
.about-info__item-card__picture {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 102px;
  height: 88px;
}
.about-info__item-card__picture-img {
  height: 100%;
}
.about-info__item-card__picture-shadow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 79.922px;
  height: 131.406px;
  transform: rotate(-122.472deg);
  flex-shrink: 0;
  fill: #4B18F2;
  opacity: 0.22;
  filter: blur(13.5802459717px);
}
@media only screen and (min-width: 1200px) {
  .about-info__item-card__picture {
    width: 187px;
    height: 162px;
  }
}
@media only screen and (min-width: 1200px) {
  .about-info__item-card {
    flex-direction: row;
    padding: 64px;
  }
}
html.dark .about-info__item-btn {
  color: rgba(255, 254, 255, 0.7);
  border: 1px solid rgba(255, 254, 255, 0.2);
  background: #1D233B;
}
html.dark .about-info__item-btn:hover {
  background: rgba(115, 24, 242, 0.12);
}
html.dark .about-info__item-btn.isActive {
  color: #FFFEFF;
  border: 1px solid #A85BF6;
  box-shadow: 0 2px 18px 0 rgba(151, 71, 255, 0.5);
}
html.dark .about-info__item-btn__picture {
  background: rgba(255, 254, 255, 0.05);
}
html.dark .about-info__item-card {
  border-radius: 22px;
  background: linear-gradient(180deg, #44287A 0%, #2A2D56 100%);
}
.client-feedback__container.container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .client-feedback__container.container {
    padding: 0 32px;
  }
}
@media only screen and (min-width: 1440px) {
  .client-feedback__container.container {
    padding: 0 56px;
  }
}
@media only screen and (min-width: 1920px) {
  .client-feedback__container.container {
    padding: 0 164px;
  }
}
.client-feedback__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: 0.72px;
  padding: 0 16px;
}
@media only screen and (min-width: 768px) {
  .client-feedback__title {
    padding: 0;
  }
}
.client-feedback__item-feedback {
  position: relative;
  display: flex;
  width: 100%;
  height: auto;
  padding: 48px 24px 32px 24px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  border-radius: 22px;
  border: 1px solid #D2D3D8;
  background: rgba(29, 35, 59, 0.05);
}
@media only screen and (min-width: 1200px) {
  .client-feedback__item-feedback {
    padding: 80px 64px 48px 64px;
  }
}
.client-feedback__item-feedback__quote {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 72px;
  height: 72px;
}
.client-feedback__item-feedback__quote--dark {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .client-feedback__item-feedback__quote {
    top: 36px;
    left: 36px;
  }
}
.client-feedback__item-feedback__text {
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
  max-height: 450px;
  overflow-y: auto;
  scrollbar-width: none;
}
@media only screen and (min-width: 1024px) {
  .client-feedback__item-feedback__text {
    max-height: 150px;
  }
}
.client-feedback__item-feedback__text::-webkit-scrollbar {
  display: none;
}
.client-feedback__item-feedback__user {
  display: flex;
  gap: 8px;
}
.client-feedback__item-feedback__user-avatar {
  display: flex;
  width: 64px;
  height: 64px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #E8E9EB;
  background: #FFF;
  overflow: hidden;
}
.client-feedback__item-feedback__user-img {
  object-fit: cover;
}
.client-feedback__item-feedback__user-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.48px;
  color: #7A7D8D;
}
html.dark .client-feedback__item-feedback {
  border: 1px solid rgba(255, 254, 255, 0.2);
  background: rgba(255, 254, 255, 0.05);
}
html.dark .client-feedback__item-feedback__quote {
  display: none;
}
html.dark .client-feedback__item-feedback__quote--dark {
  display: block;
}
html.dark .client-feedback__item-feedback__user-avatar {
  border: 1px solid rgba(255, 254, 255, 0.1);
}
html.dark .client-feedback__item-feedback__user-info {
  color: rgba(255, 254, 255, 0.7);
}
.client-feedback__content#client-feedback-list {
  width: 100%;
  max-width: 1300px;
  padding: 0 0 48px 0;
  margin: 0 auto 0 auto;
}
.client-feedback__content#client-feedback-list .swiper-button-prev .swiper-button-icon--desc, .client-feedback__content#client-feedback-list .swiper-button-next .swiper-button-icon--desc {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .client-feedback__content#client-feedback-list {
    padding: 0 150px 48px 150px;
  }
  .client-feedback__content#client-feedback-list:after {
    display: none;
  }
  .client-feedback__content#client-feedback-list .swiper-slide {
    opacity: 0;
    transition: opacity ease 0.2s !important;
  }
  .client-feedback__content#client-feedback-list .swiper-slide-active {
    opacity: 1;
  }
  .client-feedback__content#client-feedback-list .swiper-button-prev {
    top: 50%;
    left: 100px;
    width: 48px;
    height: 48px;
    padding: 14px;
    transform: translate(-50%, -50%);
  }
  .client-feedback__content#client-feedback-list .swiper-button-prev .swiper-button-icon {
    display: none;
  }
  .client-feedback__content#client-feedback-list .swiper-button-prev .swiper-button-icon--desc {
    display: block;
  }
  .client-feedback__content#client-feedback-list .swiper-button-next {
    top: 50%;
    right: 50px;
    width: 48px;
    height: 48px;
    padding: 14px;
    transform: translate(-50%, -50%);
  }
  .client-feedback__content#client-feedback-list .swiper-button-next .swiper-button-icon {
    display: none;
  }
  .client-feedback__content#client-feedback-list .swiper-button-next .swiper-button-icon--desc {
    display: block;
  }
}
.future-oriented__container.container {
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .future-oriented__container.container {
    padding: 0 32px;
  }
}
@media only screen and (min-width: 1440px) {
  .future-oriented__container.container {
    padding: 0 56px;
  }
}
@media only screen and (min-width: 1920px) {
  .future-oriented__container.container {
    padding: 0 164px;
  }
}
.future-oriented__content {
  position: relative;
  display: flex;
  padding: 24px 24px 48px 24px;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  align-self: stretch;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(214, 215, 251, 0.2) 0%, rgba(90, 81, 194, 0.2) 100%);
}
@media only screen and (min-width: 768px) {
  .future-oriented__content {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 1024px) {
  .future-oriented__content {
    padding: 48px;
    overflow: hidden;
  }
}
@media only screen and (min-width: 1200px) {
  .future-oriented__content {
    gap: 200px;
  }
}
.future-oriented__filter-card {
  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;
  border-radius: 22px;
  mix-blend-mode: soft-light;
}
.future-oriented__picture {
  position: relative;
  z-index: 5;
  padding-bottom: 48px;
}
@media only screen and (min-width: 768px) {
  .future-oriented__picture {
    padding-bottom: 24px;
    padding-right: 24px;
  }
}
@media only screen and (min-width: 1024px) {
  .future-oriented__picture {
    padding: 0;
  }
}
.future-oriented__img {
  height: 214px;
}
@media only screen and (min-width: 768px) {
  .future-oriented__img {
    width: 91.5px;
    height: 120.5px;
  }
}
@media only screen and (min-width: 1024px) {
  .future-oriented__img {
    width: 183px;
    height: 241px;
  }
}
.future-oriented__shadow {
  position: absolute;
  bottom: 0;
  z-index: -1;
  width: 162px;
  height: 193px;
  opacity: 0.9;
  filter: blur(7.5px);
}
@media only screen and (min-width: 768px) {
  .future-oriented__shadow {
    width: 91.5px;
    height: 109px;
    filter: blur(3px);
  }
}
@media only screen and (min-width: 1024px) {
  .future-oriented__shadow {
    width: 183px;
    height: 218px;
    bottom: -60px;
  }
}
.future-oriented__info {
  position: relative;
  z-index: 5;
}
.future-oriented__info__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}
.future-oriented__info__descr {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
  margin-bottom: 24px;
}
.future-oriented__info__btn.btn {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .future-oriented__info__btn.btn {
    width: fit-content;
  }
}
html.dark .future-oriented__content {
  background: linear-gradient(180deg, rgba(214, 215, 251, 0.2) 0%, rgba(90, 81, 194, 0.2) 100%);
}
.about-contacts__container.container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about-contacts__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: 0.72px;
}
.about-contacts__subtitle {
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.6px;
  color: #4A4F62;
}
.about-contacts__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media only screen and (min-width: 1200px) {
  .about-contacts__content {
    flex-direction: row;
  }
}
.about-contacts__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .about-contacts__info {
    justify-content: space-between;
  }
}
.about-contacts__info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .about-contacts__info-list {
    display: grid;
    grid-template-columns: auto auto;
  }
}
.about-contacts__info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-contacts__info-item__title {
  color: #4A4F62;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
}
.about-contacts__info-item__text {
  position: relative;
  display: flex;
  padding: 12px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  align-self: stretch;
  border-radius: 12px;
  background: rgba(29, 35, 59, 0.03);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.36px;
}
.about-contacts__info-item__text span {
  flex: 1;
}
.about-contacts__info-item__btn-copy {
  cursor: pointer;
  height: 24px;
}
.about-contacts__info-item__btn-copy .icon-stroke {
  stroke: #D2D3D8;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.about-contacts__info-item__btn-copy:hover .icon-stroke {
  stroke: #9000ED;
}
.about-contacts__info-item__tooltip {
  position: absolute;
  top: 0;
  left: 20%;
  transform: translate(-50%, -100%);
}
.about-contacts__picture {
  position: relative;
}
.about-contacts__picture__img {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .about-contacts__picture__img {
    display: block;
    width: 432px;
    height: 242px;
    border-radius: 40px;
  }
}
@media only screen and (min-width: 1920px) {
  .about-contacts__picture__img {
    width: 520px;
    height: 242px;
  }
}
.about-contacts__btn {
  width: 100%;
}
.about-contacts__btn a {
  text-decoration: none;
  color: #1D233B;
}
@media only screen and (min-width: 1200px) {
  .about-contacts__btn {
    position: absolute;
    bottom: 11px;
    right: 76px;
    display: inline-flex;
    width: fit-content;
    padding: 4px 10px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 40px;
    background: #FFFEFF;
    border: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.32px;
  }
}
.about-contacts__btn-second {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 30px 0 0;
  padding-top: 10px;
  padding-left: 10px;
  background: #fffeff;
}
@media only screen and (min-width: 1200px) {
  .about-contacts__btn-second {
    display: flex;
  }
}
.about-contacts__btn-second:before {
  content: "";
  aspect-ratio: 1;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyMyAyNCIgZmlsbD0iI0ZGRkVGRiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMjRDMTIuNzAyNiAyNCAyMyAxMy43MDI1IDIzIDFWMjRIMFoiIC8+CjxwYXRoIGQ9Ik0yMi45Nzg1IDBIMjNWMUMyMyAwLjY2NDk0OCAyMi45OTI3IDAuMzMxNTczIDIyLjk3ODUgMFoiIC8+Cjwvc3ZnPgo=");
  background-size: cover;
  height: 50%;
  display: block;
  position: absolute;
  bottom: 0;
  left: -50%;
}
.about-contacts__btn-second:after {
  content: "";
  aspect-ratio: 1;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyMyAyNCIgZmlsbD0iI0ZGRkVGRiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMjRDMTIuNzAyNiAyNCAyMyAxMy43MDI1IDIzIDFWMjRIMFoiIC8+CjxwYXRoIGQ9Ik0yMi45Nzg1IDBIMjNWMUMyMyAwLjY2NDk0OCAyMi45OTI3IDAuMzMxNTczIDIyLjk3ODUgMFoiIC8+Cjwvc3ZnPgo=");
  background-size: cover;
  height: 50%;
  display: block;
  position: absolute;
  top: -50%;
  right: 0;
}
.about-contacts__btn-second__btn {
  display: flex;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 60px;
  border: 1px solid rgba(255, 254, 255, 0.1);
  background: #1D233B;
  outline: none;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.about-contacts__btn-second__btn:hover, .about-contacts__btn-second__btn:focus {
  background: #9000ED;
}
.about-contacts__btn-second__btn .icon-stroke {
  stroke: #FFFEFF;
}
html.dark .about-contacts__subtitle {
  color: rgba(255, 254, 255, 0.8);
}
html.dark .about-contacts__info-item__title {
  color: rgba(255, 254, 255, 0.8);
}
html.dark .about-contacts__info-item__text {
  background: rgba(255, 254, 255, 0.05);
}
html.dark .about-contacts__info-item__btn-copy {
  cursor: pointer;
}
html.dark .about-contacts__info-item__btn-copy .icon-stroke {
  stroke: #fffeff;
  opacity: 0.2;
}
html.dark .about-contacts__info-item__btn-copy:hover .icon-stroke {
  stroke: #a85bf6;
  opacity: 1;
}
html.dark .about-contacts__btn.btn a {
  color: #fffeff;
}
@media only screen and (min-width: 1200px) {
  html.dark .about-contacts__btn.btn {
    background: #1D233B;
  }
}
html.dark .about-contacts__btn-second {
  background: #1D233B;
}
html.dark .about-contacts__btn-second:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyMyAyNCIgZmlsbD0iIzFEMjMzQiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMjRDMTIuNzAyNiAyNCAyMyAxMy43MDI1IDIzIDFWMjRIMFoiIC8+CjxwYXRoIGQ9Ik0yMi45Nzg1IDBIMjNWMUMyMyAwLjY2NDk0OCAyMi45OTI3IDAuMzMxNTczIDIyLjk3ODUgMFoiIC8+Cjwvc3ZnPgo=");
}
html.dark .about-contacts__btn-second:after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyMyAyNCIgZmlsbD0iIzFEMjMzQiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMjRDMTIuNzAyNiAyNCAyMyAxMy43MDI1IDIzIDFWMjRIMFoiIC8+CjxwYXRoIGQ9Ik0yMi45Nzg1IDBIMjNWMUMyMyAwLjY2NDk0OCAyMi45OTI3IDAuMzMxNTczIDIyLjk3ODUgMFoiIC8+Cjwvc3ZnPgo=");
}
html.dark .about-contacts__btn-second__btn:hover, html.dark .about-contacts__btn-second__btn:focus {
  background: #a85bf6;
}
.not-found {
  padding-top: 100px;
  background: linear-gradient(180deg, rgba(214, 215, 251, 0.2) 0%, rgba(90, 81, 194, 0.2) 100%);
}
@media (max-width: 767px) {
  .not-found {
    padding-top: 140px;
    background: linear-gradient(180deg, rgba(214, 215, 251, 0.2) 0%, rgba(90, 81, 194, 0.2) 100%);
  }
}
.not-found .container {
  position: relative;
}
.not-found__title {
  margin-bottom: 32px;
  font-size: 48px;
  line-height: 1.12;
  letter-spacing: 2%;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .not-found__title {
    font-size: 42px;
  }
}
@media (max-width: 1023px) {
  .not-found__title {
    font-size: 40px;
  }
}
.not-found__description {
  margin-bottom: 56px;
}
@media (max-width: 1199px) {
  .not-found__description {
    max-width: 250px;
  }
}
@media (max-width: 767px) {
  .not-found__description {
    max-width: 100%;
  }
}
.not-found__wrap {
  height: 988px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 1919px) {
  .not-found__wrap {
    height: 800px;
  }
}
@media (max-width: 1439px) {
  .not-found__wrap {
    height: 676px;
  }
}
@media (max-width: 767px) {
  .not-found__wrap {
    justify-content: flex-start;
    height: 586px;
  }
}
.not-found__ellipse {
  position: absolute;
  width: 470px;
  height: 1087px;
  transform: rotate(-45deg) translate(50%, 10%);
  flex-shrink: 0;
  border-radius: 1000px;
  opacity: 0.2;
  filter: blur(61.3466262817px);
  background: #7e18f2;
  left: 210px;
  top: 0;
  bottom: 0;
}
@media (max-width: 1439px) {
  .not-found__ellipse {
    width: 441px;
    height: 874px;
    left: 372px;
  }
}
@media (max-width: 1023px) {
  .not-found__ellipse {
    position: absolute;
    width: 307px;
    height: 535px;
    transform: rotate(-45deg) translate(50%, 10%);
    flex-shrink: 0;
    border-radius: 1000px;
    opacity: 0.2;
    filter: blur(61.3466262817px);
    background: #7e18f2;
    left: 320px;
    top: 144px;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .not-found__ellipse {
    width: 236px;
    height: 412px;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: rotate(-45deg) translate(-50%, -10%);
  }
}
.not-found__absolute {
  position: absolute;
  right: 150px;
  top: 0;
  width: 1120px;
  max-width: 100%;
  height: 100%;
}
@media (max-width: 1919px) {
  .not-found__absolute {
    right: 46px;
  }
}
@media (max-width: 767px) {
  .not-found__absolute {
    right: 0;
    left: 0;
    top: auto;
    bottom: 0;
    height: 100%;
  }
}
.not-found__img {
  position: absolute;
  bottom: 99px;
  right: 117px;
  width: 545px;
  height: 545px;
}
@media (max-width: 1919px) {
  .not-found__img {
    width: 407px;
    height: 407px;
    right: 98px;
  }
}
@media (max-width: 1439px) {
  .not-found__img {
    width: 340px;
    height: 340px;
    right: 80px;
  }
}
@media (max-width: 1023px) {
  .not-found__img {
    width: 218px;
    height: 218px;
    right: 24px;
    bottom: 201px;
  }
}
@media (max-width: 767px) {
  .not-found__img {
    width: 168px;
    height: 168px;
    right: auto;
    left: 50%;
    transform: translateX(-39px);
    bottom: 57px;
  }
}
.not-found__img-dark {
  display: none;
}
.dark .not-found__img {
  display: none;
}
.dark  .not-found__img-dark {
  display: block;
}
.not-found__absolute-text {
  font-weight: 700;
  font-size: 588px;
  position: absolute;
  top: 0;
  right: 0;
  top: 60px;
  background: linear-gradient(180deg, #FFFEFF 0%, rgba(255, 255, 255, 0.08) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1919px) {
  .not-found__absolute-text {
    font-size: 460px;
  }
}
@media (max-width: 1439px) {
  .not-found__absolute-text {
    font-size: 360px;
  }
}
@media (max-width: 1023px) {
  .not-found__absolute-text {
    font-size: 236px;
    top: 152px;
    right: -20px;
  }
}
@media (max-width: 767px) {
  .not-found__absolute-text {
    top: auto;
    bottom: 85px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    font-size: 182px;
  }
}
.dark .not-found__absolute-text {
  background: linear-gradient(180deg, #1D233B 0%, rgba(29, 35, 59, 0.25) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}