/* Сброс стилей */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rubik", sans-serif;
}
ul {
  list-style: none;
}
button {
  border: none;
  outline: none;
  background: transparent;
  color: inherit;
}
input {
  border: none;
  outline: none;
  background: transparent;
  color: inherit;
}
textarea {
  border: none;
  outline: none;
  background: transparent;
  color: inherit;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Адаптация под 2032px */
/* Шаблоны */
.container {
  max-width: 2032px;
  width: 100%;
  margin: 0 auto;
  padding: 0 318px;
}
.section {
  margin-bottom: 140px;
}
.main {
  background: rgba(249, 249, 249, 1);
}
/* Шапка */
.header {
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);
  padding: 11px 0 22px 0;
}
.header__container {
  padding: 0 267px;
}
.header__text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.header__number {
  color: rgba(128, 179, 255, 1);
  font-size: 32px;
  font-weight: 800;
  line-height: 53px;
}
.header__title {
  color: rgba(128, 179, 255, 1);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 15px;
}
.header__border {
  border: 2px solid rgba(198, 194, 254, 1);
}
.nav {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 50px;
}
.nav__link-title {
  color: rgba(0, 0, 0, 1);
  font-size: 24px;
  font-weight: 500;
  line-height: 53px;
}
.nav__link {
  color: rgba(198, 194, 254, 1);
  font-size: 24px;
  font-weight: 500;
  line-height: 53px;
}
/* 1 секция */
.hero {
  background: linear-gradient(
    180deg,
    rgba(138, 222, 255, 1),
    rgba(249, 249, 249, 1) 91%
  );
  position: relative;
}
.hero__container {
  padding: 130px 318px 0 318px;
  position: relative;
  z-index: 1;
}
.hero__logo {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
}
.hero__shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 600px;
  height: 100%;
  z-index: 2;
}
.shape {
  position: absolute;
}
.shape1 {
  top: 15%;
  left: 10%;
}
.shape2 {
  top: 25%;
  left: 15%;
}
.shape3 {
  top: 10%;
  left: 20%;
}
.shape4 {
  top: 30%;
  left: 30%;
}
.shape5 {
  top: 5%;
  left: 45%;
}
.shape6 {
  top: 8%;
  left: 52%;
}
.shape7 {
  top: -5%;
  left: 60%;
}
.shape8 {
  top: 20%;
  left: 65%;
}
.shape9 {
  top: -5%;
  left: 75%;
}
.shape10 {
  top: -5%;
  left: 75%;
}
.hero__text {
  margin-top: 250px;
  position: relative;
}
.hero__title {
  max-width: 900px;
  width: 100%;
  color: rgba(0, 0, 0, 1);
  font-size: 96px;
  font-weight: 900;
  line-height: 118px;
}
.hero__button-row {
  margin-top: 73px;
  display: flex;
  gap: 40px;
  align-items: center;
}
.hero__btn {
  border-radius: 20px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: linear-gradient(90deg, rgba(198, 194, 254, 1) 50%, rgba(255, 255, 255, 1) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: rgba(0, 0, 0, 1);
  padding: 25px 50px;
  font-size: 39px;
  font-weight: 600;
  line-height: 51px;
  transition: all 0.5s ease;
  max-width: 530px;
  width: 100%;
  border: none;
  cursor: pointer;
}

.hero__btn:hover {
  background-position: left bottom;
  transform: scale(1.05);
}
.hero__desc {
  color: rgba(128, 179, 255, 1);
  font-size: 31px;
  font-weight: 500;
  line-height: 42px;
}
/* 2 секция */
.promotion__title {
  max-width: 1100px;
  width: 100%;
  font-size: 64px;
  font-weight: 800;
  color: #80b3ff;
}
.promotion__title-decor {
  color: rgb(0, 0, 0);
}
.promotion__box {
  margin-top: 74px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 25px;
}
.promotion__item {
  padding: 20px 0 26px 0;
  border-radius: 20px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 326px;
  gap: 20px;
  transition: all 0.5s ease;
}
.promotion__item-title {
  color: rgba(0, 0, 0, 1);
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
  transition: all 0.5s ease;
  text-align: center;
}
.promotion__item:hover {
  background: rgba(198, 194, 254, 1);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}
.promotion__item:hover .promotion__item-title {
  color: #fff;
}
.promotion__item:hover .promotion__item__img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.9));
}
.promotion__item:hover .img-poisk {
  content: url("../assets/img/lyp.png");
}
.promotion__item:hover .img-obsluga {
  content: url("../assets/img/hes.png");
}
.promotion__item:hover .img-smm {
  content: url("../assets/img/mesendd.png");
}
.promotion__item:hover .img-kontekst {
  content: url("../assets/img/kontecstnayareklama_white.png");
}
.promotion__item:hover .img-media {
  content: url("../assets/img/mediynayareklama_white.png");
}
.promotion__item:hover .img-error {
  content: url("../assets/img/error_white.png");
}

/* 3 секция */
.sites__zag {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.sites__title {
  max-width: 800px;
  width: 100%;
  font-size: 64px;
  font-weight: 800;
  color: #80b3ff;
}
.sites__title-decor {
  color: rgb(0, 0, 0);
}
.sites__link-text,
.stoks__link-text {
  color: rgba(128, 179, 255, 1);
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  margin-right: 15px;
}
.sites__content {
  margin-top: 73px;
}
.sites__slider {
  border-radius: 20px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);
  padding: 12px 23px 41px 23px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}
.sites__item {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}
.img-fix{
  height: 700px;
}
.sites-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.sites-slide {
    display: none;
    width: 100%;
    transition: opacity 0.5s ease;
}
.sites-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.sites-slider-prev,
.sites-slider-next {
    cursor: pointer;
    transition: transform 0.3s ease;
}
.sites-slider-prev:hover,
.sites-slider-next:hover {
    transform: scale(1.1);
}
.sites__item-title {
  color: rgba(0, 0, 0, 1);
  font-size: 40px;
  font-weight: 600;
  line-height: 84px;
}
.sites__item-img {
  width: 100%;
}
.sites__btn {
  border-radius: 20px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
  background: rgba(198, 194, 254, 1);
  padding: 22px 55px;
  color: rgba(0, 0, 0, 1);
  font-size: 26px;
  font-weight: 500;
  margin-top: 25px;
  transition: all 0.5s ease;
}
.sites__btn:hover {
  transform: translateY(-3px);
  background: rgb(108, 160, 237);
}
.sites__slader-img1:hover {
  content: url("../assets/svg/slide-left-hover.svg");
}
.sites__slader-img2:hover {
  content: url("../assets/svg/slide-right-hover.svg");
}
/* 4 секция */
.prices__title {
  font-size: 64px;
  font-weight: 800;
  color: #80b3ff;
}
.prices__title-text {
  color: rgb(0, 0, 0);
}
.prices__box {
  margin-top: 74px;
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.prices__item {
  border-radius: 25px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);
  padding: 34px 25px 26px 25px;
  text-align: center;
  width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s ease;
}
.prices__item:hover {
  transform: translateY(30px);
  border: 3px solid rgba(128, 179, 255, 1);
  box-shadow: 0px 12px 16px 0px rgba(128, 179, 255, 1);
}
.prices__item-title {
  color: rgba(0, 0, 0, 1);
  font-size: 36px;
  font-weight: 600;
}
.prices__item-price {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight: 400;
}
.prices__item-desc {
  list-style: disc;
  text-align: left;
  padding-left: 30px;
  margin-top: 29px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.prices__item-text {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
}
.prices__btn {
  background: #c6c2fe;
  padding: 10px 25px;
  border-radius: 25px;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  text-align: center;
  transition: 0.25s;
  margin: 0 auto;
}
.prices__item:hover .prices__btn {
  background: rgba(128, 179, 255, 1);
  color: rgba(255, 255, 255, 1);
}
/* 5 секция*/
.stoks__zag {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.stoks__title {
  font-size: 64px;
  font-weight: 800;
  line-height: 75px;
  color: rgba(128, 179, 255, 1);
  max-width: 960px;
  width: 100%;
}
.stoks__title-text {
  color: rgba(0, 0, 0, 1);
}
.stoks__content {
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: center;
  margin-top: 74px;
}
.stoks__content-text {
  max-width: 543px;
  width: 100%;
  color: rgba(0, 0, 0, 1);
  font-size: 32px;
  font-weight: 400;
  line-height: 42px;
}
.stoks__list {
  margin-top: 30px;
}
.stoks__list-item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 25px;
}
.stoks__list-item::before {
  content: "-";
  position: absolute;
  left: 0;
  color: #000;
  font-weight: 400;
}
.stoks__form {
  border-radius: 20px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(128, 179, 255, 1);
  padding: 33px 70px 50px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 828px;
  width: 100%;
}
.stoks__form-title {
  color: rgba(255, 255, 255, 1);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 33px;
  text-align: center;
}
.stoks__form-input,
.stoks__form-text {
  max-width: 647px;
  width: 100%;
  border-radius: 20px;
  box-shadow: inset 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(231, 241, 255, 1);
  padding: 20px 15px;
  text-align: center;
  margin-bottom: 36px;
}
.stoks__form__input::placeholder,
.stoks__form__text::placeholder {
  color: rgba(128, 179, 255, 1);
  font-size: 20px;
  font-weight: 400;
}
.stoks__form__text {
  resize: vertical;
  padding: 20px 15px 10px 15px;
  line-height: 12px;
  text-align: center;
}
.stoks__text {
  max-width: 590px;
  width: 100%;
  text-align: center;
  color: rgba(255, 254, 254, 1);
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
}
.stoks__btn {
  margin-top: 25px;
  padding: 11px 22px;
  border-radius: 20px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);
  color: rgba(102, 176, 249, 1);
  font-size: 32px;
  font-weight: 900;
  line-height: 50px;
}
/* 7 секция */
.complex__title {
  font-size: 64px;
  font-weight: 800;
  color: #80b3ff;
}
.complex__title-text {
  color: rgb(0, 0, 0);
}
.complex__box {
  margin-top: 73px;
  transition: all 0.5s ease;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}
.complex__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 30px 32px;
  max-width: 450px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);
  border: 3px solid #ffffff;
  transition: all 0.4s ease;
}
.complex__item:hover{
  box-shadow: 0 12px 16px 0 #80b3ff;
  border: 3px solid #80b3ff;
}
.complex__item:hover .complex__item-icon {
  background: #80B3FF;
}
.complex__item-title {
  color: rgba(0, 0, 0, 1);
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  max-width: 250px;
  width: 100%;
}
.complex__item-icon {
  padding: 24px 18px;
  background: rgba(198, 194, 254, 1);
  border-radius: 50%;
}
/* 8 секция */
.business__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 73px;
}
.business__title {
  font-size: 64px;
  font-weight: 800;
  color: #80b3ff;
}
.business__title-decor {
  color: rgb(0, 0, 0);
}
.business__link {
  color: rgb(128, 179, 255);
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  margin-right: 15px;
}
.business__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 23px;
}
.business__item {
  grid-column: span 4;
  border-radius: 20px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgb(198, 194, 254);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.business__item-title {
  margin-bottom: 18px;
  color: black;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}
.business__item-description {
  color: black;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
}
/* 9 секция */
.warranty__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.warranty__title {
  font-size: 64px;
  font-weight: 800;
  color: #80b3ff;
  margin-bottom: 74px;
}
.warranty__title-decor {
  color: black;
}
.warranty__description {
  max-width: 686px;
  width: 100%;
  color: black;
  font-size: 32px;
  font-weight: 400;
  line-height: 42px;
}
.warranty__form {
  border-radius: 20px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);
  padding: 46px 41px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
.warranty__input {
  border-radius: 20px;
  box-shadow: inset 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(231, 241, 255, 1);
  padding: 20px 47px 14px 47px;
  max-width: 645px;
  height: 98px;
  width: 100%;
  color: rgba(128, 179, 255, 1);
  font-size: 39px;
  font-weight: 300;
  line-height: 51px;
}
.warranty__input::placeholder {
  color: rgba(128, 179, 255, 1);
  font-size: 39px;
  font-weight: 300;
  line-height: 51px;
}
.warranty__btn {
  border-radius: 20px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(198, 194, 254, 1);
  color: #000;
  font-size: 39px;
  font-weight: 600;
  line-height: 51px;
  padding: 16px 20px;
  height: 98px;
  max-width: 645px;
  width: 100%;
}
.warranty__text {
  max-width: 1000px;
  width: 100%;
  color: rgba(128, 179, 255, 1);
  font-size: 32px;
  font-weight: 400;
  line-height: 42px;
  text-align: center;
  margin: 0 auto;
}
/* 10 секция */
.calculator__top {
  margin-bottom: 74px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.calculator__title {
  font-size: 64px;
  font-weight: 800;
  color: #80b3ff;
}
.calculator__title-decor {
  color: black;
}
.calculator__top-icon {
  margin-right: 80px;
}
.calculator__content {
  position: relative;
  min-height: 610px;
}
.calculator__steps {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.calculator__number {
  padding: 16px 40px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  background: rgba(231, 241, 255, 1);
  color: rgba(128, 179, 255, 1);
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  border-radius: 20px 20px 0 0;
  width: 260px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.calculator__number.active {
  background: #ffffff;
  color: #000000;
}
.calculator__items {
  position: absolute;
  z-index: 2;
  top: 60px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
  border-radius: 0 20px 20px 20px;
  max-width: 1396px;
  width: 100%;
}
.calculator__item {
  padding: 20px 45px 32px 40px;
  display: none; /* Скрываем все шаги по умолчанию */
}
.calculator__item.active {
  display: block; /* Показываем активный шаг */
}
.calculator__item-title {
  color: black;
  font-weight: 700;
  font-size: 32px;
  line-height: 45px;
  margin-bottom: 15px;
}
.calculator__item-description {
  color: #80b3ff;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  max-width: 600px;
  width: 100%;
  margin-bottom: 29px;
}
.calculator__region {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
.calculator__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.calculator__city {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.calculator__city input[type="radio"] {
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.calculator__city-title {
  color: #80b3ff;
  font-weight: 400;
  line-height: 1.4;
  font-size: 24px;
  margin: 0;
}
.calculator__city-decor {
  color: black;
  font-weight: 700;
}
.calculator__row {
  display: flex;
  justify-content: flex-end;
}
.calculator__row-button {
  padding: 13px 24px;
  border-radius: 20px;
  background-color: rgb(128, 179, 255);
  color: rgb(253, 254, 255);
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.calculator__row-button:hover {
  background: #6ba0f0;
  transform: translateY(-2px);
}