html,
body {
  overflow-x: hidden;
  /* Prevent scroll on narrow devices */
}

body {
  /*padding-top: 130px;*/
  padding-top: 102px;
  /*font-family: 'Roboto', sans-serif;*/
  font-family: Montserrat, sans-serif;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --nav-link: #0a1429;
  --red: #e13527;
  --red2: #ee2424;
  --red3: #ed2024;
  --top: #282828;
  --topLine: #adadad;
  --blue: #313f90;
  --blue2: #005f92;
  --blue3: #304091;
  --blue4: #1e95d3;
  --blue5: #417dc0;
  --blue6: #3950a3;
  --blue7: #006fad;
  --service: #0e0e0e;
  --icon-bg: #21396e;
  --experts: #f3f3f3;
  --test: #818181;
  --line: #adadad;
  --footer: #f0efef;
  --orange: #f89e1d;
  --green: #118441;
}

@font-face {
  font-family: Zing Script;
  src: url(../../fonts/ZingScriptRustSBDemo-Base.otf);
}

/* ******* navbar dropdown on click ******* */
.navbar .container-fluid {
  padding: 0 230px;
}

.nav-item {
  /* position: relative; */
  padding: 0;
}


.drop_main {
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  background-color: var(--blue);
  border-top: 4px solid var(--green);
  overflow: hidden;
  transform: translateY(25px);
  transition: all .3s ease;
  visibility: hidden;
  opacity: 0;
  padding-left:30px;
}
.drop_main1 {
  height: 130px !important;
  flex-direction: column;
  align-items:left;
  justify-content: center;
  width: 260px;
  padding-left:0;
  left: unset;
  margin: auto;
  row-gap:5px;
}
.drop_main2{
    width: 360px;
    height:auto important;
    padding: 15px 0;
    flex-direction: column;
    justify-content: center;
    left: unset;
    margin: auto;
    row-gap: 5px;
}
.nav-item:hover .drop_main {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  display: flex;
  height: 300px;
}
.nav-item:hover .drop_main2{
    height:200px;
}
.drop_main .row {
  row-gap: 30px;
  /* align-items: center; */
  padding-top:50px;
  height: 100%;
}
.drop_mini_item a{
  font-size: 16px;
  color: var(--white);
  margin: 8px 0;
  font-weight: normal;
  transition: 0.5s all;
  cursor: pointer;
  position: relative;
  display: flex;
  padding-bottom:6px;
  width:fit-content;
}
.drop_main2 .drop_mini_item p,
.drop_main1 .drop_mini_item p{
  margin:0;
}
.drop_main2 .drop_mini_item a,
.drop_main1 .drop_mini_item a{
  margin:0;
  margin-bottom:5px;
  border-bottom:solid 1px var(--white);
  width:100%;
  padding-left: 10px;
}
.drop_mini_item i{
  font-size:16px;
  color:var(--white);
  padding:0 5px;
  padding-top:3px;
}

.drop_mini_item p:hover::after, .drop_mini_item a:hover, .drop_mini_item p:hover {
  color: var(--orange);
}
.links_title{
  margin-bottom:10px;
}
.links_title h6{
  font-size:22px;
  color:var(--orange);
  font-weight:bold;
  border-bottom: solid 1.5px var(--orange);
  padding-bottom:5px;
  width:fit-content;
}
.dropdown-item.active, .dropdown-item:active{
  color:var(--orange);
}
/* .links_title hr{
  margin:10px 0;
  opacity:1;
  background-color:var(--orange);
  width:100%;
  height:1.5px;
  border:none;
} */
/* ******* navbar dropdown on click ******* */


/* ******* navbar dropdown on hover ******* */

.dropdown:hover .dropdown-menu {
  display: block;
}

/* ******* navbar dropdown on hover ******* */


a {
  text-decoration: none;
}

.mb0 {
  margin-bottom: 0;
}

.tcb {
  color: var(--blue);
  /*font-size:17px;*/
}

.hfs {
  font-size: 50px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


.navbar-expand-lg {
  background-color: var(--white);
  border-bottom: 2px solid var(--red);
  padding: 0;
}

.navbar>.container {
  align-items: end;
}

.navbar-expand-lg .navbar-nav {
  margin-right: 225px;
}

.navbar-expand-lg .navbar-nav .nav-item {
  padding: 0 13px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  /*font-weight: 400;*/
  font-weight: bold;
  color: var(--nav-link);
  /*font-size: 18px;*/
  font-size: 16px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: var(--red);
}

.navbar .nav-item .nav-link.active {
  color: var(--red);
}

.navbar-expand-lg .navbar-nav .nav-item.appoint {
  position: absolute;
  right: 0;
  bottom: 30px;
}

.appoint {
  padding: 0 !important;
}

.navbar-expand-lg .navbar-nav .nav-item.appoint::before {
  content: '';
  position: absolute;
  height: 1px;
  /*width: 915px;*/
  width: 1030px;
  background-color: var(--topLine);
  right: 10px;
  top: 50%;
  transform: translateY(0);
  z-index: -1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.navbar-expand-lg .navbar-nav .nav-item.appoint .nav-link {
  background-color: var(--red);
  color: var(--white);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 5px 10px;
}

.navbar-expand-lg .navbar-nav .nav-item.appoint .nav-link.hvr-rectangle-out::before {
  background-color: var(--blue);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.navbar-expand-lg .navbar-collapse {
  flex-direction: column;
  position: relative;
}

.navbar-expand-lg .navbar-collapse .top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*width: 83%;*/
  width: 63%;
  margin-bottom: 10px;
}

.top-header .emergency span {
  color: var(--red);
  font-style: italic;
  font-weight: bold;
}

.top-header .phone {
  /*margin-right: 160px;*/
  margin-right: 45px;
}

.top-header .phone a {
  color: var(--top);
  font-style: italic;
  font-weight: bold;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.top-header .phone a:hover {
  color: var(--red);
}

.top-header .phone a:last-child {
  margin-left: 10px;
}

.navbar-brand img {
  /*width: 270px;*/
  width: 200px;
}




.banner .row {
  align-items: center;
}

.banner .row .col-lg-4 {
  text-align: left;
}

.banner .row p {
  color: var(--top);
  margin-top: 30px;
  margin-bottom: 50px;
  font-size: 18px;
  line-height: 34px;
  text-align: justify;
}

.banner .row a {
  background-color: var(--blue);
  color: var(--white);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 12px 40px;
  font-size: 18px;
}

.banner .row a.hvr-rectangle-out:before {
  background-color: var(--red);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.banner .carousel-caption {
  bottom: 3rem;
}

.banner .carousel-inner img {
  height: calc(100vh - 102px);
}

.banner .carousel-control-next,
.banner .carousel-control-prev {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--green);
  border-radius: 50%;
  opacity: 1;
}

.banner .carousel-control-next {
  right: 50px;
}

.banner .carousel-control-prev {
  left: 50px;
}

.banner .carousel-control-next:hover,
.banner .carousel-control-prev:hover {
  opacity: 0.5;
}

.banner .carousel-control-next-icon,
.carousel-control-prev-icon {
  background-size: 65% 65%;
}


.inner-banner.about {
  background-image: url('../../img/banner/about-banner.webp');
}

.about {
  height: calc(100vh - 102px);
  display: flex;
  align-items: center;
}

.about h3 {
  color: var(--nav-link);
  font-size: 34px;
}

.about hr {
  opacity: 1;
  width: 200px;
  color: var(--blue);
}

.about p {
  /*line-height: 40px;*/
  line-height: 36px;
  font-size: 18px;
  text-align: justify;
  padding-right: 30px;
}

.about a.readmore {
  background-color: var(--blue);
  color: var(--white);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 12px 40px;
  font-size: 18px;
  position: relative;
  /*margin-top: 21px;*/
  margin-top: 17px;
}

.about a.readmore.hvr-rectangle-out:before {
  background-color: var(--red);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.about a.readmore::after {
  content: '';
  background-color: var(--blue);
  position: absolute;
  width: 1113px;
  height: 1px;
  top: 50%;
  transform: translateY(0);
  left: 110%;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.about img {
  width: 100%;
}

.about .info {
  text-align: end;
  margin-top: 20px;
}

.about .info h4 {
  font-style: italic;
  color: var(--nav-link);
  font-size: 28px;
}

.about .info span {
  font-family: Zing Script;
  font-size: 20px;
}

.about .play {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  /*border: 6px solid var(--white);
  */
  background-color: var(--white);
  top: -40px;
  left: -20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about .play i {
  color: var(--red2);
  /*font-size: 40px;*/
  font-size: 100px;
  /*width: 100px;*/
  /*height: 100px;*/
  border-radius: 50%;
  /*border: 6px solid var(--red2);*/
  display: flex;
  justify-content: center;
  align-items: center;
  animation: ripple 1s linear infinite;
  -webkit-animation: ripple 1s linear infinite;
}

.about .col-lg-6:last-child {
  position: relative;
}





.super {
  height: calc(100vh - 119px);
  display: flex;
  align-items: center;
}

.super h2 {
  color: var(--nav-link);
}

.super .row {
  margin-top: 50px;
  /*row-gap: 30px;*/
  row-gap: 50px;
}

.super img {
  width: 80px;
}

.super a {
  margin-top: 15px;
  color: var(--nav-link);
  display: block;
  /*font-size: 28px;*/
  font-size: 24px;
  /* margin-bottom: 10px; */
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.super a:hover {
  color: var(--red);
}

.super p {
  color: var(--nav-link);
  font-size: 18px;
  font-weight: 400;
  padding-right: 30px;
}

.super .viewmore {
  position: relative;
  margin-top: 20px;
}

.super a.view-more {
  background-color: var(--blue2);
  color: var(--white);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 12px 40px;
  font-size: 18px;
  float: right;
}

.super a.view-more.hvr-rectangle-out:before {
  background-color: var(--red);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.super a.view-more::after {
  content: '';
  background-color: var(--blue2);
  position: absolute;
  width: 1115px;
  height: 1px;
  top: 50%;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  right: 110%;
}




.unsure {
  height: auto;
  /* height: calc(100vh - 119px); */
  /* display: flex;
  align-items: center; */
  background-color: var(--blue3);
  padding: 80px 0;
}

.unsure h2 {
  text-align: center;
  color: var(--white);
  margin-bottom: 20px;
}

.unsure .nav-pills {
  justify-content: center;
  gap: 10px;
}

.unsure .nav-pills .nav-link.active,
.unsure .nav-pills .show>.nav-link {
  width: 150px;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  background-color: var(--red);
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.unsure .nav-pills .nav-link {
  width: 150px;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  background-color: var(--blue4);
  color: var(--white);
}

/*.unsure .nav-pills .nav-link.active.hvr-rectangle-out::before {*/
/*    background-color: var(--blue4);*/
/*}*/
.unsure .nav-pills .nav-link.hvr-rectangle-out::before {
  background-color: var(--red);
}

.unsure .tab-content>.active {
  text-align: center;
}

.unsure .tab-content p {
  color: var(--white);
}

.unsure .tab-content .male {
  margin-top: 20px;
  position: relative;
}

.unsure .tab-content .male .left {
  position: absolute;
  top: 0;
}

.unsure .tab-content .male .left li {
  color: var(--white);
  position: absolute;
}

.unsure .tab-content .male .left li span {
  white-space: nowrap;
}

.unsure .tab-content .male .left li:hover {
  color: var(--red2);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

/* .unsure .tab-content .male .left li:hover span {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  padding-right: 20px;
} */
.unsure .tab-content .male .left li .inner {
  position: absolute;
  right: 50px;
  top: -35px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.unsure .tab-content .male .left li:hover .inner {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.unsure .tab-content .male .left li .inner ul {
  background-color: var(--red2);
  padding: 20px 0;
  text-align: left;
  width: 300px;
  z-index: 0;
  position: relative;
}

.unsure .tab-content .male .left li .inner ul::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--red2);
  transform: rotate(45deg) translateY(-50%);
  -webkit-transform: rotate(45deg) translateY(-50%);
  -moz-transform: rotate(45deg) translateY(-50%);
  -ms-transform: rotate(45deg) translateY(-50%);
  -o-transform: rotate(45deg) translateY(-50%);
  right: 0;
  top: 50%;
  z-index: -1;
}

.unsure .tab-content .male .left li .inner li {
  position: static;
  padding: 10px 0;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.unsure .tab-content p.name {
  display: none;
}

.unsure .tab-content .male .left li .inner li.name {
  display: none;
}

.unsure .tab-content .male .left li .inner li:hover {
  background-color: #af1818;
}

.unsure .tab-content .male .left li .inner a {
  /* white-space: nowrap; */
  color: var(--white);
  padding: 0 30px;
  display: block;
}

.unsure .tab-content .male .left li.eye span::after {
  position: absolute;
  margin-left: 15px;
  bottom: 0;
}


.unsure .tab-content .male .left li.eye {
  left: 365px;
  top: 50px;
}

.unsure .tab-content .male .left li.eye span::after {
  content: url('../../img/home/male-ear-pointer-img-white.png');
}

.unsure .tab-content .male .left li.eye:hover span::after {
  content: url('../../img/home/male-eye-pointer-img-red.png');
}


.unsure .tab-content .male .left li.ear {
  left: 350px;
  top: 65px;
}

.unsure .tab-content .male .left li.ear:hover span::after {
  content: url('../../img/home/male-ear-pointer-img-red.png');
}


.unsure .tab-content .male .left li.teeth {
  left: 375px;
  top: 100px;
}

.unsure .tab-content .male .left li.teeth span::after {
  content: url('../../img/home/male-teeth-pointer-img-white.png');
}

.unsure .tab-content .male .left li.teeth:hover span::after {
  content: url('../../img/home/male-teeth-pointer-img-red.png');
}

.unsure .tab-content .male .left li.teeth .inner {
  right: 70px;
  top: -56px;
}


.unsure .tab-content .male .left li.throat {
  left: 380px;
  top: 130px;
}

.unsure .tab-content .male .left li.throat span::after {
  content: url('../../img/home/male-throat-pointer-img-white.png');
}

.unsure .tab-content .male .left li.throat:hover span::after {
  content: url('../../img/home/male-throat-pointer-img-red.png');
}

.unsure .tab-content .male .left li.throat .inner {
  right: 70px;
}


.unsure .tab-content .male .left li.liver {
  left: 330px;
  top: 190px;
}

.unsure .tab-content .male .left li.liver span::after {
  content: url('../../img/home/male-liver-pointer-img-white.png');
}

.unsure .tab-content .male .left li.liver:hover span::after {
  content: url('../../img/home/male-liver-pointer-img-red.png');
}

.unsure .tab-content .male .left li.liver .inner {
  right: 60px;
}


.unsure .tab-content .male .left li.arm {
  left: 305px;
  top: 235px;
}

.unsure .tab-content .male .left li.arm span::after {
  content: url('../../img/home/male-hand-pointer-img-white.png');
}

.unsure .tab-content .male .left li.arm:hover span::after {
  content: url('../../img/home/male-hand-pointer-img-red.png');
}

.unsure .tab-content .male .left li.arm .inner {
  top: -100px;
  right: 55px;
}


.unsure .tab-content .male .left li.kidney {
  left: 360px;
  top: 265px;
}

.unsure .tab-content .male .left li.kidney span::after {
  content: url('../../img/home/male-kidneys-pointer-img-white.png');
  top: 10px;
}

.unsure .tab-content .male .left li.kidney:hover span::after {
  content: url('../../img/home/male-kidneys-pointer-img-red.png');
}

.unsure .tab-content .male .left li.kidney .inner {
  top: -77px;
  right: 120px;
}


.unsure .tab-content .male .left li.lb {
  left: 350px;
  top: 327px;
}

.unsure .tab-content .male .left li.lb span::after {
  content: url('../../img/home/male-lower-back-pointer-img-white.png');
}

.unsure .tab-content .male .left li.lb:hover span::after {
  content: url('../../img/home/male-lower-back-pointer-img-red.png');
}

.unsure .tab-content .male .left li.lb .inner {
  top: -100px;
  right: 140px;
}


.unsure .tab-content .male .left li.thigh {
  left: 410px;
  top: 440px;
}

.unsure .tab-content .male .left li.thigh span::after {
  content: url('../../img/home/male-elbow-pointer-img-white.png');
}

.unsure .tab-content .male .left li.thigh:hover span::after {
  content: url('../../img/home/male-thigh-pointer-img-red.png');
}

.unsure .tab-content .male .left li.thigh .inner {
  top: -55px;
  right: 65px;
}


.unsure .tab-content .male .left li.foot {
  left: 350px;
  top: 635px;
}

.unsure .tab-content .male .left li.foot span::after {
  content: url('../../img/home/male-foot-pointer-img-white.png');
  top: 10px;
}

.unsure .tab-content .male .left li.foot:hover span::after {
  content: url('../../img/home/male-foot-pointer-img-red.png');
}

.unsure .tab-content .male .left li.foot .inner {
  top: -75px;
  right: 60px;
}


.unsure .tab-content .male .right {
  left: 20%;
}

.unsure .tab-content .male .right li span::after {
  display: none;
}

.unsure .tab-content .male .right li span::before {
  position: absolute;
  right: 0;
  margin-right: 50px;
}

.unsure .tab-content .male .right li .inner ul::after {
  left: -14px;
}

.unsure .tab-content .male .right li .inner {
  left: 65px;
}



.unsure .tab-content .male .right li.brain {
  left: 605px;
  top: 55px;
}

.unsure .tab-content .male .right li.brain span::before {
  content: url('../../img/home/male-brain-pointer-img-white.png');
  bottom: 0;
}

.unsure .tab-content .male .right li.brain:hover span::before {
  content: url('../../img/home/male-brain-pointer-img-red.png');
}

.unsure .tab-content .male .right li.brain .inner {
  top: -90px;
}


.unsure .tab-content .male .right li.nose {
  left: 605px;
  top: 100px;
}

.unsure .tab-content .male .right li.nose .inner {
  top: -35px;
}


.unsure .tab-content .male .right li.heart {
  left: 585px;
  top: 160px;
}

.unsure .tab-content .male .right li.heart span::before {
  content: url('../../img/home/male-elbow-pointer-img-white.png');
  margin-right: 55px;
}

.unsure .tab-content .male .right li.heart:hover span::before {
  content: url('../../img/home/male-heart-pointer-img-red.png');
}

.unsure .tab-content .male .right li.heart .inner {
  top: -235px;
  left: 110px;
}


.unsure .tab-content .male .right li.lungs {
  left: 590px;
  top: 195px;
}

.unsure .tab-content .male .right li.lungs:hover span::before {
  content: url('../../img/home/male-lung-pointer-img-red.png');
}

.unsure .tab-content .male .right li.lungs .inner {
  top: -55px;
  left: 90px;
}


.unsure .tab-content .male .right li.elbow {
  left: 625px;
  top: 245px;
}

.unsure .tab-content .male .right li.elbow:hover span::before {
  content: url('../../img/home/male-elbow-pointer-img-red.png');
}

.unsure .tab-content .male .right li.elbow .inner {
  top: -100px;
  left: 70px;
}


.unsure .tab-content .male .right li.spine {
  left: 590px;
  top: 270px;
}

.unsure .tab-content .male .right li.spine span::before {
  content: url('../../img/home/male-spine-pointer-img-white.png');
  bottom: 0;
}

.unsure .tab-content .male .right li.spine:hover span::before {
  content: url('../../img/home/male-spine-pointer-img-red.png');
}

.unsure .tab-content .male .right li.spine .inner {
  top: -75px;
  left: 90px;
}


.unsure .tab-content .male .right li.stomach {
  left: 600px;
  top: 340px;
}

.unsure .tab-content .male .right li.stomach span::before {
  margin-right: 75px;
}

.unsure .tab-content .male .right li.stomach:hover span::before {
  content: url('../../img/home/male-stomach-pointer-img-red.png');
}

.unsure .tab-content .male .right li.stomach .inner {
  top: -75px;
  left: 90px;
}


.unsure .tab-content .male .right li.hip {
  left: 660px;
  top: 375px;
}

.unsure .tab-content .male .right li.hip span::before {
  content: url('../../img/home/male-hip-pointer-img-white.png');
  margin-right: 35px;
}

.unsure .tab-content .male .right li.hip:hover span::before {
  content: url('../../img/home/male-hip-pointer-img-red.png');
}

.unsure .tab-content .male .right li.hip .inner {
  top: -75px;
  left: 50px;
}


.unsure .tab-content .male .right li.knee {
  left: 580px;
  top: 510px;
}

.unsure .tab-content .male .right li.knee:hover span::before {
  content: url('../../img/home/male-knee-pointer-img-red.png');
}

.unsure .tab-content .male .right li.knee .inner {
  top: -55px;
  left: 60px;
}


.unsure .tab-content .male .right li.ankle {
  left: 630px;
  top: 600px;
}

.unsure .tab-content .male .right li.ankle span::before {
  content: url('../../img/home/male-ankle-pointer-img-white.png');
  top: 10px;
}

.unsure .tab-content .male .right li.ankle:hover span::before {
  content: url('../../img/home/male-ankle-pointer-img-red.png');
}

.unsure .tab-content .male .right li.ankle .inner {
  top: -55px;
  left: 70px;
}


.unsure .tab-content .female .left li.eye2 {
  top: 60px;
}

.unsure .tab-content .female .left li.ear {
  top: 75px;
}

.unsure .tab-content .female .left li.teeth {
  top: 110px;
}

.unsure .tab-content .female .left li.throat {
  top: 145px;
}

.unsure .tab-content .female .left li.throat .inner {
  right: 140px;
}

.unsure .tab-content .female .left li.breast {
  left: 300px;
  top: 180px;
}

.unsure .tab-content .female .left li.breast span::after {
  content: url(../../img/home/female-chest-pointer-img-white.png);
}

.unsure .tab-content .female .left li.breast:hover span::after {
  content: url(../../img/home/female-chest-pointer-img-red.png);
}

.unsure .tab-content .female .left li.breast .inner {
  right: 70px;
}

.unsure .tab-content .female .left li.liver {
  left: 327px;
  top: 215px;
}

.unsure .tab-content .female .left li.liver .inner {
  right: 70px;
}

.unsure .tab-content .female .left li.arm {
  left: 320px;
  top: 240px;
}

.unsure .tab-content .female .left li.kidney {
  top: 275px;
}

.unsure .tab-content .female .left li.lb {
  top: 340px;
}

.unsure .tab-content .female .left li.lb .inner {
  right: 150px;
}

.unsure .tab-content .female .left li.rs {
  left: 295px;
  top: 380px;
}

.unsure .tab-content .female .left li.rs span::after {
  content: url(../../img/home/female-reproductive-pointer-img-white.png);
}

.unsure .tab-content .female .left li.rs:hover span::after {
  content: url(../../img/home/female-reproductive-pointer-img-red.png);
}

.unsure .tab-content .female .left li.rs .inner {
  right: 180px;
  top: -75px;
}

.unsure .tab-content .female .left li.thigh .inner {
  right: 170px;
}

.unsure .tab-content .female .left li.foot {
  top: 660px;
}

.unsure .tab-content .female .right li.brain {
  left: 610px;
  top: 70px;
}

.unsure .tab-content .female .right li.nose {
  left: 600px;
  top: 110px;
}

.unsure .tab-content .female .right li.heart {
  left: 590px;
  top: 170px;
}

.unsure .tab-content .female .right li.lungs {
  left: 570px;
  top: 220px;
}

.unsure .tab-content .female .right li.lungs .inner {
  left: 120px;
}

.unsure .tab-content .female .right li.elbow {
  left: 635px;
  top: 250px;
}

.unsure .tab-content .female .right li.spine {
  left: 585px;
  top: 275px;
}

.unsure .tab-content .female .right li.spine .inner {
  left: 110px;
}

.unsure .tab-content .female .right li.stomach {
  top: 355px;
  left: 600px;
}

.unsure .tab-content .female .right li.hip {
  top: 390px;
}

.unsure .tab-content .female .right li.knee {
  top: 530px;
}

.unsure .tab-content .female .right li.ankle {
  top: 625px;
}


.unsure .more {
  text-align: center;
}

.unsure .more p {
  color: var(--white);
  font-size: 20px;
}

.unsure .more button {
  background-color: transparent;
  border: 0;
  color: var(--blue4);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.unsure .more button:hover {
  color: var(--red);
}


.modal-content {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  padding: 20px;
}

.modal-title {
  font-size: 30px;
  color: var(--blue);
}

.unsureModal .modal-header {
  border-bottom: 0;
}

.unsureModal .modal-body li {
  padding: 10px 0;
  border-bottom: 1px solid var(--footer);
}

.unsureModal .modal-body i {
  margin-right: 10px;
  color: var(--blue4);
}

.unsureModal .modal-body a {
  color: var(--top);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.unsureModal .modal-body a:hover {
  color: var(--red2);
}

.btn-close:focus {
  box-shadow: 0 0 0 0;
}






.services {
  height: calc(100vh - 119px);
  display: flex;
  align-items: center;
}

.services .head {
  display: flex;
  align-items: end;
  gap: 10px;
}

.services h2 {
  color: var(--top);
  line-height: 50px;
}

.services .row {
  margin-top: 80px;
  gap: 20px 0;
}

.services .row .card {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border: 0;
}

.services .row .card .images {
  position: relative;
}

.services .row .card .images::after {
  content: 'Book An Appointment';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 20px;
  opacity: 0;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  background-color: var(--red);
  padding: 5px 20px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  white-space: nowrap;
  display: none;
}

.services .row .card .images:hover::after {
  opacity: 1;
}

.services .row .card h3 {
  color: var(--service);
  font-weight: 400;
  padding-left: 10px;
  padding-top: 5px;
}

.services .row .card .icon {
  background-color: var(--icon-bg);
  width: 100px;
  height: 100px;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  position: absolute;
  bottom: 0;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.services .row .card .icon img {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.services .row .card:hover .icon {
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  background-color: #21396ead;
}




.experts {
  height: calc(100vh - 119px);
  display: flex;
  align-items: center;
  background-color: var(--experts);
}

.experts .row {
  margin-top: 100px;
}

.experts .col-lg-3 {
  text-align: center;
}

.experts .img {
  position: relative;
  z-index: 0;
}

.experts .bg {
  filter: url('#goo');
  -webkit-filter: url('#goo');
}

.experts .bg::before {
  width: 100%;
  content: '';
  position: absolute;
  left: 0;
  background-color: var(--blue4);
  clip-path: polygon(0 35%, 100% 50%, 90% 100%, 10% 100%);
  padding-top: 360px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.experts .col-lg-3:hover .bg::before {
  clip-path: polygon(0 45%, 100% 38%, 90% 100%, 10% 100%);
}

.experts h3 {
  color: var(--top);
  margin-top: 20px;
}

.experts span {
  color: var(--top);
}

.experts .viewmore {
  position: relative;
  margin-top: 50px;
}

.experts a::after {
  content: '';
  background-color: var(--blue4);
  position: absolute;
  width: 1115px;
  height: 1px;
  top: 50%;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  right: 110%;
}

.experts a.view-more {
  background-color: var(--blue4);
  color: var(--white);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 12px 40px;
  font-size: 18px;
  float: right;
}

.experts a.view-more.hvr-rectangle-out:before {
  background-color: var(--red);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}



.test {
  height: calc(100vh - 119px);
  display: flex;
  align-items: center;
}

.test h2 {
  text-align: center;
}

.test .cards {
  margin-top: 100px;
  /* display: flex;
  gap: 30px; */
}

.test .slick-track {
  width: 100% !important;
  display: flex;
  gap: 30px;
}

.test .card1 {
  width: 50% !important;
  flex: 1 0 47.5%;
}

.test .card1 .info {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
  margin-top: 30px;
  padding-right: 30px;
}

.test .card {
  background-color: var(--blue3);
  padding: 50px;
}

.test .card::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: var(--blue3);
  bottom: -15px;
  right: 65px;
  transform: rotate(45deg);
}

.test img.quote {
  width: 50px;
}

.test p {
  color: var(--white);
  font-size: 22px;
  margin-top: 20px;
}

.test .card1 .info .text {
  text-align: end;
}

.test .card1 .info .text h3 {
  color: var(--top);
  font-size: 22px;
}

.test .card1 .info .text span {
  color: var(--test);
}

.test .card1 .info img {
  border: 3px solid var(--blue3);
  border-radius: 50%;
  padding: 2px;
  border-left: 3px solid var(--white);
}

.test .slick-prev,
.test .slick-next {
  display: none !important;
}

.test .slick-dots {
  width: 15%;
  bottom: 60px;
}

.test .slick-dots li {
  width: 30px;
  height: 3px;
}

.test .slick-dots li button {
  width: 30px;
  height: 3px;
  padding: 0;
}

.test .slick-dots li button:before {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: var(--line);
  opacity: 1;
}

.test .slick-dots li.slick-active button:before {
  background-color: var(--blue3);
}

.test .slick-dotted.slick-slider {
  margin-bottom: 0;
}




.news {
  /*height: calc(100vh - 119px);*/
  height: calc(100vh - 102px);
  display: flex;
  align-items: center;
  background-color: var(--experts);
}

.news h2 {
  text-align: center;
  margin-bottom: 20px;
}

.news h3 {
  text-align: center;
}

.news #mixedSlider {
  position: relative;
  margin-top: 80px;
}

.news #mixedSlider .MS-content {
  white-space: nowrap;
  overflow: hidden;
  margin: 0;
  /* margin: 0 5%; */
}

.news #mixedSlider .MS-content .item {
  display: inline-block;
  width: 33.3333%;
  position: relative;
  vertical-align: top;
  overflow: hidden;
  height: 100%;
  white-space: normal;
  padding: 0 10px;
  /*transition: all 0.5s ease;*/
  /*-webkit-transition: all 0.5s ease;*/
  /*-moz-transition: all 0.5s ease;*/
  /*-ms-transition: all 0.5s ease;*/
  /*-o-transition: all 0.5s ease;*/
}

.news #mixedSlider .MS-content .item .imgTitle {
  position: relative;
}

.news #mixedSlider .MS-content .item .imgTitle .blogTitle {
  margin: 0;
  text-align: left;
  letter-spacing: 2px;
  color: #252525;
  font-style: italic;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  bottom: 0;
  font-weight: bold;
  padding: 0 0 2px 10px;
}

.news #mixedSlider .MS-content .item .imgTitle img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

/* .news #mixedSlider .MS-content .item p {
  font-size: 16px;
  margin: 2px 10px 0 5px;
  text-indent: 15px;
} */
/* .news #mixedSlider .MS-content .item a {
  float: right;
  margin: 0 20px 0 0;
  font-size: 16px;
  font-style: italic;
  color: rgba(173, 0, 0, 0.82);
  font-weight: bold;
  letter-spacing: 1px;
  transition: linear 0.1s;
} */
/* .news #mixedSlider .MS-content .item a:hover {
  text-shadow: 0 0 1px grey;
} */
.news #mixedSlider .MS-controls button {
  position: absolute;
  border: none;
  /* background-color: transparent; */
  outline: 0;
  font-size: 27px;
  top: -50px;
  /* top: 95px; */
  /* color: rgba(0, 0, 0, 0.4); */
  transition: 0.15s linear;
  width: 40px;
  height: 40px;
  background-color: var(--red);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}

/*.news #mixedSlider .MS-controls button:hover {*/
/*  color: rgba(0, 0, 0, 0.8);*/
/*}*/
.news #mixedSlider .MS-controls .MS-left {
  left: 92%;
}

.news #mixedSlider .MS-controls .MS-right {
  right: 12px;
}

.news #mixedSlider input {
  display: none;
}

.news #mixedSlider .navigation-manual {
  position: absolute;
  /*width: 800px;
  margin-top: -40px;
  */
  display: flex;
  justify-content: center;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.news #mixedSlider .manual-btn {
  border: 2px solid var(--blue4);
  padding: 5px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  cursor: pointer;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}

.news #mixedSlider .manual-btn:not(:last-child) {
  margin-right: 40px;
}

.news #mixedSlider .manual-btn:hover {
  background-color: var(--blue4);
}

.news #mixedSlider .manual-btn.active {
  background-color: var(--blue4);
}

.news #mixedSlider #radio1:checked~.first {
  margin-left: 0;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}

.news #mixedSlider #radio2:checked~.first {
  margin-left: -33.3333%;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}

.news #mixedSlider #radio3:checked~.first {
  margin-left: -66.6666%;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}

.news #mixedSlider #radio4:checked~.first {
  margin-left: -99.9999%;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}

/* .news #mixedSlider .navigation-auto {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 800px;
  margin-top: 460px;
}
.news #mixedSlider .navigation-auto div {
  border: 2px solid var(--blue4);
  padding: 5px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  cursor: pointer;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
.news #mixedSlider .navigation-auto div:not(:last-child) {
  margin-right: 40px;
}
.news #mixedSlider #radio1:checked ~ .navigation-auto .auto-btn1 {
  background-color: var(--blue4);
}
.news #mixedSlider #radio2:checked ~ .navigation-auto .auto-btn2 {
  background-color: var(--blue4);
}
.news #mixedSlider #radio3:checked ~ .navigation-auto .auto-btn3 {
  background-color: var(--blue4);
}
.news #mixedSlider #radio4:checked ~ .navigation-auto .auto-btn4 {
  background-color: var(--blue4);
} */
.news .row {
  margin-top: 50px;
}

/* .news .events {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
} */
.news .text {
  margin-top: 20px;
  padding: 10px;
}

.news .text p {
  color: var(--top);
  font-size: 20px;
}

.news .text a {
  color: var(--red);
  font-size: 20px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.news .img {
  position: relative;
}

.news .img .date {
  position: absolute;
  background-color: var(--red);
  color: var(--white);
  padding: 10px 20px;
  font-size: 20px;
  right: 0;
  bottom: 0;
  /*transition: all 0.5s ease;*/
  /*-webkit-transition: all 0.5s ease;*/
  /*-moz-transition: all 0.5s ease;*/
  /*-ms-transition: all 0.5s ease;*/
  /*-o-transition: all 0.5s ease;*/
}

/*.news .img .date p {*/
/*  transition: all 0.5s ease;*/
/*  -webkit-transition: all 0.5s ease;*/
/*  -moz-transition: all 0.5s ease;*/
/*  -ms-transition: all 0.5s ease;*/
/*  -o-transition: all 0.5s ease;*/
/*}*/
/*.news .events:hover .date {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  background-color: #e135278c;*/
/*  transition: all 0.5s ease;*/
/*  -webkit-transition: all 0.5s ease;*/
/*  -moz-transition: all 0.5s ease;*/
/*  -ms-transition: all 0.5s ease;*/
/*  -o-transition: all 0.5s ease;*/
/*}*/
/*.news .events:hover .date p {*/
/*  background-color: var(--blue);*/
/*  padding: 5px 20px;*/
/*  border-radius: 30px;*/
/*  -webkit-border-radius: 30px;*/
/*  -moz-border-radius: 30px;*/
/*  -ms-border-radius: 30px;*/
/*  -o-border-radius: 30px;*/
/*  transition: all 0.5s ease;*/
/*  -webkit-transition: all 0.5s ease;*/
/*  -moz-transition: all 0.5s ease;*/
/*  -ms-transition: all 0.5s ease;*/
/*  -o-transition: all 0.5s ease;*/
/*}*/
.news .events:hover .text a {
  color: var(--blue);
}



.insurance {
  height: calc(100vh - 102px);
  /*padding: 80px 0;*/
  display: flex;
  align-items: center;
}

.insurance h2 {
  color: var(--top);
}

.insurance .photos {
  margin: 50px 0;
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}

.insurance .photos.photo {
  margin-bottom: 0;
}




.inner-banner {
  position: relative;
  height: 250px;
  background-size: cover;
  background-position: center;
}

.inner-banner .redirect {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.inner-banner h2 {
  color: var(--white);
  font-size: 34px;
  margin-bottom: 10px;
}

.inner-banner p {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: auto;
}

.inner-banner p:hover {
  color: var(--red);
}

.inner-banner p:hover a {
  color: var(--red);
}

.inner-banner a {
  color: var(--white);
  margin-right: 10px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.inner-banner p i {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.inner-banner p:hover i {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}



.contact-form {
  padding: 80px 0;
}

.contact-form .card {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 0px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border: 0;
  padding: 30px;
}

.contact-form .card h4 {
  font-size: 20px;
  font-weight: 600;
}

.contact-form .card a {
  color: var(--top);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.contact-form .card a:hover {
  color: var(--red);
}

.contact-form .row .col-lg-8 {
  padding-left: 50px;
}

.contact-form h2 {
  margin-bottom: 30px;
}

.contact-form .row .col-lg-6 {
  margin-bottom: 10px;
}

.contact-form input {
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  line-height: 2.5;
}

.contact-form textarea {
  border-radius: 20px;
}

.contact-form .form-control:focus {
  box-shadow: 0 0 0 0;
  border-color: #ced4da;
}

.contact-form input[type="submit"] {
  background-color: var(--blue);
  padding: 0;
  border: 0;
  color: var(--white);
  margin-top: 10px;
}



.map iframe {
  display: block;
  width: 100%;
  height: 500px;
}


.about2 {
  padding: 80px 0;
}

.about2 h2 {
  /* text-align: center; */
  position: relative;
  padding-bottom: 30px;
}

.about2 i {
  position: absolute;
  bottom: -4px;
  left: 0;
  color: var(--blue);
  /* color: var(--white); */
  /* background-color: var(--blue);
  border: 2px solid var(--white);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%; */
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  font-size: 18px;
  animation: move 5s infinite cubic-bezier(0, 0, 1, 1);
  -webkit-animation: move 5s infinite cubic-bezier(0, 0, 1, 1);
}

.about2 h2::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: var(--red);
  bottom: 0;
  left: 0;
}

/* .about2 .text {
  margin-top: 30px;
} */
.about2 .text p {
  font-size: 18px;
  line-height: 35px;
}

.about2 .text p:first-child {
  margin-bottom: 20px;
}

.about2 .row {
  margin-top: 40px;
}



.leader {
  padding: 80px 0;
}

.leader .row {
  margin-top: 50px;
}

.leader .leader-pic-text {
  display: flex;
  align-items: end;
  gap: 20px;
  /* margin-bottom: 20px; */
  margin-left: 220px;
  margin-top: 140px;
}

.leader .leader-pic-text img {
  width: 250px;
}

.leader p.text {
  font-size: 18px;
  line-height: 35px;
  padding: 30px;
}

/* .leader .card {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border: 0;
} */
.leader .card {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border: 1px solid var(--blue);
  margin-left: 50px;
  margin-top: 50px;
}

.leader .leader-pic-text .pic {
  position: absolute;
  top: -50px;
  left: -50px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 0px;
}

.leader .leader-pic-text .quote {
  position: absolute;
  width: 60px;
  top: -30px;
  right: 30px;
}



.board {
  padding: 80px 0;
}

.board .card {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border: 0;
}



.are {
  padding: 80px 0;
}

.are .card {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border: 0;
}



.inner-banner.ss {
  background-image: url(../../img/banner/department-all.webp);
}

.specailites {
  padding: 80px 0;
}

.specailites h2 {
  text-align: center;
}

.specailites .row {
  margin-top: 40px;
  row-gap: 40px;
}

.specailites .card {
  padding: 0 40px;
  background-color: transparent;
  border: 1px solid var(--blue);
  /*box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  */
  /*box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 15px;
  */
  border: none;
  /*background: linear-gradient(150deg, var(--white) 45%, #1e95d350 30%);
  */
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.specailites .bg {
  filter: url('#goo');
  -webkit-filter: url('#goo');
}

.specailites .bg::before {
  width: 100%;
  content: '';
  position: absolute;
  left: 0;
  background-color: #addbf3;
  clip-path: polygon(0 60%, 100% 30%, 90% 100%, 10% 100%);
  padding-top: 290px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.specailites .col-lg-3:hover .bg::before {
  background-color: var(--blue);
  clip-path: polygon(0 30%, 100% 60%, 90% 100%, 10% 100%);
  padding-top: 330px;
}

.specailites .col-lg-3:nth-child(even) .bg::before {
  clip-path: polygon(0 30%, 100% 60%, 90% 100%, 10% 100%);
}

.specailites .col-lg-3:nth-child(even):hover .bg::before {
  clip-path: polygon(0 60%, 100% 30%, 90% 100%, 10% 100%);
}

.specailites .card img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.specailites .card h4 {
  text-align: center;
  margin-top: 15px;
  font-size: 18px;
  color: var(--blue);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

/* .specailites .card:hover {
  background-color: var(--blue);
} */
.specailites .card:hover h4 {
  color: var(--white);
}

.specailites .card a:last-child {
  text-align: center;
  background-color: var(--blue);
  border-radius: 30px;
  padding: 6px;
  color: var(--white);
  width: 90%;
  margin: auto;
  margin-top: 10px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.specailites .col-lg-3:hover .card a:last-child {
  visibility: visible;
  opacity: 1;
  background-color: #addbf3;
  color: var(--blue);
}



.intro {
  padding: 80px 0;
}

.intro h2 {
  margin-bottom: 20px;
}

.intro h4 {
  margin-bottom: 12px;
}

.intro .facility {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.intro .facility i {
  color: var(--blue4);
}




.doctors {
  padding: 80px 0;
}

.doctors .nav {
  row-gap: 1px;
}

.doctors .nav-pills .nav-link.active,
.doctors .nav-pills .show>.nav-link {
  background-color: var(--blue);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  text-align: left;
  color: var(--white);
}

.doctors .nav-pills .nav-link span {
  font-size: 14px;
}

.doctors .nav-pills .nav-link {
  text-align: left;
  color: var(--blue);
  background-color: #d5d4d4;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  width: 250px;
}

.doctors .tab-content {
  width: 100%;
  /* padding-left: 30px; */
}

.doctors .op-time {
  margin-top: 20px;
}

.doctors .dr-info {
  display: flex;
  /* justify-content: space-between; */
  gap: 20px;
}

.doctors .dr-info h3 span {
  color: black;
  font-size: 16px;
  font-weight: 500;
}

.doctors .buttons {
  display: flex;
  /* flex-direction: column; */
  row-gap: 10px;
  margin-top: 30px;
  gap: 10px;
}

.doctors .buttons a {
  background-color: var(--blue);
  color: var(--white);
  padding: 10px 15px;
  /* border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px; */
}

.doctors .buttons a:last-child {
  background-color: var(--red);
}

.doctors .buttons i {
  margin-left: 8px;
}

.doctors .buttons .hvr-rectangle-out:before {
  background-color: var(--red);
  /* border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px; */
}

.doctors .buttons a.hvr-rectangle-out:last-child:before {
  background-color: var(--blue);
}

.doctors img {
  width: 210px;
  /* float: right; */
}

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

.doctors .accordion-item {
  border: 0;
}

.doctors .accordion-item:not(:last-child) {
  margin-bottom: 5px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

/* .doctors .accordion-item .accordion-header {
  border: 1px solid var(--blue);
} */
.doctors .accordion-item .accordion-button {
  background-color: var(--blue);
  color: var(--white);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.doctors .accordion-item .accordion-button:focus {
  box-shadow: 0 0 0 0;
}

.doctors .accordion-item .accordion-button::after {
  content: '+';
  background-image: none;
  transform: initial;
}

.doctors .accordion-item .accordion-button:not(.collapsed) {
  background-color: var(--red);
  box-shadow: 0 0 0 0;
}

.doctors .accordion-item .accordion-button:not(.collapsed)::after {
  content: '-';
}

.doctors .accordion-item .accordion-body {
  border: 1px solid var(--line);
  border-top: 0;
}

.doctors .facility {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.doctors .facility i {
  color: var(--blue4);
}




.dr-details {
  padding: 80px 0;
}

.dr-details img {
  margin-bottom: 30px;
}

.dr-details .col-lg-4 {
  text-align: center;
}

.dr-details .col-lg-4 span:nth-child(2) {
  font-size: 20px;
}

.dr-details .col-lg-4 span:nth-child(4) {
  line-height: 40px;
}

.dr-details .col-lg-4 a {
  /* margin-top: 20px; */
  width: 100%;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 10px;
  background-color: var(--blue);
  color: var(--white);
}

.dr-details .col-lg-4 .hvr-rectangle-out:before {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  background-color: var(--red);
}

.dr-details .col-lg-4 a i {
  margin-left: 8px;
}

.dr-details .card {
  background-color: #1e95d330;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border: none;
  padding: 40px;
}

.dr-details .card h3 span {
  color: var(--top);
  font-size: 16px;
}

.dr-details .card .designation {
  margin-bottom: 10px;
}

.dr-details .card p span {
  color: var(--blue);
}

.dr-details .table-bordered> :not(caption)>*>* {
  padding: 12px 8px;
}

.dr-details .table th {
  vertical-align: middle;
  color: var(--blue) !important;
}

.dr-details tbody,
.dr-details td,
.dr-details tfoot,
.dr-details th,
.dr-details thead,
.dr-details tr {
  border-color: var(--line);
}

.dr-details .facility {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.dr-details .facility i {
  color: var(--blue4);
}

.dr-details .facility p {
  line-height: 35px;
}


.inner-banner.dr {
  background-image: url(../../img/banner/doctors-banner.webp);
}

.specailites.all-doctors .card.search {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  padding: 10px 20px;
  margin-top: 40px;
  margin-bottom: 50px;
  border-radius: 5px;
  border: 2px solid var(--blue4);
}

.specailites.all-doctors .card.search .row {
  margin-top: 0;
}

.specailites.all-doctors .card.search .form-select:focus {
  box-shadow: 0 0 0 0;
}

/* .specailites.all-doctors .row .col-lg-3 {
  display: none;
}
.specailites.all-doctors .row .col-lg-3.dr {
  display: block;
} */
/* .dr-none {
  display: none !important;
} */
.specailites.all-doctors .doctors-row {
  row-gap: 24px;
}

.specailites.all-doctors .doctors-row .card {
  border: 2px var(--bs-card-border-width) solid var(--bs-card-border-color);
  padding: 0;
}

.specailites.all-doctors .doctors-row .card::before {
  content: '';
  position: absolute;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: calc(2px/-1);
  left: calc(2px/-1);
  background: linear-gradient(to right, var(--red) 0%, var(--red) 100%),
    linear-gradient(to top, var(--red) 50%, transparent 50%),
    linear-gradient(to top, var(--red) 50%, transparent 50%),
    linear-gradient(to right, var(--red) 0%, var(--red) 100%),
    linear-gradient(to left, var(--red) 0%, var(--red) 100%);
  background-size: 100% 2px, 2px 200%, 2px 200%, 0% 2px, 0% 2px;
  background-position: 50% 100%, 0% 0%, 100% 0%, 100% 0%, 0% 0%;
  background-repeat: no-repeat, no-repeat;
  transition: transform 0.3s ease-in-out, background-position 0.3s ease-in-out, background-size 0.3s ease-in-out;
  transform: scaleX(0) rotate(0deg);
  transition-delay: 0.6s, 0.3s, 0s;
}

.specailites.all-doctors .doctors-row .card:hover::before {
  background-size: 200% 2px, 2px 400%, 2px 400%, 55% 2px, 55% 2px;
  background-position: 50% 100%, 0% 100%, 100% 100%, 100% 0%, 0% 0%;
  transform: scaleX(1) rotate(0deg);
  transition-delay: 0s, 0.3s, 0.6s;
}

.specailites.all-doctors .doctors-row .card:hover {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 0px;
}

.specailites.all-doctors .doctors-row .card .card-header {
  text-align: center;
  padding: 16px 0;
  font-weight: 600;
  color: var(--white);
  background-color: var(--blue);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.specailites.all-doctors .doctors-row .card img {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.specailites.all-doctors .doctors-row .card .card-body {
  background-color: #1e95d350;
  text-align: center;
}

.specailites.all-doctors .doctors-row .card .card-body::before {
  background-color: var(--experts);
}

.specailites.all-doctors .doctors-row .card .card-body:hover span {
  color: var(--top);
}

.specailites.all-doctors .doctors-row .card .card-body h5 {
  color: var(--red);
  margin-bottom: 5px;
}

.specailites.all-doctors .doctors-row .card .card-body span {
  font-size: 15px;
}

.specailites.all-doctors .doctors-row .card .card-body a {
  visibility: visible;
  opacity: 1;
  margin-top: 10px;
  width: 100%;
  padding: 6px;
  color: var(--white);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.specailites.all-doctors .doctors-row .card .card-body a i {
  margin-left: 5px;
}

.specailites.all-doctors .doctors-row .card .card-body a:nth-child(4) {
  background-color: var(--blue);
}

.specailites.all-doctors .doctors-row .card .card-body a:nth-child(4)::before {
  background-color: var(--red);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.specailites.all-doctors .doctors-row .card .card-body a:last-child {
  background-color: var(--red);
}

.specailites.all-doctors .doctors-row .card .card-body a:last-child::before {
  background-color: var(--blue);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.specailites.all-doctors form {
  position: relative;
}

.specailites.all-doctors form input {
  border: 0;
  color: var(--top);
  font-size: 1.5rem;
  padding: 0;
}

.specailites.all-doctors form input[type="search"] {
  outline: 0;
  width: 100%;
}

.specailites.all-doctors form input[type="search"]::-webkit-search-cancel-button {
  appearance: none;
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  background-image: url('../../img/icons/close.png');
  background-size: 20px 20px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  /* background-position: -5px 0; */
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.specailites.all-doctors form i {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--blue4);
  cursor: pointer;
}

.specailites.all-doctors form input:not(:placeholder-shown)+i {
  display: none;
}

.specailites.all-doctors form input:focus+i {
  display: none;
}

.specailites.all-doctors .card.search:focus-within {
  border: 2px solid var(--red);
}

.specailites.all-doctors table {
  display: none;
}

.specailites.all-doctors th {
  text-align: center;
}




.inner-banner.media {
  background-image: url(../../img/banner/contact-banner.webp);
}

.media {
  padding: 80px 0;
}

.media h2 {
  text-align: center;
}

.media .row {
  margin-top: 40px;
  row-gap: 24px;
}

.media .card {
  border: 0;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 0px;
  padding: 20px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.media .card:hover {
  margin-top: -10px;
}

.media .card img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  height: 250px;
  object-fit: cover;
  cursor: pointer;
}

.media .card .card-body {
  padding: 0;
  padding-top: 20px;
}

.media .card .card-body .date-icons {
  display: flex;
  justify-content: end;
  margin-top: 15px;
  align-items: center;
}

.media .card .card-body .date {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--blue4);
  /*margin-top: 15px;*/
}

.media .card .card-body .date-icons ul {
  display: flex;
  gap: 10px;
}

.media .card .card-body .date-icons ul li {
  width: 30px;
  height: 30px;
  border: 1px solid #000a;
  border-radius: 6px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.media .card .card-body .date-icons ul li.fb:hover {
  background-color: #3b5998;
  border: 1px solid #3b5998;
}

.media .card .card-body .date-icons ul li.yt:hover {
  background-color: #FF0000;
  border: 1px solid #FF0000;
}

.media .card .card-body .date-icons ul li.ig:hover {
  background: #f09433;
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
  border: 1px solid #f09433;
}

.media .card .card-body .date-icons ul i {
  font-size: 18px;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.media .card .card-body .date-icons ul li:hover i {
  color: var(--white);
}

.media .card .card-body .date-icons ul li.ig:hover i {
  -webkit-text-fill-color: var(--white);
}

.media .card .card-body .date-icons ul .fa-facebook-f {
  color: #3b5998;
}

.media .card .card-body .date-icons ul .fa-youtube {
  color: #FF0000;
}

.media .card .card-body .date-icons ul .fa-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  /* Also define standard property for compatibility */
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.media .card .card-body .date p {
  color: var(--blue4);
}

.media .card .card-body p {
  color: var(--test);
}

.media .card .card-body .button {
  margin-top: 16px;
}

.media .card .card-body .button a {
  padding: 12px 40px;
  color: var(--white);
  background-color: var(--red);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.media .card .card-body .button i {
  margin-left: 8px;
}

.media .card .card-body .button .hvr-rectangle-out:before {
  background-color: var(--blue);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}



.unsure.media {
  background-color: unset;
}

.unsure.media .youtube-play {
  background: red;
  border-radius: 50% / 10%;
  color: var(--white);
  font-size: 1em;
  /*changethistochangesize*/
  height: 3em;
  /*margin: 20px auto;
  */
  padding: 0;
  position: relative;
  text-align: center;
  text-indent: 0.1em;
  width: 4em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.unsure.media .youtube-play::before {
  background: inherit;
  border-radius: 5% / 50%;
  bottom: 9%;
  content: "";
  left: -5%;
  position: absolute;
  right: -5%;
  top: 9%;
}

.unsure.media .youtube-play::after {
  border-style: solid;
  border-width: 1em 0 1em 1.732em;
  border-color: transparent transparent transparent var(--white);
  content: ' ';
  font-size: 0.75em;
  height: 0;
  margin: -1em 0 0 -0.75em;
  top: 50%;
  position: absolute;
  width: 0;
}

.unsure.media #pills-profile .card:hover .youtube-play {
  animation: ripple2 1s linear infinite;
  -webkit-animation: ripple2 1s linear infinite;
}





.inner-banner.ba {
  background-image: url('../../img/banner/ba-banner.webp');
}

.appointment-form {
  padding: 80px 0;
}

.appointment-form .card {
  border: 0;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 0px;
  padding: 50px;
}

.appointment-form .card p {
  color: var(--top);
  font-size: 18px;
}

.appointment-form .card form {
  margin-top: 20px;
}

.appointment-form .card form input.form-control {
  border: 0;
  border-bottom: 1px solid var(--blue);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  padding-left: 0;
}

.appointment-form .card form input:focus {
  box-shadow: 0 0 0 0;
}

.appointment-form .card form label {
  padding-left: 0;
}

.appointment-form .card form label span {
  color: var(--red);
}

.appointment-form .card form input.form-control:focus~label {
  transform: scale(.85) translateY(-0.5rem) translateX(0);
}

.appointment-form .card form input.form-control:not(:placeholder-shown)~label {
  transform: scale(.85) translateY(-0.5rem) translateX(0);
}

.appointment-form .card form input[type="date"]::before {
  content: '\f073';
  font-family: 'FontAwesome';
  color: var(--blue);
  position: absolute;
  right: 15px;
  display: block;
}

.appointment-form .card form input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.appointment-form .card form .gender {
  display: flex;
  align-items: end;
  gap: 40px;
}

.appointment-form .card form select.form-select {
  border: 0;
  border-bottom: 1px solid var(--blue);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  padding-left: 0;
}

.appointment-form .card form select.form-select:focus {
  box-shadow: 0 0 0 0;
}

.appointment-form .card form select.form-select~label {
  transform: scale(.85) translateY(-0.5rem) translateX(0);
}

.appointment-form .card form select.form-select option:hover {
  background-color: var(--red);
}

.appointment-form .card form textarea.form-control {
  border: 0;
  border-bottom: 1px solid var(--blue);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  padding-left: 0;
}

.appointment-form .card form textarea.form-control:focus {
  box-shadow: 0 0 0 0;
}

.appointment-form .card form textarea.form-control:focus~label {
  transform: scale(.85) translateY(-0.5rem) translateX(0);
}

.appointment-form .card form .submit-btn {
  background-color: var(--blue);
  color: var(--white);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 12px 40px;
  border: 0;
}

.appointment-form .card .progress-bar {
  display: flex;
  margin: 40px 0;
  user-select: none;
  flex-direction: initial;
  margin-bottom: 20px;
}

.appointment-form .card .progress-bar .step {
  text-align: center;
  width: 100%;
  position: relative;
}

.appointment-form .card .progress-bar .step .bullet {
  height: 25px;
  width: 25px;
  border: 2px solid var(--blue);
  display: inline-flex;
  border-radius: 50%;
  position: relative;
  transition: 0.2s;
  font-weight: 500;
  font-size: 17px;
  line-height: 25px;
  justify-content: center;
  align-items: center;
}

.appointment-form .card .progress-bar .step .bullet.active {
  border-color: var(--red);
  background: var(--red);
}

.appointment-form .card .progress-bar .step .bullet span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--blue);
}

.appointment-form .card .progress-bar .step:nth-child(2) .bullet,
.appointment-form .card .progress-bar .step:nth-child(3) .bullet,
.appointment-form .card .progress-bar .step:nth-child(4) .bullet {
  border: 2px solid var(--topLine);
}

.appointment-form .card .progress-bar .step .bullet.active {
  border-color: var(--red);
}

.appointment-form .card .progress-bar .step:nth-child(2) .bullet span,
.appointment-form .card .progress-bar .step:nth-child(3) .bullet span,
.appointment-form .card .progress-bar .step:nth-child(4) .bullet span {
  color: var(--topLine);
}

.appointment-form .card .progress-bar .step .bullet.active span {
  display: none;
}

.appointment-form .card .progress-bar .step .bullet::before,
.appointment-form .card .progress-bar .step .bullet::after {
  position: absolute;
  content: '';
  bottom: 10px;
  right: -130px;
  height: 3px;
  width: 120px;
  background-color: var(--topLine);
}

.appointment-form .card .progress-bar .step .bullet.active::after {
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  animation: animate 0.3s linear forwards;
}

.appointment-form .card .progress-bar .step:last-child .bullet::before,
.appointment-form .card .progress-bar .step:last-child .bullet::after {
  display: none;
}

.appointment-form .card .progress-bar .step .check {
  position: absolute;
  left: 50%;
  top: 19%;
  font-size: 15px;
  transform: translate(-50%, -50%);
  display: none;
}

.appointment-form .card .progress-bar .step .check.active {
  display: block;
  color: #fff;
}

.appointment-form .card .progress-bar .step p {
  font-weight: 500;
  font-size: 15px;
  color: var(--blue);
  margin: 8px 0;
}

.appointment-form .card .progress-bar .step p.active {
  color: var(--red);
  transition: 0.2s linear;
}

.appointment-form .card .form-outer {
  width: 100%;
  /* overflow: hidden; */
  overflow-x: clip;
}

.appointment-form .card .form-outer form {
  display: flex;
  width: 400%;
  margin-top: 0;
}

.appointment-form .card .form-outer form .page {
  width: 25%;
  transition: margin-left 0.3s ease-in-out;
  /* height: fit-content; */
}

.appointment-form .card .form-outer form .page img {
  margin-bottom: 10px;
}

.appointment-form .card .form-outer form .page .title {
  text-align: left;
  font-size: 22px;
  font-weight: 500;
}

.appointment-form .card .form-outer form .page .field {
  width: 100%;
  height: 40px;
  /* display: flex; */
  /* position: relative; */
  margin-top: 20px;
  line-height: 16px;
}

.appointment-form .card .form-outer form .page.ci .field {
  /* height: 30px; */
  margin-top: 10px;
}

.appointment-form .card .form-outer form .page.ci .field:nth-child(5) {
  margin-top: 20px;
}

.appointment-form .card .form-outer form .page.ci .field:nth-child(6) {
  margin-top: 40px;
}

.appointment-form .card .form-outer form .page.ci p {
  font-size: 16px;
}

.appointment-form .card .form-outer form .page.ci .field .row {
  width: 103.8%;
}

.appointment-form .card .form-outer form .page.ci .field .form-select {
  padding: 6px 0;
  background-image: none !important;
}

.appointment-form .card .form-outer form .page.ci .field .nice-select {
  padding-left: 2px;
  padding-right: 70px;
  height: 40px;
  font-size: 16px;
  border: 0;
  border-bottom: 1px solid var(--blue);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.appointment-form .card .form-outer form .page.ci .field .nice-select .list {
  margin-top: 2px;
  right: 0;
}

.appointment-form .card .form-outer form .page.ci .field .nice-select .option {
  padding-left: 5px;
}

.appointment-form .card .form-outer form .page.ci .field .nice-select .option.selected {
  font-weight: normal;
}

.appointment-form .card .form-outer form .page.ci .field .nice-select .option:hover {
  background-color: var(--red);
  color: var(--white);
}

.appointment-form .card .form-outer form .page.ci .field .nice-select .option.focus {
  background-color: var(--red);
}

.appointment-form .card .form-outer form .page.ci .field .nice-select .option.selected.focus {
  background-color: var(--red);
}

.appointment-form .card .form-outer form .page.ci .field .nice-select:after {
  border-bottom: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  width: 8px;
  height: 8px;
  top: 55%;
}

.appointment-form .card .form-outer form .page.ci .field .nice-select:focus {
  box-shadow: 0 0 0 0;
}

.appointment-form .card .form-outer form .page.ci .field input {
  padding: 6px 0;
}

.appointment-form .card .form-outer form .page.ci .field .radio-inputs {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.appointment-form .card .form-outer form .page.ci .field .form-check {
  padding: 0;
  margin: 0;
}

.appointment-form .card .form-outer form .page.ci .field input[type="radio"]:checked,
.appointment-form .card .form-outer form .page.ci .field input[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  visibility: hidden;
}

.appointment-form .card .form-outer form .page.ci .field input[type="radio"]:checked+label,
.appointment-form .card .form-outer form .page.ci .field input[type="radio"]:not(:checked)+label {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  width: 120px;
  font-size: 14px;
  line-height: 20px;
  margin: 0 auto;
  text-align: center;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  color: var(--blue);
  transition: all 300ms linear;
  -webkit-transition: all 300ms linear;
  border: 1px solid var(--blue);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.appointment-form .card .form-outer form .page.ci .field input[type="radio"]:checked+label {
  background-color: var(--blue);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  color: var(--white);
}

.appointment-form .card .form-outer form .page.ci .field input[type="radio"]:not(:checked)+label {
  background-color: var(--footer);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.appointment-form .card .form-outer form .page.ci .field input[type="radio"]:not(:checked)+label:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.appointment-form .card .form-outer form .page.ci .field .form-check i {
  margin-right: 5px;
  font-size: 18px;
}

.appointment-form .card .form-outer form .page .field .iti {
  width: 100%;
}

.appointment-form .card .form-outer form .page .field .calendar {
  position: relative;
}

.appointment-form .card .form-outer form .page .field .calendar i {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: var(--blue);
}

.appointment-form .card .form-outer form .page.ci .field .row {
  align-items: center;
}

.mc-table__weekday {
  color: var(--blue);
}

.mc-date--active.mc-date--picked {
  background-color: var(--blue);
}

.mc-btn--success {
  color: var(--blue);
}

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

/* .appointment-form .card .form-outer form .page .field .label {
  position: absolute;
  top: -30px;
  font-weight: 500;
} */
.appointment-form .card .form-outer form .page .field input {
  /* height: 100%; */
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--blue);
  padding-left: 15px;
  font-size: 16px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.appointment-form .card .form-outer form .page .field input:focus-visible {
  border: 0;
  box-shadow: 0 0 0 0;
  outline: 0;
  border-bottom: 1px solid var(--blue);
}

.appointment-form .card .form-outer form .page .field select {
  width: 100%;
  padding-left: 10px;
  font-size: 17px;
  font-weight: 500;
}

.appointment-form .card .form-outer form .page .field button {
  border: none;
  background: var(--blue);
  margin-top: 0;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 40px;
  /*letter-spacing: 1px;
  */
  /*text-transform: uppercase;
  */
  transition: 0.5s ease;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.appointment-form .card .form-outer form .page .field button[disabled] {
  background-color: var(--footer);
  color: var(--black);
  cursor: no-drop;
}

.appointment-form .card .form-outer form .page .field button.hvr-rectangle-out::before {
  background-color: var(--red);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

/* .appointment-form .card .form-outer form .page .field button:hover {
  background: #000;
} */
.appointment-form .card .form-outer form .page .field button.prev {
  margin-right: 3px;
  font-size: 17px;
}

/* .appointment-form .card .form-outer form .page .field button.next {
  margin-left: 3px;
} */
.appointment-form .img {
  position: relative;
}

.appointment-form .img .card {
  background-color: var(--topLine);
  position: absolute;
  width: 70%;
  top: 64%;
  right: -1px;
  /* left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%); */
}

.appointment-form .img .card p {
  color: var(--top);
  font-size: 16px;
  margin-bottom: 10px;
}

.appointment-form .img .card p:last-child {
  margin-bottom: 0;
}

.appointment-form .img .hvr-rectangle-out:before {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  background-color: var(--experts);
}


.modal#bookAppointment .modal-title {
  text-transform: uppercase;
}

.modal#bookAppointment p:first-child {
  line-height: 35px;
}

.modal#bookAppointment p {
  font-size: 18px;
}

.modal#bookAppointment p span {
  color: var(--red);
  font-weight: bold;
}

.modal#bookAppointment p a {
  color: var(--blue);
  font-weight: bold;
}

.modal#bookAppointment .modal-footer button {
  padding: 12px 40px;
  font-size: 18px;
  background-color: var(--red);
  color: var(--white);
  border: 0;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.modal#bookAppointment .modal-footer button.hvr-rectangle-out:before {
  background-color: var(--blue);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}



.inner-banner.facility {
  background-image: url('../../img/banner/facilities_banner.webp');
}

.all-facilities {
  padding-top: 80px;
}

.all-facilities h2 {
  text-align: center;
}

.single-facility {
  padding: 80px 0;
}

.single-facility.bg {
  background-color: var(--experts);
}

.single-facility h2 {
  text-align: center;
  padding-bottom: 30px;
}

.single-facility h4 {
  color: var(--red);
  margin-bottom: 30px;
}

.single-facility .gallery {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 12px;
  padding: 0 12px;
}

.single-facility .gallery .col-lg-3,
.single-facility .gallery .col-lg-4,
.single-facility .gallery .col-lg-6 {
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 0;
  /* margin: 0 12px; */
  flex: 1 0 22%;
  height: 100%;
}

.single-facility .gallery div.col-lg-6 {
  padding-right: 30px;
}

.single-facility .gallery div.col-lg-6.right {
  padding-left: 30px;
}

.single-facility .gallery p {
  font-size: 18px;
  line-height: 35px;
}

.single-facility .gallery ul {
  margin-top: 30px;
  font-size: 18px;
  line-height: 35px;
}

.single-facility .gallery ul li {
  display: flex;
  align-items: baseline;
}

.single-facility .gallery ul i {
  margin-right: 10px;
}

.single-facility .gallery a {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 0px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  overflow: hidden;
  position: relative;
}

.single-facility .gallery a:hover {
  box-shadow: 0 8px 16px 0 rgb(0 0 0 / 20%);
}

.single-facility .gallery a::before,
.single-facility .gallery a::after {
  content: '';
  position: absolute;
  width: 20%;
  height: 20%;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  opacity: 0;
  z-index: 1;
  /* background-color: #f0f8ff7a; */
}

.single-facility .gallery a::before {
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
  top: 10px;
  left: 10px;
}

.single-facility .gallery a::after {
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  right: 10px;
  bottom: 10px;
}

.single-facility .gallery a:hover::before,
.single-facility .gallery a:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.single-facility .gallery a img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.single-facility .gallery a:hover img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}




footer {
  /*padding: 80px 0;*/
  padding: 50px 0;
  background-color: var(--footer);
}

footer .col-lg-3:nth-child(1) ul {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

footer .col-lg-3:nth-child(1) ul i {
  font-size: 24px;
  color: var(--white);
  /*background-color: var(--blue5);*/
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

footer .col-lg-3:nth-child(1) ul li:nth-child(1) i {
  color: #3b5998;
}

footer .col-lg-3:nth-child(1) ul li:nth-child(2) i {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  /* Also define standard property for compatibility */
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

footer .col-lg-3:nth-child(1) ul li:nth-child(3) i {
  color: #1DA1F2;
}

/*footer .col-lg-3:nth-child(1) ul li:nth-child(4) i {*/
/*    color: #25D366;*/
/*}*/
footer .col-lg-3:nth-child(1) ul li:nth-child(4) i {
  color: #0077b5;
}

footer .col-lg-3:nth-child(1) ul li:nth-child(5) i {
  color: #0077b5;
}

footer .col-lg-3:nth-child(1) ul li:nth-child(1) i:hover {
  background-color: #3b5998;
}

footer .col-lg-3:nth-child(1) ul li:nth-child(2) i:hover {
  background: #f09433;
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
  -webkit-text-fill-color: var(--white);
}

footer .col-lg-3:nth-child(1) ul li:nth-child(3) i:hover {
  background-color: #1DA1F2;
}

/*footer .col-lg-3:nth-child(1) ul li:nth-child(4) i:hover {*/
/*    background-color: #25D366;*/
/*}*/
footer .col-lg-3:nth-child(1) ul li:nth-child(4) i:hover {
  background-color: #0077b5;
}

footer .col-lg-3:nth-child(1) ul li:nth-child(5) i:hover {
  background-color: #0077b5;
}

footer .col-lg-3:nth-child(1) ul li i:hover {
  color: var(--white);
}

/*footer .col-lg-3:nth-child(1) ul i:hover {*/
/*  background-color: var(--red);*/
/*}*/
footer h3 {
  color: var(--blue);
  font-size: 24px;
  margin-bottom: 20px;
}

footer .col-lg-3:nth-child(2) {
  padding-left: 100px;
  padding-top: 20px;
}

footer .col-lg-3:nth-child(2) ul {
  line-height: 32px;
}

footer .col-lg-3:nth-child(2) ul i {
  /*margin-right: 5px;*/
  margin-right: 3px;
  /*font-size: 14px;*/
  font-size: 20px;
}

footer .col-lg-3:nth-child(2) ul a {
  color: var(--top);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  display: flex;
  align-items: center;
  font-size: 15px;
}

footer .col-lg-3:nth-child(2) ul a:hover {
  color: var(--red);
}

footer .col-lg-3:nth-child(2) ul a i {
  color: var(--orange);
}

footer .col-lg-3:nth-child(3) {
  padding-top: 20px;
}

footer .col-lg-3:nth-child(3) ul {
  line-height: 32px;
}

footer .col-lg-3:nth-child(3) ul i {
  /*margin-right: 5px;*/
  /*font-size: 14px;*/
  margin-right: 3px;
  font-size: 20px;
}

footer .col-lg-3:nth-child(3) ul a {
  color: var(--top);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  display: flex;
  align-items: center;
  font-size: 15px;
}

footer .col-lg-3:nth-child(3) ul a:hover {
  color: var(--red);
}

footer .col-lg-3:nth-child(4) {
  padding-top: 20px;
}

footer .col-lg-3:nth-child(4) h4 {
  font-size: 1.3rem;
}

footer .col-lg-3:nth-child(4) a.map {
  color: var(--top);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  font-size: 15px;
}

footer .col-lg-3:nth-child(4) a.map:hover {
  color: var(--red);
}

footer .col-lg-3:nth-child(3) ul a i {
  color: var(--orange);
}

footer .col-lg-3:nth-child(4) .footer-phone {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 8px;
}

footer .col-lg-3:nth-child(4) .footer-phone p {
  margin-bottom: 0;
  font-size: 15px;
}

footer .contact p {
  margin-bottom: 8px;
}

footer .contact p:last-child {
  margin-bottom: 0;
  font-size: 15px;
}

footer .contact a {
  font-weight: bold;
  color: var(--top);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  font-size: 15px;
}

footer .contact a:hover {
  color: var(--red);
}



.copy {
  background-color: var(--blue6);
  padding: 10px 0;
}

.copy .text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copy .text p {
  color: var(--white);
  font-size: 15px;
}

.copy .text a {
  color: var(--white);
  font-weight: bold;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.copy .text a:hover {
  color: var(--red);
}



.top #myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  background-color: var(--red2);
  color: white;
  cursor: pointer;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 50px;
  height: 50px;
  border: 2px solid var(--white);
}

.top .hvr-rectangle-out::before {
  background-color: var(--blue);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}



.inner-banner.dep {
  background-image: url('../../img/banner/General-Medicine-inner-banner.webp');
}




@keyframes move {
  0% {
    left: 0;
  }

  25% {
    left: 3%;
  }

  50% {
    left: 6%;
  }

  75% {
    left: 3%;
  }

  100% {
    left: 0%;
  }
}


@keyframes animate {
  100% {
    transform: scaleX(1);
  }
}


@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 53, 39, 0.1),
      0 0 0 10px rgba(225, 53, 39, 0.1),
      0 0 0 20px rgba(225, 53, 39, 0.1),
      0 0 0 30px rgba(225, 53, 39, 0.1);
  }

  100% {
    box-shadow: 0 0 0 10px rgba(225, 53, 39, 0.1),
      0 0 0 20px rgba(225, 53, 39, 0.1),
      0 0 0 30px rgba(225, 53, 39, 0.1),
      0 0 0 40px rgba(225, 53, 39, 0);
  }
}

@keyframes ripple2 {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 53, 39, 0.5),
      0 0 0 10px rgba(225, 53, 39, 0.5),
      0 0 0 20px rgba(225, 53, 39, 0.5),
      0 0 0 30px rgba(225, 53, 39, 0.5);
  }

  100% {
    box-shadow: 0 0 0 10px rgba(225, 53, 39, 0.5),
      0 0 0 20px rgba(225, 53, 39, 0.5),
      0 0 0 30px rgba(225, 53, 39, 0.5),
      0 0 0 40px rgba(225, 53, 39, 0);
  }
}



/* facilities */
#facilities {
  margin-top: 80px;
  margin-bottom: 120px;
}

.vission-head {
  margin-top: 54px;
}

.vission-head h2 {
  font-size: 25px;
  color: #313f90;
  margin-top: 0;
  font-weight: 700;
}

.vission-head hr {
  width: 80px;
  border: solid 1px #313f90;
  margin-top: 0;
  margin-left: 5px;
  opacity: 1;
}

.accordion-facilities {
  background: linear-gradient(to bottom right, #FFF, #000000);
  background: #e1362700;
  margin: 0 auto;
  border-radius: 3px;
  border-bottom: solid 1px #ccc;
  box-shadow: 0 10px 15px -20px rgba(0, 0, 0, 0.3), 0 30px 45px -30px rgba(0, 0, 0, 0.3), 0 80px 55px -30px rgba(0, 0, 0, 0.1);
}

.heading-facilities {
  color: #131313;
  border-bottom: 1px solid #131313;
  padding: 10px;
  cursor: pointer;
  margin: 15px 0px;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 0;
  position: relative;
}

.heading-facilities:nth-last-child(2) {
  border-bottom: 0;
}

.heading-facilities:first-child:hover {
  border-radius: 3px 3px 0 0;
}

.heading-facilities:nth-last-child(2):hover {
  border-radius: 0 0 3px 3px;
  margin-bottom: 0;
}

.heading-facilities::before {
  content: '';
  vertical-align: middle;
  display: inline-block;
  border-top: 7px solid #131313;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  transform: rotate(0);
  transition: all 0.5s;
  margin-top: 5px;
  position: absolute;
  right: 20px;
}

.heading-facilities:hover {
  background: #313f90;
  margin-bottom: 0px;
  color: #fff;
}

.active.heading-facilities::before {
  transform: rotate(-180deg);
}

.not-active.heading-facilities::before {
  transform: rotate(0deg);
}

.contents-facilities {
  display: none;
  background: #FFFAFA;
  padding: 15px;
}

.facilities-image {
  padding: 5px;
}

.facilities-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.text-facilities {
  padding: 5px;
}

.text-facilities h2 {
  font-size: 20px;
  color: #313f90;
  font-weight: 500;
  padding-top: 10px;
  margin-bottom: 0;
  line-height: 31px;
}

.text-facilities hr {
  width: 150px;
  border: solid 1px #313f90;
  margin-top: 0;
  margin-bottom: 15px;
  opacity: 1;
}

.text-facilities p {
  font-size: 14px;
  color: #333;
}

.icon-text-facilities {
  padding: 5px;
  display: flex;
}

.icon-facilities {
  height: 20px;
  position: relative;
  top: 3px;
}

.icon-facilities i {
  font-size: 20px;
  display: flex;
  align-items: center;
  color: #313f90;
}

.text1-facilities {
  padding: 0px 12px;
}

.text1-facilities p {
  font-size: 14px;
  color: #333;
  margin-bottom: 0;
}



.whatsapp {
  position: fixed;
  right: 30px;
  bottom: 80px;
}

.whatsapp i {
  background-color: #25D366;
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--white);
  font-size: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.whatsapp i:hover {
  background-color: transparent;
  color: #25D366;
  border: 2px solid transparent;
}




/*Inner Facilities Styles*/

#inner_facilities_section {
  height: calc(100vh - 102px);
  display: flex;
  align-items: center;
}

#inner_facilities_section.inner_third_facility.index,
#inner_facilities_section.index-emg-sevices.index {
  background-color: var(--experts);
}

#inner_facilities_section.inner_secnd_facility.index {
  background-color: var(--white);
}

#inner_facilities_section .col-lg-9 .row {
  row-gap: 24px;
}

#inner_facilities_section .col-md-3 a {
  text-decoration: none;
}

.inner_facilities_emergency {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--blue7);
  flex-direction: column;
  padding: 30px;
}

.inner_facilities_emergency h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.inner_facilities_emergency h4 {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
}

.inner_facilities_emgy_card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: all 0.5s ease;
  height: 170px;
  text-align: center;
  position: relative;
  opacity: 0.7;
  position: relative;
}

.inner_facilities_emgy_card::after {
  content: '';
  position: absolute;
  background-color: var(--blue7);
  opacity: 0.2;
  width: 100%;
  height: 5px;
  bottom: 0;
  z-index: 0;
  transition: 0.5s all ease;
}

.inner_facilities_emgy_card:hover::after {
  height: 100%;
}

.inner_facility_emgy_img {
  z-index: 1;
}

.inner_facility_emgy_img img {
  width: 65px;
  /*height: 60px;*/
}

.inner_facility_emgy_text {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
}

.inner_facility_emgy_text p {
  color: var(--blue7);
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
}

.inner_secnd_facility .inner_facilities_emergency h2 {
  font-size: 30px;
}

.inner_secnd_facility .inner_facility_emgy_img img {
  filter: invert(1) brightness(1.5) contrast(1.5);
}

.inner_secnd_facility .inner_facilities_emergency {
  background-color: var(--red3);
}

.inner_secnd_facility .inner_facility_emgy_text p {
  color: var(--red3);
}

/*.inner_secnd_facility{*/
/*    background-color: var(--experts);*/
/*}*/
.inner_third_facility .inner_facilities_emergency h2 {
  font-size: 30px;
  margin-bottom: 0;
}

.inner_secnd_facility .inner_facilities_emgy_card::after {
  background-color: var(--red3);
  opacity: 0.2;
}

.inner_third_facility .inner_facilities_emergency {
  background-color: var(--green);
}

.inner_third_facility .inner_facility_emgy_text p {
  color: var(--green);
}

.inner_third_facility .inner_facilities_emgy_card::after {
  background-color: var(--green);
  opacity: 0.2;
}

footer .img {
  text-align: center;
}

footer .img img {
  width: 250px;
}

/*.index-emg-sevices .inner_facilities_emgy_card img {*/
/*    filter: invert(1);*/
/*}*/


.testimonials {
  height: calc(100vh - 102px);
  display: flex;
  align-items: center;
}

.owl-carousel .owl-wrapper {
  display: flex !important;
  /*gap: 30px;*/
}

.owl-carousel .owl-wrapper-outer {
  overflow: unset;
  overflow-x: clip;
}

/*.owl-carousel .owl-item {*/
/*    width: 99% !important;*/
/*}*/
.owl-carousel .owl-item {
  width: 601px !important;
  margin-right: 50px;
}

.owl-carousel .owl-item img.quote {
  /*display: block;*/
  /*width: 17%;*/
  /*float: left;*/
  /*border: 5px solid #fff;*/
  /*border-radius: 20px;*/
  /*margin-left: 54px;*/
  /*margin-right: 35px;*/
  /*margin-top: 15px;*/
  /*filter: invert(1);*/
  position: absolute;
  top: -35px;
  left: 20px;
}

.owl-carousel .person-image {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 250px;
}

.testimonial-item.equal-height.style-6 {
  /*background-color: #eee;*/
  /*border-radius: 10px;*/
  /*margin: 10px;*/
  border: 2px solid var(--blue);
}

.cell-right {
  text-align: center;
  margin-right: 80px;
  padding-top: 35px;
  padding-bottom: 20px;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-content.quote {
  padding: 20px;
}

.testimonial-content.quote p {
  font-size: 18px;
  padding-right: 250px;
  padding-top: 50px;
}

.testimonial-content.quote span {
  font-size: 22px;
}

.et_right_sidebar #main-content .container:before {
  display: none;
}

#main-content .container {
  padding-top: 10px;
}

i.fa.fa-quote-left {
  padding: 0px 10px;
  color: #999;
}

.owl-buttons {
  display: none;
}

.testimonials h2 {
  margin-bottom: 150px;
  text-align: center;
}

.owl-theme .owl-controls {
  margin-top: 50px;
}

.owl-theme .owl-controls .owl-page,
.owl-theme .owl-controls .owl-pagination {
  display: flex;
  justify-content: center;
}

.owl-theme .owl-controls .owl-page span {
  width: 30px;
  height: 4px;
}

.owl-theme .owl-controls .owl-page.active span {
  background-color: var(--blue);
}


.about.new-about {
  position: relative;
}

.about.new-about .design {
  position: absolute;
  top: 0;
  right: 300px;
  width: 500px;
  z-index: -1;
}

.about.new-about .building {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.about.new-about a.readmore {
  padding: 8px 30px;
  margin-top: 30px;
}

.about.new-about a.readmore::after {
  display: none;
}

.about.new-about .col-lg-5 {
  text-align: center;
}

.about.new-about .col-lg-5 img {
  width: 50%;
}

.about.new-about .info {
  text-align: center;
}

.about.new-about .play {
  display: none;
}

.about.new-about .container {
  margin-bottom: 300px;
}

.about.new-about p {
  padding-right: 0;
  margin-bottom: 0;
}




/*media-model-styles*/
.media_model_image {
  margin-top: 20px;
}

.media_model_image img {
  height: 250px;
  object-fit: cover;
}



.new-about .building {
  height: 300px;
  margin-top: 50px;
  width: 100%;
}

.d_history {
  padding: 80px 0;
  background-color: var(--experts);
}

.d_history h2 {
  position: relative;
  margin-bottom: 40px;
}

.d_history h2::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--red);
  left: 0;
  bottom: -10px;
}

.d_history .col-lg-5 {
  text-align: center;
}

.d_history .info {
  margin-top: 20px;
}

.d_history .info h4 {
  color: var(--nav-link);
  font-size: 28px;
  font-style: italic;
}

.d_history .info span {
  font-size: 20px;
  font-family: Zing Script;
}

.d_history .mission {
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 26px;
}

.d_history .mission i {
  color: var(--red);
}

.about_tabs {
  padding: 80px 0;
  /*background-color: var(--experts);*/
}

.about_tabs .nav-pills {
  /*background-color: var(--red);*/
  background-color: var(--blue);
}

.about_tabs .nav-item {
  width: 25%;
}

.about_tabs .nav-link {
  color: var(--white);
  font-weight: bold;
  border-radius: 0;
  width: 100%;
  padding: 1rem;
}

.about_tabs .nav-link.hvr-rectangle-out::before {
  /*background-color: var(--blue);*/
  background-color: var(--red);
}

.about_tabs .nav-link.active {
  /*background-color: var(--blue);*/
  background-color: var(--red);
}

.about_tabs .nav-link.active::after {
  content: '';
  position: absolute;
  width: 1rem;
  height: 1rem;
  /*background-color: var(--blue);*/
  background-color: var(--red);
  left: 50%;
  bottom: -14px;
  transform: rotate(45deg) translateX(-50%);
}

.about_tabs .tab-content {
  border: 1px solid var(--top);
  padding: 20px;
  border-radius: 10px;
}

.about_tabs .tab-content h2 {
  color: var(--blue);
  font-size: 2rem;
  /*margin-top: 40px;*/
  margin-bottom: 40px;
  position: relative;
}

.about_tabs .tab-content h2::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--red);
  left: 0;
  bottom: -10px;
}

.about_tabs .tab-content .mission {
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 26px;
}

.about_tabs .tab-content .mission i {
  color: var(--red);
}

.about_tabs .tab-content .text {
  margin-top: 1rem;
}