.title-block{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.title-block h1{
  margin-bottom: 0;
}
.banner-wrap{
  background: #F0F9FE;
}
.dropdown {
  position: relative;
  width: 20rem;
}

/* Кнопка открытия */
.dropdown__toggle {
  width: 100%;
  padding: 0.75rem 1.25rem;
  border-radius: 0.25rem;
  border: 1px solid #3BC3F3;
  background: #FFF;

  cursor: pointer;
  display:flex;
  justify-content: space-between;
  align-items:center;
}

/* Выпадающее меню */
.dropdown__menu {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding: .63rem 1.25rem;
  display: none;
  z-index: 21;
}

/* Активное состояние */
.dropdown.open .dropdown__menu {
  display: block;
}

/* Верхняя строка */
.dropdown__header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  left: -10rem;
  top: -2.3rem;
  position: absolute;
}
@media (max-width:1024px) {
  .dropdown__header {
    left: 0rem;
    top: -5rem;
  }
}

/* Сброс */
.reset-btn {
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #8E8E8E;
  text-overflow: ellipsis;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 1.2rem */
  gap: .25rem;
  background: none;
  border: none;
  cursor: pointer;
}
#selectedText{
  overflow: hidden;
  color: #212121;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 1.2rem */
  width: 100%;
  display: block;
  text-align: left;
}
/* Список */
.dropdown__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 220px;
  overflow-y: auto;
}

/* Чекбоксы */
.dropdown__list label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
}

.dropdown__list input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid #AAA;
  border-radius: 0.25rem;
  cursor: pointer;
  background: white;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.8rem;
}
.dropdown__list input[type="checkbox"]:checked {
  background-color: #3BC3F3;
  border-color: #3BC3F3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='10' viewBox='0 0 13 10' fill='none'%3E%3Cpath d='M11.6667 1L4.33333 8.33333L1 5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.case-section{
  padding-top: 2.5rem;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.case-section__grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(24rem, 1fr));
  gap: .62rem;
}
.before-after-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1.75 / 1;
  overflow: hidden;
  border-top-left-radius: .625rem;
  border-top-right-radius: .625rem;
}

.before-after-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.after-img {
  clip-path: inset(0 50% 0 0);
  /* transition: clip-path 0.1s; */
  z-index: 2;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: .5rem;
  height: 100%;
  background-color: #38C5F3;
  border-left: 1px solid #38C5F3;
  border-right: 1px solid #38C5F3;
  z-index: 10;
  cursor: ew-resize;
  display: flex;
  align-items: center;
}
.slider-handle__block{
  width: 2.5rem;
  height: 2.5rem;
  background: #38C5F3;
  z-index: 2412;
  position: absolute;
  border-radius: 50%;
  left: -1rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.slider-handle svg{
  height: 100%;
  /* position: absolute; */
  /* left: -1.5rem; */
  cursor: ew-resize;
  /* pointer-events: none; */
}
.examples-section__item__label {
  position: absolute;
  bottom: .75rem;
  padding: .5rem;
  background-color: white;
  color: #3BC3F3;
  font-weight: 400;
  font-size: 0.875rem;
  z-index: 20;
  border-radius: 1rem;
  bottom: .25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 5.75rem;
  height: 4.875rem;
  aspect-ratio: 1;
}

.examples-section__item__label.label-before {

  left: -.5rem;
}

.examples-section__item__label.label-after {
  /* right: .75rem; */
  right: -.5rem;
}
@media (min-width:1100px) and (max-width:1200px) {
  .examples-section__item__label {
    height: 4.5rem;
  }
}
@media (max-width:768px) {
  .examples-section__item__label {
    height: 16vw;
    max-height: 94px;
    width: 4.75rem;
    bottom: 0.5rem;
  }
}
.work-section__item{
  display: flex;
  flex-direction: column;
  border-radius: .625rem;
  height: auto !important;
}
.case-section__grid .work-section__item{
  display: flex;
}
.work-section__item__bottom{
  padding: 1rem 1.25rem;
  border-bottom-right-radius: .625rem;
  border-bottom-left-radius: .625rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  justify-content: space-between;
}
.work-section__item__bottom__top{
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.work-section__item__bottom__top__title{
  font-size: 1.125rem;
  font-weight: 700;
  color: #000000;
}
.work-section__item__bottom__top__info{
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.work-section__item-title{
  color: #212121;
  font-weight: 700;
  font-size: 1rem;
}
.work-section__item-text{
  font-weight: 400;
  font-size: 1rem;
  color: #212121;
}
.work-section__item-braces{
  display: flex;
  gap: .25rem;
  align-items: center;
  flex-wrap: wrap;
}
.work-section__item-braces a{
  color: #3BC3F3;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: underline;
}
.work-section__item__bottom .buttons-block__link{
  background-color: #2173A4;
  border-radius: 0.313rem;
  padding: 0.75rem 1.25rem;
  color: white;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 120%;
  text-align: center;
  text-decoration: none;
  border: 1px solid #2173A4;
}
.work-section__item__bottom .buttons-block__link:hover{
  color: #2173A4;
  background-color: white;
}
.work-section__item__bottom__top__service{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.work-section__item__bottom__top__service span{
  color: #484A4A;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 1.3rem */
  padding: 0.5rem 1rem;
  border-radius: 6.25rem;
  background: #F2F7FC;
  text-align: center;
}
@media (max-width: 768px) {
  .work-section__item__bottom{
    padding: 1rem;
  }
  .work-section__item__bottom__top__title{
    font-size: 1rem;
    /* font-weight: 400; */
  }
  .work-section__item-title{
    /* font-weight: 400; */
  }

  .work-section__item-text,
  .work-section__item-braces a{
    font-size: 0.875rem;
  }
  .work-section__item-text {
    font-weight: 400;
    font-size: 0.875rem;
    color: #212121;

    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 120%;
    max-height: calc(1.2em * 5);
  }
  .work-section__item__bottom .buttons-block__link{
    font-size: 1.25rem;
    padding: 1.06rem 1.25rem;
  }
  .slider-handle__block{
    width: 1.875rem;
    height: 1.875rem;
    left: -.75rem;
  }
  .title-block{
    flex-direction: column;
    gap: 2.25rem;
    align-items: flex-start;
  }
  .case-section__grid{
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  }
  .work-section__item__bottom__top__service span{
    font-size: .875rem;
    padding: 0.375rem 1rem;
  }

}

.case-section__pagination{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 0 auto;

}


.next-btn,
.prev-btn{
  background: linear-gradient(-26deg, #2399D2 43%, #3BC3F3 68%);
  padding: 0.813rem 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.next-btn{
  transform: rotate(180deg);
}
.prev-btn.disabled{
  background: #3BC3F380;
  cursor: not-allowed;
}
.page-pagination{
  display: flex;
  gap: .12rem;
}
.page-pagination-link{
  color: #2173A4;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 1.25rem */
  border-radius: 0.25rem;
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.5rem;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}

.page-pagination-link:hover{
  background: #FFF;
}
.page-pagination-link.active{
  color: white;
  background: #3BC3F3;
}


/* деталка */
.result-detail{
  padding-bottom: 5rem;
}
@media (max-width:768px) {
  .result-detail{
    padding-bottom: 2.5rem;
  }
}
.result-detail .banner1-container1{
  padding: 3.75rem;
  min-height: auto;
  gap: 1.25rem;
}
.banner-top{
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
}
.banner-services{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.banner-services span{
  display: flex;
  padding: 0.5rem 1rem;
  justify-content: center;
  align-items: center;
  border-radius: 6.25rem;
  background: #FFF;
}
.result-detail .banner1-container2{
  position: static;
  margin-top: .5rem;
  width: fit-content;
}
.banner-top h1{
  margin-bottom: 0;
}
.banner-top p:empty{
  display: none;
}
.banner-top a{
  width: fit-content;
}
.result-detail .banner1-img-wrap1{
  max-width: 100%;
  width: 49%;
}
.result-detail .work-section__item{
  height: 58.5% !important;
}
.result-detail .before-after-wrapper{
  border-radius: 0.625rem;
}
.result-detail .banner1-link-wrap{
  margin-top: 1.88rem;
  overflow: auto;
  flex-wrap: nowrap;
}


/*  */
.result-section{
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 3.75rem;
}
.result-section__info{
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 67.3%;
  width: 100%;
}
.result-section .info1-wrap2{
  width: 30.7%;
}
.result-section__info p:empty,
.result-section__info strong:empty{
  display: none;
}
.result-section__info h2,
.title-h2{
  color: #3BC3F3;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 900;
  line-height: 2.45rem; /* 140% */
  letter-spacing: 0.035rem;
  text-transform: uppercase;
  margin: 0;
}
.result-section__info__item{
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.result-section__info__clinic{
  border-radius: 1rem;
  background: #FFF;
  display: flex;
  padding: 1.25rem;
  flex-direction: column;
}
.result-section__info__clinic p{
  margin: 0;
  padding-bottom: 1rem;
}

.work-section__item.mobile{
  display: none;
}

.clinic-img{
  display: flex;
  gap: .62rem;
}
.clinic-img-item{
  width: 100%;
  position: relative;
  padding-bottom: 33.47%;
  border-radius: 1rem;
}
.clinic-img-item img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.clinic-img-item span{
  position: absolute;
  bottom: 1.25rem;
  color: #3BC3F3;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 1.5rem */
  width: 4.375rem;
  height: 4.375rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: #FFF;
}
.clinic-after{
  right: 1.25rem;
}
.clinic-before{
  left: 1.25rem;
}
@media (max-width:768px) {
  .result-section .info1-wrap2{
    display: none;
  }
  .result-detail .banner1-link-wrap{
    margin-top: 2.5rem;
  }
  .result-detail .banner1-link-wrap a{
    color: #65C1EE;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3125rem; /* 140% */
    letter-spacing: 0.01875rem;
    padding: 0.8125rem 1.0625rem;
    white-space: nowrap;
  }
  .result-detail .banner1-container1{
    padding: 1.25rem;
    gap: 0;
  }
  .banner-services span{
    color: #484A4A;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 1.1375rem */
    padding: 0.375rem 1rem;
  }
  .result-detail .banner1-title{
    color: #3BC3F3;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1.625rem; /* 130% */
    letter-spacing: 0.08rem;
    text-transform: uppercase;
  }
  .banner-top{
    gap: .75rem;
    padding-bottom: 1.25rem;
  }
  .work-section__item{
    display: none;
  }
  .work-section__item.mobile{
    display: flex;
  }
  .result-detail .banner1-container2{
    margin: 0;
    margin-top: 1.25rem;
  }
  .result-detail .banner1-text1{
    margin-bottom: 0;
  }
  .result-section__info h2,
  .title-h2{
    color: #3BC3F3;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1.625rem; /* 130% */
    letter-spacing: 0.08rem;
    text-transform: uppercase;
  }
  .result-section__info{
    max-width: 100%;
  }
  .result-section{
    margin-top: 2.5rem;
  }
  .result-section__info__clinic p{
    font-size: 0.875rem;
    padding-bottom: .75rem;
  }
  .clinic-img{
    flex-direction: column;
  }
  .clinic-img-item span{
    font-size: 1rem;
    right: .5rem;
    bottom: .5rem;
    left: auto;
  }
  .clinic-img-item{
    padding-bottom: 61%;
  }

}
/*  */
.single-service__card {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px #27445826;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: space-between;
  height: auto;
  /* max-width: 19.75rem; */
}
.single-service__card__info{
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.single-service__category-list {
  margin-top: 32px;
}

.single-service__card-badge {
  padding: .25rem .75rem;
  border: 1px solid #cccccc;
  border-radius: 1.25rem;
  color: #484A4A;
  font-size: .875rem;
  font-weight: 400;
  width: max-content;
}

.single-service__card-image {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.single-service__card-img {
  object-fit: contain;
  object-position: center;
  height: 8.563rem;

}
.single-service__card-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #484A4A;
  text-transform: unset;
  margin: 0;
}

.result-section__info__item .single-service__card-btn {
  margin-top: .25rem;
  font-weight: 400;
  font-size: 1.25rem;
  width: 100%;
  padding: 0.938rem 2.344rem;
  margin: 0 auto;
  text-align: center;
}
.three{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: .62rem;
}
.result-section__info__item__stages{
  border-radius: 1rem;
  background: #FFF;
  padding: 1.25rem;
  display: flex;
  gap: 1.75rem;
}
.stages-item{
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1;
}
.stages-item__title{
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.stages-item__title h3{
  color: #3BC3F3;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 900;
  line-height: 2.45rem; /* 140% */
  letter-spacing: 0.035rem;
  text-transform: uppercase;
  margin: 0;
}
.stages-item__title span{
  color: #3C3C3C;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 1.5rem */
}
.stages-item__ul{
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding-left: 1.25rem;
}
.stages-item__ul li{
  color: #3C3C3C;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 1.4rem */
  list-style: disc;
}
.stages-item__ul li::marker{
  color: #3BC3F3;
}

/*  */
.site-wrap{
  overflow: clip;
}
[id] {
  scroll-margin-top: 12rem;
}
.ourDoctors__item{
  border-radius: 1rem;
  background: linear-gradient(285deg, #3BC3F3 5.22%, #2399D2 94.04%);
  padding: 2.5rem;
  padding-left: 0;
  display: flex;
  gap: .5rem;
  overflow: hidden;
  position: relative;
  margin-top: 1.25rem;
}
.ourDoctors-img-container{
  position: absolute;
  padding-bottom: 56%;
  width: 100%;
  max-width: 22.1875rem;
  bottom: -.89rem;
}
.ourDoctors-img{
  position: absolute;
  /* object-fit: cover; */
  left: 0;
  height: 106%;
  width: 100%;
  bottom: 0rem;
}
.ourDoctors__item-info{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: fit-content;
  max-width: 30rem;
  margin-left: auto;
  z-index: 2;
  /* position: absolute;
  right: 2.5rem; */
}
.ourDoctors__item-info__title{
  border-radius: 1rem;
  background-color: #FFF;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  position: relative;
}
.ourDoctors__item-info__title svg{
  position: absolute;
  bottom: 0;
  left: -.5rem;
}

.ourDoctors__item-info__name{
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding-left: 2rem;
}
.ourDoctors-name{
  color: #FFF;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 1.375rem */
}
.ourDoctors-experience{
  color: #ADD8EA;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 1.05rem */
}
.ourDoctors__item-info__title span{
  color: #000;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 1.2rem */
}
.ourDoctors__item-info p{
  color: #000;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width:1100px) {
  .ourDoctors-img{
    /* bottom: -5rem;
    left: -2rem; */
    height: 100%;
  }

}
.types-section__title__btn{
  display: none;
}
.custom-slide-btn-prev, .custom-slide-btn-next {
  background: linear-gradient(-26deg, #2399D2 43%, #3BC3F3 68%);
  padding: 0.813rem 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.custom-slide-btn-next {
  transform: rotate(180deg);
}
.custom-slide-btn-prev.swiper-button-disabled, .custom-slide-btn-next.swiper-button-disabled {
  background: #3BC3F380;
  cursor: not-allowed;
}
.work-section__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width:768px) {
  .types-section__title__btn{
    display: flex;
    gap: .5rem;
  }
  [id] {
    scroll-margin-top: 6rem;
  }
  .work-section__title{
    margin-bottom: 1.25rem;
  }
  .three{
    display: flex;
    gap:0;
  }
  .single-service__card{
    padding: 1.5rem 1.25rem;
  }
  .single-service__card-title{
    font-size: 1.25rem;
  }
  .single-service__card-image{
    gap: 1rem;
  }
  .result-section__info__item__stages{
    flex-direction: column;
    gap: 1.25rem;
  }
  .stages-item__title h3{
    font-size: 1.25rem;
    line-height: 1.625rem; /* 130% */
    letter-spacing: 0.035rem;
  }
  .stages-item__title span{
    font-size: 1.125rem;
    line-height: 120%;
  }
  .stages-item__ul{
    padding-left: .88rem;
  }
  .stages-item__ul li{
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 140%;
  }
  .ourDoctors-img-container{
    /* bottom: auto;
    top: 0rem; */
    /* max-width: 18.4375rem; */
    padding-bottom: 90%;
    position: relative;
    bottom: -2.2rem;
    margin-top: -6rem;
    left: 50%;
    transform: translateX(-50%);
  }
  .ourDoctors-img{
    height: 100%;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .ourDoctors__item-info__title svg{
    top: -.25rem;
    left: 0.75rem;
    transform: rotate(150deg);
  }
  .ourDoctors__item-info{
    max-width: 100%;
    padding: 0;
    /* padding-top: 17rem; */
    gap: .75rem;
  }
  .ourDoctors__item-info__title span{
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 120%;
  }
  .ourDoctors__item{
    padding: 1.25rem;
    flex-direction: column;
  }
  .ourDoctors__item-info__name{
    padding-left: 0;
  }
  .ourDoctors-name{
    color: #FFF;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 110%; /* 1.2375rem */
  }
  .ourDoctors-experience{
    color: #ADD8EA;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 120%; /* 1.05rem */
  }
}
@media (max-width:560px) {
  .ourDoctors-img-container{
    margin-top: -7rem;
    padding-bottom: 112%;
  }
}
.tab-section{
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.tab-section__info{
  border-radius: 0.625rem;
  background: #FFF;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.tab-section__info .tabs{
  display: flex;
  gap: 1rem;
  overflow: auto;
}
.tab-section__info .tabs .tabs-item{

  color: #2399D2 !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3125rem; /* 131.25% */
  letter-spacing: 0.01875rem;
  display: flex;
  padding: 0.8125rem 1.0625rem;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 0.375rem;
  cursor: pointer;
  background: #F5F5F5 !important;
  white-space: nowrap;
}
.tab-section__info__item {
  display: none;
}

.tab-section__info__item.active {
  display: block;
}

.tab-section__info .tabs .tabs-item.active,
.tab-section__info .tabs .tabs-item:hover{
  background: #3AC3F3 !important;
  color: #FFF !important;
}
.tab-section__info .before-after-wrapper{
  aspect-ratio: 212/103;
}
.tab-section__info .examples-section__item__label{
  width: 9.25rem;
  height: 9.25rem;
  border-radius: 5rem;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3BC3F3;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 120%; /* 1.8rem */
  bottom: 1.75rem;
}
.tab-section__info .examples-section__item__label.label-before{
  left: 1.5rem;
}
.tab-section__info .examples-section__item__label.label-after{
  right: 2rem;
}
@media (max-width:1200px) {
  .tab-section__info .examples-section__item__label.label-after{
    right: 1.5rem;
  }
  .tab-section__info .examples-section__item__label{
    width: 8.25rem;
    height: 8.25rem;
    bottom: 1.25rem;
  }
}
@media (max-width:1050px) {
  .tab-section__info .examples-section__item__label {
    width: 7.25rem;
    height: 7.25rem;
    bottom: .5rem;
  }
  .tab-section__info .examples-section__item__label.label-after{
    right: 1rem;
  }
}
.banner-block-two{

}
.text-block__consult-block-two{
  position: relative;
  padding-left: 5rem;
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
  border-radius: 1rem;
  background: linear-gradient(175deg, #FFF 12%, #A2E5FF 253.11%);
}
.banner-block-two-info{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 40.25rem;
  width: calc(100% - 35.938rem);
}
.text-block__consult-block-two h4{
  color: #3BC3F3;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.45rem; /* 98% */
  letter-spacing: 0.035rem;
}
.text-block__consult-block-two p{
  color: #252525;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 1.5rem */
  letter-spacing: 0.035rem;
}
.text-block__consult-block-two p a{
  color: #3BC3F3;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.035rem;
  border-bottom: 1px solid #3BC3F3;
}
.text-block__consult-block-two .single-service__card-btn{
  margin-top: 1rem;
  color: #FFF;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 1.5rem */
  width: max-content;
}
.text-block__consult-block-two .img-banner{
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 36rem;
}
.banner-block-img.mobile,
.text-block__consult-block-two .single-service__card-btn.mobile{
  display: none;
}
@media (max-width:991px) {
  .text-block__consult-block-two{
    min-height: 33.3125rem;
    padding: 1.25rem;
    border-radius: 0.59063rem;
    /* background: linear-gradient(285deg, #3BC3F3 5.22%, #2399D2 94.04%), #F8F8F8; */
    margin-top: 4rem;
    display: flex;
    /* align-items: flex-end; */
    flex-direction: column;
    padding-bottom: 0;
    overflow: hidden;
  }
  .text-block__consult-block-two .img-banner{
    /* max-width: 22.47206rem; */
    max-width: 100vw;
    top: -4rem;
    bottom: auto;
    right: auto;
    left: 50%;
    /* transform: translateX(-50%); */
    position: static;
    width: 100vw;
    margin-left: -2.5rem;

  }
  .text-block__consult-block-two h4{
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.875rem; /* 107.143% */
    letter-spacing: 0.035rem;
  }
  .text-block__consult-block-info .top-block p,
  .text-block__consult-block-two p,
  .text-block__consult-block-two p a{
    font-size: 1rem;
  }
  .banner-block-two-info{
    padding: 0;
    gap: .75rem;
    z-index: 2;
    width: 100%;
    max-width: 100%;
  }
  .text-block__consult-block-two .single-service__card-btn{
    margin-top: 0;
    display: none;
  }
  .text-block__consult-block-two .single-service__card-btn.mobile{
    display: inline-block;
    width: 100%;
    text-align: center;
  }
}


/*  */
.doctors-section{
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.doctors-section__grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  gap: .62rem;
}
.doctors-section__item__card {
  position: relative;
  background-color: #f1fafd;
  border: 1px solid #2AA4DB;
  border-radius: 1rem;
  /* padding: 1.25rem; */
  display: flex;
  /* flex-direction: column; */
  gap: 1rem;
  justify-content: space-between;
  overflow: hidden;
  min-height: 21.5rem;
}
.doctors-section__item__card__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 60.5%;
  width: 100%;
  padding: 1.25rem;
  padding-left: 1rem;
  padding-right: 0;
  max-width: 50% !important;
}
.doctor-block {
  position: absolute;
  right: 0;
  top: 20px;
  width: 100%;
  height: 100%;
}
.doctors-section__item__card__info__name {
  color: #252525;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 110.00000000000001%;
}
.doctors-section__item__card__info__spec {
  color: #252525;
  opacity: 0.6;
  font-weight: 400;
  font-size: 0.875rem;
}
.doctors-section__item__card__info .badges {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 0.25rem;
  padding-top: 0.25rem;
  max-width: 94%;
  flex-direction: column;
}

.doctors-section__item__card__info .badges__badge {
  border: 1px solid #2173A4;
  border-radius: 0.5rem;
  padding: 0.25rem 0.5rem;
  /* font-size: 0.625rem; */
  font-size: .563rem;
  color: #2173A4;
  background: transparent;
  white-space: normal;
  width: fit-content;
  z-index: 2;
  width: max-content;
  max-width: 150%;
}
.doctors-section__item__card__photo {
  align-self: flex-end;
  position: relative;
  width: 100%;
  padding-bottom: 38.5% ;
  margin-top: 0;
  max-width: 244px;
  right: 18px;
  top: 0;
  margin-left: auto;
  height: 100%;
}
.doctors-section__item__card__photo img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  overflow: visible;
}
.doctors-section__item__card__photo .video-toggle-btn {
  position: absolute;
  bottom: 2.25rem;
  right: .25rem;
  background-color: #2173A4;
  color: #fff;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 2.875rem;
  overflow: hidden;
  white-space: nowrap;
  padding: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 10rem;
}
.doctors-section__item__card__photo .video-toggle-btn span {
  color: white;
  font-weight: 400;
  font-size: 0.875rem;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.6s ease;
}
.doctors-section__item__card__photo .video-toggle-btn svg {
  min-width: 1.25rem;
  position: absolute;
}
.doctors-section__item__card:hover .video-toggle-btn {
  width: 100%;
  border-radius: 6.25rem;
  justify-content: flex-start;
}
.doctors-section__item__card:hover .video-toggle-btn span {
  opacity: 1;
  transform: translateX(0);
}
.doctors-section__item__card:hover .video-toggle-btn svg {
  position: relative;
}
.doctors-section__item__card__photo .video-toggle-btn:hover {
  background-color: rgb(33, 115, 164) !important;
  color: rgb(255, 255, 255) !important;
}
body.modal-open {
  overflow: hidden;
}

.video-close {
  cursor: pointer;
  z-index: 10000;
}
.video-modal{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.video-modal-content{
  position: relative;
  width: 100%;
  max-width: 80%;
}
.video-modal .video-container iframe{
  width: 100%;
  height: 800px;
}
.video-container{
  /* position: relative;
  padding-bottom: 56.25%;
  height: 0; */
}
.video-close{
  position: absolute;
  top: -30px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

@media (max-width:1400px) {
  .video-modal .video-container iframe{
    height: 600px;
  }
}
.mt-3{
  margin-top: 3.75rem;
}
.img-mobile{
  display: none;
  position: relative;
}
@media (max-width:768px) {
  .mt-3{
    margin-top: 2.5rem;
  }
  .video-modal-content{
    max-width: 100%;
  }
  .video-modal .video-container iframe{
    min-height: 300px;
    max-height: 450px;
    height: 57vw;
  }
  .doctors-section {
    padding-top: 0;
  }
  .card-block__picture.doc-hero-pic {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
  }
  .doctors-section .doctors-block {
    min-height: 33.25rem;
  }

  .result-detail .tab-section .work-section__item{
    /* display: flex; */
  }
  .tab-section__info{
    padding: 1.25rem;
  }
  .tab-section__info .tabs .tabs-item{
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3125rem; /* 131.25% */
    letter-spacing: 0.01875rem;
    padding: 0.8125rem 1.0625rem;
  }
  .img-mobile{
    display: flex;
    flex-direction: column;
    gap: .62rem;
  }
  .img-mobile-item{
    position: relative;
    width: 100%;
    padding-bottom: 57%;
  }
  .img-mobile .after-img,
  .img-mobile .before-img{
    clip-path: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
  }
  .tab-section__info .examples-section__item__label{
    width: 6.375rem;
    height: 6.375rem;
    right: -1rem !important;
    bottom: 1rem;
    left: auto !important;
    font-size: 1rem;
    font-weight: 700;
    line-height: 120%;
  }

  .doctors-section__item__card__info__name{
    font-size: 1.25rem;
  }
  .doctors-section__item__card__info__spec{
    font-size: .75rem;
  }
  .doctors-section__item__card__photo img {
    bottom: 0 !important;
    right: 0;
    width: 90% !important;
  }
  .doctors-section__item__card__photo {
    right: 0 !important;
    max-width: 200px;
  }
  .doctors-section__item__card {
    min-height: 14.625rem;
  }
}
@media (max-width:600px) {
  .tab-section__info .examples-section__item__label{
    width: 4.5rem;
    height: 4.5rem;
    right: -.75rem !important;
    bottom: 0.5rem;
  }
}
@media (max-width:1200px) {
  .result-section .info1-wrap2{
    width: 100%;
    display: none;
  }
  .result-section__info{
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width:1050px) and (max-width:1200px) {
  .ourDoctors-img{
    height: 85%;
  }
}