*:not(i) {
  margin: 0;
  padding: 0;
}

/* inner pages */
body {
  overflow-x: hidden;
}
:root {
  --mainColor: #f7931e;
  --mainColor2: #f0da69;
  --optionalColor: #20265b;
}

.doctor-profile-image {
  position: sticky;
  top: 125px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

textarea {
  resize: none;
}

.doctor-profile-image img {
  border-radius: 50px;
  width: 100%;
  background: #eee;
  padding: 2rem;
}

.doctor-profile-desc {
  padding-left: 10px;
}

.doctor-profile-desc .top-info-content {
  background-color: #b3c8ff;
  padding: 40px;
  border-radius: 30px;
  margin-bottom: 25px;
}

.doctor-profile-desc .top-info-content .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.doctor-profile-desc .top-info-content .content .title {
  margin-right: 25px;
}

.doctor-profile-desc .top-info-content .content .title h3,
.doctor-profile-desc .top-info-content .content .title .h3 {
  font-size: 22px;
  margin-bottom: 0;
}

.doctor-profile-desc .top-info-content .content .title span {
  display: block;
  margin-top: 5px;
}

.doctor-profile-desc .default-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  background-color: #fcd3bf;
  color: var(--optionalColor);
  border-radius: 50px;
  padding: 15px 30px;
  position: relative;
  margin-right: 50px;
  transition: 0.6s;
}

.default-btn:hover::before {
  background-color: var(--mainColor2);
  color: var(--optionalColor);
  right: 0;
  opacity: 0;
}

.default-btn::before {
  position: absolute;
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  height: 52px;
  width: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 50px;
  background-color: #fcd3bf;
  color: var(--optionalColor);
  transition: 0.6s;
  font-size: 22px;
  opacity: 1;
}

.default-btn::after {
  position: absolute;
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  height: 52px;
  width: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 50px;
  background-color: #fcd3bf;
  color: var(--optionalColor);
  transition: 0.6s;
  font-size: 22px;
  opacity: 0;
}

.default-btn:hover::after {
  opacity: 1;
  visibility: visible;
  background-color: var(--mainColor2);
  color: var(--optionalColor);
  left: -50px;
  opacity: 1;
}

.doctor-profile-desc .top-info-content .bottom .phone-btn {
  display: flex;
  align-items: center;
}

.doctor-profile-desc .top-info-content .bottom .phone-btn .icon {
  margin-right: 10px;
}

.doctor-profile-desc i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50px;
  background-color: #ffffff;
  font-size: 15px;
  transition: 0.6s;
}

.doctor-profile-desc .top-info-content .bottom {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.doctor-profile-desc .profile-info-content {
  background-color: #fcd3bf;
  padding: 40px;
  border-radius: 30px;
  margin-bottom: 25px;
}

.doctor-profile-desc .profile-info-content p {
  font-size: 15px;
}

.doctor-profile-desc .profile-info-content h4,
.doctor-profile-desc .profile-info-content .h4 {
  font-size: 17px;
  margin-top: 30px;
  margin-bottom: 18px;
}

.swiper.doctorsfull {
  padding: 2rem 2rem 0 2rem;
  background: lightblue;
  border-radius: 30px;
}

.swiper.doctorsfull h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.service-right {
    position:relative;
    float: right;
    width: 50%; 
    box-sizing: border-box; 
    padding-left: 20px;
}

.full_gallery_works {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.full_gallery_works img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  position: relative;
  margin: 0;
  cursor: pointer;
}

.full_gallery_works p {
  position: relative;
  height: 300px;
}

.full_gallery_works p::before {
  content: "";
  top: 0;
  height: 0;
  width: 100%;
  background: #5bc0eb63;
  position: absolute;
  transition: 0.4s all ease;
}

.full_gallery_works p:hover::before {
  height: 100%;
}

.noimg img {
  display: none;
}



.service_info {
  position: absolute;
  bottom: 30px;
  left: 0px;
  gap: 1rem;
  display: flex;
  align-items: center;
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 1rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  max-width: 70%;
}

.service_info > div {
  gap: 0.7rem;
}

.service_info h3 {
  font-size: 19px;
  color: #000;
  font-weight: 600;
}

.service_full_desc {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 14px;
  color: #f5f5f5;
}

.service_info img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 0.6rem;
  background: #fff;
  padding: 0.6rem;
}

.service-left h2 {
  color: #5bc0eb;
  font-size: 15px;
  font-weight: 600;
}

.service-left p {
  line-height: 2;
}

.service-right img.hexa_img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  clip-path: polygon(
    50% 0%,
    80% 12%,
    100% 35%,
    100% 70%,
    100% 100%,
    50% 100%,
    0 100%,
    0% 70%,
    0% 35%,
    20% 12%
  );
}

#innerFull.innerBlogs img {
  width: 100%;
  height: 400px;
  margin-bottom: 1rem;
  object-fit: cover;
}

.blog-card {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 0.5rem;
}
#logo a{
    display: inline-block;
    padding-top:25px;
}
.bottom-logos-infos {
  padding: 0.5rem 0;
  border-top: 1px solid #eee;
}

.bottom-logos-infos a {
  color: #fff;
  transition: 0.4s all ease;
  background: #5bc0eb;
  padding: 0.5rem 1rem;
  border-radius: 0.6rem;
  border: 1px solid transparent;
}

.bottom-logos-infos a:hover {
  background: transparent;
  border: 1px solid #5bc0eb;
  color: #000;
}

.blog-img {
  height: 300px;
  margin-bottom: 1rem;
}

.blog-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.blog-desc {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 2rem;
}

.blog-desc span {
  font-size: 14px;
  text-transform: lowercase;
}

.blog-desc h2 {
  font-size: 21px;
  font-weight: 600;
}

.blog-desc p {
  font-size: 15px;
  display: -webkit-box;
  color: #aeaeae;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

#blogs .col-lg-4:nth-child(3) .blog-img {
  height: 400px;
}

.bottom-logos-infos span {
  color: #eee;
  font-size: 14px;
}

.about_right b {
  font-weight: 600;
}

.about_left {
  height: 600px;
  width: 50%;
  position: relative;
}

.about_left::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(/img/dots-black.svg);
  top: -7.5%;
  left: -7.5%;
  right: 12.5%;
  bottom: 12.5%;
  z-index: 0;
  opacity: 0.8;
}

.about_big_img {
  height: 100%;
  position: relative;
  margin-right: 4rem;
  box-shadow: 1.25rem 1.375rem 4.75rem 0rem rgba(0, 0, 0, 0.22) !important;
}

.about_right h2 {
  margin-bottom: 40px;
}

.about_right p {
  font-weight: 300;
  font-size: 15px;
  line-height: 2;
}

.about_little_img {
  max-width: 360px;
  margin-top: -60% !important;
  margin-left: 40% !important;
  position: relative;
  z-index: 2;
  box-shadow: 1.25rem 1.375rem 4.75rem 0rem rgba(0, 0, 0, 0.22) !important;
  height: 425px;
}

.about_left img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}

.about_right {
  width: 41.66666667%;
  margin-left: 3%;
}

.about_right img {
  display: none;
}

#innerContent,
.innerStatic {
  padding: 2rem 0;
}
#innerContent .serviceSide {
    width: 32%;
    
}
.serviceSideImgBox {
    height: 300px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0 2px 8px 0 rgb(0 0 0 / 6%);
}

#innerContent .serviceSide h2 {
    color:#000;
    font-size: 18px;
    margin-bottom: 1rem;
}
.serviceSideTitle {
    box-shadow: 0 2px 8px 0 rgb(0 0 0 / 6%);
    padding: 20px 20px 15px;
    font-weight: 500;
    cursor: pointer;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.serviceSideImgBox img {
    width: 100%;
    height: 100%;
    object-fit:cover
}
#innerContent .vadentBlog {
    width: 32%;
    box-shadow: unset;
}
.speedbar {
  height: 100%;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: start;
  color: #0006;
}

.speedbar a {
  color: #247192;
}

.upper_side {
  background: #e4e4e4;
  height: 30vh;
  background: url(/img/czina-implantacziyi-zuba.jpg) center/cover;
}

.upper_side h2 {
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 32px;
}

.feedback_contents {
  min-height: 850px;
  padding: 2rem 0;
  position: relative;
  margin: 0 auto;
  margin-top: -200px;
  width: 100%;
}

.feedback_img {
  height: 500px;
  width: 1000px;
  position: absolute;
  right: 0;
  bottom: 30px;
}

.feedback_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feedback_form {
  background: #fff;
  position: absolute;
  top: 26%;
  padding: 4rem 3rem;
  min-width: 600px;
  text-align: center;
  z-index: 4;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  min-height: 500px;
}

.feedback_form h2 {
  font-size: 32px;
  margin-bottom: 1rem;
}

.feedback_form input[type="text"] {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 1px solid #eee;
}

.feedback_form textarea {
  width: 100%;
  border: 1px solid #eee;
  padding: 0.5rem;
  resize: none;
}

.feedback_form input[type="submit"] {
  background: #5bc0eb;
  color: #fff;
  width: 100%;
  margin-top: 1rem;
  border: none;
  padding: 0.5rem;
  border-radius: 0.2rem;
}

.feedback_infos {
  position: absolute;
  right: 0;
  background: #5bc0eb;
  color: #fff;
  padding: 2rem 3rem;
  min-width: 1000px;
  z-index: 5;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.feedback_info {
    line-height: 1.8rem;
  display: flex;
  flex-direction: column;
}

.feedback_info h4 {
  font-size: 22px;
}

/* inner pages */

#services,
#gallery {
  padding: 5rem 0;
}

#doctors,
#blogs {
  padding-bottom: 3rem;
}

#vadentBlogs {
  padding-bottom: 60px;
}
.vadentBlog {
  margin-left: 15px;
}

.vadentBlog a {
  display: inherit;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.09), 0 3px 6px rgba(0, 0, 0, 0.05);
  padding: 30px 30px 20px;
  border-radius: 8px;
  position: relative;
}
.vadentBlog img {
  width: 100%;
  height: 100%;
}
#vadentBlogs .owl-nav {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
}
#vadentBlogs .owl-nav .owl-prev {
  margin-right: 20px;
}
#vadentBlogs .owl-nav button {
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid #f5f5f5;
  color: #c0c0c0;
  background-color: transparent;
  -webkit-transition: 300ms all ease;
  -moz-transition: 300ms all ease;
  -o-transition: 300ms all ease;
  transition: 300ms all ease;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#vadentBlogs .owl-nav button:hover {
  background-color: #dbdbdb;
  color: #fff;
}
.vadentBlogLogo {
  width: 30%;
  position: absolute;
  left: 0px;
  height: 80%;
  top: 10px;
}
.vadentBlogLogo img {
  object-fit: contain;
  box-shadow: 0px 0px 1px #0004;
  padding: 10px;
}
.blogsBox .owl-carousel .owl-stage-outer {
  padding: 55px 0px 10px;
}
.info-box {
  position: relative;
  height: 100px;
  display: flex;
  justify-content: space-between;
}
.vadentBlog .blogImg {
  width: 60%;
  position: absolute;
  right: 0;
  height: 100%;
  padding-left: 15px;
  border-left: 1px solid #0003;
}

.vadentBlog .blogImg p {
  width: 100%;
  height: 100%;
}
.vadentBlog .blogImg img {
  border-radius: 5px;
  object-fit: cover;
}
.back_services {
  cursor: pointer;
}
.vadentBlog h5 {
  font-weight: 300;
  color: #000;
  height: 44px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 150%;
}
.sectionTitle h2,
#advantages h2,
#dcSection h2,
#homeServices h2,
#vadentBlogs h2 {
  margin-bottom: 2rem;
  text-align: center;
}
#vadentBlogs h2 {
  margin-bottom: 0px;
}
a {
  color: #fff;
}

.modal-dialog {
  max-width: 70%;
}

.modal-texts {
  position: relative;
}

#tooth-selector_radio,
.modal-texts p {
  opacity: 0;
}

.modal-texts h1 {
  opacity: 0;
  height: 70px;
  width: 100%;
}

.all-modal-bodies {
  display: flex;
  align-items: center;
  padding: 2rem 1rem;
}

.modal-body {
  padding-top: 0;
}

.modal-body .row {
  row-gap: 1.5rem;
}

.modal-body :is(input, select, textarea) {
  width: 100%;
  padding: 10px 20px;
  border: 2px solid #e6ecf2;
}

.modal-body textarea {
  height: 160px;
  padding: 20px;
}

.modal-body button {
  position: relative;
  letter-spacing: 1px;
  font-size: 18px;
  text-transform: capitalize;
  text-decoration: none;
  padding: 1em 2.5em;
  display: inline-block;
  border-radius: 6em;
  transition: all 0.2s;
  width: 100%;
  border: 1px solid #000;
  font-weight: 500;
  color: black;
  background-color: white;
}

.modal-body button:hover {
  background: #5bc0eb;
  color: #fff;
  border: 1px solid transparent;
}

.modal-body button::after {
  background-color: #fff;
}

.modal-body button::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

#tooth-selector_radio {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.modal-content input[type="radio"] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

.modal-content input[type="radio"]:checked + label {
  background-color: #594f4e;
  color: #ff7592;
  box-shadow: none;
}

input[type="radio"]:focus + label {
  outline: 5px solid #ff7592;
}

.modal-content label {
  background-color: white;
  padding: 1ch;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

#mouth-anims {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 100%;
  /*z-index: -10;*/
}

#mouth-anims.active {
  z-index: 10;
}

#mouth-anims-u-incisor-r,
#mouth-anims-u-incisor-l,
#mouth-anims-u-canine-r,
#mouth-anims-u-canine-l,
#mouth-anims-u-premolar-r,
#mouth-anims-u-premolar-l,
#mouth-anims-u-molar-r,
#mouth-anims-u-molar-l {
  cursor: pointer;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
}

#incisor,
#canine,
#premolar,
#molar {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(-10px -10px 100px rgba(0, 0, 0, 0.1));
}

.button__btn {
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  color: #fff;
  border-radius: 12px;
  background-color: #5bc0eb;
}




.logo {
  width: 168px;
}

.logo img {
  max-width: 100%;
}
#mobleHeader {
  display: none;
}
.header_inner {
  display: flex;
  justify-content: space-between;
}

.socials {
  display: flex;
  gap: 0.5rem;
}

.header_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.header_top .socials a {
  position: relative;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 24px;
  height: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header_top .socials svg {
  z-index: 2;
  width: calc(100%);
  height: calc(100%);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  border-radius: 50%;
  background: #5bc0eb;
  padding: 5px;
  fill: #fff;
}

.phone-number {
  display: flex;
  align-items: center;
}

header .navbar {
  margin-top: 14px;
  padding: 0;
}

header .navbar > ul {
  display: flex;
}

header .navbar > ul > li:hover > a {
  background-color: #5bc0eb;
  color: #fff;
}

nav.navbar {
  display: none;
}

header .navbar > ul > li > a {
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  position: relative;
  display: inline-block;
  padding: 20px 14px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 1px;
}

.phone-number__white-title {
  color: #000;
}

.phone-number__digits {
  font-weight: 600;
  color: #000;
}

/* slider */

#homeServices {
  margin-top: 3rem;
}
.serviceSlick {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.serviceBox .servTitle {
  box-shadow: 0 2px 8px 0 rgb(0 0 0 / 6%);
  padding: 20px 20px 15px;
  font-weight: 500;
  cursor: pointer;
}
.serviceBox {
  width: 32%;
  border-radius: 6px;
  box-shadow: 0 2px 8px 0 rgb(0 0 0 / 6%);
}
.serviceBox .servTitle h3 {
  font-size: 18px;
  margin-bottom: 1rem;
}
.serviceBox .servTitle p {
  color: #0007;
  white-space: nowrap; 
  overflow: hidden; 
  text-overflow: ellipsis; 
}
.homeservices_all {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
}
.serviceSlick img {
  object-fit: cover;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  width: 415px !important;
  height: 300px;
}
.xidmetler_card_about:hover,
.xidmetler_card_about.active {
  border: 1px solid #5bc0eb;
  background: transparent;
  color: #000;
}

.xidmetler_card_about {
  cursor: pointer;
  transition: 0.5s all ease;
  display: flex;
  align-items: center;
  background: #5bc0eb;
  border: 1px solid transparent;
  padding: 0.5rem 10px;
  color: #fff;
  gap: 1rem;
  border-radius: 8px;
}

.xidmetler_card_icon img {
  width: 45px;
  height: 45px;
  mix-blend-mode: multiply;
}

.service_details {
  display: flex;
  gap: 1rem;
  padding-top: 3rem;
}
.service_details .service_details_text {
  width: 90%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: start;
}

.service_details_imgs {
  width: 50%;
}

.service_details_imgs img {
  width: 50%;
}
#homeAdvantages {
  background: url(https://img.freepik.com/premium-vector/pattern-with-teeth-dental-health_489094-123.jpg)
    center;
  min-height: 400px;
  height: 400px;
  position: relative;
  margin-top: 4rem;
  box-shadow: rgb(172 172 255 / 27%) 0px 3px 14px 0px;
  border-radius: 1rem;
}

#homeAdvantages::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0000004a;
  border-radius: 1rem;
}

#homeAdvantages h2 {
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 40px;
  position: relative;
  font-size: 50px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
}

.video_section {
  padding-top: 4rem;
}

.video {
  width: 530px;
  position: relative;
  cursor: pointer;
  box-shadow: 0px 10px 26px 0px #c6c6c6;
}

.video video {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  object-fit: cover;
}

.video_desc {
  width: 60%;
}

.video_desc a {
  margin-top: 1rem;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  color: #fff;
  border-radius: 12px;
  background-color: #5bc0eb;
}

.video_desc h2 {
  font-size: 45px;
  font-weight: 600;
}

.slider_advs {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #89b0cd;
  color: #fff;
  padding: 0.5rem 0;
  font-size: 14px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/* doctors */

.swiper.doctors {
  padding-block: 2rem;
}

.doctors.swiper .swiper-slide img,
.doctor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-card {
  height: 400px;
  position: relative;
  transition: 0.4s all ease;
}

#doctors .swiper-slide-active {
  transform: scale(1.2) !important;
  transition: 0.4s all ease;
  z-index: 43732478376274;
}

.doctors-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.doctors-title h2 {
  font-size: 2rem;
}

.doctors-title p {
  color: #bababa;
  font-size: 15px;
}

.doctors-title a {
  color: #fff;
  background-color: #5bc0eb;
  padding: 0.5rem 1.5rem;
  border-radius: 0.3rem;
  width: fit-content;
  transition: 0.4s all ease;
  border: 1px solid transparent;
}

.doctors-title a:hover {
  border: 1px solid #5bc0eb;
  color: #000;
  background-color: transparent;
}

.doctor-desc {
  display: flex;
  flex-direction: column;
  /* gap: .5rem; */
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
  color: #fff;
  white-space: nowrap;
}

.doctor-desc h3 {
  font-size: 22px;
}

.doctor-desc p {
  color: #e9dede;
}

/* services */

.card {
  position: sticky;
  top: 110px;
  /* max-width: 775px; */
  border: none;
  /* margin: 0 auto; */
  flex-basis: 45%;
}

.card__inner {
  will-change: transform;
  background: white;
  border-radius: 14px;
  display: flex;
  overflow: hidden;
  align-items: center;
  box-shadow: 26px 26px 37px -10px rgba(19, 19, 19, 0.08);
  padding: 40px 30px;
  gap: 1.5rem;
  border: 1px solid #5bc0eb;
  border-radius: 0.375rem;
  min-height: 260px;
  transition: 0.4s all ease;
}

.gallery_works .card__inner {
  justify-content: center;
  position: relative;
}

.gallery_works .card__inner::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #5bc0eb;
  z-index: -1;
  opacity: 0.3;
  transition: 0.4s all ease;
}

.gallery_works .card__inner:hover::before {
  opacity: 0.7;
}

.gallery_works .card__inner .card__title {
  color: #fff;
  transition: 0.4s all ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  min-height: 0;
  text-align: center;
}

.gallery_title {
  color: #fff;
  padding: 0.5rem 1rem;
  text-align: center;
  background: #c9c9c9;
  margin-bottom: 0.5rem;
}

.gallery_works .card__inner:hover .card__title {
  transform: translateY(-10px);
}

#innerContent .card__inner:hover {
  background: #5bc0eb;
  /*border: 3px solid #fff;*/
}

#innerContent .card__inner:hover img {
  transform: translateY(-10px);
  filter: invert(1);
}

.cards {
  width: 100%;
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(47%, 1fr));
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.card__image-container {
  display: flex;
  width: 25%;
  flex-shrink: 0;
}

.card__image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: 0.4s all ease;
}

.card__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card__title {
  padding: 0;
  margin: 0;
  font-size: 27px;
  font-weight: 600;
  color: #5bc0eb;
  min-height: 80px;
  transition: 0.4s all ease;
}

#innerContent .card__inner:hover .card__title,
#innerContent .card__inner:hover .card__description {
  color: #fff;
}

.card__description {
  line-height: 1.4;
  font-size: 1rem;
  color: #193f4f;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

/* about */

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
  color: #fff;
  max-width: 750px;
  margin: 0 auto;
  gap: 1.5rem;
  position: relative;
}

.about-content h2 {
  font-size: 2.25rem;
  padding-bottom: 1rem;
  text-align: center;
  position: relative;
}

.about-content h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 70px;
  height: 2px;
  background-color: #5bc0eb;
}

.about-content p {
  font-size: 15px;
  text-align: center;
}

.about-content a {
  background-color: #5bc0eb;
  border: 1px solid transparent;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.2rem;
  transition: 0.4s all ease;
  display: inline-block;
}

.about-content a:hover {
  background-color: transparent;
  border: 1px solid #5bc0eb;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to bottom,
    rgba(39, 39, 60, 0.8) 0%,
    rgba(134, 55, 123, 0.5) 50%,
    rgba(39, 39, 60, 0.8) 100%
  );
  pointer-events: none;
}

@keyframes move_wave {
  0% {
    transform: translateX(0) translateZ(0) scaleY(1);
  }

  50% {
    transform: translateX(-25%) translateZ(0) scaleY(0.55);
  }

  100% {
    transform: translateX(-50%) translateZ(0) scaleY(1);
  }
}

.waveWrapper {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
}

.waveWrapperInner {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
}

.bgTop {
  z-index: 15;
  opacity: 0.5;
}

.bgMiddle {
  z-index: 10;
  opacity: 0.75;
}

.bgBottom {
  z-index: 5;
}

.wave {
  position: absolute;
  left: 0;
  width: 200%;
  height: 100%;
  background-repeat: repeat no-repeat;
  background-position: 0 bottom;
  transform-origin: center bottom;
}

.waveTop {
  background-size: 50% 100px;
}

.waveAnimation .waveTop {
  animation: move_wave 3s infinite;
  -webkit-animation: move_wave 3s infinite;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.waveMiddle {
  background-size: 50% 120px;
}

.waveAnimation .waveMiddle {
  animation: move_wave 10s linear infinite;
}

.waveBottom {
  background-size: 50% 100px;
}

.waveAnimation .waveBottom {
  animation: move_wave 15s linear infinite;
}

/* gallery */

#gallery .swiper-slide {
  height: 450px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#gallery .swiper-button-next {
  right: 4%;
}
#gallery .swiper-button-prev {
  left: 4%;
}
#gallery .swiper-button-next,
#gallery .swiper-button-prev {
  width: 65px;
  height: 65px;
  color: #5bc0eb;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

#gallery .swiper-button-next:after,
#gallery .swiper-button-prev:after {
  font-size: 26px;
}

#call-to-action {
  height: 110px;
  margin-top: 10rem;
}

.footerBgClr {
  background-color: #000;
}

.call-wrapper {
  height: 160px;
  padding: 44px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 0;
  -webkit-box-shadow: 0px -1px 20px 0 rgb(0 0 0 / 12%);
  -moz-box-shadow: 0px -1px 20px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0px -1px 20px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px -1px 20px 0 rgb(0 0 0 / 12%);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  top: -80px;
}

#call-to-action .call-wrapper .img-wrap {
  width: 250px;
  -webkit-transform: translateY(25px);
  -moz-transform: translateY(25px);
  -o-transform: translateY(25px);
  transform: translateY(25px);
  -webkit-transition: 300ms -webkit-transform ease;
  -moz-transition: 300ms -moz-transform ease;
  -o-transition: 300ms -o-transform ease;
  transition: 300ms transform ease;
}

#call-to-action .call-wrapper .img-wrap img {
  width: 100%;
}

.wp-box-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 32px;
  width: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#call-to-action .call-wrapper .wp-box-wrapper .desc {
  width: 50%;
}

#call-to-action .call-wrapper .wp-box-wrapper .desc h3 {
  font-size: 26px;
  line-height: 1.23;
  margin-bottom: 10px;
}

#call-to-action .call-wrapper .wp-box-wrapper .desc p {
  font-size: 14px;
  margin: 10px 0 10px;
  font-weight: 300;
  line-height: 1.31;
}

#call-to-action .call-wrapper .wp-box-wrapper .info-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

#call-to-action .call-wrapper .wp-box-wrapper .info-buttons .custom-btn.wp-btn {
  margin-right: 20px;
  text-transform: lowercase;
  background-color: #64b261;
  color: #fff;
  padding: 10px 26px;
  border: none;
  -webkit-animation: play 4s ease infinite;
  -moz-animation: play 4s ease infinite;
  -o-animation: play 4s ease infinite;
  animation: play 4s ease infinite;
}
@keyframes play {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(100, 178, 97, 0.2);
    -moz-box-shadow: 0 0 0 0 rgba(100, 178, 97, 0.2);
    box-shadow: 0 0 0 0 rgba(100, 178, 97, 0.2);
  }

  1% {
    -webkit-box-shadow: 0 0 0 10px rgba(100, 178, 97, 0.2);
    -moz-box-shadow: 0 0 0 10px rgba(100, 178, 97, 0.2);
    box-shadow: 0 0 0 10px rgba(100, 178, 97, 0.2);
  }
  10% {
    -webkit-box-shadow: 0 0 0 10px rgba(100, 178, 97, 0.2),
      0 0 0 20px rgba(100, 178, 97, 0.1);
    -moz-box-shadow: 0 0 0 10px rgba(255, 7, 64, 0.2),
      0 0 0 20px rgba(100, 178, 97, 0.1);
    box-shadow: 0 0 0 10px rgba(100, 178, 97, 0.2),
      0 0 0 20px rgba(100, 178, 97, 0.1);
  }
  10% {
    -webkit-box-shadow: 0 0 0 15px rgba(100, 178, 97, 0.2),
      0 0 0 30px rgba(100, 178, 97, 0.1);
    -moz-box-shadow: 0 0 0 15px rgba(100, 178, 97, 0.2),
      0 0 0 30px rgba(100, 178, 97, 0.1);
    box-shadow: 0 0 0 15px rgba(100, 178, 97, 0.2),
      0 0 0 30px rgba(100, 178, 97, 0.1);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(100, 178, 97, 0.2);
    -moz-box-shadow: 0 0 0 0 rgba(100, 178, 97, 0.2);
    box-shadow: 0 0 0 0 rgba(100, 178, 97, 0.2);
  }
}

#call-to-action
  .call-wrapper
  .wp-box-wrapper
  .info-buttons
  .custom-btn.contact-btn {
  -webkit-transition: 300ms all ease;
  -moz-transition: 300ms all ease;
  -o-transition: 300ms all ease;
  transition: 300ms all ease;
  padding: 10px 26px;
  text-transform: lowercase;
}

#call-to-action .call-wrapper .wp-box-wrapper .info-buttons .custom-btn {
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -o-border-radius: 24px;
  border-radius: 24px;
  font-size: 16px;
  padding: 0 30px;
  color: #454749;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.footerLnks {
  margin-top: 0;
}

.footerLnks {
  border-bottom: solid 1px #7c404047;
  margin-top: -20px;
}

.footerContent {
  padding-top: 40px;
  padding-bottom: 40px;
}

.socialList {
  padding-right: 0;
}

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}

.list-unstyled {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.textWrapper {
  color: #fff;
}

.textWrapper a {
  color: #fff;
}

.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

.footerContent li a {
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

.socialList .footerContactTxt {
  font-size: 18px;
  padding-top: 9px;
  font-weight: 400;
  color: #fff;
}

.socialList .footerAddressTxt {
  font-size: 14px;
  padding-top: 9px;
  font-weight: 400;
  color: #fff;
  max-width: 70%;
  margin-left: auto;
}

.footerNavLinks {
  padding: 40px 10px 40px 10px;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footerNavLinks .footer-nav a {
  text-decoration: none;
  position: relative;
  color: #fff;
}

.footerNavLinks .footer-nav a::after {
  content: "";
  height: 2px;
  width: 0%;
  position: absolute;
  background-color: #736382 !important;
  display: block;
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  bottom: -4px;
}

.footerNavLinks .footer-nav a:hover:after {
  width: 100%;
}

.footerBottomTxt {
  padding: 35px 10px;
}

.footerBottomTxt .footerBottomFirstCol {
  border-right: solid 1px #e1e1e1;
}

.footerBottomTxt .cl-1 {
  font-size: 14px;
  line-height: 22px;
}

.footerBottomTxt .cl-1 p {
  margin-bottom: 0px !important;
  color: #69737f;
}

.footerBottomTxt .cl-3 {
  font-size: 12px;
  line-height: 23px;
  text-align: left;
  position: relative;
  padding-right: 0px;
  padding-left: 37px;
  color: #bec4cc;
}

a.footer-link {
  color: #000;
}

.footerBottomTxt .cl-3 {
  padding: 0;
}
.doc-desc {
  color: #000;
  padding: 20px 30px;
  text-align: center;
}
.doc-desc p {
    font-size: 17px;
    line-height: 17px;
    opacity:.8;
    margin-top: 10px;
}
.doctrs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 90px;
    column-gap: 10px;
}
.doctrs a {
    display: inline-block;
    height: 400px;
    width: 24%;
}
.doc-card {
    width: 100%;
    height: 100%;
}
.doctrs a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition :all .3s linear;
    object-position: top;
    filter: grayscale(100%);
}
.doctrs a:hover img {
    filter: grayscale(0);
}
.slick-dots {
  bottom: -65px;
}
.slick-dotted.slick-slider {
  margin-bottom: 100px;
}
.slick-dots li button:before {
  font-size: 50px;
  transition: all 0.2s linear;
}
.slick-dots li button:hover:before {
  color: #5bc0eb;
}
.slick-slide {
  margin: 0px 5px;
  cursor: pointer;
}
#dcSection {
  margin-top: 45px;
}
.slick-dots li.slick-active button:before {
  color: #5bc0eb;
}

/*calltoaction*/
#calltoaction {
  position: relative;
}
#callContent a {
  position: absolute;
  z-index: 3;
  padding: 15px 90px;
  border-radius: 25px;
  background: #06a5e9;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -50%);
  transition: all 0.2s linear;
}
#callContent a:hover {
  background: #55beeb;
}
#callBox {
  margin-top: 150px;
  min-height: 400px;
  padding: 110px 40px;
  background: #f7ffed;
  position: relative;
  border-radius: 25px;
}
#callBox h2 {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.1;
  margin: 0 0 20px 0;
  color: #2b2b2b;
}
#callBox p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 25px;
}
.svg-animation {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  overflow: initial;
  transform: translate(-50%, -50%);
}

.circle {
  transform-origin: center;
  transition: transform 1s ease-in-out; 
}

/*header*/

header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: #fff;
}
#headerTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#logo {
  width: 12%;
}
#logo img {
  width: 100%;
}
#contactBox {
  display: flex;
  align-items: center;
}
#contact {
  margin-right: 20px;
}
#socials {
  display: flex;
  align-items: center;
  justify-content: end;
}
.social {
  margin-left: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  transition: all 0.2s;
  box-shadow: 0 0 0 0.5px #fff;
}
.social a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social img {
  width: 60%;
  object-fit: contain;
  filter: brightness(2) invert(1);
}
.social:hover {
  transform: scale(1.2);
  background-color: #5bc0eb;
  box-shadow: 0 0 0 0.5px #5bc0eb;
}
.social:nth-child(2):hover {
  background-color: #25d366;
  box-shadow: 0 0 0 0.5px #25d366;
}
.social:nth-child(3):hover {
  background-color: #e1306c;
  box-shadow: 0 0 0 0.5px #e1306c;
}
.social:nth-child(4):hover {
  background-color: #24a1de;
  box-shadow: 0 0 0 0.5px #24a1de;
}
.social:nth-child(5):hover {
  background-color: #ff0000;
  box-shadow: 0 0 0 0.5px #ff0000;
}
.social:nth-child(6):hover {
  background-color: #d44638;
  box-shadow: 0 0 0 0.5px #d44638;
}
.social:hover img {
  filter: invert(1);
}
#contInput {
  display: flex;
  justify-content: end;
  border-radius: 10px;
  align-items: center;
  padding: 15px 13px;
}
#contNum {
  display: flex;
}
#contInput span {
  font-size: 18px;
  font-weight: 400;
}
#contInput a {
  display: inline-block;
  margin-right: 15px;
  color: #fff;
}
#contInput input {
  padding: 15px;
  font-size: 13px;
  border: none;
  float: left;
  width: 225px;
  background: #f9fafa;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  outline: none;
}
#contInput button {
  padding: 14px 10px;
  background-image: linear-gradient(90deg, #00a3e9 0%, #5bc0eb 100%);
  font-size: 15px;
  border: none;
  border-left: none;
  cursor: pointer;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: all 0.3s linear;
  color: #fff;
}
/* nabBtm */
#headerBtm {
  background-image: linear-gradient(90deg, #00a3e9 0%, #5bc0eb 100%);
}
#navMenu {
  display: flex;
  justify-content: end;
}

#navMenu li a {
  padding: 0px 14px 10px;
  display: inline-block;
  position: relative;
  transition: all 0.3s linear;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
}
#navMenu li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 2px;
  background-color: #03a4e9;
  opacity: 0;
  transition: all 0.2s linear;
}
#navMenu li a:hover,
#contInput button:hover {
  background-color: #03a4e9;
}
#navMenu li:hover a:after {
  opacity: 1;
}
/*slider*/
#slider_wrapper {
  width: 100%;
  height: 570px;
  display: flex;
  overflow: hidden;
  position: relative;
}
.slider_item {
  width: 100%;
  height: 100%;
  position: absolute;
  transition: all 0.3s linear;
}
.slider_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#prev,
#next {
  position: absolute;
  font-size: 25px;
  background-color: transparent;
  text-align: center;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  bottom: 50%;
  cursor: pointer;
  color: #fff;
  opacity: 0.7;
  transition: 0.4s ease;
  border: 4px solid #fff;
  border-radius: 50%;
}
#mobNavAct {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #a8b0af;
    display:none;
}

.navActLogo {
    width: 50%;
}.navActLogo img {
    width: 100%;
    height: 100%;
}
.mobNavNumbs {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mobNavNumbs a {
    font-size: 14px;
}
#prev {
  left: 4%;
}
#next {
  right: 4%;
}
#prev:hover,
#next:hover {
  opacity: 1;
}
/*rc*/

#rc {
  position: fixed;
  z-index: 99;
  right: 0;
  top: 35%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: Arial, Helvetica, sans-serif;
  width: 30px;
}
#rcMenu {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.17);
}
#rcMenu li:not(:last-child) {
  border-bottom: 1px solid #a8b0af;
}
.rcText {
  line-height: 14px;
  position: relative;
  display: flex;
  overflow: hidden;
  width: 0;
  transition: 0.2s;
  align-items: center;
}
.rcText span {
  position: absolute;
  left: 0;
  display: block;
  width: auto;
  padding-right: 12px;
}
#others {
  transition: all 0.3s linear;
}
#others.active {
  height: 300px;
}
.rcImg {
  position: relative;
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
}
.rcImg img {
  width: 70%;
  height: 100%;
  transition: 0.2s;
  object-fit: contain;
}
#rcMenu a {
  position: relative;
  display: inline-flex;
  padding: 10px;
  transition: background-color 0.2s;
  background-color: #fff;
  align-items: stretch;
  font-size: 15px;
  color: #000;
}
#rcMenu li:hover a {
  background-color: #5bc0eb;
  color: #fff !important;
}
#rcMenu li:nth-child(2):hover a {
  background-color: #25d366;
}
#rcMenu li:nth-child(3):hover a {
  background-color: #e1306c;
}
#rcMenu li:nth-child(4):hover a {
  background-color: #24a1de;
}
#rcMenu li:nth-child(5):hover a {
  background-color: #ff0000;
}
#rcMenu li:nth-child(6):hover a {
  background-color: #d44638;
}

/*-----------*/

/*About Section*/


#aboutBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#aboutBox a {
  position: relative;
  display: inline-block;
  padding: 14px 60px 12px 30px;
  font-weight: 500;
  font-size: 18px;
  color: white;
  background-image: linear-gradient(90deg, #00a3e9 0%, #5bc0eb 100%);
  border-radius: 30px;
  border: 0;
  overflow: hidden;
  width: 40%;
}
#aboutBox a::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: calc(50% - 5px);
  right: 30px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#aboutBox a span {
  position: relative;
  z-index: 3;
  display: inline-block;
  margin-bottom: 1px;
  transform: translateZ(0);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#aboutBox a:hover span {
  transform: translate3d(15px, 0, 0);
}
#aboutBox a:hover:before {
  transform: translate3d(45px, 0, 0) scale(0.5);
}
#aboutBox a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #00a3e9 0%, #00a3e9 100%);
  transition: opacity 0.4s ease-in-out;
  opacity: 0;
}
#aboutBox a:hover:after {
  opacity: 1;
}
#aboutContent p {
  font-size: 18px;
  line-height: 150%;
  color: #595959;
  margin-top: 20px;
  margin-bottom: 30px;
}
#aboutContent h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  color: #2b2b2b;
}
#aboutContent svg {
  width: 70px;
  height: 53px;
}
#aboutContent h2:before {
  animation: pulse 3s ease infinite;
}
#aboutContent h2:before {
  content: "";
  position: absolute;
  top: -30px;
  left: -40px;
  z-index: -1;
  width: 90px;
  height: 90px;
  background: linear-gradient(90deg, #2dc0fe 0%, #5bc0eb 100%);
  opacity: 0.8;
  filter: blur(35px);
}
@keyframes pulse {
  50% {
    transform: scale(0.5);
    filter: blur(30px);
  }
}
#corpLocation {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 10px 30px;
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  color: #595959;
  box-shadow: 0px 5px 20px rgba(232, 232, 232, 0.7);
  border-radius: 5px;
  position: absolute;
  top: -25px;
  left: -40px;
  z-index: 2;
}
#corpLocation span:nth-child(2) {
  color: #59595980;
}
.video img {
  width: 100%;
  height: 100%;
}
#videoModal {
  display: none;
  position: fixed;
  width: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}
#videoModal::after {
  content: "";
  position: absolute;
  z-index: 98;
  inset: -100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 98;
}
#videoModal iframe {
  width: 100%;
  position: relative;
  z-index: 99;
  display: inline-block;
  height: 600px;
}
#modalClose {
  position: absolute;
  z-index: 100;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  right: -30px;
  top: -30px;
  cursor: pointer;
}
#modalClose img {
  width: 100%;
  height: 100%;
}


/* review code start bunlari silme */

.reviews {
    margin-top: 90px;
    padding-block: 20px;
    background: url('/img/brand-shapes-mosaic-green_500.svg');
}

.reviews_holder {
    padding-block: 30px 60px;
}

.reviews-title {
    text-transform:uppercase;
    color: #fff;
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    padding-bottom: 32px;
    text-align: center;
}

.reviews-title-mark {
    color: rgb(140 244 190/50%);
}

.swiper-slide.reviews-slide {
    height: 300px;
}

.review-card {
    margin-inline: 12px;
    height: 100%;
    border-radius: 8px;
    background-color: rgb(255 255 255 / 1);
    padding: 24px;
    color: rgb(0 0 0 / 1);
}

.review-date {
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 16px;
}

.review-message {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    font-size: 14px;
    font-weight: 400;
}

.review-user-name {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    font-size: 24px;
    font-weight: 700;
}

.review-card-head {
    display: flex;
    justify-content: space-between;
}

.review-user-image {
    border-radius: 50%;
}

/* review code end */

/*advantage*/
#advantages {
  margin-top: 3rem;
}
#advantageBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#advantageBox > div {
  width: 45%;
}
#advantageBox > div p {
  display: flex;
  background-size: 22px;
  background-position: 0px 5px;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 500;
}
.advantageCheck {
  color: #03ea04;
  font-size: 16px;
}
#advantageBox .advantage {
  width: 23%;
  background: #5bc0eb;
  border-radius: 5px;
  padding: 30px 20px;
  font-size: 18px;
  line-height: 130%;
  color: #fff;
  transition: all 0.3s linear;
  cursor: default;
}
#advantageBox .advantage:hover {
  background-color: #18a4df;
}
#rcPlus {
  display: none;
}
.advantage img {
  width: 45px;
  margin-bottom: 20px;
}
.advantage p {
  line-height: 26px;
}

/*xdmetler*/

.service_details .xidmetlerdesc {
  color: #000;
}

.service_details .swiper-pagination-bullet,
.service_details .swiper-pagination-bullet-active {
  background: #fff;
}
.service_details .swiper {
  width: 100%;
  height: 600px;
}
.service_details .swiper-slide {
  opacity: 0.6;
  overflow: hidden;
  transform: translateX(-50%) scale(0.8) !important;
  transition: all 0.4s linear;
  transition-delay: 0.7s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}

.service_details .swiper-slide-active {
  opacity: 1;
  transform: scale(0.9) !important;
  width: 507px !important;
  z-index: 2 !important;
}
.service_details .swiper-pagination {
  width: fit-content !important;
  position: absolute;
  left: 50% !important;
  color: #000;
  font-size: 20px;
  opacity: 1;
  bottom: 30px !important;
}
.service_details .swiper-pagination span::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  opacity: 0;
  background-color: #000;
  left: 0;
}
.service_details .swiper-pagination span {
  background-color: transparent;
  display: inline-block;
  height: fit-content;
  width: fit-content;
  transition: all 0.3s linear;
  position: relative;
  font-weight: 600;
  margin-left: 15px;
}
.service_details .swiper-pagination-bullet-active {
  transform: scale(1.4);
}
.service_details
  .swiper-pagination
  span.swiper-pagination-bullet-active::after {
  opacity: 1;
}
.service_details_text h1 {
  line-height: 1.05;
  font-size: 3.25rem;
}
.service_details_text p {
  font-size: 1.125rem;
  margin-top: 25px;
  margin-bottom: 30px;
  /*width: 80%;*/
}
.fullService,
.back_services {
  display: inline-block;
  background: #06a5e9;
  color: #fff;
  transition: all 0.2s linear;
  padding: 15px 90px;
  border-radius: 25px;
}
.fullService:hover,
.back_services {
  background: #55beeb;
}
.service_details .swiper {
  display: none;
}
.service_details .swiper.active {
  display: block;
}
.service_details .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*----------------*/

/*hamburger*/
.ham {
    top:15px;
  position: absolute;
  z-index: 9;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  right: 0;
  filter: invert(1);
}
.hamRotate.active {
  transform: rotate(45deg);
  filter: invert(1);
}
.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #000;
  stroke-width: 5.5;
  stroke-linecap: round;
}
.ham8 .top {
  stroke-dasharray: 40 160;
}
.ham8 .middle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}
.ham8 .bottom {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}
.ham8.active .top {
  stroke-dashoffset: -64px;
}
.ham8.active .middle {
  transform: rotate(90deg);
}
.ham8.active .bottom {
  stroke-dashoffset: -64px;
}
#bg_ellipse {
  position: relative;
}
#bg_ellipse g {
  position: absolute;
}
#mobNav {
  position: fixed;
  transition: all 0.3s linear;
  top: 80px;
  right: inherit;
  left: -100%;
  bottom: 0;
  padding: 0px 25px;
}
#mobNavMenu li {
  line-height: 45px;
  font-size: 20px;
}
#mobNav::after {
  content: "";
  position: absolute;
  width: 0;
  top: -80px;
  bottom: 0;
  left: 0;
  background-color: #000;
  z-index: -1;
  opacity: 0.5;
  transition: all 0.3s linear;
}
#mobNav.active {
  left: 0;
  right: 0;
}
#mobNav.active::after {
  width: 100%;
}
#headerBtm::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 90px;
  background-image: url("/img/top-shadow.png");
  background-size: cover;
  background-position: top;
}
#mobileServices {
  display: none;
  flex-wrap: wrap;
  justify-content: space-around;
  row-gap: 20px;
}
.mobileService {
  width: 45%;
  background: #a4cf6d;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 20px;
  text-align: center;
}




.aboutSection h2 {
    margin: 0px 0px 50px;
    text-align:center;
}
.aboutSection h3 {
    text-align:center;
    margin: 20px 0px;
}
.aboutImgBox {
    width: 50%;
    margin:auto;
}
.aboutImgBox img {
    width: 100%;
    height: 100%;
}

.aboutSwiper {
  width: 600px;
  height: 300px;

}
.rentgen .rentgenSwiper{
    width: 600px;
    height: 800px;
}
.rentgen a {
    display: flex;
    flex-wrap: wrap;
}
.rentgenSwiper:hover .swiper-button-next,
.rentgenSwiper:hover .swiper-button-prev{
    opacity: 1;
}
.rentgen .serviceSideTitle {
    color: #000;
    width: 50%;
    font-weight: 400;
    text-align:justify;
}
.rentgen .serviceSideTitle h2 {
    margin: 0px;
    margin-bottom: 20px;
}
.rentgen .serviceSideImgBox {
    height: 100%;
}
.rentgen .serviceSideImgBox img {
    object-fit: fill;
}
.aboutSwiper img {
    width: 100%;
    height: 100%;
    object-fit:fill;
}
.vadent_advantage .aboutSwiper img {
    object-fit:fill;
}
#headerBtm {
  background: #a8b0af;
}
#descHeader {
  background: #a8b0af;
}
.vadent_advantage {
    margin-top:100px;
}
.vadent_advantage .about{
    display: flex;
    flex-wrap:wrap;
    position:relative;
}
.vadent_advantage .about>div {
    width: 49%;
}
.vadent_advantage .aboutSwiper {
    box-shadow:1.25rem 1.375rem 4.75rem 0rem rgba(0, 0, 0, 0.22) !important;
    height: 600px;
}


.fsw {
    font-size: 40px;
  font-weight: 600;
  text-shadow: 1px 1px 1px #000;
  text-transform: uppercase;
}
.aboutContent>div {
    margin: 15px 0px;
}
.vadent_advantage .about::after {
    content: "";
    display: block;
    position: absolute;
    background-image: url(/img/dots-black.svg);
    left: 52.5%;
    bottom: 12.5%;
    z-index: 0;
    opacity: 0.8;
    height: 100%;
    width: 100%;
    top: -8%;
}
.swiper-button-next,.swiper-button-prev {
    margin-left: 8px;
    margin-right: 8px;
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 300ms ease 0s;
    right: 0px;
    background-color: #a8b0af;
    color: rgb(255, 255, 255);
    border-radius: 9999px;
    width: 48px;
    opacity: 0;
}
.reviews-swiper:hover .swiper-button-next,
.reviews-swiper:hover .swiper-button-prev {
    opacity: 1;
}
.swiper-button-next::after,.swiper-button-prev::after{
    font-size: 18px;
}
.aboutSwiper:hover .swiper-button-next,
.aboutSwiper:hover .swiper-button-prev {
    opacity: 1;
}
.bigben.fotorama {
    display: none;
    position: fixed;
    z-index: 2222;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.bigben.fotorama.active {
    display: block;
}
.bigben.fotorama::after {
    content: "";
    position:absolute;
    width:100%;
    height: 100%;
    left:0;
    top:0;
    background: #000;
    opacity: .5;
    z-index: 2;
}
.serviceTitleDesc {
    font-size: 16px !important; 
}
.services {
    overflow: hidden;
}
.services .serviceSlider {
    float:left;
    margin: 0px 40px 20px 0px;
    height: 600px;
    box-shadow: 1.25rem 1.375rem 4.75rem 0rem rgba(0, 0, 0, 0.22) !important;
}
.services .parent-services:nth-child(even) .serviceSlider {
    float:right;
    margin: 20px 0px 20px 40px;
}

.newTitle{
    margin-top:40px;
}
.parent-services h4 {
    margin-bottom: 20px;
    text-align:center;
}
.parent-services p {
    text-align: justify;
    line-height: 149%;
}
.parent-services::after {
    content:"";
    display: table;
    clear: both;
}
.services h2 {
    margin: 90px 0px;
}

/*customs*/
.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.custom_container {
    position: relative;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}
.custom_title{
    text-align: center;
    font-size: 36px;
    line-height: 44px;
    position: relative;
    display: block;
    width: 100%;
    color: #000;
    font-family: Montserrat, sans-serif;
    text-transform: capitalize;
    letter-spacing:normal;
    font-weight: 400;
}
.static_img{
    width: 750px;
    height: 500px;
    margin: 28px auto;
}
.static_img img {
    width: 100%;
    height: 100%;
    object-fit:cover;
}
.custom_desc {
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    text-align: justify;
    line-height: 26px;
}
.advt img {
    object-fit: contain;
}
.custom_services h2 {
    margin: 20px 0px;
}

/*-----------------*/
.static_img.obj img {
    object-fit: cover;
    object-position: 0px -205px;
}
@media screen and (min-width: 576px) {
  .feedback_contents {
    max-width: 540px;
  }
}

@media screen and (min-width: 768px) {
  .feedback_contents {
    max-width: 720px;
  }
  #rc:hover .rcText {
    width: 150px;
  }
  #rcMenu li:hover img {
    filter: invert(1);
  }
}

/*langs*/

.langs {
    font-size: 12px;
    font-weight: 700;
    line-height: 11px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    color: #fff;
    border-radius: 13px;
    background-color: #03a4e9
}

.langs.active,.langs:hover {
    color: #03a4e9;
    background-color: #fff
}

.langs.active {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.langs.active .active-lang:hover {
    color: #fff;
    background-color: #03a4e9
}

.langs.active .other-langs-wrapper {
    background-color: #fff;
    width: 50px;
}

.langs.active .other-langs li a:hover {
    color: #fff;
    background-color: #03a4e9
}

.active-lang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 24px;
    height: 24px;
    -webkit-transition: background-color .2s;
    -o-transition: background-color .2s;
    transition: background-color .2s;
    border-radius: 50%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.other-langs-wrapper {
    position: absolute;
    right: 100%;
    overflow: hidden;
    width: 0;
    height: 24px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    border-top-left-radius: 13px;
    border-bottom-left-radius: 13px
}

.other-langs {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 48px;
    color: #900
}

.other-langs li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 24px;
    height: 24px;
    -webkit-transition: background-color .2s;
    -o-transition: background-color .2s;
    transition: background-color .2s;
    border-radius: 50%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #000;
}
@media screen and (min-width: 992px) {
  .feedback_contents {
    max-width: 960px;
  }
}

@media screen and (min-width: 1200px) {
  .feedback_contents {
    max-width: 1140px;
  }
}

@media screen and (min-width: 1400px) {
  .feedback_contents {
    max-width: 1320px;
  }
}

@media screen and (max-width: 768px) {
    #mobLangs {
        display: flex;
        gap:30px;
    }
    #mobLangs li {
        padding: 5px 10px;
        background: #03a4e9;
        color:#ffff;
        border-radius: 4px;
        line-height: initial;
    }
    #mobLangs li a {
        font-size: 18px;
    }
    #contactBox {
        display: none;
    }
    #contNum{
        
    flex-direction: column;
    }
    .custom_container {
        max-width: 300px;
    }
    .custom_title {
        margin-top: 30px;    
        font-size: 26px;
    }
    .custom_desc {
        text-align: start;
    }
    .static_img {
        width: 100%;
        height: 200px;
    }
    .doctrs a {
        width: 100%;
    }
    .rentgen .rentgenSwiper {
        height: 500px;
    }
    .rentgen .serviceSideTitle {
        width: 100%;
    }
    #mobNavAct {
        display: flex;
    }
  #corpLocation {
    left: 0px;
  }
  #aboutBox a {
    width: 100%;
  }
  #prev,
  #next {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
  #arrowLeft {
    display: none;
  }
  #plus.active {
    display: none;
  }
  #arrowLeft.active {
    display: block;
  }
  #rcPlus {
    display: block;
    background: #fff;
    padding: 10px;
  }
  #rcPlus .rcImg {
    width: inherit;
  }
  #others {
    height: 0;
  }
  #homeServices .homeservices_all {
    display: none;
  }
  #mobileServices {
    display: flex;
    flex-wrap: wrap;
  }
  header {
    position: fixed;
    background: transparent;
  }
  #descHeader {
    display: none;
  }
  #mobleHeader {
    display: block;
  }
  #slider_wrapper {
    height: 100vh;
  }
  #aboutContent {
    width: 100%;
    margin-top: 35px;
    text-align: center;
  }
  #advantageBox .advantage {
    width: 100%;
    padding: 20px 15px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    top: 50%;
  }
  .sectionTitle h2,
  #advantages h2,
  #dcSection h2,
  #homeServices h2 {
    font-size: 2rem;
  }
  #aboutContent h2 {
    text-align: center;
    font-size: 2rem;
  }
  #advantages,
  #dcSection {
    margin-top: 3rem;
  }
  #callBox {
    padding: 40px 30px;
    margin-top: 70px;
  }
  #callContent a {
    display: block;
    position: inherit;
    padding: 15px 50px;
    text-align: center;
    transform: inherit;
    /*margin-top: 3rem;*/
  }
  #callBox h2 {
    font-size: 1.5rem;
  }
  #prev,
  #next {
    bottom: 5%;
  }
  #next {
    right: 55%;
  }
  .modal-dialog {
    width: 100%;
  }
  .container {
        max-width: 280px;
    }
}

@media screen and (max-width: 1367px) {
  .navbar ul > li > a {
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .all-modal-bodies {
    flex-direction: column;
  }

  .about-content p {
    padding: 0 1rem;
  }

  .footerBottomTxt .footerBottomFirstCol {
    border: none;
  }

  .slider_left p {
    font-size: 1rem;
  }

  .slider_left h2 {
    font-size: 23px;
  }

  .cards .card {
    flex-basis: 100%;
  }

  .doctor-card {
    height: 300px;
  }

  .about-content h2 {
    font-size: 1.5rem;
  }

  .doctor-desc h3 {
    font-size: 17px;
  }

  .slider_left > div {
    padding: 1rem;
  }

  .footer-nav {
    flex-direction: column;
  }

  .about_left {
    height: 400px;
    width: 100%;
  }

  .gridFull {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
    .reviews-title {
        font-size:1.5rem;
    }
    .review-card {
        margin: 0px;
    }
    .reviews {
        margin-top: 30px;
    }
    .advt img {
        /*object-position: 0px -40px;*/
    }
    .static_img.obj img {
        object-position: 0px -85px;
    }

  #call-to-action {
    height: initial;
    margin-top: 20px;
    padding-top: 20px;
  }
#call-to-action .custom_container {
    max-width: 100%;
}
  .call-wrapper {
    top: 0;
  }

  .service-left {
    order: 1;
  }

  .service_info {
    left: 20px;
    right: 20px;
    max-width: inherit;
  }

  .about_big_img,
  .about_right {
    margin: 0;
  }

  .about_little_img {
    display: none;
  }

  .about_right h2 {
    margin-bottom: 20px;
  }

  .about_right {
    width: 100%;
    padding-top: 2rem;
  }

  nav.navbar {
    display: block;
  }

  .header_right {
    display: none;
  }

  header {
    position: sticky;
    top: 0;
    margin: 0;
  }

  .new_slider:nth-child(odd) .slider_both,
  .new_slider:nth-child(even) .slider_both {
    flex-direction: column;
  }

  .slider_left,
  .slider_right {
    width: 100%;
  }

  .slider_advs .swiper-wrapper {
    align-items: center;
  }

  .call-wrapper {
    height: 206px;
    padding: 1.1rem;
    flex-direction: column;
    top: 0;
    justify-content: center;
  }

  .socialList .footerAddressTxt {
    margin: 0 auto;
  }

  .list-unstyled {
    justify-content: center;
  }

  .img-wrap {
    display: none;
  }

  .wp-box-wrapper {
    flex-direction: column;
    margin: 0;
  }

  #call-to-action .call-wrapper .wp-box-wrapper .info-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  #call-to-action
    .call-wrapper
    .wp-box-wrapper
    .info-buttons
    .custom-btn.wp-btn {
    margin-right: 0;
  }

  #call-to-action
    .call-wrapper
    .wp-box-wrapper
    .info-buttons
    .custom-btn.wp-btn,
  #call-to-action
    .call-wrapper
    .wp-box-wrapper
    .info-buttons
    .custom-btn.contact-btn,
  .socialList .footerContactTxt {
    text-align: center;
  }

  #call-to-action .call-wrapper .wp-box-wrapper .desc,
  #call-to-action
    .call-wrapper
    .wp-box-wrapper
    .info-buttons
    .custom-btn.wp-btn,
  #call-to-action
    .call-wrapper
    .wp-box-wrapper
    .info-buttons
    .custom-btn.contact-btn {
    width: 100%;
  }

  #gallery .swiper-slide {
    height: 500px;
  }
  #gallery .swiper-button-next:after,
  #gallery .swiper-button-prev:after {
    font-size: 17px;
  }
  #gallery .swiper-button-next,
  #gallery .swiper-button-prev {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #videoModal {
    width: 100%;
  }
  #videoModal iframe {
    height: 400px;
  }
  .header_all,
  .footerNavLinks {
    padding: 1rem 0;
  }
  #modalClose {
    right: 0;
  }
  .full_gallery_works {
    grid-template-columns: repeat(2, 1fr);
  }

  .feedback_contents {
    padding: 2rem 0;
  }

  .feedback_contents,
  .feedback_form {
    min-height: initial;
  }

  .feedback_form,
  .feedback_infos {
    min-width: 100%;
    position: unset;
  }

  .feedback_contents {
    margin-top: 0;
  }

  .feedback_img {
    display: none;
  }

  .feedback_form,
  .feedback_infos {
    position: unset;
    padding: 1rem;
  }

  .doctor-profile-desc .profile-info-content,
  .doctor-profile-desc .top-info-content {
    padding: 1rem;
  }

  .service-right {
    height: 400px;
  }
  .vadent_advantage .about>div {
      width: 100%;
  }
  .vadent_advantage {
      margin-top: inherit;
  }
  .services h2 {
      margin:50px 0px;
  }
  .aboutSwiper {
      width: inherit;
  }
  .services .serviceSlider {
      height :500px;
      float: inherit;
      margin: 20px 0px;
  }
  .services .parent-services:nth-child(even) .serviceSlider {
      float: inherit;
      margin: 20px 0px;
  }
  #innerContent, .innerStatic {
      padding: 0px;
  }
  .vadent_advantage .aboutSwiper {
      height: 500px;
  }
  .newTitle {
      margin-top: 0px;
  }
  .swiper-button-next, .swiper-button-prev {
      opacity :1;
  }
  .vadent_advantage .about::after {
    left: 0px;
    height: 50%;
    top: 50%;
  }
  .parent-services p {
      text-align: inherit;
  }
  .fsw {
      font-size: 1.5rem;
  }
  #innerContent .vadentBlog,
  #innerContent .serviceSide {
      width: 100%;
  }
  .vadentBlog {
      margin-left: 0px;
  }
}

@media (max-width: 600px) {
  .card__inner {
    flex-direction: column;
    padding: 40px 0;
  }

  .card__image-container {
    width: 120px;
    height: 120px;
  }

  .card__image {
    aspect-ratio: 16 / 9;
  }

  .card__title {
    font-size: 21px;
    text-align: center;
  }

  .card__description {
    font-size: 16px;
  }

  .card__content {
    padding: 0 1rem;
  }

  .full_gallery_works {
    grid-template-columns: repeat(1, 1fr);
  }
}
#review-id .es-carousel-layout-item {
    height: 200px;
}


.reception img {
    object-fit: cover;
}

.serviceSideImgBox img{
  object-fit:fill;  
}

.reviews-body .eapps-widget-toolbar {
    display: none !important;
}
.reviews-body .es-review-background-container {
    background: #fff !important;
}