@charset "UTF-8";
:root {
  --background: #171717;
  --color: #ffffff;
  --accent_1: #2784c7;
  --accent_2: #22bddf;
}

body {
  background-color: var(--background);
  color: var(--color);
  margin: 0;
  padding: 0;
  font-family: "Exo 2", serif;
  font-optical-sizing: auto;
  font-style: normal;
  overflow-x: hidden;
  word-break: keep-all;
  box-sizing: border-box;
}
body a {
  outline: none;
  text-decoration: none;
  color: var(--color);
}

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

.blue {
  color: var(--accent_2);
}

.content {
  width: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .vector {
    opacity: 0.2;
  }
}

.section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

.nav {
  position: relative;
  z-index: 2;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .nav {
    display: none;
  }
}
.nav a {
  text-decoration: none;
  color: var(--color);
}

.nav-mobile {
  display: none;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100vw;
  transition: background-color 0.3s ease-in-out;
}
.nav-mobile.scrolled {
  background-color: rgba(23, 23, 23, 0.7);
}
@media only screen and (max-width: 767px) {
  .nav-mobile {
    display: block;
  }
}
.nav-mobile .nav-mobile-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-mobile .logo-group {
  justify-content: left;
  z-index: 100;
}
.nav-mobile .logo-name {
  font-size: 20px;
  transition: color 0.4s ease-in-out;
}
.nav-mobile img {
  width: 45px;
  height: 35px;
}
.nav-mobile .burger-menu {
  z-index: 100;
}
.nav-mobile .burger-menu .burger-stripe {
  margin-top: 4px;
  width: 25px;
  height: 4px;
  background-color: var(--color);
}
.nav-mobile .nav-menu-mobile {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99;
  background-color: #202b39;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  overflow: hidden;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
.nav-mobile .nav-menu-mobile.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto; /* Делаем элемент кликабельным */
}
.nav-mobile .nav-menu-mobile .nav-menu-mobile-list {
  padding: 100px 20px 50px 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.nav-mobile .nav-menu-mobile .nav-menu-mobile-list a {
  text-decoration: none;
  color: var(--color);
}

.nav-vector {
  position: absolute;
  top: -500px;
  left: -600px;
  z-index: 1;
}
.nav-vector img {
  position: relative;
}

.nav-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  position: relative;
  z-index: 2;
}

.logo-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  font-weight: 600;
  font-size: 38px;
}

.text-blue {
  color: var(--accent_2);
}

.navbar {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 25px;
  font-weight: 600;
  font-size: 16px;
  background-color: rgba(206, 249, 254, 0.13);
  padding: 25px 40px;
  border-radius: 100px;
}

.blue-btn {
  background: linear-gradient(to right, var(--accent_1), var(--accent_2));
  color: var(--color);
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 40px;
  line-height: 100%;
}

.navbar__link {
  text-decoration: none;
  color: var(--color);
}

.navbar__item {
  position: relative;
}

.navbar__dropdown {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px 0;
  min-width: 280px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  border: 1px solid rgba(66, 179, 244, 0.2);
}

.navbar__item:hover .navbar__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.navbar__dropdown-item {
  text-decoration: none;
  color: var(--color);
  display: block;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.navbar__dropdown-item:hover {
  background: rgba(66, 179, 244, 0.1);
  color: var(--accent_2);
}

@media only screen and (max-width: 767px) {
  .navbar__dropdown {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 320px;
    border-radius: 15px;
    padding: 25px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }
  .navbar__item:hover .navbar__dropdown {
    transform: translate(-50%, -50%);
  }
  .navbar__dropdown-item {
    padding: 15px 30px;
    font-size: 16px;
    text-align: center;
  }
}
.header {
  padding-top: 109px;
  padding-bottom: 136px;
}
.header ul {
  position: relative;
  padding: 16px 0px;
}
.header li {
  list-style: none;
}
.header .header-point {
  width: 18px;
  height: 18px;
  position: relative;
  margin-right: 16px;
}
.header .header-point svg {
  width: 18px;
  height: 18px;
  transform: rotate(180deg);
}
@media only screen and (max-width: 767px) {
  .header {
    padding-bottom: 80px;
  }
}

.header-wrapper {
  position: relative;
}

.header__text-container {
  position: relative;
  max-width: 675px;
  z-index: 2;
}

.header__header {
  font-weight: 800;
  font-size: 64px;
  color: var(--color);
}
@media only screen and (max-width: 767px) {
  .header__header {
    margin-top: 10px;
    font-size: 22px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .header__header {
    font-size: 28px;
    line-height: 30px;
  }
}

.header__text {
  margin-top: 40px;
  font-size: 24px;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .header__text {
    font-size: 18px;
  }
}

.header__button {
  margin-top: 75px;
  background: linear-gradient(to right, var(--accent_1), var(--accent_2));
  color: var(--color);
  cursor: pointer;
  padding: 24px 24px;
  border-radius: 8px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .header__button {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    background: linear-gradient(to right, var(--accent_1), var(--accent_2));
    color: var(--color);
    cursor: pointer;
    padding: 15px 20px;
    border-radius: 8px;
  }
}

.header__img {
  position: absolute;
  right: -150px;
  top: -100px;
  z-index: 1;
}
.header__img img {
  max-width: 600px;
  max-height: 600px;
}
@media only screen and (max-width: 767px) {
  .header__img {
    opacity: 0.2;
    right: -700px;
  }
}

.about {
  margin-top: 80px;
  margin-bottom: 80px;
  position: relative;
}
.about .about-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .about .about-wrapper {
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .about {
    margin-top: 40px;
  }
}

.about__images {
  position: relative;
  width: 100%;
  height: 600px;
}
@media only screen and (max-width: 767px) {
  .about__images {
    position: relative;
    left: 30px;
    height: 500px;
  }
}
@media only screen and (max-width: 510px) {
  .about__images {
    position: relative;
    left: 30px;
    height: 350px;
  }
}
@media only screen and (max-width: 384px) {
  .about__images {
    position: relative;
    left: 30px;
    height: 300px;
  }
}
.about__images .about__image {
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .about__images .about__image {
    max-width: 80%;
    height: 80%;
  }
}
.about__images .about__image img {
  max-height: 440px;
  max-width: 400px;
  border-radius: 8px;
}
@media only screen and (max-width: 767px) {
  .about__images .about__image img {
    max-width: 100%;
    height: 100%;
    border-radius: 8px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about__images .about__image--top {
  top: 0;
  left: -30px;
}
.about__images .about__image--bottom {
  top: 162px;
  left: 136px;
}
@media only screen and (max-width: 767px) {
  .about__images .about__image--bottom {
    top: 50px;
    left: 50px;
  }
}

.about__text-block {
  padding-top: 20px;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 1130px) {
  .about__text-block {
    background-color: rgba(23, 23, 23, 0.51);
    padding: 20px;
    border-radius: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .about__text-block {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
  }
}

.about__blue-header {
  font-weight: 600;
  font-size: 21px;
  color: var(--accent_2);
}
@media only screen and (max-width: 767px) {
  .about__blue-header {
    font-size: 20px;
  }
}

.about__big-header {
  font-weight: 600;
  font-size: 48px;
  color: var(--color);
  line-height: 50px;
}
@media only screen and (max-width: 767px) {
  .about__big-header {
    margin-top: 10px;
    font-size: 22px;
    line-height: 24px;
  }
}

.about__text {
  margin-top: 24px;
  font-weight: 400;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .about__text {
    font-size: 18px;
  }
}

.about-vector {
  position: absolute;
  right: 250px;
  top: 150px;
}

.vector-2 {
  position: absolute;
  left: 0;
}

.ellipse-2 {
  position: absolute;
  left: -150px;
}

.products {
  padding: 80px 0;
}
.products a {
  display: block;
  text-decoration: none;
  flex: 1;
  position: relative;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .products {
    padding: 40px 0;
  }
}

.products__blue-header {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 600;
  font-size: 21px;
  color: var(--accent_2);
}
@media only screen and (max-width: 767px) {
  .products__blue-header {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .products__blue-header {
    width: 100%;
    text-align: right;
    margin: 0;
  }
}

.products__big-header {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 600;
  font-size: 67px;
  color: var(--color);
}
@media only screen and (max-width: 767px) {
  .products__big-header {
    margin-top: 10px;
    font-size: 22px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .products__big-header {
    width: 100%;
    text-align: right;
    margin: 0;
  }
}

.products__text {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 16px;
  line-height: 23px;
  font-weight: 400;
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .products__text {
    width: 100%;
    text-align: right;
    font-size: 18px;
  }
}

.products__items {
  margin-top: 89px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 62px;
  align-items: flex-start;
}
@media only screen and (max-width: 1110px) {
  .products__items {
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: mid) {
  .products__items {
    flex-direction: column;
    align-items: center;
  }
}

.products__item {
  position: relative;
  max-width: 350px;
  background: linear-gradient(-80deg, #323335 0%, transparent 50%, #323335 100%);
  border-radius: 16px;
  padding: 64px 50px 32px;
  transition: transform 0.3s ease-in-out;
  height: 100%;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .products__item {
    padding: 64px 20px 32px;
  }
}
.products__item:hover {
  transform: scale(1.1);
  border: 1px solid var(--accent_2);
}
.products__item:hover .item__label {
  background-color: var(--accent_2);
}
.products__item:hover svg {
  stroke: var(--color);
}
@media only screen and (max-width: 767px) {
  .products__item:hover {
    transform: none;
  }
}

.item__label {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 100px;
  background-color: var(--background);
  border: 1px solid var(--accent_2);
}

.item__label--mail {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.item__label--mail svg {
  stroke: var(--accent_2);
  width: 39px;
  height: 27px;
}

.item__label--storage {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.item__label--storage svg {
  stroke: var(--accent_2);
  width: 45px;
  height: 45px;
}

.item__label--network {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.item__label--network svg {
  stroke: var(--accent_2);
  width: 48px;
  height: 48px;
}

.item__header {
  font-weight: 600;
  font-size: 28px;
  color: var(--color);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .item__header {
    margin-top: 10px;
    font-size: 22px;
    line-height: 24px;
  }
}

.item__text {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  margin-top: 16px;
}

.item__button {
  background: linear-gradient(to right, var(--accent_1), var(--accent_2));
  color: var(--color);
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 8px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 22px;
  font-weight: 700;
  line-height: 15px;
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .item__button {
    font-size: 18px;
  }
}

.advantages {
  padding: 80px 0;
}
.advantages .advantages-wrapper {
  display: flex;
  gap: 80px;
  position: relative;
}
@media only screen and (max-width: 1200px) {
  .advantages .advantages-wrapper {
    flex-direction: column;
  }
}
.advantages .left-block img {
  max-width: 521px;
  max-height: 1040px;
  border-radius: 16px;
}
@media only screen and (max-width: 1200px) {
  .advantages .left-block img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .advantages .left-block {
    display: none;
    position: absolute;
    z-index: 1;
  }
  .advantages .left-block img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .advantages .right-block {
    padding: 10px 0;
    z-index: 2;
  }
}
.advantages .right-block-header {
  position: relative;
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  .advantages .right-block-header {
    padding: 0;
  }
}
.advantages .advantages-image-mobile {
  display: none;
}
.advantages .advantages-vector {
  z-index: -1;
  position: absolute;
  left: 130px;
  top: -500px;
  transform: scaleX(-1);
}
.advantages .advantages-vector-2 {
  display: none;
  z-index: -1;
  position: absolute;
  left: 130px;
  top: 450px;
}
@media only screen and (max-width: 767px) {
  .advantages .advantages-vector-2 {
    display: block;
  }
}
.advantages .blue-header {
  font-weight: 600;
  font-size: 21px;
  color: var(--accent_2);
}
@media only screen and (max-width: 767px) {
  .advantages .blue-header {
    font-size: 20px;
  }
}
.advantages .big-header {
  font-weight: 600;
  font-size: 67px;
  color: var(--color);
}
@media only screen and (max-width: 767px) {
  .advantages .big-header {
    margin-top: 10px;
    font-size: 22px;
    line-height: 24px;
  }
}
.advantages .header-text {
  font-size: 20px;
  line-height: 23px;
  font-weight: 400;
  margin-top: 24px;
}
.advantages .items {
  display: flex;
  margin-top: 50px;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .advantages .items {
    flex-direction: column;
  }
}
.advantages .items .items__left,
.advantages .items .items__right {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.advantages .items .item {
  padding: 32px;
  background: linear-gradient(-80deg, #323335 0%, transparent 50%, #323335 100%);
  border-radius: 16px;
}
@media only screen and (max-width: 767px) {
  .advantages .items .item {
    background: none;
  }
}
.advantages .items .item svg {
  width: 65px;
  height: 65px;
}
.advantages .items .item .item-header {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .advantages .items .item .item-header {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    color: var(--accent_2);
    padding: 0 10px;
  }
}
.advantages .items .item .item-text {
  margin-top: 16px;
  line-height: 23px;
}
@media only screen and (max-width: 767px) {
  .advantages .items .item .item-text {
    text-align: center;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  .advantages .items .item .item-icon {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .advantages .items .item {
    padding: 0;
    border-radius: 0;
    border-left: 1px solid var(--accent_2);
  }
}

.partners {
  padding: 80px 0;
}
.partners .header-text {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .partners {
    padding: 0;
  }
}
.partners .section-wrapper {
  position: relative;
}
.partners .partners-vector {
  position: absolute;
  z-index: -1;
  right: 0;
}
.partners .blue-header {
  font-weight: 600;
  font-size: 21px;
  color: var(--accent_2);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .partners .blue-header {
    font-size: 20px;
  }
}
.partners .big-header {
  font-weight: 600;
  font-size: 67px;
  color: var(--color);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .partners .big-header {
    margin-top: 10px;
    font-size: 22px;
    line-height: 24px;
  }
}
.partners .header-text {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 20px;
  line-height: 23px;
  font-weight: 400;
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .partners .header-text {
    text-align: center;
    margin-bottom: 30px;
  }
}
.partners .partners-slider {
  padding: 100px 0 0 0;
}
.partners .partners-slider .slide-image {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px;
}
.partners .partners-slider .slide-image#alkor {
  background-color: #ffffff;
}
.partners .partners-slider .slide-image#rublevo {
  overflow: hidden;
  background-color: #efefef;
}
.partners .partners-slider .slide-image#rublevo img {
  transform: scaleX(1.2);
}
.partners .partners-slider .slide-image img {
  max-width: 86px;
  max-height: 86px;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .partners .partners-slider {
    padding-top: 50px;
  }
}
.partners .swiper-slide-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
  background: linear-gradient(-80deg, #323335 0%, transparent 50%, #323335 100%);
  border-radius: 16px;
  padding: 32px;
}
.partners .swiper-slide-wrapper .slide-caption {
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
}
.partners .swiper-pagination {
  position: relative;
  padding-top: 50px;
}
@media only screen and (max-width: 767px) {
  .partners .swiper-pagination {
    padding-top: 5px;
  }
}
.partners .swiper-pagination-bullet {
  background-color: #ffffff;
}

.reviews {
  padding: 80px 0 146px 0;
}
.reviews .reviews-vector {
  position: absolute;
  z-index: -1;
  transform: scaleX(-1);
  top: 450px;
}
.reviews .blue-header {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 600;
  font-size: 21px;
  color: var(--accent_2);
}
@media only screen and (max-width: 767px) {
  .reviews .blue-header {
    font-size: 20px;
  }
}
.reviews .big-header {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 600;
  font-size: 67px;
  color: var(--color);
}
@media only screen and (max-width: 767px) {
  .reviews .big-header {
    margin-top: 10px;
    font-size: 22px;
    line-height: 24px;
  }
}
.reviews .header-text {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 16px;
  line-height: 23px;
  font-weight: 400;
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .reviews .header-text {
    text-align: center;
  }
}
.reviews .reviews-container {
  width: 100%;
  padding: 107px 0 0 0;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .reviews .reviews-container {
    padding-top: 50px;
    flex-direction: column;
  }
}
.reviews .review {
  width: calc(50% - 20px);
  box-sizing: border-box;
  background-color: rgba(170, 170, 170, 0.06);
  padding: 32px;
  border-radius: 16px;
}
@media only screen and (max-width: 767px) {
  .reviews .review {
    width: 100%;
  }
}
.reviews .review .review-text {
  font-size: 16px;
  line-height: 23px;
}
.reviews .review .review-author {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.reviews .review .author-name {
  font-size: 28px;
  line-height: 32px;
  font-weight: 600;
}
.reviews .review .author-company {
  padding-top: 8px;
  font-size: 12px;
  line-height: 16px;
}
.reviews .review .stars {
  margin-top: 8px;
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.reviews .review svg {
  width: 15px;
  height: 15px;
}

.footer {
  padding: 96px 0;
}
@media only screen and (max-width: 767px) {
  .footer {
    padding-top: 0;
  }
}
.footer .footer-wrapper {
  display: flex;
  gap: 27px;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .footer .footer-wrapper {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.footer .footer-info {
  max-width: 270px;
}
@media only screen and (max-width: 767px) {
  .footer .footer-info {
    max-width: none;
  }
}
.footer .footer-info .logo {
  font-size: 38px;
  font-weight: 600;
  line-height: 28px;
}
.footer .footer-info .logo .blue {
  color: var(--accent_2);
}
.footer .footer-info .description {
  margin-top: 32px;
  font-size: 16px;
  line-height: 23px;
}
.footer .footer-info .social-container {
  margin-top: 32px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .footer .footer-info .social-container {
    gap: 10px;
    justify-content: left;
  }
}
.footer .footer-info svg {
  width: 40px;
  height: 40px;
}
@media only screen and (max-width: 767px) {
  .footer .footer-menu {
    flex: 1;
  }
}
.footer .footer-menu .header {
  padding: 0;
  font-size: 21px;
  line-height: 24px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .footer .footer-menu .header {
    margin-bottom: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--accent_2);
  }
}
.footer .footer-menu .menu-item {
  display: block;
  text-decoration: none;
  color: var(--color);
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .footer .footer-contacts {
    flex: 1;
  }
}
.footer .footer-contacts .header {
  padding: 0;
  font-size: 21px;
  line-height: 24px;
  margin-bottom: 40px;
}
.footer .footer-contacts .contacts-item {
  display: flex;
  gap: 8px;
  text-decoration: none;
  color: white;
  margin-bottom: 16px;
}
.footer .footer-contacts svg {
  width: 16px;
  height: 16px;
}
@media only screen and (max-width: 767px) {
  .footer .footer-subscribe {
    width: 100%;
  }
}
.footer .footer-subscribe .header {
  padding: 0;
  font-size: 21px;
  line-height: 24px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .footer .footer-subscribe .header {
    margin-bottom: 10px;
  }
}
.footer .footer-subscribe .subscribe-form {
  background-color: var(--color);
  padding: 8px;
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
}
.footer .footer-subscribe .subscribe-form label {
  display: flex;
}
.footer .footer-subscribe .subscribe-form .subscribe-btn {
  background: linear-gradient(to right, var(--accent_1), var(--accent_2));
  padding: 20px 24px;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  color: var(--color);
  border-radius: 24px;
  border: none;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .footer .footer-subscribe .subscribe-form .subscribe-btn {
    font-size: 16px;
    padding: 5px 15px;
    border-radius: 16px;
  }
}
.footer .footer-subscribe .subscribe-form input {
  border: none;
  font-size: 20px;
  padding-left: 20px;
}
@media only screen and (max-width: 767px) {
  .footer .footer-subscribe .subscribe-form input {
    width: 100%;
    font-size: 16px;
  }
}
.footer .footer-subscribe .subscribe-form input:focus {
  outline: none;
}

/*
    PRODUCTS PAGE
*/
.solutions {
  padding: 80px 0 80px 0;
}
@media only screen and (max-width: 767px) {
  .solutions {
    padding-top: 0;
  }
}
.solutions .blue-header {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 600;
  font-size: 21px;
  color: var(--accent_2);
}
@media only screen and (max-width: 767px) {
  .solutions .blue-header {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .solutions .blue-header {
    margin: 0;
  }
}
.solutions .big-header {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 600;
  font-size: 67px;
  color: var(--color);
}
@media only screen and (max-width: 767px) {
  .solutions .big-header {
    margin-top: 10px;
    font-size: 22px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .solutions .big-header {
    text-align: left;
    margin: 0;
  }
}
.solutions .header-text {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 16px;
  line-height: 23px;
  font-weight: 400;
  margin-top: 24px;
  text-align: center;
  max-width: 950px;
}
@media only screen and (max-width: 767px) {
  .solutions .header-text {
    text-align: left;
  }
}
.solutions .solution-items {
  margin-top: 73px;
  display: flex;
  justify-content: space-between;
  gap: 89px;
}
@media only screen and (max-width: 767px) {
  .solutions .solution-items {
    flex-direction: column;
  }
}
.solutions .solution-items .solution-item {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.solutions .solution-items .solution-item:first-of-type {
  flex: 1;
}
.solutions .solution-items .solution-item:nth-of-type(2) {
  flex: 1.3;
}
@media only screen and (max-width: 767px) {
  .solutions .solution-items .solution-item:nth-of-type(2) {
    flex: 1;
  }
}
.solutions .solution-items .solution-item .item-container {
  background: linear-gradient(-80deg, #323335 0%, transparent 50%, #323335 100%);
  border-radius: 16px;
  padding: 64px 36px 32px 36px;
  min-height: 235px;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .solutions .solution-items .solution-item .item-container {
    padding: 64px 20px 32px 20px;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.solutions .solution-items .solution-item .item-container .solution-icon {
  width: 80px;
  height: 80px;
  background-color: var(--background);
  border: 1px solid var(--accent_2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -40px;
}
.solutions .solution-items .solution-item .item-container svg {
  stroke: var(--accent_2);
  width: 45px;
  height: 45px;
}
.solutions .solution-items .solution-item .item-container .solution-caption {
  font-size: 28px;
  line-height: 32px;
  font-weight: 600;
}
.solutions .solution-items .solution-item .item-container .solution-text {
  padding-top: 16px;
  font-size: 16px;
  line-height: 23px;
}
.solutions .solution-items .solution-item .solution-point {
  color: var(--color);
  margin-top: 23px;
  position: relative;
  padding-left: 20px;
  margin-left: 60px;
}
.solutions .solution-items .solution-item .solution-point b {
  color: var(--accent_2);
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  .solutions .solution-items .solution-item .solution-point {
    margin-left: 8%;
  }
}
.solutions .solution-items .solution-item .solution-point:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--accent_2);
  border-radius: 50%;
}
.solutions .solution-items .solution-item .solution-point:nth-of-type(2):before {
  width: 18px;
  height: 18px;
  top: 2px;
  left: -15px;
}
.solutions .solution-items .solution-item .solution-point:nth-of-type(3):before {
  width: 14px;
  height: 14px;
  top: 5px;
  left: -13px;
}

.prices {
  padding: 80px 0 80px 0;
}
@media only screen and (max-width: 767px) {
  .prices {
    padding: 0 0 80px 0;
  }
}
.prices .blue-header {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 600;
  font-size: 21px;
  color: var(--accent_2);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .prices .blue-header {
    font-size: 20px;
  }
}
.prices .big-header {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 600;
  font-size: 67px;
  color: var(--color);
}
@media only screen and (max-width: 767px) {
  .prices .big-header {
    margin-top: 10px;
    font-size: 22px;
    line-height: 24px;
  }
}
.prices .header-text {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 16px;
  line-height: 23px;
  font-weight: 400;
  margin-top: 24px;
  text-align: center;
  max-width: 950px;
}
.prices .price-items {
  margin-top: 150px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .prices .price-items {
    margin-top: 30px;
    flex-direction: column;
  }
}
.prices .price-items .price-item {
  padding: 32px;
  background: linear-gradient(-80deg, #323335 0%, transparent 50%, #323335 100%);
  border-radius: 16px;
  transition: transform 0.3s ease;
}
.prices .price-items .price-item:hover {
  transform: translateY(-50px);
}
@media only screen and (max-width: 767px) {
  .prices .price-items .price-item:hover {
    transform: translateY(0);
  }
}
.prices .price-items .price-item .price-item-header {
  font-size: 21px;
  line-height: 24px;
  color: var(--accent_2);
  font-weight: 600;
  text-align: center;
}
.prices .price-items .price-item .price-item-text {
  text-align: center;
  margin-top: 24px;
}
.prices .price-items .price-item .price-item-label {
  margin-top: 24px;
  padding: 16px;
  background-color: var(--background);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.prices .price-items .price-item .price-item-label .price-label-number {
  font-size: 38px;
  line-height: 48px;
  font-weight: 600;
  padding: 0 20px;
}
.prices .price-items .price-item .price-item-label .price-label-text {
  font-weight: 600;
  padding: 5px 20px;
  border-left: 1px solid var(--color);
}
.prices .price-items .price-item .price-item-options {
  margin-top: 24px;
}
.prices .price-items .price-item .price-item-options .price-item-option {
  margin-top: 16px;
  display: flex;
  gap: 8px;
}
.prices .price-items .price-item .price-item-options .price-item-option svg {
  width: 24px;
  height: 24px;
}
.prices .price-items .price-item .price-item-btn {
  margin-top: 24px;
  border-radius: 8px;
  background: linear-gradient(to right, var(--accent_1), var(--accent_2));
  padding: 24px;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.profit .profit-vector {
  position: absolute;
  z-index: -1;
  transform: scaleX(-1);
  top: 50px;
}
.profit .profit-advantages-vector-2 {
  display: none;
  z-index: -1;
  position: absolute;
  left: 430px;
  top: 150px;
  transform: scaleX(-1);
}
@media only screen and (max-width: 767px) {
  .profit .profit-advantages-vector-2 {
    display: block;
  }
}
.profit .blue-header {
  font-weight: 600;
  font-size: 21px;
  color: var(--accent_2);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .profit .blue-header {
    font-size: 20px;
  }
}
.profit .big-header {
  font-weight: 600;
  font-size: 67px;
  color: var(--color);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .profit .big-header {
    margin-top: 10px;
    font-size: 22px;
    line-height: 24px;
  }
}
.profit .header-text {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.profit .items {
  padding: 32px 0;
}
.profit .items .item {
  padding: 16px 56px 16px 32px;
  max-width: 700px;
  position: relative;
  margin: 24px auto;
  border-radius: 16px;
  border: 1px solid var(--color);
  cursor: pointer;
}
.profit .items .item .item-icon {
  width: 18px;
  height: 18px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.profit .items .item .item-icon svg {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}
.profit .items .item .item-header {
  font-weight: 600;
  font-size: 21px;
  color: var(--accent_2);
}
@media only screen and (max-width: 767px) {
  .profit .items .item .item-header {
    font-size: 20px;
  }
}
.profit .items .item .item-text-wrapper {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.profit .items .item .item-text {
  padding-top: 16px;
}
.profit .items .item.open .item-text-wrapper {
  max-height: 300px;
}
.profit .items .item.open .item-icon svg {
  transform: rotate(180deg);
}

.mail-advantages .mail-advantages-vector {
  position: absolute;
  z-index: -1;
  right: 5%;
  top: 30%;
}
.mail-advantages .mail-advantages-vector-2 {
  display: none;
  z-index: -1;
  position: absolute;
  left: 130px;
  top: 450px;
}
@media only screen and (max-width: 767px) {
  .mail-advantages .mail-advantages-vector-2 {
    display: block;
  }
}

.mail li {
  margin-bottom: 16px;
}

.network .solutions {
  padding-top: 20px;
}
.network .header__img {
  position: absolute;
  right: -150px;
  top: -100px;
  z-index: 1;
}
.network .header__img img {
  width: 1000px;
  height: 1000px;
}

.storage .solutions {
  padding-top: 20px;
}
.storage .header__img {
  position: absolute;
  right: -150px;
  top: -100px;
  z-index: 1;
}
.storage .header__img img {
  width: 1000px;
  height: 1000px;
}

.logo-dark {
  display: none;
}

[data-theme=light] {
  --background: #ffffff;
  --color: #4f4949;
}
[data-theme=light] .logo-dark {
  display: block;
}
[data-theme=light] .logo-light {
  display: none;
}
[data-theme=light] .nav-wrapper {
  background: rgba(170, 170, 170, 0.1);
  padding: 0 20px;
  margin-top: 20px;
  border-radius: 10px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
[data-theme=light] .products__item {
  background: rgba(170, 170, 170, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
[data-theme=light] .products__item:hover svg {
  stroke: var(--background);
}
[data-theme=light] .advantages .items .item {
  background: rgba(170, 170, 170, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
@media only screen and (max-width: 767px) {
  [data-theme=light] .advantages .items .item {
    padding: 10px;
  }
}
[data-theme=light] .advantages .items .item svg {
  padding: 10px;
  background-color: var(--color);
  border-radius: 8px;
}
[data-theme=light] .reviews .review {
  background: rgba(170, 170, 170, 0.1);
}
[data-theme=light] .partners .swiper-slide-wrapper {
  background: rgba(170, 170, 170, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
[data-theme=light] .partners .swiper-pagination-bullet {
  background-color: var(--color);
}
[data-theme=light] .nav-mobile .nav-menu-mobile .nav-menu-mobile-list a {
  color: var(--background);
}
[data-theme=light] .blue-btn,
[data-theme=light] .blue-btn .navbar__link,
[data-theme=light] .header__button,
[data-theme=light] .products__item .item__button,
[data-theme=light] .price-item-btn {
  color: var(--background);
}
[data-theme=light] .footer .footer-subscribe .subscribe-form .subscribe-btn {
  color: var(--background);
}
[data-theme=light] .footer .footer-subscribe .subscribe-form input {
  background-color: var(--color);
  color: var(--background);
}
[data-theme=light] .solutions .solution-items .solution-item .item-container {
  background: rgba(170, 170, 170, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
[data-theme=light] .prices .price-items .price-item {
  background: rgba(170, 170, 170, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
[data-theme=light] .footer .footer-contacts .contacts-item {
  color: var(--color);
}
[data-theme=light] .footer .footer-contacts svg {
  stroke: var(--color);
}

.footer .footer-info .social-container {
  display: none;
}

.nav-mobile .burger-menu .burger-stripe {
  transition: background-color 0.4s ease;
}

.theme-toggle {
  z-index: 10;
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.theme-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.theme-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
.theme-toggle .slider::before {
  position: absolute;
  content: "🌞";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.theme-toggle input:checked + .slider {
  background-color: var(--accent_2);
}
.theme-toggle input:checked + .slider::before {
  transform: translateX(26px);
  content: "🌙";
}

.product.content {
  font-size: 20px;
  padding-top: 200px;
}
.product.content ul.product-list {
  list-style: circle inside;
  padding-left: 0;
}
.product.content ul.product-list li::marker {
  color: var(--accent); /* или любой цвет, например: #FF5722 */
  font-size: 1.2em;
}
.product.content ul.tarif-list {
  list-style: circle inside;
  padding-left: 20px;
}
.product.content ul.tarif-list li::marker {
  color: var(--accent); /* или любой цвет, например: #FF5722 */
  font-size: 1.2em;
}
@media only screen and (max-width: 767px) {
  .product.content {
    padding-top: 50px;
  }
}
.product.content h1 {
  padding: 10px;
  border-bottom: 1px solid var(--accent_2);
  font-size: 38px;
  color: var(--color);
}
@media only screen and (max-width: 767px) {
  .product.content h1 {
    font-size: 32px;
  }
}
.product.content h2 {
  padding: 10px;
  border-bottom: 1px solid var(--color);
}
.product.content h3 {
  color: var(--accent_2);
}
.product.content .tarifs {
  padding-bottom: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .product.content .tarifs {
    gap: 10px;
  }
}
.product.content .tarifs .tarif-item {
  z-index: 10;
  padding: 20px;
  background-color: var(--background);
  border-radius: 8px;
  border: 1px solid var(--accent_2);
  transition: transform 0.3s ease-in-out;
}
.product.content .tarifs .tarif-item:hover {
  transform: scale(1.05);
}
@media only screen and (max-width: 767px) {
  .product.content .tarifs .tarif-item:hover {
    transform: scale(1);
  }
}
.product.content .tarifs .tarif-item .tarif-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color);
}
.product.content .tarifs .tarif-item .tarif-price {
  font-size: 32px;
  font-weight: 600;
  color: var(--accent_2);
}/*# sourceMappingURL=style.css.map */