.content-container {
  display: grid;
  gap: 1rem;
  /* Десктоп: 4fr + 2fr в одной строке */
  grid-template-columns: 4fr 2fr;
  grid-template-areas: "left-content right-content";
  /* Одна строка, две области */
  /* justify-content: space-between;
  align-items: center; */
  /* max-width: 1920px;
  width: 100%; */
}

.top-content-wrapper {
  height: 100%;
  display: flex;
  /* gap: 1rem; */
  flex: 2;
  flex-direction: column;
  justify-content: space-between;
}


/* .advantages-slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: none;
}

.advantages-slides-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.advantages-slide {
  flex-shrink: 0;
  box-sizing: border-box;
}

.advantages-slide-item {
  padding: 5px;
  font-size: 16px;
} */

.advantages-slider-container {
  display: none;
  position: relative;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  margin-top: 1rem;
  margin-bottom: 0.7rem;

}

.advantages-slides-wrapper {
  display: inline-block;
  transition: transform 0.4s linear;
  will-change: transform;
  white-space: nowrap;
}

.advantages-slide {
  display: inline-block;
  margin-right: 1.8rem;
  vertical-align: top;
}

.advantages-slide-item {
  font-size: 16px;
  font-size: 1rem;
  white-space: normal;
  display: inline;
  text-wrap: unset;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
}

@supports (-webkit-touch-callout: none) {
  .advantages-slide-item {
    -webkit-text-size-adjust: 100%;
    max-height: 100vh;
    /* Фикс для обрезания текста */
  }
}

.carousel-slides {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
}

.carousel-slide {
  width: 545px;
  height: 435px;
  border-radius: 30px;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-controls {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10px;
}

.carousel-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
  transition: background-color 0.3s;
  opacity: 0.7;
}

.carousel-dot.active {
  background-color: #27a8c6;
  opacity: 1;
}

.products-section {
  margin-bottom: 60px;
  margin: 60px auto 90px;
  width: 100%;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.products-header h2 {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 45px;
  color: #2b68a4;
  margin: 0;
}

.products-catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.products-catalog-header h2 {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 45px;
  color: #2b68a4;
  margin: 0;
}

.all-products-link {
  color: #2b68a4;
  text-decoration: underline;
  font-family: Nunito;
  font-weight: 600;
  font-size: 30px;
}


.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 15px;
}

.product-item:nth-child(n+4) {
  display: none;
}

.products-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 25px;
}

.product-item {
  width: auto;
  /* max-height: 530px; */
  border-radius: 3.5rem;
  overflow: hidden;
  aspect-ratio: 1/1;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.product-catalog-item {
  width: auto;
  /* max-height: 530px; */
  border-radius: 3.5rem;
  overflow: hidden;
  aspect-ratio: 1/1;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.product-item.tablet-only {
  display: none;
}

.product-catalog-item.tablet-only {
  display: none;
}

.product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.product-catalog-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.why-choose-us-container {
  max-height: 790px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  margin-bottom: 45px;
}

.why-choose-us {
  background-color: #a4d9e2;
  padding: 30px;
}

.why-choose-us-title {
  font-family: Nunito;
  font-weight: 500;
  font-size: 84px;
  color: #2b68a4;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.advantages-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.advantages-column {
  width: calc(50% - 15px);
}

.advantage-item {
  font-family: Nunito;
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #000000;
}


.client-item:hover,
.partner-item:hover,
.product-item:hover,
.product-item img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.product-catalog-item:hover,
.product-catalog-item img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 2;
}


.license-image.active {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  z-index: 3;
  border: 3px solid #2b68a4;
}

.license-image.tablet-only {
  display: flex;
}


.section-container {
  width: 100%;
  margin-bottom: 80px;
  overflow: hidden;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-inline: 1rem;
}

.section-title {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 45px;
  color: #2b68a4;
  margin: 0;
}

.section-arrows {
  display: none;
  gap: 20px;
}

.section-arrow {
  opacity: 1;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background 0.3s;
  -webkit-user-select: none;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.section-arrow img {
  height: 41px;
}

.section-arrow:hover {
  opacity: 0.8;
}

/* .section-arrow.disabled {
  opacity: 0;
  pointer-events: none;
} */


.clients-slider-container,
.partner-slider-container {
  overflow: hidden;
  width: 100%;
  padding-block: 20px;

}


.clients-slider-container {
  margin-bottom: 20px;
}

.clients-track,
.partner-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}

.client-slide,
.partner-slide {
  flex: 0 0 auto;
  width: calc(100% / 3);
  box-sizing: border-box;
  padding: 0 7px;

}

.client-item,
.partner-item {
  /* padding: 10px; */
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-in, box-shadow 0.2s ease-in;
  max-height: 260px;
  /* max-width: 545px; */
  overflow: hidden;
  cursor: pointer;
}

.client-item:hover,
.partner-item:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}

.client-content,
.partner-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.client-logo,
.partner-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-item span {
  font-size: 24px;
  font-weight: 500;
  color: #333;
}

.reviews-section {
  padding: 40px 0;
  width: 100%;
  max-width: 100%;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.reviews-title {
  font-family: "Nunito", sans-serif;
  font-size: 40px;
  color: #2b68a4;
  margin: 0;
}

.reviews-arrows {
  display: flex;
  gap: 15px;
}

.review-arrow {
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.2s ease;
  -webkit-user-select: none;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.review-arrow {
  height: 41px;
}

.review-arrow:hover {
  opacity: 0.8;
}

.review-arrow.disabled {
  opacity: 0;
  pointer-events: none;
}

.reviews-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-block: 10px;
  margin-bottom: 80px;
}


.reviews-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}

.review-slide {
  flex: 0 0 50%;
  box-sizing: border-box;
  padding: 8px;
}

.review-slide {
  width: calc(100% / 2);
}

.review-item {
  height: 100%;
  min-height: 180px;
  border: 1px solid #2b68a4;
  border-radius: 25px;
  background: #fff;
  padding: 25px;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.review-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.review-author {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-family: Nunito, sans-serif;
  font-size: 24px;
  margin-bottom: 20px;
  color: #2f2f2f;
}

.review-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.review-text {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  color: #2f2f2f;
  line-height: 1.4;
}


.main-content {
  display: none;
}

.main-form-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  /* background: #000; */
  padding-inline: 1rem;
}


.main-form-container {
  width: 100%;
  height: auto;
  padding: 40px 50px 20px 40px;
  background-color: #a4d9e2;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  box-sizing: border-box;
  /* margin: auto 0; */
  position: relative;
  overflow: hidden;
}

.main-form-text-content {
  width: 784px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.main-form-text {
  font-family: "Nunito", sans-serif;
  font-size: 50px;
  font-weight: 500;
  color: #2f2f2f;
  text-align: left;
}

.main-form-content {
  width: 786px;
}

.main-contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-form-input {
  width: 100%;
  /* height: 70px; */
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid #2b68a4;
  font-size: 25px;
  font-weight: 400;
  font-family: "Nunito", sans-serif;
  color: #2f2f2f;
  background-color: #a4d9e2;
}

.main-form-input::placeholder {
  color: #2f2f2f;
  opacity: 0.7;
}

.main-form-checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  width: 100%;
}

.main-form-checkbox {
  width: 25.2px;
  height: 25.2px;
  accent-color: #2b68a4;
  flex-shrink: 0;
  margin-top: 3px;
  z-index: 1;
}

.main-form-notice {
  width: calc(100% - 40px);
  font-size: 22px;
  line-height: 1.5;
  color: #2b68a4;
  text-align: left;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
}

.main-form-notice a {
  color: #2b68a4;
  text-decoration: underline;
}

.main-form-submit-btn {
  /* width: 400px;
  height: 65px; */
  padding: 1vw 2vw;
  background-color: #2b68a4;
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 25px;
  font-weight: 400;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
  margin-left: 0;
  align-self: flex-start;
}


/* СТИЛИ ДЛЯ ГЛАВНОГО СЛАЙДЕРА ГЛАВНОЙ СТРАНИЦЫ */

.content-container {
  display: grid;
  gap: 1rem;
  grid-template-columns: 65% 34%;
  grid-template-areas: "left-content right-content";
  max-width: 100%;
}

.left-block {
  grid-area: left-content;
  display: flex;
  align-items: center;
  height: 32rem;
  border-radius: 30px;
  /* background-image: url("images/main/about-company.jpg"); */
  background-size: cover;
  background-position: center;
  padding: 3rem;
  width: 100%;
}

.right-block {
  grid-area: right-content;
  /* height: 32rem; */
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  width: 100%;
  /* height: auto; */
}

.carousel-container {
  width: 100%;
  /* aspect-ratio: 5 / 4; */
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

/* .carousel-slides {
  display: flex;
  width: 300%;
  transition: transform 0.5s ease;
} */

.carousel-slide {
  width: 100%;
  flex-shrink: 0;
  border-radius: 30px;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-controls {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

/* === КНОПКИ === */


.consultation-button {
  width: 390px;
  height: 65px;
  border-radius: 14px;
  background-color: #27a8c6;
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 22px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.news-button {
  max-width: 100%;
  height: 100%;
  max-height: 65px;
  border-radius: 14px;
  background-color: #27a8c6;
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 22px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 35px;
  text-decoration: none;
}


.arrow {
  margin-left: 5px;
  margin-right: 25px;
}

/* === ТЕКСТ === */
.company-name {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 50px;
  color: white;
}

.company-description {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 26px;
  color: white;
}



/* === MEDIA === */
@media (max-width: 1440px) {
  .consultation-button {
    font-size: 18px;
  }



  .news-button {
    width: auto;
    max-width: 100%;
    border-radius: 12px;
    font-size: 18px;
    padding: 0 1rem;
    align-items: center;
    justify-content: space-between;
  }

  .company-description {
    font-weight: 300;
    font-size: 20px;
  }

  .company-name {
    font-weight: 400;
    font-size: 30px;
  }

  .left-block {
    height: auto;
    padding: 2rem;
  }

}






@media (max-width: 1600px) {
  .review-arrow {
    height: 36px;
  }

  .section-arrow img {
    height: 36px;
  }

  .advantage-item {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .why-choose-us-title {
    font-size: 44px;
    margin-bottom: 30px;
  }



  .main-form-submit-btn {
    border-radius: 16px;
    font-size: 18px;
  }

  .main-form-text {
    font-size: 30px;
  }

  .main-form-input {
    font-size: 20px;
  }

  .main-form-notice {
    font-size: 16px;
    line-height: 1;
  }

  .company-name {
    height: auto;
    font-size: 2rem;
  }

  .license-image {
    width: auto;
    height: 300px;
    border-radius: 60px;
    object-fit: cover;
    aspect-ratio: 1/1;
  }

  .licenses-description {
    font-size: 16px;
    width: 80%;
  }

  .carousel-container {
    /* aspect-ratio: 4 / 3; */
    /* border-radius: 15px; */
  }

}


@media (max-width: 1024px) {
  .clients-slider-container {
    margin-bottom: 0;
  }

  .review-arrow {
    height: 26px;
  }

  .review-item {
    min-height: 100px;
    border-radius: 10px;
    padding: 10px;
  }

  .all-products-link {
    font-size: 20px;
  }

  .company-name {
    font-size: 24px;
  }

  .section-title {
    font-size: 20px;
  }

  .carousel-container {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
  }

  .company-description {
    font-size: 13px;
    line-height: 150%;
  }

  .content-container {
    grid-template-columns: 60% 38%;
  }

  .left-block {
    max-height: 360px;
    border-radius: 10px;
    padding-block: 1rem;
  }

  .right-block {
    max-height: 360px;
    border-radius: 10px;
  }

  .news-button {
    height: 50px;
    font-size: 16px;
    border-radius: 5px;
  }


  .consultation-button {
    max-height: 35px;
    max-width: 65%;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    font-size: 14px;
  }


  .advantage-item {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.1;
  }

  .why-choose-us-title {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    gap: 12px;
  }

  .product-item:nth-child(4) {
    display: grid;
  }

  .product-item:nth-child(n+5) {
    display: none;
  }

  .products-catalog-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
  }

  .product-item.tablet-only {
    display: block;
  }

  .product-catalog-item.tablet-only {
    display: block;
  }

  .license-image.tablet-only {
    display: flex;
  }

  .client-slide,
  .partner-slide {
    width: calc(100% / 4);
    padding: 0 5px;
  }

  .review-slide {
    padding-inline: 5px;
  }

  .main-form-content {
    width: 100%;
  }

  .main-form-text {
    font-size: 24px;
  }

  .main-form-submit-btn {
    border-radius: 10px;
    font-size: 16px;
    padding: 0.5rem 01rem;
  }

  .licenses-description {
    font-size: 14px;
  }

  .products-header h2 {
    font-size: 20px;
  }

  .products-catalog-header h2 {
    font-size: 22px;
  }

  .product-item {
    width: auto;
    /* max-height: 200px; */
    border-radius: 10px;
  }

  .product-catalog-item {
    width: auto;
    max-height: 200px;
    border-radius: 10px;
  }

  .carousel-slide {
    height: 100%;
  }

  .carousel-slides {
    height: 100%;
  }

  .products-section {
    margin: 20px 0 45px;
  }

  .products-header {
    margin-bottom: 20px;
  }

  .why-choose-us-container {
    border-radius: 15px;
    margin-bottom: 0;
  }

  .why-choose-us {
    padding: 25px;
  }

  .section-header {
    margin-bottom: 0;
    padding-inline: 0.5rem;
  }

  .section-container {
    margin-bottom: 20px;

  }

  .reviews-section {
    padding: 0;
  }

  .reviews-header {
    margin-bottom: 0;
    padding-inline: 0.5rem;
    margin-top: 30px;
  }

  .reviews-slider-container {
    padding-block: 10px;
    margin-bottom: 40px;
  }

  .main-form-notice {
    font-size: 12px;
    line-height: 1.3;
  }

  .client-item,
  .partner-item {
    border-radius: 10px;
  }

  .review-author {
    font-size: 16px;
    gap: 10px;
  }

  .review-text {
    font-size: 14px;
  }

  .review-photo {
    width: 48px;
    height: 48px;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }

}

@media (max-width: 767px) {

  .clients-slider-container,
  .partner-slider-container {
    padding-inline: 8px;
    margin-bottom: 20px;
  }

  .review-item {
    min-height: 100px;
    border-radius: 10px;
    padding: 10px;
  }

  .review-arrow {
    height: 26px;
  }

  .section-arrow img {
    height: 26px;
  }

  .advantages-slider-container {
    display: inline-flex;
  }

  .advantages-container {
    display: none;
  }

  .products-header {
    margin-bottom: 15px;
  }

  .products-catalog-header {
    margin-bottom: 15px;
  }

  .top-content-wrapper {
    height: 100%;
    gap: 0.5rem;
    font-weight: 400;
    line-height: 1.5;
  }

  .reviews-slider-container {
    padding-block: 10px;
    /* margin-bottom: 0px; */
  }

  .client-item,
  .partner-item {
    max-height: 148px;
    max-width: 100%;
  }

  .section-header {
    padding-inline: 1rem;
    margin-bottom: 0;
  }

  .content-container {
    /* padding-inline: 1rem; */
    grid-template-columns: 1fr;
    grid-template-areas:
      "left-content"
      "right-content";
  }

  .left-block,
  .right-block {
    height: auto;
    padding: 0;
    margin: 0;
    width: 100%;

  }

  .right-block {
    height: auto;
    padding: 0;
    margin: 0;
    width: 100%;
    padding-inline: 1rem;

  }

  .left-block {
    max-height: 550px;
    padding: 1rem;
    padding-block: 40px;
    border-radius: 10px;
  }

  .carousel-container {
    border-radius: 10px;
  }

  .carousel-slide {
    border-radius: 10px;
  }



  .company-description {
    font-size: 16px;
  }

  .consultation-button {
    width: 100%;
    height: 40px;
    font-size: 15px;
    border-radius: 5px;
    margin-top: 0.5rem;
  }



  .arrow {
    margin-left: 5px;
    margin-right: 10px;
  }


  .content-container {
    grid-template-columns: 100%;
    gap: 2.5rem;
  }

  .company-name {
    height: auto;
    font-size: 6.5vw;
  }

  .licenses-section {
    padding: 40px 0 0;
  }



  .products-section {
    margin: 30px 0 1rem;
    padding-inline: 1rem;
  }

  .products-catalog-section {
    margin: 10px 20px 1rem;
  }

  .product-item {
    width: 100%;
    max-height: 450px;
    aspect-ratio: 5 / 3;
  }

  .product-catalog-item {
    width: 100%;
    max-height: 450px;
    aspect-ratio: 5 / 3;
  }


  .products-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    max-height: none;
    gap: 15px;
  }

  .products-catalog-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    max-height: none;
    gap: 15px;
  }

  .product-item.tablet-only {
    display: none;
  }

  .product-catalog-item.tablet-only {
    display: none;
  }

  .products-grid .product-item:not(:first-child) {
    display: none;
  }

  .section-arrows {
    display: flex;
    gap: 20px;
  }

  .client-slide,
  .partner-slide {
    width: 100%;
  }

  .reviews-header {
    padding-inline: 1rem;
    margin-bottom: 0;
  }

  .review-slide {
    width: 100%;
    flex: 0 0 100%;
    padding-inline: 1rem;
  }

  .review-author {
    font-size: 16px;
    gap: 10px;
  }

  .review-text {
    font-size: 14px;
  }

  .review-photo {
    width: 40px;
    height: 40px;
  }

  .main-form-text-content {
    width: 92%;
  }

  .main-form-input {
    /* max-width: 250px; */
    font-size: 16px;
  }

  .main-form-notice {
    font-size: 14px;
    /* max-width: 250px; */
  }

  .main-form-text {
    font-size: 20px;
  }

  .main-form-container {
    width: 100%;
    height: auto;
    padding: 10px 20px 10px 20px;
    border-radius: 10px;
    flex-direction: column;
    align-self: center;
  }

  .section-title {
    font-size: 24px;
  }

  .products-header h2 {
    font-size: 24px;
  }

  .products-catalog-header h2 {
    font-size: 22px;
  }

  .all-products-link {
    font-size: 16px;
  }

  .news-button {
    width: auto;
    height: 50px;
    border-radius: 5px;
    font-size: 20px;
    padding: 0 25px;
    text-decoration: none;
  }

  .carousel-container {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .advantage-item {
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 1;

  }

  .why-choose-us {
    padding: 15px 0;
    width: 100%;
  }

  .why-choose-us-title {
    font-size: 24px;
    margin-bottom: 0;
    margin-left: 1rem;
  }

  .why-choose-us-container {
    border-radius: 0;
    margin: 0;
    margin-top: 3rem;
    width: 100%;
    display: flex;
  }

  .licenses-description {
    display: none;
  }

  .licenses-slider-container {
    padding: 1rem 1rem;
  }

}

@media (max-width: 380px) {
  .consultation-button {
    font-size: 14px;
  }

  .company-description {
    font-size: 14px;
    line-height: 130%;
  }

  .product-item {
    width: 100%;
    max-height: 290px;
    aspect-ratio: unset;
  }

  .product-catalog-item {
    width: 100%;
    max-height: 290px;
    aspect-ratio: unset;
  }

  .advantage-item {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .all-products-link {
    font-size: 12px;
  }

  .advantages-column {
    width: calc(50% - 5px);
  }

  .licenses-slider-container {
    position: relative;
    overflow: hidden;
    padding: 1rem 1rem;
  }
}