:root {
  --font-family-Montserrat: 'Montserrat', sans-serif;
  --font-family-Manrope: 'Manrope', sans-serif;
  --font-family-Manrope: 'Spectral SC', serif;

  --primary-color: rgb(47, 154, 161);
  --color-teal: #3ba0a3;
  --color-teal-dark: rgb(42, 122, 124);
  --color-red: rgb(139, 0, 0);
  --color-red-lite: rgb(174, 76, 76);
  --color-blue: #3060c8;
  --color-text: rgb(59, 160, 163);

  --box-shadow-2: 0 4px 10px rgb(0, 0, 0, 0.2);
  --box-shadow-3: 0 4px 10px rgb(0, 0, 0, 0.3);

  --shd: 0px 1px 24px 0px rgba(47, 154, 161, 0.6);
}

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

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

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* overflow: hidden; */
}

.main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

.h2-title {
  font-size: 35px;
  font-weight: 500;
}

body,
html {
  margin: 0;
  padding: 0;
  /* height: 100%; */
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family-Montserrat);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

body.lock-scroll {
  overflow: hidden;
}

#breadcrumbs {
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 14px;
  font-weight: 400;
  box-shadow: 0 4px 10px rgb(0, 0, 0, 0.1);
}

.btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 40px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s linear;
}

.btn:focus,
.btn:hover {
  text-decoration: none;
  box-shadow: var(--box-shadow-3);
  background-color: transparent;
  color: var(--primary-color);
}

.splash {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.splash-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.splash-fon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  background-image: url('/wp-content/uploads/2026/01/setka.avif');
  background-repeat: repeat;
  z-index: 2;
}

.splash-container {
  position: relative;
  z-index: 3;
  width: 100%;
  /* max-width: 1140px;
  padding: 0 15px;
  margin: 0 auto; */
}

.splash-content {
  text-align: center;
  margin-bottom: 40px;
}

.splash-title {
  font-family: sans-serif;
  font-size: 3rem;
  color: #2e8b8b;
  margin-bottom: 10px;
  font-weight: 400;
}

.splash-subtitle {
  font-family: sans-serif;
  font-size: 1.2rem;
  color: #8b0000;
  margin-bottom: 20px;
}

.splash-text {
  font-size: 0.85rem;
  color: #333;
  opacity: 0.8;
  margin-top: 40px;
}

.splash-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  justify-items: center;
  align-items: start;
}

.splash-item {
  display: block;
  position: relative;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.splash-item:hover {
  transform: translateY(-5px);
}

.splash-item_img {
  max-width: 100%;
  height: auto;
  display: block;
}

.splash-item span {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #8b0000;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.splash-lang_fix {
  display: flex;
  justify-content: flex-end;
  position: relative;
  top: -51px;
  right: 20px;
}

.splash-lang {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  min-height: 20px;
  position: relative;
}

.lang-switcher {
  background: #fff;
  border-radius: 30px;
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: fit-content;
  min-width: 80px;
  position: absolute;
  top: 0;
  z-index: 1;
}

.lang-switcher.active {
  border-radius: 20px;
  padding-bottom: 12px;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.lang-switcher img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.lang-arrow {
  width: 10px;
  height: 6px;
  transition: transform 0.3s ease;
}

.lang-switcher.active .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  width: 100%;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lang-switcher.active .lang-dropdown {
  display: flex;
  opacity: 1;
  justify-content: flex-start;
  margin: 10px 0 0 5px;
  align-items: baseline;
}

.lang-item {
  display: block;
  transition: opacity 0.2s;
}

.lang-item:hover {
  opacity: 0.7;
}

/* header */

.header {
  position: relative;

  width: 100%;
  z-index: 1000;
}

.header-center {
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

  background-color: #fff;
  transition: all 0.3s ease;
}

.header-center.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.4s ease-in-out forwards;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

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

/* ./header */

.hero-parallax {
  background-image: url('/wp-content/uploads/2026/01/vse-sotrudniki.avif');
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;

  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  z-index: 1;
}

.wave-separator {
  width: 100%;
  line-height: 0;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 2;
}

.wave-separator svg {
  display: block;
  width: 100%;
  height: 150px;
}

.about-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0 100px 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--about-overlay, rgba(59, 160, 163, 0.85));
  z-index: 1;
}

.about-section .container-content {
  position: relative;
  z-index: 5;
  max-width: 1000px;
}

.about-content {
  position: relative;
  z-index: 2;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #fff;
  text-transform: capitalize;
}

.about-text p {
  margin-bottom: 20px;
  text-align: justify;
}

.wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

/* video-youtube */

.video-youtube {
  margin-top: 60px;
}

.video-youtube_iframe iframe {
  width: 100%;
  height: 500px;
}

.video_two {
  margin-top: 60px;
}

.video_two-inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 30px;
  margin-top: 30px;
}

.video_two-item {
  height: 500px;
}

.video_two-item .video_two-media {
  height: 500px;
  width: 100%;
}

.video_two-inner--ob {
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, 0.6));
  padding: 20px 30px;
  border-radius: 20px;
  background-color: #fff;
}

.video_two-title {
  text-align: center;
}

/* ./video-youtube */

/* footer */

.footer {
  margin-top: 60px;
  background-color: var(--color-teal-dark);
}

.site-info {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  font-size: 14px;
  color: #fff;
}

/* ./footer */

/* ourteam_block */

.ourteam_block {
  margin-top: 60px;
}

.ourteam_block-title {
  text-align: center;
  color: var(--color-text);
}

.ourteam_block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.ourteam_block-inner--v2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.ourteam_block-inner--v2 .ourteam_block-item {
  width: 48%;
}

.ourteam_block-inner--m2 {
  grid-template-columns: 1fr 1fr 1fr;
}

.ourteam_block-inner--m3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.ourteam_block-list {
  display: flex;
  justify-content: flex-end;
}

.ourteam_block-row {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  padding: 14px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgb(0, 0, 0, 0.4);
}

.ourteam_block-col:nth-child(1) {
  flex: 0 0 201px;
}

.ourteam_block-col:nth-child(2) {
  width: 100%;
}

.ourteam_block-foto {
  height: 188px !important;
  object-fit: cover;
  width: 100%;
  max-width: 201px !important;
  height: auto;
  border-radius: 10px;
}

.ourteam_block-group {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.ourteam_block-ob {
}

.ourteam_block-item_title {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
}

.ourteam_block-spec {
  font-size: 15px;
  font-weight: 400;
  color: #4b4848;
  margin-top: 7px;
  line-height: 1.3;
}

.ourteam_block-btn {
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 500;
  background-color: var(--color-teal);
  color: #fff;
  border: 1px solid var(--color-teal);
  transition: all 0.2s linear;
  border-radius: 8px;
  min-width: 150px;
}

.ourteam_block-btn:focus,
.ourteam_block-btn:hover {
  background-color: transparent;
  color: #333;
  border: 1px solid var(--color-red);
}

.nourteam_block-item_title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 10px;
}

.ourteam_block-inner--m3 .nourteam_block-spec {
  margin-top: 5px;
  font-size: 16px;
  font-weight: 400;
  color: #999;
}

/* ====================================== */

.nourteam_block-row {
  position: relative;
}

.nourteam_block-col {
  padding: 14px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgb(0, 0, 0, 0.4);
}

.nourteam_block-foto {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  object-fit: cover;
}

.nourteam_block-spec {
  margin-top: 10px;
  font-size: 17px;
  font-weight: 600;
  color: #999;
}

.nourteam_block-group {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  bottom: 60px;
  right: 30px;
}

.nourteam_block-btn {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 25px;
  border-radius: 25px;
  box-shadow: var(--box-shadow-2);
  background: #fff;
}

/* ./ourteam */

.border-green {
  border: 1px solid #25d366;
  border-radius: 10px;
}

.btn-whatsapp {
  background-color: #25d366;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid #25d366;
  text-align: center;
  transition: all 0.2s linear;
}

.btn-whatsapp:focus,
.btn-whatsapp:hover {
  background-color: transparent;
  color: #333;
  border: 1px solid var(--color-red);
}

.nourteam_block-btn_whatsapp {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 25px;
  border-radius: 25px;
}

.nourteam_block-btn_whatsapp:focus,
.nourteam_block-btn_whatsapp:hover {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.team-modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}

.team-modal-overlay.active {
  display: flex;
}

.team-modal-content {
  background-color: rgb(255, 255, 255, 0.8);
  margin: auto;
  padding: 30px;
  border: 1px solid #888;
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.team-modal-close {
  color: #aaa;
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 50px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: all 0.2s linear;
}

.team-modal-close:hover,
.team-modal-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.team-modal-body .modal-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 5px solid #fff;
  box-shadow: 0 4px 10px rgb(0, 0, 0, 0.3);
}

.team-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 1000px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.team-modal-body h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text);
}

.modal-text {
  margin-top: 30px;
}

.modal-text p {
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: 400;
  color: #333;
}

/* ./ourteam_block */

.hero-section {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay-top,
.hero-overlay-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}

.hero-overlay-top {
  top: 0;
}

.hero-overlay-bottom {
  bottom: -1px;
  display: none;
}

.hero-wave-svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-content {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 30px;
  background-color: rgb(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  color: #fff;
  min-width: 600px;
  text-align: center;
}

.wave-layer-1 {
  fill: var(--primary-color);
  opacity: 0.3;
}
.wave-layer-2 {
  fill: var(--primary-color);
  opacity: 0.5;
}
.wave-layer-3 {
  fill: var(--primary-color);
  opacity: 0.8;
}
.wave-solid {
  fill: var(--primary-color);
  opacity: 1;
}

/* structure */

.structure {
  margin-top: 60px;
}

.structure-title {
  text-align: center;
  color: var(--color-red);
  font-weight: 500;
}

.structure-inner {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

.structure-item {
  border-radius: 10px;
  box-shadow: var(--box-shadow-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
}

.structure-item ul {
  list-style-type: none;
}

.structure-item ul li {
  text-align: center;
}

.structure-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.structure-item:nth-child(1) .structure-item_title span {
  color: var(--color-red);
}

.structure-item:nth-child(2) .structure-item_title span {
  color: var(--color-text);
}

.structure-item:nth-child(3) .structure-item_title span {
  color: #666;
}

.structure-item_title {
  padding: 0 20px;
  font-weight: 500;
  font-size: 18px;
}

.structure-item ul {
  position: relative;
  width: 100%;
}

.structure-item ul::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  height: 1px;
  width: 86%;
  box-shadow: 0 4px 10px rgb(0, 0, 0, 0.5);
  background-color: #000;
}

.structure-item ul li:nth-child(1) {
  margin-top: 30px;
}

.structure-item ul li {
  padding: 10px 20px;
  position: relative;
  transition: all 0.2s linear;
  font-size: 14px;
}

.structure-item ul li::before,
.structure-item ul li::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 2px;
}

.structure-item ul li::before {
  left: 0;
}

.structure-item ul li::after {
  right: 0;
}

.structure-item:nth-child(1) ul li:hover::before,
.structure-item:nth-child(1) ul li:hover::after {
  background-color: var(--color-red);
}

.structure-item:nth-child(2) ul li:hover::before,
.structure-item:nth-child(2) ul li:hover::after {
  background-color: var(--color-text);
}

.structure-item:nth-child(3) ul li:hover::before,
.structure-item:nth-child(3) ul li:hover::after {
  background-color: #666;
}

/* ./structure */

.header-menu-wrapper.is-active .mobile-header-top {
  justify-content: flex-end;
  margin-bottom: 40px;
  margin-top: 50px;
}

.header-menu-wrapper.is-active .lang-switcher {
  position: static;
}

/* fertility_one */

.fertility_one {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 90vh;
  width: 100%;
}

.fertility_one-title {
  color: #fff;
  text-align: center;
  padding-top: 20px;
  font-size: 24px;
}

.fertility_one-block {
  text-align: center;
  margin-top: 120px;
}

.fertility_one-v {
  color: var(--color-text);
  font-size: 20px;
  font-weight: 600;
}

.fertility_one-t {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-red);
  margin-top: 15px;
}

/* ./fertility_one */

/* v_text_block */

.v_text_block {
  margin-top: 40px;
}

.v_text_block-text {
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, 0.6));
  padding: 20px 30px;
  border-radius: 20px;
  background-color: #fff;
}

.v_text_block-text ul,
.v_text_block-text p {
  margin-bottom: 20px;
}

.v_text_block-text li {
  padding-bottom: 8px;
}

.v_text_block-text h2,
.v_text_block-text h3,
.v_text_block-text h4 {
  color: var(--primary-color);
  padding-bottom: 20px;
}

/* ./v_text_block */

/* block_text */

.block_text {
  margin-top: 40px;
}

.block_text-fon {
  margin-top: 60px;
  padding: 40px 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.block_text-content {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.block_text-content ul,
.block_text-content p {
  margin-bottom: 20px;
}

.block_text-content li {
  margin-bottom: 8px;
}

.block_text-content h2,
.block_text-content h3,
.block_text-content h4 {
  margin: 30px 0 20px;
}

/* ./block_text */

/* services_block */

.services_block {
  margin-top: 60px;
}

.services_block-title {
  color: var(--color-red);
  font-size: 30px;
  text-align: center;
}

.services_block-inner {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

.services_block-item {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 1px 24px 0px rgba(139, 0, 0, 0.6);
  padding: 20px;
}

.services_block-group {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  align-items: center;
  gap: 15px;
}

.services_block-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex: 0 0 50px;
}

.services_block-item_title {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-red);
}
.services_block-text {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
}

.services_block-button {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.services_block-btn {
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 500;
  background-color: var(--color-teal);
  color: #fff;
  border: 1px solid var(--color-teal);
  transition: all 0.2s linear;
  border-radius: 25px;
}

.services_block-btn:focus,
.services_block-btn:hover {
  background-color: transparent;
  color: #333;
  border: 1px solid var(--color-red);
}

.services_block-bottom {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.services_block-full {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 30px;
  border: 1px solid var(--color-teal);
  border-radius: 25px;
  text-align: center;
  transition: all 0.2s linear;
  color: #fff;
}

.services_block-full:focus,
.services_block-full:hover {
  color: #fff;
  background-color: var(--color-red);
  border: 1px solid var(--color-red);
}

/* ./services_block */

/* conclution_page */

.conclution_page {
  margin-top: 60px;
  padding: 60px 0;
  background-color: rgb(59, 160, 163, 0.6);
  box-shadow: var(--box-shadow-2);
}

.conclution_page-title {
  text-align: center;
  color: var(--color-text);
  margin-bottom: 40px;
}

.conclution_page-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

.conclution_page-item {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.2s linear;
}

.conclution_page-link {
  text-decoration: none;
}

.conclution_page-img {
  width: 100%;
  max-width: 100%;
  height: 277px;
  object-fit: cover;
}

.conclution_page-fon {
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.2s linear;
}

.conclution_page-item_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-red);
  text-decoration: none;
  z-index: 2;
}

.conclution_page-item:nth-child(1):focus .conclution_page-fon,
.conclution_page-item:nth-child(1):hover .conclution_page-fon {
  background-color: rgb(59, 160, 163, 0.7);
}

.conclution_page-item:nth-child(2):focus .conclution_page-fon,
.conclution_page-item:nth-child(2):hover .conclution_page-fon {
  background-color: rgb(139, 0, 0, 0.7);
}

/* ./conclution_page */

/* form_fertility */

.form_fertility {
  margin-top: 60px;
}

.form_fertility-title {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

.form_fertility-subtitle {
  margin-top: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
}

.form_fertility-form {
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: var(--box-shadow-2);
  padding: 30px 20px 60px;
  background-color: #fff;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  grid-gap: 30px;
}

.form-group label {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
  display: block;
}

.form-group input {
  border-radius: 25px;
  padding: 10px;
  border: 1px solid var(--color-red);
  width: 100%;
}

.form-group .intl-tel-input {
  width: 100%;
}

.form-group.submit-wrapper {
  position: relative;
  top: 31px;
}

.form-group.submit-wrapper input {
  background-color: var(--color-teal);
  border: 1px solid var(--color-teal);
  transition: all 0.2s linear;
  color: #fff;
  cursor: pointer;
}

.form-group.submit-wrapper input:focus,
.form-group.submit-wrapper input:hover {
  background-color: var(--color-red-lite);
  color: #fff;
}

/* ./form_fertility */

/* helper */

.mt-text {
  margin-top: -130px;
}

/* ./helper */

/* header-top */

.header-top {
  background-color: rgb(61 61 61);
  padding: 5px 0;
}

.header-top_inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.header-top_item {
}

.header-top_phone {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s linear;
}

.header-top_phone:focus,
.header-top_phone:hover {
  text-decoration: none;
  color: var(--color-red);
}

.header-top_time {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.header-top_addr {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

/* ./header-top */

/* map_google */

.map_google {
  margin-top: 60px;
  margin-bottom: -66px;
}

/* ./map_google */

/* menu-content */

.menu-content__inner {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  display: none;
}

.menu-content_phone {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: right;
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
  transition: all 0.2s linear;
}

.menu-content_phone:focus,
.menu-content_phone:hover {
  color: #eee;
}

.menu-content_addr {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: right;
  display: block;
  margin-bottom: 10px;
}

.menu-content_time {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: right;
  display: block;
}

/* ./menu-content */

/* one_bser */

.one_bser-top {
  padding: 100px 0;
  text-align: center;
  color: #fff;
}

.one_bser-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.one_bser-bottom {
  padding: 15px 0;

  background-color: var(--primary-color);
}

.one_bser-subtitle {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}

/* ./one_bser */

/* full_services */

.full_services {
  margin-top: 60px;
}

.full_services-inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
}

.full_services-inner--two {
  grid-template-columns: 1fr 1fr;
}

.full_services-item {
  border-radius: 16px;
  background-color: #fff;
  box-shadow: var(--box-shadow-2);
  padding: 20px;
}

.full_services-group {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  align-items: center;
}

.full_services-icon {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.full_services-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-red);
}

.full_services-content {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #000;
  margin-top: 20px;
}

.full_services-content p {
  margin-bottom: 20px;
}

.full_services-button {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.full_services-btn {
  padding: 10px 40px;
  border-radius: 25px;
}

/* ./full_services */

/* separator */

.separator {
  margin-top: 60px;
}

.separator-line {
  border: 0;
  border-top: 2px solid rgb(221, 221, 221, 0.4);
}

/* ./separator */

/* text_img_invert */

.text_img_invert {
  margin-top: 60px;
}

.text_img_invert-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.text_img_invert-inner.is-inverted {
  flex-direction: row-reverse;
}

.text_img_invert-item {
  /* flex: 1; */
}

.text_img_invert-item:nth-child(1) {
  width: 60%;
}

.text_img_invert-item:nth-child(2) {
  width: 40%;
}

.text_img_invert-img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.text_img_invert-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-color);
}

.text_img_invert-subtitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-red);
  margin-top: 10px;
}

.text_img_invert-text {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #000;
}

.text_img_invert-text p {
  margin-bottom: 20px;
}

.text_img_invert-text ul {
  margin-bottom: 20px;
}

.text_img_invert-text li {
  margin-bottom: 8px;
}

.text_img_invert-button {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ./text_img_invert */

/* cta_info_block */

.cta_info_block {
  margin-top: 60px;
}

.cta_info_block-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-color);
  text-align: center;
}

.cta_info_block-list {
  margin-top: 40px;
  position: relative;
}

.cta_info_block-content {
  display: flex;
  justify-content: flex-end;
}

.cta_info_block-text {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 10px rgb(0, 0, 0, 0.2);
  max-width: 1178px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #000;
  padding-left: 135px;
}

.cta_info_block-text p,
.cta_info_block-text ul {
  margin-bottom: 20px;
}

.cta_info_block-text li {
  margin-bottom: 8px;
}

.cta_info_block-img {
  width: 233px;
  height: 233px;
  object-fit: cover;
  border-radius: 16px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.cta_info_block-button {
  display: flex;
  justify-content: flex-end;
  margin-top: -20px;
  margin-right: 20px;
}

.cta_info_block-btn {
}

/* ./cta_info_block */

/* conclution_img */

.conclution_img {
  margin-top: 40px;
}

.conclution_img-inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
}

.conclution_img-inner--two {
  grid-template-columns: 1fr 1fr;
}

.conclution_img-inner--tree {
  grid-template-columns: 1fr 1fr 1fr;
}

.conclution_img-inner-fon {
  padding: 30px;
  background-color: #fff;
  box-shadow: var(--box-shadow-2);
  border-radius: 16px;
  max-width: 900px;
  margin: 0 auto;
  justify-items: center;
}

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

/* ./conclution_img */

/* full_news */

.full_news {
  margin-top: 60px;
}

.full_news-inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px 30px;
}

.full_news-inner--tree {
  grid-template-columns: 1fr 1fr 1fr;
}

.full_news-item {
  box-shadow: 0 4px 10px rgb(0, 0, 0, 0.2);
  border-radius: 20px;
  overflow: hidden;

  display: flex;
  justify-content: flex-start;
}

.full_news-inner--tree .full_news-item {
  flex-direction: column;
}

.full_news-image {
  flex: 0 0 330px;
}

.full_news-inner--tree .full_news-image {
  flex: none;
}

.full_news-thumbnail {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
}

.full_news-list {
  padding: 0 20px 20px;
}

.full_news-group {
}

.full_news-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 20px;
}

.full_news-inner--tree .full_news-title {
  min-height: 47px;
}

.full_news-content {
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
}

.full_news-inner--tree .full_news-content {
  min-height: 105px;
}

.full_news-button {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.full_news-btn {
}

/* ./full_news */

/* price_view */

.price_view {
  margin-top: 60px;
}

.price_view-content {
}

.price_view-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.price_view-subtitle {
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}

.price_view-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.price_view-inner--v1 {
}

.price_view-inner--v3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.price_view-inner--v4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.price_view-item {
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 10px rgb(0, 0, 0, 0.2);
}

.price_view-inner--v1 .price_view-item:nth-child(2n) {
  background-color: #f2fdfd;
}

.price_view-item_title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #000;
}

.price_view-item_subtitle {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #717171;
  margin-top: 5px;
}

.price_view-list {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
}

.price_view-list_item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 10px 0;
  border-bottom: 1px solid #a5a1a1;
}

.price_view-list_item:last-child {
  border-bottom: none;
}

.price_view-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.price_view-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 200px;
}

.price_view-price {
  font-weight: 600;
  font-size: 18px;
}

.price_view-dopprice {
  color: var(--color-red);
  font-size: 16px;
  font-weight: 400;
}

.price_view-inner--v2 {
}

.price_view-inner--v3 {
}

/* ./price_view */

/* block_ctitle */

.block_ctitle {
  margin-top: 40px;
}

.block_ctitle-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.block_ctitle-text.center {
  text-align: center;
}

.block_ctitle-text.left {
  text-align: left;
}

.block_ctitle-text.right {
  text-align: right;
}

/* ./block_ctitle */

/* gallery_block */

.gallery_block {
  margin-top: 60px;
}

.gallery_block-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.gallery_block-title.center {
  text-align: center;
}

.gallery_block-title.left {
  text-align: left;
}

.gallery_block-title.right {
  text-align: right;
}

.gallery_block-slider {
  margin-top: 40px;
}

.gallery_block-item {
}

.gallery_item_wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gallery_block-link {
}

.gallery_block-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.gallery_block-caption {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
}

.gallery_block-slider .swiper-button-prev {
}

.gallery_block-slider .swiper-button-next {
}

.gallery_block-slider > div > svg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  padding: 10px;
  opacity: 0.7;
  transition: all 0.2s linear;
}

.gallery_block-slider > div:focus > svg,
.gallery_block-slider > div:hover > svg {
  background-color: #3b3b3b;
  opacity: 1;
}

.gallery_block-slider > div > svg > path {
  fill: #000;
  transition: all 0.2s linear;
}

.gallery_block-slider > div:focus > svg > path,
.gallery_block-slider > div:hover > svg > path {
  fill: #fff;
}

/* ./gallery_block */

/* block_contact */

.block_contact {
  margin-top: 60px;
}

.block_contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.block_contact-item {
}

.block_contact-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--primary-color);
}

.block_contact-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.block_contact-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.block_contact-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
  transition: all 0.2s linear;
}

.block_contact-link:focus,
.block_contact-link:hover {
  color: var(--primary-color);
}

.block_contact-time {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  display: flex;
  justify-content: flex-start;
  gap: 30px;
}

.block_contact-time span {
  min-width: 76px;
}

/* ./block_contact */

/* custom-contact-form */

.form_fertility-one {
  margin-top: 120px;
  font-family: var(--font-family-Montserrat);
}

.form_fertility-form_contact {
}

.custom-contact-form {
}
.custom-contact-form_inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 30px;
}
.form_fertility-form_contact .cf7-row {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.form_fertility-form_contact .cf7-row_group {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.form_fertility-form_contact .cf7-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form_fertility-form_contact .cf7-col input {
  width: 100%;
  outline: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid #000;
  padding: 5px;
}

.form_fertility-form_contact .cf7-col textarea {
  width: 100%;
  outline: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid #000;
  height: 146px;
  padding: 5px;
}

.form_fertility-form_contact .cf7-col label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.form_fertility-form_contact .half-width {
}
.form_fertility-form_contact .cf7-col-empty {
}
.form_fertility-form_contact .cf7-submit-wrapper {
}

.form_fertility-form_contact .btn-send {
  border: none;
  cursor: pointer;
  margin-top: 25px;
}

/* ./custom-contact-form */

/* clinic_in_numbers */

.clinic_in_numbers {
  margin-top: 60px;
}

.clinic_in_numbers-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-red);
  text-align: center;
}

.clinic_in_numbers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.clinic_in_numbers-item {
  padding: 20px;
  box-shadow: 0 4px 10px rgb(47, 154, 161, 0.5);
}

.clinic_in_numbers-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.clinic_in_numbers-icon {
  display: block;
  width: max-content;
  max-width: 100%;
  height: 67px;
  object-fit: contain;
}

.clinic_in_numbers-num {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-color);
}

.clinic_in_numbers-text {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

/* ./clinic_in_numbers */

/* reviews */

.reviews {
  margin-top: 60px;
}

.reviews-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-red);
  text-align: center;
}

.reviews-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 10px;
  text-align: center;
}

.reviews-inner {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.reviews-item {
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  padding: 20px;
}

.reviews-name {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.reviews-star {
  margin: 10px auto 0;
}

.reviews-text {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.reviews-slider {
  position: relative;
  padding: 20px 0 50px;
  overflow: hidden;
  margin-top: 20px;
}

.reviews-item {
  height: auto;
  display: flex;
  flex-direction: column;
}

.reviews-slider .swiper-button-next,
.reviews-slider .swiper-button-prev {
  color: #000;
}

.reviews-slider .swiper-pagination-bullet-active {
  background: #000;
}

.reviews-slider .swiper-wrapper {
  padding-top: 70px;
}

.reviews .swiper-button-next {
  top: 30px !important;
}

.reviews .swiper-button-prev {
  top: 30px !important;
  left: inherit !important;
  right: 64px !important;
}

.reviews-slider .swiper-button-next > svg,
.reviews-slider .swiper-button-prev > svg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  padding: 10px;
  opacity: 0.7;
  box-shadow: var(--box-shadow-2);
  transition: all 0.2s linear;
}

.reviews-slider .swiper-button-next:focus > svg,
.reviews-slider .swiper-button-next:hover > svg,
.reviews-slider .swiper-button-prev:focus > svg,
.reviews-slider .swiper-button-prev:hover > svg {
  background-color: #3b3b3b;
  opacity: 1;
}

.reviews-slider .swiper-button-prev > svg > path,
.reviews-slider .swiper-button-next > svg > path {
  fill: #000;
  transition: all 0.2s linear;
}

.reviews-slider .swiper-button-next:focus > svg > path,
.reviews-slider .swiper-button-next:hover > svg > path,
.reviews-slider .swiper-button-prev:focus > svg > path,
.reviews-slider .swiper-button-prev:hover > svg > path {
  fill: #fff;
}

/* ./reviews */

/* certificates */

.certificates {
  margin-top: 60px;
}

.certificates-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-red);
  text-align: center;
}

.certificates-slider-container {
}

.certificates-slider {
  margin: 20px;
}

.certificates-slider .swiper-wrapper {
  padding-top: 60px;
}

.certificates-item {
}

.certificates-item.swiper-slide-active {
}

.certificates-img-wrap {
}

.certificates-img-wrap img {
}

.certificates .swiper-button-next,
.certificates .swiper-button-prev {
  color: #000;
}

.certificates .swiper-pagination-bullet-active {
  background: #000;
}

.certificates .swiper-wrapper {
  padding-top: 70px;
}

.certificates .swiper-button-next {
  top: 30px !important;
}

.certificates .swiper-button-prev {
  top: 30px !important;
  left: inherit !important;
  right: 64px !important;
}

.certificates .swiper-button-next > svg,
.certificates .swiper-button-prev > svg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  padding: 10px;
  opacity: 0.7;
  box-shadow: var(--box-shadow-2);
  transition: all 0.2s linear;
}

.certificates .swiper-button-next:focus > svg,
.certificates .swiper-button-next:hover > svg,
.certificates .swiper-button-prev:focus > svg,
.certificates .swiper-button-prev:hover > svg {
  background-color: #3b3b3b;
  opacity: 1;
}

.certificates .swiper-button-prev > svg > path,
.certificates .swiper-button-next > svg > path {
  fill: #000;
  transition: all 0.2s linear;
}

.certificates .swiper-button-next:focus > svg > path,
.certificates .swiper-button-next:hover > svg > path,
.certificates .swiper-button-prev:focus > svg > path,
.certificates .swiper-button-prev:hover > svg > path {
  fill: #fff;
}
/* ./certificates */

/* text_colums */

.text_colums {
  margin-top: 60px;
}

.text_colums-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.text_colums-col {
}

.text_colums-ob1,
.text_colums-ob2 {
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, 0.6));
  padding: 20px 30px;
  border-radius: 20px;
  background-color: #fff;
}

.text_colums-title {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.text_colums-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 270px;
  object-fit: contain;
  margin-top: 20px;
}

.text_colums-text {
  margin-top: 20px;
}

.text_colums-text,
.text_colums-text p {
  font-size: 16px;
  font-weight: 400;
}

.text_colums-text p {
  margin-bottom: 15px;
}

/* ./text_colums */

/* reviews_pl */

.reviews_pl {
  margin-top: 40px;
}

.reviews_pl-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.reviews_pl-inner--tree {
  grid-template-columns: 1fr 1fr 1fr;
}

.reviews_pl-item {
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, 0.6));
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
}

.reviews_pl-item:nth-child(2n) .reviews_pl-title {
  color: var(--color-red);
}

.reviews_pl-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.3;
}

.reviews_pl-text {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
}

/* ./reviews_pl */

/* page_construction */

.page_construction {
  margin: 50px 0;
}

.page_construction-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page_construction-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
}

.page_construction-title {
  font-size: 30px;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
}

.page_construction-subtitle {
  font-size: 16px;
  font-weight: 500;
}

.page_construction-p {
  font-size: 16px;
  font-weight: 500;
}

.page_construction-form {
}

.page_construction-button {
  margin-top: 40px;
}

.page_construction-btn {
  display: block;
  padding: 15px 40px;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  background-color: var(--primary-color);
  transition: all 0.2s linear;
}

.page_construction-btn:focus,
.page_construction-btn:hover {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}

.page_construction-group {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 5px;
}

.page_construction-input {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}

.page_construction-input .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -27px;
  left: 0;
  font-size: 14px;
}

.page_construction-input input {
  padding: 5px 15px;
  height: 40px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border: 2px solid var(--primary-color);
  outline: none;
}

.page_construction-input input::placeholder {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
}

.page_construction-b input {
  padding: 5px 50px;
  height: 40px;
  background-color: var(--primary-color);
  color: #fff;
  text-transform: uppercase;
  border: 2px solid var(--primary-color);
  border-bottom-right-radius: 25px;
  border-top-right-radius: 25px;
  cursor: pointer;
  transition: all 0.2s linear;
}

.page_construction-b input:focus,
.page_construction-b input:hover {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.page_construction-a {
  margin-top: 30px;
  font-size: 14px;
}

.page_construction-a .wpcf7-list-item label {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

/* ./page_construction */
