body {
  padding-top: 0;
}

ul {
  list-style: none;
}

h1.title {
  font-size: 50px;
}

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

.logo-content {
  font-family: var(--font-lora);
  text-align: center;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.08em;
  color: #4d2461;
  text-transform: uppercase;
}

.logo-text {
  font-size: 30px;
}

.logo-text span {
  font-size: 24px;
}

.logo-image {
  width: 60px;
  min-width: 60px;
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
}

.template-header.absolute-header {
  z-index: 100;
}

.template-header .site-menu ul li,
.template-header.sticky-header.sticky-on .site-menu ul li {
  line-height: 70px;
}

.hero-area-one .hero-img {
  text-align: left;
  -webkit-clip-path: polygon(0% 0%, 100% 30px, calc(100% - 10px) calc(100% - 20px), 30px 100%);
  clip-path: polygon(0% 0%, 100% 30px, calc(100% - 10px) calc(100% - 20px), 30px 100%);
}

.hero-area-one .hero-img img {
  width: auto;
  max-height: 600px;
}

.accordion-content td:nth-child(2) {
  white-space: nowrap;
  /* font-size: 14px; */
}

.accordion-content td {
  text-align: center;
}

/*бс 4.x не имеет тут*/
.cursor-pointer {
  cursor: pointer !important;
}

/*свг ховер градиент*/

.header__social_item {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: -webkit-transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  -o-transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    -webkit-transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    -webkit-transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.header__social_item svg {
  display: block;
}

.header__social_item svg circle,
.header__social_item svg rect {
  fill: var(--color-primary) !important;
  -webkit-transition: fill 0.25s ease;
  -o-transition: fill 0.25s ease;
  transition: fill 0.25s ease;
}

.header__social_item:hover {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

.header__social_item:hover svg circle,
.header__social_item:hover svg rect {
  fill: url(#socialHoverGradient) !important;
}

.header-search-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

/* кнопка записаться на прием */
.header-appointment-btn,
.header-search-toggle {
  color: var(--color-primary);
  font-size: 30px;
  background-color: rgba(0, 0, 0, 0);
}

/* отступ сверху лого*/
.site-logo {
  margin-top: 5px;
  margin-bottom: 5px;
}

/*КВИЗ ПО ЗУБАМ*/
.quiz-container {
  background-color: var(--color-white);
  max-width: 650px;
  margin: 50px auto;
  border-radius: 30px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

@media (max-width: 767px) {
  .quiz-container {
    margin-left: 40px;
    margin-right: 40px;
  }
}

@media (max-width: 484px) {
  .quiz-container {
    margin-left: 0;
    margin-right: 0;
  }
}

.quiz-title {
  text-align: center;
  color: var(--color-black);
  font-size: 24px;
  margin-bottom: 20px;
}

.quiz-progress-bar {
  width: 100%;
  height: 8px;
  background: var(--color-grey);
  border-radius: 4px;
  margin-bottom: 20px;
}

.quiz-progress {
  height: 100%;
  background: var(--color-secondary);
  border-radius: 4px;
  -webkit-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.quiz-container .question {
  font-size: 18px;
  margin-bottom: 20px;
}

.quiz-container .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.quiz-container .option-button {
  padding: 12px 20px;
  background: white;
  border: 1px solid var(--color-grey);
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.quiz-container .option-button:hover {
  background: #f7fafc;
  border-color: var(--color-secondary);
}

.quiz-container .question-counter {
  text-align: center;
  color: var(--color-black);
  font-size: 14px;
  margin-top: 20px;
}

.quiz-result {
  text-align: center;
}

.quiz-result-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.quiz-result-message {
  margin-bottom: 20px;
  line-height: 1.5;
}

.quiz-restart-button {
  padding: 12px 24px;
  font-size: 16px;
}

.success {
  color: var(--color-green);
}

.info {
  color: var(--color-secondary);
}

.warning {
  color: var(--color-yellow);
}

.danger {
  color: var(--color-red);
}

/*мапка карта*/

.map__y {
  height: 540px;
  overflow: hidden;
  border-radius: 32px;
}

.map__y > * {
  width: 100%;
  height: 100%;
}

@media (max-width: 1799px) {
  .map__y {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .map__y {
    height: 480px;
  }
}

.template-header .site-menu ul li.current-menu-item > a,
.template-header .site-menu ul li .sub-menu li.current-menu-item > a:not(:hover),
.mobile-slide-panel .mobile-menu li.current-menu-item > a {
  color: var(--color-secondary);
}

.appointment-form-two {
  min-height: 755px;
}

.video-carousel {
  overflow: hidden;
}

.video-carousel .slick-list {
  margin: 0 -15px;
}

.video-carousel .video-box {
  margin: 0 15px;
}

@media (max-width: 768px) {
  .video-carousel .slick-list {
    margin: 0 !important;
    padding: 0 !important;
  }

  .video-carousel .video-box {
    margin: 0 !important;
    padding: 0 10px;
  }

  .video-carousel .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .video-carousel .video-box.slick-slide {
    width: 100vw !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
  }

  .video-carousel {
    overflow: hidden !important;
    width: 100% !important;
  }
}

.doctors-loop {
  margin-top: -30px;
}

.doctors-slider {
  overflow: hidden;
}

.doctors-slider .slick-list {
  margin: 0 -15px;
}

.doctors-slider .doctor-box-one {
  margin: 0 15px;
}

.doctors-slider + .doctors-carousel-arrows {
  margin-top: 25px;
  margin-bottom: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.doctor-box-one.bordered-style .doctor-information {
  padding: 10px 20px 20px;
  background-repeat: no-repeat;
  background-size: auto 150%;
}

.doctor-box-one .doctor-information .social-links li {
  display: block;
}

.wcu-section-two {
  margin-top: 0;
}

.wcu-section-two .simple-icon .icon > * {
  height: 100px;
}

.services-area:not(.bg-color-grey) .iconic-box {
  border: 1px solid var(--color-grey);
}

.services-area .iconic-box {
  width: 100%;
  color: var(--color-body);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.services-area .iconic-box:hover {
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
}

.doctor-details-wrapper .doctor-info-box {
  margin-bottom: 70px;
}

.doctor-details-wrapper .doctor-info-box .doctor-photo img {
  width: 100%;
  aspect-ratio: 0.8;
  -o-object-fit: cover;
  object-fit: cover;
}

.doctor-description .description-header .template-btn {
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}

.doctor-description .price,
.doctor-description .experience {
  font-weight: 700;
}

.doctor-description .price span,
.doctor-description .experience span {
  color: var(--color-primary);
  font-size: 20px;
}

.working-hour-chart .single-contact-info {
  color: var(--color-white);
}

.contact-info-wrapper ul li {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.cta-boxes-wrapper .row {
  margin-bottom: -30px;
}

.cta-boxes-wrapper .row > * {
  margin-bottom: 30px;
}

.cta-boxed-two {
  height: 100%;
}

.cta-boxed-two.vacancy-item {
  background: -o-linear-gradient(bottom, #2e279d 0%, rgba(46, 39, 157, 0.57) 75%, rgba(46, 39, 157, 0.14902) 100%);
  background: -webkit-gradient(linear, left bottom, left top, from(#2e279d), color-stop(75%, rgba(46, 39, 157, 0.57)), to(rgba(46, 39, 157, 0.14902)));
  background: linear-gradient(0deg, #2e279d 0%, rgba(46, 39, 157, 0.57) 75%, rgba(46, 39, 157, 0.14902) 100%);
  width: 500px;
  height: 410px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}



.cta-boxed-two .cta-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.cta-boxed-two .cta-info {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
}

.cta-boxed-two .cta-text {
  color: var(--color-white);
  margin-bottom: 20px;
}

.blog-details-wrapper {
  padding-right: 0;
}

.promo-date {
  font-size: 24px;
  font-weight: 700;
}

.post-links {
  margin-bottom: 20px;
}

.post-links .accordion-content > *:not(:last-child) {
  margin-bottom: 15px;
}

.post-links .accordion-content h2 {
  font-size: 22px;
}

.post-links .accordion-content h3 {
  font-size: 20px;
}

@media screen and (max-width: 1024px) {
  .post-links .accordion-content h2 {
    font-size: 20px;
  }

  .post-links .accordion-content h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 380px) {
  .post-links .accordion-content h2 {
    font-size: 16px;
  }

  .post-links .accordion-content h3 {
    font-size: 14px;
  }
}

.post-reading-time {
  margin-bottom: 20px;
}

.post-desc {
  font-size: 20px;
  font-weight: 700;
  background-color: rgba(73, 154, 250, 0.1);
  margin: 60px 0;
  /* opacity: 0.5; */
  color: #2e279d;
  padding: 15px;
}

.faq-section .accordion-item .accordion-content,
.post-links .accordion-item .accordion-content {
  padding: 0 30px 30px;
}

.blog-loop {
  padding-right: 0;
  margin-bottom: -30px;
}

.blog-loop .row > * {
  margin-bottom: 30px;
}

.single-blog-post {
  display: block;
  color: var(--color-body) !important;
}

.single-blog-post:hover .post-title {
  color: var(--color-secondary);
  -webkit-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.modal-content {
  border: none;
}

.modal-body {
  padding: 35px;
}

.modal-close {
  position: absolute;
  top: 0;
  right: 3px;
  font-size: 40px;
  line-height: 26px;
  padding: 5px;
  background-color: transparent;
  border: none;
  outline: none;
  z-index: 2;
}

.modal-backdrop {
  background-color: var(--color-heading);
}

.testimonial-one-wrap {
  padding: 0 70px;
}

.single-testimonial-slider img {
  /* max-width: 500px; */
  width: 100%;
  /* min-width: 300px; */
}

.sert-carousel-arrows {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.hero-slider-one .service-price,
.hero-area-one .service-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 30px;
}

.pricelist-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.pricelist-nav .template-btn.active {
  background-color: var(--color-heading);
}

.pricelist-block:not(:last-child) {
  margin-bottom: 50px;
}

.pricelist-block h2 {
  margin-bottom: 30px;
}

.latest-blog-one .blog-thumb img {
  width: 100%;
  height: 370px;
  -o-object-fit: cover;
  object-fit: cover;
}

.search-form {
  margin-bottom: 30px;
}

.search-form .input-field {
  width: 100%;
}

.search-result {
  min-height: 400px;
}

.search-item {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.before-after-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1.7;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}

.before-after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 600px;
  max-height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
}

.before {
  display: block;
}

.after {
  width: 100%;
  -webkit-clip-path: inset(0 0 0 50%);
  clip-path: inset(0 0 0 50%);
}

.before-after-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 6px;
  background-color: var(--color-primary);
  -webkit-transform: translateX(-3px);
  -ms-transform: translateX(-3px);
  transform: translateX(-3px);
  cursor: ew-resize;
  z-index: 10;
}

.before-after-handle::before {
  position: absolute;
  content: '';
  top: calc(50% - 15px);
  left: calc(50% - 15px);
  width: 30px;
  height: 30px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.recently-viewed-list {
  margin-bottom: -15px;
}

.recently-viewed-link {
  margin-bottom: 15px;
}

@media (max-width: 1199px) {
  .template-header .header-navigation {
    padding: 0;
  }
}

@media (max-width: 991px) {
  .single-testimonial-slider img {
    max-width: 100%;
  }

  .sert-carousel-arrows {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .section-gap {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .section-gap-bottom {
    padding-bottom: 80px;
  }
  .wcu-section-two .container-fluid {
    padding: 80px 0;
  }
  .testimonial-one-wrap {
    padding: 0 5%;
  }
}

h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--color-primary);
}

/* блог общая */
.blog-details-inner .post-content p {
  margin-bottom: 20px !important;
}

.blog-loop .post-content p {
  background-color: rgba(73, 154, 250, 0.1);
  margin: 60px 0;
  color: #2e279d;
  padding: 15px;
}

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

.col-lg-6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

.single-blog-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.single-blog-post:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.post-thumbnail {
  height: 220px;
  min-height: 220px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.single-blog-post:hover .post-thumbnail img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.post-link {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 10;
  color: #333;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.post-link:hover {
  background: #fff;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.post-link i {
  font-size: 16px;
}

.post-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.post-title {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #333;
}

.post-content p {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 20px;
  color: var(--color-heading);
  line-height: 1.6;
  overflow: hidden;
}

.post-content p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.post-meta {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #eee;
  color: #888;
  font-size: 14px;
}

.post-meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.post-meta i {
  font-size: 14px;
}

.single-blog-post.no-thumbnail .post-content {
  padding-top: 25px;
}

@media (min-width: 768px) {
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .post-thumbnail {
    height: 240px;
    min-height: 240px;
  }

  .post-link {
    width: 44px;
    height: 44px;
  }

  .post-link i {
    font-size: 18px;
  }

  .post-content p {
    -webkit-line-clamp: 4;
  }
}

@media (min-width: 992px) {
  .post-thumbnail {
    height: 260px;
    min-height: 260px;
  }

  .post-title {
    font-size: 20px;
  }

  .post-link {
    width: 46px;
    height: 46px;
    bottom: 25px;
    right: 25px;
  }

  .post-content p {
    -webkit-line-clamp: 5;
  }
}

@media (min-width: 1200px) {
  .post-thumbnail {
    height: 280px;
    min-height: 280px;
  }
}

@media (max-width: 767px) {
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .post-thumbnail {
    height: 200px;
    min-height: 200px;
  }

  .post-link {
    width: 36px;
    height: 36px;
    bottom: 15px;
    right: 15px;
  }

  .post-link i {
    font-size: 14px;
  }

  .post-content p {
    -webkit-line-clamp: 3;
  }

  .post-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .post-thumbnail {
    height: 180px;
    min-height: 180px;
  }

  .post-link {
    width: 32px;
    height: 32px;
    bottom: 10px;
    right: 10px;
  }

  .post-link i {
    font-size: 12px;
  }
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.col-lg-6 {
  padding-right: 15px;
  padding-left: 15px;
}

.blog-details-wrapper .post-thumbnail {
  height: auto;
}

@media screen and (max-width: 420px) {
  .post-content h2 {
    font-size: 1.5rem;
  }
}

.seo_text ul,
.seo_text ol,
.seo_text h2,
.seo_text h3,
.seo_text h4 {
  color: var(--color-primary);
}

.seo_text ul,
.seo_text ol {
  color: var(--color-heading);
  list-style: disc;
  padding-left: 25px;
}

.seo_text h3 {
  margin: 20px 0;
}

.seo_text .post-content table tr,
.seo_text .post-content table td {
  border: 1px solid #000;
}

.seo_text .post-content table tr,
.seo_text .post-content table td,
.seo_text .post-content table thead tr {
  text-align: center;
  padding: 10px;
  border: 1px solid #000;
  background-color: #f2f2f2;
}

.seo_text .post-content table td[data-row='1'] {
  font-weight: bold;
}

.blog-details-wrapper .post-content ul,
ol {
  margin-bottom: 30px;
  list-style-type: disc;
  color: var(--color-heading);
}

.review__item_button {
  font-size: 13px;
  color: #757575 !important;
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  margin-top: 10px;
  display: none;
}

.review__item.has-more .review__item_button {
  display: inline-block;
}

.review__item_text {
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  -o-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  position: relative;
}

.review__item:not(.expanded) .review__item_text {
  max-height: 72px;
}

.review__item.expanded .review__item_text {
  max-height: 1000px;
}

.review__item:not(.expanded) .review__item_text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: -o-linear-gradient(top, transparent, white);
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(white));
  background: linear-gradient(to bottom, transparent, white);
}

.testimonial-box {
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.testimonial-box .content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.testimonial-box .review__item_button {
  margin-top: auto;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.doctor-description ul li,
.doctor-information li {
  list-style: disc;
  list-style-type: disc;
}

.doctor-details-wrapper .doctor-information ul {
  list-style: none;
  padding-left: 20px;
}

.doctor-details-wrapper .doctor-information ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 15px;
  padding-left: 10px;
  position: relative;
}

.doctor-details-wrapper .doctor-information li li::before {
  content: '•';
  position: absolute;
  left: -15px;
  top: 0;
  font-size: 20px;
}

.accordion-content table td:nth-child(2),
.accordion-content table th:nth-child(2) {
  text-align: right;
  white-space: nowrap;
  padding-right: 20px;
}

.accordion-content table td:nth-child(3),
.accordion-content table th:nth-child(3) {
  text-align: center;
  width: 80px;
}

.accordion-content table td:nth-child(1),
.accordion-content table th:nth-child(1) {
  text-align: left;
}

.video-carousel.slick-slider .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.video-carousel .video-box {
  height: auto !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.video-carousel .slick-slide {
  width: 100% !important;
}

.video-carousel .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: 100% !important;
}

.video-carousel .slick-slide > div {
  height: 100%;
}

@media (min-width: 769px) {
  .video-carousel .slick-slide {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 47% !important;
            flex: 0 0 47% !important;
    max-width: 50% !important;
  }
}

@media (max-width: 768px) {
  .video-carousel .slick-slide {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 100% !important;
            flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

.page-template-page-promo section.cta-boxes-wrapper > div > div > div > div > h2 {
  margin-top: 0;
}

.page-template-page-promo section.cta-boxes-wrapper .cta-boxed-two {
  width: 300px;
}

.page-template-page-promo .cta-boxes-wrapper .cta-boxed-two {
  height: 600px;
}

.page-template-page-promo .cta-boxes-wrapper .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-left: -10%;
}

.page-template-page-promo .cta-boxes-wrapper .col-lg-6:nth-child(even) {
  margin-top: 250px;
}
.page-template-page-promo .cta-boxes-wrapper .col-lg-6:nth-child(odd) {
  margin-top: 0;
}

@media (max-width: 1199px) and (min-width: 768px) {
  .page-template-page-promo .cta-boxes-wrapper .row {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .page-template-page-promo .cta-boxes-wrapper .col-lg-6:nth-child(4n + 1),
  .page-template-page-promo .cta-boxes-wrapper .col-lg-6:nth-child(4n + 3) {
    margin-top: 0;
  }

  .page-template-page-promo .cta-boxes-wrapper .col-lg-6:nth-child(4n + 2),
  .page-template-page-promo .cta-boxes-wrapper .col-lg-6:nth-child(4n + 4) {
    margin-top: 60px;
  }
}

@media (max-width: 1199px) {
  .page-template-page-promo .cta-boxes-wrapper .row {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    row-gap: 50px;
  }

  .page-template-page-promo .cta-boxes-wrapper .row > .col-lg-6 {
    margin: 0 auto;
  }

  .page-template-page-promo .cta-boxes-wrapper .row > .col-lg-6 > .cta-boxed-two {
    width: 95%;
    height: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 40px;
    padding-bottom: 15px;
  }
}

@media (max-width: 991px) {
  .page-template-page-promo .cta-boxes-wrapper .row > .col-lg-6 > .cta-boxed-two {
    height: 600px;
  }
}

@media (max-width: 768px) {
  .page-template-page-promo .cta-boxes-wrapper .row > .col-lg-6 > .cta-boxed-two {
    height: 400px;
  }
}

@media (max-width: 513px) {
  .page-template-page-promo .cta-boxes-wrapper .row > .col-lg-6 > .cta-boxed-two {
    height: 500px;
  }
}

@media (max-width: 767px) {
  .page-template-page-promo .cta-boxes-wrapper .row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-template-page-promo .cta-boxes-wrapper .col-lg-6:nth-child(n) {
    margin-top: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .page-template-page-main .row.service-loop {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.testimonial-one-wrap > .section-heading,
.testimonial-one-wrap > .testimonial-slider-one {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
}

@media (max-width: 1599px) {
  .testimonial-one-wrap > .section-heading,
  .testimonial-one-wrap > .testimonial-slider-one {
    padding-left: 10%;
    padding-right: 10%;
  }
}

@media (max-width: 1399px) {
  .testimonial-one-wrap > .section-heading,
  .testimonial-one-wrap > .testimonial-slider-one {
    padding-left: 7%;
    padding-right: 7%;
  }
}

@media (max-width: 767px) {
  .testimonial-one-wrap > .section-heading,
  .testimonial-one-wrap > .testimonial-slider-one {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media (max-width: 575px) {
  .testimonial-one-wrap > .section-heading,
  .testimonial-one-wrap > .testimonial-slider-one {
    padding-left: 0;
    padding-right: 0;
  }
}

.testimonial-slider-one {
  width: 100%;
  overflow: hidden;
}

/* .testimonial-slider-one .single-testimonial-slider {
  width: 100% !important;
  flex: 0 0 100% !important;
  min-width: 100% !important;
} */

.slick-list .draggable {
  padding: 0;
}

.testimonial-slider-one img {
  width: 100%;
  max-width: 350px;
  height: auto;
}

@media screen and (max-width: 992px) {
  .page-template-page-main .row.justify-content-end {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
}

.sert-carousel-arrows {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  margin-top: 70px;
}

.sert-carousel-arrows .slick-arrow {
  display: block !important;
  background: #fff;
  color: var(--swiper-theme-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1 !important;
  visibility: visible !important;
}

.sert-carousel-arrows .slick-arrow:hover {
  background: #83B6EC;
}

.sert-carousel-arrows .slick-disabled {
  opacity: 0.5 !important;
  cursor: not-allowed;
}

body > section.services-area.bg-color-grey > div > div.row.service-loop > div > a {
  height: 360px;
}

html
  body.page-template-page-vacancy
 .cta-text.cta-text-black
  * {
  color: var(--color-black) !important;
    color: var(--color-black) !important;

}

html
  body.page-template-page-vacancy
  > .cta-boxes-wrapper
  > .container
  > .row
  > .col-lg-6
  > .cta-boxed-two.vacancy-item
  > .cta-text
  ul {
  list-style: disc !important;
  list-style-type: disc !important;
}

@media (max-width: 991px) {
 
    .cta-boxed-two.vacancy-item {
    padding: 0;
    height: 510px;
    padding: 20px;
  }

  .cta-boxed-two .template-btn {
    margin: 0 auto;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .cta-boxed-two .cta-title {
    font-size: 24px;
  }
}

.page-template-page-reviews .text-center {
  margin-top: 30px;
}
.mobile-off-canvas-panel .contact-us ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.mobile-off-canvas-panel .contact-us li {
    position: relative;
    padding-left: 50px; 
    margin-bottom: 15px;
    width: 100%;
}

.mobile-off-canvas-panel .contact-us li:nth-last-child(1),
.mobile-off-canvas-panel .contact-us li:nth-last-child(2) {
    display: inline-block;
    width: auto;
    padding-left: 0; 
    margin: 0 10px;
}

.mobile-off-canvas-panel .contact-us li:nth-last-child(1) i,
.mobile-off-canvas-panel .contact-us li:nth-last-child(2) i {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    margin: 0 auto;
}

.mobile-off-canvas-panel .contact-us li:nth-last-child(1) button,
.mobile-off-canvas-panel .contact-us li:nth-last-child(2) button {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}




/* Стили для карусели сертификатов */
.testimonial-slider-one {
    position: relative;
    padding: 0 15px;
}

.single-testimonial-slider {
    padding: 10px;
    text-align: center;
}

.sert-item {
    padding: 15px;
    border-radius: 10px;
    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
}

.sert-item:hover {
    -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
            transform: translateY(-5px);
}

.sert-item img {
    max-height: auto;
    margin: 0 auto;
    border-radius: 5px;
    max-width: 350px;
    width: 100%;
}



/* Адаптивность для мобильных */
@media (max-width: 991px) {
    .sert-item img {
        /* max-width: 100%; */
    }
    
    .testimonial-slider-one {
        padding: 0 10px;
    }
}

@media (max-width: 767px) {

    
    .col-lg-10 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sert-item img {
margin: 0;
}

    .testimonial-slider-one {
        padding: 0;
    }
}


/* Исправление для сертификатов */
.testimonial-slider-one .slick-track {
    /* gap: 20px; */
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    
}

.testimonial-slider-one .slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0) !important;
    -ms-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
}

.testimonial-slider-one .slick-list, .slick-track{
  min-width: 100% !important;
}

.testimonial-slider-one .single-testimonial-slider {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    -webkit-transition: -webkit-transform 0.3s ease !important;
    transition: -webkit-transform 0.3s ease !important;
    -o-transition: transform 0.3s ease !important;
    transition: transform 0.3s ease !important;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease !important;
}



/* Контейнер для стрелок */
.sert-carousel-arrows {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    margin-top: 70px !important;
    gap: 20px !important;
}

.swiper-button-next::after, .swiper-button-prev::after {
  display: none;
}


.slick-hidden {
  display: block !important;
}

.banner_subtitle {
  color: var(--color-primary);
margin-bottom: 10px;
}

.header-phone {
  color: var(--color-primary);
}

.wpcf7-form-control-wrap {
  width: 100%;
}

@media (max-width: 1399px) {
  .template-header .site-menu.menu-gap-left {
    margin-left: 0;
  }
  .header-phone {
    font-size: 14px;
  }
}