* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: #F9F9F9;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.container {
  width: 100%;
  max-width: 1216px;
  padding: 0 20px;
  margin: 0 auto;
}

.mobile-menu {
  display: none;
}

/* --- button-site --- */
.button_site {
  display: flex;
  min-width: 288px;
  border-radius: 12px;
  padding: 16px 32px;
  gap: 10px;
  border: 1px solid black;
  background-color: #0C0D0D;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.button_site:hover {
  background-color: transparent !important;
  border: 1px solid  #0C0D0D;
  color: #0C0D0D;
}

.button_site:active {
  background-color: transparent !important;
  border: 2px solid #0C0D0D;
  color: #0C0D0D;
}

/* --- HEADER-block --- */
header {
  display: flex;
  flex-direction: column;
  height: auto;
}

.header-1 {
  display: flex;
  flex-direction: row;
  width: 100%;
  background-color: #117347;
  padding: 8px 20px;
  justify-content: space-between;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.header-1 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-1 p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.header-1 p a {
  text-decoration: none;
  color: inherit;
}

.header-1 a:hover {
  color: #67ac8d;
}

.language-bar {
  color: #FFFFFF;
}

.language-bar a {
  text-decoration: none;
  margin: 0 5px;
  color: #FFFFFF;
  font-weight: bold;
}

.header_social_block {
  display: flex;
  gap: 36px;
}

.header_social_block a {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  padding: 0;
  gap: 8px;
  background-color: #FFFFFF1F;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_social_block a:hover {
  background-color: #ffffff33;
}

.header_social_block a img {
  width: 22px;
  height: auto;
  color: #FFFFFF;
}

.header-2 {
  position: relative; 
  z-index: 1;
  width: 100%;
  background-color: #FFFFFF;
  padding: 16px 0;
  justify-content: space-between;
}

.header-2.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-2 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_logo {
  width: 150px;
  height: 40px;
  gap: 10px;
}

nav ul {
  display: flex;
  gap: 32px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  margin: 5px;
}


nav ul li {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  text-align: left;
}

nav ul li a {
  text-decoration: none;
  color: inherit;
}

nav ul li a:hover {
  font-weight: 500;
  color: #0d8850;
}

a.consultation-button {
  display: flex;
  width: 268px;
  color: #000;
  text-decoration: none;
  height: 48px;
  background-color: #FFFFFF;
  border: 1px solid #0C0D0D;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  justify-content: center;
  gap: 10px;
}

a.consultation-button:hover {
  border: 1px solid #0d8850;
  color: #0d8850;
  text-decoration: none;
}

.header_icon_mobile {
  display: none;
}

/* Випадаюче меню */
.dropdown {
  position: relative;
}

.dropdown_menu {
  display: none;
  position: absolute;
  top: calc(100% - 5px);
  left: 0;
  background-color: #FFFFFF;
  padding: 12px 0;
  border-radius: 1px;
  box-shadow: 0 8px 24px rgba(69, 70, 69, 0.15);
  z-index: 1000;
  flex-direction: column;
  gap: 4px;

  white-space: nowrap;
  width: max-content;
  max-width: none;
  overflow-x: visible;
}

.dropdown_menu li {
  width: 100%;
}

.dropdown_menu li a {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 24px;
  color: #0C0D0D;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown_menu li a:hover {
  border-left: 2px solid #0d8850;
  background-color: #f7f4f4;
  color: #0d8850;
}

.dropdown:hover .dropdown_menu {
  display: flex;
}

.dropdown:hover .header_menu_link svg {
  transform: rotate(180deg);
}

.dropdown .header_menu_link svg {
  transition: transform 0.3s ease;
}

.dropdown:hover .header_menu_link svg path {
  fill: #0d8850;
}

.block_1 {
  background-image: url('img/klininhova-kompaniya.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: calc(100vh - 112px);
  min-height: calc(100vh - 112px);
  display: flex;
  align-items: center;
}



.block_1 .container {
  padding: 0 16px;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.block_1_container {
  display: flex;
  padding-left: 32px;
  gap: 32px;
  width: 100%;
  height: auto;
  background-color: rgba(10, 41, 30, 0.56);
  border-radius: 24px;
}

.block_1_text {
  display: flex;
  flex-direction: column;
  max-width: 696px;
  padding: 70px 0;
  height: auto;
  gap: 32px;
}

.block_1_text p.block_1_text_font_size_16px {
  display: flex;
  gap: 8px;
  font-weight: 400;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.block_1_text_font_size_16px svg {
  color: #B1E6C3;
}

.block_1_text p {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #FFFFFF;
}

.block_1_text h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  color: #FFFFFF;
}

.block_1_text h1 span {
  color: #B1E6C3;
}

.block_1_form_container {
  text-align: center;
  display: flex;
  flex-direction: column;
  background-color: #B1E6C3;
  width: auto;
  height: auto;
  border-radius: 24px;
  padding: 32px 48px;
  gap: 16px;
}

.block_1_form_container p {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-left: 30px;
  margin-right: 30px;
  padding-left: 10px; 
  padding-right: 10px;
  color: #000000;
}

.block_1_form_container p.block_1_form_container_font_size_16px {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}

.block_1_form {
  border: none !important;
  min-width: 288px;
  display: flex;
  height: auto;
  flex-direction: column;
  gap: 8px;
}

.modal-content-form input,
.block_1_form input {
  font-family: inherit;
  display: block;
  width: 100%;
  padding: 16px 32px;
  background-color: #FFFFFF;
  border-radius: 12px;
  border: none !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #565656;
  transition: border-color 0.3s ease;
}

.block_1_form button {
  margin-top: 24px;
}

.modal-content-form input:focus,
.block_1_form input:focus,
.block_1_form select:focus,
.block_1_form textarea:focus {
  outline: none;
  border: none !important;
  box-shadow: 0 0 4px rgba(50, 168, 98, 0.4);
  background-color: #fff;
}

/*  Efect block 1 */
.block_1_text,
.block_1_form_container {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.block_1_text.show,
.block_1_form_container.show {
  opacity: 1;
  transform: translateY(0);
}

.block_1_text {
  transition-delay: 0.3s;
  position: relative;
  overflow: hidden;
}

.block_1_form_container {
  transition-delay: 0.6s;
}

/* Ефект блиску */
.block_1_text.shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 40%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.25) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine-modern 1.2s ease forwards;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
}

@keyframes shine-modern {
  100% {
    left: 150%;
  }
}




/* --- block-2 --- */
.block_2 {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 48px 52px;
  height: auto;
  border: 1px solid green;
}

.block_2_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.block_2 .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
}

.block_2_colum {
  flex: 1;
  text-align: center;
  color: #FFFFFF;
}

.block_2_colum p {
  font-weight: 700;
  font-size: 48px;
  line-height: 64px;
}

p.block_2_p_small {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}

.counter {
  transition: all 0.3s ease-in-out;
}

/* --- block-3 --- */
.block_3 {
  width: 100%;
  height: auto;
}

.block_3 .container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 64px;
  margin: 120px auto;
}

.block_3_title {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  text-align: center;
  color: #000000;
}

.block_3_title h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
}

.block_3_title h3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}

.block_3_content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.block_3_content_block_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.block_3_content_block_row.center-last-row {
  justify-content: center;
}

.block_3_content_block_row.center {
  justify-content: center !important;
}

.block3_card {
  display: flex;
  flex-direction: column;
  flex: 1 1 calc((100% - 48px) / 3);
  max-width: 33.333%;
  height: auto;
  background-color: #FFFFFF;
  border: 1px solid #ffffff;
  border-radius: 24px;
  gap: 32px;
}

.block3_card:hover {
  box-shadow:
    0px 8px 8px -4px #18274B14,
    0px 4px 6px -4px #18274B1F;
}

.block_3_cards_img {
  position: relative;
}

.block_3_cards_img img{
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  max-height: 228px;
  height: auto;
  width: 100%;
  object-fit: contain;
}

.block_3_cards_price {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100px;
  height: 100px;
  border-radius: 2000px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 26px 12px;
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  color: #000000;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.block_3_cards_info {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 24px 24px 24px;
  text-align: center;
  flex: 1;
}

.block_3_content_block_row_all {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}

.block_3_content_block_row_all img {
  width: 48px;
  height: 32px;
  object-fit: contain;
  cursor: pointer;
}

.block_3_content_block_row_all p {
  cursor: pointer;
}

.block_3_content_block_row_all p:hover {
  color: #0c5735;
}

.hidden {
  display: none;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000B2;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  width: calc(100% - 128px);
  max-width: 1216px;
  height: auto;
  border-radius: 24px;
  padding: 64px;
  gap: 32px;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  font-size: 20px;
  text-align: center;

  /* фонові стилі */
  background-image: url(img/bg_modul_consult.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.modal-content-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 32px;
  color: #000000;
  text-align: left;
}

.modal-content-text span {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
}

.modal-content-text p {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
}

.modal-content-form {
  display: flex;
  flex-direction: column;
  min-width: 362px;
  gap: 8px;
}

.modal-content-form button {
  margin-top: 16px;
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #333;
}


.hidden {
  display: none !important;
}

.modal-content-ok {
  display: none;
  flex-direction: column;
  gap: 32px;
  color: #000;
}

.modal-content-ok span {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
}

.modal-content-ok p {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
}

.modal-content-ok button {
  display: inline-block !important;
  width: auto !important;
  max-width: none !important;
  flex: none !important;
  align-self: flex-start !important;
  margin: 0 auto;
  border-radius: 12px;
  padding: 16px 32px;
  background-color: #000;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  border: none;
  cursor: pointer;
}

/*  Efect block 3 */
.block_3_title,
.block3_card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.5s ease, transform 1s ease;
  will-change: opacity, transform;
}

.block_3_title.show,
.block3_card.show {
  opacity: 1;
  transform: translateY(0);
}

/* --- block-4 --- */
.block_4 {
  width: 100%;
}

.block_4 .container {
  display: flex;
  flex-direction: column;
  margin-bottom: 120px;
  width: 100%;
  gap: 64px;
}

.block_4_title {
  display: flex;
  width: 100%;
  flex-direction: column;
  color: #000000;
  gap: 32px;
}

.block_4_title h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
}

.block_4_title p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}

.block_4_content {
  display: grid;
  width: 100%;
  height: auto;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 32px;
}

.block_4_item {
  border: 1px solid #F2F1EE;
  border-radius: 24px;
  padding: 16px 24px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.block_4_item_text {
  display: flex;
  flex-direction: column;
  color: #000000;
  gap: 8px;
}

.block_4_item_text h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}

.block_4_item_text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.block_4_item.tall {
  padding: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 24px;
  gap: 24px;
  border: 1px solid #F2F1EE;
  padding-bottom: 16px;
  grid-column: 3 / span 1;
  grid-row: 1 / span 2;
}

.block_4_item.tall img {
  padding: 0;
  margin: 0;
  width: 100%;
  height: auto;
}

.tall_text {
  display: flex;
  flex-direction: column;
  color: #000000;
  padding: 0 24px;
  gap: 8px;
}

 .block_4_item img {
  width: 80px;
  height: 80px;
 }

/*  Efect block 4 */
.block_4_item {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1.5s ease, transform 1s ease;
  will-change: opacity, transform;
}

.block_4_item.show {
  opacity: 1;
  transform: scale(1);
}

/* --- Forma 2 --- */
 .block_forma_2 {
  overflow-x: hidden;
  width: 100%;
  margin: 0 auto;
}

.block_forma_2 .container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 120px;
  background-image: url(img/block_5_bg.jpg);
  background-position: 248px 42px;
  background-repeat: no-repeat;
  height: auto;
  max-width: 1176px;
  padding: 0;
  background-color: #B1E6C3;
  border-radius: 24px;
  gap: 32px;
}

.block_forma_2_img {
  flex: 1;
  min-width: 0;
  max-width: 696px;
}

.block_forma_2_img img {
  width: 100%;
  height: 540px;
  display: block;
  border-radius: 24px;
}

.block_forma_2_form {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 450px;
  min-width: 280px;
  border-radius: 24px;
  padding: 40px;
  gap: 40px;

  margin-left: auto;
  margin-right: auto;
}

.block_forma_2_form h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: #000000;
}

.block_forma_2_form form {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 8px;
}

.forma_2 input,
.forma_2 textarea {
  display: flex;
  border-radius: 12px;
  background-color: #fff;
  padding: 16px 32px;
  border: none !important;
  gap: 16px;
  font-size: 16px;
  line-height: 24px;
  color: #565656;
  font-weight: 400;
  box-sizing: border-box;
  font-family: inherit;
}

.forma_2 input:focus,
.forma_2 textarea:focus {
  outline: none;
  border: 2px solid #021a0b;
  box-shadow: 0 0 4px rgba(50, 168, 98, 0.4);
  background-color: #fff;
}

.forma_2 input {
  gap: 16px;
}



.forma_2 .button_site  {
  margin-top: 32px;
}

.forma_2 textarea {
  resize: none;
}

/*  Efect block forma 2 */
.block_forma_2 {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.5s ease, transform 1s ease;
  will-change: opacity, transform;
}

.block_forma_2.show {
  opacity: 1;
  transform: translateY(0);
}

/* --- block-5 --- */
.block_5 {
  width: 100%;
  height: auto;
  margin-bottom: 120px;
}

.block_5 .container {
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 64px;
}

.block_5_title {
  text-align: center;
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.block_5_title h3 {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
}

.block_5_title p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}

.block_5_slider_container {
  display: flex;
  flex-direction: column;
  gap: 39px;
}

.block_5_slider {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
  box-sizing: border-box;
}

.overlay-block {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 56px;
  background-color: #117347;
  color: #fff;
  padding: 8px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

.slider_cards {
  flex-grow: 1;
  height: auto;
  overflow: hidden;
  border: 1px solid #F2F1EE;
  border-radius: 24px;
  position: relative;
  box-sizing: border-box;
  max-width: 100%;
}

.slider_track {
  display: flex;
  transition: transform 0.6s ease;
  height: 100%;
  width: 100%;
}

.slider_pair {
  display: flex;
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

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

.slider_pair .image-wrapper {
  flex: 0 0 50%;
  height: 100%;
  position: relative;
}

.slider_pair .image-wrapper:first-child img {
  border-radius: 24px 0 0 24px;
}

.slider_pair .image-wrapper:last-child img {
  border-radius: 0 24px 24px 0;
}

.slider_line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: #F2F1EE;
  z-index: 2;
}

.slider-arrow {
  position: static;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  border: 1px solid #A4A5A6;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}

.slider-arrow:disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.slider-arrow:hover {
  background-color: #e8ebeb;
}

.slider-arrow.left-arrow img,
.slider-arrow.right-arrow img {
  width: 20px;
  height: 20px;
}

.slider-arrow.left-arrow img {
  transform: rotate(90deg);
}

.slider-arrow.right-arrow img {
  transform: rotate(270deg);
}

.slider-arrow.active {
  border: 2px solid #117347;
}


.slider-arrow.right-arrow.active img {
  content: url("img/slider-arrow-active.png");
  transform: rotate(0deg);
}

.slider-arrow.left-arrow.active img {
  content: url("img/slider-arrow-active.png");
  transform: rotate(180deg);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  padding: 10px;
  border-radius: 100px;
  background-color: #B1E6C3;
  transition: background-color 0.3s ease, border 0.3s ease;
}

.slider-dot.active {
  background-color: #117347;
  transform: scale(1.1);
}

.slider-arrows-mobile,
.overlay_mob_block {
  display: none;
}
/*  Efect block 5 */
.block_5 {
  opacity: 0;
  transform: translateY(60px) scale(0.98);
  transition: all 1s ease;
  will-change: opacity, transform;
}

.block_5.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.block_5_title h3, .block_5_title p {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1s ease;
}

.block_5.show .block_5_title h3,
.block_5.show .block_5_title p {
  opacity: 1;
  transform: translateY(0);
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.overlay-mobile {
  position: absolute;
  width: 100%;
  background-color: rgba(17, 115, 71, 0.8);
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-weight: bold;
  font-size: 14px;
  z-index: 2;
  display: none; 
}

/* --- block-6 --- */
.block_6 {
  width: 100%;
  margin-bottom: 120px;
}

.block_6 .container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 64px;
}

.block_6_title {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 32px;
  color: #000000;
}

.block_6_title h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
}

.block_6_title p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}

.block_6_slider_reviews_container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 32px;
}

.slider_cards_reviews {
  overflow: hidden;
  max-width: 1216px;
  width: 100%;
  position: relative;
}

.block_6_reviews {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  flex-wrap: nowrap;
}

.block_6_review_card {
  flex: 0 0 calc((100% - 64px) / 3);
  max-width: calc((100% - 64px) / 3);
  border-radius: 24px;
  border: 1px solid #F2F1EE;
  background-color: #FFFFFF;
  padding: 24px;
  color: #000000;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
  gap: 24px;
}

.block_6_review_card.appear {
  opacity: 1;
  transform: translateY(0);
}

.block_6_review_card:hover {
  box-shadow:
    0px 8px 8px -4px #18274B14,
    0px 4px 6px -4px #18274B1F;
}

.block_6_review_card:not(:last-child) {
  margin-right: 32px; 
}

.review_stars {
  display: flex;
  gap: 4px;
}

.review_stars img {
  width: 20px;
  height: 20px;
}

.review_text h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}

.review_text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.review-link {
  display: flex;
  align-items: center;
  margin-top: auto;
  gap: 8px;
}

.review-link a {
  display: flex;
  color: #000;
  gap: 8px;
}

.review-link a p {
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
}

.review-link a p:hover {
  color: #0c5735;
}

.review-link a img {
  width: 36px;
  height: 24px;
}

.block_6_slider_reviews_controls {
  justify-content: center;
  display: flex;
  gap: 16px;
}

.slider-reviews-arrow {
  display: flex;
  height: 40px;
  width: 40px;
  border-radius: 100px;
  border: 1px solid #A4A5A6;
  padding: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: transparent;
  transition: opacity 0.3s ease;
}

.slider-reviews-arrow:disabled {
  opacity: 0.5;
  cursor: default;
  border-color: #A4A5A6;
  pointer-events: none;
}

.left-arrow {
  left: 0;
}

.right-arrow {
  right: 0;
}

.slider-reviews-arrow.left-arrow img {
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
}

.slider-reviews-arrow.right-arrow img {
  width: 20px;
  height: 20px;
  transform: rotate(270deg);
}

.slider-reviews-arrow:hover {
  background-color: #edf0f0;
}

.slider-reviews-arrow.active {
  border: 2px solid #117347;
}

.slider-reviews-arrow img.active {
  background-color: #117347;
}

.slider-reviews-arrow.right-arrow.active img {
  content: url("img/slider-arrow-active.png");
  transform: rotate(0deg);
}

.slider-reviews-arrow.left-arrow.active img {
  content: url("img/slider-arrow-active.png");
  transform: rotate(180deg);
}

/* --- Forma 3 --- */
.block_forma_3 {
  width: 100%;
  height: auto;
  background-image: url(img/forma_3_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin-bottom: 120px;
}

.block_forma_3 .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: auto;
  width: 100%;
  padding: 32px 20px;
}

.block_forma_3_text {
  display: flex;
  flex-direction: column;
  max-width: 696px;
  color: #FFFFFF;
  height: auto;
  gap: 32px;
}

.block_forma_3_text h3 {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
}

.block_forma_3_text p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}

.block_forma_3_social_block {
  gap: 24px;
}

.forma_3 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.forma_3 input,
.forma_3 textarea {
  display: flex;
  border-radius: 12px;
  background-color: #fff;
  padding: 16px 32px;
  border: none !important;
  gap: 16px;
  font-size: 16px;
  line-height: 24px;
  color: #565656;
  font-weight: 400;
  box-sizing: border-box;
  font-family: inherit;
}

.forma_3 input:focus,
.forma_3 textarea:focus {
  outline: none;
  border: 2px solid #021a0b;
  box-shadow: 0 0 4px rgba(50, 168, 98, 0.4);
  background-color: #fff;
}

.forma_3 textarea {
  resize: none;
}

.forma_3 .button_site  {
  margin-top: 16px;
}

.forma_3 .button_site:hover {
  background-color: transparent !important;
  border: 1px solid solid #0C0D0D;
  color: #0C0D0D;
}






/*  Efect  forma-3 */
.block_forma_3 {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.5s ease-out, transform 1s ease-out;
}

.block_forma_3.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- block-7 --- */
.block_7 {
  width: 100%;
  margin-bottom: 120px;
}

.block_7 .container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.page-content {
  display: flex;
  flex-direction: column;
  color: #222;
  line-height: 1.7;
  margin: 0 auto;
}

.page-content h2 {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  text-align: left;
  margin: 56px 0 20px;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p {
  font-weight: 400;
  font-size: 1rem;
  margin: 0 0 16px;
  color: #444;
}

.page-content h3 {
  font-weight: 700;
  font-size: clamp(20px, 3vw, 24px);
  margin: 40px 0 14px;
  line-height: 1.3;
}

.page-content ul {
  margin: 8px 0 24px;
  padding-left: 0;
  list-style: none;
}

.page-content ul li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 14px;
}

.page-content ul li:last-child {
  margin-bottom: 0;
}

.page-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 24px;
  height: 24px;
  background-image: url('img/vector.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.page-content ol {
  margin: 8px 0 24px;
  padding-left: 0;
  list-style-position: inside;
}

.page-content ol li {
  margin-bottom: 14px;
}

.page-content ol li:last-child {
  margin-bottom: 0;
}

.page-content ol li p {
  display: inline;
  margin: 0;
}

.page-content ol li::marker {
  font-weight: 800;
  color: #16662a;
}

.page-content_all {
  display: none;
}

/*  Efect  block-7 */
.block_7 {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.5s ease-out, transform 1s ease-out;
}

.block_7.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- block-8 --- */

.block_8 {
  width: 100%;
  margin-bottom: 120px;
}

.block_8 .container {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  width: 100%;
  padding: 64px 0;
  max-width: 1176px;
  border-radius: 24px;
  border: 1px solid #F2F1EE;
  color: #000;
  gap: 64px;
}

.block_8_title {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #000000;
  gap: 32px;
}

.block_8_title h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
}

.block_8_title p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}

.services-table {
  width: 100%;
  margin: 0 !important;
  
}
th.title_th {
  display: flex;
  justify-content: space-between;
}

.services-table th,
.services-table td {
  min-height: 75px;
  height: auto;
}

.services-table tbody tr td {
  display: flex;
  justify-content: space-between;
  font-weight: 400px;
  font-size: 16px;
  line-height: 24px;
  align-items: center;
  padding: 0 64px;
}

.services-table tbody tr td p {
  font-weight: 600;
  color: #117347;
}

.services-table table {
  width: 100%;
  border-collapse: collapse;
  font-family: sans-serif;
  font-size: 16px;
}

.services-table th,
.services-table td {
  padding: 12px 16px;
  text-align: left;
  padding: 0 64px;
  align-items: center;
}

.services-table td {
  display: flex;
  padding: 2px 0;
  gap: 10px;
}

.services-table .section-header th {
  background-color: #B1E6C3;
  color: #000;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}

.block_8_bottom {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.block_8_services_all a{
  position: absolute;
  right: 64px;
  display: flex;
  color: #000;
  text-decoration: none;
  gap: 16px;
  align-items: center;
}

.block_8_services_all p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.block_8_services_all p:hover {
  color: #0c5735;
}

.block_8_services_all img {
  width: 48px;
  height: 32px;
}

.block_8_bottom_button {
  z-index: 1;
}

.table-price td {
  padding: 15px 10px;
  min-width: 110px;
}

tbody.table-price tr {
  display: flex;
  justify-content: space-between;
  height: auto;
   border-bottom: 1px solid #F2F1EE;
}

/*  Efect  block-8 */
.block_8 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease, transform 1s ease;
}

.block_8.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- block-9 --- */
.block_9 {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 120px;
}

.block_9 .container {
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100%;
  overflow: hidden;
  gap: 64px;
  color: #000;
}

.block_9_title {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.block_9_title h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
}

.block_9_title p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}

.block_9_questions {
  display: flex;
  width: 100%;
  height: auto;
  flex-direction: column;
  gap: 10px;
}

.block_9_questions ul,
.block_9_questions li {
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.block_9_questions li {
  border-top: 1px solid #F2F1EE;
  box-sizing: border-box;
}

.faq_question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  box-sizing: border-box;
  cursor: pointer;
}

.faq_list .faq_item:last-child {
  border-bottom: 1px solid #F2F1EE;
}

.faq_question p {
  flex: 1;
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  word-break: break-word;
}

.circle-marker {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #117347;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.circle-marker img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  pointer-events: auto;
}

.circle-marker.rotated img {
  transform: rotate(45deg);
}

.faq_answer {
  max-width: 90%;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-bottom: 0;
  transition:
    max-height 0.6s ease,
    opacity 0.4s ease,
    padding-bottom 0.4s ease,
    transform 0.3s ease;
  border-bottom: 1px solid #F2F1EE;
  gap: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  box-sizing: border-box;
}

.faq_item.open .faq_answer {
  max-height: 1000px;
  opacity: 1;
  padding-bottom: 14px;
}



/*  Efect  block-9 */
.block_9_title {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1.5s ease, transform 1s ease;
}

.faq_list .faq_question {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s ease, transform 1s ease;
}

.faq_list .faq_question .circle-marker {
  display: inline-flex;
  opacity: 0;
  transform: translateX(100px);
}

.block_9_title.visible {
  opacity: 1;
  transform: translateX(0);
}

.faq_list .faq_question.visible {
  opacity: 1;
  transform: translateX(0);
}

@keyframes circle-fly-in {
  0% {
    opacity: 0;
    transform: translateX(100px) rotate(0deg);
  }
  60% {
    opacity: 1;
    transform: translateX(-10px) rotate(15deg);
  }
  80% {
    transform: translateX(5px) rotate(-10deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}

.faq_list .faq_question.visible .circle-marker {
  opacity: 1;
  animation: circle-fly-in 0.7s ease forwards;
}


/* --- FOOTER-block --- */
footer {
  display: flex;
  flex-direction: column;
  padding-top: 32px;
  width: 100%;
  height: auto;
  background-color: #117347;
}

.footer_top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

footer .container {
  display: flex;
}

.footer_container {
  display: flex;
  min-height: 100%;
  width: 100%;
  gap: 37px;
}

.footer_block_1 {
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: space-between;
  max-width: 384px;
}

.footer_site_info {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer_site_info img {
  width: 180px;
  height: 48px;
}

.footer_site_info p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.footer_social_block {
  gap: 16px;
  margin-top: auto;
  align-self: flex-start;
}

.footer_block_2,
.footer_block_3 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer_block_2 h4,
.footer_block_3 h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #FFFFFF;
}

.footer_line {
  width: 100%;
  height: 1px;
  background-color: #FFFFFF1F;
}

.footer_services_list {
  display: flex;
  gap: 62px;
}

.footer_services_list li,
.footer_contact_list li {
  display: flex;
  flex-direction: column;
  padding: 4px 0;
  gap: 10px;
}

.footer_services_list li p,
.footer_contact_list li p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.footer_services_list li p a,
.footer_contact_list li p a {
  color: inherit;
  text-decoration: none;
}

.footer_services_list li p a:hover,
.footer_contact_list li p a:hover {
  color: #70C1B3;
}

.footer_services_list_block_1,
.footer_services_list_block_2{
  display: flex;
  flex-direction: column;
  width: 224px;
  height: auto;
  gap: 8px;
}

.footer_full_line {
  width: 100%;
  height: 1px;
  background-color: #FFFFFF1F;
}

.footer_container_bottom .container{
  display: flex;
  padding: 8px 20px;
  gap: 8px;
}

.footer_copyright {
  display: flex;
  width: 100%;
  height: 24px;
  justify-content: space-between;
  gap: 16px;
}

.footer_copyright p {
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  color: #FFFFFF;
}

.footer_copyright p a {
  color: #FFFFFF;
}

.footer_services_mob_list {
  display: none;
}

.footer_contact_social {
  display: none;
}

.footer_services_mob_list p a {
  color: #FFFFFF !important;
  text-decoration: none;
}

/* --- Кнопка Зворотнього звязку --- */
.btn_feedback {
  width: 50px;
  height: 50px;
  padding: 16px;
  border-radius: 8px;
  gap: 8px;
  opacity: 1;
  background-color: #117347;
  border: 1px solid #B1E6C3;
  position: fixed;
  bottom: 50px;
  right: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 18px;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.btn_feedback:hover {
  background-color: #0e5e39;
  box-shadow: 0 0 16px 6px rgba(177, 230, 195, 0.9);
}

.btn_feedback img {
  width: 20px;
  height: 20px;
}

.btn_feedback_close {
  display: none;
  font-size: 20px;
  font-weight: bold;
  color: #B1E6C3;
  line-height: 1;
}

.btn_feedback.active img {
  display: none;
}

.btn_feedback.active .btn_feedback_close {
  display: block;
}

.btn_feedback_window {
  display: flex;
  padding: 20px 16px;
  gap: 10px;
  border-radius: 24px;
  background-color: #FFFFFF;
  border: 1px solid #117347;
  position: fixed;
  bottom: 110px;
  right: 50px;
  transition: opacity 0.3s ease;
  opacity: 0;
  transform: translate(100px, 0);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  z-index: 10000;
}

.btn_feedback_window.active {
  opacity: 1;
  transform: translate(0, 0);
  pointer-events: auto;
}

.btn_feedback_window[style*="display: none"] {
  opacity: 0;
  pointer-events: none;
}

.btn_feedback_window ul {
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn_feedback_window ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
  padding-bottom: 10px;
  gap: 20px;
  border-bottom: 1px solid #F2F1EE;
}

.btn_feedback_window ul li:last-child {
  border-bottom: none;
  padding-top: 0;
}

.btn_feedback_window ul li p {
  margin: 0;
  padding: 0;
  width: 240px;
  display: inline-block;
  font-variation-settings: 'wght' 400;
  transition: font-variation-settings 0.3s ease;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}

.btn_feedback_window ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  gap: 20px;
  width: 100%;
}

.btn_feedback_window ul li p:hover {
  color: #16662a;
  font-variation-settings: 'wght' 700;
}

.btn_feedback_window ul li img {
  width: 35px;
  height: 35px;
}


/* --- Нова Сторінка "Прибирання "--- */

.block_header_section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 40px;
  height: auto;
  overflow: hidden;
}

.block_header_section h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  color: #117347;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;
}

.block_header_section .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  position: relative; 

}



.block_header_section img.block_header_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.block_header_section_button {
  display: inline-block;
  align-self: center;
  border-radius: 100px;
  background-color: #117347;
  gap: 10px;
  width: auto;
  height: auto;
  margin-bottom: 80px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.block_header_section_button:hover {
  background-color: #0e5837;
  text-decoration: underline;

}

.button_header:hover {
  background-color:#17bdf0;
  text-decoration: underline;
}

.block_header_section .container ul {
  align-self: flex-start;
  display: flex;
  gap: 15px;
  color: #117347;
  font-weight: 700;
  font-size: 12px;
  height: auto;
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
  justify-content: flex-start;
  text-align: left;
  padding: 8px 16px;
  flex-wrap: wrap;
  text-shadow:
  -1px -1px 0 #fff,
   1px -1px 0 #fff,
  -1px  1px 0 #fff,
   1px  1px 0 #fff;
}

.block_header_section .container ul li {
  white-space: nowrap;
}

.block_header_section .container ul li.active {
  text-decoration: underline;
}

.block_header_section .container ul li.active a {
  color: #117347 !important;
}

.block_header_section .container ul li:last-child {
  text-decoration: none;
}

.block_header_section_ul_bg {
  width: 100vw;
  height: auto;
  background-color: rgba(255, 255, 255, 0.6);
}

.block_content {
  display: flex;
  height: auto;
  gap: 30px;
}

.block_content_title {
  display: flex;
  flex-direction: column;
  color: #000;
  height: auto;
  text-align: center;
  width: 100%;
  gap: 35px;
  margin: 80px auto;
}

.block_content_title h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
}

.block_content_title p {
  font-weight: 500;
  font-size: 20px;
  line-height: 48px;
}

.block_content .container .block_3_content {
  margin-bottom: 100px;
}

/* --- Нова Сторінка "Прибирання квартир"--- */
.block_content_info_servise {
  display: flex;
  flex-direction: column;
  height: auto;
  gap: 16px;
}

.block_content_info_servise_select {
  display: flex;
  width: 100%;
  gap: 16px;
}

.servise_select {
  display: flex;
  border: 1px solid #F2F1EE;
  border-radius: 5px;
  background-color: #FFFFFF;
  color: #117347;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 12px 10px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

.servise_select:hover {
  background-color: #117347;
  color: #FFFFFF;
}

.servise_select.active {
  background-color: #117347;
  color: #FFFFFF;
}


.servise_select_content {
  display: none;
  width: 100%;
  border-radius: 15px;
  background-color: #fff;
  height: auto;
  padding: 0;
  margin-bottom: 128px;
}

.servise_select_content.active {
  display: flex;
}

.servise_content_block_1 {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  height: auto;
  color: #000;
  padding: 20px;
  border-right: 1px solid #F2F1EE;
}

.servise_content_block_1 img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 5px;
}

.servise_content_block_1 h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 5px;
}

.servise_content_block_2 {
  width: 100%;
  height: auto;
}

.servise_content_block_2 ul {
  display: flex;
  flex-direction: column;
  padding: 20px;
  list-style: none;
  gap: 15px;
}

.servise_content_block_2 ul li {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding-left: 30px;
}

.servise_content_block_2 ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background-image: url('img/vector.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.block_forma_3_text_left {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 30px;
  color: #FFFFFF;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  line-height: 28px;
}

.block_forma_3_text_left p a {
  color: #FFFFFF !important;
  text-decoration: none;
}

.block_forma_3_text_left .block_forma_3_social_block {
  justify-content: center;
}

/* --- Нова Сторінка "Блог"--- */
.block_content.margin_bottom {
  margin-bottom: 128px;
 }

 .block_3_cards_img {
  position: relative;
}

.block_3_cards_img.blog_cards_img img{
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  max-height: 300px;
  height: auto;
  width: 100%;
  object-fit: contain;
}



.block_3_cards_info_text h3 a {
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  color: #000000;
  text-decoration: none;
}

/* --- Нова Сторінка "Блог-Прибирання після затоплення" --- */
.page-content-blog {
  width: 100%;
}

.page-content-blog .container {
  display: flex;
  margin-top: 40px;
  gap: 40px;
}

.content_blog {
  display: flex;
  width: 100%;
  border: 1px solid red;
  height: 100px;
}

.page-content-block-left {
  overflow-x: hidden;
  min-width: 33%;
  height: auto;
}

.page-content img {
  width: 100%;
  height: auto;
  border: 1px solid #117347;
  border-radius: 24px;
  margin: 24px 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-content img:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-content_all img {
  border: none;
  box-shadow:none
}

.page-content_all img:hover {
  box-shadow:none;
}

.content_contact_block {
  display: flex;
  background-image: url(img/zamovyty-klininh.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-direction: column;
  border: 2px solid #000000;
  border-radius: 24px;
  padding: 40px 24px;
  width: 100%;
  justify-content: center;
  text-align: center;
  height: auto;
  margin-bottom: 100px;
  gap: 30px;
}

.content_contact_block h3 {
    font-size: 32px;
    margin: 0 !important;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.content_contact_block p {
  color: #000000;
  font-weight: 400;
  margin: 0;
  font-size: 22px;
}

.content_contact_block p a {
  display: inline-block;
  font-weight: 800;
  font-size: 20px;
  color: #FFFFFF;
  text-decoration: none;
  padding: 8px 24px;
  border-radius: 12px;
  background: linear-gradient(to top, #117347, #2BAC72);
}

.block3_button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff !important;
  padding: 8px 20px !important;
  min-height: 55px;
  margin-top: 50px;
  background: linear-gradient(to bottom, #2BAC72, #117347);
  border-radius: 16px;
}

.block3_button:hover {
  background: linear-gradient(to bottom, #229b65, #0b5e38);
}

.page-content a {
  color: #16662a;
  font-weight: 700;
  text-decoration: none;
}

.page-content a:hover {
  cursor: pointer;
  text-decoration: underline;
}

.block_link {
  background-color: rgba(129, 189, 137, 0.2);
  margin: 5px 0 50px 0;
  width: 100%;
  transition: background-color 0.3s;
}

.block_link a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px;
  color: #16662a;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.block_link:hover {
  background-color: #81bd89;
}

.block_link:hover a {
  color: #fff;
  text-decoration: none;
}

.page-content-block-left li {
  background-color: #F9F9F9;
  border: 2px solid #000000;
  border-radius: 12px;
  margin-bottom: 12px;
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0;
  transition: background-color 0.3s ease;
}

.page-content-block-left li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 24px; 
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
  box-sizing: border-box;
}

.page-content-block-left li:hover {
  background-color: #FFFFFF;
}

.page-content-block-left li:hover a {
  color: #117347;
}

.page-content-block-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* --- Нова Сторінка "Блог-Прибирання після затоплення Efect" --- */

.page-content-block-left ul li {
  opacity: 0;
  padding-left: 30px;
  will-change: transform;
  transform: translateX(30px);
  animation: slideIn 0.5s ease-out forwards;
}

.page-content-block-left li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('img/marker.png');
  background-size: contain;
  background-repeat: no-repeat;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* --- Блок Промоакції --- */

.promotions {
  background: #f5f5f5;
  padding: 60px 20px;
  border-top: 1px solid #117347;
  border-bottom: 5px solid #117347;
}

.promotions .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

@keyframes slideRotateIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-90deg);
  }
  60% {
    opacity: 1;
    transform: translateX(30px) rotate(20deg);
  }
  80% {
    transform: translateX(-10px) rotate(-10deg);
  }
  100% {
    transform: translateX(0) rotate(0);
  }
}

.promotions-title {
  font-size: 32px;
  margin-bottom: 30px;
  color: #333;
  display: inline-block;
  opacity: 0;
}

.promotions-title.animate-in {
  animation: slideRotateIn 1s ease forwards;
  opacity: 1;
}

.promotions-title span {
  color: #117347;
  font-weight: bold;
}

.promotions-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 800px;
  text-align: left;
}

.promotions-list li {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.promotions-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #117347;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.promotions-btn {
  display: inline-block;
  background-color: #117347;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.promotions-btn:hover {
  background-color: #0d5f36;
}

.promotions-list li.in-view {
  opacity: 1;
  transform: translateY(0);
}

.promotions-list li.in-view::before {
  opacity: 1;
  transform: scale(1);
}