@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Heavy.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}



:root {
  --accent-color: #2563EB;
  --text-color: #4B4B4B;
  --light-text-color: #fff;
  --main-color: #EBF4FF;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-size: clamp(18px, 1.2vw, 24px);
  line-height: 1.4;
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  color: var(--text-color);
  background: var(--main-color);
}
.container {
  width: calc(100% - 15.6%);
  margin: 0 auto;
}
a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
ul {
  list-style-type: none;
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
}
ul, h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}
h1, h2, h3 {
  font-weight: 700;
  color: #2D2D2D;
}
input, select, textarea {
  outline:none;
}
img {
  max-width: 100%;
}

.animate-block {
  opacity: 0;
  transform: translateX(0);
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}
.animate-block.from-left {
  transform: translateX(-100px);
}
.animate-block.from-right {
  transform: translateX(100px);
}
.animate-block.fade-in {
  transform: translateY(80px);
}
.animate-block.in-view {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
section, .footer {
  overflow-x: hidden;
}

.btn {
  padding: 7px 9px 7px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: fit-content;
  gap: 18px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  background: var(--accent-color);
  border-radius: 100px;
  border: 1px solid #2563EB;
  white-space: nowrap
}
.btn span {
  width: 48px;
  height: 48px;
  border-radius: 50px;
  background: url(../img/btn-arrow.svg) no-repeat center, var(--light-text-color);
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  background: var(--light-text-color);
  color: var(--accent-color);
}
.btn:hover span {
  background: url(../img/btn-arrow-hover.svg) no-repeat center, var(--accent-color);
}
.btn.btn-light {
  background: var(--light-text-color);
  color: var(--accent-color);
}
.btn.btn-light:hover {
  background: var(--accent-color);
  color: #fff;
}
.btn.btn-light span {
  background: url(../img/btn-arrow-hover.svg) no-repeat center, var(--accent-color);
}
.btn.btn-light:hover span {
  background: url(../img/btn-arrow.svg) no-repeat center, var(--light-text-color);
}
.title__block {
  font-size: clamp(28px, 2.8vw, 48px);
}
.title__block span {
  color: var(--accent-color);
}

.burger-menu {
  display: none;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}
.header {
  padding: 32px 0;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu__header {
  display: flex;
  align-items: center;
  gap: clamp(15px, 3.5vw, 56px);
}
.menu__header a {
  color: #2D2D2D;
  font-size: 18px;
  line-height: 1.6;
}
.menu__header a:hover {
  color: rgba(75, 75, 75, 0.8);
}
.header__contact {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__phone-link {
  padding-left: 26px;
  display: block;
  font-size: 18px;
  color: var(--text-color);
  background: url(../img/phone-ico.svg) no-repeat center left;
  font-weight: 600;
}
.header__phone-link:hover {
  opacity: 0.8;
}
.social-block {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-link {
  display: block;
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.social-link:hover {
  transform: scale(0.96);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
}
.header__telegram {
  background: url(../img/Telegram.svg);
}
.header__facebook {
  background: url(../img/Facebook.svg);
}
.header__instagram {
  background: url(../img/Instagram.svg);
}

.hero {
  padding: 90px 0 72px;
}
.hero__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}
.hero__block {
  max-width: 900px;
}
.hero__title {
  font-size: clamp(32px, 2.8vw, 55px);
}
.hero__title span {
  color: var(--accent-color);
}
.hero__text {
  margin: 36px 8% 45px 0;
}
.hero__img {
  width: clamp(380px, 35vw, 650px);
}
.hero__img.mobile, .social-block.mobile {
  display: none;
}

.trust {
  padding: 65px 0;
}
.trust__list {
  display: flex;
   align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(15px, 1.8vw, 30px);
}
.trust__item, .trust .title__block {
  width: calc(32.5% - clamp(8px, 1vw, 15px));
}
.trust__item {
  padding: 30px 32px 30px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
/*   border: 2px dashed #739FFF; */
/*   border-style: dashed; */
  border: 2px solid #739FFF;
  border-style: solid;

  border-width: 2px;
  border-color: #739FFF;
  border-radius: 20px;
}
.trust__item span {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trust__list :nth-child(2) {
  letter-spacing: -0.5px;
}
.trust__ico {
  width: clamp(60px, 4.2vw, 80px);
}

.surgery {
  padding: 65px 0;
}
.surgery__wrapper-text {
  display: flex;
  align-items: center;
  gap: 70px;
}
.surgery__btn-wrapper {
  margin-top: 38px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.surgery .title__block {
  width: 630px;
  max-width: 45%;
}
.surgery__text {
  width: calc(100% - clamp(500px, 52vw, 690px));
  max-width: 54%;
}
.surgery__content {
  margin-top: 70px;
  display: flex;
  gap: 30px;
}
.surgery__tabs {
  width: 520px;
  max-width: 44%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.surgery__tab {
  padding: 20px;
  background: var(--light-text-color);
  border: 1px solid var(--main-color);
  color: #6E6E6E;
  font-size: clamp(18px, 1.2vw, 30px);
  font-weight: 500;
  text-align: center;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.surgery__tab.is-active {
  color: #2563EB;
  border-color: #2563EB;
}
.surgery__tab:hover {
  border-color: var(--text-color);
}
.surgery__panels {
  width: calc(100% - 550px);
}
.surgery__panel {
  display: none;
  animation: fade 0.3s ease;
}
.surgery__panel.is-active {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}
.surgery__panel-text {
  padding: 40px 44px;
  background: var(--light-text-color);
}
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.surgery__panels-wrapper-img {
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  height: 275px;
}
.surgery__panels-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services {
  padding: 65px 0;
}
.services__list {
  margin-top: 40px;
  visibility: visible;
}
.services__list.desktop {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.services__splide {
  display: none;
}
.services__splide-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.services__item {
  padding: 40px 30px 40px 25px;
  min-height: 320px;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: auto 70% !important;
  border-radius: 20px;
}
.services__item, .services__image {
  width: calc(25% - 24px);
}
.services__image {
  text-align: center;
}
.services__title {
  font-size: 26px;
  font-weight: 500;
}
.services__text {
  margin: 15px 0 25px;
  font-size: 18px;
}
.services__link {
  position: relative;
  color: var(--accent-color);
  font-weight: 700;
}

.reviews .ti-read-more .ti-read-more-active, .reviews .ti-widget.ti-goog .ti-read-more span {
  position: relative;
  color: var(--accent-color) !important;
  font-weight: 700 !important;
  opacity: 1 !important;
  font-size: 18px !important;
}
.reviews .ti-widget.ti-goog .ti-read-more span:hover {
  text-decoration: none !important;
}

.blog-home {
  padding: 65px 0;
}
.blog-home__slider {
  margin-top: 50px;
}
.blog-home__item {
  position: relative;
  padding: 32px 55px 32px 34px;
  width: clamp(290px, 38vw, 518px);
  height: clamp(200px, 28vw, 315px);
  display: flex;
  color: var(--light-text-color);
  overflow: hidden;
  border-radius: 20px;
  background-size: cover;
}
.blog-home__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 28, 89, 0.4);
  z-index: 1;
}
.blog-home__content {
  margin-top: auto;
  font-size: 16px;
  z-index: 2;
}
.blog-home__title {
  max-width: 350px;
  margin-bottom: 15px;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;      
}
.blog-home__title a {
  color: var(--light-text-color);
}
.blog-home__read-more {
  position: absolute;
  content: '';
  width: clamp(35px, 3.7vw, 54px);
  height: clamp(35px, 3.7vw, 54px);
  top: 17px;
  right: 17px;
  background: url(../img/ep_top-right.svg) no-repeat center, #fff;
  background-size: clamp(19px, 1.9vw, 28px);
  border-radius: 50%;
  transition: 
    box-shadow 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease;
}
.blog-home__read-more:hover {
  transform: translate(3px, -3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background-color: #f7f7f7;
}
.blog-home__all {
  margin-top: 40px;
  text-align: center;
}
.blog-home__all a {
  display: inline-block;
  width: 218px;
  padding: 20px;
  color: var(--accent-color);
  font-size: 18px;
  border: 1px solid #2563EB;
  text-align: center;
  border-radius: 100px;
}
.blog-home__all a:hover {
  background: var(--accent-color);
  color: var(--light-text-color);
}

.services__link::before, .reviews .ti-read-more .ti-read-more-active::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  right: 0;
  background: var(--accent-color);
}
.services__link::after, .reviews .ti-read-more .ti-read-more-active::after {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  top: 2px;
  right: -40px;
  background: url(../img/btn-more.svg) no-repeat center right;
}

.specialists {
  padding: 65px 0;
}
.specialists__splide {
  margin-top: 40px;
}
.specialists__slide {
  padding: 22px 35px;
  background: var(--light-text-color);
  border-radius: 20px;
}
.specialists__slide-inner {
  display: flex;
  /* font-size: clamp(14px, 1vw, 18px); */
  color: #3A3A3A;
}
.specialists__left {
  padding: 0 40px 50px 0;
  border-right: 1px solid #E1E1E1;
}
.specialists__right {
  padding: 20px 10px 22px 50px;
  display: flex;
  flex-direction: column;
}
.specialists__photo {
  width: 201px;
  border-radius: 20px;
}
.specialists__name {
  margin: 24px 0 8px;
  font-size: clamp(20px, 1.8vw, 30px);
  color: #000;
}
.specialists__name span {
  color: var(--accent-color);
}
.specialists__text-em {
  display: block;
  margin-bottom: 22px;
}
.specialists__text strong {
  color: var(--accent-color);
}
.specialists__progress-block {
  display: flex;
  align-items: center;
  gap: 5px;
}
.specialists__progress-title {
  /* font-size: clamp(16px, 1.2vw, 20px); */
  color: var(--accent-color);
  font-weight: 600;
}
.specialists__progress-text {
  margin-top: 10px;
}
.specialists__progress-item {
  margin-bottom: 30px;
}
.specialists__right .btn {
  margin-top: auto;
}
.specialists {
  overflow-x: clip;
}
.specialists .splide__track {
  touch-action: pan-y;
}
.splide__arrow {
  top: -100px;
  background: transparent;
  width: clamp(45px, 4.7vw, 82px);
  height: clamp(45px, 4.7vw, 82px);
  background: url(../img/slide-arrow-gray.svg) no-repeat center;
  transform: none;
  opacity: 1;
  background-size: clamp(30px, 3vw, 54px);
}
.splide__arrow svg {
  display: none;
}
.splide__arrow--prev {
  left: auto;
  right: clamp(55px, 5.5vw, 100px);
}
.splide__arrow--next {
  right: 0;
  transform: rotate(180deg);
}
.splide__arrow--next:hover {
  opacity: 1;
  background: url(../img/slide-arrow.svg) no-repeat center;
  background-size: clamp(30px, 3vw, 54px) !important;
  transform: rotate(0);
}
.splide__arrow--prev:hover {
  opacity: 1;
  background: url(../img/slide-arrow.svg) no-repeat center;
  background-size: clamp(30px, 3vw, 54px) !important;
  transform: rotate(180deg);
}
.splide__arrow:hover:not(:disabled) {
  opacity: 1;
}

.certificates {
  padding:  65px 0;
}
.certificates__gallery {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.certificates__item {
  display: flex; 
  align-items: center;
  justify-content: center;
}
.certificates__item:not(:last-child), .certificates__item:not(:first-child) {
  width: 24%;
}
.certificates__item:not(:last-child) {
  border-right: 1px solid #A0CBFF;
  text-align: center;
}
.certificates__item:last-child {
  justify-content: flex-end;
  width: 10%;
}
.certificates__item:first-child {
  justify-content: flex-start;
  width: 18%;
}

.reviews {
  padding: 65px 0;
}
.ti-widget.ti-goog {
  margin-top: 40px;
}
.reviews .ti-widget.ti-goog .ti-controls {
  display: block;
}
.reviews .ti-widget.ti-goog .ti-col-5 .ti-review-item, .reviews .ti-widget.ti-goog .ti-col-4 .ti-review-item {
  -ms-flex: 0 0 33.3%;
  flex: 0 0 33.3%;
  max-width: 33.3%;
}
.reviews .ti-widget.ti-goog .ti-col-3 .ti-review-item {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.reviews .ti-widget.ti-goog .ti-widget-container, .reviews .ti-widget.ti-goog .ti-widget-container *, 
.ti-widget.ti-goog .ti-widget-container .ti-name {
  font-family: 'Gilroy', sans-serif !important;
  font-size: 18px !important;
}
.reviews .ti-widget.ti-goog .ti-reviews-container-wrapper {
  margin: 0 !important;
}

.reviews .ti-widget.ti-goog .ti-controls .ti-next, .reviews .ti-widget.ti-goog .ti-controls .ti-prev {
  top: -200px;
  background: transparent;
  width: clamp(45px, 4.7vw, 82px);
  height: clamp(45px, 4.7vw, 82px);
  background: url(../img/slide-arrow-gray.svg) no-repeat center !important;
  background-size: clamp(30px, 3vw, 54px) !important;
  transform: none;
  opacity: 1;
  outline-color: transparent;
  transition:none;
}
.reviews .ti-widget.ti-goog .ti-controls .ti-prev {
  left: auto;
  right: clamp(55px, 5.5vw, 100px);
}
.reviews .ti-widget.ti-goog .ti-controls .ti-next {
  right: 0;
  transform: rotate(180deg);
}
.reviews .ti-widget.ti-goog .ti-controls .ti-next:before, .reviews .ti-widget.ti-goog .ti-controls .ti-prev:before {
  content: none;
}
.reviews .ti-widget.ti-goog .ti-controls .ti-next:hover, .reviews .ti-widget.ti-goog .ti-controls .ti-next:focus,
.reviews .ti-widget.ti-goog .ti-controls .ti-prev:hover, .reviews .ti-widget.ti-goog .ti-controls .ti-prev:focus {
  outline-color: transparent!important;
  box-shadow: none;
}
.reviews .ti-widget.ti-goog .ti-controls .ti-next:hover, .reviews .ti-widget.ti-goog .ti-controls .ti-next:focus {
  background: url(../img/slide-arrow.svg) no-repeat center !important;
  background-size: clamp(30px, 3vw, 54px) !important;
  transform: rotate(0);
}
.reviews .ti-widget.ti-goog .ti-controls .ti-prev:hover, .reviews .ti-widget.ti-goog .ti-controls .ti-prev:focus {
  background: url(../img/slide-arrow.svg) no-repeat center !important;
  background-size: clamp(30px, 3vw, 54px) !important;
  transform: rotate(180deg);
}
.reviews .ti-platform-icon.ti-with-tooltip, .reviews .ti-widget.ti-goog .ti-verified-review {
  display: none;
}
.reviews .ti-widget.ti-goog .ti-review-item>.ti-inner {
  background-color: transparent !important;
/*   border: 2px dashed #739FFF; */
/*   border-style: dashed !important; */
  
	border: 2px solid #739FFF;
	border-style: solid !important;
	
  border-width: 2px !important;
  border-color: #739FFF !important;
  border-radius: 20px;
  background: url(../img/marks.svg) no-repeat bottom 26px right 26px;
}

.send {
  margin: 65px 0;
  padding: 86px 0 90px;
  background-color: var(--accent-color);
  background-image: url("../img/form-bg.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.send__block .title__block, .send__block {
  color: var(--light-text-color);
}
.send__block {
  max-width: calc(100% - 600px);
}
.send__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.send__list {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.send__item {
  display: flex;
  gap: 15px;
  align-items: center;
}
.send__img {
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-style: dashed;
  border-width: 2px;
  border-color: #fff;
  border-radius: 50%;
}
.send__item-title {
  font-size: clamp(20px, 2.7vw, 24px);
  color: var(--light-text-color);
}
.send__item-text {
  margin-top: 4px;
  font-size: clamp(16px, 2.5vw, 22px);
  line-height: 1.2;
}
.send__form-wrapper {
  padding: clamp(30px, 3vw, 58px) clamp(20px, 3.55vw, 68px);
  width: clamp(460px, 42vw, 630px);
  background: var(--light-text-color);
  border-radius: 20px;
}
.send__form-wrapper .title__block {
  font-size: clamp(28px, 2.5vw, 36px);
}
.wpcf7-form {
  margin: 36px auto 0;
  max-width: 86%;
}
.wpcf7-form-control {
  width: 100%;
  max-width: 100%;
}
input:not([type="submit"]) {
  margin-bottom: 25px;
  padding: 10px 28px;
  background: #E4EDFF;
  border: 1px solid #E4EDFF;
  font-size: 18px;
  font-weight: 500;
  border-radius: 100px;
}
input:not([type="submit"]):hover, input:not([type="submit"]):focus {
  border-color: #808080;
}
input::placeholder {
  color: #808080;
}
.wpcf7-form .wpcf7-form-control.wpcf7-hidden {
  margin: 0;
  padding: 0;
  display: none !important;
}
.wpcf7-form p br {
  display: none;
}
.wpcf7-submit {
  padding: 20px 40px 20px 20px;
  background: url(../img/btn-arrow-submit.svg) no-repeat center right 8px, var(--accent-color);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.wpcf7-submit:hover {
  background: url(../img/btn-arrow-submit-hover.svg) no-repeat center right 8px, var(--light-text-color) ;
}

.contacts {
  padding: 65px 0;
}
.contacts__wrapper {
  position: relative;
}
iframe {
  width: 100%;
  height: 745px;
}
.contacts__block {
  width: 490px;
  max-width: 100%;
  padding: 50px 46px;
  position: absolute;
  top: 50%;
  left: 75px;
  transform: translate(0, -50%);
  background: var(--light-text-color);
  border-radius: 20px;
}
.contacts__list {
  margin: 30px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contacts__item {
  position: relative;
  display: block;
  padding-left: 38px;
  font-size: clamp(20px, 1.3vw, 24px);
  color: #444;
}
.contacts__item::before {
  position: absolute;
  content: '';
  top: 1px;
  left: 0;
}
.contacts__phone::before {
  content: url(../img/contact-phone.svg);
}
.contacts__email::before {
  content: url(../img/contact-email.svg);
}
.contacts__address::before {
  content: url(../img/contact-address.svg);
}

.footer {
  margin-top: 65px;
  padding: 65px 0 70px;
  background: #313131;
  color: var(--light-text-color);
  font-size: 18px;
}
.footer a {
  color: var(--light-text-color);
}
.footer a:hover {
  color: var(--main-color);
}
.footer__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.footer__block {
  max-width: 280px;
}
.footer__wrapper .social-block {
  margin-top: 50px;
}
.footer__wrapper .social-link, .contacts__block .social-link {
  width: 47px;
  height: 47px;
}
.contacts__block .header__telegram, .footer__wrapper  .header__telegram {
  background: url(../img/Telegram.svg) no-repeat center;
  background-size: contain;
}
.contacts__block .header__facebook, .footer__wrapper  .header__facebook {
  background: url(../img/Facebook.svg) no-repeat center;
  background-size: contain;
}
.contacts__block .header__instagram {
  background: url(../img/Instagram.svg) no-repeat center;
  background-size: contain;
}
.footer__wrapper .social-block .header__instagram {
  background: url(../img/Instagram-white.svg) no-repeat center;
  background-size: contain;
}
.footer__block-title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
}
.footer__block .menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.footer__item {
  display: block;
  position: relative;
  padding-left: 40px;
}
.footer__item::before {
  position: absolute;
  content: '';
  left: 0;
  top: 1px;
}
.footer__phone::before {
  content: url(../img/footer-phone.svg);
}
.footer__email::before {
  content: url(../img/footer-email.svg);
}
.footer__address::before {
  content: url(../img/footer-address.svg);
}
.social-block.mobile {
  display: none;
}

/* Модальне */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; 
  height: 100%;
  z-index: 9999;
}
.modal__overlay {
  position: absolute;
  top:0; 
  left:0;
  width:100%; 
  height:100%;
  background: rgba(0,0,0,0.5);
}
.modal__wrapper {
  width: 630px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 1010;
}
.modal__content .title__block {
  text-align: center;
}
.modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
}
.modal__thanks {
  height: 230px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  color: #000;
}
.modal__thanks .title__block {
  margin-bottom: 20px;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  margin: 0;
  padding: 0;
  border: none;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: transparent;
}
.header__instagram {
  display: none !important;
}
header .header__facebook {
  display: none !important;
}