.imgBackground {
  background-color: #8b8f90;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url("cssImg/sea2.webp");
  min-height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Плавное появление hero-блока при загрузке */
.imgBackground .imgCenter > * {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.9s ease-out forwards;
}

.imgBackground .imgCenter > *:nth-child(1) {
  animation-delay: 0.15s;
}

.imgBackground .imgCenter > *:nth-child(2) {
  animation-delay: 0.35s;
}

.imgBackground .imgCenter > *:nth-child(3) {
  animation-delay: 0.55s;
}

.imgBackground .imgScrollButton {
  opacity: 0;
  animation: heroFadeUp 0.9s ease-out forwards;
  animation-delay: 0.75s;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .imgBackground .imgCenter > *,
  .imgBackground .imgScrollButton {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.imgCenter {
  max-width: 700px;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
}

.imgCenterHead {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  color: white;
}
.h1 {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.801);
  text-align: center;
  padding: 0px 16px;
}
.imgCenterBody {
  color: rgb(255, 255, 255);
  font-size: 21px;
  font-weight: 300;
  padding-bottom: 50px;
  text-align: center;
  padding: 0px 16px;
}

.divB {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 35px;
}
.buttonImg {
  display: inline-flex; /* красивое центрирование текста по вертикали */
  align-items: center;
  justify-content: center;
  padding: 14px 40px; /* размер кнопки */
  background: linear-gradient(135deg, #2fb15a, #3ccf7a); /* цвет фона */
  color: #ffffff; /* цвет текста */
  text-decoration: none; /* убираем подчеркивание */
  border-radius: 999px;
  font-size: 18px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(47, 177, 90, 0.4);
  transition:
    box-shadow 0.2s ease,
    filter 0.2s ease;
  filter: brightness(1.05);
}

.buttonImg:hover {
  box-shadow: 0 6px 16px rgba(47, 177, 90, 0.4);
  filter: brightness(0.9);
}

@media (max-width: 1359px) {
  .imgCenterHead h1 {
    font-size: 56px;
  }
  .imgCenterBody {
    font-size: 18px;
  }
}
@media (max-width: 959px) {
  .imgCenterHead h1 {
    font-size: 42px;
  }
  .imgCenterBody {
    font-size: 16px;
  }
}
@media (max-width: 639px) {
  .imgCenterHead h1 {
    font-size: 36px;
    padding: 0 10px 0 10px;
  }
  .imgCenterBody {
    font-size: 14px;
  }
  .buttonImg {
    padding: 12px 34px;
    font-size: 15px;
  }
}
/*section 4 text info*/

.section4 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.infoText {
  line-height: 1.7;
  color: #333;

  max-width: 800px;
  font-family: "Montserrat", sans-serif;
}

.infoTexth2 {
  color: #2980b9;
  margin-bottom: 20px;
  padding-bottom: 10px;
  padding-top: 40px;
  font-weight: 800;
  font-size: 30px;
  text-align: center;
}
.section4 p {
  font-size: large;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
.infoText2ul {
  background-color: #f8f9fa;
  border-left: 5px solid #3498db;
  padding: 20px 20px 20px 35px;
  border-radius: 0 8px 8px 0;
}
.infoText2ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.effects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.effect-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-top: 4px solid #2ecc71;
}

.effect-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.effect-card h3 {
  text-align: center;
  color: #27ae60;
  margin-top: 0;
  font-size: 1.3rem;
}

.conclusion {
  font-size: 1.1rem;
  font-weight: bold;
  color: #c0392b;
  text-align: center;
  margin-top: 25px;
  padding-top: 15px;
}

.important-note h2 {
  color: #e67e22; /* Оранжевый для важности */
}

@media (max-width: 959px) {
  .effect-card:hover {
    transform: none;
    box-shadow:
      0 -3px 10px rgba(0, 0, 0, 0.03),
      0 5px 15px rgba(0, 0, 0, 0.08);
  }

  .effect-card:active {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  .infoText h2 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .infoText1 p {
    padding: 0px 25px;
  }
  .infoText2 p {
    padding: 0px 25px;
  }
  .infoText3 {
    padding: 0px 50px;
  }
  .infoText4 p {
    padding: 0px 25px;
  }
  .infoText h2 {
    font-size: 28px;
  }
}

@media (max-width: 810px) {
  .infoText2 {
    padding: 0 10px;
  }
}

@media (max-width: 639px) {
  .section4 {
    padding: 0 16px;
  }
  .infoText {
    width: 100%;
  }
  .infoText2 {
    padding: 0px;
  }
  .infoText h2 {
    font-size: 26px;
    padding-left: 0;
    padding-right: 0;
  }
  .infoText1 p {
    padding: 0px 16px;
  }

  .infoText3 {
    padding: 0 16px;
  }
  .infoText4 p {
    padding: 0px 16px;
  }

  .effects-grid {
    gap: 20px;
    margin-top: 20px;
  }
  .effect-card {
    padding: 20px;
  }
}

@media (max-width: 445px) {
  .section4 {
    padding: 0 12px;
  }
  .infoText {
    padding: 0 12px;
  }
  .infoText h2 {
    font-size: 22px;
    padding-top: 30px;
  }
  .infoText1 p {
    padding: 0px 8px;
    font-size: 15px;
  }
  .infoText2 p {
    font-size: 15px;
  }
  .infoText3 {
    padding: 0 8px;
  }
  .infoText4 p {
    padding: 0px 8px;
    font-size: 15px;
  }

  .infoText2ul li {
    font-size: 0.95rem;
  }
  .effects-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .effect-card {
    padding: 16px;
  }
  .effect-card h3 {
    font-size: 1.1rem;
  }
  .conclusion {
    font-size: 1rem;
    padding-top: 12px;
    margin-top: 20px;
  }
}
/*section 5 cartInfo*/
.section5 {
  font-family: "Montserrat", sans-serif;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  padding-top: 70px;
}
.cartProductGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  width: 80%;
  justify-items: center;
  max-width: 1200px;
}

.cartInfo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cartInfo h2 {
  text-align: center;
  height: 48px;
  font-size: 38px;
  color: #239753;
}
.h33 h3 {
  font-size: 24px;
  color: #1111118f;
  padding-bottom: 40px;
  text-align: center;
}
.cartInfoProductBorder {
  background: #fffdfb;
  box-shadow:
    0 -3px 10px rgba(0, 0, 0, 0.03),
    0 5px 15px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  max-width: 368px;
  border: 0px solid rgba(0, 0, 0, 0.15);
  border-radius: 20px;
}
.cartInfoProductBorder:hover {
  transform: translateY(-4px);
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.1),
    0 -10px 25px rgba(0, 0, 0, 0.1);
}
.cartInfoProductBorderMainHead {
  padding: 25px;
  line-height: 1.3;
  padding-bottom: 37px;
}

.section5H3 {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}
.cartInfoProductBorderMainHeadCost {
  text-align: center;
  font-size: 45px;
  font-weight: 700;
  padding-bottom: 10px;
}
.section5Span1 {
  color: #27ae60;
}
.cartInfoProductBorderMainHeadTime {
  text-align: center;
}
.section5Span2 {
  color: #8a8a8a;
  text-align: center;
  font-size: 17px;
  font-weight: 300;
}

.section5Ul li {
  text-align: center;
  padding-bottom: 50px;
  padding-right: 35px;
  color: #444;
  list-style-type: none;
}
.divI {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 177, 90, 0.1);
  width: 20px;
  height: 20px;
  border-radius: 50px;
}
.fa-solid {
  text-align: center;
  color: #2fb15a;
}
.divButton {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 35px;
}
.cartInfoProductBorderMainButton1 {
  display: inline-block; /* чтобы работали padding и margin */
  padding: 12px 24px; /* внутренние отступы */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  background: linear-gradient(135deg, #2fb15a, #3ccf7a); /* цвет фона */
  color: rgb(255, 255, 255); /* цвет текста */
  text-decoration: none; /* убираем подчеркивание */
  border-radius: 100px;
  font-size: 17px;
  font-weight: 100; /* жирный текст */
  text-align: center; /* выравнивание по центру */
  border: 0px solid #3b2e2e;
  width: 60%;
  height: 57;
}
.cartInfoProductBorderMainButton1:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(47, 177, 90, 0.35);
}
.cartInfoProductBorderMainButton1:active {
  transform: scale(0.98);
}
@media (max-width: 1359px) {
  .cartInfo h2 {
    font-size: 35px;
  }
}
@media (max-width: 959px) {
  .cartInfoProductBorder:hover {
    transform: none;
    box-shadow:
      0 -3px 10px rgba(0, 0, 0, 0.03),
      0 5px 15px rgba(0, 0, 0, 0.08);
  }

  .cartInfoProductBorder:active {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
  .cartInfo h2 {
    font-size: 32px;
  }
  .h33 h3 {
    font-size: 20px;
  }
}
@media (max-width: 639px) {
  .cartInfo h2 {
    font-size: 30px;
  }
  .h33 h3 {
    font-size: 19px;
  }
  .section5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cartProductGrid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
  .section5Ul li {
    padding-bottom: 25px;
    font-size: 15px;
  }
  .section5Span1 {
    font-size: 40px;
  }
  .section5H3 {
    font-size: 20px;
    margin: 10px;
  }
  .cartInfoProductBorderMainHead {
    padding-bottom: 25px;
  }
}
@media (max-width: 359px) {
  .section5 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

/*section 7*/

.feedback {
  font-family: "Montserrat", sans-serif;
  padding: 20px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 120px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.feedbackText {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.feedbackText1 h2 {
  text-align: center;
  font-size: 30px;
}
.feedbackText2 {
  padding: 15px 0;
  padding-bottom: 40px;
  text-align: center;
}
.feedbackText2 a {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 100;
  text-align: center;
  text-underline-offset: 0.3em;
  text-decoration: underline;
  color: #a0a0a0;
  transition: color 0.3s ease;
}
.feedbackText2 a:hover {
  color: #111111;
}
.feedbackText2a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.feedbackPhoto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  max-width: 1200px;
  gap: 20px;
  width: 100%;
  justify-items: center;
}
.tut {
  font-weight: 500;
}
@media (max-width: 959px) {
  .feedbackText2 {
    padding-bottom: 15px;
  }
  .feedback {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 40px;
  }
  .feedbackText1 h2 {
    font-size: 28px;
  }
}
@media (max-width: 639px) {
  .feedbackText1 h2 {
    font-size: 25px;
  }
  .feedback {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0px;
  }
}
@media (max-width: 388px) {
  .feedback {
    padding-left: 10px;
    padding-right: 10px;
  }
  .imgFeedback {
    width: 300px;
  }
}
/*section 8*/
.section8 {
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
}

.contacts-wrapper {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.contacts-info {
  max-width: 480px;
  width: 35%;
  background-color: #ffffff;
  padding: 60px 70px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}

.contacts-title {
  font-size: 37px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.contacts-item {
  display: flex;
  gap: 25px;
}

.contacts-icon {
  margin-top: 6px;
  color: #27ae60;
  font-size: 18px;
}

.contacts-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacts-label {
  font-size: 14px;
  text-transform: uppercase;

  letter-spacing: 0.08em;
  color: #999999;
}

.contacts-value {
  font-size: 15px;
  color: #333333;
  text-decoration: none;
  text-underline-offset: 0.3em;
}

.contacts-link {
  font-size: 15px;
  color: #27ae60;
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.contacts-link:hover {
  text-decoration: none;
}
.contactsMessengerIcons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.contacts-map {
  width: 50%;
  min-height: 90vh;
}

.map {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.map-link {
  position: absolute;
  color: #eee;
  font-size: 12px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.section8Iframe {
  border: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1359px) {
  .contacts-info {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 959px) {
  .contacts-wrapper {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: stretch;
  }
  .contacts-map {
    width: 100%;
    min-height: 45vh;
    position: relative;
  }
  .map {
    height: 45vh;
    position: relative;
  }
  .section8Iframe {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .contacts-info {
    width: 100%;
    padding: 40px 24px;
  }
  .contacts-title {
    font-size: 34px;
  }
  .contactsMessengerIcons {
    gap: 10px;
  }

  .contactsMessengerIcons .messengerIconLink,
  .contactsMessengerIcons .messengerIconLink:hover {
    transform: none;
    filter: none;
    transition: none;
  }
}
@media (max-width: 639px) {
  .contacts-info {
    width: 100%;
    padding: 32px 20px;
  }
  .contacts-map {
    width: 100%;
    min-height: 35vh;
    position: relative;
  }
  .map {
    height: 35vh;
    position: relative;
  }
  .section8Iframe {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .contactsMessengerIcons {
    gap: 8px;
  }
}
/*section 9*/
.footer {
  width: 100%;
  display: flex;
  justify-content: center;

  align-items: center;
  font-family: "Montserrat", sans-serif;
  padding-top: 150px;
  font-size: 16px;
}
.allInfo {
  width: 60%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  padding-right: 200px;
}
.allInfo1 {
  max-width: 500px;
  display: inline-flex;
  justify-content: left;
  align-items: baseline;
  flex-direction: column;
  width: 40%;
  padding-left: 200px;
}
.allInfoImg {
  padding-bottom: 20px;
  width: 55px;
}
.allInfoIp {
  color: #1111118f;
  padding-bottom: 15px;
}
.allInfoLicense {
  color: #1111118f;
  font-size: 14px;
  padding-bottom: 10px;
}
.allInfo2 {
  padding: 40px;
  padding-top: 100px;
  list-style-type: none;
}
.allInfo3 {
  padding: 40px;
  padding-top: 100px;
}
.allInfo li {
  list-style-type: none;
  padding-bottom: 35px;
}
.allInfo3 li {
  width: 232px;
}
.allInfo a {
  text-decoration: none;
  color: #111111;
  transition: color 0.3s ease;
}
.allInfo a:hover {
  color: #727272;
}
.allInfo4 {
  min-width: 300px;
  font-style: normal;
  padding-top: 110px;
}
.tel,
.addres {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #111111;
  padding-bottom: 30px;
  padding-left: 0px;
  font-family: "Montserrat", sans-serif;
}
.allInfo4 p {
  margin: 0;
}

@media (max-width: 1359px) {
  .allInfo {
    scale: 0.8;
  }
  .allInfo1 {
    scale: 0.8;
  }
}
@media (max-width: 1165px) {
  .footer {
    flex-direction: column;
  }
  .allInfo2,
  .allInfo3,
  .allInfo4 {
    padding-top: 40px;
  }
  .allInfo1 {
    display: block;
    max-width: 2000px;
    width: 700px;
    padding: 0px;
  }
  .allInfo {
    width: 100%;
    padding-right: 0px;
  }
}
@media (max-width: 660px) {
  .footer {
    padding-top: 50px;
  }
  .allInfo {
    flex-direction: column;
  }
  .allInfo1 {
    width: 100%;
    padding-left: 40px;
  }
  .allInfo2 {
    padding: 0px;
  }
  .allInfo3 {
    padding: 0px;
  }
  .allInfo4 {
    padding-left: 36px;
    padding-top: 0;
  }
  .allInfoIp {
    padding-bottom: 0;
  }
  .allInfoLicense {
    font-size: 13px;
    padding-bottom: 15px;
  }
}
