/*
* ============================
*     ClicheCode Template
* ============================
* Auther : Saran
* https://www.clichecode.com
*
*/

body {
  min-height: 100vh;
}

.slider {
  height: 60px;
  position: relative;
  width: 100%;
  white-space: nowrap;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-top: 25px;
  margin-bottom: 15px;
}

/*  IMPORTANT CODE BELOW */

.slide-track {
  width: calc(150px * 20);
  display: flex;
  -webkit-animation: scroll 20s linear infinite;
          animation: scroll 20s linear infinite;
  justify-content: space-between;
}

.slide-track2 {
  width: calc(150px * 15);
  display: flex;
  -webkit-animation: scroll2 15s linear infinite;
          animation: scroll2 15s linear infinite;
  justify-content: space-between;
}

.slide {
  display: grid;
  place-items: center;
  transition: 0.5s;
  cursor: pointer;
}

.slide button {
  box-shadow: none !important;
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(calc(-150px * 10));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(calc(-150px * 10));
  }
}

@-webkit-keyframes scroll2 {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(calc(-150px * 5));
  }
}

@keyframes scroll2 {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(calc(-150px * 5));
  }
}

@media screen and (max-width: 768px) {
  .slide-track {
    width: calc(80px * 20);
  }

  .slide-track2 {
    width: calc(80px * 15);
  }

  .slide {
    width: 80px;
  }

@-webkit-keyframes scroll {
    0% {
      transform: translateX(0px);
    }

    100% {
      transform: translateX(calc(-80px * 10));
    }
}

@keyframes scroll {
    0% {
      transform: translateX(0px);
    }

    100% {
      transform: translateX(calc(-80px * 10));
    }
}

@-webkit-keyframes scroll2 {
    0% {
      transform: translateX(0px);
    }

    100% {
      transform: translateX(calc(-80px * 5));
    }
}

@keyframes scroll2 {
    0% {
      transform: translateX(0px);
    }

    100% {
      transform: translateX(calc(-80px * 5));
    }
}
}

.bar {
  width: 100%;
  font-size: 18px;
  position: relative;
  overflow-x: hidden;
}

.bar_content {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transform: translateX(10%);
  white-space: nowrap;
  -webkit-animation: move 30s linear infinite;
          animation: move 30s linear infinite;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.bar_content:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.red-m {
  font-weight: 600;
  background: #ededed;
  padding: 5px;
}

.blink_txt {
  color: #008000;
  text-align: center;
  -webkit-animation: animate 1.5s linear infinite;
          animation: animate 1.5s linear infinite;
  font-size: 16px;
  margin-right: 10px;
  background: yellow;
  padding: 7px;
  color: black !important;
}

.wrpper_text {
  position: absolute;
  background: #f88435;
  z-index: 9;
  padding: 5px 15px;
}

.wrpper_text h3 {
  margin-bottom: 4px;
  font-weight: 800;
}

.highlighter {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #fff;
  background: red;
  padding: 5px;
  border-radius: 3px;
  margin-right: 10px;
  -webkit-animation: colorChanger 5s infinite;
          animation: colorChanger 5s infinite;
}

/* Create the animation */

@-webkit-keyframes move {
  to {
    transform: translateX(-100%);
  }
}

@keyframes move {
  to {
    transform: translateX(-100%);
  }
}

@-webkit-keyframes colorChanger {
  0% {
    background-color: red;
  }

  25% {
    background-color: yellow;
  }

  50% {
    background-color: blue;
  }

  75% {
    background-color: green;
  }

  100% {
    background-color: pink;
  }
}

@keyframes colorChanger {
  0% {
    background-color: red;
  }

  25% {
    background-color: yellow;
  }

  50% {
    background-color: blue;
  }

  75% {
    background-color: green;
  }

  100% {
    background-color: pink;
  }
}

.video-bn {
  width: 100%;
}

#welcome-page .banner-social {
  display: inline-grid;
  position: absolute;
  left: 0;
  top: 150px;
  z-index: 9;
}

#welcome-page .banner-social a {
  background: #fff;
  padding: 5px;
  border-bottom: 1px solid #000;
}

#welcome-page .banner-social a:hover {
  background: #e6e4e4;
}

#welcome-page .main-banner {
  position: relative;
  /* Create the animation */
}

#welcome-page .main-banner .bar {
  width: 100%;
  padding: 25px 0;
  font-size: 18px;
}

#welcome-page .main-banner .bar_content {
  display: block;
  /* Important to give the content a width */
  width: 100%;
  transform: translateX(100%);
  /* Animation start out of the screen */
  /* Add the animation */
  -webkit-animation: movenew 60s linear infinite;
          animation: movenew 60s linear infinite;
}

@-webkit-keyframes movenew {
  to {
    transform: translateX(-200%);
  }
}

@keyframes movenew {
  to {
    transform: translateX(-200%);
  }
}

#welcome-page .main-banner .owl-theme .owl-nav.disabled + .owl-dots {
  position: absolute;
  margin-top: 10px;
  top: 150px;
  right: 15px;
}

#welcome-page .main-banner .owl-theme .owl-dots .owl-dot {
  display: table;
  margin: auto;
}

#welcome-page .main-banner .owl-theme .owl-dots .owl-dot span {
  background-color: transparent;
  border: 1px solid #ffffff;
}

#welcome-page .main-banner .owl-theme .owl-dots .owl-dot.active span,
#welcome-page .main-banner .owl-theme .owl-dots .owl-theme .owl-dots .owl-dot:hover span {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
}

#welcome-page .main-banner .owl-theme .header-text {
  position: absolute;
  top: 150px;
  left: 80px;
  z-index: 9;
  color: #fff;
}

#welcome-page .main-banner .owl-theme .header-text .main-header {
  float: left;
  width: 100%;
  text-shadow: 2px 2px #8e8e8e;
  padding-bottom: 30px;
  font-size: 29px;
}

#welcome-page .main-banner .owl-theme .header-text .discription {
  float: left;
  font-size: 65px;
  line-height: 70px;
  text-shadow: 2px 2px #8e8e8e;
  font-weight: 700;
}

#welcome-page .bn-bottom {
  padding: 40px 145px;
  margin-top: 130px;
}

#welcome-page .bn-bottom img {
  width: 30px;
  margin-right: 10px;
}

#welcome-page .bn-bottom h1 {
  text-align: center;
  color: #fff;
  font-size: 16px;
  padding-top: 30px;
  padding-bottom: 10px;
  font-family: gotham-regular;
  display: block;
}

#welcome-page .bn-bottom .bn0 {
  background: #30aab0;
}

#welcome-page .bn-bottom .bn1 {
  background-color: #ffffff;
  display: inline-block;
}

#welcome-page .bn-bottom .bn1 img {
  background: #ffd84f;
  padding: 6px;
  border-radius: 8px;
  width: 35px;
}

#welcome-page .bn-bottom .bn1 h1 {
  color: #000;
}

#welcome-page .bn-bottom .bn1 h1:hover {
  color: #d97640 !important;
}

#welcome-page .bn-bottom .bn2 {
  background-color: #ededed;
  display: inline-block;
}

#welcome-page .bn-bottom .bn2 h1 {
  color: #2f2f2f;
}

#welcome-page .bn-bottom .bn2 h1:hover {
  color: #d97640 !important;
}

#welcome-page .bn-bottom .bn3 {
  background-color: #4e3e73;
  display: inline-block;
}

#welcome-page .bn-bottom .bn3 h1:hover {
  color: #d97640 !important;
}

#welcome-page .bn-bottom .bds1 {
  padding: 10px 0px;
}

#welcome-page .bn-bottom a {
  float: left;
  width: 100%;
  height: 100%;
}

#welcome-page #contactform {
  width: 400px;
  right: -405px;
  height: 500px;
  margin: 25px 0;
  position: fixed;
  box-shadow: 0 0 12px 0 #333;
  top: 0;
  z-index: 9;
}

#welcome-page #contact-button {
  width: 5%;
  padding: 7% 3%;
  cursor: pointer;
  margin-right: 400px;
  margin-top: 40px;
  font-size: 23px;
  color: white;
  position: absolute;
  right: 0;
}

#welcome-page #contactform,
#welcome-page #contact-button {
  background-color: #1d1f20;
  border-radius: 0 15px 15px 0;
  border: 5px solid #666666;
  border-left: none;
}

#welcome-page .rotated-text {
  display: inline-block;
  white-space: nowrap;
  transform: translate(1.1em, 0) rotate(90deg);
  transform-origin: 0 0;
  /* IE9+ */
  -ms-transform: none;
  -ms-transform-origin: none;
  /* IE8+ */
  -ms-writing-mode: tb-rl;
  /* IE7 and below */
  *writing-mode: tb-rl;
}

@-webkit-keyframes animate {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
  }
}

@keyframes animate {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
  }
}

#welcome-page .rotated-text:before {
  content: "";
  float: left;
  margin-top: 100%;
}

#welcome-page form {
  width: 100%;
  padding: 20px;
}

#welcome-page form input {
  display: block;
  border: none;
  width: 300px;
  height: 35px;
  margin: 15px 30px;
}

#welcome-page form textarea {
  width: 300px;
  margin: 40px 30px;
  height: 170px;
}

#welcome-page form textarea,
#welcome-page form input {
  border: 3px solid #666666;
  border-radius: 5px;
  background: #f2f2f2;
}

#welcome-page .mb-neu__icon {
  display: none;
}

#welcome-page .news-section {
  padding: 40px 130px;
  padding-top: 50px;
}

#welcome-page .news-section .pl-pad {
  padding: 0px 30px;
}

#welcome-page .news-section .pl-pad .news-cn {
  border: 1px solid #a691d4;
  border-radius: 30px;
  padding: 25px;
  height: 404px;
  overflow: hidden;
}

#welcome-page .news-section h1 {
  padding-bottom: 10px;
  font-family: gotham-regular;
  padding-left: 115px;
  position: relative;
  margin-bottom: 25px;
}

#welcome-page .news-section h1 img {
  position: absolute;
  left: 0;
}

#welcome-page .news-section ul {
  padding: 0;
  height: 404px;
}

#welcome-page .news-section ul li {
  list-style-type: none;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 10px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  padding-left: 20px;
}

#welcome-page .news-section ul li:hover a {
  color: brown !important;
  border-bottom: 1px solid black;
}

#welcome-page .news-section ul li:hover a i {
  color: black;
  left: -1px;
}

#welcome-page .news-section ul li a {
  color: #213b4d !important;
  font-size: 17px;
  font-weight: 700;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

#welcome-page .news-section ul li a i {
  transition: all 0.3s ease;
  position: absolute;
  left: 0px;
  top: 2px;
  color: #213b4d;
  font-weight: 700;
}

#welcome-page .news-section a.read-more {
  margin-left: 15px;
  border-bottom: 1px solid #4ed5db;
  padding-bottom: 4px;
  font-weight: 700;
  transition: all 0.3s ease;
}

#welcome-page .news-section a.read-more:hover {
  padding-bottom: 6px;
  transition: all 0.3s ease;
  color: #31b96e !important;
  border-bottom: 1px solid #31b96e;
  transition: all 0.3s ease;
}

#welcome-page .news-section a.read-more:hover i {
  top: 3px;
  transition: all 0.3s ease;
  color: #31b96e !important;
}

#welcome-page .news-section a.read-more i {
  padding-left: 5px;
  position: relative;
  top: 1px;
  color: #213b4d;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
}

#welcome-page .news-section .ml-one {
  padding: 0px 30px;
  margin-top: 20px;
}

#welcome-page .news-section .ml-one .bl-sec {
  background: #4e3e73;
  padding: 30px 30px;
  border-radius: 20px;
  margin-top: 30px;
}

#welcome-page .news-section .ml-one .bl-sec p {
  padding: 10px 30px;
  margin-bottom: 0;
  border-radius: 10px;
  min-height: 65px;
  font-size: 18px;
  cursor: pointer;
}

#welcome-page .news-section .ml-one .bl-sec p a {
  color: #ffffff !important;
  text-decoration: underline !important;
  -webkit-text-decoration-color: #ffffffa8 !important;
  text-decoration-color: #ffffffa8 !important;
}

#welcome-page .news-section .ml-one .bl-sec p:hover {
  box-shadow: 0 20px 30px -16px rgba(9, 9, 16, 0.2) !important;
  background-color: #ffffff;
}

#welcome-page .news-section .ml-one .bl-sec p:hover a {
  color: #000 !important;
}

#welcome-page .doctors-section {
  padding: 40px 145px;
}

#welcome-page .doctors-section .pl-adjust {
  padding: 10px 30px;
}

#welcome-page .doctors-section .main-tl {
  text-align: center;
  font-weight: bold;
  padding-bottom: 60px;
}

#welcome-page .doctors-section .ds-sec {
  border: 1.5px solid #cfcdcd;
  border-radius: 30px;
  background: #fff;
  float: left;
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  padding: 30px 0;
}

#welcome-page .doctors-section .ds-sec:hover {
  border: 1.5px solid #4e3e73;
  box-shadow: 0 20px 30px -16px rgba(9, 9, 16, 0.2) !important;
  transform: scale(1.05);
}

#welcome-page .doctors-section .ds-sec:hover .ln-buttons a {
  border: 1px solid #4e3e73 !important;
}

#welcome-page .doctors-section .ds-sec h1 {
  font-size: 20px;
  text-align: center;
  padding: 15px 0px;
  margin-bottom: 0;
  padding-bottom: 0;
  font-family: gotham-regular;
  font-weight: bold;
}

#welcome-page .doctors-section .ds-sec .img-sec {
  padding: 20px;
}

#welcome-page .doctors-section .ds-sec .img-sec img {
  width: 100%;
}

#welcome-page .doctors-section .ds-sec .ln-buttons {
  float: left;
  width: 100%;
  text-align: center;
}

#welcome-page .doctors-section .ds-sec .ln-buttons a.bn-style {
  border: 1px solid #ededed;
  padding: 7px 10px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

#welcome-page .doctors-section .ds-sec .ln-buttons a.bn-style:hover {
  background: #4e3e73;
  color: #fff !important;
  border: 1px solid #4e3e73;
}

#welcome-page .doctors-section .ds-sec p {
  color: #213b4d;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  float: left;
  width: 100%;
  text-align: center;
  padding: 5px 20px;
  font-size: 16px;
}

#welcome-page .special-section {
  padding: 40px 145px;
  padding-top: 0;
}

#welcome-page .special-section .main-tl {
  text-align: center;
  font-weight: bold;
  padding-bottom: 60px;
}

#welcome-page .special-section .special-sec {
  text-align: center;
  margin-bottom: 40px;
  padding: 0px 40px;
}

#welcome-page .special-section .special-sec .img-sec1 img {
  width: 100px;
  transition: transform 0.8s ease-in-out;
}

#welcome-page .special-section .special-sec p {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 18px;
}

#welcome-page .special-section .special-sec h1 {
  font-size: 24px;
  padding-top: 15px;
  margin-bottom: 10px;
  font-family: gotham-regular;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#welcome-page .mc-section {
  margin-top: 80px;
}

#welcome-page .mc-section img {
  width: 100%;
}

#welcome-page .mc-section .fn-doctor img {
  border-radius: 20px;
}

#welcome-page .mc-section .mn-bg {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  height: 400px;
}

#welcome-page .mc-section .left-sec {
  background: #fff;
  box-shadow: 0px 0px 5px 0px #8a868a;
  border-radius: 40px 0px 0px 0px;
  overflow: hidden;
  top: -80px;
  position: absolute;
  left: 60px;
}

#welcome-page .mc-section .left-sec .ab-sec {
  padding: 30px;
}

#welcome-page .mc-section .left-sec .ab-sec img {
  width: 50px;
}

#welcome-page .mc-section .left-sec .ab-sec i {
  color: #999999;
  position: relative;
  top: 2px;
  margin-left: 5px;
  transition: all 0.3s ease;
}

#welcome-page .mc-section .left-sec .ab-sec a:hover i {
  margin-left: 20px;
}

#welcome-page .mc-section .left-sec .ab-sec .content {
  text-overflow: ellipsis;
  overflow: hidden;
}

#welcome-page .mc-section .left-sec .ab-sec h1 {
  font-size: 24px;
  font-family: gotham-regular;
  font-weight: bold;
}

#welcome-page .mc-section .left-sec .ab-sec h1 img {
  margin-top: -40px;
  margin-left: 25px;
}

#welcome-page .mc-section .left-sec .sn-one {
  padding: 0;
}

#welcome-page .mc-section .left-sec .sn-one img {
  width: 100%;
}

#welcome-page .mc-section .left-sec .sn-one .abt-text {
  padding: 20px;
}

#welcome-page .mc-section .left-sec .sn-one .abt-text p {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#welcome-page .mc-section .left-sec .sn-one .abt-text i {
  transition: all 0.3s ease;
}

#welcome-page .mc-section .left-sec .sn-one .abt-text a:hover i {
  margin-left: 20px;
}

#welcome-page .mc-section .list-fea {
  margin-top: 430px;
  padding: 0px 45px;
}

#welcome-page .mc-section .list-fea .fn-doctor {
  margin-bottom: 60px;
}

#welcome-page .mc-section .list-fea .fn-doctor h1 {
  font-size: 16px;
  padding-top: 10px;
  font-family: gotham-regular;
  font-weight: bold;
}

#welcome-page .testimonial-section {
  background-color: #4e3e73;
  color: #ffffff;
  padding: 40px 145px;
  margin-top: 50px;
}

#welcome-page .testimonial-section .map-section {
  border-radius: 15px;
  height: 200px;
  overflow: hidden;
}

#welcome-page .testimonial-section .map-section iframe {
  width: 100%;
  height: 100%;
}

#welcome-page .testimonial-section img {
  padding-bottom: 20px;
}

#welcome-page .testimonial-section .owl-dots {
  margin-top: 30px;
}

#welcome-page .testimonial-section #customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#welcome-page .testimonial-section #customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
  background: #ffffff;
}

#welcome-page .testimonial-section #customers-testimonials.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
}

#welcome-page .testimonial-section #customers-testimonials.owl-carousel .owl-dots .owl-dot span {
  display: inline-block;
  height: 12px;
  border-radius: 100%;
  margin: 0 2px 5px;
  transition: all 250ms ease-out 0s;
  width: 12px;
  border: 1px solid #ffffff;
}

#welcome-page .testimonial-section .video-sec img {
  width: 100%;
  z-index: 1;
  position: absolute;
}

#welcome-page .fs-section {
  padding: 40px 160px;
}

#welcome-page .fs-section .facilities-cn {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #ccc;
}

#welcome-page .fs-section .facilities-cn img {
  width: 100%;
  border-radius: 30px;
}

#welcome-page .fs-section .facilities-cn h1 {
  font-size: 16px;
  padding: 15px 15px 0px 15px;
  font-weight: bold;
  font-family: gotham-regular;
}

#welcome-page .fs-section .facilities-cn p {
  padding: 0px 15px 0px 15px;
}

#welcome-page .d-wrap__l {
  display: none;
}

#welcome-page .alert-danger {
  color: #1d643b;
  background-color: #d7f3e3;
  border-color: #c7eed8;
}

#welcome-page .cronical {
  position: fixed;
  right: 0;
  top: 150px;
  display: grid;
  z-index: 10;
  gap: 7px;
}

#welcome-page a.cronical__anch:first-child {
  background: #ed9367;
}

#welcome-page a.second-edition {
  background: #ed9367;
}

#welcome-page a.cronical__anch:last-child {
  background: #4e3e73;
}

#welcome-page a.cronical__anch {
  padding: 5px 15px;
  color: white !important;
  font-size: 15px;
  font-weight: 600;
  border-radius: 5px 0 0 5px;
}

#welcome-page a.scrm-bn {
  top: 95px;
  background-color: #4e3e73;
  color: #fff !important;
  z-index: 10;
}

#welcome-page .default-bg {
  background-color: #4e3e73 !important;
  color: #fff !important;
}

#welcome-page .floating-icon {
  right: 0;
  top: 200px;
  z-index: 99;
  background-color: #e4b554;
  border-radius: 5px 0 0 5px;
  padding: 8px;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

#welcome-page .scrm-button {
  top: 150px;
  width: 163px;
}

#welcome-page .scrm-button:hover {
  background: #e4b554 !important;
}

#welcome-page .floating-icon span {
  padding: 0 20px 0 10px;
}

#welcome-page .pulse-button {
  border: none;
  box-shadow: 0 0 0 0 #f9a97d;
  background-color: #f9a97d;
  cursor: pointer;
  -webkit-animation: pulse 1.25s cubic-bezier(0.66, 0, 0, 1) infinite;
  animation: pulse 1.25s cubic-bezier(0.66, 0, 0, 1) infinite;
}

#welcome-page .pulse-button:hover {
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
  }
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
  }
}

#welcome-page .floating-icon:hover {
  background-color: #000;
  right: 0;
}

#welcome-page .video-slider button.owl-prev {
  width: 35px;
  background: #a691d4 !important;
  height: 30px;
  font-size: 24px !important;
  color: #fff !important;
}

#welcome-page .video-slider button.owl-next {
  width: 35px;
  background: #a691d4 !important;
  height: 30px;
  font-size: 24px !important;
  color: #fff !important;
}

@media screen and (max-width: 1600px) {
  #welcome-page .bn-bottom {
    padding: 40px 65px;
  }

  #welcome-page .news-section {
    padding: 40px 50px;
  }

  #welcome-page .doctors-section {
    padding: 40px 65px;
  }

  #welcome-page .special-section {
    padding: 40px 65px;
    padding-top: 0;
  }

  #welcome-page .testimonial-section {
    padding: 40px 65px;
  }

  #welcome-page .fs-section {
    padding: 40px 80px;
  }

  #welcome-page .main-banner .owl-theme .header-text .discription {
    font-size: 50px;
  }
}

@media screen and (max-width: 1440px) {
  #welcome-page .special-section .special-sec {
    padding: 0px 20px;
  }
}

@media screen and (max-width: 1365px) {
  #welcome-page #topbar .logo-section .navbar-brand {
    top: 185px;
  }
}

@media screen and (max-width: 1280px) {
  #welcome-page .fs-section {
    padding: 40px 30px;
  }

  #welcome-page .fs-section .facilities-cn h1 {
    font-size: 14px;
  }

  #welcome-page .main-banner .owl-theme .header-text {
    top: 80px;
  }

  #welcome-page .main-banner .owl-theme .header-text .discription {
    font-size: 40px;
  }
}

@media screen and (max-width: 1279px) {
  #welcome-page .news-section {
    padding: 40px 0px;
  }

  #welcome-page .news-section .pl-pad .news-cn {
    padding: 25px 20px;
  }

  #welcome-page .news-section h1 {
    font-size: 21px;
    padding-left: 100px;
    padding-top: 20px;
  }

  #welcome-page .news-section h1 img {
    top: 0;
  }

  #welcome-page .news-section ul li a {
    font-size: 16px;
  }

  #welcome-page .doctors-section {
    padding: 40px 0px;
  }

  #welcome-page .special-section {
    padding: 40px 20px;
    padding-top: 0;
  }

  #welcome-page .special-section .special-sec {
    padding: 0px 0px;
  }
}

@media screen and (max-width: 992px) {
  #welcome-page .fs-section {
    padding: 40px 10px;
  }

  #welcome-page .fs-section div:nth-child(n+3) {
    margin-top: 20px;
  }

  #welcome-page .testimonial-section {
    margin-top: 0px;
  }
}

@media screen and (max-width: 991px) {
  #welcome-page .bn-bottom {
    padding: 40px 15px;
    margin-top: 20px;
  }

  #welcome-page .banner-social {
    display: none;
  }

  #welcome-page .special-col {
    max-width: 50%;
    width: 50%;
    flex: 50%;
  }

  #welcome-page .d-wrap__l {
    display: block;
  }

  #welcome-page .main-banner .bn-bottom {
    padding-left: 0;
    position: unset;
    width: 100%;
  }

  #welcome-page .main-banner .bn-bottom .bn1 {
    border-radius: 0;
  }

  #welcome-page .main-banner .bn-bottom h1 {
    padding-top: 20px;
  }

  #welcome-page .main-banner .bn-bottom img {
    margin: auto;
    display: table;
    margin-bottom: 10px;
  }

  #welcome-page .news-section {
    padding: 40px 15px;
  }

  #welcome-page .news-section .pl-pad {
    padding: 0px 10px;
  }

  #welcome-page .news-section .pl-pad .news-cn {
    padding: 30px;
  }

  #welcome-page .news-section h1 {
    padding-left: 75px;
    font-size: 21px;
    padding-top: 0;
  }

  #welcome-page .news-section h1 img {
    width: 60px;
  }

  #welcome-page .news-section .ml-one {
    padding: 20px;
    border-radius: 20px;
  }

  #welcome-page .news-section .ml-one .col-lg-6:first-child {
    margin-bottom: 30px;
  }

  #welcome-page .testimonial-section {
    padding: 40px 15px;
    margin-top: 0;
  }

  #welcome-page .mc-section {
    margin-top: 0px;
  }

  #welcome-page .mc-section .mn-bg {
    display: none;
  }

  #welcome-page .mc-section .left-sec {
    background: transparent;
    box-shadow: unset;
    border-radius: unset;
    overflow: hidden;
    top: unset;
    position: unset;
    left: unset;
    padding: 0 20px;
  }

  #welcome-page .mc-section .left-sec .ab-sec {
    padding: 30px 0px;
    padding-top: 0;
  }

  #welcome-page .mc-section .left-sec .sn-one .abt-text {
    padding: 60px 40px;
    text-align: center;
  }

  #welcome-page .mc-section .list-fea {
    margin-top: 0px;
    padding: 0;
  }

  #welcome-page .mc-section .list-fea .fn-doctor {
    margin-bottom: 10px;
  }

  #welcome-page .doctors-section {
    padding-top: 0px;
  }

  #welcome-page .doctors-section .main-tl {
    padding-bottom: 15px;
  }

  #welcome-page .doctors-section .pl-adjust {
    padding: 10px 10px;
  }

  #welcome-page .doctors-section .pl-adjust .ds-sec {
    margin-bottom: 0px;
  }

  #welcome-page .special-section {
    padding-bottom: 0;
  }

  #welcome-page .special-section .main-tl {
    padding: 20px 0;
  }
}

@media screen and (max-width: 800px) {
  #welcome-page .news-section .news-cn {
    padding: 0 15px;
  }

  #welcome-page .main-banner .owl-theme .header-text {
    left: 25px;
  }

  #welcome-page .main-banner .owl-theme .header-text .discription {
    font-size: 30px;
    line-height: 40px;
  }
}

@media screen and (max-width: 767px) {
  #welcome-page #welcome-page a.chronicle {
    top: 84px;
  }

  #welcome-page .fs-section {
    padding: 40px 10px;
  }

  #welcome-page .fs-section div:nth-child(n+3) {
    margin-top: 0;
  }

  #welcome-page .main-banner .owl-theme .owl-nav.disabled + .owl-dots {
    top: 50px;
  }

  #welcome-page .main-banner .owl-theme .header-text {
    top: 30px;
  }

  #welcome-page .main-banner .owl-theme .header-text .main-header {
    padding-bottom: 15px;
    font-size: 16px;
  }

  #welcome-page .main-banner .owl-theme .header-text .discription {
    font-size: 20px;
    line-height: 30px;
  }

  #welcome-page .main-banner .owl-theme .owl-dots {
    display: none;
  }

  #welcome-page .news-section .pl-pad {
    margin-bottom: 20px;
  }

  #welcome-page .doctors-section .ds-sec {
    border: none;
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.07);
    padding-bottom: 25px;
  }

  #welcome-page .doctors-section .ds-sec h1 {
    padding: 25px 0px;
  }

  #welcome-page .doctors-section .ds-sec a.bn-style {
    border: 1px solid #a7c0c1 !important;
    background: #a7c0c1;
    font-weight: 700;
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.07);
  }

  #welcome-page .mc-section .list-fea .wid-cm {
    width: 33.333%;
    max-width: 33.333%;
    flex: 33.333%;
  }

  #welcome-page .mc-section .left-sec .ld-more {
    background: #3c9398;
    padding: 4px 10px;
    color: white !important;
    border-radius: 20px;
    font-size: 13px;
  }

  #welcome-page .mc-section .left-sec .ld-more .fa {
    color: white !important;
  }

  #welcome-page .mc-section .left-sec .sn-one .abt-text {
    margin-top: 40px;
  }

  #welcome-page .testimonial-section {
    margin-top: 30px;
  }

  #welcome-page .fs-section .facilities-cn {
    margin-bottom: 15px;
  }

  #welcome-page .new-doc__header h2 {
    font-size: 22px;
  }
}

@media screen and (max-width: 600px) {
  #welcome-page .main-banner .bn-bottom h1 {
    font-size: 14px;
    padding-top: 10px;
  }

  #welcome-page .main-banner .bn-bottom .bn1 img {
    width: 25px;
  }

  #welcome-page .main-banner .bn-bottom img {
    width: 25px;
  }

  #welcome-page .news-section .read-more {
    background: #3c9398;
    padding: 4px 10px;
    color: white !important;
    border-radius: 20px;
    font-size: 13px;
  }

  #welcome-page .news-section .read-more .fa {
    color: white;
  }

  #welcome-page #welcome-page .doctors-section {
    padding: 40px 15px;
  }

  #welcome-page .testimonial-section {
    padding: 40px 15px;
  }

  #welcome-page .fs-section {
    background: #fcfcfc;
  }

  #welcome-page .fs-section .facilities-cn {
    overflow: hidden;
    border: 4px solid white;
    background: white;
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.07);
    border-radius: 20px;
  }

  #welcome-page .mc-section {
    margin-top: 0;
  }
}

@media screen and (max-width: 575px) {
  #welcome-page .special-col {
    max-width: 100%;
    width: 100%;
    flex: 100%;
  }

  #welcome-page .testimonial-section {
    padding-bottom: 0;
  }

  #welcome-page .testimonial-section .video-sec img {
    position: initial;
  }

  #welcome-page .main-banner .bn-bottom {
    background: #f1f3f6;
    padding: 20px 0px !important;
  }

  #welcome-page .main-banner .bn-bottom .padding {
    padding: 15px !important;
  }

  #welcome-page .main-banner .bn-bottom .bn0,
  #welcome-page .main-banner .bn-bottom .bn1,
  #welcome-page .main-banner .bn-bottom .bn2,
  #welcome-page .main-banner .bn-bottom .bn3 {
    background: unset;
  }

  #welcome-page .main-banner .bn-bottom img {
    display: none;
  }

  #welcome-page .main-banner .bn-bottom a {
    height: unset;
    padding: 0 15px;
    border-radius: 8px;
    background: #f1f3f6;
    box-shadow: inset 0 0 15px rgba(55, 84, 170, 0), inset 0 0 20px rgba(255, 255, 255, 0), 7px 7px 15px rgba(55, 84, 170, 0.15), -7px -7px 20px white, inset 0px 0px 4px rgba(255, 255, 255, 0.2);
  }

  #welcome-page .main-banner .bn-bottom a .fa {
    color: #9dabc0;
    font-size: 40px;
    margin: auto;
    display: table;
  }

  #welcome-page .main-banner .bn-bottom h1 {
    color: #333333 !important;
    height: 50px;
  }

  #welcome-page .main-banner .bn-bottom .bn1 h1 {
    color: #333333 !important;
  }

  #welcome-page .mb-neu__icon {
    display: inline-block;
  }

  #welcome-page .testimonial-section {
    padding: 40px 20px;
  }

  #welcome-page .testimonial-section .video-sec {
    margin-top: 20px;
  }
}

@media screen and (max-width: 480px) {
  #welcome-page .news-section .news-cn {
    padding: 0px 15px;
  }

  #welcome-page .news-section .ml-one .bl-sec {
    padding: 20px 5px;
  }

  #welcome-page .news-section h1 {
    font-size: 28px;
  }

  #welcome-page .main-banner .bn-bottom {
    padding: 30px 15px !important;
  }

  #welcome-page .main-banner .bn-bottom a .fa {
    font-size: 30px;
  }

  #welcome-page .main-banner .bn-bottom h1 {
    font-size: 13px;
  }

  #welcome-page .doctors-section .pl-adjust {
    padding: 10px 30px;
  }

  #welcome-page .doctors-section .pl-adjust .ds-sec a.bn-style {
    font-size: 13px;
  }

  #welcome-page .doctors-section .main-tl {
    font-size: 28px;
  }

  #welcome-page .mc-section .left-sec .sn-one .abt-text {
    padding: 20px 5px;
  }

  #welcome-page .mc-section .left-sec .ab-sec {
    padding: 20px 5px;
  }

  #welcome-page .mc-section .list-fea {
    padding: 0px 5px;
    margin-top: 20px;
  }

  #welcome-page .mc-section .list-fea .wid-cm {
    width: 50%;
    max-width: 50%;
    flex: 50%;
  }

  #welcome-page .mc-section .list-fea .fn-doctor h1 {
    text-align: center;
    font-size: 14px;
  }
}

@media screen and (max-width: 420px) {
  #welcome-page .main-banner .owl-theme .header-text .main-header {
    padding-bottom: 5px;
    font-size: 14px;
  }

  #welcome-page .main-banner .owl-theme .header-text .discription {
    font-size: 16px;
    line-height: 18px;
  }
}

@media screen and (max-width: 414px) {
  #welcome-page .mc-section .left-sec .ab-sec {
    padding: 20px 0;
  }

  #welcome-page .testimonial-section {
    padding: 40px 20px;
  }

  #welcome-page .fs-section {
    padding: 30px 10px;
  }
}

