/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #1F3453;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: white;
}

.fixed-top {
  position: fixed;
  top: 40px;
  right: 0;
  left: 0;
  z-index: 1030;
}

.header.sticked {
  top: 0;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0px;
  background-color: #fff;
  /*left: 130px !important;
  border-radius: 50px 0px 0px 50px;*/
}

.st-btn {
  padding: 8px 15px;
  color: #fff;
  border-radius: 20px;
  background: #e3242b;
  transition: 0.3s;
  position: relative;
  display: inline-block;
}

.st-btn:hover {
  color: #fff;
  background: #1F3453;
}

.st-btn:hover::before {
  position: absolute;
  content: '';
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: rgba(241, 102, 68, 0.20);
  left: -10px;
  top: 5px;
  transition: l 0.5s;
}


.hero .play-btn,
.doc-video .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#1f3453 50%, rgba(13, 66, 255, 0.4) 52%);
  border-radius: 50%;
  display: block;
  overflow: hidden;
  position: relative;
}

.hero .play-btn:before,
.doc-video .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 1s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(13, 66, 255, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.hero .play-btn:after,
.doc-video .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 300ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hero .play-btn:hover:before,
.doc-video .play-btn::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.hero .play-btn:hover:after,
.doc-video .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.about_inner_box {
  padding: 30px 20px;
  text-align: center;
  box-shadow: 6px 4px 57px 0px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  background: #FFF;
  margin: 10px;
  margin-bottom: 20px;
  border: 2px solid #ffffff;
  transition: all .3s;

}

.about_inner_box p {
  margin-bottom: 0px;
}

.about_inner_box:hover {
  border: 2px solid #e3242b;
  transition: all .3s;
  transform: scale(1.1);
}

.about_inner_box:hover p {
  font-weight: 600;
}

.about_inner_right h2 {
  color: #e3242b;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about_inner_right p {
  color: #000;
  margin-bottom: 20px;
}

.about_inner_box .img-icon-1 {
  background-image: url(../../assets/img/hospital-bed-black.png);
  width: 80px;
  height: 80px;
  content: '';
  display: inline-block;
  text-align: center;
  background-attachment: inherit;
  background-size: cover;
  background-position: right;
  background-position-x: center;
  margin-bottom: 15px;
}

.about_inner_box:hover .img-icon-1 {
  background-image: url(../../assets/img/hospital-bed-red.png);
}

.about_inner_box .img-icon-2 {
  background-image: url(../../assets/img/smile-black.png);
  width: 80px;
  height: 80px;
  content: '';
  display: inline-block;
  text-align: center;
  background-attachment: inherit;
  background-size: cover;
  background-position: right;
  background-position-x: center;
  margin-bottom: 15px;
}

.about_inner_box:hover .img-icon-2 {
  background-image: url(../../assets/img/smile-red.png);
}

.about_inner_box .img-icon-3 {
  background-image: url(../../assets/img/healthcare-black.png);
  width: 80px;
  height: 80px;
  content: '';
  display: inline-block;
  text-align: center;
  background-attachment: inherit;
  background-size: cover;
  background-position: right;
  background-position-x: center;
  margin-bottom: 15px;
}

.about_inner_box:hover .img-icon-3 {
  background-image: url(../../assets/img/healthcare-red.png);
}

/* .service-sec-inner{
  background-image: url(../../assets/img/services_bg.png);
  width: 100%;
  height: 600px;
  content: '';
  display: inline-block;
  text-align: center;
  background-attachment: inherit;
  background-size: cover;
  background-position: right;
  background-position-x: center;
  margin-bottom: 15px;
  position: relative;
} */

.service-sec-inner .service-img {
  position: absolute;
  left: 50%;
  top: 7%;
  transform: translate(-50%, -50%);
  width: 220px;
}

.our_team .slides-3 {
  padding: 30px 10px 50px 10px;
  background-color: transparent;
}

.team-inner {
  border-radius: 30px;
  background: #FFF;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25);
  text-align: center;
  padding: 15px;
  margin-bottom: 20px;
  height: 285px;
}

.team-inner img {
  border-radius: 30px;
  position: relative;
}

.team-inner h2 {
  color: #000;
  text-align: center;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  margin-top: 20px;
}

.team-inner p {
  color: rgba(0, 0, 0, 0.50);
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin-bottom:0px;
}


.slides-3 .swiper-button-next,
.slides-3 .swiper-button-prev {
  position: absolute;
  bottom: 10px;
  top: auto;
  background-color: transparent;
  padding: 15px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 1px solid #000000;
}

.slides-3 .swiper-button-next:hover,
.slides-3 .swiper-button-prev:hover {
  background-color: #000000;
  border: 1px solid #000000;
}

.slides-3 .swiper-button-next,
.slides-3 .swiper-rtl .swiper-button-prev {
  right: 0%;
  left: auto;
}

.slides-3 .swiper-button-prev,
.slides-3 .swiper-rtl .swiper-button-next {
  left: auto;
  right: 40px;
}

.slides-3 .swiper-button-next:after,
.slides-3 .swiper-button-prev:after {
  font-size: 16px;
  color: #000000;
}

.slides-3 .swiper-button-next:hover::after,
.slides-3 .swiper-button-prev:hover::after {
  color: #ffffff;
}

/* .team-inner:hover img:before{
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  background-color: rgba(0,0,0,.9);
} */
/* .team-inner:hover img::before {
  position: absolute;
  content: '';
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: rgba(241, 102, 68, 0.20);
  left: -10px;
  top: 5px;
  transition: l 0.5s;
} */


.content {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: auto;
  overflow: hidden;
}

.content .content-overlay {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  border-radius: 30px;
  z-index: 1;
}

.team-inner:hover .content-overlay {
  opacity: 1;
}

.content-image {
  width: 100%;
}

.content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 2;
}

.team-inner:hover .content-details {
  top: 50%;
  left: 50%;
  opacity: 1;
}

.fadeIn-bottom {
  top: 80%;
}

.team-inner .social-links a {
  color: #fff;
  line-height: 0;
  transition: 0.3s;
  margin: 0px 10px;
  font-size:30px;
}

.team-inner .social-links a:hover {
  color: #e3242b;
  line-height: 0;
  transition: 0.3s;
  margin: 0px 10px;
}

.department_inner {
  background-image: url(../../assets/img/dept_bg.png);
  width: 100%;
  content: '';
  display: inline-block;
  text-align: center;
  background-attachment: inherit;
  background-size: cover;
  position: relative;
}

.dept_left_icon_sec {
  margin-bottom: 20px;
}

.dept_right_icon_sec {
  margin-bottom: 20px;
}

.dept_left_icon_sec .dept_icon_sec {
  border-radius: 20px;
  background: linear-gradient(180deg, #6BA9DA 0%, #4D92C8 100%);
  /* background: linear-gradient(180deg, rgba(255, 113, 1, 0.51) 0%, #FF5C02 100%); */
  padding: 15px;
  position: absolute;
  left: -20%;
  z-index: 1;
}

.dept_left_icon_sec .dept_text_sec {
  border-radius: 30px;
  padding: 30px 30px;
  background: #FFF;
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.35);
  text-align: left;
  position: relative;
  width: 70%;
  right: 0;
  transition: all .3s;
  border: 2px solid transparent;
}

.dept_left_icon_sec .dept_text_sec:hover {
  border: 2px solid #e3242b;
}

.dept_right_icon_sec .dept_text_sec {
  border-radius: 30px;
  padding: 30px 30px;
  background: #FFF;
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.35);
  text-align: left;
  position: relative;
  width: 70%;
  transition: all .3s;
  right: 0;
  border: 2px solid transparent;
}

.dept_right_icon_sec .dept_text_sec:hover {
  border: 2px solid #e3242b;
}

.dept_text_sec h2 {
  font-size: 22px;
}

.dept_text_sec p {
  font-size: 16px;
  margin-bottom: 0px;
}

.dept_icon_sec img {
  max-width: 70px;
  min-width: 70px;
}

.dept_right_icon_sec .dept_icon_sec {
  border-radius: 20px;
  background: linear-gradient(180deg, #6BA9DA 0%, #4D92C8 100%);
  padding: 15px;
  position: absolute;
  right: -20%;
  left: auto;
  z-index: 1;
}

.gallery img {
  width: 100%;
  /* box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.11); */
  border-radius: 20px;
  margin-bottom: 20px;
  border: 2px solid transparent;
}

.gallery img:hover {
  border: 2px solid #e3242b;
  transition: all .3s;
  transform: scale(1.1);
}

.slides-1 {
  padding: 50px 40px;
}

.testimonials .testimonial-item .testimonial-img {
  margin-top: -60px;
}

.slides-1 .swiper-slide {
  height: 100%;
}

.slides-1 .swiper-button-next,
.slides-1 .swiper-button-prev {
  position: absolute;
  bottom: 10%;
  top: auto;
  background-color: transparent;
  padding: 15px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 1px solid #fff;
}

.slides-1 .swiper-button-next:hover,
.slides-1 .swiper-button-prev:hover {
  background-color: #fff;
  border: 1px solid #fff;
}

.slides-1 .swiper-button-next,
.slides-1 .swiper-rtl .swiper-button-prev {
  right: 0;
  left: auto;
}

.slides-1 .swiper-button-prev,
.slides-1 .swiper-rtl .swiper-button-next {
  left: auto;
  right: 40px;
}

.slides-1 .swiper-button-next:after,
.slides-1 .swiper-button-prev:after {
  font-size: 16px;
  color: #fff;
}

.slides-1 .swiper-button-next:hover::after,
.slides-1 .swiper-button-prev:hover::after {
  color: #000;
}

.testimonials {
  padding: 50px 0;
}

.footer_btm {
  background-color: #14253e;
}

.footer_newsletter {
  border-radius: 15px;
  /*background: linear-gradient(90deg, #FF9400 0%, #FF3D00 100%);*/
  background: linear-gradient(169deg, #e47878 2.08%, #e3242b 100%);
  padding: 20px;
}

.footer_newsletter h2 {
  font-size: 22px;
  margin-right: 20px;
  margin-bottom: 0px;
}

.footer_newsletter .btn-primary {
  background-color: #14253e;
  color: #fff;
  border: 0;
  border-radius: 10px 10px 10px 10px;
  font-size: 16px;
  margin-left: -20px;
  padding: 8px 15px;
}

.footer .footer_btm .credits a {
  color: #e3242b;
}


/* About us */

.hero-about-bg {
  width: 100%;
  min-height: 50vh;
  height: 138vh;
  background-color: white;
  background-image: none;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0px 0 60px 0;
  color: rgba(255, 255, 255, 0.8);
}

.about-text{
    font-size: 38px!important;
    /*margin-top: -145px!important;*/
    color: #1F3453!important;
    position:absolute;
    top:16%;
    
}


.hero-about-bg h2 {
  margin-bottom: 20px;
  padding: 0;
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
}


@media (max-width: 575px) {
  .hero-about-bg h2 {
    font-size: 30px;
  }
}

.hero-about-bg p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: 1px;
  color: #ffffff;
}

.about_us_inner_right h2 {
  color: #e3242b;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0px;
}

.about_us_inner_right h4 {
  color: #1F3453;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about_inner img {
  width: 100%;
  border-radius:20px;
}

.about_us_inner_right h4 span {
  color: #e3242b;
}

.vision-mission {
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: url("../img/vision.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0px 0 60px 0;
  color: rgba(255, 255, 255, 0.8);

}

.vision-mission .container {
  position: relative;
  z-index: 3;
}

.vision-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c9e0f2d4;
  z-index: 1;
}

.vision-inner-sec {
  text-align: center;
}

.vision-inner-sec .vision-img {
  background-color: #fff;
  padding: 30px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 50px;
  margin-top: -100px;
  box-shadow: 0 2px 10px #ccc;
}

.vision-inner-sec .vision-img img {
  max-width: 70px;
  width: 70px;
}

.vision-inner-sec h2 {
  color: #000;
}

.vision-inner-sec p {
  color: #000;
}


.why-choose-left {
  padding: 20px 10px 10px 20px;
  background-color: #6CAADB;
  height: 100%;

}

.why-choose-left h2 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 10px;
}

.why-choose-left p {
  font-size: 16px;
  color: #ffffff;
}

.why-choose-right {
  height: 100%;
  padding:20px;
  margin-top: 35px;
}

.why-choose-right img {
  width: 100%;
  border-radius: 10px;
}

.icon-sec-img img {
  padding: 10px;
  border-radius: 50%;
  background-color: #e3242b;

}

.icon-sec-desc h2 {
  font-size: 22px;
  color: #ffffff;
}

.icon-sec-desc p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 0px;
}

/* Book appointment */

.book-appointment-inner {
  /*background-color: #e3242b;*/
  background: linear-gradient(169deg, #e47878 2.08%, #e3242b 100%);
  padding: 50px;
  border-radius: 30px;
}

.book-left {
  margin-bottom: 25px;
  display: flex;
}

.book-left h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 20px;
  padding: 10px;
}

.book-left p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 50px;
}

.book-btm span {
  color: #ffffff;
  font-size: 16px;
}
.copyrights span {
  color: #ffffff;
  font-size: 18px;
}
.creditss span {
  color: #ffffff;
  font-size: 18px;
}

.book-right h2 {
  text-align: center;
  /* width: 40%; */
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 30px;
}

.resources-bg {
  /*background: linear-gradient(180deg, rgba(255, 120, 1, 0.76) 0%, rgba(255, 64, 1, 0.79) 100%);*/
  background: linear-gradient(169deg, #e47878 2.08%, #e3242b 100%);
}

.hero-resources-bg {
  width: 100%;
  min-height: 30vh;
  height: 90vh;
  background-color: transparent;
  background-image: url("../img/resource_finale.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0px 0 60px 0;
  color: rgba(255, 255, 255, 0.8);
}

.hero-resources-bg h2 {
  margin-bottom: 20px;
  padding: 0;
  font-size: 48px;
  font-weight: 700;
  color: #000000;
}

@media (max-width: 575px) {
  .hero-resources-bg h2 {
    font-size: 30px;
  }
}

.hero-resources-bg p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: 1px;
  color: #000000;
}

.vdo-overlay {
  background-color: #000;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
}

.resource-vdo {
  position: absolute;
  bottom: 10px;
  padding: 20px;
  left: 20px;
  width: 90%;
  height: auto;
  border-left: 2px solid #ffffff;
  z-index: 10;
}

.resource-vdo h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}

.resource-vdo p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}

.resource-blog-top {
  position: absolute;
  top: 10px;
  padding: 20px;
  left: 20px;
  width: 90%;
  height: auto;
  z-index: 10;
}

.resource-blog-top h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}

.resource-blog-top p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}

.res-vdo-sec img {
  width: 100%;
}

.res-blog-sec {
  height: 100%;
}

.res-blog-sec img {
  width: 100%;
}

.res-blog-sec .resource-blog-btm img {
  width: auto;
}

.resource-blog-btm {
  position: absolute;
  bottom: 10px;
  padding: 20px;
  left: 20px;
  width: 90%;
  height: auto;
  z-index: 10;
}

.resource-blog-btm p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
  width: 40%;
}

.res-news-sec {
  height: 100%;
}

.res-news-sec img {
  width: 100%;
}

.res-news-btm {
  position: absolute;
  bottom: 10px;
  padding: 20px;
  left: 20px;
  width: 90%;
  height: auto;
  z-index: 10;
}

.res-news-btm h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}

.res-news-btm p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}

.res-news-sec .news-arrow-img {
  position: absolute;
  top: 10px;
  right: 10px;
  width: auto;
  height: auto;
}

.kids-sec {
  background-color: #ffffff;
  border-radius: 20px;
  height: 100%;
  padding: 20px;
}

.kids-sec h2 {
  color: #e3242b;
  font-size: 24px;
  margin-bottom: 30px;
}

.resource-left-sec {
  height: 100%;
}

.resource-right-sec {
  height: 100%;
}

.slides-11 {
  padding-bottom: 30px;
}

.slides-11 .swiper-horizontal>.swiper-pagination-bullets,
.slides-11 .swiper-pagination-bullets.swiper-pagination-horizontal,
.slides-11 .swiper-pagination-custom,
.slides-11 .swiper-pagination-fraction {
  bottom: 0px;
}

.slides-11 .swiper-pagination-bullet-active {
  background-color: white;
}

.slides-12 .swiper-pagination-bullet-active {
  background-color: #e3242b;
}

.resource-title {
  margin-top: -80px;
}

.resource-title h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 20px;
}

.resource-title p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 30px;
}

.hero-contact-bg {
  /* width: 100%;
  min-height: 50vh;
  height: auto;
  background-color: transparent;
  background-image: url("../img/contact-bg.webp");
  background-size: cover;
  background-position: center;
  position: relative; */
  color: rgba(255, 255, 255, 0.8);
}

.contact-sec {
  margin-top: -200px;
  z-index: 10;
  position: relative;
}

.contact-form {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px #ccc;
  padding: 20px;
}

.contact-form-head {
  background-color: #F4F4F6;
  margin-bottom: 20px;
}

.contact-form-head img {
  padding: 10px;
  border-radius: 10px;
  background-color: #e3242b;
  margin-right: 10px;
}

.contact-form-head h2 {
  font-size: 32px;
  color: #000;
  margin-bottom: 0;
}

.contact-form .form-control {
  background-color: #F4F4F6;
  text-align: left;
}

.btn-submit {
  background-color: #e3242b;
  color: #ffffff;
  text-align: center;
  width: 100%;
  border: none;
  padding: 8px;
  border-radius: 10px;
}

/*.contact-right-sec {
  padding: 0px 60px 30px 0px;

}*/

.contact-right-sec h2 {
  font-size: 32px;
  color: #000000;
  margin-bottom: 20px;
}

.contact-right-sec p {
  font-size: 16px;
  color: #000000;
  margin-bottom: 20px;
}

/* .contact-map h2 {
  font-size: 32px;
  color: #000000;
  margin-bottom: 30px;
} */

.contact-information {
  padding: 20px;
  /*background-color: #e3242b;*/
  background: linear-gradient(169deg, #e47878 2.08%, #e3242b 100%);
  display: inline-block;
  border-radius: 10px;
  text-align: left;
  color: #ffffff;
  position: absolute;
  right: 10px;
  top: 15%;
}

.contact-information h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
}

.contact-information p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #ffffff;
}

.contact-information p a {
  color: #fff;
}

.contact-information .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.contact-information .social-links a:hover {
  color: #fff;
  border-color: #fff;
}


/* Doctors CSS */
.hero-doc-bg {
  width: 100%;
  min-height: 50vh;
  height: 138vh;
  background-color: transparent;
  background-image: url("../img/doc-bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0px 0 60px 0;
  color: rgba(255, 255, 255, 0.8);
}

.doc-title {
  margin-top: -150px;
}

.doc-title h2 {
  color: #000000;
  font-size: 32px;
  margin-bottom: 20px;
}

.doc-title p {
  color: #000000;
  font-size: 16px;
  margin-bottom: 30px;
}

.doc-filter {
  border-radius: 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 30px;
}

.doc-list .col-lg-4 {
  margin-bottom: 120px;
}

.doc-list-inner {
  padding: 20px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 6px 2px 17px 0px rgba(0, 0, 0, 0.25);
  height: 100%;
}

.doc-list-inner img {
  border-radius: 50%;
  max-height: 175px;
  max-width: 175px;
  margin-top: -100px;
}

.doc-list-inner h2 {
  font-size: 22px;
}

.doc-list-inner p {
  font-size: 16px;
  margin-bottom:0px;
}

.doc-list-inner h4 {
  font-size: 20px;
}

.doc-list-inner h6 {
  font-size: 16px;
}

.doc-list-inner .btn-submit {
  background-color: #e3242b;
  color: #ffffff;
  text-align: center;
  display: inline-block;
  border: none;
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 14px;
  width: auto;
}

.pagination .page-link {
  color: #000000;
}

.pagination-sec {
  margin-top: -50px;
}

.doc-video .doc-video-btn {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;

}

.doc-video .doc-vdo-info {
  position: absolute !important;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 30%;
  padding-left: 20px;
  border-left: 4px solid #fff;
}

.doc-video .doc-vdo-info h2 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 20px;
}

.doc-video .doc-vdo-info h2 span {
  font-size: 14px;
}

.doc-video .doc-vdo-info p {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 0px;
}

.doctor-detail-sec .btn-submit {
  background-color: #e3242b;
  color: #ffffff;
  text-align: center;
  display: inline-block;
  border: none;
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 14px;
  width: auto;
  margin-bottom: 10px;
}

.doc-det-left {
  background-color: #EFF8FF;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15), -2px 0px 21px 0px rgba(0, 0, 0, 0.15);

}

.doc-det-left-img {
  border-radius: 10px;
  text-align: center;
  background-color: #fff;
}

.doc-det-left-img img {
  margin-bottom: 10px;
}

.doc-det-left-desc {}

.doc-det-left-desc h2 {
  font-size: 24px;
  color: black;
}

.doc-det-left-desc p {
  font-size: 16px;
  color: black;
  margin-bottom:0px;
}

.doc-det-left-desc h4 {
  font-size: 22px;
}

.doc-det-left-desc h6 {
  font-size: 16px;
}

.doc-det-left-desc .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ccc;
  font-size: 16px;
  color: #000000;
  margin-right: 10px;
  transition: 0.3s;
}

.doc-det-left-desc .social-links a:hover {
  color: #000;
  border-color: #000;
}

.doc-det-right {
  height: 100%;
  padding: 20px;
  border-radius: 20px;
  background: #EFF8FF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px -4px 4px 0px rgba(0, 0, 0, 0.25);

}

.doc-det-right h2 {
  font-size: 22px;
  color: black;
  padding-bottom: 20px;
  border-bottom: 2px solid #ccc;
  margin-bottom: 20px;
}

.doc-list-right img {
  border-radius: 50%;
  margin-right: 10px;
  max-height: 100px;
  max-width: 100px;
  min-width: 100px;
  min-height: 100px;
}

.doc-list-right h4 {
  font-size: 16px;
  color: black;
  margin-bottom: 10px;
}

.doc-list-right p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 0px;
}

.doctor-info .nav-pills .nav-link {
  padding: 20px 20px;
}

.doctor-info .nav-pills .nav-link span {
  display: block;
  color: #000000;
}

.doctor-info .nav-pills .nav-link svg {
  font-size: 24px;
  fill: #000000;
}

.doctor-info .nav-pills .nav-link.active,
.doctor-info .nav-pills .show>.nav-link {
  background-color: #7FACCF;
}

.doctor-info .nav-pills .nav-link.active span,
.doctor-info .nav-pills .show>.nav-link span {
  color: #ffffff;
}

.doctor-info .nav-pills .nav-link.active svg,
.doctor-info .nav-pills .show>.nav-link svg {
  color: #ffffff;
  fill: #ffffff;
}

.doctor-info-inner {
  background: #EFF8FF;
  border-radius: 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px -4px 4px 0px rgba(0, 0, 0, 0.25);

}

.doc-info-desc {
  padding: 30px;
}

.doc-info-desc .img-sec img {
  border-radius: 20px;
  margin-bottom: 20px;
}

.desc-sec-doc h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

.desc-sec-doc p {
  font-size: 14px;
  margin-bottom: 10px;
}

.desc-sec-doc ul li {
  font-size: 14px;
  margin-bottom: 10px;
}

.doctor-video-sec {
  width: 100%;
  background-color: transparent;
  background-image: url("../img/doc-vdo-1.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0px 0 60px 0;
  color: rgba(255, 255, 255, 0.8);
}

.vdo-sec-inner .doc-video-slide {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: block;
  overflow: hidden;
  position: relative;
  border: 2px solid #ffffff;
}

.vdo-sec-inner .doc-video-slide:before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  animation-delay: 0s;
  animation: pulsate-btn 1s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(13, 66, 255, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}


.vdo-sec-inner .doc-video-slide:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 300ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.vdo-sec-inner .doc-video-slide::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.vdo-sec-inner .doc-video-slide:hover:after {
  border-left: 15px solid #fff;
  transform: scale(20);
}

.vdo-sec-inner .doc-video-slide:hover::before {
  border-left: 15px solid #000;

}

.vdo-sec-inner .doc-video-slide {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;

}

.vision-inner-sec .vdo-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #000000;
  opacity: 0.3;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.vdo-sec-inner img {
  border-radius: 20px;
}

.doc-vdo-sliders {
  padding: 60px 10px;
}

.doctor-video-sec .swiper-slide-active {
  transform: scale(1.4);
  padding: 15px;
  transition: all .5s ease-in;
}

.doctor-video-sec .swiper-horizontal>.swiper-pagination-bullets,
.doctor-video-sec .swiper-pagination-bullets.swiper-pagination-horizontal,
.doctor-video-sec .swiper-pagination-custom,
.doctor-video-sec .swiper-pagination-fraction {
  bottom: -5px;
}

.doctor-video-sec .section-header h2 {
  color: #ffffff;
}

.serv-overview-inner h2 {
  font-size: 26px;
  color: #000000;
  margin-bottom: 20px;
}

.serv-overview-inner p {
  font-size: 14px;
  color: #454545;
}

.serv-over-img img {
  border-radius: 20px;
  width: 100%;
  margin: 10px;
}

.serv-over-img img:hover {
  transition: all .3s;
  transform: scale(1.05);
}

.advice-sec {
  width: 100%;
  background-color: transparent;
  background-image: url("../img/adv.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0px 0 60px 0;
  color: rgba(255, 255, 255, 0.8);
}

.advice-left .doc-video-slide {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: block;
  overflow: hidden;
  position: relative;
  border: 2px solid #ffffff;
}

.advice-left .doc-video-slide:before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  animation-delay: 0s;
  animation: pulsate-btn 1s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(13, 66, 255, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}


.advice-left .doc-video-slide:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 300ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.advice-left .doc-video-slide::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.advice-left .doc-video-slide:hover:after {
  border-left: 15px solid #fff;
  transform: scale(20);
}

.advice-left .doc-video-slide:hover::before {
  border-left: 15px solid #000;

}

.advice-left .doc-video-slide {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;

}

.advice-sec .section-header h2 {
  color: #ffffff;
}

.advice-left .vdo-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #000000;
  opacity: 0.3;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.advice-right ul li {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
}

.roadmap-inner .nav-pills .nav-link {
  text-align: center;
  border-radius: 50%;
  background-color: transparent;
  box-shadow: 0px -1px 7px 0px rgba(0, 0, 0, 0.25) inset;
  padding: 20px;
  border: 10px solid transparent;
  outline: 1px solid #FF4301;
  position: relative;
  margin: 20px;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.roadmap-inner .nav-pills .nav-link img {
  margin-bottom: 0px;
  display: inline-block;
}

.roadmap-inner .nav-pills .nav-link span {
  display: block;
  color: #000000;
  font-size: 14px;
}

.roadmap-inner .nav-pills .nav-link:hover {
  border: 10px solid #FF4301;
  outline: 1px solid #FF4301;
  transition: all .5s ease-in;
}

.roadmap-inner .nav-pills .nav-link.active,
.roadmap-inner .nav-pills .show>.nav-link {
  text-align: center;
  border: 10px solid #FF4301;
  outline: 1px solid #FF4301;
  transition: all .5s ease-in;
  position: relative;
}

.roadmap-inner .nav-pills .nav-link.active::after {
  width: 20px;
  height: 20px;
  content: '';
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid #FF4301;
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
}

.roadmap-inner .nav-pills li:nth-child(1) {
  margin-top: -150px;
}

.roadmap-inner .nav-pills li:nth-child(2) {
  margin-top: -60px;
}

.roadmap-inner .nav-pills li:nth-child(3) {
  margin-top: 0px;
}

.roadmap-inner .nav-pills li:nth-child(4) {
  margin-top: -60px;
}

.roadmap-inner .nav-pills li:nth-child(5) {
  margin-top: -150px;
}

.roadmap-inner-sec {
  padding: 40px;
  border-radius: 20px;
  background: #EFF8FF;
  border-top: 2px solid #FF4301;

  box-shadow: 0px 4px 31px 0px rgba(0, 0, 0, 0.25), 1px -5px 7px 0px rgba(0, 0, 0, 0.25);
}

.roadmap-inner-sec-left h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #000000;
}

.roadmap-inner-sec-left p {
  font-size: 16px;
  color: #000000;
  margin-bottom: 20px;
}

.outcomes-inner {
  border: 20px solid #FF843D;
  outline: 1px solid #FF843D;
  transition: all .5s ease-in;
  text-align: center;
  border-radius: 50%;
  background-color: transparent;
  box-shadow: 0px -1px 7px 0px rgba(0, 0, 0, 0.25) inset;
  padding: 15px;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.outcomes-inner::after {
  width: 20px;
  height: 20px;
  content: '';
  border-top: 15px solid transparent;
  border-left: 20px solid #FF843D;
  border-bottom: 15px solid transparent;
  position: absolute;
  top: 50%;
  right: -36px;
  transform: translateY(-50%);
}

.outcomes .col-lg-3:last-child .outcomes-inner::after {
  display: none;
}

.outcomes-inner h2 {
  font-size: 20px;
  color: #000000;
  margin-bottom: 10px;
}

.outcomes-inner p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 10px;
}

.journey-inner .nav-pills .nav-link {
  text-align: center;
  border-radius: 50%;
  background-color: transparent;
  box-shadow: 0px -1px 7px 0px rgba(0, 0, 0, 0.25) inset;
  padding: 30px;
  border: 10px solid transparent;
  outline: 1px solid #4D92C8;
  position: relative;
  font-size: 22px;
  margin: 10px;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.journey-inner .nav-pills .nav-link img {
  margin-bottom: 10px;
  display: inline-block;
}

.journey-inner .nav-pills .nav-link span {
  display: block;
  color: #000000;
}

.journey-inner .nav-pills .nav-link:hover {
  border: 10px solid #4D92C8;
  outline: 1px solid #4D92C8;
  transition: all .5s ease-in;
}

.journey-inner .nav-pills .nav-link.active,
.journey-inner .nav-pills .show>.nav-link {
  text-align: center;
  border: 10px solid #4D92C8;
  outline: 1px solid #4D92C8;
  transition: all .5s ease-in;
  position: relative;
}

.journey-inner .nav-pills .nav-link.active::after {
  width: 20px;
  height: 20px;
  content: '';
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid #4D92C8;
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  transition: all .5s ease-in;
}

.journey-inner .nav-pills li:nth-child(1) {}

.journey-inner .nav-pills li:nth-child(2) {}

.journey-inner .nav-pills li:nth-child(3) {}

.journey-inner .nav-pills li:nth-child(4) {}

.journey-inner .nav-pills li:nth-child(5) {}

.journey-inner-sec {
  padding: 40px;
  border-radius: 20px;
  background: #EFF8FF;
  border-top: 2px solid #4D92C8;

  box-shadow: 0px 4px 31px 0px rgba(0, 0, 0, 0.25), 1px -5px 7px 0px rgba(0, 0, 0, 0.25);
}

.journey-inner-sec-left h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #000000;
  text-align:center;
}

.journey-inner-sec-left h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #000000;
}

.journey-inner-sec-left p {
  font-size: 16px;
  color: #000000;
  margin-bottom: 20px;
  text-align:center;
}

.journey-inner-sec-right img {
  width: 100%;
  margin-bottom: 20px;
}

.google_review {
  position: fixed;
  right: 0;
  top: 64%;
  z-index:9;
  transform: translateY(-50%);
  padding: 8px 0px;
  /*padding: 40px 10px;
  background: linear-gradient(169deg, #FF7801 2.08%, #FF4001 100%);*/
  background: linear-gradient(169deg, #e47878 2.08%, #e3242b 100%);
  border-radius: 20px 0px 0px 20px;
  width: 90px;
  text-align: center;
}

.google_review img {
  margin-bottom: 3px;
}

.google_review h2 {
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  margin-bottom: 0px;
}

.google_review p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 0px;
}

.blog-list-inner {
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}

.blog-list-inner img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 1px 2px 10px #ccc;
}

.blog-list-inner .blog-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000bd;
  opacity: 0;
  border-radius: 10px;
  transition: all .5s ease-out;
}

.blog-list-inner:hover .blog-overlay {
  opacity: 1;
}

.blog-list-inner .blog-desc {
  position: absolute;
  padding: 10px;
  left: 10px;
  bottom: 10px;
  width: 100%;
  height: 100%;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: all .5s ease-out;

}

.blog-list-inner:hover .blog-desc {
  opacity: 1;
}


.blog-list-inner .blog-desc h2 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}

.blog-list-inner .blog-desc p {
  display: block;
  font-size: 14px;
  color: #fff;
}

.blog-list-inner .blog-desc a {
  display: inline-block;
  width: auto;
}

.blog-detail-inner {
  box-shadow: 1px 2px 10px #ccc;
  display: block;
  width: 100%;
  position: relative;
}

.blog-detail-inner img {
  border-radius: 10px;
  margin-bottom: 20px;
}

.blog-detail-inner .blog-detail-desc {
  padding: 20px;
}

.blog-detail-inner .blog-detail-desc h2 {
  font-size: 24px;
  color: #000000;
  margin-bottom: 15px;
}

.blog-detail-inner .blog-detail-desc p {
  font-size: 16px;
  color: #000000;
  margin-bottom: 10px;
}

.blog-detail-right {
  padding: 15px;
  box-shadow: 1px 2px 10px #ccc;
  margin-bottom: 20px;
}

.blog-detail-right img {
  width: 30%;
  border-radius: 5px;
  margin-right: 10px;
}

.blog-detail-right h2 {
  font-size: 16px;
  color: #000000;
  margin-bottom: 5px;
}

.blog-detail-right p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 0px;
}

.video-list-inner {
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}

.video-list-inner img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 1px 2px 10px #ccc;
}

.video-list-inner .video-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000bd;
  border-radius: 10px;
  transition: all .5s ease-out;
  opacity: 0.5;
}

.video-list-inner .doc-video-slide {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: block;
  overflow: hidden;
  position: relative;
  border: 2px solid #ffffff;
}

.video-list-inner .doc-video-slide:before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  animation-delay: 0s;
  animation: pulsate-btn 1s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(13, 66, 255, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}


.video-list-inner .doc-video-slide:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 300ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.video-list-inner .doc-video-slide::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.video-list-inner .doc-video-slide:hover:after {
  border-left: 15px solid #fff;
  transform: scale(20);
}

.video-list-inner .doc-video-slide:hover::before {
  border-left: 15px solid #000;

}

.video-list-inner .doc-video-slide {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;

}

@media (max-width: 1024px) {
  .contact-info {
    font-size: 12px;
  }

  .header .mobile-nav-show {
    color: #1f3453;
  }

  .header.sticked .mobile-nav-show {
    color: #ffffff;
  }

  .hero {
    height: 100vh;
  }

  .about_inner_right {
    text-align: center;
    margin-top: 20px;
  }

  .department_inner .dept_left_icon_sec:last-child {
    justify-content: center !important;
  }

  .about_us_inner_right {
    margin-bottom: 20px;
  }

  .vision-inner-sec .vision-img {
    margin-bottom: 15px;
  }

  .vision-inner-sec {
    margin-bottom: 70px;
  }

  .journey-inner .nav-pills .nav-link {
    font-size: 20px;
    margin: 5px;
    width: 110px;
    height: 110px;
    padding: 20px;
  }

  .book-right h2 {
    text-align: center;
  }

  .vision-mission {
    padding: 0px 0 0px 0;
  }

  .serv-overview-inner {
    margin-bottom: 20px;
  }

  .roadmap-inner .nav-pills li:nth-child(1) {
    margin-top: 0px;
  }

  .roadmap-inner .nav-pills li:nth-child(2) {
    margin-top: 0px;
  }

  .roadmap-inner .nav-pills li:nth-child(3) {
    margin-top: 0px;
  }

  .roadmap-inner .nav-pills li:nth-child(4) {
    margin-top: 0px;
  }

  .roadmap-inner .nav-pills li:nth-child(5) {
    margin-top: 0px;
  }

  .roadmap-inner .nav-pills .nav-link {
    margin: 5px;
    width: 120px;
    height: 120px;
    padding: 10px;
  }

  .roadmap-inner .nav-pills .nav-link img {
    max-width: 40px;
  }

  .roadmap-inner .nav-pills .nav-link {
    border: 5px solid transparent;
  }

  .roadmap-inner .nav-pills .nav-link.active,
  .roadmap-inner .nav-pills .show>.nav-link {
    border: 5px solid #FF4301;
  }

  .resource-title {
    margin-top: -50px;
  }

  .doc-title {
    margin-top: -100px;
  }

  .contact-information {
    top: 30%;
  }

  .dept_left_icon_sec .dept_icon_sec {
    left: -19%;
  }

  .res-news-btm {
    bottom: 10px;
    padding: 10px;
    left: 10px;
  }

  .roadmap-inner .nav-pills .nav-link.active::after {
    bottom: -22px;
  }

  .outcomes-inner {
    border: 10px solid #FF843D;
    padding: 10px;
    width: 180px;
    height: 180px;
  }

  .outcomes-inner::after {
    right: -26px;
  }
}

@media (max-width: 768px) {
  .contact-info {
    font-size: 12px;
  }
.hero p {
    margin-bottom: 20px;
}
.hero h2 {
    font-size: 36px;
}
  .header .mobile-nav-show {
    color: #1f3453;
  }

  .header.sticked .mobile-nav-show {
    color: #ffffff;
  }
  .google_review{
      padding: 20px 10px;
      width: 80px;
  }
.google_review h2{
    font-size:28px;
}
  .hero {
    height: 60vh;
  }

  .about_inner_right {
    text-align: center;
    margin-top: 20px;
  }

  .department_inner .dept_left_icon_sec:last-child {
    justify-content: center !important;
  }

  .about_us_inner_right {
    margin-bottom: 20px;
  }

  .vision-inner-sec .vision-img {
    margin-bottom: 15px;
  }

  .vision-inner-sec {
    margin-bottom: 70px;
  }

  .journey-inner .nav-pills .nav-link {
    font-size: 20px;
    margin: 5px;
    width: 110px;
    height: 110px;
    padding: 20px;
  }

  .book-right h2 {
    text-align: center;
  }

  .vision-mission {
    padding: 0px 0 0px 0;
  }

  .serv-overview-inner {
    margin-bottom: 20px;
  }

  .roadmap-inner .nav-pills li:nth-child(1) {
    margin-top: 0px;
  }

  .roadmap-inner .nav-pills li:nth-child(2) {
    margin-top: 0px;
  }

  .roadmap-inner .nav-pills li:nth-child(3) {
    margin-top: 0px;
  }

  .roadmap-inner .nav-pills li:nth-child(4) {
    margin-top: 0px;
  }

  .roadmap-inner .nav-pills li:nth-child(5) {
    margin-top: 0px;
  }

  .roadmap-inner .nav-pills .nav-link {
    margin: 5px;
    width: 120px;
    height: 120px;
    padding: 10px;
  }

  .roadmap-inner .nav-pills .nav-link img {
    max-width: 40px;
  }

  .roadmap-inner .nav-pills .nav-link {
    border: 5px solid transparent;
  }

  .roadmap-inner .nav-pills .nav-link.active,
  .roadmap-inner .nav-pills .show>.nav-link {
    border: 5px solid #FF4301;
  }

  .resource-title {
    margin-top: -50px;
  }

  .doc-title {
    margin-top: -100px;
  }

  .contact-information {
    top: 30%;
  }
}

@media (max-width: 575px) {
  #topbar {
    display: none !important;
  }

  .fixed-top {
    top: 0;
  }

  .header {
    padding: 0px 0px;
    left: 0px !important;
    border-radius: 0px 0px 0px 0px;
  }

  .header .mobile-nav-show {
    color: #1f3453;
  }

  .header.sticked .mobile-nav-show {
    color: #ffffff;
  }

  .hero {
    height: 80vh;
  }

  .about_inner_right {
    text-align: center;
    margin-top: 20px;
  }

  .dept_left_icon_sec .dept_text_sec {
    width: 80%;
  }

  .dept_left_icon_sec .dept_icon_sec {
    left: -37%;
  }

  .dept_right_icon_sec .dept_text_sec {
    width: 80%;
  }

  .dept_right_icon_sec .dept_icon_sec {
    right: -32%;
  }

  .dept_right_icon_sec {
    justify-content: start !important;
  }

  .department_inner .dept_left_icon_sec:last-child {
    justify-content: end !important;
  }

  .about_us_inner_right {
    margin-bottom: 20px;
  }

  .vision-inner-sec {
    text-align: center;
    margin-bottom: 70px;
  }

  .journey-inner .nav-pills .nav-link {
    padding: 10px;
    border: 5px solid transparent;
    font-size: 14px;
    margin: 5px;
    width: 65px;
    height: 66px;
  }

  .journey-inner .nav-pills .nav-link.active,
  .journey-inner .nav-pills .show>.nav-link {
    border: 5px solid #4D92C8;
  }

  .journey-inner .nav-pills .nav-link.active::after {
    bottom: -20px;
  }

  .footer_newsletter h2 {
    font-size: 14px;
    margin-right: 20px;
    margin-bottom: 0px;
  }

  .footer_newsletter .btn-primary {
    font-size: 12px;
    margin-left: -20px;
    padding: 8px 10px;
  }

  .google_review {
    top: 55%;
    padding: 10px 5px;
    width: 80px;
  }

  .serv-overview-inner {
    margin-bottom: 20px;
  }

  .roadmap-inner .nav-pills li:nth-child(1) {
    margin-top: 0px;
  }

  .roadmap-inner .nav-pills li:nth-child(2) {
    margin-top: 0px;
  }

  .roadmap-inner .nav-pills li:nth-child(3) {
    margin-top: 0px;
  }

  .roadmap-inner .nav-pills li:nth-child(4) {
    margin-top: 0px;
  }

  .roadmap-inner .nav-pills li:nth-child(5) {
    margin-top: 0px;
  }

  .roadmap-inner .nav-pills li {
    margin-bottom: 20px;
  }

  .roadmap-inner .nav-pills .nav-link {
    border: 5px solid transparent;
    margin: 5px;
    width: 120px;
    height: 120px;

  }

  .roadmap-inner .nav-pills .nav-link img {
    max-width: 40px;
  }

  .roadmap-inner .nav-pills .nav-link.active,
  .roadmap-inner .nav-pills .show>.nav-link {
    border: 5px solid #FF4301;
  }

  .roadmap-inner .nav-pills .nav-link.active::after {
    bottom: -20px;
  }

  .outcomes-inner {
    width: 170px;
    height: 170px;
  }

  .resource-title {
    margin-top: -20px;
  }

  .header .logo img {
    height: 45px;
    max-height: 45px;
    margin-right: 6px;
  }

  .doc-title {
    margin-top: -80px;
  }

  .doc-video .doc-vdo-info {
    position: absolute !important;
    left: 2%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    padding-left: 9px;
    border-left: 4px solid #fff;
  }

  .doc-video .doc-vdo-info h2 {
    font-size: 11px;
    color: #ffffff;
    margin-bottom: 6px;
  }

  .doc-video .doc-vdo-info h2 span {
    font-size: 11px;
  }

  .doc-video .doc-vdo-info p {
    font-size: 9px;
    color: #ffffff;
    margin-bottom: 0px;
  }

  .hero .play-btn,
  .doc-video .play-btn {
    width: 80px;
    height: 80px;
  }

  .hero .play-btn:before,
  .doc-video .play-btn:before {

    width: 100px;
    height: 100px;
  }

  .contact-sec {
    margin-top: 0px;
  }

  .contact-information {
    top: 20%;
  }

  .hero p {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: initial;
  }
}

@media (max-width: 414px) {
  .google_review {
    padding: 5px 5px;
    width: 70px;
  }
.header .logo {
    margin-left: 0px;
}
  .google_review img {
    margin-bottom: 5px;
  }

  .google_review p {
    font-size: 11px;
    margin-bottom: 5px;
  }

  .google_review h2 {
    font-weight: 700;
    font-size: 16px;
  }

  .hero h2 {
    font-size: 26px;
  }


  .journey-inner .nav-pills .nav-link.active::after {

    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #4D92C8;
    transition: all .5s ease-in;
  }

  .st-btn {
    padding: 8px 10px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  #hero .d-flex.justify-content-between.flex-column {
    align-items: center !important;
  }

  #hero .d-flex.justify-content-between.flex-md-row {
    flex-direction: column !important;
  }

  #hero h2 {
    text-align: center;
    margin-bottom: 10px;
  }

  #hero .play-btn {
    margin: 20px auto 0 auto;
    display: block;
  }
  #about {
      padding:20px 0px;
  }
}
@media (max-width: 992px) {
  #hero .d-flex.justify-content-between {
    flex-direction: column !important;
    align-items: center !important;
  }

  #hero h2 {
    text-align: center;
    margin-bottom: 10px;
    margin-top: 25px;
  }
  .google_review h2{
       margin-top: 0px!important; 
    }

  #hero .play-btn {
    margin: 20px auto 0 auto;
    display: block;
  }
}

@media (max-width: 992px) {
  .hero-resources-bg {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 40vh;
  }
  .resource-inner-sec{
    padding: 0px 0!important;
}
}

@media (max-width: 576px) {
  .hero-resources-bg {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 32vh;
  }
      #hero h2 {
        text-align: center;
        margin-bottom: 0px;
        margin-top: 10px;
        font-size: 16px;
    }
    .google_review h2{
       margin-top: 0px!important; 
    }
    .resource-inner-sec{
    padding: 0px 0!important;
}
}
@media (min-width: 992px) and (max-width: 1024px) {
    .hero-resources-bg {
        height: 97vh;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
    .resource-inner-sec{
    padding: 0px 0!important;
}
}
@media (min-width: 345px) and (max-width: 389px) {
  .hero-resources-bg {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 39vh;
  }
}
@media (min-width: 539px) and (max-width: 541px) {
  .hero-resources-bg {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 39vh;
  }
}
@media (min-width: 343px) and (max-width: 344px) {
  .hero-resources-bg {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 31vh;
  }
      #hero h2 {
        text-align: center;
        margin-bottom: 0px;
        font-size: 16px;
        margin-top: -14px;
    }
}
.resource-inner-sec{
    padding: 30px 0;
}
