.septik-section {
  display: flex;
  justify-content: center;
  /* background: linear-gradient(175deg, #fff 7.11%, rgba(72, 140, 132, 0.2) 41.88%, #fff 54.63%, rgba(72, 140, 132, 0.2) 95.67%); */
  /* background-color: #D8DAD7; */
  flex-direction: column;
  max-width: 100%;
  box-sizing: border-box;
  z-index: -1;
}

* {box-sizing: border-box;}

body {
  margin: 0;
}

.header {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 16px 0 0;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
}

@media (max-width: 991px) {
  .header {
    height: 130px;
    /* Adjust height as needed */
    width: 100%;
    position: fixed;
    top: 0px;
    background-color: rgba(255, 255, 255);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  width: 1010px;
  /* Make the content width 100% */
  gap: 20px;
  padding: 0 24px;
  margin: 0 auto;
  align-items: center;
  /* Align items to center vertically */
}

.header-content.menu {
  margin-top: 15px;
  width: 100%;
  background-color: #f0f4f9;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

@media (max-width: 991px) {
  .header-content.menu {
    display: none;
  }
}

.menu-item {
  font-family: Oswald, sans-serif;
  margin: auto 0;
  color: #488C84;
  font-size: 16px;
  font-weight: 500;
  margin: 0 15px;
}

.menu-item a {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 10px;
}

@media (max-width: 991px) {
  .header-content {
    width: 100%;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 20px;
    margin: 0 auto;
    padding-bottom: 16px;
    align-items: center;
    /* Align items to center vertically */
  }

  .Pro100septik {
    display: none;
    /* Hide the logo on smaller screens */
  }

  .phone-numbers {
    display: none;
    /* Hide phone numbers on smaller screens */
  }

  .cta-button {
    display: none;
    /* Hide the CTA button on smaller screens */
  }

  .header-right {
    display: flex;
    align-items: center;
    /* Align items to center vertically */
  }

  .social-icons {
    margin-right: auto;
    /* Move social icons to the left */
  }
}

/* Additional styles for smaller screens (e.g., 440-520px) */
@media (max-width: 520px) {
  .header-content {
    gap: 10px;
    width: 85%;
    margin: 0 10px;
    padding: 0;
    /* Adjust gap as needed */
  }

  .header-right {
    justify-content: space-between;
    /* Adjust spacing between elements */
  }
}

/* Styles for screen sizes between 480px and 530px */
@media (min-width: 480px) and (max-width: 527px) {
  .header-content {
    flex-direction: column;
    /* Change flex direction to column */
    align-items: flex-start;
    /* Align items to the left */
  }

  .Pro100septik {
    display: block;
    /* Show the logo */
  }

  .phone-numbers {
    display: block;
    /* Show the phone number */
    margin-top: 10px;
    /* Add margin above the phone number */
  }

  .contact-info {
    display: flex;
    align-items: center;
  }

  .work-hours {
    margin-top: -10px;
    margin-right: 10px;
  }
}

@media (min-width: 442px) and (max-width: 470px) {
  .header-content {
    width: calc(100% - 24px);
  }
}

.under-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 32px;
}

.under-header-right {
  display: flex;
  flex-direction: column;
  justify-items: flex-start;
}

.company-description-mobile {
  font-family: Oswald, sans-serif;
  margin: auto 0;
  color: #B22222;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

.icon-mobile {
  aspect-ratio: 1;
  object-fit: auto;
  object-position: center;
  width: 24px;
}

.icon-phone-mobile {
  aspect-ratio: 1;
  object-fit: auto;
  object-position: center;
  width: 32px;
  height: 32px;
}

/* .icon-phone-mobile:hover + .phone-numbers-popup {
  opacity: 1;
  visibility: visible;
} */
.cta-button-mobile {
  font-family: Oswald, sans-serif;
  text-align: center;
  border-radius: 6px;
  border: none;
  font-weight: 100px;
  color: #fff;
  height: 40px;
  padding: 12px 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: pulse 1.5s infinite;
  background: linear-gradient(
    135deg,
    #c4a64a 0%,
    #e5b319 25%,
    #f6d35a 50%,
    #e5b319 75%,
    #c4a64a 100%
);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@media(min-width:991px) {
  .under-header {
    display: none;
  }

  .under-header-right {
    display: none;
  }

  .cta-button-mobile {
    display: none;
  }

  .icon-phone-mobile {
    margin-top: -20px;
    display: none;
  }
}

.logo {
  color: #488c84;
  text-align: center;
  margin: auto 0;
  font: 500 24px/1 Oswald, sans-serif;
}

.Pro100septik {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-bottom: 0px;
  padding-top: 20px;
}

.Pro100septik-text {
  color: #488C84;
  text-align: center;
  font-size: 24px;
  font-family: Oswald;
  font-weight: 700;
  word-wrap: break-word;
}

.Pro100septik-text-yellow {
  color: #D9AF19;
  text-align: center;
  font-size: 24px;
  font-family: Oswald;
  font-weight: 700;
  word-wrap: break-word;
}

@media (max-width: 991px) {
  .logo {
    font-size: 16px;
  }

  .Pro100septik-text {
    font-size: 16px;
    margin-top: 20px;
  }

  .Pro100septik-text-yellow {
    font-size: 16px;
    margin-top: 20px;
  }

  .icon-phone-mobile {
    /* display: flex;
    transform: translateY(-20px); */
  }

}

.header-right {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

@media (min-width: 527px) and (max-width: 991px) {
  .header-right {
    max-width: 100%;
    flex-wrap: wrap;
    gap: 10px;
    padding-right: 50px;
    padding-top: 45px;
  }
}

/* 
@media (min-width: 441px ) and (max-width: 990px)  {
  .header-right {
    max-width: 100%;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 45px;
    padding-right: 50px;
  }

} */

/* @media (min-width: 441px ) and (max-width: 990px)  {
  .header-right {
    max-width: 100%;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 45px;
    padding-right: 50px;
  }

} */

/* @media (max-width: 991px) {
  .social-icons{
    font-size: 12px;
    gap: 2px;
    transform: translate(280px, -120px); 
  }
} */

.social-icons {
  padding-top: 10px;
}

.icon {
  aspect-ratio: 1;
  object-fit: auto;
  object-position: center;
  width: 32px;
  text-decoration: none;
}

.social-icons a {
  text-decoration: none;
}

.icon-phone {
  aspect-ratio: 1;
  object-fit: auto;
  object-position: center;
  width: 24px;
  height: 24px;
}

.phone-icon-container {
  position: relative;
}

/* .phone-numbers-popup {
  position: absolute;
  top: 100%; 
  left: 50%;
  transform: translateX(-80%); 
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  z-index: 10; 
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease; 
}

.icon-phone:hover + .phone-numbers-popup {
  opacity: 1;
  visibility: visible;
} */
@media (min-width: 991px) {
  .phone-icon-container {
    display: none;
  }

  .social-icons-mobile {
    display: none;

  }
}

@media (max-width:600px) {
   .social-icons-mobile {position: absolute;
    top: 50px;
    right: 50px;
    width: 130px;
    flex-wrap: wrap;}
}

@media (max-width: 991px) {
  .phone-icon-container {

    display: flex;
    /* transform: translateX(10px); */
  }

  .social-icons .icon {
    display: none;
  }


  .social-icons-mobile {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    transform: translateY(-20px);
    margin-left: 10px;
    
    
  }

}


.contact-info {
  justify-content: end;
  display: flex;
  gap: 20px;
  font-size: 16px;
  text-align: center;
  line-height: 150%;
}

@media (max-width: 991px) {
  .contact-info {
    font-size: 12px;
    gap: 10px;
  }
}

.content-block {
  max-width: 1010px;
}

.work-hours {
  display: flex;
  flex-direction: column;
  color: #000;
}

.work-hours-label {
  font-family: Roboto, sans-serif;
  font-weight: 500;
}

@media (max-width: 991px) {
  .work-hours-label {
    font-size: 12px;
    margin-top: -20px;
  }
}

.work-hours-value {
  font-family: Roboto, sans-serif;
  font-weight: 400;
}

@media (max-width: 991px) {
  .work-hours-value {
    font-size: 12px;
  }
}


.cta-button {
  font-family: Oswald, sans-serif;
  justify-content: center;
  border-radius: 10px;
  border: none;
  color: #fff;
  font-weight: 400;
  padding: 12px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: pulse 1.5s infinite;
  background: linear-gradient(
      135deg,
      #c4a64a 0%,
      #e5b319 25%,
      #f6d35a 50%,
      #e5b319 75%,
      #c4a64a 100%
  );
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 991px) {
  .cta-button {
    display: none;
    font-size: 8px;
    padding: 6px;
    font-weight: 200;
    border: none;
  }
}

.main-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1010px;
  flex-direction: column;
  padding: 0 36px;
  margin: 0 auto;
  padding-top: 130px;
}

@media (max-width: 991px) {
    main > section {max-width: 100%;}
  .main-content {
    /* max-width: 100%; */

    padding: 0 0px;
    margin-top: 100px;
    /* margin-top: -10px; */
    /* margin-top: -64px; */
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 48px;

    /*min-width: 415px;*/
    width: 100%;
  }
}

.top-bar {
  justify-content: space-between;
  align-items: center;
  justify-items: center;
  display: flex;
  max-width: 100%;
  gap: 12px;
  font-size: 20px;
  color: #488c84;
  font-weight: 400;
}

@media (max-width: 991px) {
  .top-bar {
    display: none;
  }
}

.company-description {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  color: #B22222;
  margin: auto 0;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .company-description {
    display: none;
  }
}

.phone-numbers {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 16px;
  color: #000;
  text-align: center;
  line-height: 150%;
  font-weight: bold;
  margin-top: 8px;
}

.phone-number {
  font-family: Roboto, sans-serif;
  white-space: nowrap;
  color: #000;
}

@media (max-width: 991px) {
  .phone-number {
    font-size: 12px;
    margin-top: -30px;
  }
}

.service-buttons {
  align-self: stretch;
  display: flex;
  gap: 6px;
  text-align: center;
  line-height: 12px;
}



.service-button {
  font-family: Oswald, sans-serif;
  font-weight: 600;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #488c84;
  background-color: transparent;
  padding: 0 25px;
  color: #358385;
}

.service-button:hover {
  background-color: #488c84;
  color: #fff;
}

/* @media (max-width: 991px) {
  .service-button {
    padding: 4px 4px;
    font-size: 12px;
  }
} */

.service-buttons-mobile{
  display: none;
}

@media (max-width: 991px) {
  .service-buttons-mobile {
    display: flex; 
    flex-direction: column;
    flex-wrap: wrap;
    gap: 8px;
    width: 98%;
  }
  .service-button-mobile {
    font-family: Oswald, sans-serif;
    font-weight: 600;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #488c84;
    background-color: transparent;
    padding: 0 25px;
    color: #358385;
  }
  .service-button-mobile:hover {
    background-color: #488c84;
    color: #fff;
  }
}

.hero-section {
  margin-top: 30px;
  width: 100%;
}

.hero-section::before {
  content: '';
  width: 100%;
  height: 700px;
  background-image: url(https://pro100septik.by/img/back-cont.png);
  background-repeat: round;
  opacity: 0.5;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.hero-advantages {
  display: flex; 
  justify-content: flex-start; 
  align-items: center; 
  gap: 20px;
  animation: floatUp 2s infinite alternate;
}

.hero-advantages-img {
  width: 85px; 
  height: auto; 
}

@media (max-width: 991px) {
  .hero-text-content{
    margin-top: 45px;
  }
  .hero-advantages {
    
    gap: 20px; 
    position: absolute; 
    left: 12px; 
    top: 135px; 
    z-index: 300;
  }

  .hero-advantages-img {
    width: 60px; 
    height: auto; 
  }
}

@media (max-width: 991px) {
  .hero-section {
    max-width: 100%;
    margin-top: -64px;
    padding-top: 64px;
    padding-bottom: 32px;
    background: url('https://pro100septik.by/img/background_mobile.png');
  }

  .hero-section::before {
    height: 0px;
  }
}

.hero-content {
  gap: 0px;
  display: flex;
  height: auto;
  align-items: end;
}

@media (max-width: 991px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
    gap: 0;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 100%;
  margin-left: 0;
}

@media (max-width: 991px) {
  .hero-text {
    width: 100%;
    max-width: 100%;
  }
}

.hero-text-content {
  align-items: start;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  color: #488c84;
  font-weight: 400;
  margin-bottom: 32px;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .hero-text-content {
    max-width: 100%;
    margin-bottom: 0px;
  }
}

.hero-title {
  letter-spacing: 1.28px;
  text-transform: uppercase;
  align-self: stretch;
  font: 60px Oswald, sans-serif;
  line-height: 100px;
  margin-bottom: 2px;
  margin-top: 0px;
}

@media (max-width: 991px) {
  .hero-title {
    max-width: 100%;
    font-size: 48px;
    line-height: 56px;
    margin-top: 24px;
  }
}

.hero-subtitle {
  align-self: stretch;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.8);
  margin: 0px;
  font: 500 24px Roboto, sans-serif;
}

.hero-subtitle strong {
  font-size: 1.1em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
  .hero-subtitle {
    max-width: 100%;
    font-size: 20px;
  }
}

.hero-description {
  margin-top: 32px;
  margin-bottom: 0px;
  font: 500 20px Roboto, sans-serif;
}

@media (max-width: 991px) {
  .hero-description {
    display: none;
  }
}

.hero-text-small {
  margin-top: 2px;
  font: 16px Roboto, sans-serif;
  color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 991px) {
  .hero-text-small {
    display: none;
  }
}

.hero-cta {
  justify-content: center;
  border-radius: 10px;
  margin-top: 30px;
  color: #fff;
  border: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3.2px;
  padding: 20px 40px;
  font: 24px Oswald, sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: pulse 1.5s infinite;
  background: linear-gradient(
      135deg,
      #c4a64a 0%,
      #e5b319 25%,
      #f6d35a 50%,
      #e5b319 75%,
      #c4a64a 100%
  );
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}



@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.hero-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .hero-cta {
    width: 98%;
    margin-top: 16px;
    font-size: 16px;
    letter-spacing: 2.0px;
    padding: 16px 12px;
  }

  .btn-header-mobile {
    all: unset;
    display: inline-block;
    outline: none;
    -webkit-tap-highlight-color: transparent;
  }
}

.hero-image {
  display: flex;
  position: relative;
  flex-direction: column;
  line-height: normal;
  width: auto;
  height: 100%;
  max-width: 60%;
  margin-left: -400px;
}

@media screen and (max-width: 991px) {
  .hero-image-mobile {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: auto;
    height: 100%;
    max-width: 100%;
    opacity: 0.8;
  }

  .hero-image-mobile img {
    height: 100%;
    width: 100%;
  }

  .hero-img-house,
  .hero-img-sept {
    display: none;
  }
}

@media screen and (min-width: 991px) {
  .hero-image-mobile {
    display: none;
  }
}

@media (max-width: 991px) {
  .hero-image {
    margin-left: 0px;
    max-width: 100%;
  }
}

.hero-img {
  aspect-ratio: 1.92;
  object-fit: auto;
  object-position: center;
  height: auto;
  margin-top: 0px;
  margin-bottom: 12px;
  flex-grow: 1;
}

.hero-img-house {
  position: sticky;
  top: 250px;
  width: 100%;
  max-width: 100%;
  margin-left: -40px;
  margin-bottom: 32px;
  z-index: -1;
  opacity: 0.6;
}

.hero-img-sept {
  position: absolute;
  width: 280px;
  top: 160px;
  left: 0;
  opacity: 0.9;
}

@media (max-width: 991px) {
  .hero-img {
    display: none;
    max-width: 100%;
    margin-top: 40px;
  }
}

.psevdo-anchor {
  position: relative;
  bottom: 160px;
}

.installment-section {
  justify-content: center;
  display: flex;
  margin-top: 36px;
  max-width: 100%;
  flex-direction: column;
  padding: 0 0 0 0;
}

@media (max-width: 991px) {
  .installment-section {
    max-width: 90%;
    padding: 0 16px;
    margin-top: 32px;
    margin-bottom: 24px;
  }
}

.installment-title {
  color: #B22222;
  letter-spacing: 0.96px;
  margin-top: 32px;
  margin-bottom: 32px;
  text-transform: uppercase;
  font: 400 40px/48px Oswald, sans-serif;
  display: flex;
  align-items: flex-end;
}

.title-text{
  font-weight: bold;
}

.title-image {
  width: 52px;
  height: auto;
  margin-left: -150px;
  margin-bottom: -5px;
  animation: floatUp 2s infinite alternate;
}

@keyframes floatUp {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .title-image {
    width: 32px;
    margin-bottom: -2px;
    margin-left: -64px;
  }
}

.installment-title strong {
  font-size: 1.01em;
  color: #D9AF19;
}

@media (max-width: 991px) {
  .installment-title {
    max-width: 100%;
    font: 24px/28px Oswald, sans-serif;
    line-height: 30px;
    margin-bottom: 12px;
    margin-top: 0px;
  }
}

.installment-features {
  display: flex;
  margin-top: 0px;
  gap: 16px;
  color: #488c84;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .installment-features {
    max-width: 100%;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }

  .installment-features .slick-slide {
    width: 100%;
  }
}

.installment-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid #488c84;
  background-color: transparent;
  flex: 1;
  padding: 8px 12px;
  font: 500 20px Oswald, sans-serif;
}

.installment-feature:hover {
  background-color: #488c84;
  color: #fff;
}

@media (max-width: 991px) {
  .installment-feature {
    max-width: 90%;
    align-items: start;
    justify-content: start;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 16px;
    border-radius: 10px;
    margin-bottom: 0px;
  }
}

.installment-features .installment-feature {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.installment-features.visible .installment-feature {
  opacity: 1;
}

.installment-features.visible .installment-feature:nth-child(1) {
  transition-delay: 0.3s;
}

.installment-features.visible .installment-feature:nth-child(2) {
  transition-delay: 0.2s;
}

.installment-feature-multi {
  justify-content: center;
  border-radius: 16px;
  border: 1px solid #488c84;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 8px 12px;
}

.installment-feature-multi:hover {
  background-color: #488c84;
  color: #fff;
}

.installment-features .installment-feature-multi {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.installment-features.visible .installment-feature-multi {
  opacity: 1;
}

.installment-features.visible .installment-feature-multi:nth-child(1) {
  transition-delay: 0.05s;
}

.installment-feature-main {
  align-self: center;
  font: 500 24px Oswald, sans-serif;
}

.installment-feature-sub {
  margin-top: 4px;
  font: 400 20px Oswald, sans-serif;
  color: #488c84;
}

.installment-feature-sub:hover {
  background-color: #488c84;
  color: #fff;
}

.advantages {
  width: 100%;
}

.advantages-section {
  justify-content: space-between;
  margin-top: 24px;
  width: 100%;
}

.advantages-section::before {
  content: '';
  width: 100%;
  height: 710px;
  background-image: url(https://pro100septik.by/img/back-cont.png);
  background-repeat: round;
  opacity: 0.;
  position: absolute;
  left: 0;
  z-index: -1;
}

@media (max-width: 991px) {
  .advantages {
    width: 100%;
  }

  .advantages-section {
    max-width: 100%;
    margin-top: 0px;
    padding-top: -20px;
    padding-top: 0px;
    background: url('https://pro100septik.by/img/back_opac_mob.png');
  }

  .advantages-section::before {
    height: 0px;
  }
}

.advantages-content {
  gap: 20px;
  display: flex;
  margin-top: 64px;
  z-index: -100;
}

@media (max-width: 991px) {
  .advantages-content {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 16px;
  }
}

.advantages-title-col {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 62%;
  margin-left: 0;
}

@media (max-width: 991px) {
  .advantages-title-col {
    width: 100%;
  }
}

.advantages-title {
  color: #488c84;
  letter-spacing: 0.96px;
  margin: 0px;
  text-transform: uppercase;
  font: 400 40px/48px Oswald, sans-serif;
}

@media (max-width: 991px) {
  .advantages-title {
    width: auto;
    max-width: 100%;
    margin-top: 0px;
    margin-bottom: -20px;
    font: 24px/28px Oswald, sans-serif;
    line-height: 30px;
  }
}

.advantages-subtitle-col {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 38%;
  margin-left: 20px;
  margin-bottom: 0px;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .advantages-subtitle-col {
    width: 100%;
  }
}

.advantages-subtitle {
  color: #5e5e5e;
  text-align: right;
  margin-bottom: 0px;
  font: 400 12px/16px Roboto, sans-serif;
  padding-bottom: 42px;
}

@media (max-width: 991px) {
  .advantages-subtitle {
    display: none;
    max-width: 100%;
    margin-top: 10px;
    font-size: 14px;
    line-height: 14px;
    margin-right: 8px;
  }
}

.advantages-list {
  margin-top: 24px;
}

@media (max-width: 991px) {
  .advantages-list {
    max-width: 100%;
  }
}

.advantages-row {
  gap: 20px;
  display: flex;
}

@media (max-width: 991px) {
  .advantages-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}

.advantage {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (max-width: 991px) {
  .advantage {
    padding: 0 16px;
  }
}

.advantages-left {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 39%;
  margin-left: 0;
}

@media (max-width: 991px) {
  .advantages-left {
    width: auto;
    margin-top: 0px;
  }
}

.advantages-left-content {
  justify-content: space-between;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  font-size: 16px;
  color: #000;
  font-weight: 400;
  line-height: 120%;
  margin: auto 0;
  text-align: right;
  align-items: flex-end;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease, transform 1s ease;
}

.advantages-left-content.visible {
  width: 100%;
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 991px) {
  .advantages-left-content {
    width: 100%;
    margin-top: 12px;
    margin-left: 8px;
    text-align: left;
    align-items: flex-start;
    z-index: 1;
  }

  .advantages-left-content>* {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

.advantage-title {
  font-family: Roboto, sans-serif;
  text-transform: uppercase;
  margin-bottom: 6px;
}

@media (max-width: 991px) {
  .advantage-title {
    width: auto;
    font-size: 16px;
    text-align: left;
    margin-top: 2px;
  }
}

.advantage-description {
  color: rgba(0, 0, 0, 0.8);
  font-family: Roboto, sans-serif;
  margin-top: 6px;
}

@media (max-width: 991px) {
  .advantage-description {
    max-width: 100%;
    font-size: 12px;
    margin-top: 0px;
  }
}

.advantages-center {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 33%;
  margin-left: 20px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .advantages-center {
    width: 90%;
    margin-left: 0px;
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 32px;
    margin-top: 16px;
  }
}

.advantages-image {
  object-fit: cover;
  object-position: center;
  width: 300%;
  height: 100%;
  z-index: 1;
}

@media (max-width: 991px) {
  .advantages-image {
    display: none;
    max-width: 50%;
  }
}

@media screen and (max-width: 991px) {
  .advantages-image-mobile {
    aspect-ratio: 0.8;
    object-fit: auto;
    object-position: center;
    max-width: 50%;
    height: auto;
    margin-top: -20px;
  }
}

@media screen and (min-width: 991px) {
  .advantages-image-mobile {
    display: none;
  }
}

.advantages-right {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 38%;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .advantages-right {
    display: none;
    width: 100%;
    margin-left: 0px;
    margin-top: 6px;
  }
}

.advantages-right-content {
  justify-content: space-between;
  display: flex;
  margin-top: 27px;
  flex-direction: column;
  align-self: stretch;
  font-size: 16px;
  color: #000;
  font-weight: 400;
  line-height: 120%;
  text-align: left;
  margin: auto 0;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.advantages-right-content.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 991px) {
  .advantages-right-content {
    max-width: 100%;
    margin-top: 12px;
    text-align: left;
    align-items: flex-start;
  }
}

.advantage-right-title {
  font-family: Roboto, sans-serif;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 6px;
}

@media (max-width: 991px) {
  .advantage-right-title {
    max-width: 100%;
    font-size: 16px;
    text-align: left;
    margin-top: 2px;
  }
}

.advantage-right-description {
  color: rgba(0, 0, 0, 0.8);
  font-family: Roboto, sans-serif;
  margin-top: 6px;
}

@media (max-width: 991px) {
  .advantage-right-description {
    max-width: 100%;
    font-size: 14px;
    margin-top: 0px;
  }
}

.service-area-title {
  color: #488c84;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  margin-top: 0px;
  margin-bottom: 24px;
  font: 400 40px/48px Oswald, sans-serif;
}

.service-area-title strong {
  font-size: 1.01em;
  color: #D9AF19;
}

@media (max-width: 991px) {
  .service-area-title {
    max-width: 100%;
    margin-top: 32px;
    margin-bottom: 10px;
    font: 24px/28px Oswald, sans-serif;
    line-height: 30px;
  }
}

.service-area-description {
  color: #000;
  margin-bottom: 0px;
  font: 400 20px Roboto, sans-serif;
}

@media (max-width: 991px) {
  .service-area-description {
    max-width: 100%;
    font-size: 12px;
    margin-bottom: 16px;
  }
}

.service-area-content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 100%;
}

@media (max-width: 991px) {
  .service-area-content {
    padding: 0 16px;
    padding-bottom: 16px;
    align-items: flex-end;
  }
}

.service-area-image {
  flex: 0 0 33.333%;
  height: auto;
  margin-top: 0px;
}

@media (max-width: 991px) {
  .service-area-image {
    display: flex;
    flex-direction: column;
    line-height: normal;
    justify-content: end;
    align-items: end;
    width: auto;
    height: 100%;
    max-width: 100%;
    z-index: -1;
  }
}

.service-img {
  margin-top: 64px;
  object-fit: contain;
  width: 80%;
  height: auto;
}

@media (max-width: 991px) {
  .service-img {
    height: 100%;
    width: 110%;
  }
}

.service-area-mobile{
  display: none;
}

@media (max-width: 991px) {
  .service-area-mobile {
   display: flex;
   margin: 12px;
  }
  .service-area-mobile-title{
    font: 400 24px /28px Oswald, sans-serif;
    color: #488c84;
  }
  .service-area-description-mobile{
    font-weight: bold;
    font: 400 22px / 28px Oswald, sans-serif;
  }
  .check-mark{
    color: #B22222;
  }
}

.partners-section {
  display: flex;
  margin-top: 96px;
  margin-bottom: 32px;
  gap: 20px;
  align-items: center;
  width: 100%;
}

.partners-section::before {
  content: '';
  width: 100%;
  height: 240px;
  background-image: url(https://pro100septik.by/img/back-cont.png);
  opacity: 0.5;
  position: absolute;
  left: 0;
  z-index: -1;
  background-repeat: round;
}

@media (max-width: 991px) {
  .partners-section {
    flex-wrap: wrap;
    margin-top: 12px;
    margin-bottom: 0px;
    align-items: center;
    justify-content: center;
    max-width: 95%;
  }

  .partners-section::before {
    height: 0px;
  }
}

.partners-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  align-content: center;
}

@media (max-width: 991px) {
  .partners-container {
    flex-direction: column;
    gap: 0px;
    margin-top: 0px;
    margin-bottom: 32px;
    padding: 0 16px;
  }
}

.partners-title {
  padding-bottom: 6px;
  margin: 0;
  color: #488c84;
  text-transform: uppercase;
  letter-spacing: 0.96px;
  font: 40px/48px Oswald, sans-serif;
}

.partner-arraw-img {
  display: flex;
  position: relative;
  width: 290px;
}

@media (max-width: 991px) {
  .partners-title {
    max-width: 100%;
    margin-bottom: 0px;
    font: 24px/28px Oswald, sans-serif;
  }

  .partner-arraw-img {
    display: none;
  }
}

.partners-logos {
  display: flex;
  justify-content: flex-start;
  align-self: center;
  padding-right: 0px;
  gap: 4px;
}

@media (max-width: 991px) {
  .partners-logos {
    flex-wrap: wrap;
    margin-top: 12px;
    padding-right: 0px;
    gap: 8px;
  }
}

.partners-logos .partner-logo {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.partners-logos.visible .partner-logo {
  opacity: 1;
  transform: translateX(0);
}

.partners-logos .partner-logo:nth-child(1) {
  animation-delay: 0.2s;
}

.partners-logos .partner-logo:nth-child(2) {
  animation-delay: 0.4s;
}

.partners-logos .partner-logo:nth-child(3) {
  animation-delay: 0.6s;
}

.partners-logos .partner-logo:nth-child(3) {
  animation-delay: 0.8s;
}

.partner-logo {
  display: flex;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid #488c84;
  background-color: #fff;
  padding: 12px 32px;
  align-items: center;
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .partner-logo {
    padding: 4px 12px;
  }
}

.partner-logo-text {
  color: #000;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  font: 500 24px Oswald, sans-serif;
}

@media (max-width: 991px) {
  .partner-logo-text {
    white-space: initial;
  }
}

.partner-logo-img {
  aspect-ratio: 2.78;
  object-fit: auto;
  object-position: center;
  width: 100px;
}

.partner-logo-img-wide {
  aspect-ratio: 4.35;
  object-fit: auto;
  object-position: center;
  width: 165px;
}

.partner-logo-img-narrow {
  aspect-ratio: 3.33;
  object-fit: auto;
  object-position: center;
  width: 100px;
}

.offer-section {
  justify-content: center;
  border-radius: 20px;
  background-color: #358385;
  align-self: center;
  display: flex;
  margin: 70px 0 0px 0;
  width: 95%;
  max-width: 1010px;
  flex-direction: column;
  padding: 32px 24px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.offer-section.visible {
  opacity: 1;
}

@media (max-width: 991px) {
  .offer-section {
    margin-top: 0px;
    padding: 0 10px;
  }
}

.offer-content {
  gap: 20px;
  display: flex;
}

@media (max-width: 991px) {
  .offer-content {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}

.offer-left {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 70%;
  margin-left: 0;
}

@media (max-width: 991px) {
  .offer-left {
    width: 100%;
  }
}

.offer-text {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  color: #fff;
  font-weight: 300;
}

@media (max-width: 991px) {
  .offer-text {
    max-width: 100%;
    text-align: center;
  }
}

.offer-title {
  letter-spacing: 0.96px;
  text-transform: uppercase;
  font: 400 40px/133% Oswald, sans-serif;
}

.offer-title strong {
  font-size: 1.01em;
  color: #D9AF19;
}

@media (max-width: 991px) {
  .offer-title {
    max-width: 100%;
    font-size: 20px;
    text-align: center;
  }
}

.offer-subtitle {
  margin-bottom: 0px;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  margin-top: 0px;
  font: 28px Oswald, sans-serif;
}

.offer-subtitle strong {
  font-size: 1.01em;
}

.offer-subtitle-block {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

.offer-subtitle-image {
  height: 36px;
  width: 280px;
  margin-right: -10px;
  animation: pulse 1s infinite;
}

@media (max-width: 991px) {
  .offer-subtitle {
    max-width: 100%;
    font-size: 14px;
    margin-bottom: 8px;
  }

  .offer-subtitle-image {
    display: none;
  }
}

.offer-form {
  display: flex;
  margin-top: 16px;
  gap: 12px;
  font-size: 24px;
  letter-spacing: 2.4px;
}

@media (max-width: 991px) {
  .offer-form {
    max-width: 100%;
    flex-wrap: wrap;
    margin-top: 8px;
    gap: 6px;
    font-size: 12px;
    letter-spacing: 1.2px;
  }
}

.offer-input {
  font-family: Oswald, sans-serif;
  align-items: start;
  border-radius: 10px;
  border: 1px solid #fff;
  background-color: transparent;
  justify-content: center;
  padding: 20px 20px;
  color: #fff;
  flex: 1;
  flex-grow: 1;
  margin-right: 16px;
}

.offer-input::placeholder {
  color: #fff;
}

.offer-right {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 30%;
  margin-left: 20px;
  align-items: start;
}

@media (max-width: 991px) {
  .offer-right {
    width: 100%;
    align-items: center;
    margin-top: 0px;
    margin-bottom: 8px;
    flex-direction: row;
    margin-left: 0;
  }
}

.offer-actions {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  font-size: 24px;
  color: #000;
  text-align: center;
  letter-spacing: 2.4px;
}

.offer-actions>*:last-child {
  margin-top: auto;
}

@media (max-width: 991px) {
  .offer-actions {
    margin-top: 40px;
    margin-bottom: 0px;
  }
}

.offer-actions .bottom-content {
  margin-top: auto;
  margin-bottom: 24px;
}

.offer-file-upload {
  width: 100%;
  height: 60px;
  margin-top: 12px;
  font-family: Oswald, sans-serif;
  font-weight: 900;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #fff;
  background-color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  padding: 12px 20px;
}

.offer-submit {
  width: 100%;
  height: 60px;
  font-family: Oswald, sans-serif;
  font-weight: 900;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #fff;
  background-color: #fff;
  margin-top: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 12px 20px;
}

@media (max-width: 991px) {
  .offer-submit {
    margin-top: 8px;
  }
}

.experience-title {
  color: #488c84;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  margin-top: 64px;
  margin-bottom: 32px;
  font: 400 40px/48px Oswald, sans-serif;
}

.experience-title strong {
  font-size: 1.01em;
  color: #D9AF19;
}

@media (max-width: 991px) {
  .experience-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 16px;
    margin-bottom: 16px;
  }

  .experience-title {
    max-width: 100%;
    margin-top: 32px;
    margin-bottom: 0px;
    font: 24px/28px Oswald, sans-serif;
  }
}

.experience-gallery {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
  max-width: 1010px;
  width: 100%;
}

@media (max-width: 991px) {
  .experience-gallery {
    max-width: 350px;
  }
}

.video-section{
  margin-bottom: 20px;
}

.video {
  display: flex;
  justify-content: space-between; 
  gap: 10px; 
  
}

.video video {
  width: 30%; 
}

@media (max-width: 991px) {
  .video {
      flex-direction: column;
      align-items: center; 
      gap: 20px;
  }

  .video video {
      width: 60%; 
  }
}

@media (max-width: 601px) {

  .video video {
      width: 80%;
  }
}

.active-item-frame {
  position: absolute;
  top: 0;
  left: 10%;
  margin-left: -25px;
  transform: translateX(-50%);
  width: calc(33.333%);
  height: 100%;
  border: 1px solid #000;
  border-radius: 15px;
  pointer-events: none;
}

.gallery-item-frame {
  position: absolute;
  top: 0;
  left: calc(33.333% + 25px);
  width: calc(33.333% - 33.333px);
  margin-left: -40px;
  height: 80%;
  border: 1px solid #000;
  border-radius: 15px;
  padding: 16px;
  pointer-events: none;
  z-index: 1;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
}

@media (max-width: 991px) {
  .gallery-item-frame {
    left: calc(33.333% + 25px);
    width: calc(33.333% - 33.333px);
    padding: 0px;
    border: none;
  }
}

.gallery-item {
  display: flex;
  flex-direction: column;
  line-height: normal;
  flex: 0 0 calc(33.333% - 33.333px);
  margin-left: 0;
}

@media (max-width: 991px) {
  .gallery-item {
    width: calc(33.333% - 33.333px);
  }
}

.gallery-image {
  aspect-ratio: 0.61;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  align-self: stretch;
  margin: auto 0;
  border-radius: 10px;
  margin-top: 16px;
  transition: transform 0.3s ease;
  width: 100%;
}

.pop:hover .gallery-image {
  transform: scale(1.1);
  /* Увеличение при наведении */
}

@media (max-width: 991px) {
  .gallery-image {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .pop:hover .gallery-image {
    transform: scale(1);
  }
}

.gallery-item-text {
  text-align: center;
  margin-top: 6px;
  padding-bottom: 6px;
  font: 16px Roboto, sans-serif;
  display: none;
}

@media (max-width: 991px) {
  .gallery-item-text {
    margin-bottom: 0px;
  }
}

.gallery-item.active .gallery-item-text {
  display: block;
}

.gallery-item-center {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 33%;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .gallery-item-center {
    width: 33%;
  }
}

@media (max-width: 991px) {
  .gallery-row-wrapper {
    max-width: 100%;
    min-height: 50px;

  }

  .gallery-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
  }

  .gallery-item-frame {
    left: 0;
    width: 100%;
    padding: 8px;
  }

  .gallery-item {
    width: 100%;
    display: none;
  }

  .gallery-item.active {
    display: flex;
  }

  .gallery-item-center {
    width: 100%;
    margin-left: 0;
  }
}

.gallery-row-wrapper {
  overflow: hidden;
  flex: 1;
  min-height: 0px;
  padding: 0 20px;
  /* Отступы по бокам */
  position: relative;
  /* Для стрелок */
}

@media (max-width: 991px) {
  .gallery-row-wrapper {
    max-width: 100%;
    min-height: 50px;
  }
}

.gallery-row {
  gap: 20px;
  display: flex;
  transition: transform 0.3s ease;
  /* justify-content: flex-start; */
  justify-content: center;
  position: relative;
  /* max-width: 80%; */
  max-width: 90%;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .gallery-row {
    display: flex;
    flex-direction: row;
    gap: 50px;
  }
}

.pop {
  margin-right: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  /* Располагаем элементы в колонку */
  align-items: center;
  /* Центрируем содержимое по горизонтали */
}

@media (max-width: 991px) {
  .pop {
    margin-right: 0px;
  }
}

.gallery-row .slick-slide .pop {
  border: 4px solid black;
  padding: 10px;
  transition: border-color 0.3s ease;
}

.gallery-row .slick-slide.slick-current .pop {
  border-color: #488C84;
}

.slick-prev:before,
.slick-next:before {
  color: #488C84 !important;
}

.slide-text {
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: Roboto, sans-serif;
  margin-top: 8px;

}

.pop:hover .slide-text-container {
  transform: translateY(20px);
  /* Сдвигаем текст вниз при наведении */
  transition: transform 0.3s ease;
  /* Плавный переход для текста */
}


.slide-text-container {
  height: 120px;
  overflow: visible;
}


.modal-img {
  display: none;
  /* Скрыто по умолчанию */
  position: fixed;
  z-index: 1000;
  /* Обеспечивает отображение поверх других элементов */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* Убираем прокрутку */
  background-color: rgba(0, 0, 0, 0.8);
  /* Черный фон с прозрачностью */
  justify-content: center;
  /* Центрируем содержимое по горизонтали */
  align-items: center;
  /* Центрируем содержимое по вертикали */
}

.modal-img-content {
  margin: auto;
  display: block;
  max-width: 90%;
  /* Максимальная ширина изображения */
  max-height: 80%;
  /* Максимальная высота изображения */
}

.close-img {
  position: absolute;
  top: 150px;
  /* Положение кнопки закрытия */
  right: 30px;
  color: #fff;
  /* Цвет текста */
  font-size: 35px;
  /* Размер шрифта */
  font-weight: bold;
  transition: 0.3s;
  /* Плавный переход при наведении */
}

.close-img:hover,
.close-img:focus {
  color: #bbb;
  /* Цвет при наведении */
  text-decoration: none;
  /* Убираем подчеркивание */
  cursor: pointer;
  /* Курсор в виде указателя */
}


.gallery-card {
  justify-content: center;
  border-radius: 15px;
  border: 1px solid #000;
  background-color: transparent;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  font-size: 16px;
  color: #000;
  font-weight: 400;
  text-align: center;
  line-height: 150%;
  width: 90%;
  padding: 16px;
}

@media (max-width: 991px) {
  .gallery-card {
    margin-top: 0px;
    padding: 8px;
    font-size: 12px;
    justify-content: center;
  }
}

.gallery-card-image {
  aspect-ratio: 1.49;
  object-fit: auto;
  object-position: center;
  width: 100%;
}

@media (max-width: 991px) {
  .gallery-card-image {}
}

.gallery-card-text {
  font-family: Roboto, sans-serif;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .gallery-card-text {
    font-size: 12px;
    line-height: 14px;
    margin: 0px;
  }
}

.engineer-visit-section {
  margin-top: 32px;
  width: 100%;
}

@media (max-width: 991px) {
  .engineer-visit-section {
    margin-top: 0px;
    background: url('https://pro100septik.by/img/back_dark_mob.png');
  }

  .eng-cont {
    padding: 32px 16px;
  }
}

.engineer-visit-section::before {
  content: '';
  width: 100%;
  height: 650px;
  background-image: url(https://pro100septik.by/img/back-cont.png);
  opacity: 0.5;
  position: absolute;
  left: 0;
  z-index: -1;
  background-repeat: round;
}

@media (max-width: 991px) {
  .engineer-visit-section::before {
    height: 0px;
  }
}

.engineer-content {
  display: flex;
}

.block-engineer-steps-img {
  position: absolute;
}

@media (max-width: 991px) {
  .engineer-steps-img {
    display: none;
  }
}

.engineer-steps-img {
  position: relative;
  width: 200px;
  bottom: 100px;
  left: 810px;
}

.engineer-visit-title {
  color: #488c84;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  margin-top: 64px;
  margin-bottom: 48px;
  font: 400 40px/48px Oswald, sans-serif;
}

.engineer-visit-title strong {
  font-size: 1.01em;
  color: #D9AF19;
}

@media (max-width: 991px) {
  .engineer-visit-title {
    max-width: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
    font: 24px/28px Oswald, sans-serif;
  }
}

.engineer-visit-steps {
  display: flex;
  width: 85%;
  margin-top: 0px;
  gap: 16px;
}

@media (max-width: 991px) {
  .engineer-visit-steps {
    width: 100%;
    flex-wrap: wrap;
    margin-top: 12px;
    justify-content: center;
  }
}

.engineer-step {
  flex: 1;
  border-radius: 16px;
  border: 1px solid #488c84;
  background-color: #dcdcdcd3;
  display: flex;
  flex-direction: column;
  padding: 16px;
  transition: transform 0.3s ease;
}

@media (max-width: 991px) {
  .engineer-step {
    min-width: 40%;
    max-width: 40%;
    flex-direction: row;
  }
}

@media (max-width: 991px) {
  .engineer-visit-steps {
    flex-wrap: wrap;
    margin-top: 12px;
    justify-content: center;
  }

  .engineer-step {
    flex-wrap: wrap;
    padding: 8px;
  }
}

.engineer-step:hover {
  transform: scale(1.05);
}

.engineer-visit-steps .engineer-step {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease, transform 1s ease;
}

.engineer-visit-steps.visible .engineer-step {
  opacity: 1;
  transform: translateX(0);
  flex-direction: column;
}

.engineer-visit-steps.visible .engineer-step:nth-child(1) {
  transition-delay: 0.1s;
}

.engineer-visit-steps.visible .engineer-step:nth-child(2) {
  transition-delay: 0.2s;
}

.engineer-visit-steps.visible .engineer-step:nth-child(3) {
  transition-delay: 0.3s;
}

.engineer-visit-steps.visible .engineer-step:nth-child(4) {
  transition-delay: 0.4s;
}

.engineer-visit-steps.visible .engineer-step:nth-child(5) {
  transition-delay: 0.5s;
}

.step-number {
  color: #488c84;
  text-transform: uppercase;
  font: 500 24px Oswald, sans-serif;
}

@media (max-width: 991px) {
  .step-number {
    font: 500 20px Oswald, sans-serif;
  }
}

.step-description {
  color: #000;
  margin-top: 12px;
  font: 400 16px/24px Roboto, sans-serif;
  font-size: 1.1em;
}

@media (max-width: 991px) {
  .step-description {
    font: 12px Roboto, sans-serif;
    font-size: 1.05em;
  }
}

.contact-form-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-form-title {
  align-self: start;
  color: #000;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 0px;
  font: 400 28px Oswald, sans-serif;
}

@media (max-width: 991px) {
  .contact-form-title {
    max-width: 100%;
    margin-top: 12px;
    margin-bottom: 0px;
    font: 400 20px Oswald, sans-serif;
  }
}

.contact-form-subtitle {
  align-self: start;
  color: #358385;
  margin-top: 0px;
  margin-bottom: 4px;
  font: 500 20px Roboto, sans-serif;
}

@media (max-width: 991px) {
  .contact-form-subtitle {
    max-width: 100%;
    margin-top: 0px;
    margin-bottom: 12px;
    font: 500 16px Roboto, sans-serif;
  }
}

.contact-form {
  display: flex;
  margin-top: 0px;
  padding-right: 40px;
  gap: 12px;
  font-size: 24px;
  color: #000;
  font-weight: 300;
  letter-spacing: 2.4px;
  align-items: flex-end;
}

@media (max-width: 991px) {
  .contact-form {
    max-width: 100%;
    flex-wrap: wrap;
    padding-right: 0px;
  }
}

.contact-input {
  font-family: Oswald, sans-serif;
  align-items: start;
  border-radius: 10px;
  border: 1px solid #000;
  background-color: transparent;
  justify-content: center;
  padding: 25px 20px;
}

.contact-input-tel {
  font-family: Oswald, sans-serif;
  align-items: start;
  border-radius: 10px;
  border: 1px solid #488c84;
  background-color: transparent;
  justify-content: center;
  padding: 25px 20px;
  width: 100%;
}

@media (max-width: 991px) {
  .contact-input {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-input-tel {
    padding: 16px 16px;
  }
}

.contact-submit {
  font-family: Oswald, sans-serif;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #488c84;
  background-color: #358385;
  color: #fff;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  padding: 12px 20px;
}

.faq-section{
  margin-bottom: 15px;
}

.faq-title {
  color: #488c84;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  margin-top: 64px;
  margin-bottom: 24px;
  font: 400 40px/48px Oswald, sans-serif;
}

@media (max-width: 991px) {
  .faq-section {
    padding: 0 16px;
  }

  .faq-title {
    max-width: 100%;
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 20px;
    font: 24px/28px Oswald, sans-serif;
  }
}

.faq-item.faq-item {
  border-radius: 10px;
  border: 1px solid #488c84;
  background-color: #f4f4f4d3;
  display: flex;
  margin-top: 8px;
  flex-direction: column;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  letter-spacing: 2.4px;
  justify-content: center;
  padding: 12px 20px;
}

@media (max-width: 991px) {
  .faq-item {
    max-width: 100%;
    padding: 4px 8px;
    margin-top: 4px;
  }
}

.faq-question {
  justify-content: space-between;
  display: flex;
  gap: 10px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .faq-question {
    display: flex;
    flex-wrap: nowrap;
    gap: 0px;
  }
}

.faq-question-text {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  font-weight: 400;
}

.faq-answer-text {
  font-family: Oswald, sans-serif;
}

@media (max-width: 991px) {
  .faq-question-text {
    max-width: 100%;
    font: 12px Roboto, sans-serif;
  }

  .faq-answer-text {
    max-width: 100%;
    font: 12px Roboto, sans-serif;
  }
}

.faq-toggle {
  aspect-ratio: 1;
  object-fit: auto;
  object-position: center;
  width: 24px;
  height: 24px;
}

@media (max-width: 991px) {
  .faq-toggle {
    width: 16px;
    height: 16px;
  }
}

.faq-answer {
  display: none;
  padding-left: 20px;
  position: relative;
  font: 16px Roboto, sans-serif;
  color: #5e5e5e;
}

.faq-answer.active {
  display: block;
}

.faq-answer::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #488C84;
  position: absolute;
  top: 0;
  right: 0;
}

.faq-answer-content {
  justify-content: space-between;
  display: flex;
  gap: 0;
}

@media (max-width: 991px) {
  .faq-answer-content {
    flex-wrap: wrap;
  }
}

.faq-answer-title {
  letter-spacing: 2.4px;
  font: 24px Oswald, sans-serif;
}

@media (max-width: 991px) {
  .faq-answer-title {
    max-width: 100%;
    font-size: 12px;
  }
}

.faq-answer-separator {
  border: 1px solid rgba(0, 0, 0, 0.5);
  background-color: rgba(0, 0, 0, 0.5);
  margin-top: 11px;
  height: 1px;
}

@media (max-width: 991px) {
  .faq-answer-separator {
    max-width: 100%;
    margin-top: 4px;
  }
}

.faq-answer-description {
  margin-top: 12px;
  font: 20px/120% Roboto, sans-serif;
}

@media (max-width: 991px) {
  .faq-answer-description {
    max-width: 100%;
    font: 12px/120% Roboto, sans-serif;
  }
}

.faq-toggle-close {
  aspect-ratio: 1;
  object-fit: auto;
  object-position: center;
  width: 36px;
  align-self: start;
}

@media (max-width: 991px) {
  .faq-toggle-close {
    width: 24px;
  }
}

.footer {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  background-color: #edededa6;
  display: flex;
  margin-top: 64px;
  flex-direction: column;
  padding: 16px 0;
  width: 100%;
  margin: 0 auto;
  margin-top: 16px;
}

@media (max-width: 991px) {
  .footer {
    max-width: 100%;
    margin-top: 0px;
    min-width: 415px;
  }
}

.footer-content {
  display: flex;
  width: 1010px;
  gap: 20px;
  padding: 4px 24px;
  margin: 0 auto;
  margin-top: 24px;
  align-items: flex-end;
}

@media (max-width: 991px) {
  .footer-content {
    max-width: 90%;
    flex-wrap: wrap;
    padding: 0 20px;
    gap: 0px;
  }
}

.footer-column {
  flex-grow: 1;
  flex-shrink: 0;

}

@media (max-width: 991px) {
  .footer-column:nth-child(3) {
    order: 1;
    width: 100%;
  }
}

.footer-logo {
  color: #488c84;
  text-align: start;
  margin: 0px;
  font: 500 24px/1 Oswald, sans-serif;
}

@media (max-width: 991px) {
  .footer-logo {
    font: 500 12px Oswald, sans-serif;
  }
}

.footer-info {
  justify-content: left;
  display: flex;
  gap: 20px;
}

@media (max-width: 991px) {
  .footer-info {
    display: flex;
    max-width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 12px;
  }
}

.footer-social {
  display: flex;
  gap: 8px;
  margin: auto 0;
}

.footer-contact {
  justify-content: center;
  display: flex;
  gap: 20px;
  font-size: 16px;
  color: #000;
  text-align: center;
}

@media (max-width: 991px) {
  .footer-contact {
    justify-content: space-between;
    width: 100%;
    gap: 8px;
  }
}

.footer-hours {
  justify-content: center;
  display: flex;
  flex-direction: column;
  line-height: 150%;
  margin: auto 0;
}

.footer-hours-label {
  font-family: Roboto, sans-serif;
  font-weight: 500;
}

@media (max-width: 991px) {
  .footer-hours-label {
    font-size: 12px;
  }
}

.footer-hours-value {
  font-family: Roboto, sans-serif;
  font-weight: 400;
}

@media (max-width: 991px) {
  .footer-hours-value {
    font-size: 12px;
  }
}

.footer-address {
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #488C84;
}

.footer-address-label {
  font-family: Roboto, sans-serif;
  font-weight: 500;
  line-height: 150%;
}

@media (max-width: 991px) {
  .footer-address-label {
    font-size: 12px;
  }
}

.footer-address-value {
  font-family: Roboto, sans-serif;
  color: #000;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 991px) {
  .footer-address-value {
    font-size: 12px;
  }
}

.footer-phones {
  /* display: flex;
  flex-direction: column; */
  margin-top: 6px;
  margin-bottom: 6px;
}

.footer-form {
  justify-content: start;
  display: flex;
  flex-direction: column;
  margin: 0px;
  gap: 4px;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  letter-spacing: 1.6px;
  margin-bottom: 12px;
}

@media (max-width: 991px) {
  .footer-form {
    width: 100%;
    flex-wrap: wrap;
    padding: 0px;
    flex-direction: column;
  }
}

.footer-submit-form {
  font-family: Oswald, sans-serif;
  justify-content: center;
  border-radius: 10px;
  border: none;
  margin-top: 4px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 12px 20px;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: pulse 1.5s infinite;
  background: linear-gradient(
    135deg,
    #c4a64a 0%,
    #e5b319 25%,
    #f6d35a 50%,
    #e5b319 75%,
    #c4a64a 100%
);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 991px) {
  .footer-submit-form {
    width: 100%;
    margin-top: 4px;
  }
}

.footer-form-title {
  font: 16px Roboto, sans-serif;
  color: #488C84;
  text-align: right;
}

@media (max-width: 991px) {
  .footer-form-title {
    font: 14px Roboto, sans-serif;
    text-align: left;
  }
}

.footer-form-container {
  display: flex;
  flex-direction: column;
  width: auto;
  justify-content: flex-end;
}

.footer-edit {
  display: flex;
  width: 100%;
  gap: 12px;
}

@media (max-width: 991px) {
  .footer-edit {
    flex-direction: column;
  }
}

.footer-edit>* {
  flex: 1;
}

.footer-input {
  font-family: Oswald, sans-serif;
  align-items: start;
  border-radius: 10px;
  border: 1px solid #000;
  background-color: transparent;
  justify-content: center;
  padding: 12px 20px;
  width: auto;
}

@media (max-width: 991px) {
  .footer-input {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.footer-submit {
  font-family: Oswald, sans-serif;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #488c84;
  background-color: #358385;
  color: #fff;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  padding: 12px 20px;
}

.footer-text {
  font: 16px Roboto, sans-serif;
}

@media (max-width: 991px) {
  .footer-text {
    font: 12px Roboto, sans-serif;
  }

  .footer-column:nth-child(2) {
    text-align: right;
  }
}

.footer-text-green {
  font: 14px Roboto, sans-serif;
  color: #488C84;
}

@media (max-width: 991px) {
  .footer-text-green {
    display: none;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 3%;
  padding-top: 164px;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 100;
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 30%;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 12px;
}

@media (max-width: 991px) {
  .modal-content {
    width: 80%;
  }
}

.message-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
}

.message-header {
  margin-bottom: 10px;
}

.message-title {
  color: #488C84;
  font-size: 24px;
  font-weight: bold;
}

#errorMessage .message-title {
  color: #DC4646;
}

.message-text {
  font-size: 16px;
}

.retry-button {
  padding: 10px 20px;
  margin-top: 15px;
  border: none;
  border-radius: 5px;
  background-color: #488C84;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.consultation-modal {
  font: 14px Roboto, sans-serif;
  color: #000;
  margin-top: 8px;
  margin-right: 40px;
  display: flex;
  justify-content: flex-end;
}

.cost-modal {
  font: 8px Roboto, sans-serif;
  color: #000;
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
}

.cost-modal-mobile {
  display: none;
}

@media (max-width: 991px) {
  .cost-modal-mobile {
    font: 8px Roboto, sans-serif;
    color: #000;
    margin-top: 8px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}

.footer-modal {
  font: 14px Roboto, sans-serif;
  color: #000;
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #358385;
  text-decoration: none;
  cursor: pointer;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-submit {
  font-family: Oswald, sans-serif;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #358385;
  background-color: #358385;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding: 12px 20px;
}

.error-message {
  display: none;
  color: red;
  font-size: 10px;
  margin-bottom: 4px;
  font: 12px Roboto, sans-serif;
}

@media (max-width: 991px) {
  .error-message {
    text-align: left;
  }
}

.input-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: fit-content;
}

.upload-wrapper {
  width: 100%;
  display: inline-block;
  position: relative;
}

#fileNameContainer {
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
}

.file-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

#fileNameContainer .file-item span {
  color: #fff;
  font-size: 12px;
  margin-right: 5px;
  font: 12px Roboto, sans-serif;
}

.delete-button {
  cursor: pointer;
  color: red;
}

.input-container-form-tel {
  display: flex;
  width: 100%;
  margin-right: 40px;
  justify-content: flex-end;
  flex-direction: column;
}

.input-container1 {
  display: flex;
  flex-direction: column;
  width: auto;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .input-container-form-tel {
    width: 100%;
    max-width: 100%;
  }

  .input-container1 {
    width: 100%;
    max-width: 100%;
  }
}

.offer-submit-form {
  font-family: Oswald, sans-serif;
  font-size: 20px;
  width: 100%;
  height: 70px;
  padding: 12px 12px;
  justify-content: center;
  border-radius: 10px;
  border: none;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: pulse 1.5s infinite;
  background: linear-gradient(
    135deg,
    #c4a64a 0%,
    #e5b319 25%,
    #f6d35a 50%,
    #e5b319 75%,
    #c4a64a 100%
);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 991px) {
  .offer-submit-form {
    width: 100%;
    height: auto;
    margin-top: 4px;
    padding: 12px;
  }
}

.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 991px) {
  .discount-section {
    background: url('https://pro100septik.by/img/back_opac_mob.png');
    padding: 0 16px;
  }

  .discount-title {
    color: #488c84;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    max-width: 100%;
    font: 24px/28px Oswald, sans-serif;
    line-height: 30px;
    margin-bottom: 12px;
    margin-top: 32px;
  }

  .discount-input-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    max-width: 100%;
  }

  .discount-input {
    font-family: Oswald, sans-serif;
    align-items: start;
    border-radius: 10px;
    border: 1px solid #000;
    background-color: transparent;
    justify-content: center;
    padding: 12px 20px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 8px;
  }

  .discount-submit-form {
    font-family: Oswald, sans-serif;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #D9AF19;
    background-color: #D9AF19;
    background: linear-gradient(225deg, #D9AF19 0%, #D9AF19 50%, #fff5d8f0 100%);
    font-weight: 400;
    text-transform: uppercase;
    padding: 12px 20px;
    color: #fff;
    width: 100%;
    margin-top: 8px;
  }

  .discount-image-mobile {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: auto;
    height: 100%;
    max-width: 100%;
    margin-bottom: 32px;
  }

  .discount-image-mobile img {
    height: 100%;
    width: 100%;
    margin-top: 12px;
    animation: fade-in-out 5s linear infinite;
  }

  @keyframes fade-in-out {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0.2;
    }

    100% {
      opacity: 1;
    }
  }
}

@media screen and (min-width: 991px) {
  .discount-title {
    display: none;
  }

  .discount-input-container {
    display: none;
  }

  .discount-input {
    display: none;
  }

  .discount-submit-form {
    display: none;
  }

  .discount-image-mobile {
    display: none;
  }
}

@media screen and (max-width: 545px) {
  .advantages-title2 {
    color: #488c84;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    max-width: 100%;
    font: 24px/28px Oswald, sans-serif;
    line-height: 30px;
    margin-bottom: 12px;
    margin-top: 32px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .advantages-container {
    margin-top: 16px;
    margin-bottom: 32px;
    margin-left: -20vw;
    margin-right: 0;
    display: flex;
    width: 100%;
    height: auto;
    position: relative;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
  }

  .advantages-item {
    width: 32vw;
    height: 32.5vw;
    border-radius: 100%;
    background: #D0F0EC;
    border: 1px #488C84 solid;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    opacity: 0;
    animation: slide-in 1s ease-out forwards;
    transition: transform 0.3s ease, z-index 0s;
  }

  .advantages-item:hover {
    z-index: 1;
  }

  .advantages-item:nth-child(1) {
    left: 50%;
    animation-delay: 0.2s;
  }

  .advantages-item:nth-child(2) {
    left: 30%;
    animation-delay: 0.4s;
  }

  .advantages-item:nth-child(3) {
    left: 10%;
    animation-delay: 0.6s;
  }

  .advantages-item:nth-child(4) {
    left: -10%;
    animation-delay: 0.8s;
  }

  .advantages-item:nth-child(5) {
    left: -30%;
    animation-delay: 1s;
  }

  .item-title {
    width: 150px;
    text-align: center;
    color: black;
    font-size: 14px;
    font-family: Roboto;
    font-weight: 500;
    letter-spacing: 0.80px;
    word-wrap: break-word;
    max-width: 80%;
  }

  @keyframes slide-in {
    0% {
      opacity: 0;
      transform: translateX(-50px);
    }

    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

@media screen and (min-width: 546px) {
  .advantages-title2 {
    display: none;
  }

  .advantages-container {
    display: none;
  }

  .advantages-item {
    display: none;
  }

  .item-title {
    display: none;
  }
}

@media screen and (max-width: 445px) {
  .belarus-image-mobile {
    display: flex;
    flex-direction: column;
    line-height: normal;
    justify-content: end;
    align-items: end;
    width: auto;
    height: 100%;
    max-width: 100%;
    margin-top: -25vw;
    z-index: -1;
  }

  .belarus-image-mobile img {
    height: 100%;
    width: 70%;
  }
}

@media screen and (min-width: 446px) {
  .belarus-image-mobile {
    display: none;
  }
}

.cost-section {
  width: 100%;
}

.cost-section::before {
  content: '';
  width: 100%;
  height: 480px;
  background-image: url(https://pro100septik.by/img/back-cont.png);
  opacity: 0.5;
  position: absolute;
  left: 0;
  z-index: -1;
}

@media (max-width: 991px) {
  .cost-section::before {
    height: 0px;
  }
}

.cost-title {
  color: #488c84;
  letter-spacing: 0.96px;
  margin: 0px;
  text-transform: uppercase;
  font: 400 40px/48px Oswald, sans-serif;
  margin-top: 64px;
}

.cost-title strong {
  font-size: 1.01em;
  color: #D9AF19;
}

.cost-form {
  display: flex;
  margin-top: 0px;
  padding-right: 0px;
  gap: 12px;
  font-size: 24px;
  color: #000;
  font-weight: 300;
  letter-spacing: 2.4px;
  margin-top: 20px;
}

.cost-form>* {
  flex: 1;
}

.cost-area-image {
  flex: 0 0 33.333%;
  height: auto;
  transform: rotate(0deg);
}

.cost-img {
  object-fit: contain;
  width: 90%;
  height: auto;
}

.cost-text-small {
  margin-top: 2px;
  margin-bottom: 0px;
  font: 12px Roboto, sans-serif;
  font-weight: 600;
  color: #000;
  margin-top: 32px;
}

.cost-submit {
  font-family: Oswald, sans-serif;
  font-size: 22px;
  height: 70px;
  justify-content: center;
  border-radius: 10px;
  border: none;
  margin-top: 16px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 12px 20px;
  width: 217.38px;
  color: #fff;
  margin-left: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: pulse 1.5s infinite;
  background: linear-gradient(
    135deg,
    #c4a64a 0%,
    #e5b319 25%,
    #f6d35a 50%,
    #e5b319 75%,
    #c4a64a 100%
);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.cost-arrow-image {
  width: 100%;
  height: auto;
  margin-left: 0px;
}

@media (max-width: 991px) {
  .advantage-title2 {
    display: none;
  }

  .cost-title {
    display: none;
  }

  .cost-form {
    display: none;
  }

  .cost-area-image {
    display: none;
  }

  .cost-img {
    display: none;
  }

  .cost-text-small {
    display: none;
  }

  .cost-submit {
    display: none;
  }

  .cost-arrow-image {
    display: none;
  }
}

.timeline-title2 {
  color: #000;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  max-width: 100%;
  font: 28px/32px Oswald, sans-serif;
  line-height: 30px;
  margin-bottom: 24px;
  margin-top: 64px;
}

.container {
  display: flex;
  width: 100%;
  overflow: hidden;
  text-align: center;
  justify-items: left;
}

.timeline {
  display: flex;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.timeline-item {
  position: relative;
  flex: 1;
  margin: 0 10px;
}

.timeline-icon {
  width: 10px;
  height: 10px;
  background-color: #488C84;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: left 0.8s ease;
}

.timeline-item:hover .timeline-icon {
  left: 98%;
  transform: translateX(-100%, -50%);
}

.timeline-content {
  text-align: center;
}

.timeline-circle {
  width: 177px;
  height: 167px;
  border-radius: 50%;
  background-color: #f0f0f0;
  border: 1px solid #488C84;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
  font-weight: bold;
}

.timeline-circle span {
  font-size: 16px;
  display: block;
}

@media (max-width: 991px) {
  .timeline-title2 {
    display: none;
  }

  .container {
    display: none;
  }
}

.consultation-block {
  background-image: url('https://pro100septik.by/img/water.png');
  background-size: cover;
  background-position: center;
  display: flex;
  padding: 30px;
  border-radius: 10px;
  margin-top: 64px;
}

.consultation-content {
  flex: 1;
  text-align: left;
}

.consultation-title {
  font: 400 40px / 48px Oswald, sans-serif;
  color: #488C84;
  margin-bottom: 0px;
  margin-left: 24px;
}

.consultation-text {
  font-size: 16px;
  margin-top: 4px;
  margin-bottom: 20px;
  margin-left: 24px;
}

.consultation-footer {
  font: 14px Roboto, sans-serif;
  color: #fff;
  margin-top: 15px;
  margin-right: 0px;
  display: flex;
  justify-content: flex-end;
}

.consultation-offer {
  font: 14px Roboto, sans-serif;
  color: #fff;
  margin-top: 15px;
  margin-right: 16px;
  display: flex;
  justify-content: flex-end;
}

.text-wrapper {
  background-color: rgba(255, 255, 255, 0.549);
  margin-top: 24px;
  margin-bottom: 24px;
  border: #000;
  padding: 6px;
  border-radius: 10px;
}

.consultation-form {
  display: flex;
  margin-top: 0px;
  padding-right: 0px;
  gap: 6px;
  font-size: 24px;
  color: #000;
  font-weight: 300;
  letter-spacing: 2.4px;
  align-items: flex-end;
}

.consultation-form>* {
  flex: 1;
}

.consultation-input {
  font-family: Oswald, sans-serif;
  align-items: start;
  border-radius: 10px;
  border: 1px solid #000;
  background-color: #fff;
  justify-content: center;
  padding: 20px 20px;
}

.consultation-container {
  display: flex;
  flex-direction: column;
  width: auto;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .consultation-block {
    background-image: url('https://pro100septik.by/img/background_mobile.png');
    padding: 10px;
    border-radius: 0px;
    margin-top: 32px;
  }

  .consultation-title {
    font-size: 24px;
    margin-left: 12px;
  }

  .consultation-text {
    font-size: 12px;
    margin-top: 2px;
    margin-bottom: 12px;
    margin-left: 12px;
  }

  /* .consultation-footer {
    font: 16px Roboto, sans-serif;
    margin-top: 12px;
    justify-content: flex-start;
  } */
  .text-wrapper {
    margin-top: 12px;
    border-radius: 10px;
  }

  .consultation-form {
    max-width: 100%;
    flex-wrap: wrap;
    padding-right: 0px;
    flex-direction: column;
    margin-top: 8px;
  }

  .consultation-input {
    padding-left: 20px;
    padding-right: 20px;
    border: none;
  }

  .consultation-container {
    width: 100%;
    max-width: 100%;
  }
}

.quiz {
  width: 100%;
  margin-bottom: 32px;
}

.quiz-title {
  color: #488c84;
  letter-spacing: 0.96px;
  margin: 0px;
  text-transform: uppercase;
  font: 400 40px/48px Oswald, sans-serif;
  margin-top: 32px;
}

.quiz-title strong {
  font-size: 1.01em;
  color: #D9AF19;
}

#submitQuizBtn {
  justify-content: center;
  border-radius: 10px;
  border: none;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3.2px;
  padding: 10px 20px;
  font: 14px Oswald, sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 1.5s infinite;
  background: linear-gradient(
    135deg,
    #c4a64a 0%,
    #e5b319 25%,
    #f6d35a 50%,
    #e5b319 75%,
    #c4a64a 100%
);
}

.question-container {
  /* border: 1px solid #ccc; */
  /* padding: 20px; */
  border-radius: 10px;
  margin-top: 32px;
}

.text-container {
  display: flex;
  align-items: first baseline;
  gap: 32px;
}

.question-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #f4f4f4d3;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 10px;
  background: #f4f4f4d3;
}

.question-title {
  font: 18px Roboto, sans-serif;
  font-weight: bold;
}

.progress-indicator {
  display: flex;
  align-items: center;
}

.current-step {
  font: 16px Roboto, sans-serif;
  margin-right: 10px;
}

.arrow-icon {
  width: 20px;
  height: auto;
}

.question-hint {
  font: 14px Roboto, sans-serif;
  color: #000;
  width: 300px;
  margin-top: -8px;
}

.answer-options {
  display: flex;
  gap: 10px;
  width: 100%;
}

.answer-option {
  flex: 1;
  background: #f4f4f4d3;
  border: 1px solid #f4f4f4d3;
  padding: 20px;
  border-radius: 10px;
  text-align: start;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
}

.answer-option input[type="radio"] {
  display: none;
}

.answer-option:hover {
  background-color: #488C84;
}

.answer-text {
  position: relative;
  z-index: 1;
  font: 14px Roboto, sans-serif;
}

.answer-option.selected {
  background-color: #488C84;
  color: white;
}

@media (max-width: 991px) {
  .quiz {
    background: url('https://pro100septik.by/img/background_mobile.png');
  }

  .quiz-container {
    padding: 0 16px;
    margin-top: 32px;
    margin-bottom: 0px;
  }

  .quiz-title {
    width: auto;
    max-width: 100%;
    padding-top: 0px;
    margin-top: 32px;
    font: 24px/28px Oswald, sans-serif;
    line-height: 30px;
  }

  .question-header {
    display: block;
    margin-bottom: 10px;
  }

  .text-container {
    display: block;
    margin-bottom: 12px;
  }

  .question-hint {
    width: 100%;
  }

  .progress-indicator {
    justify-content: end;
  }

  .answer-options {
    flex-direction: column;
    padding-bottom: 32px;
  }
}

.input-container-quiz {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  flex-direction: column;
  margin-right: 20px;
}

@media (max-width: 991px) {
  .input-container-quiz {
    max-width: auto;
  }
}

.contact-input-quiz {
  font-family: Oswald, sans-serif;
  align-items: start;
  border-radius: 10px;
  border: 1px solid #488c84;
  background-color: transparent;
  justify-content: center;
  padding: 12px 12px;
  width: 100%;
  flex: 1;
}

@media (max-width: 991px) {
  .contact-input-quiz {
    padding: 12px 12px;
    width: 93%;
  }
}

.content-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: flex-end;
}

.content-row>* {
  width: 100%;
  box-sizing: border-box;
}

.content-column {
  display: flex;
  flex-direction: column;
  width: 100%;
}

button {
  cursor: pointer;
}

.content-row2 {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 12px;
}

.content-row2>* {
  width: 100%;
  box-sizing: border-box;
}

.content-row-modal {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: 0;
  justify-content: flex-end;
}