/* fonts */

@font-face {
  font-family: "Fontawesome webfont 2";
  src: url("../fonts/fontawesome-webfont_2.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Magistralc";
  src: url("../fonts/MagistralBlackC.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Magistralc";
  src: url("../fonts/MagistralC-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Magistralc";
  src: url("../fonts/Magistral-Medium.woff") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Magistralc";
  src: url("../fonts/MagistralC.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* messengers widget */

.cta-btn-viber {
  width: 100px;
  height: auto;
  position: fixed;
  z-index: 10;
  bottom: 20px;
  right: 20px;
}

.cta-btn img {
  display: block;
  width: 100%;
  height: auto;
}

.messengers-widget {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.mssg-container {
  /* width: 250px; */
  padding: 20px 20px 10px;
  border-radius: 20px 20px 4px 20px;
  background-color: #fff;
  position: absolute;
  bottom: 90px;
  right: 20px;
  transition: transform 0.5s, opacity 0.5s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(50%);
}

.mssg-container.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mssg-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  padding: 0;
}

.mssg-list > li {
  width: 100px;
  margin-bottom: 10px;
}

.mssg-list > li a,
.mssg-list > li a img {
  display: block;
  width: 100%;
}

.mssg-list > li a {
  margin-bottom: 5px;
}

.mssg-list > li span {
  display: block;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: #808080;
}

.mssg-widjet {
  width: 100px;
  height: 94px;
  cursor: pointer;
  transition: transform 0.5s;
  position: relative;
}

.mssg-widjet::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/mssg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 27px 16px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.phone-widjet::after,
.mssg-widjet::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/close-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transform: rotate(90deg);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.phone-widjet svg,
.mssg-widjet svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
}

.phone-widjet path,
.mssg-widjet path {
  transition: fill 0.5s;
}

.cta-btn.visible svg {
  transform: rotate(90deg);
}

.mssg-widjet.visible svg {
  transform: rotate(-90deg);
}

.cta-btn.visible svg path,
.mssg-widjet.visible svg path {
  fill: #9e9e9e;
}

.cta-btn.visible::before,
.mssg-widjet.visible::before {
  opacity: 0;
  transform: rotate(-90deg);
}

.cta-btn.visible::after,
.mssg-widjet.visible::after {
  opacity: 1;
  transform: rotate(0);
}

.cta-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  background: #000000;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.cta-overlay.visible {
  opacity: 0.5;
}

.pt20.pt20 {
  padding-top: 20vh;
}

/* preloader */

.preloader {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10000;
}

.pr-container {
  width: 200px;
  height: 200px;
  position: relative;
  margin: auto;
}

.pr-container > div {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.pr-container > div img {
  display: block;
  width: 100%;
}

.pr-outer {
  animation: spinRound 3s linear infinite;
}

.pr-container > div.pr-inner img {
  width: 60%;
}

@keyframes spinRound {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.w-webflow-badge {
  display: none !important;
}

.w-slider-dot {
  background: transparent;
  border: 1px solid #fff;
  padding-top: 6px;
  padding-right: 6px;
  padding-bottom: 6px;
  padding-left: 6px;
  background-clip: content-box;
}

.w-slider-dot:hover {
  background: #3badff;
  border: 1px solid #fff;
  padding-top: 6px;
  padding-right: 6px;
  padding-bottom: 6px;
  padding-left: 6px;
  background-clip: content-box;
}

.w-slider-dot.w-active {
  background: #3badff;
  border: 1px solid #fff;
  padding-top: 6px;
  padding-right: 6px;
  padding-bottom: 6px;
  padding-left: 6px;
  background-clip: content-box;
}

.w-slider-nav.w-round > div {
  margin: 35px;
  height: 26px;
  width: 26px;
}

.w-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.w-slide.with-gradient::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(rgba(8, 19, 39, 0.75), rgba(8, 19, 39, 0.75));
  transform: translateX(0px);
  opacity: 1;
}

.w-slide__mobile {
  display: none;
}

.w-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

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

.footer-link {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-link.hero-link {
  margin-bottom: 0px;
  -webkit-transition: color 400ms ease;
  transition: color 400ms ease;
  color: #021c54;
  font-size: 20px;
  font-weight: 900;
  text-align: left;
}

.footer-link.hero-link:hover {
  color: #3badff;
  text-decoration: none;
}

.footer-link.address {
  margin-bottom: 0px;
  -webkit-transition: color 400ms ease;
  transition: color 400ms ease;
  color: #021c54;
  font-size: 14px;
  font-weight: 700;
}

.footer-link.address:hover {
  color: #3badff;
  text-decoration: none;
}

.footer-link.sticky-pnumber {
  margin-top: 20px;
  margin-left: 20px;
  -webkit-transition: color 400ms ease;
  transition: color 400ms ease;
  font-family: Magistralc, sans-serif;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-link.sticky-pnumber:hover {
  color: #3badff;
  text-decoration: none;
}

.container {
  position: static;
  max-width: 1160px;
  padding-right: 15px;
  padding-left: 15px;
}

.container.cta {
  text-align: center;
}

.container.nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 5px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.container.nav-1 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.container.contacts-cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 15px 10px;
}

.container.doctor-infocontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
  padding-bottom: 10vh;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: flex-start;
}

.container.contacts-page-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin-top: 13vh;
  padding-bottom: 10vh;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.container.news-container {
  margin-top: 13vh;
  padding-top: 5vh;
}

.container.tetst-table-cont {
  padding-top: 20vh;
}

.slide {
  height: 100%;
  text-align: center;
}

.mask {
  position: static;
  overflow: visible;
}

.carousel-img {
  height: 100%;
  object-fit: cover;
}

.carousel {
  position: relative;
  display: inline-block;
  width: 400px;
  height: 500px;
  background-color: hsla(0, 0%, 86.7%, 0);
  text-align: center;
}

.carousel-slide-wrap {
  height: 100%;
}

.left-arrow {
  left: -29vw;
  top: 0%;
  right: auto;
  bottom: 0%;
}

.right-arrow {
  left: auto;
  top: 0%;
  right: -29vw;
  bottom: 0%;
}

.section {
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 40px;
}

.section.carousel-sec {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 150px;
  padding-bottom: 100px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.section.last {
  overflow: visible;
  margin-bottom: 10vh;
}

.body {
  background-image: url("../images/mainbg.svg");
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: repeat-y;
  background-attachment: fixed;
  font-family: "Droid Sans", sans-serif;
}

.call-to-action {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: hsla(0, 0%, 90.8%, 0);
  background-image: url("../images/LOGO-color.png"),
    -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, 0.35)), to(hsla(0, 0%, 100%, 0.35))),
    url("../images/hospital.jpg"), -webkit-gradient(linear, left top, left bottom, from(#3badff), to(#3badff));
  background-image: url("../images/LOGO-color.png"),
    linear-gradient(180deg, hsla(0, 0%, 100%, 0.35), hsla(0, 0%, 100%, 0.35)), url("../images/hospital.jpg"),
    linear-gradient(180deg, #3badff, #3badff);
  background-position: 90% 100%, 0px 0px, 50% 50%, 0px 0px;
  background-size: contain, auto, cover, auto;
  background-repeat: no-repeat, repeat, repeat, repeat;
  background-attachment: scroll, scroll, fixed, scroll;
}

.slide-nav {
  display: none;
  overflow: visible;
}

.cards-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.cards-section.cards-sec {
  padding-top: 40px;
}

.cards-grid-container {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-gap: 20px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: -webkit-max-content -webkit-max-content;
  -ms-grid-rows: max-content max-content;
  grid-template-rows: -webkit-max-content -webkit-max-content;
  grid-template-rows: max-content max-content;
  text-align: left;
}

.cards-image-mask {
  position: absolute;
  left: auto;
  top: 10px;
  right: 10px;
  bottom: auto;
  z-index: 2;
  display: block;
  overflow: hidden;
  width: 80px;
  height: 80px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 2px;
  border-color: #142e60;
  border-radius: 100%;
  background-color: #fff;
}

.cards-image {
  position: absolute;
  left: 25%;
  top: 25%;
  right: auto;
  bottom: auto;
  max-height: 50%;
  max-width: 50%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.advantage {
  position: relative;
  display: block;
  overflow: hidden;
  height: 220px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  font-family: "Droid Sans", sans-serif;
  color: #3badff;
  text-align: center;
}

.advantage p {
  max-width: 270px;
}

/* .slide-1 {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 19, 39, 0.75)), to(rgba(8, 19, 39, 0.75))), url('../images/adult-doctors.jpg');
    background-image: linear-gradient(180deg, rgba(8, 19, 39, 0.75), rgba(8, 19, 39, 0.75)), url('../images/adult-doctors.jpg');
    background-position: 0px 0px, 100% 50%;
    background-size: auto, cover;
}

.slide-2 {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 19, 39, 0.75)), to(rgba(8, 19, 39, 0.75))), url('../images/analysis-2030261_1920.jpg');
    background-image: linear-gradient(180deg, rgba(8, 19, 39, 0.75), rgba(8, 19, 39, 0.75)), url('../images/analysis-2030261_1920.jpg');
    background-position: 0px 0px, 0px 0px;
    background-size: auto, cover;
} */

.sticky-navbar {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 92;
  display: block;
  background-color: #021c54;
  opacity: 1;
}

.sticky-navbar.mob-invisible {
  display: none;
  opacity: 0;
}

.nav-link {
  position: relative;
  margin-left: auto;
  padding: 10px 20px;
  -webkit-transition: color 500ms ease;
  transition: color 500ms ease;
  font-family: Magistralc, sans-serif;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.nav-link:hover {
  color: #3badff;
}

.brand-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  /* margin-bottom: 10px; */
  padding-left: 0px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.sticky-navbar .brand-2 {
  margin-top: 0;
}

.brand-2.w--current {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.dropdown-toggle {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
}

.dropdown-toggle.w--open {
  color: #3badff;
}

.dropdown-toggle._2 {
  padding-left: 0px;
  color: var(--color-white);
}

.dropdown-toggle._2.w--open {
  color: #3badff;
}

.text-dropdown {
  position: relative;
  font-family: Magistralc, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}

.dropdown-link {
  min-width: 195px;
  margin-right: 0px;
  margin-left: 0px;
  padding-right: 10px;
  padding-left: 10px;
  font-family: Magistralc, sans-serif;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

.current-link {
  pointer-events: none;
  color: #0082f3;
}

.w--current {
  pointer-events: none;
}

.dropdown-link:hover {
  color: #3badff;
  font-weight: 700;
}

.burger-btn {
  display: none;
  width: 40px;
  height: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 99999px;
  background-color: hsla(0, 0%, 100%, 0.75);
}

.line1 {
  width: 30px;
  height: 2px;
  margin-top: 2px;
  margin-bottom: 2px;
  background-color: var(--color-white);
}

.line2 {
  width: 30px;
  height: 2px;
  margin-top: 2px;
  margin-bottom: 2px;
  background-color: var(--color-white);
}

.line3 {
  width: 30px;
  height: 2px;
  margin-top: 2px;
  margin-bottom: 2px;
  background-color: var(--color-white);
}

/* For white slider */

.home .burger-btn:not(.stick) .line1,
.home .burger-btn:not(.stick) .line2,
.home .burger-btn:not(.stick) .line3,
.home .language-chooser > li:first-child::after {
  background-color: var(--color-dark);
}

.home .sticky-navbar .language-chooser > li:first-child::after,
.home .w-nav-overlay .language-chooser > li:first-child::after {
  background-color: var(--color-white);
}

.home .tagline,
.home .heading,
.home .language-chooser a,
.home .lang-link,
.home .dropdown-toggle._2,
.home .w-nav-link {
  color: var(--color-dark);
}

.home .sticky-navbar .tagline,
.home .sticky-navbar .heading,
.home .sticky-navbar .language-chooser a,
.home .sticky-navbar .lang-link,
.home .sticky-navbar .dropdown-toggle._2,
.home .sticky-navbar .w-nav-link,
.home .w-nav-overlay .tagline,
.home .w-nav-overlay .heading,
.home .w-nav-overlay .language-chooser a,
.home .w-nav-overlay .lang-link,
.home .w-nav-overlay .dropdown-toggle._2,
.home .w-nav-overlay .w-nav-link {
  color: var(--color-white);
}

/* For white slider end */

.dropdown {
  z-index: 1;
  margin-left: auto;
  border-right: 2px none #d1d1d1;
}

.icon {
  color: #3badff;
  font-size: 18px;
}

.icon.scroll-gesture {
  left: 50%;
  top: auto;
  right: auto;
  bottom: 0%;
  display: none;
  font-size: 25px;
}

.left-arrow-2 {
  left: 45%;
  top: 91%;
  right: auto;
  bottom: 0%;
  z-index: 2;
  display: none;
  overflow: visible;
  width: 40px;
}

.right-arrow-2 {
  left: auto;
  top: 91%;
  right: 45%;
  bottom: 0%;
  z-index: 2;
  display: none;
  width: 40px;
}

.hero {
  z-index: 100;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 90%;
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.heading {
  margin: 10px 0 0 0;
  font-family: Magistralc, sans-serif;
  color: var(--color-white);
  font-size: 38px;
  line-height: 40px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.icon-2 {
  left: auto;
  top: auto;
  right: 0%;
  bottom: 21px;
  color: #fff;
  font-size: 20px;
}

.icon-3 {
  left: 0%;
  top: auto;
  right: auto;
  bottom: 21px;
  color: #fff;
  font-size: 20px;
}

.slide-nav-2 {
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1px;
  height: 85vh;
  margin-top: 0px;
  margin-right: 5vw;
  margin-bottom: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.days {
  color: #3badff;
  font-weight: 900;
  letter-spacing: 1px;
}

.schedule {
  margin-bottom: 0px;
  color: #021c54;
  font-size: 14px;
  line-height: 18px;
}

.cta-txt-wrap {
  width: 570px;
  color: #142e60;
  text-align: left;
}

.heading-2 {
  font-family: Magistralc, sans-serif;
  font-weight: 900;
}

.heading-2.cta-head {
  margin-bottom: 25px;
  font-size: 36px;
  line-height: 40px;
}

.footer {
  padding: 15px;
  background-color: #021c54;
}

.footer-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-col {
  padding: 20px 15px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left;
}

.footer-col._2 {
  text-align: center;
}

.footer-col._3 {
  text-align: right;
}

.footer-title {
  margin-top: 0px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid hsla(0, 0%, 78%, 0.1);
  font-family: Magistralc, sans-serif;
  color: #3badff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-link-2 {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: "Droid Sans", sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  text-decoration: none;
  cursor: default;
}

.footer-link-2.address {
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0px;
  cursor: pointer;
}

.footer-link-2.address:hover {
  color: #3badff;
}

.footer-link-2.numbers {
  -webkit-transition: font-size 300ms ease, color 300ms ease;
  transition: font-size 300ms ease, color 300ms ease;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
}

.footer-link-2.numbers:hover {
  color: #3badff;
}

.footer-link-2.email {
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  cursor: pointer;
}

.footer-link-2.email:hover {
  color: #3badff;
}

.social-wrapper.foot {
  margin-top: 27px;
}

.social-wrapper.foot.inner-2 {
  display: none;
  padding-left: 20px;
}

.icon-4.fb-footer-link {
  margin-right: 0px;
  -webkit-transition: color 500ms ease;
  transition: color 500ms ease;
  font-family: "Fontawesome webfont 2", sans-serif;
  color: #fff;
  font-size: 25px;
  text-decoration: none;
}

.icon-4.fb-footer-link:hover {
  color: #dd2a7b;
}

.icon-4.fb-footer-link._2 {
  margin-right: 15px;
  -webkit-transition: color 500ms ease;
  transition: color 500ms ease;
  color: #fff;
}

.icon-4.fb-footer-link._2:hover {
  color: #3badff;
}

.icon-4.fb-footer-link._2._3:hover {
  color: #3badff;
}

.icon-4.fb-footer-link._2._3.header {
  margin-right: 0px;
}

.icon-4.fb-footer-link._2._3.header.cont-page {
  margin-right: 15px;
}

.icon-4.fb-footer-link._2.header {
  color: #3badff;
  font-size: 30px;
}

.icon-4.fb-footer-link._2.header:hover {
  color: #142e60;
}

.icon-4.fb-footer-link._3 {
  color: #fff;
  font-size: 35px;
}

.icon-4.fb-footer-link._3:hover {
  color: #ff4a4a;
}

.icon-4.fb-footer-link.header {
  color: #3badff;
  font-size: 30px;
}

.icon-4.fb-footer-link.header:hover {
  color: #142e60;
}

.button-1 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 230px;
  height: 50px;
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Magistralc, sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.button-1._2 {
  width: 200px;
  margin-top: 20px;
  -webkit-transition: border-color 300ms ease, background-color 300ms ease;
  transition: border-color 300ms ease, background-color 300ms ease;
  font-size: 14px;
}

.button-1._2:hover {
  border: 2px solid #3898ec;
  background-color: rgba(56, 152, 236, 0);
}

.button-1.main {
  z-index: 99;
  color: #3badff;
}

.button-1.sticky {
  /* margin-bottom: 10px; */
  margin-left: auto;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  color: #021c54;
}

.button-1.sticky.inner-1 {
  display: none;
}

.button-1.foot-btn {
  margin-top: 25px;
}

.button-text-b1 {
  position: relative;
  z-index: 10;
  color: #fff;
  font-size: 14px;
}

.button-text-b1.cta-btn-txt {
  color: #142e60;
}

.hover-on-button-b1 {
  transition: background-color 0.3s;
}

.link:hover .hover-on-button-b1 {
  background-color: rgba(59, 173, 255, 0.8);
}

.hover-out-button-b1 {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: block;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #3badff;
  border-radius: 0px;
  box-shadow: none;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

.hover-out-button-b1.cta-sec {
  border-color: #142e60;
}

.hover-on-button-b1 {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: block;
  border-radius: 0px;
  background-color: #3badff;
  box-shadow: none;
  -webkit-transform: scale3d(1none, 1none, 1none);
  transform: scale3d(1none, 1none, 1none);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.hover-on-button-b1.cta-btn {
  background-color: #142e60;
}

.thumnail {
  position: relative;
  width: 200px;
  height: 165px;
  background-color: #cbcbcb;
  /* background-image: url('../images/adult-doctors.jpg'); */
  background-position: 50% 50%;
  background-size: cover;
  color: #fff;
}

.arrow-tail-dot-1-l8 {
  width: 2px;
  height: 2px;
  margin-right: 2px;
  background-color: #fff;
}

.arrow-tail-dot-1-l8.dark._2 {
  display: none;
}

.text-l8 {
  margin-right: 7px;
  font-family: "Droid Sans", sans-serif;
  font-size: 14px;
}

.arrow-tail-dot-4-l8 {
  width: 2px;
  height: 2px;
  margin-right: 2px;
  background-color: #fff;
}

.arrow-tail-dot-4-l8.dark {
  background-color: #142e60;
}

.arrow-tail-dot-4-l8.dark.dropdown-list-2 {
  display: none;
}

.arrow-wrapper-l8 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.arrow-wrapper-l8.doclink {
  margin-right: 10px;
}

.arrow-tail-l8 {
  width: 40px;
  height: 2px;
  background-color: #fff;
}

.arrow-tail-l8.dark {
  background-color: #142e60;
}

.arrow-head-l8 {
  height: 30px;
  margin-left: -6px;
}

.arrow-head-l8.dark-arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.link-8 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 200px;
  margin-left: auto;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.link-8._2 {
  width: 220px;
  margin-top: auto;
  margin-right: auto;
  margin-left: 0px;
}

.link-8._2.news-page {
  color: #021c54;
  cursor: pointer;
}

.arrow-tail-dot-2-l8 {
  width: 2px;
  height: 2px;
  margin-right: 2px;
  background-color: #fff;
}

.arrow-tail-dot-2-l8.dark {
  background-color: #142e60;
}

.arrow-tail-dot-2-l8.dark._2 {
  display: none;
}

.arrow-tail-dot-3-l8 {
  width: 2px;
  height: 2px;
  margin-right: 2px;
  background-color: #fff;
}

.arrow-tail-dot-3-l8.dark {
  background-color: #142e60;
}

.arrow-tail-dot-3-l8.dark._2 {
  display: none;
}

.news-title {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  padding: 20px 10px 10px;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(16, 37, 76, 0)),
    color-stop(12%, rgba(16, 37, 76, 0.65)),
    to(#10254c)
  );
  background-image: linear-gradient(180deg, rgba(16, 37, 76, 0), rgba(16, 37, 76, 0.65) 12%, #10254c);
  font-family: Magistralc, sans-serif;
  font-weight: 700;
}

.heading-sm {
  max-width: 260px;
  min-height: 66px;
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: Magistralc, sans-serif;
  color: #fff;
  font-size: 24px;
  line-height: 33px;
}

.heading-sm.form-heading {
  max-width: none;
  margin-bottom: 20px;
  line-height: 25px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.heading-sm.doc-name {
  max-width: 100%;
  min-height: auto;
  margin-bottom: 0px;
  color: #142e60;
  font-weight: 700;
  text-align: center;
}

.heading-sm.doc-header {
  max-width: none;
  margin-bottom: 20px;
  color: #142e60;
  font-weight: 700;
  text-align: center;
}

.section-name {
  margin-bottom: 50px;
  font-family: Magistralc, sans-serif;
  color: #142e60;
  font-weight: 900;
  text-transform: uppercase;
}

.section-name._2 {
  color: #021c54;
  text-align: center;
}

.section-name._2.contacts-slinic-name {
  margin-top: 0px;
  margin-bottom: 0px;
}

.section-name._2.news-header {
  margin-bottom: 75px;
}

.section-name._2.news-name {
  margin-top: 40px;
  margin-bottom: 20px;
}

.section-name.carousel-sec-name {
  position: absolute;
  left: 0%;
  top: 50px;
  right: 0%;
  bottom: auto;
  margin-top: 0px;
  margin-bottom: 0px;
  text-align: center;
}

.txt-wrap {
  position: absolute;
  left: 0%;
  top: auto;
  right: auto;
  bottom: 0%;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 20px;
  padding-right: 15px;
  padding-left: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background-color: #142e60;
  color: #ddd;
  font-size: 16px;
  line-height: 25px;
  text-align: left;
}

.card-txt {
  margin-bottom: 30px;
}

.adult-grid {
  width: 100%;
  min-height: 550px;
  margin-right: auto;
  margin-left: auto;
  padding: 20px 10px;
  /* grid-auto-flow: column; */
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr auto;
}

.tile-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 20px 5px 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  font-family: Magistralc, sans-serif;
  color: #142e60;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.tile-wrap:hover {
  background-color: #142e60;
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.6);
  -webkit-transform: translate(0px, -5px);
  -ms-transform: translate(0px, -5px);
  transform: translate(0px, -5px);
  color: #fff;
}

.tile-icon {
  object-fit: contain;
  height: 60px;
}

.tile-icon._2 {
  padding-top: 15px;
}

.tile-title {
  border: 1px none #000;
  font-size: 16px;
  line-height: 16px;
  font-weight: 900;
}

.child-grid {
  width: 100%;
  min-height: 550px;
  margin-right: auto;
  margin-left: auto;
  padding: 20px 10px;
  grid-auto-flow: column;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  -ms-grid-rows: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
}

.modal-callback {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
}

.modal-callback.isActive {
  opacity: 1;
  display: flex;
}

.form {
  width: 400px;
  padding: 40px 30px;
}

.field-label {
  font-family: Magistralc, sans-serif;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 1.5px;
}

.field-label.black {
  margin-top: 20px;
  color: #021c54;
  font-weight: 700;
}

.field-label.error {
  display: inline-block;
  max-width: 300px;
  color: #021c54;
  font-weight: 700;
}

.text-field {
  margin-bottom: 20px;
  font-family: Magistralc, sans-serif;
  color: #021c54;
  font-weight: 700;
  letter-spacing: 1px;
}

.text-field.txt2 {
  margin-bottom: 10px;
}

.form-block {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 15px;
  background-color: #142e60;
}

.close-overlay {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
}

.close-overlay-btn {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 3;
  margin-top: 5px;
  margin-right: 5px;
  padding: 6px 10px;
  border-radius: 80px;
  background-color: #fff;
  -webkit-transition: color 400ms ease;
  transition: color 400ms ease;
  font-family: Magistralc, sans-serif;
  color: #142e60;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.close-overlay-btn:hover {
  color: #ed1c24;
}

.hero-pnumber {
  margin-right: 10px;
  letter-spacing: 2px;
}

.clinic-name {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: Magistralc, sans-serif;
  color: #fff;
  font-size: 24px;
  letter-spacing: 1px;
}

.numbers-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.numbers-wrap._2 {
  display: none;
}

.sticky-number {
  letter-spacing: 2.3px;
}

.image {
  max-width: 70px;
  max-height: 70px;
  margin-top: 0px;
}

.image.hero-logo {
  display: block;
  max-width: 80px;
  max-height: 80px;
  margin-top: 0px;
  margin-right: 20px;
}

.name-flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-family: "Droid Sans", sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.brand-wrap {
  position: relative;
  z-index: 99999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.text-block-5 {
  font-size: 14px;
}

.navbar {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  margin-top: 110px;
  padding-top: 5px;
  background-color: hsla(0, 0%, 86.7%, 0);
}

.nav-menu-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-left: 0px;
}

.dropdown-list-1 {
  overflow: hidden;
  background-color: #3badff;
}

.dropdown-list-1.w--open {
  left: -10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  width: max-content;
  padding-bottom: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #021c54;
}

.dropdown-list-2 {
  background-color: #3badff;
}

.dropdown-list-2.w--open {
  left: -192px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  width: 810px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #021c54;
}

.dropdown-list-2.child {
  left: -194px;
  overflow: hidden;
  width: 607px;
  padding-bottom: 10px;
}

.dropdown-list-2.child.w--open {
  left: 10px;
}

.tagline {
  margin-bottom: 10px;
  font-family: "Droid Sans", sans-serif;
  color: var(--color-white);
  font-size: 20px;
}

.brand-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.brand-3.w--current {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.button-2 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 230px;
  height: 50px;
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Magistralc, sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.button-2.main {
  margin-left: 0px;
  color: #142e60;
}

.button-2.main.docs-card-btn {
  margin: 20px auto;
}

.button-2.main.docs-page-btn {
  margin: 0px auto;
}

.button-2.main._2 {
  margin-left: 0;
}

.icon-5 {
  border-radius: 20px;
  background-color: hsla(0, 0%, 100%, 0.65);
  color: #021c54;
}

.icon-6 {
  border-radius: 20px;
  background-color: hsla(0, 0%, 100%, 0.65);
  color: #021c54;
}

.grid {
  width: 100%;
  grid-auto-flow: row;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: -webkit-max-content -webkit-max-content -webkit-max-content;
  -ms-grid-rows: max-content max-content max-content;
  grid-template-rows: -webkit-max-content -webkit-max-content -webkit-max-content;
  grid-template-rows: max-content max-content max-content;
}

.service-tile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background-color: #3badff;
  -webkit-transition: background-color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955),
    color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: background-color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955),
    color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  font-family: "Droid Sans", sans-serif;
  color: #142e60;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.service-tile:hover {
  background-color: #142e60;
  color: #fff;
}

.footer-ico {
  width: 30px;
  margin-right: 15px;
}

.flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.to-top {
  position: fixed;
  left: auto;
  top: auto;
  right: 2vw;
  bottom: 2vw;
  z-index: 1000;
  padding: 30px;
  border: 1px none #021c54;
  border-radius: 50px;
  background-color: rgba(59, 173, 255, 0);
  -webkit-transition: background-color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955),
    color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: background-color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955),
    color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  color: #3badff;
  text-decoration: none;
}

.to-top:hover {
  background-color: hsla(0, 0%, 100%, 0);
  color: #142e60;
}

.top-icon {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  border-radius: 20px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  font-size: 40px;
  font-weight: 700;
}

.slide-3 {
  background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(8, 19, 39, 0.75)),
      to(rgba(8, 19, 39, 0.75))
    ),
    url("../images/doctor-1149149_1920.jpg");
  background-image: linear-gradient(180deg, rgba(8, 19, 39, 0.75), rgba(8, 19, 39, 0.75)),
    url("../images/doctor-1149149_1920.jpg");
  background-position: 0px 0px, 100% 50%;
  background-size: auto, cover;
}

.success-window {
  width: 400px;
  padding: 40px 30px;
}

.success-window.success {
  background-color: #fff;
}

.w-dropdown-list {
  background-color: rgb(12, 53, 138);
}

.error-icon {
  height: 40px;
  margin-right: 5px;
  margin-bottom: 10px;
}

.w-input.invalid {
  background: #ff8e8e;
}

.error-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.contacts {
  position: -webkit-sticky;
  position: sticky;
  /* height: 10vh; */
  background-color: #fff;
}

.row-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.row-wrap.hours {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.row-wrap.hours.mob {
  padding-bottom: 5px;
}

.row-wrap.right-align {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.contacts-icon {
  margin-right: 3px;
}

.phone-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.divider {
  width: 1.5px;
  height: 20px;
  margin-right: 5px;
  background-color: #021c54;
}

.main-screen-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.image-2 {
  padding: 10px;
  border-radius: 60px;
  background-color: #fff;
}

.serv-image {
  width: 100px;
  height: 100px;
}

.image-2.tab-image {
  margin-right: 15px;
  padding: 5px;
}

.image-2.tab-image2 {
  margin-left: 15px;
  padding: 5px;
}

.service-header {
  padding-top: 20px;
  padding-bottom: 10px;
  font-size: 18px;
}

.service-txt {
  color: #fff;
  font-weight: 400;
  margin-bottom: 30px;
}

.hero-title {
  max-width: 85%;
  margin-top: 140px;
  margin-bottom: 20px;
  font-family: "Droid Sans", sans-serif;
  color: #fff;
  font-size: 46px;
  line-height: 55px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.no-gradient .hero-title,
.no-gradient .heading,
.no-gradient .tagline,
.no-gradient .text-dropdown,
.no-gradient .nav-link {
  color: #142e60;
}

.no-gradient .burger-btn > div {
  background-color: #142e60;
}

.no-gradient .button-text-b1 {
  color: #142e60 !important;
}

.grid-2 {
  width: 100%;
  padding-top: 10px;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  grid-column-gap: 5px;
  grid-row-gap: 10px;
  -ms-grid-columns: 1fr 1fr 0.25fr;
  grid-template-columns: 1fr 1fr 0.25fr;
  -ms-grid-rows: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  font-family: Magistralc, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.slider-wrap {
  position: relative;
}

.pagination-hover {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 0px;
  height: 85vh;
  margin-top: 0px;
  margin-right: 5vw;
  margin-bottom: 15px;
  padding-top: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.bubble {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 26px;
  height: 26px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 20px;
}

.devider {
  width: 1px;
  height: 70px;
  background-color: #fff;
}

.pagination-hover > div:last-child {
  display: none;
}

.active {
  z-index: 4;
  display: none;
  width: 5px;
  height: 5px;
  border-radius: 300px;
  background-color: #3badff;
}

.active-wrap {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1px;
  height: 85vh;
  margin-top: 0px;
  margin-right: 5vw;
  margin-bottom: 15px;
  padding-top: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 26px;
  height: 26px;
  margin-top: 35px;
  margin-bottom: 35px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.l-btn-1 {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 250px;
  margin-right: 0px;
  padding: 20px 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background-color: #3badff;
  -webkit-transition: border-radius 400ms cubic-bezier(0.455, 0.03, 0.515, 0.955),
    background-color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: border-radius 400ms cubic-bezier(0.455, 0.03, 0.515, 0.955),
    background-color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  font-family: "Droid Sans", sans-serif;
  color: #142e60;
  font-size: 16px;
  line-height: 40px;
  font-weight: 700;
  text-decoration: none;
}

.l-btn-1:hover {
  background-color: #142e60;
  color: #3badff;
}

.l-btn-1.w--current {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  background-color: #142e60;
  color: #3badff;
}

.l-btn-1.w--open {
  position: static;
}

.r-btn-1 {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 250px;
  margin-left: 0px;
  padding: 20px 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background-color: #3badff;
  -webkit-transition: border-radius 400ms cubic-bezier(0.455, 0.03, 0.515, 0.955),
    background-color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: border-radius 400ms cubic-bezier(0.455, 0.03, 0.515, 0.955),
    background-color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  font-family: "Droid Sans", sans-serif;
  color: #142e60;
  font-size: 16px;
  line-height: 40px;
  font-weight: 700;
  text-decoration: none;
}

.r-btn-1:hover {
  background-color: #142e60;
  color: #3badff;
}

.r-btn-1.w--current {
  padding-bottom: 20px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  background-color: #142e60;
  color: #3badff;
}

.tabs-wrap {
  position: relative;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto -webkit-max-content;
  -ms-grid-rows: auto max-content;
  grid-template-rows: auto -webkit-max-content;
  grid-template-rows: auto max-content;
}

.tab-content-wrap {
  display: block;
  overflow: hidden;
  height: auto;
  background-color: #ddd;
}

.service-tab-btn {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 250px;
  margin-right: 0px;
  padding: 20px 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background-color: #3badff;
  -webkit-transition: border-radius 400ms cubic-bezier(0.455, 0.03, 0.515, 0.955),
    background-color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: border-radius 400ms cubic-bezier(0.455, 0.03, 0.515, 0.955),
    background-color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  font-family: "Droid Sans", sans-serif;
  color: #142e60;
  font-size: 16px;
  line-height: 40px;
  font-weight: 700;
  text-decoration: none;
}

.service-tab-btn:hover {
  background-color: #142e60;
  color: #3badff;
}

.service-tab-btn.w--current {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  background-color: #142e60;
  color: #3badff;
}

.service-tab-btn.w--open {
  position: static;
}

.tab-name {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Magistralc, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.btn-wrap {
  position: relative;
  height: 95px;
  color: #142e60;
}

.btn-wrap:hover {
  color: #3badff;
}

.service-tab-btn2 {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 250px;
  margin-right: 0px;
  padding: 20px 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background-color: transparent;
  -webkit-transition: border-radius 400ms cubic-bezier(0.455, 0.03, 0.515, 0.955),
    background-color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: border-radius 400ms cubic-bezier(0.455, 0.03, 0.515, 0.955),
    background-color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  font-family: "Droid Sans", sans-serif;
  color: #142e60;
  font-size: 16px;
  line-height: 40px;
  font-weight: 700;
  text-decoration: none;
}

.service-tab-btn2:hover {
  color: #3badff;
}

.service-tab-btn2.w--current {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  background-color: #142e60;
  color: #3badff;
}

.service-tab-btn2.w--open {
  position: static;
}

.left-btn-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 110px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.right-btn-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 110px;
}

.l-btn-2 {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 250px;
  margin-right: 0px;
  padding: 20px 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background-color: #021c54;
  -webkit-transition: border-radius 400ms cubic-bezier(0.455, 0.03, 0.515, 0.955),
    background-color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: border-radius 400ms cubic-bezier(0.455, 0.03, 0.515, 0.955),
    background-color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  font-family: "Droid Sans", sans-serif;
  color: #3badff;
  font-size: 16px;
  line-height: 40px;
  font-weight: 700;
  text-decoration: none;
}

.l-btn-2:hover {
  background-color: #142e60;
  color: #3badff;
}

.l-btn-2.w--current {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  background-color: #142e60;
  color: #3badff;
}

.l-btn-2.w--open {
  position: static;
}

.l-btn-3 {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 250px;
  margin-right: 0px;
  padding: 20px 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background-color: #3badff;
  -webkit-transition: border-radius 400ms cubic-bezier(0.455, 0.03, 0.515, 0.955),
    background-color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: border-radius 400ms cubic-bezier(0.455, 0.03, 0.515, 0.955),
    background-color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  font-family: "Droid Sans", sans-serif;
  color: #142e60;
  font-size: 16px;
  line-height: 40px;
  font-weight: 700;
  text-decoration: none;
}

.l-btn-3:hover {
  background-color: #142e60;
  color: #3badff;
}

.l-btn-3:focus {
  background-color: #021c54;
  color: #3badff;
}

.l-btn-3.w--current {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  background-color: #142e60;
  color: #3badff;
}

.l-btn-3.w--open {
  position: static;
}

.r-btn-2 {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 250px;
  margin-left: 0px;
  padding: 20px 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background-color: #021c54;
  -webkit-transition: border-radius 400ms cubic-bezier(0.455, 0.03, 0.515, 0.955),
    background-color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: border-radius 400ms cubic-bezier(0.455, 0.03, 0.515, 0.955),
    background-color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  font-family: "Droid Sans", sans-serif;
  color: #3badff;
  font-size: 16px;
  line-height: 40px;
  font-weight: 700;
  text-decoration: none;
}

.r-btn-2:hover {
  background-color: #142e60;
  color: #3badff;
}

.r-btn-2.w--current {
  padding-bottom: 20px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  background-color: #142e60;
  color: #3badff;
}

.r-btn-3 {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 250px;
  margin-left: 0px;
  padding: 20px 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background-color: #3badff;
  -webkit-transition: border-radius 400ms cubic-bezier(0.455, 0.03, 0.515, 0.955),
    background-color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: border-radius 400ms cubic-bezier(0.455, 0.03, 0.515, 0.955),
    background-color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955), color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  font-family: "Droid Sans", sans-serif;
  color: #142e60;
  font-size: 16px;
  line-height: 40px;
  font-weight: 700;
  text-decoration: none;
}

.r-btn-3:hover {
  background-color: #142e60;
  color: #3badff;
}

.r-btn-3.w--current {
  padding-bottom: 20px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  background-color: #142e60;
  color: #3badff;
}

.drop-wrap {
  position: relative;
  display: inline-block;
}

.close-drop-mob {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 2;
  display: none;
  height: 40px;
}

.open-drop-mob {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 3;
  display: none;
  height: 40px;
}

.drop-content-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  width: auto;
  /* height: 280px; */
}

.drop-content-wrap.services-drop {
  overflow: visible;
  height: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.drop-content-wrap._2 {
  height: 210px;
}

.dropdown-list-3 {
  background-color: #3badff;
}

.dropdown-list-3.w--open {
  left: 9px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  width: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #021c54;
}

.dropdown-list-3.child {
  left: -194px;
  overflow: hidden;
  width: 250px;
  padding-bottom: 10px;
}

.dropdown-list-3.child.w--open {
  left: 10px;
}

.services-drop-guesture {
  position: absolute;
  left: 49%;
  top: 67%;
  right: auto;
  bottom: auto;
  z-index: 3;
  margin-right: 0px;
  margin-left: 0px;
  font-size: 30px;
}

.sticky-nav-wrap {
  width: 100%;
  max-width: 800px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  padding-right: 22px;
}

.sticky-nav-wrap .w-dropdown-toggle {
  padding-right: 20px;
}

.sticky-nav-wrap .w-icon-dropdown-toggle {
  margin-right: 0;
}

.sticky-nav-wrap .nav-link {
  margin-right: 0;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  letter-spacing: 0.2px;
}

.sticky-nav-wrap .text-dropdown {
  letter-spacing: 0.5px;
}

.card {
  position: relative;
  display: -ms-grid;
  display: grid;
  width: 100%;
  padding: 20px 10px 30px;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 3fr 1fr 0.5fr 0.5fr 0.5fr;
  grid-template-rows: 3fr 1fr 0.5fr 0.5fr 0.5fr;
  border-radius: 10px;
  background-color: #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: #021c54;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
}

.card:hover {
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.35);
  -webkit-transform: translate(-5px, -10px);
  -ms-transform: translate(-5px, -10px);
  transform: translate(-5px, -10px);
}

.doctors-grid {
  width: 100%;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.image-3,
.card .w-inline-block > img {
  display: block;
  width: 250px;
  height: 250px;
  z-index: 2;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
  border-radius: 200px;
  object-fit: cover;
  object-position: top;
}

.doc-spec {
  margin: 10px 0 20px;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #3badff;
  color: #fff;
  font-size: 16px;
  font-weight: normal;
}

.exp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 2px;
  border-color: #3badff;
  border-bottom-left-radius: 10px;
  color: #3badff;
  line-height: 17px;
  font-weight: 700;
  text-align: left;
}

.without-price,
.without-experience {
  grid-column-start: span 2 !important;
  grid-column-end: span 2 !important;
  grid-row-start: span 1 !important;
  grid-row-end: span 1 !important;
  background-color: #3badff;
  color: #fff;
}

.exp._2 {
  border-bottom-right-radius: 10px;
  background-color: #3badff;
  color: #fff;
}

.without-experience {
  border-bottom-left-radius: 10px;
}

/* .without-doctors-level {
  grid-row: 5 !important;
} */

.without-doctors-level.without-experience {
  border-radius: 10px;
}

.years {
  margin-right: 10px;
  font-size: 28px;
  line-height: 1.2em;
}

.exp.without-doctors-level {
  border-top-left-radius: 10px;
}

.exp.without-doctors-level.without-price {
  border-radius: 10px;
}

.price.without-doctors-level {
  border-top-right-radius: 10px;
}

.years.table-price {
  margin-right: 5px;
  line-height: 1em;
}

.years.table-price + span {
  margin-top: 5px;
}

.years._2 {
  font-size: 28px;
}

.years-text {
  display: flex;
  flex-direction: column;
}

.price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom-right-radius: 10px;
  background-color: #3badff;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}

.doc-infolink {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  margin-top: 15px;
  margin-right: 15px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: #142e60;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
}

.doc-infolink:hover {
  color: #3badff;
}

.card-name-link {
  text-decoration: none;
}

.cards-cont-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 15vh;
  padding-bottom: 10vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cards-cont-wrap._2 {
  padding-bottom: 0vh;
}

.doc-cat-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.doc-cat-top > h3 {
  margin: 0;
}

.main-btn {
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #3badff;
  color: #fff;
  font-size: 16px;
  margin: 0;
  transition: background 0.3s;
}

.main-btn:hover {
  background: #142e60;
}

.link-9 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 172px;
  margin-top: 0px;
  margin-left: auto;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Montserrat, sans-serif;
  color: #142e60;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
}

.link-9.docbacklink {
  width: 100px;
}

.link-block-2 {
  padding-top: 10px;
  padding-bottom: 20px;
  padding-left: 20px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  text-decoration: none;
}

.link-block-2.docpage-link {
  margin-top: 13vh;
  margin-left: 11%;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 0px;
}

.div-block-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 2px solid #3badff;
  border-right: 2px solid #3badff;
  border-left: 2px solid #3badff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.doc-category {
  font-family: Magistralc, sans-serif;
  font-weight: 700;
}

.left-infocol {
  display: -ms-grid;
  display: grid;
  width: 50%;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: -webkit-max-content 70px 70px auto;
  -ms-grid-rows: max-content 70px 70px auto;
  grid-template-rows: -webkit-max-content 70px 70px auto;
  grid-template-rows: max-content 70px 70px auto;
  font-size: 16px;
  text-align: center;
}

.right-infocol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.doc-photo {
  max-width: 60%;
  border-radius: 10px;
  overflow: hidden;
}

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

.doc-infowrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 60%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.docs-book-container {
  margin-top: 30px;
}

.doc-exp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom-left-radius: 10px;
  color: #3badff;
  line-height: 17px;
  font-weight: 700;
  text-align: left;
}

.doc-exp.doc-p {
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #3badff;
  color: #fff;
  padding: 5px 0;
}

.doc-exp.doc-p.without-level {
  border-radius: 10px;
}

.doc-exp.doc-p.table-price {
  width: auto;
  height: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 0px;
}

.doc-exp.doc-p.table-price.lighter {
  background-color: #5fbafc;
}

.doc-categorywrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 2px;
  border-color: #3badff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-weight: 700;
  text-align: right;
  font-size: 16px;
}

.doc-categorywrap.without-exp {
  border-radius: 10px;
}

.list {
  font-size: 16px;
}

.text-span {
  font-size: 20px;
  font-weight: 700;
}

.study-years {
  min-width: 100px;
}

.list-item {
  margin-bottom: 10px;
}

.last-infoblock {
  width: 100%;
  padding-bottom: 20px;
}

.infoblock {
  padding-bottom: 40px;
}

.dropdown-list-4 {
  position: static;
}

.dropdown-list-4.w--open {
  padding-top: 20px;
  padding-bottom: 10px;
  background-color: transparent;
}

.mobile-info-drop {
  position: static;
  display: none;
}

.dropdown-toggle-2 {
  width: 100%;
  border-radius: 10px;
  background-color: #142e60;
  font-family: Magistralc, sans-serif;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.dropdown-toggle-2.w--open {
  background-color: #3badff;
  text-shadow: 0 5px 6px rgba(0, 0, 0, 0.2);
}

.table-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 2em;
}

.table-txt.grey {
  height: 100%;
  background-color: #ddd;
}

.table-txt.grey._1 {
  border-top-left-radius: 10px;
}

.serv-table {
  overflow: hidden;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  grid-auto-flow: column;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  -ms-grid-rows: auto auto auto auto;
  grid-template-rows: auto auto auto auto;
  border-style: solid;
  border-width: 2px;
  border-color: #3badff;
  border-radius: 10px;
}

.serv-table__item {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.serv-table__item-left-col {
  width: 70%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 2em;
  font-weight: 700;
  font-size: 14px;
  margin: 0;
}

.serv-table__item-right-col {
  width: 30%;
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 0px;
  color: #ffffff;
  line-height: 17px;
  font-weight: 700;
  background-color: #3badff;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
}

.serv-table__item:nth-of-type(odd) .serv-table__item-left-col {
  background-color: #ddd;
}

.serv-table__item:nth-of-type(even) .serv-table__item-right-col {
  background-color: #5fbafc;
}

.serv-table__item.three-col .serv-table__item-left-col {
  width: 60%;
}

.serv-table__item.three-col .serv-table__item-right-col {
  width: 20%;
}

.serv-table__item.three-col .table-dropd {
  width: 20%;
}

@media screen and (max-width: 767px) {
  .doc-cat-top {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .doc-cat-top > h3 {
    text-align: center;
  }

  .main-btn {
    text-align: center;
  }

  .w-slide__desktop {
    display: none;
  }

  .w-slide__mobile {
    display: block;
  }

  .serv-table__item.three-col .serv-table__item-left-col {
    width: 50%;
  }

  .serv-table__item.three-col .serv-table__item-right-col {
    width: 20%;
  }

  .serv-table__item.three-col .table-dropd {
    width: 30%;
  }

  .serv-table__item-right-col {
    height: auto;
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.serv-table__item.three-col .years {
  font-size: 28px;
  line-height: 1em;
}

.serv-table__item {
  align-items: initial;
}

.serv-table.mob-inv {
  -ms-grid-columns: 60% 20% 20%;
  grid-template-columns: 60% 20% 20%;
  /* -ms-grid-rows: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr; */
}

.serv-table.mob-inv._2 {
  display: block;
  grid-template-columns: 100%;
}

.serv-table.mob-inv2 {
  display: block;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  /* -ms-grid-rows: 1fr;
    grid-template-rows: 1fr; */
}

.serv-table.mob-inv2.serv {
  overflow: hidden;
}

.text-block-7 {
  margin-right: auto;
  margin-left: auto;
  line-height: 1.5em;
  text-align: center;
  padding: 10px 0;
}

.iframe-link {
  display: block;
  width: 100%;
  height: 500px;
  margin: 50px 0 100px;
  border-radius: 10px;
  overflow: hidden;
}

.contact-page-section {
  min-height: 100vh;
  /*  background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(hsla(0, 0%, 100%, 0.6)),
      to(hsla(0, 0%, 100%, 0.6))
    ),
    url("../images/contacts.jpg");
  background-image: linear-gradient(
      180deg,
      hsla(0, 0%, 100%, 0.6),
      hsla(0, 0%, 100%, 0.6)
    ),
    url("../images/contacts.jpg");
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
  background-attachment: scroll, fixed;*/
  position: relative;
}

.contact-page-section::before {
  content: "";
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0.6), hsla(0, 0%, 100%, 0.6));
  z-index: 1;
}

.contact-page-section > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.contact-page-section__mobile {
  display: none;
}

.map-wrapper {
  width: 60%;
  height: 50vh;
  text-decoration: none;
}

.contacts-grid {
  display: -ms-grid;
  display: grid;
  margin-top: 50px;
  margin-bottom: 50px;
  grid-auto-columns: 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  -ms-grid-rows: auto auto auto auto auto auto;
  grid-template-rows: auto auto auto auto auto auto;
}

.contact-info-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.contact-type-name {
  font-family: Magistralc, sans-serif;
  color: #021c54;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0px;
}

.contacts-link {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: #021c54;
  font-size: 16px;
  text-decoration: none;
}

.contacts-link:hover {
  color: #159dff;
}

.contacts-info-wrap {
  width: 40%;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 25px;
  border-left: 2px solid #757575;
}

.map {
  width: 95%;
  height: 100%;
  border-radius: 10px;
  background-image: url("../images/map.png");
  background-position: 50% 50%;
  background-size: auto;
  background-repeat: no-repeat;
  box-shadow: 4px 4px 6px 1px rgba(0, 0, 0, 0.35);
}

.text-block-8 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  opacity: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.social-wrap-contacts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.news-tile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10vh;
  padding: 30px 15px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 5px 1px rgba(0, 0, 0, 0.25);
}

.news-image-link {
  width: 50%;
  height: 300px;
  border-radius: 10px;
  background-position: 50% 50%;
  background-size: cover;
  box-shadow: none;
}

.news-preview-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  padding-left: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.news-heading {
  margin-top: 0px;
  margin: 20px;
  font-family: Magistralc, sans-serif;
}

.link-block-3 {
  color: #021c54;
  text-decoration: none;
}

.doctor-link {
  -webkit-transition: opacity 500ms ease;
  transition: opacity 500ms ease;
  color: #021c54;
  font-weight: 700;
  text-decoration: none;
}

.doctor-link:hover {
  color: #021c54;
}

.color-header {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 350px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #021c54;
}

.article-wrap {
  position: relative;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  z-index: 2;
  width: 60%;
  height: auto;
  max-width: 1160px;
  margin-right: auto;
  margin-bottom: 10vh;
  margin-left: auto;
}

.article-wrapper {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-top: 150px;
}

.article-image {
  width: 100%;
  height: 50vh;
  border-radius: 10px;
  /* background-image: url('../images/adult-doctors.jpg'); */
  background-position: 50% 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.doctors-grid2 {
  width: 100%;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.table-dropd {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.table-dropd.grey {
  background-color: #ddd;
}

.table-dropd.grey._1 {
  border-top-right-radius: 10px;
}

.dropdown-list-5 {
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
}

.dropdown-list-5.w--open {
  top: 60px;
  width: 450px;
  padding-top: 5px;
  background-color: #142e60;
  color: #fff;
}

.dropdown-list-5.white {
  background-color: #fff;
}

.dropdown-list-5.white.w--open {
  padding-top: 5px;
  background-color: #142e60;
  color: #fff;
}

.dropdown-toggle-3 {
  width: 100%;
  padding-left: 40px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.dropdown-toggle-3:hover {
  background-color: #142e60;
  color: #fff;
}

.dropdown-toggle-3.w--open {
  background-color: #142e60;
  color: #fff;
}

.icon-7 {
  margin-right: 40px;
}

._2exp-txt {
  font-size: 18px;
}

.lang-flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  margin-left: 150px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.lang-flex-wrap.sticky-lang {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 10px;
}

.lang-flex-wrap.mobile-lang {
  display: none;
}

.lang-flex-wrap.main-screen-lang {
  position: absolute;
  left: auto;
  top: 25px;
  right: 0%;
  bottom: auto;
  width: 100px;
  margin-left: 20px;
}

.language-chooser > li {
  display: block;
  list-style: none;
  position: relative;
}

.language-chooser li.active {
  background: none;
  width: auto;
  height: auto;
}

.language-chooser {
  display: flex;
  padding: 0;
  margin: 0;
}

.language-chooser > li:first-child {
  padding-right: 15px;
}

.language-chooser > li:last-child {
  padding-left: 15px;
}

.language-chooser > li:first-child::after {
  content: "";
  width: 2px;
  height: 20px;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
}

.language-chooser a,
.lang-link {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: Magistralc, sans-serif;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.language-chooser a:hover,
.lang-link:hover {
  color: #3badff;
}

.language-chooser li.active a,
.lang-link.active-lang {
  color: #3badff !important;
  pointer-events: none;
}

.separator {
  width: 2px;
  height: 20px;
  margin-right: 15px;
  margin-left: 15px;
  background-color: #fff;
}

@media screen and (max-width: 991px) {
  .footer-link.hero-link {
    margin-right: 0px;
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .footer-link.hero-link.mob {
    margin-right: 0px;
    font-size: 12px;
  }

  .footer-link.address {
    font-size: 12px;
  }

  .footer-link.sticky-pnumber {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 14px;
  }

  .container {
    max-width: none;
  }

  .container.nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .container.nav-1 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .container.doctor-infocontainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .container.contacts-page-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 1;
  }

  .left-arrow {
    left: -24vw;
  }

  .right-arrow {
    right: -24vw;
  }

  .call-to-action {
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(hsla(0, 0%, 100%, 0.35)),
        to(hsla(0, 0%, 100%, 0.35))
      ),
      url("../images/LOGO-color.png"), url("../images/hospital.jpg");
    background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0.35), hsla(0, 0%, 100%, 0.35)),
      url("../images/LOGO-color.png"), url("../images/hospital.jpg");
    background-position: 0px 0px, 90% 100%, 50% 50%;
    background-size: auto, contain, cover;
    background-repeat: repeat, no-repeat, repeat;
    background-attachment: scroll, scroll, fixed;
  }

  .cards-section {
    padding-top: 20px;
  }

  .cards-grid-container {
    grid-column-gap: 20px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: -webkit-max-content -webkit-max-content auto;
    -ms-grid-rows: max-content max-content auto;
    grid-template-rows: -webkit-max-content -webkit-max-content auto;
    grid-template-rows: max-content max-content auto;
  }

  .sticky-navbar {
    display: block;
    opacity: 1;
  }

  .nav-link {
    left: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 22px;
    background-color: #021c54;
  }

  .sticky-nav-wrap .nav-link {
    padding-left: 22px;
    letter-spacing: 1px;
  }

  .nav-link.last {
    background-color: #021c54;
  }

  .brand-2.w--current {
    padding-top: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .dropdown-toggle {
    left: auto;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .dropdown-toggle:hover {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  .dropdown-toggle._2 {
    width: 100%;
    padding-left: 20px;
  }

  .dropdown-toggle._2.w--open {
    width: 100%;
  }

  .burger-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    padding: 40px 0px 40px 20px;
    background-color: hsla(0, 0%, 100%, 0);
  }

  .menu-button {
    display: block;
    margin-left: auto;
    padding: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
  }

  .menu-button.w--open {
    padding: 0px;
    background-color: #021c54;
  }

  .menu-button._1.w--open {
    background-color: rgba(2, 28, 84, 0);
  }

  .left-arrow-2 {
    display: none;
  }

  .right-arrow-2 {
    display: none;
  }

  .nav-menu {
    height: 80vh;
    background-color: transparent;
  }

  .slide-nav-2 {
    left: 0px;
    top: auto;
    width: 100%;
    height: 50px;
    margin-right: 0vw;
    margin-bottom: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    color: #021c54;
  }

  .schedule {
    font-size: 12px;
  }

  .footer-link-2.email {
    font-size: 14px;
  }

  .social-wrapper.foot.inner-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0px;
    padding-top: 27px;
    padding-bottom: 15px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #021c54;
  }

  .icon-4.fb-footer-link._2._3.header {
    font-size: 25px;
  }

  .icon-4.fb-footer-link._3.header {
    font-size: 25px;
  }

  .button-1.sticky {
    margin-right: auto;
  }

  .adult-grid {
    width: 740px;
    margin-right: auto;
    margin-left: auto;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    -ms-grid-rows: 1fr 1fr 1fr auto auto;
    grid-template-rows: 1fr 1fr 1fr auto auto;
  }

  .child-grid {
    width: 740px;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    -ms-grid-rows: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }

  .dropdown-col {
    width: auto;
  }

  .hero-pnumber {
    font-size: 12px;
    letter-spacing: 1.13px;
  }

  .clinic-name {
    display: block;
  }

  .numbers-wrap {
    display: none;
    margin-right: auto;
    margin-left: auto;
    -webkit-transform: scale3d(1none, 1none, 1none);
    transform: scale3d(1none, 1none, 1none);
  }

  .numbers-wrap._2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    padding-left: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .sticky-number {
    letter-spacing: 1.6px;
  }

  .image {
    height: auto;
    max-width: 60px;
    margin-top: 0px;
  }

  .image.hero-logo {
    display: block;
  }

  .name-flex-wrap {
    display: none;
  }

  .brand-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .num-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .nav-menu-1 {
    height: 70vh;
    background-color: transparent;
  }

  .dropdown-list-1 {
    width: 100%;
  }

  .dropdown-list-1.w--open {
    left: auto;
    width: 100vw;
  }

  .dropdown-list-2 {
    width: 100%;
  }

  .dropdown-list-2.w--open {
    left: auto;
    width: 100vw;
  }

  .dropdown-list-2.child {
    width: 100%;
  }

  .grid {
    grid-auto-flow: column;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-areas: ".";
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-rows: max-content 10px auto;
    grid-template-rows: -webkit-max-content auto;
    grid-template-rows: max-content auto;
  }

  .service-tile {
    padding-right: 10px;
    padding-left: 10px;
  }

  .service-header {
    font-size: 18px;
  }

  .hero-title {
    font-size: 42px;
    line-height: 50px;
  }

  .grid-2 {
    padding-top: 5px;
    -ms-grid-columns: 1fr 1fr 0.3fr;
    grid-template-columns: 1fr 1fr 0.3fr;
  }

  .pagination-hover {
    left: 0%;
    top: auto;
    right: 0%;
    bottom: 0%;
    width: 100%;
    height: 50px;
    margin-right: 0vw;
    margin-bottom: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .devider {
    width: 70px;
    height: 1px;
  }

  .active-wrap {
    display: none;
  }

  .drop-wrap {
    display: block;
    background-color: #021c54;
  }

  .close-drop-mob {
    display: block;
    height: 50px;
  }

  .open-drop-mob {
    display: block;
    height: 50px;
  }

  .drop-content-wrap.services-drop {
    padding-left: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .dropdown-list-3 {
    width: 100%;
  }

  .dropdown-list-3.w--open {
    left: auto;
    width: 100vw;
  }

  .dropdown-list-3.child {
    width: 100%;
    height: 250px;
  }

  .dropdown-list-3.child.w--open {
    position: absolute;
    height: auto;
  }

  .sticky-nav-wrap {
    height: 90vh;
    display: block;
    padding-right: 0;
  }

  .sticky-nav-wrap .w-icon-dropdown-toggle {
    margin-right: 20px;
  }

  .doctors-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .link-block-2.docpage-link {
    margin-left: 30vw;
  }

  .div-block {
    height: 100%;
  }

  .left-infocol {
    margin-bottom: 20px;
  }

  .right-infocol {
    width: 100%;
  }

  .doc-photo {
    max-width: 80%;
  }

  .doc-infowrap {
    width: 80%;
  }

  .contact-page-section {
    height: auto;
  }

  .map-wrapper {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .contacts-grid {
    margin-bottom: 25px;
  }

  .contacts-info-wrap {
    width: 100%;
    padding-left: 0px;
    border-left-style: none;
  }

  .map {
    width: 100%;
    height: 300px;
  }

  .text-block-8 {
    opacity: 1;
  }

  .article-wrap {
    width: 75%;
  }

  .doctors-grid2 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .dropdown-toggle-3 {
    padding-left: 15px;
  }

  .icon-7 {
    margin-right: 30px;
  }

  .lang-flex-wrap.sticky-lang {
    display: none;
  }

  .lang-flex-wrap.mobile-lang {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-left: 0px;
    padding-left: 17px;
    background-color: #021c54;
  }

  .lang-flex-wrap.main-screen-lang {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  /* .slider {
    height: 568px;
  } */

  .footer-link.hero-link {
    font-size: 14px;
  }

  .footer-link.hero-link.mob {
    font-size: 13px;
  }

  .footer-link.address {
    font-size: 13px;
  }

  .container.nav {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .container.doctor-infocontainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .container.contacts-page-container {
    margin-top: 10vh;
  }

  .container.news-container {
    margin-top: 35vh;
  }

  .container.tetst-table-cont {
    padding-top: 10vh;
  }

  .left-arrow {
    left: 15px;
  }

  .right-arrow {
    right: 15px;
  }

  .call-to-action {
    padding: 40px 20px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(null), to(null)),
      url("../images/LOGO-color.png"), url("../images/hospital.jpg");
    background-image: linear-gradient(180deg, null, null), url("../images/LOGO-color.png"),
      url("../images/hospital.jpg");
    background-position: 0px 0px, 90% 100%, 100% 50%;
  }

  .cards-section {
    padding: 40px 20px;
  }

  .cards-grid-container {
    max-width: none;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
  }

  .cards-image-mask {
    top: 5px;
    right: 5px;
  }

  .slide-1 {
    background-position: 60% 50%;
    background-repeat: no-repeat;
  }

  .sticky-navbar {
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: auto;
    height: 100px;
  }

  .dropdown-link {
    min-width: 100px;
    color: #ddd;
    font-size: 14px;
  }

  .burger-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .menu-button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100px;
  }

  .icon.scroll-gesture {
    display: block;
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .heading {
    margin-top: 10px;
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 1px;
  }

  .schedule {
    font-size: 14px;
  }

  .cta-txt-wrap {
    width: 100%;
  }

  .heading-2.cta-head {
    max-width: 400px;
  }

  .footer-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    text-align: left;
  }

  .footer-col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    text-align: center;
  }

  .footer-col._3 {
    text-align: center;
  }

  .icon-4.fb-footer-link._2._3.header {
    margin-right: 15px;
  }

  .button-1 {
    margin-right: auto;
    margin-left: auto;
  }

  .link-8 {
    margin-right: auto;
    margin-left: auto;
  }

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

  .heading-sm {
    max-width: 130px;
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 25px;
  }

  .heading-sm.doc-name {
    max-width: 100%;
    font-size: 24px;
    margin: 10px 0;
  }

  .heading-sm.doc-header {
    display: none;
    max-width: 100%;
    font-size: 24px;
  }

  .section-name {
    font-size: 33px;
    line-height: 42px;
  }

  .section-name._2.news-header {
    margin-bottom: 50px;
  }

  .adult-grid {
    width: 95vw;
    grid-auto-rows: 1fr;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr auto;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr auto;
  }

  .child-grid {
    width: 95vw;
    grid-auto-rows: 1fr;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .hero-pnumber {
    font-size: 14px;
    letter-spacing: 1.3px;
  }

  .numbers-wrap._2 {
    padding-left: 50px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .brand-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .num-wrap {
    display: none;
  }

  .navbar {
    margin-top: 0px;
    padding-top: 10px;
  }

  .nav-menu-1 {
    height: auto;
  }

  .dropdown-list-1.w--open {
    overflow: auto;
    height: 250px;
    padding-left: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .dropdown-list-2.w--open {
    overflow: auto;
    height: 250px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .dropdown-list-2.child.w--open {
    padding-left: 30px;
  }

  .tagline {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .brand-3.w--current {
    padding-left: 0px;
  }

  .button-2 {
    margin-right: auto;
    margin-left: auto;
  }

  .grid {
    grid-auto-flow: row;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: -webkit-max-content auto;
    -ms-grid-rows: max-content auto;
    grid-template-rows: -webkit-max-content auto;
    grid-template-rows: max-content auto;
  }

  .flex-wrap {
    padding-left: 15vw;
  }

  .contacts {
    height: auto;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    background-color: hsla(0, 0%, 100%, 0);
  }

  .contact-page-section__mobile {
    display: block;
  }

  .contact-page-section__desktop {
    display: none;
  }

  .row-wrap {
    margin-bottom: 10px;
  }

  .row-wrap.hours {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .row-wrap.right-align {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .hero-title {
    margin-top: 100px;
    font-size: 34px;
    line-height: 40px;
    letter-spacing: 1px;
  }

  .grid-2 {
    padding-top: 20px;
    -ms-grid-columns: 1fr 1fr 0.5fr;
    grid-template-columns: 1fr 1fr 0.5fr;
  }

  .l-btn-1 {
    margin-left: 0px;
  }

  .r-btn-1 {
    margin-right: 0px;
  }

  .service-tab-btn {
    margin-left: 0px;
  }

  .service-tab-btn2 {
    margin-left: 0px;
  }

  .l-btn-2 {
    margin-left: 0px;
  }

  .l-btn-3 {
    margin-left: 0px;
  }

  .r-btn-2 {
    margin-right: 0px;
  }

  .r-btn-3 {
    margin-right: 0px;
  }

  .drop-content-wrap {
    padding-left: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .dropdown-list-3.w--open {
    overflow: auto;
    height: 250px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .span-cta {
    display: none;
  }

  .years.table-price._2 {
    font-size: 24px;
  }

  .price {
    font-size: 26px;
  }

  .cards-cont-wrap {
    padding-top: 10vh;
  }

  .link-9 {
    margin-right: auto;
    margin-left: auto;
  }

  .link-block-2.docpage-link {
    margin-top: 30vh;
    margin-left: 21vw;
  }

  .left-infocol {
    width: 100%;
    margin-bottom: 0px;
  }

  .right-infocol {
    width: 100%;
    margin-top: 20px;
  }

  .doc-photo {
    max-width: 60%;
  }

  .doc-infowrap {
    width: 60%;
  }

  .list {
    display: block;
    margin-bottom: 20px;
  }

  .list.mob-inv {
    display: none;
  }

  .infoblock {
    width: 100%;
    padding-bottom: 20px;
  }

  .mobile-info-drop {
    display: block;
    width: 100%;
  }

  .serv-table.mob-inv {
    display: none;
  }

  .serv-table.mob-inv2,
  .serv-table.mob-inv._2 {
    display: none;
  }

  .page-vaccinations .serv-table.mob-inv._2 {
    display: block;
    max-width: 100%;
  }

  .serv-table.mob-inv2.serv {
    display: block;
    grid-auto-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    /* -ms-grid-rows: 1fr;
        grid-template-rows: 1fr; */
  }

  .news-tile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .news-image-link {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
  }

  .news-preview-wrap {
    width: 100%;
  }

  .article-wrap {
    width: 90%;
  }

  .article-wrapper {
    padding-top: 45vh;
  }

  .dropdown-toggle-3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-left: 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (max-width: 479px) {
  /* .slider {
    height: calc(100vh - 90px);
  } */

  .footer-link.hero-link {
    font-size: 10.5px;
    letter-spacing: -0.5px;
  }

  .footer-link.hero-link.mob {
    font-size: 10.5px;
    letter-spacing: -0.5px;
  }

  .footer-link.address {
    max-width: 150px;
    font-size: 9px;
  }

  .container.cta.adv {
    padding-right: 0px;
    padding-left: 0px;
  }

  .container.contacts-cont {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 5px;
    padding-left: 5px;
  }

  .container.doctor-infocontainer {
    padding-top: 10px;
  }

  .container.news-container {
    margin-top: 10vh;
  }

  .left-arrow {
    left: 25px;
  }

  .right-arrow {
    right: 25px;
  }

  .call-to-action {
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(hsla(0, 0%, 100%, 0.6)),
        to(hsla(0, 0%, 100%, 0.6))
      ),
      url("../images/LOGO-color.png"), url("../images/hospital.jpg");
    background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0.6), hsla(0, 0%, 100%, 0.6)),
      url("../images/LOGO-color.png"), url("../images/hospital.jpg");
    background-position: 0px 0px, 90% 100%, 100% 50%;
    background-size: auto, contain, cover;
    background-repeat: repeat, no-repeat, repeat;
    background-attachment: scroll, scroll, fixed;
  }

  .cards-section {
    padding-right: 5px;
    padding-left: 5px;
  }

  .cards-grid-container {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .cards-image-mask {
    left: auto;
    top: 5px;
    right: 5px;
  }

  .advantage {
    height: 200px;
  }

  .slide-1 {
    background-position: 65% 50%;
  }

  .slide-2 {
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(8, 19, 39, 0.75)),
        to(rgba(8, 19, 39, 0.75))
      ),
      url("../images/analysis-2030261_1920.jpg");
    background-image: linear-gradient(180deg, rgba(8, 19, 39, 0.75), rgba(8, 19, 39, 0.75)),
      url("../images/analysis-2030261_1920.jpg");
    background-position: 0px 0px, 50% 50%;
    background-size: auto, cover;
  }

  .sticky-navbar {
    display: none;
    opacity: 0;
  }

  .sticky-navbar.mob-invisible {
    display: block;
    opacity: 1;
  }

  .brand-2.w--current {
    z-index: 2;
    padding-bottom: 10px;
  }

  .dropdown-link {
    width: 120px;
  }

  .burger-btn {
    position: relative;
    height: auto;
    padding: 30px 0px 35px 10px;
  }

  .burger-btn.stick {
    padding-top: 40px;
  }

  .menu-button {
    z-index: 2;
  }

  .menu-button._1.top-menu {
    height: 80px;
  }

  .hero {
    height: 93%;
    padding-bottom: 0px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .heading {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 18px;
    line-height: 20px;
  }

  .schedule {
    max-width: 135px;
    font-size: 11px;
  }

  .heading-2 {
    font-size: 26px;
  }

  .heading-2.cta-head {
    max-width: none;
    font-size: 26px;
    text-align: center;
  }

  .footer-col {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    text-align: center;
  }

  .footer-link-2.address {
    text-align: left;
  }

  .social-wrapper.foot.inner-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0px;
  }

  .icon-4.fb-footer-link._2._3.header {
    margin-right: 0px;
    margin-bottom: 10px;
  }

  .button-1.sticky {
    margin-top: 10px;
  }

  .button-1.sticky.inner-1 {
    display: none;
  }

  .thumnail {
    width: 230px;
    height: 230px;
  }

  .link-8 {
    width: 230px;
  }

  .heading-sm {
    min-height: initial;
    max-width: 170px;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 22px;
  }

  .heading-sm.form-heading {
    font-size: 16px;
  }

  .txt-wrap {
    width: 100%;
  }

  .adult-grid {
    width: 90vw;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-flow: initial;
  }

  .tile-title {
    font-size: 14px;
  }

  .child-grid {
    width: 90vw;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-flow: initial;
  }

  .form {
    width: 280px;
  }

  .text-field {
    font-size: 13px;
  }

  .dropdown-col {
    position: static;
  }

  .dropdown-col.alt-col {
    width: 220px;
  }

  .hero-pnumber {
    font-size: 10.5px;
    letter-spacing: -0.5px;
  }

  .numbers-wrap._2 {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-left: 25px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .image.hero-logo {
    height: auto;
    max-width: 70px;
    margin-top: 0px;
    margin-right: 10px;
  }

  .navbar {
    z-index: 99;
    margin-top: 110px;
    padding-top: 0px;
  }

  .nav-menu-1 {
    z-index: 100;
  }

  .dropdown-list-1.w--open {
    width: 100vw;
  }

  .dropdown-list-2.w--open {
    width: 100vw;
  }

  .tagline {
    margin-bottom: 0;
    /* font-size: 12px; */
  }

  /* .brand-3.w--current {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  } */

  .button-2.main {
    margin-left: auto;
  }

  .grid {
    grid-auto-rows: 1fr;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: -webkit-max-content 1fr 1fr;
    -ms-grid-rows: max-content 1fr 1fr;
    grid-template-rows: -webkit-max-content 1fr 1fr;
    grid-template-rows: max-content 1fr 1fr;
  }

  .flex-wrap {
    padding-left: 0vw;
  }

  .slide-3 {
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(8, 19, 39, 0.75)),
        to(rgba(8, 19, 39, 0.75))
      ),
      url("../images/doctor-1149149_1920.jpg");
    background-image: linear-gradient(180deg, rgba(8, 19, 39, 0.75), rgba(8, 19, 39, 0.75)),
      url("../images/doctor-1149149_1920.jpg");
    background-position: 0px 0px, 100% 50%;
    background-size: auto, cover;
    background-repeat: repeat, no-repeat;
  }

  .success-window {
    width: 280px;
  }

  .contacts {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }

  .row-wrap.hours {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .row-wrap.hours.mob {
    display: none;
  }

  .contacts-icon.mob {
    display: none;
  }

  .phone-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .divider.mob {
    display: none;
  }

  .image-2.tab-image {
    margin-right: 0px;
  }

  .image-2.tab-image2 {
    margin-left: 0px;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }

  .hero-title {
    max-width: 95%;
    margin-top: 130px;
    margin-bottom: 20px;
    font-size: 19px;
    line-height: 35px;
  }

  .grid-2 {
    padding-top: 10px;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    -ms-grid-columns: 1fr 1fr 1fr 0.7fr;
    grid-template-columns: 1fr 1fr 1fr 0.7fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
  }

  .l-btn-1 {
    min-width: 0px;
    margin-right: 0px;
    margin-left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .r-btn-1 {
    min-width: 0px;
    margin-right: 0px;
    margin-left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .r-btn-1.w--current {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .service-tab-btn {
    min-width: 0px;
    margin-right: 0px;
    margin-left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .tab-name {
    font-size: 27px;
  }

  .service-tab-btn2 {
    min-width: 0px;
    margin-right: 0px;
    margin-left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .left-btn-wrap {
    height: 150px;
  }

  .right-btn-wrap {
    height: 150px;
  }

  .l-btn-2 {
    min-width: 0px;
    margin-right: 0px;
    margin-left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .l-btn-3 {
    min-width: 0px;
    margin-right: 0px;
    margin-left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .r-btn-2 {
    min-width: 0px;
    margin-right: 0px;
    margin-left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .r-btn-2.w--current {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .r-btn-3 {
    min-width: 0px;
    margin-right: 0px;
    margin-left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .r-btn-3.w--current {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .drop-content-wrap {
    width: 100%;
    height: 235px;
  }

  .drop-content-wrap.services-drop {
    position: static;
    padding-left: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .dropdown-list-3.w--open {
    width: 100vw;
  }

  .dropdown-list-3.child {
    height: auto;
  }

  .dropdown-list-3.child._2 {
    position: relative;
    left: 0px;
  }

  .services-drop-guesture {
    left: 47%;
  }

  .doctors-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .doc-spec {
    margin-bottom: 10px;
  }

  .years.table-price {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 22px;
    line-height: initial;
    margin-right: 2px;
  }

  .years.table-price > span {
    font-size: 16px;
    margin-left: 3px;
  }

  .years.table-price._2 {
    margin-right: 0px;
    font-size: 20px;
    line-height: 1em;
  }

  .link-9 {
    width: 230px;
    padding-left: 6px;
  }

  .link-block-2 {
    margin-left: 15px;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .link-block-2.docpage-link {
    margin-top: 10vh;
    margin-left: 9%;
  }

  .left-infocol {
    -ms-grid-rows: -webkit-max-content 50px 50px 70px;
    -ms-grid-rows: max-content 50px 50px 70px;
    grid-template-rows: -webkit-max-content 50px 50px 70px;
    grid-template-rows: max-content 50px 50px 70px;
    display: flex;
    flex-direction: column;
  }

  .doc-photo {
    max-width: 90%;
  }

  .doc-infowrap {
    width: 90%;
    height: auto;
  }

  .doc-exp.doc-p.table-price {
    line-height: 2em;
  }

  .doc-exp.doc-p.table-price._2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .infoblock {
    width: 100%;
  }

  .mobile-info-drop {
    width: 100%;
  }

  .serv-table {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    display: block;
  }

  .article-wrapper {
    padding-top: 20vh;
  }

  .doctors-grid2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .dropdown-toggle-3 {
    padding-right: 0px;
    padding-left: 5px;
  }

  .icon-7 {
    margin-right: 43%;
    padding-top: 20px;
  }

  .text-block-9 {
    line-height: 1em;
  }

  .text-block-10 {
    padding-bottom: 15px;
  }

  .lang-flex-wrap.mobile-lang {
    padding-left: 0px;
  }
}

#w-node-2d46ca8a745e-19347c44 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 2;
  grid-row-start: span 2;
  -ms-grid-row-span: 2;
  grid-row-end: span 2;
}

#w-node-95463c0913d4-19347c44 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-c85388ee5cc2-19347c44 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-4f18b9f8e5de-19347c44 {
  -ms-grid-column: span 3;
  grid-column-start: span 3;
  -ms-grid-column-span: 3;
  grid-column-end: span 3;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-bf69bdb4f14b-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-bf69bdb4f14e-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-bf69bdb4f151-83ca36be {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-6c679415d924-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-bf69bdb4f15c-83ca36be {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-bf69bdb4f163-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-de6202fbee6e-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-de6202fbee70-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-de6202fbee75-83ca36be {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-de6202fbee77-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-de6202fbee81-83ca36be {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-de6202fbee83-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-01ff941ee8af-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-01ff941ee8b1-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-01ff941ee8b6-83ca36be {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-01ff941ee8b8-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-01ff941ee8c2-83ca36be {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-01ff941ee8c4-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-d693cf4cc758-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-d693cf4cc75a-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-d693cf4cc75f-83ca36be {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-d693cf4cc761-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-d693cf4cc76b-83ca36be {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-d693cf4cc76d-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-de0a96440d17-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-de0a96440d19-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-de0a96440d1e-83ca36be {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-de0a96440d20-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-de0a96440d2a-83ca36be {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-de0a96440d2c-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-14baceee24f4-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-14baceee24f6-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-14baceee24fb-83ca36be {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-14baceee24fd-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-14baceee2507-83ca36be {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-14baceee2509-83ca36be {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-cecbfcce4731-6c4287e4 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-a76281c383c7-e9e9e1ef {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a76281c383c9-e9e9e1ef {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a76281c383ce-e9e9e1ef {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-a76281c383d0-e9e9e1ef {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a76281c383d3-e9e9e1ef {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a76281c383d8-e9e9e1ef {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a76281c383e1-e9e9e1ef {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a76281c383e3-e9e9e1ef {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a76281c383e8-e9e9e1ef {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-a76281c383ea-e9e9e1ef {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a76281c383ed-e9e9e1ef {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a76281c383f2-e9e9e1ef {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a76281c383fb-e9e9e1ef {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a76281c383fd-e9e9e1ef {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a76281c38402-e9e9e1ef {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-a76281c38404-e9e9e1ef {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a76281c38407-e9e9e1ef {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a76281c3840c-e9e9e1ef {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-fc8193612ebf-e9e9e1ef {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-cdbe79571619-59bfc029 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-cdbe7957161b-59bfc029 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-cdbe79571620-59bfc029 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-cdbe79571622-59bfc029 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-cdbe79571625-59bfc029 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-cdbe7957162a-59bfc029 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-cdbe79571633-59bfc029 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-cdbe79571635-59bfc029 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-cdbe7957163a-59bfc029 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-cdbe7957163c-59bfc029 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-cdbe7957163f-59bfc029 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-cdbe79571644-59bfc029 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-cdbe7957164d-59bfc029 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-cdbe7957164f-59bfc029 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-cdbe79571654-59bfc029 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-cdbe79571656-59bfc029 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-cdbe79571659-59bfc029 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-cdbe7957165e-59bfc029 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-43a301cab79b-59bfc029 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-34c0e95234c0-0beab874 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-34c0e95234c2-0beab874 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-34c0e95234c7-0beab874 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-34c0e95234c9-0beab874 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-34c0e95234cc-0beab874 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-34c0e95234d5-0beab874 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-34c0e95234de-0beab874 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-34c0e95234e0-0beab874 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-34c0e95234e5-0beab874 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-34c0e95234e7-0beab874 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-34c0e95234ea-0beab874 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-34c0e95234f3-0beab874 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-34c0e95234fc-0beab874 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-34c0e95234fe-0beab874 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-34c0e9523503-0beab874 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-34c0e9523505-0beab874 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-34c0e9523508-0beab874 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-34c0e9523511-0beab874 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-43a301cab79b-0beab874 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-43a301cab79b-d58eca2d {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-e8fb6a50faac-6c4287e4 {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-e8fb6a50faae-6c4287e4 {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-e8fb6a50fab0-6c4287e4 {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-e8fb6a50fab2-6c4287e4 {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-1f4a418afe62-6c4287e4 {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-cecbfcce4731-6c4287e4 {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-2a6b8f2fa650-6c4287e4 {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-871b63d58638-6c4287e4 {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-fc8193612ebd-e9e9e1ef {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-fc8193612ebf-e9e9e1ef {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-fc8193612ec1-e9e9e1ef {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-fc8193612ec3-e9e9e1ef {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-43a301cab799-59bfc029 {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-43a301cab79b-59bfc029 {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-43a301cab79d-59bfc029 {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-43a301cab79f-59bfc029 {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-43a301cab799-0beab874 {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-43a301cab79b-0beab874 {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-43a301cab79d-0beab874 {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-43a301cab79f-0beab874 {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-43a301cab799-d58eca2d {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-43a301cab79b-d58eca2d {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-43a301cab79d-d58eca2d {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-43a301cab79f-d58eca2d {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-2d46ca8a745e-19347c44 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }

  #w-node-95463c0913d4-19347c44 {
    -ms-grid-column: span 3;
    grid-column-start: span 3;
    -ms-grid-column-span: 3;
    grid-column-end: span 3;
  }

  #w-node-4f18b9f8e5de-19347c44 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-ef56cc9649b6-19347c44 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }

  #w-node-7461069f9540-19347c44 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }

  #w-node-2d46ca8a745e-19347c44 {
    -ms-grid-column-span: 1;
    grid-column-end: 5;
    -ms-grid-column: 4;
    grid-column-start: 4;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
    -ms-grid-row: 2;
    grid-row-start: 2;
  }

  #w-node-95463c0913d4-19347c44 {
    -ms-grid-column: span 4;
    grid-column-start: span 4;
    -ms-grid-column-span: 4;
    grid-column-end: span 4;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }

  #w-node-3a829455d7c8-19347c44 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #w-node-0c6227c59143-19347c44 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #w-node-6f54b7e03707-19347c44 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #w-node-84b90cb19d90-19347c44 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #w-node-6fbf2acf309d-19347c44 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #w-node-798b3f398896-19347c44 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }
}

/* checkup page */

.checkup-card {
  display: block;
  padding: 40px 20px 30px;
}

.checkup-card .w-inline-block > img {
  width: 100%;
  border-radius: 5px;
}

.checkup-card .price {
  font-size: 24px;
  margin: 20px auto 0;
  padding: 10px;
  width: max-content;
  border-radius: 5px;
}

.checkup-card .heading-sm {
  min-height: auto;
}

@media screen and (min-width: 1200px) {
  .checkup-card .heading-sm {
    min-height: 66px;
  }
}

.container .checkup-infocontainer {
  padding-bottom: 0;
  margin-bottom: 0;
}

.checkup-infocontainer .left-infocol {
  grid-template-rows: max-content 0 70px auto;
}

.checkup-infocontainer + .last-infoblock {
  max-width: 70%;
  margin: 0 auto;
}

.checkup-total-price {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 70%;
  font-size: 20px;
  margin: 0 auto;
  padding-right: 0;
  color: #142e60;
  font-weight: 600;
  margin-bottom: 50px;
}

.checkup-total-price > span {
  display: block;
  width: 30%;
  text-align: center;
}

.checkup-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.checkup-bottom__tota-price {
  padding: 9px 50px 9px 20px;
  background: #ffffff;
  color: #142e60;
  border-radius: 40px;
  border: 1px solid #021c54;
}

.checkup-bottom__tota-price > span {
  display: block;
  font-weight: 500;
  font-size: 16px;
}

.checkup-bottom__tota-price > span:last-child {
  font-weight: 700;
  /* font-size: 20px; */
}

.checkup-bottom > a {
  margin: 0 !important;
}

.checkup-bottom > button {
  outline: none;
  background: #021c54;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 20px 10px 20px;
  border-radius: 40px;
  position: relative;
  z-index: 1;
  margin-left: -45px;
  transition: background 0.3s;
}

.checkup-bottom > button:hover {
  background: #3badff;
}

.checkup-bottom > button span {
  display: block;
}

.page-vaccinations {
  padding: 200px 0;
  position: relative;
}

.page-vaccinations > a {
  position: relative;
  z-index: 1;
}

.page-vaccinations .serv-table {
  position: relative;
  z-index: 1;
  max-width: 50%;
  margin: 0 auto 50px;
}

.page-vaccinations .serv-table div {
  width: 100%;
  text-align: center;
  justify-content: center;
}

@media screen and (max-width: 760px) {
  .checkup-total-price {
    width: 100%;
    justify-content: center;
    margin-bottom: 30px;
    padding: 0 20px;
    font-size: 16px;
  }

  .checkup-bottom__tota-price {
    padding: 10px 20px 10px 20px;
  }

  .checkup-bottom > button {
    width: 100%;
    margin-left: 0;
  }

  .checkup-bottom > span {
    width: 100%;
  }

  .checkup-bottom {
    flex-direction: column;
    gap: 20px;
  }
}

/* Thank you page */
.thanks-page {
  padding: 200px 0;
}

.thanks-page .container {
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thanks-page .success-window {
  width: 100%;
  max-width: 770px;
  background: transparent;
  text-align: center;
}

.thanks-page .field-label {
  font-size: 21px;
  line-height: 1.3;
}

.thanks-page .container > a {
  margin-left: auto;
}

@media screen and (max-width: 760px) {
  .thanks-page {
    padding: 100px 0;
  }

  .checkup-title {
    display: block !important;
    margin-top: 30px;
  }
}

@media screen and (max-width: 320px) {
  .main-screen-wrap .contacts {
    display: none;
  }

  .navbar {
    margin-top: 20px;
  }

  .hero .hero-title {
    margin-top: 100px;
  }

  .pagination-hover,
  .slide-nav-2 {
    margin-bottom: 10px;
  }

  .bubble {
    width: 20px;
    height: 20px;
  }

  .w-slider-nav.w-round > div {
    width: 20px;
    height: 20px;
    margin: 20px;
  }

  .devider {
    width: 40px;
  }
}

.text p {
  margin: 20px 0;
  overflow: hidden;
}

.text p:first-of-type {
  margin: 0 0 20px 0;
}

.text a {
  text-decoration: underline;
  color: #021c54;
  font-weight: 600;
}

.terms-link {
  margin-top: 20px;
}

.payment-logos {
  max-width: 200px;
  margin: 20px auto 0;
}

.doc-main-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}

/* Tabs */
.tabs {
  width: 100%;
}

.tabs__controls {
  display: flex;
  align-items: center;
  border-radius: 10px;
  background-color: #142e60;
}

.tabs__btn {
  outline: none;
  border: none;
  border-radius: 10px;
  background-color: #142e60;
  font-family: Magistralc, sans-serif;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 20px;
  flex-grow: 1;
}

.tabs__btn-certificate {
  display: none;
}

.tabs__btn.is-active {
  background-color: #3badff;
}

.tabs__content_item.tabs__content_item {
  display: none;
}

.tabs__content_item.tabs__content_item.is-active {
  display: block;
}

.tabs__content_item {
  margin-top: 16px;
}

/* End tabs */

.list-item__content {
  display: flex;
  column-gap: 10px;
  font-size: 16px;
}

.list-item__content p {
  margin: 0;
}

/* Certificate slider */

.swiper {
  width: 100%;
  height: 200px;
}

.swiper-slide {
  display: flex;
}

.swiper-slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-button-next,
.swiper-button-prev {
  font-size: 40px;
  width: 1em;
  height: 1em;
  border-radius: 20px;
  background-color: hsla(0, 0%, 100%, 0.65);
  color: #021c54;
  font-family: "webflow-icons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-button-prev::before {
  content: "\e601";
}

.swiper-button-next::before {
  content: "\e600";
}

.certificates-mobile {
  display: none;
}

@media screen and (max-width: 769px) {
  .tabs__btn-certificate {
    display: block;
  }
  .certificates-desktop {
    display: none;
  }
  .certificates-mobile {
    display: block;
  }
}

/* Doctors page new blocks */

.doctor-info-intro {
  position: relative;
  padding: 55px 0;
  color: #fff;
  margin: 40px 0;
}

.doctor-info-intro::before {
  content: "";
  width: 100vw;
  margin-left: -50vw;
  height: 100%;
  background-color: #021c54;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
}

.doctor-info-intro .text {
  max-width: 80%;
  font-weight: 700;
  position: relative;
  margin: 0 auto;
  padding-left: 10px;
}

.doctor-info-intro .text::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}

.doctors-additional-info {
  display: flex;
  justify-content: flex-end;
  padding: 40px 0 100px 0;
}

.cards-cont-wrap .doctors-additional-info {
  padding: 40px 0 0 0;
}

.doctors-additional-main-page {
  padding: 40px 0 80px 0;
}

.doctors-additional-info > div {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.doctors-additional-info__left-col {
  padding-right: 40px;
}

.doctors-additional-info__right-col {
  gap: 40px;
}

.info-heading {
  margin-top: 0px;
  margin-bottom: 20px;
  color: #021c54;
  font-size: 20px;
  font-weight: 900;
}

.last .info-heading {
  text-align: center;
}

.info-dropdown__heading {
  width: 100%;
  border-radius: 10px;
  background: #021c54;
  color: #fff;
  position: relative;
  font-size: 20px;
  padding: 20px 40px 20px 20px;
  margin: 0;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.3s;
  user-select: none;
}

.info-dropdown__heading::before {
  content: "\e603";
  font-family: "webflow-icons" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  right: 20px;
  transition: transform 0.3s;
}

.info-dropdown .text {
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #fff;
  display: none;
}

.info-dropdown.is-open .info-dropdown__heading {
  background: #3badff;
}

.info-dropdown.is-open .info-dropdown__heading::before {
  transform: rotate(180deg);
}

.info-dropdown.is-open .text {
  display: block;
}

.marquee {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 60px !important;
  background-color: rgba(100, 186, 217, 1);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.marquee-list {
  display: flex;
  align-items: center;
  gap: 100px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.marquee-list__item {
  display: flex;
  align-items: center;
}

.marquee-list__link {
  display: flex;
  font-family: "Magistralc", sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0em;
  font-style: normal;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
}

.cta-callback {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid rgba(237, 28, 36, 1);
  position: fixed;
  right: 90px;
  bottom: 95px;
  z-index: 2;
  transition: opacity 0.3s;
}

.cta-callback.hidden {
  opacity: 0;
}

.cta-callback__text {
  font-family: "Magistralc", sans-serif;
  width: 160px;
  position: absolute;
  bottom: 120%;
  left: 0;
  background: rgba(59, 173, 252, 1);
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0em;
  text-align: left;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.cta-callback__text::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 100%;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid rgba(59, 173, 252, 1);
  clear: both;
}

.cta-callback:hover .cta-callback__text {
  opacity: 1;
}

.cta-callback > svg {
  display: block;
  max-width: 100%;
}

.cta-callback__modal {
  width: fit-content;
  height: fit-content;
  padding: 12px 15px 12px 55px;
  box-shadow: 28.95661163330078px 16.730487823486328px 33.13923263549805px -16.087007522583008px rgba(54, 73, 123, 0.25);
  background: rgba(0, 60, 81, 0.6);
  position: fixed;
  right: 100px;
  bottom: 110px;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 20px;
  align-items: center;
  border-radius: 70px;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none;
}

.cta-callback__modal.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}

.cta-callback__modalText {
  font-family: "Magistralc", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  /* letter-spacing: 0.5em; */
  text-align: left;
  color: #fff;
  max-width: 211px;
  margin: 0;
}

.cta-callback__form {
  border-radius: 60px;
  background-color: #fff;
  padding: 10px 13px 10px 30px;
}

.cta-form-block p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-form-block p br {
  display: none;
}

.cta-form-block .wpcf7-spinner {
  position: absolute;
  right: 0;
  z-index: 1;
}

.cta-form-block .wpcf7-form-control-wrap {
  max-width: 207px;
}

.cta-form-block input[name="tel-115"] {
  font-family: "Magistralc", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0em;
  background: none;
  border: none;
  outline: none;
}

.cta-form-block input[name="tel-115"]::placeholder {
  color: rgba(56, 65, 83, 1);
}

.cta-form-block input[type="submit"] {
  font-family: "Magistralc", sans-serif;
  background: rgba(128, 202, 253, 1);
  font-size: 23px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: center;
  border-radius: 50px;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 20px;
  position: relative;
  z-index: 1;
  transition: background 0.3s;
}

.cta-form-block input[type="submit"]:hover {
  background: rgba(59, 173, 252, 1);
}

.cta-callback__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(128, 202, 253, 1);
  border: none;
  outline: none;
  position: absolute;
  top: -5px;
  left: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.cta-callback__close:hover {
  background: rgba(59, 173, 252, 1);
}

.cta-form-block {
  overflow: hidden;
}

.cta-callback__form form[data-status="sent"] .cta-form-block {
  display: none;
}

.cta-callback__form form[data-status="sent"] .wpcf7-response-output {
  margin: 20px 0;
}

@media screen and (max-width: 769px) {
  .doctors-additional-info {
    flex-direction: column;
    gap: 40px;
  }

  .doctors-additional-info > div {
    width: 100%;
  }

  .doctors-gallery {
    padding-top: 50px;
  }

  .doctors-gallery .section-name.carousel-sec-name {
    position: initial;
    margin-bottom: 40px;
  }

  .marquee {
    height: 42px !important;
  }

  .marquee-list {
    gap: 60px;
  }

  .marquee-list__link {
    font-size: 16px;
    line-height: 19px;
  }

  .cta-callback {
    width: 70px;
    height: 70px;
    bottom: 50px;
    right: auto;
    left: 22px;
  }

  .cta-callback__text::after {
    display: none;
  }

  .cta-callback > svg {
    max-width: 20px;
  }

  .cta-callback__modal {
    width: calc(100% - 40px);
    grid-template-columns: 1fr 290px;
    padding: 10px 12px 10px 15px;
    right: 50%;
    transform: translateX(-100%);
    opacity: 1;
    pointer-events: all;
    display: flex;
    flex-direction: column-reverse;
    border-radius: 35px;
    gap: 10px;
    bottom: 10px;
  }

  .cta-callback__close {
    width: 30px;
    height: 30px;
  }

  .cta-callback__close img {
    display: block;
    max-width: 70%;
  }

  .cta-callback__modal.active {
    transform: translateX(50%);
  }

  .cta-callback__modalText {
    font-size: 16px;
    max-width: 100%;
  }

  .cta-form-block input[name="tel-115"] {
    font-size: 16px;
    width: 100%;
  }

  .cta-form-block input[type="submit"] {
    font-size: 16px;
    padding: 12px;
  }

  .cta-form-block .wpcf7-form-control-wrap {
    max-width: 100%;
  }

  .cta-callback__form {
    padding: 10px 10px 10px 15px;
  }
}

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

@media screen and (min-width: 1200px) {
  .doctors-gallery .left-arrow {
    left: -20vw;
  }

  .doctors-gallery .right-arrow {
    right: -20vw;
  }
}

.home-content {
  transition: filter 0.3s;
}

.home-content.filtered {
  filter: blur(5px);
}
