/*--------- global css ---------*/

@font-face {
  font-family: ProximaNova-Bold;
  src: url("../fonts/ProximaNova-Bold.otf");
}
@font-face {
  font-family: ProximaNova-Regular;
  src: url("../fonts/ProximaNova-Regular.otf");
}
@font-face {
  font-family: ProximaNova-Semibold;
  src: url("../fonts/ProximaNova-Semibold.otf");
}
@font-face {
  font-family: ProximaNova-Thin;
  src: url("../fonts/ProximaNova-Thin.otf");
}
/*---------- Animation CSS------------ */
@keyframes scale-up {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scale-down {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

.scale-up {
  animation: scale-up 0.8s ease forwards;
}

.scale-down {
  animation: scale-down 0.8s ease forwards;
}

@keyframes slide-in {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-out {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-20px);
    opacity: 0;
  }
}

.slide-in {
  animation: slide-in 0.8s ease forwards;
}

.slide-out {
  animation: slide-out 0.8s ease forwards;
  display: none;
}

/*------------ Global CSS -----------*/

a {
  color: #14259b;
  text-decoration: unset;
}
.w-70 {
  width: 69%;
}
.w_80 {
  width: 80%;
}
.w_90 {
  width: 90%;
}
.border-top {
  border-top: 1px solid rgb(72 68 68 / 50%) !important;
  margin: 40px 0 60px;
}
.mx-8 {
  margin-right: 8rem !important;
  margin-left: 8rem !important;
}
.mt-7 {
  margin-top: 6rem !important;
}
.mt-6 {
  margin-top: 4rem;
}
.mb-6 {
  margin-bottom: 4rem;
}
.ps-6 {
  padding-left: 6rem;
}
.brd-rd5 {
  border-radius: 5px;
}
.right-auto {
  margin-left: 17.5rem;
  margin-right: auto;
}
.grey {
  color: #fcfcfc;
}
.darkgrey {
  color: #b8b8b8;
}
.blue {
  color: #14259b !important;
}
.dark-blue {
  color: #333a78;
}
.yellow {
  color: #f5a706 !important;
}
.light-yellow {
  color: #f5d601 !important;
}
.green {
  background: #afd790 !important;
}
.bg-grey {
  background: #f3f3f3;
}
.bg-yellow {
  background: #f9d386 !important;
}
.bg-blue {
  background: #94a1ff !important;
}
.justify {
  text-align: justify;
}
p {
  font: clamp(16px, 3.2vw, 18px) "ProximaNova-Regular";
  color: #000000;
  margin: 0;
  line-height: 30px;
  text-align: start;
}
h1 {
  color: #000000;
  font: clamp(28px, 3.2vw, 42px) "ProximaNova-Bold";
  line-height: clamp(30px, 3.8vw, 51px);
}
h2 {
  color: #ffffff;
  font: clamp(24px, 4.2vw, 30px) "ProximaNova-Semibold";
  text-align: center;
  line-height: clamp(28px, 4.2vw, 36px);
}
h3 {
  color: #ffffff;
  font: clamp(20px, 2.2vw, 28px) "ProximaNova-Semibold";
  line-height: 36px;
}
h4 {
  font: clamp(28px, 4.2vw, 60px) "ProximaNova-Semibold";
  line-height: clamp(36px, 5.2vw, 70px);
  color: #ffffff;
}
h5 {
  font: clamp(20px, 3.2vw, 24px) "ProximaNova-Semibold";
  margin: 0;
  line-height: 24px;
  text-align: center;
  margin-bottom: 5px;
}
h6 {
  font: clamp(18px, 4.2vw, 24px) "ProximaNova-Semibold";
  color: #000000;
}
.more-btn {
  color: #fb923c;
  font: 18px "ProximaNova-Semibold";
  text-align: center;
}
.px-6 {
  padding-right: 4rem !important;
  padding-left: 4rem !important;
}
.px-12 {
  padding-right: 12rem !important;
  padding-left: 12rem !important;
}
.px-17 {
  padding-left: 17rem;
  padding-right: 17rem;
}
.gy-6 {
  --bs-gutter-y: 2rem;
}
.font-36 {
  font-size: clamp(30px, 4.2vw, 36px);
}
/*------------ Button Animation -----------*/
.call-btn {
  display: flex;
  width: 140px;
  background: transparent;
  height: 35px;
  border-radius: 0px 5px 5px 0px;
  border: 1px solid #f5a706;
  align-items: center;
  justify-content: center;
  color: #000 !important;
  font: 15px "ProximaNova-Bold";
  text-decoration: unset;
}
.call-img {
  display: flex;
  width: 35px;
  height: 35px;
  background: #f5a706;
  justify-content: center;
  align-items: center;
  border-radius: 5px 0px 0px 5px;
}

.arrow1:hover::after {
  transform: translateX(8px);
}

/* Down Arrow Animation */

.arrow2 {
  opacity: 0;
  position: absolute;
  left: 85%;
  bottom: -10%;
  transform-origin: 50% 50%;
  transform: translate3d(-50%, -50%, 0);
}

.arrow-first {
  -webkit-animation: arrow-movement 2s ease-in-out infinite;
  animation: arrow-movement 2s ease-in-out infinite;
}

.arrow-second {
  -webkit-animation: arrow-movement 2s 1s ease-in-out infinite;
  animation: arrow-movement 2s 1s ease-in-out infinite;
}

.arrow2:before,
.arrow2:after {
  background: #fb923c;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  bottom: -40%;
  left: 15%;
  width: 18px;
}

.arrow2:before {
  transform: rotate(45deg) translateX(-23%);
  transform-origin: top left;
}

.arrow2:after {
  transform: rotate(-45deg) translateX(23%);
  transform-origin: top right;
}

/* Scroll Aniamtion CSS */
:root {
  --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --animation-duration: 1s;
}
@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.25);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.25);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(400px) rotateX(67.5deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(400px) rotateX(67.5deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
[data-animation] {
  opacity: 0;
  -webkit-animation-timing-function: var(--animation-timing-function);
  animation-timing-function: var(--animation-timing-function);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: var(--animation-duration);
  animation-duration: var(--animation-duration);
  will-change: transform, opacity;
}

.animations-disabled,
.animations-disabled [data-animation] {
  -webkit-animation: none !important;
  animation: none !important;
  opacity: 1 !important;
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

.slideInLeft {
  -webkit-animation-name: slideInleft;
  animation-name: slideInleft;
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.zoomReverseIn {
  -webkit-animation-name: zoomReverseIn;
  animation-name: zoomReverseIn;
}

.flipInY {
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

.flipOutY {
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  animation-direction: reverse;
}
/* Side Popup Form */

.side-book {
  position: fixed;
  top: 36%;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  z-index: 99;
  border: unset;
  background: #ffffff;
  padding: 0;
  margin-right: -195px;
  border-radius: 20px 0px 0px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #1a83a8;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font: 18px "ProximaNova-Bold";
  width: 258px;
  height: 64px;
  text-align: left;
}
.side-book:hover {
  margin-right: -12px;
}
.side-book:before {
  content: "";
  background: url(../img/icons/book.png) no-repeat center/cover;
  width: 84px;
  height: 67px;
  margin-right: 25px;
}
.modal-body {
  width: 600px !important;
  padding: 40px !important;
}
.modal-content {
  width: 600px !important;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
  }
}
#modalform .modal-dialog button.close {
  position: absolute !important;
  top: 10px;
  right: 10px;
  background-color: transparent;
  border: 0;
}
#modalform .modal-dialog button.close img {
  width: 25px;
}
/* --------Floating Container---------- */
.float-container {
  position: fixed;
  top: 20%;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  z-index: 99;
}
.float-container a {
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 258px;
  height: 64px;
  margin-right: -198px;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: #1a83a8;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font: 18px "ProximaNova-Bold";
}

.float-container a:hover {
  margin-right: -12px;
  background-color: #ffffff;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}
/* Icon settings - remove if not needed*/
.float-container .icon:before {
  font-family: "Font Awesome 5 Free";
  margin-right: 25px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.icon.one:before {
  content: "";
  background: url(../img/icons/ortho.png) no-repeat center/cover;
  width: 84px;
  height: 67px;
}

.icon.two:before {
  content: "";
  background: url(../img/icons/halt.png) no-repeat center/cover;
  width: 76px;
  height: 67px;
}

.icon.three:before {
  content: "";
  background: url(../img/icons/book.png) no-repeat center/cover;
  width: 84px;
  height: 67px;
}
/* ==============================================
              Nav bar Section
==================================================*/
/* header */
.header {
  display: block;
  width: 100%;
  z-index: 99;
}
.header-btn {
  font: 14px "ProximaNova-Semibold";
  background: #f5d601;
  border: unset;
  padding: 5px;
}
/* Header styling */
#main-header {
  width: 100%;
  position: fixed;
  top: 40px;
  left: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0);
  transition: all 0.3s ease;
  box-shadow: none;
  padding: 0.8rem 8rem;
}

/* Sticky class added by JS */
#main-header.sticky {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: rgb(255, 255, 255);
  padding: 0.7rem 10rem;
  top: 0;
}
.header .item-left {
  flex: 0 0 20%;
}

.header .logo a {
  font-size: 30px;
  color: #000000;
  font-weight: 700;
  text-decoration: none;
}

.header .item-center {
  flex: 0 0 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header .item-right {
  flex: 0 0 30%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header .item-right a {
  text-decoration: none;
  font-size: 14px;
  color: #555555;
  transition: color 0.3s ease;
}

.header .menu > ul > li {
  display: inline-block;
  line-height: 50px;
}

.header .menu > ul > li > a {
  font: 16px "ProximaNova-Regular";
  padding: 15px;
  color: #000;
  position: relative;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.header .menu > ul > li .sub-menu {
  position: absolute;
  z-index: 500;
  background-color: #ffffff;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
  transition: all 0.5s ease;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
}
/* Header Second */
.head-second {
  background: #000;
  padding: 0.8rem 16rem;
  position: sticky;
  top: 0;
}
.head-second .item-left {
  flex: 0 0 11%;
}
.head-second .item-center {
  flex: 0 0 74%;
}
.head-second .item-right {
  flex: 0 0 15%;
}
.head-second .menu > ul > li > a {
  color: #152b55;
}

.head-second .brochure-btn {
  color: #000;
  background: #ab844a;
}

@media (min-width: 992px) {
  .header .menu > ul > li.menu-item-has-children:hover .sub-menu {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
  }
}

.header .menu > ul > li .sub-menu > ul > li {
  line-height: 1;
}

.header .menu > ul > li .sub-menu > ul > li > a {
  display: inline-block;
  padding: 10px 0;
  font: 18px "ProximaNova-Regular";
  color: #555555;
  transition: color 0.3s ease;
  text-decoration: none;
  text-transform: capitalize;
}

.header .menu > ul > li .single-column-menu {
  min-width: 250px;
  max-width: 350px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li {
  line-height: 1;
  display: block;
}

.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
  padding: 10px 0;
  display: inline-block;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
}

.header .menu > ul > li .sub-menu.mega-menu {
  left: 50%;
  transform: translateX(-50%);
}

.header .menu > ul > li .sub-menu.mega-menu-column-4 {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 15px;
}

.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
  flex: 0 0 25%;
  padding: 0 15px;
}

.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title {
  font-size: 16px;
  color: #ea4636;
  font-weight: 500;
  line-height: 1;
  padding: 10px 0;
}

.header
  .menu
  > ul
  > li
  .sub-menu.mega-menu-column-4
  > .list-item.text-center
  .title {
  text-align: center;
}

.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  margin-top: 10px;
  height: 300px;
  object-fit: cover;
}

.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header .menu > ul > li .sub-menu > ul > li > a:hover,
.header .item-right a:hover,
.header .menu > ul > li:hover > a {
  color: #000000;
}
.sticky .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.sticky .menu > ul > li .sub-menu > ul > li > a:hover,
.sticky .item-right a:hover,
.sticky .menu > ul > li:hover > a {
  color: #f9ca85;
}
/* banner section */
.banner-section {
  background-image: url("../img/banner.jpg");
  background-size: cover;
  background-position: center;
  height: 700px;
  width: 100%;
  display: block;
}

.mobile-menu-head,
.mobile-menu-trigger {
  display: none;
}

/*responsive*/
@media (max-width: 1280px) {
  .header {
    padding: 0.8rem 1rem;
  }

  #main-header {
    padding: 0.8rem 1rem;
  }

  /* Sticky class added by JS */
  #main-header.sticky {
    padding: 0.7rem 1rem;
  }

  .header .item-center {
    order: 3;
    flex: 0 0 100%;
  }

  .header .item-left,
  .header .item-right {
    flex: 0 0 16%;
  }

  .v-center {
    justify-content: space-between;
  }

  .header .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }

  .header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: #000;
    width: 24px;
    position: relative;
  }

  .header .mobile-menu-trigger span:before,
  .header .mobile-menu-trigger span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
  }

  .head-second .mobile-menu-trigger span,
  .head-second .mobile-menu-trigger span:before,
  .head-second .mobile-menu-trigger span:after {
    background-color: #333333;
  }

  .header .mobile-menu-trigger span:before {
    top: -6px;
  }

  .header .mobile-menu-trigger span:after {
    top: 6px;
  }

  .header .item-right {
    align-items: center;
  }

  .header .menu {
    position: fixed;
    width: 320px;
    background-color: #ffffff;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }

  .header .menu.active {
    transform: translate(0%);
  }

  .header .menu > ul > li {
    line-height: 1;
    margin: 0;
    display: block;
  }

  .header .menu > ul > li > a {
    line-height: 50px;
    height: 50px;
    padding: 0 50px 0 15px;
    display: block;
    color: #152b55;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .header .menu > ul > li > a i {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 50px;
    transform: rotate(-90deg);
  }

  .header .menu .mobile-menu-head {
    display: flex;
    height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: sticky;
    background-color: #ffffff;
    top: 0;
  }

  .header .menu .mobile-menu-head .go-back {
    height: 50px;
    width: 50px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 16px;
    display: none;
  }

  .header .menu .mobile-menu-head.active .go-back {
    display: block;
  }

  .header .menu .mobile-menu-head .current-menu-title {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
  }

  .header .menu .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 25px;
  }

  .header .menu .menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .header .menu > ul > li .sub-menu.mega-menu,
  .header .menu > ul > li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 65px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
  }

  .header .menu > ul > li .sub-menu.active {
    display: block;
  }

  @keyframes slideLeft {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }

    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }

  @keyframes slideRight {
    0% {
      opacity: 1;
      transform: translateX(0%);
    }

    100% {
      opacity: 0;
      transform: translateX(100%);
    }
  }

  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
    margin-top: 0;
  }

  .header
    .menu
    > ul
    > li
    .sub-menu.mega-menu-column-4
    > .list-item.text-center
    .title {
    margin-bottom: 20px;
  }

  .header
    .menu
    > ul
    > li
    .sub-menu.mega-menu-column-4
    > .list-item.text-center:last-child
    .title {
    margin-bottom: 0px;
  }

  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
    flex: 0 0 100%;
    padding: 0px;
  }

  .header .menu > ul > li .sub-menu > ul > li > a,
  .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
    display: block;
  }

  .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
    margin-bottom: 15px;
  }

  .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }

  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 850px) {
  .header .item-left,
  .header .item-right {
    flex: 0 0 20%;
  }
}

@media (max-width: 540px) {
  .header .item-left,
  .header .item-right {
    flex: 0 0 32%;
  }
}
.text-box a {
  font: 14px "ProximaNova-Regular";
}
.top-bar {
  text-align: right;
  background: #14259B;
}
.top-bar img {
    background: #ffffff;
    border-radius: 5px;
    width: 24px;
    height: 24px;
    padding: 0px 2px 3px 4px;
}
.top-bar ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 8px 0;
    padding: 0rem 5rem;
}
.top-bar li {
  line-height: 24px !important;
}
.top-bar li a {
    margin: 0 24px 0 10px;
    font: 14px "ProximaNova-Regular" !important;
    color: #ffffff !important;
    padding: 0 !important;
}
.top-bar li:hover a {
  color: #f5a706 !important;
}
.icon-align {
    display: flex;
    color: #14259B;
    font: 14px 'ProximaNova-Regular';
    margin: 0;
}
.icon-align li {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.icon-align li a{
    display: flex;
    align-items: center;
    gap: 8px;
    color: #14259B !important;
}
/* Footer Section Style */

.footer-sec {
  background: #172a51;
  padding: 10px 0 10px;
}
.logo-text {
  width: 100%;
}
.footer-sec ul {
  display: flex;
  list-style: none;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}
.footer-sec li {
  padding-bottom: 10px;
  color: #fcfcfc;
  font: clamp(16px, 3.2vw, 18px) "ProximaNova-Regular";
  line-height: 26px;
}
.f-title {
  font-family: "ProximaNova-SemiBold";
  color: #fcfcfc;
  text-decoration: underline;
}
.footer-sec hr {
  margin: 1rem 0 3rem;
  color: inherit;
  border: 0;
  border-top: 1px solid #fcfcff;
  opacity: 1;
}
ul .links {
  display: flex;
  flex-direction: column;
  color: #252525;
  font: 16px "ProximaNova-Regular";
  padding: 0;
  margin-top: 15px;
}
.links a {
  color: #252525 !important;
  text-decoration: none;
}
li.social-icon {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.social-icon a {
  text-decoration: unset;
  color: #fff;
}
.social-icon .location {
  margin-right: 40px;
}
.social-icon img {
  margin-right: 12px;
  transition: 0.3s;
}
.social-icon img:hover {
  transform: scale(1.4);
}
.copyrights {
  background: #172a51;
  height: 82px;
  display: flex;
  align-items: center;
}
.copyrights ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.copyrights li {
  font: 16px "ProximaNova-Regular";
  color: #fcfcfc;
}
.to-top {
  position: fixed;
  z-index: 9999;
  bottom: 20px;
  right: 20px;
  display: none;
}
.to-top a.back-to-top {
  text-decoration: none;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 2em;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  background: #353535;
  transition: 0.3s;
  margin-bottom: 25px;
  box-shadow: rgba(149, 157, 165, 0.2) 1px 0px 5px 5px;
}
.scroll-to-tops {
  display: inline-block;
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 110px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 50%;
  transition: all 0.4s ease;
  right: 20px;
}
/*=======================================================
                     Home Page Style 
  ======================================================== */
.icon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 0%;
  top: 20%;
  z-index: 99;
}
.book-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 208px;
  height: 48px;
  border-radius: 24px;
  background: #f5d601;
  text-decoration: none;
  color: #000 !important;
  font: 18px "ProximaNova-Semibold";
  margin-top: 35px;
  transition: all 0.3s;
  cursor: pointer;
}
.book-btn:hover {
  box-shadow: 0px 0px 0px 10px #f5d6014d;
  transition: all 0.3s;
  /* -webkit-transform: translatey(-50%);
  transform: translatey(-50%); */
}
.home-showcase {
  padding: 0 var(--columnExt) 0;
  position: relative;
  margin: 2rem 0 20vw;
}
.home-showcase .home-showcaseSlider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide {
  position: relative;
  height: 72vh;
  overflow: hidden;
}
.home-showcase
  .home-showcaseSlider
  .swiper-wrapper
  .swiper-slide
  .swiper-image {
  width: 100%;
  height: 645px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  padding: 5vw 11vw;
}
.home-showcase
  .home-showcaseSlider
  .swiper-wrapper
  .swiper-slide
  .swiper-image
  .text-container {
  max-width: 100%;
  margin: 0 0 5rem;
}
.home-showcase
  .home-showcaseSlider
  .swiper-wrapper
  .swiper-slide
  .swiper-image
  .text-container
  .bigTitle {
  transform: translate(0%, 0);
  transition: transform 1.15s cubic-bezier(0.58, 0, 0.28, 0.99) 0.4s;
  margin: 0 0 2.5rem;
}
.home-showcase
  .home-showcaseSlider
  .swiper-wrapper
  .swiper-slide-active
  .swiper-image
  .text-container
  .bigTitle,
.home-showcase
  .home-showcaseSlider
  .swiper-wrapper
  .swiper-slide-active
  .swiper-image
  .text-container
  .container-arrow-button {
  transform: translate(0, 0);
}

.home-showcase .home-showcaseSlider .swiper-pagination-bullet {
  width: 4vw;
  border-radius: 50px;
  height: 2px;
  background-color: #8f9397;
  opacity: 1;
  transition: width 0.8s ease-in-out, 0.4s ease-in-out;
  margin: 0 4px !important;
}
.home-showcase .home-showcaseSlider .swiper-pagination-bullet-active {
  background-color: #f7970e;
  width: 8vw;
}
.home-showcase .home-showcaseSlider .showcaseSlider-nav {
  display: flex;
  flex-direction: row;
  padding: 0 0 3.5% 5%;
  padding-right: 0;
}
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev,
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next {
  position: static;
  display: flex;
  align-items: flex-end;
  font-weight: 900;
  margin: 0 2vw;
  width: 20px;
  height: auto;
}
.home-showcase
  .home-showcaseSlider
  .showcaseSlider-nav
  .showcaseSlider-prev.swiper-button-disabled,
.home-showcase
  .home-showcaseSlider
  .showcaseSlider-nav
  .showcaseSlider-next.swiper-button-disabled {
  opacity: 1;
}
.home-showcase
  .home-showcaseSlider
  .showcaseSlider-nav
  .showcaseSlider-prev.swiper-button-disabled:after,
.home-showcase
  .home-showcaseSlider
  .showcaseSlider-nav
  .showcaseSlider-next.swiper-button-disabled:after {
  color: #8f9397;
}
.home-showcase
  .home-showcaseSlider
  .showcaseSlider-nav
  .showcaseSlider-prev::after,
.home-showcase
  .home-showcaseSlider
  .showcaseSlider-nav
  .showcaseSlider-next::after {
  font-size: 4vw;
  color: #f7970e;
}
.home-showcase .home-showcaseSlider #macaron {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  margin: 5%;
  width: 30%;
}
.home-showcase .home-showcaseSlider .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 0 2.5% 8%;
  width: 28%;
}
.home-showcase .home-showcaseSlider .showcaseSlider-nav {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  padding: 0 5% 2.5% 5%;
}
 .home-showcase {
    margin: 6.2rem 0 0;
  }
@media (min-width: 1025px) {
  .home-showcase
    .home-showcaseSlider
    .swiper-wrapper
    .swiper-slide
    .swiper-image
    .text-container {
    max-width: 36% !important;
    margin: 0;
  }
}
@media (min-width: 1025px) {
 
  .home-showcase .home-showcaseSlider {
    display: block;
  }
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide {
    height: 100%;
  }
  .home-showcase
    .home-showcaseSlider
    .swiper-wrapper
    .swiper-slide
    .swiper-image {
    align-items: center;
  }
  .home-showcase
    .home-showcaseSlider
    .swiper-wrapper
    .swiper-slide
    .swiper-image
    .text-container {
    max-width: 44%;
    margin: 0;
  }
  .home-showcase
    .home-showcaseSlider
    .swiper-wrapper
    .swiper-slide
    .swiper-image
    .text-container
    .bigTitle {
    margin: 0 0 1.25rem;
  }
  .home-showcase .home-showcaseSlider .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 0 2.5% 11%;
  }
  .home-showcase .home-showcaseSlider .swiper-pagination-bullet {
    width: 1.5vw;
    height: 3px;
    margin: 0 8px !important;
  }
  .home-showcase .home-showcaseSlider .swiper-pagination-bullet-active {
    width: 3.5vw;
  }
  .home-showcase .home-showcaseSlider .showcaseSlider-nav {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    padding: 0 5% 2.5% 5%;
  }
  .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev,
  .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next {
    margin: 0 0.6vw;
  }
  .home-showcase
    .home-showcaseSlider
    .showcaseSlider-nav
    .showcaseSlider-prev::after,
  .home-showcase
    .home-showcaseSlider
    .showcaseSlider-nav
    .showcaseSlider-next::after {
    font-size: 1.2vw !important;
  }
}
/* Styles the thumbnail */

.popbox-target {
  position: fixed;
  top: -100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  overflow: hidden;
}

.popbox-target img {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 30%;
  bottom: 0;
  max-height: 0%;
  max-width: 0%;
  border: 3px solid white;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.popbox-target .certificate-2 {
  margin: auto;
  position: absolute;
  top: 0;
  left: 30%;
  right: 0;
  bottom: 0;
}
a.popbox-close {
  display: block;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  background: #f5a706;
  color: black;
  text-decoration: none;
  position: absolute;
  top: -80px;
  right: 0;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

a.popbox-close:before {
  content: "";
  display: block;
  height: 30px;
  width: 3px;
  background: rgb(255, 255, 255);
  position: absolute;
  left: 26px;
  top: 10px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

a.popbox-close:after {
  content: "";
  display: block;
  height: 30px;
  width: 3px;
  background: rgb(255, 255, 255);
  position: absolute;
  left: 26px;
  top: 10px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.popbox-target:target {
  opacity: 1;
  top: 130px;
  bottom: 0;
  left: 0;
}

.popbox-target:target img {
  max-height: 100%;
  max-width: 100%;
}

.popbox-target:target a.popbox-close {
  top: 0px;
}

/* service section */

.card-content {
  border-radius: 10px;
  background: #14259b;
  width: 219px;
  height: 184px;
  margin: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 200ms ease-in-out;
}
.card-content:hover {
  box-shadow: -10px -10px 0px 0px rgb(20 38 156 / 50%);
}
.card-content p {
  padding: 0 25px;
}
/* specialities section */
.specialities-section {
  padding: 50px 0 20px;
  background: #f9f9f9;
}
.speciality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  column-gap: 30px;
  row-gap: 30px;
  justify-items: center;
  padding: 5rem 2rem;
}
.speciality-grid-item {
  width: 210px;
  height: 200px;
  border-radius: 10px;
  background: #e9eaf0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
}
.speciality-grid-item::before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  border: 2px solid #8891ec;
  background: #333a78;
  box-shadow: 0px 2px 2px 0px #acafce;
  transition: all 0.3s ease-in-out;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0;
}
.speciality-grid-item:hover:before {
  top: 0;
  opacity: 1;
  border-radius: 10px;
}
.speciality-grid-item:hover p {
  color: #fcfcfc;
}
#speciality {
  border-radius: 10px;
  background: #f5f5f5;
}
.speciality-title {
  font: 20px "ProximaNova-Semibold";
  color: #1e1e1e;
}
/* speciality-center-section */

.speciality-center-section {
  background: url(../img/home/speciality-center.png) no-repeat 100% / cover;
  height: 890px;
  display: flex;
  position: relative;
  z-index: 99;
}
/* Doctors Slider CSS */

.swiper-consult {
  overflow: hidden;
}
.swiper-consult .swiper-slide .grid-items {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  width: 100%;
  height: 570px;
  max-height: 700px;
  position: relative;
  overflow: hidden;
}
.swiper-slide .grid-items .team-1 {
  transition: all 0.8s;
  width: 380px;
  height: 450px;
  border-radius: 0%;
  /* position: absolute; */
  top: 5%;
  right: 10%;
}
.swiper-slide .grid-items:hover .team-1 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  /* transition: all 0.6s; */
  top: 4%;
  opacity: 0;
}
.swiper-slide .grid-items .team-2 {
  transition: all 0.8s;
  width: 380px;
  height: 450px;
  border-radius: 0%;
  /* position: absolute; */
  top: 5%;
  right: 11%;
  opacity: 0;
}
.swiper-slide .grid-items:hover .team-2 {
  opacity: 1;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  transition: all 0.6s;
  top: 4%;
}
.doctor-content {
  opacity: 1;
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 22%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  transition: all 0.3s;
  transform: translateY(-2%);
}
.swiper-slide:hover .doctor-content {
  bottom: 0;
  opacity: 1;
  transform: translateY(-340%);
  transition-delay: 0.3s;
}
.center-name {
  font: 20px "ProximaNova-Bold";
  color: #252525;
  text-align: center;
  transition: all 0.5s;
}
.center-des {
  font: 14px "ProximaNova-Regular";
  color: #252525;
  line-height: 25px;
  text-align: center;
  transition: all 0.5s;
}
.swiper-slide .grid-items:hover .center-name {
  text-align: start;
  transition: all 0.5s;
  width: 65%;
}
.swiper-slide .grid-items:hover .center-des {
  text-align: start;
  transition: all 0.5s;
  width: 60%;
}
.center-des span {
  font: 18px "ProximaNova-Regular";
}
.doctor-des {
  opacity: 0;
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  transition: all 0.3s;
  transform: translateY(20px);
}
.swiper-slide .grid-items:hover .doctor-des {
  opacity: 1;
  transform: unset;
  transition-delay: 0.3s;
  top: 100%;
}
.doctor-des ul {
  list-style: outside;
  padding: 0px 25px;
  margin-bottom: 5px;
}

.speciality-center-section .swiper-prev {
  position: absolute;
  background: url(../img/icons/prev.png) no-repeat center/cover;
  height: 32px;
  width: 32px;
  top: 50%;
}
.speciality-center-section .swiper-next {
  position: absolute;
  background: url(../img/icons/next.png) no-repeat center/cover;
  height: 32px;
  width: 32px;
  top: 50%;
}
.speciality-center-section .swiper-next {
  right: 6%;
  left: auto;
}
.speciality-center-section .swiper-prev {
  left: 6%;
  right: auto;
}

/* Champion Stories Section  */

.champion-sec {
  background: #effafc;
  padding: 70px 0;
}
.champion-sec .swiper-container {
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 50px 0px;
  position: relative;
}
.champion-slider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: unset;
  height: 100%;
  color: #000;
  transform: scale(0.8);
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  transition: 0.3s all;
  border-radius: 10px;
  cursor: auto;
}

.champion-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}
.swiper-pagination-bullet-active {
  background: #14259b;
}
.champion-slider
  .swiper-slide:not(.swiper-slide-prev):not(.swiper-slide-active):not(
    .swiper-slide-next
  ) {
  opacity: 0;
}
.champion-slider .swiper-slide-active {
  transition: 0.3s all;
  opacity: 1;
  background: unset;
  height: 100%;
}
.champion-slider .swiper-slide video {
  border-radius: 20px;
  width: 82%;
}
.champion-slider .swiper-button-next:after,
.champion-slider .swiper-button-prev:after {
  font-size: 0 !important;
}
.champion-slider .swiper-button-prev {
  position: absolute;
  top: 50% !important;
  color: #6b8eb7 !important;
  background: url(../img/icons/angle-left.png) no-repeat center/cover;
  width: 17px;
  height: 31px;
}
.champion-slider .swiper-button-next {
  position: absolute;
  top: 50% !important;
  color: #6b8eb7 !important;
  background: url(../img/icons/angle-right.png) no-repeat center/cover;
  width: 17px;
  height: 31px;
}
/* recovery-section */
.recovery-sec {
  padding: 50px 0;
  background-color: #fcfcfc;
}
iframe#iFrameResizer0 {
  height: 395px !important;
}

.tb_rv_wrapper {
  background-color: #ffffff4f !important;
  width: 100%;
}
.testimonial-section {
  padding-top: 82px;
  padding-bottom: 72px;
}
.review {
  width: 85%;
  height: 510px;
  border: none;
  margin: 0 auto;
}
.testimonial-section .swiper-slide {
  text-align: center;
  border-radius: 40px;
  padding: 30px 0;
  background: var(--primary-text);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.testimonial-section .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recovery-sec .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 10px !important;
}
.recovery-sec .swiper-pagination-bullet {
  background: #bcd8e9 !important;
  opacity: 1 !important;
  width: 10px !important;
  height: 10px !important;
}
.recovery-sec .swiper-pagination-bullet-active {
  background: url(../img/home/page.png) no-repeat center/cover !important;
  height: 26px !important;
  width: 26px !important;
}
.swiper.testimonial-wrapper {
  padding: 30px 0px 130px;
  width: 94%;
  z-index: 0;
}
.testimonial-items .testimonial-text {
  font: 18px "ProximaNova-Regular";
  padding: 15px 30px 70px;
  margin-bottom: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  background: #f3f3f3;
  border-radius: 20px;
  line-height: 30px;
}
.testimonial-img {
  position: relative;
  height: 70px;
  text-align: center;
}
.award-sec {
  background: #effafc;
  padding: 70px 0 120px;
}
.award-sec .tab {
  float: left;
  width: 30%;
  height: 325px;
  overflow-x: hidden;
}
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(202, 202, 202);
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #14259bb8;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #14259bb8;
}
.award-sec .tab button {
  display: block;
  background-color: #ffffff;
  color: #000000;
  margin-bottom: 8px;
  padding: 18px 25px;
  width: 400px;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font: 20px "ProximaNova-Semibold";
}
.award-sec .tab button:hover {
  background-color: #14259b;
  color: #ffffff;
}
.award-sec .tab button.active {
  background-color: #14259b;
  color: #ffffff;
}
.award-sec .tabcontent {
  float: left;
  width: 67%;
  margin-left: 35px;
}
.award-grid {
  display: grid;
  row-gap: 25px;
  column-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  justify-items: center;
  align-items: center;
  background: #ffffff;
}
.grid-content {
  padding: 0 55px;
}

/* equipment section */

.equipment-section {
  background: #effafc;
  padding: 70px 0 100px;
  position: relative;
}
.equipment-section h5 {
  margin-bottom: 20px;
  padding-left: 6rem;
}
.equipment-section .swiper-container {
  width: 85%;
  margin-left: 15%;
  height: auto;
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.equipment-section .swiper-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  box-sizing: content-box;
}
.equipment-section .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.equipment-section .swiper-navigation {
  position: relative;
}
.equipment-section .swiper-button-next {
  left: auto;
  right: 40px;
}
.equipment-section .swiper-button-prev {
  left: auto;
  right: 90px;
}
.equipment-section .swiper-button-next,
.equipment-section .swiper-button-prev {
  position: absolute;
  top: 95%;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 50%;
  height: 32px;
  width: 32px;
}
.equipment-section .swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px !important;
  font-weight: bold;
}

.blue-overlay {
  position: absolute;
  z-index: 9;
}
.black-overlay {
  position: absolute;
  z-index: 9;
  right: 0;
}
.lightbox {
  top: 4700px !important;
}
.lb-data .lb-details {
  width: 100% !important;
  text-align: center !important;
}
.lb-data .lb-close {
  margin-top: -44rem;
}
.learn-btn {
  position: absolute;
  right: 11%;
  bottom: 4%;
  font: 18px "ProximaNova-Semibold";
}
.arrow-rtl {
  animation: pulse 3s ease-out;
  animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
    transform: translateX(10px);
  }
  100% {
    opacity: 0.5;
  }
}
/* Blog Section  */
.blog-sec {
  background: #fcfcfc;
  padding: 50px 0;
}
.blog-grid {
  display: grid;
  row-gap: 25px;
  column-gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  padding: 1% 7%;
}
.author {
  font: 15px "ProximaNova-Thin";
  text-decoration: underline;
  text-decoration-color: #f6ca6c;
}
/* -------------------------------------
              Common Banner
-----------------------------------------*/
.common-banner {
  background: #333a78;
  margin-top: 115px;
}
.breadcrumb li::after {
  display: inline-block;
  content: "/";
  margin: 0 0.6em;
  color: #ffffff;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 3rem 19rem;
  list-style: none;
  margin: 0;
}
.breadcrumb a {
  font-family: "ProximaNova-Regular";
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}
li.current {
  font-family: "ProximaNova-Regular";
  color: #fff;
}
.breadcrumb li:last-of-type::after {
  display: none;
}
/* ======================================
              About Us
========================================= */
.about-banner {
  background: url(../img/about/about-banner.png) no-repeat center / cover;
  height: 530px;
  margin-top: 115px;
  display: flex;
  align-items: center;
  text-align: center;
}
.story-sec {
  background: url(../img/about/story-bg.png) no-repeat center / cover;
  height: 990px;
  display: flex;
  align-items: flex-end;
  margin-top: 120px;
}
.vision-sec {
  padding: 80px 0;
  margin-top: 120px;
}
.vision-mission {
  display: flex;
  align-items: flex-end;
  padding: 40px 10px 0;
}
.vision-sec hr {
  margin: 2rem 0 0;
  border: 0;
  border-top: 1px solid #5f66a4;
  opacity: 1;
}
.border-rt {
  border-right: 1px solid #5f66a4;
}
.founder-sec {
  background: #ffffff;
  padding: 80px 0 50px;
  margin-top: 110px;
}
.value-sec {
  background: #effafc;
  padding: 50px 0;
}
.value-sec ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font: 16px "ProximaNova-Semibold";
}
.value-sec ul li {
  padding: 20px 0px;
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* timeline section */
.timeline-sec {
  padding: 70px 0 0;
  background: #1b1e35;
}
.time {
  display: flex;
  max-width: 70%;
  margin: 6rem auto 0;
  justify-content: space-between;
}
.sidebar {
  position: sticky;
  top: 120px;
  height: 56vh;
  padding-top: 0px;
  flex-basis: calc(90% - 400px - 80px);
  flex-grow: 1;
}
.sidebar .year {
  font-size: 124px;
  line-height: 1;
  color: #dbdbdb;
  font-family: "ProximaNova-Bold";
}
.timeline-container {
  width: 100%;
  margin: auto;
  display: block;
  position: relative;
}
.timeline-container ul.tl {
  padding: 0;
  display: inline-block;
}
.timeline-container ul.tl li {
  list-style: none;
  margin: 115px auto;
  min-height: 45vh;
  border-left: 2px solid #5d628e;
  padding: 0 0 50px 30px;
  position: relative;
}
.timeline-container ul.tl li.tl-item {
  min-height: 30vh;
}
.timeline-container ul.tl li:last-child {
  border-left: 0;
}
.timeline-container ul.tl li .item-icon {
  position: absolute;
  left: -70px;
  top: -150px;
  font-size: 124px;
  font-family: "ProximaNova-Bold";
  color: #f5a706;
}
.item-text {
  border: 1px solid #5d628e;
  border-radius: 10px;
  padding: 15px 10px;
  width: 470px;
  height: 450px;
  position: absolute;
  left: 14rem;
  top: -7rem;
}
.time-text {
  color: #fcfcfc;
  line-height: 25px;
  font-family: "ProximaNova-Regular";
  margin-top: 10px;
}
.time-text1 {
  font-family: "ProximaNova-SemiBold";
  color: #ffffff;
  margin-top: 10px;
}
/* founder's message */
.founder-section {
  background: url(../img/about/founder-bg.png) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 80px 0;
}
.video-sec {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 50px 0;
}
/* our team */
.our-team-section {
  padding: 70px 0;
  background: #ffffff;
  margin-top: 120px;
  z-index: 999;
  position: relative;
}
.our-team-section .w-85 {
  width: 85%;
}
.our-team-section .swiper-container {
  width: 100%;
  margin-left: 0%;
  height: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
}
.our-team-section .swiper-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  box-sizing: content-box;
}
.our-team-section .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.our-team-section .swiper-team-navigation {
  position: relative;
}
.swiper-team-navigation .swiper-button-next {
  position: absolute;
  right: 2%;
  top: -16rem;
  color: #14259b;
}
.our-team-section .swiper-button-next:after,
.our-team-section .swiper-button-prev:after {
  font-size: 30px !important;
  font-weight: bold;
}
.team-content h6 {
  margin-top: 5px;
}

/* Award */
.about-award-sec {
  padding: 0 0 50px;
}
.about-award-sec .swiper-container {
  overflow: hidden;
  width: 84%;
  margin-left: 16%;
  position: relative;
  padding: 5% 0% 4% 2%;
}
.award-box {
  background: radial-gradient(
        circle at 100% 100%,
        #ffffff 0,
        #ffffff 8px,
        transparent 8px
      )
      0% 0%/10px 10px no-repeat,
    radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 8px, transparent 8px)
      100% 0%/10px 10px no-repeat,
    radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 8px, transparent 8px)
      0% 100%/10px 10px no-repeat,
    radial-gradient(circle at 0 0, #ffffff 0, #ffffff 8px, transparent 8px) 100%
      100%/10px 10px no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 4px)
      calc(100% - 20px) no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 20px)
      calc(100% - 4px) no-repeat,
    linear-gradient(180deg, #ffc583 0%, #d49e32 52%, #f4d108 100%);
  border-radius: 10px;
  padding: 25px 50px;
  display: flex;
  position: relative;
  align-items: center;
  height: 335px;
}
.award-box img {
  position: absolute;
  bottom: 8%;
  left: -4.5%;
}
.award-des {
  width: 62%;
  margin-left: auto;
}
.about-award-sec .swiper-pagination-bullet-active {
  background: #14259b !important;
  border: unset;
}
.about-award-sec .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  opacity: 1 !important;
  border: 2px solid rgb(20 37 155 / 20%) !important;
  background: unset;
}
/* responsibility-section */
.responsibility-section {
  background: url(../img/about/responsibility-bg.png) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 100px 0px;
}
.resp-details {
  background: rgba(16, 16, 16, 0.8);
  padding: 6.8rem 3rem 6.8rem 10rem;
}
.resp-details h5 {
  font-size: 22px;
  padding-bottom: 20px;
  line-height: 30px;
}
.resp-details p {
  font-size: 14px;
  padding-bottom: 15px;
  font-family: "ProximaNova-Regular";
  line-height: 17px;
}
.responsibility-section .swiper-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding-top: 50px;
}
.responsibility-section .swiper-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  box-sizing: content-box;
}
.responsibility-section .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.responsibility-section .swiper-resp-navigation {
  position: relative;
}
.swiper-resp-navigation .swiper-button-next {
  position: absolute;
  right: 3%;
  top: -17rem;
  width: 55px;
  height: 55px;
}
.swiper-resp-navigation .swiper-button-prev {
  position: absolute;
  left: 3%;
  top: -17rem;
  width: 55px;
  height: 55px;
}
/* .swiper-button-next:after, .swiper-button-prev:after {
  font-size: 0 !important;
} */
.swiper-resp-navigation .swiper-button-next {
  background: url(../img/icons/box-right.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.swiper-resp-navigation .swiper-button-prev {
  background: url(../img/icons/box-left.png) no-repeat;
  background-position: center;
  background-size: cover;
}
/* =============================================
                      Newsletters
================================================ */
.latest-grid {
  display: grid;
  row-gap: 25px;
  column-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  justify-items: center;
  align-items: center;
  margin: 50px 15px 0px 15px;
}
.latest-items {
  position: relative;
  overflow: hidden;
  display: none;
}

.latest-items img {
  transition: transform 0.9s;
}
.latest-items:hover img {
  transform: scale(1.1);
  cursor: pointer;
  transition: transform 0.9s;
}
.gallery-hover {
  background: linear-gradient(180deg, rgb(245 167 6 / 40%) 0%, #14259b 100%);
  padding: 20px;
  position: absolute;
  bottom: 0px;
  margin: 0 auto;
  z-index: 1;
  width: 100%;
  height: 82px;
  overflow: hidden;
  transition: max-height 2s ease, opacity 1s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font: 18px "ProximaNova-SemiBold";
  text-align: center;
  border-radius: 8px;
}
.see-btn {
  font: 16px "ProximaNova-Regular";
  color: #ffffff;
  background: #14259b;
  border: unset;
  padding: 10px 32px;
  border-radius: 15px;
}
/* =============================================
                      Gallery
================================================ */
.gallery-full-section {
  padding: 50px 0 100px;
}
.gallery-full-section h5 {
  margin-bottom: 20px;
}
.tabcontent-gallery {
  text-align: center;
}
.latest-sec {
  padding: 50px 0;
}
.view-more {
  margin-top: 4rem;
  padding: 10px 15px;
  background: transparent;
  color: #14259b;
  border: none;
  font: 18px "ProximaNova-SemiBold";
  cursor: pointer;
  border-radius: 5px;
  transition: 0.4s ease-in-out;
}
.view-more:hover {
  transform: scale(1.1);
  transition: 0.4s ease-in-out;
}

/* Styles for lightbox */
.view {
  position: fixed;
  z-index: 9;
  display: none;
}
.view .overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 0;
  left: 0;
}
.view .img-show {
  width: 75vw;
  height: 65vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.img-show img {
  max-width: 100%;
  max-height: 95%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#close {
  position: absolute;
  top: 10px;
  right: 0px;
  z-index: 99;
  cursor: pointer;
  color: #333;
  font-weight: 600;
  background-color: #eee;
  border-radius: 15px;
  padding: 3px 10px;
}
.nav-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
#prev,
#next {
  z-index: 99;
  cursor: pointer;
  color: #333;
  font-weight: 600;
  background-color: #eee;
  border-radius: 15px;
  padding: 3px 10px;
}
#prev:hover,
#next:hover {
  background: #14259b;
  color: #eee;
}
#close:hover {
  background: #14259b;
  color: #eee;
}
/* gallery-tabs */
#gallery-tabs {
  padding-top: 50px;
}
#gallery-tabs .tab {
  display: flex;
  justify-content: space-around;
  padding: 0px 50px;
  white-space: nowrap;
  scroll-behavior: smooth;
  width: 100%;
  scrollbar-width: none; /* Firefox */
  -webkit-overflow-scrolling: touch; /* Smooth for iOS */
}
.tab-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.tab::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
.tab-scroll {
  background-color: #f1f1f1;
  border: none;
  font-size: 18px;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
  border-radius: 10px;
}
.tablinks-gallery {
  border-radius: 30px;
  border: 1px solid #14259b;
  width: auto;
  height: 46px;
  padding: 0px 50px;
  color: #14259b;
  font: 18px "ProximaNova-SemiBold";
  background: #ffffff;
  margin: 10px;
}
.tablinks-gallery:hover {
  background: #14259b;
  color: #fff;
}
.tablinks-gallery.active {
  background: #14259b;
  color: #fff;
}
.latest-grid-one {
  display: grid;
  row-gap: 10px;
  column-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-items: center;
  align-items: center;
  margin: 50px 15px 0px 15px;
}
.latest-items-one {
  position: relative;
}
.latest-items-one img {
  transition: 0.25s;
}
.latest-items-one:hover img {
  transform: scale(0.97);
  cursor: pointer;
}
/* =============================================
                      Our Team Page
================================================ */
.profile-sec {
  padding: 40px 0;
}
.profile-sec .center-grid .grid-items {
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
}
.profile-sec .filters {
  margin: 25px 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.profile-sec .category-dropdown {
  font-size: 16px;
  width: 220px;
}
.center-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 30px;
  justify-items: center;
}
.center-grid .grid-items {
  transition: opacity 0.7s ease;
}
.center-grid .grid-items {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  width: 100%;
  height: 580px;
  max-height: 700px;
  position: relative;
  overflow: hidden;
}
.grid-items .team-1 {
  transition: all 0.8s;
  width: 380px;
  height: 450px;
  border-radius: 0%;
  position: absolute;
  top: 5%;
  right: 10%;
}
.grid-items:hover .team-1 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.6s;
  top: 4%;
  opacity: 0;
}
.grid-items .team-2 {
  transition: all 0.8s;
  width: 380px;
  height: 450px;
  border-radius: 0%;
  position: absolute;
  top: 5%;
  right: 11%;
  opacity: 0;
}
.grid-items:hover .team-2 {
  opacity: 1;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  transition: all 0.6s;
  top: 4%;
}
.doctor-content {
  opacity: 1;
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 22%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  transition: all 0.3s;
  transform: translateY(-2%);
}
.grid-items:hover .doctor-content {
  bottom: 0;
  opacity: 1;
  transform: translateY(-340%);
  transition-delay: 0.3s;
}
.center-name {
  font: clamp(16px, 3.2vw, 18px) "ProximaNova-Bold";
  color: #252525;
  text-align: center;
  transition: all 0.5s;
}
.center-des {
  font: clamp(11px, 2.2vw, 13px) "ProximaNova-Regular";
  color: #252525;
  line-height: 20px;
  text-align: center;
  transition: all 0.5s;
}
.grid-items:hover .center-name {
  text-align: start;
  transition: all 0.5s;
  width: 65%;
}
.grid-items:hover .center-des {
  text-align: start;
  transition: all 0.5s;
  width: 65%;
}
.center-des span {
  font: 18px "ProximaNova-Regular";
}
.doctor-des {
  opacity: 0;
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  transition: all 0.3s;
  transform: translateY(20px);
}
.grid-items:hover .doctor-des {
  opacity: 1;
  transform: unset;
  transition-delay: 0.3s;
  top: 100%;
}
.doctor-des ul {
  list-style: outside;
  padding: 0px 25px;
  margin-bottom: 5px;
}

/* =============================================
                     Doctor Details Page
================================================ */
.details-sec {
  padding: 100px 0 30px;
  background-color: #fcfcfc;
}
.doctor-detail-info {
  background: #333a78;
  margin-top: -5.375rem;
  -webkit-border-radius: 0 0 0 10px;
  border-radius: 0 0 0 10px;
  max-width: calc(100% - 3.125rem);
  padding: 1.5rem 1rem 1.5rem 2rem;
}
.doctor-detail-info:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  width: 0.9375rem;
  right: -0.9375rem;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
  -ms-clip-path: polygon(0 0, 0% 100%, 100% 0);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  background: #333a78;
}
.doctor-detail-info-meta > li {
  position: relative;
  width: 100%;
  color: #f5a706;
  font: 16px "ProximaNova-Regular";
}
.doctor-detail-info span {
  font: 14px "ProximaNova-Regular";
  color: #ffffff;
  padding: 5px 0;
  display: block;
  line-height: 26px;
}
.doctor-detail-des ul {
  font: clamp(16px, 3.2vw, 18px) "ProximaNova-Regular";
  text-indent: -38px;
  margin-left: 38px;
  padding-bottom: 10px;
  padding-left: 0;
}
.doctor-detail-des li {
  line-height: 30px;
  margin-bottom: 8px;
}
.doctor-detail-des .rt-arrow {
  color: #f5a706;
  font: 26px "ProximaNova-Bold";
}
.doctor-detail-des ol {
  list-style: none;
  text-indent: 0px;
}
.sticky-img {
  position: sticky;
  top: 120px;
}
/* =============================================
                      Spine Page
================================================ */
.dashboard-topbar {
  padding: 35px 0;
  margin: 0 auto;
  width: 90%;
}
.user-dashboard-tab li a:hover,
.user-dashboard-tab li a.active {
  background: #14259b;
  color: #ffffff;
}
.user-dashboard-tab li a {
  padding: 15px 20px;
  display: block;
  color: #14259b;
  background: #effafc;
  text-decoration: unset;
}
.user-dashboard-tab li {
  padding: 0px;
  margin: 10px;
  background-color: #ffffff;
}
ul#topbar {
  display: flex;
  justify-content: center;
  font: 18px "ProximaNova-Regular";
  padding: 0;
  flex-wrap: wrap;
}
.spine-banner {
  background: url(../img/service/spine-banner.png) no-repeat center/cover;
  height: 650px;
  margin-top: 115px;
  display: flex;
  align-items: center;
  text-align: center;
}
.banner-label {
  text-align: center;
  background: #f5a706;
  width: 600px;
  padding: 7px 0;
  color: #252525;
  margin: 0 auto;
  font: clamp(22px, 4.2vw, 30px) "ProximaNova-Regular";
  border-radius: 5px;
  margin-top: 10px;
}
/* Overview Section */
.overview-sec {
  padding: 30px 0 70px;
  background: #ffffff;
}
.overview-sec ul {
  list-style: none;
  padding: 0;
}
.overview-sec ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 30px;
}
/* Symptoms Section */
.sym-sec {
  padding: 70px 0;
  background: #effafc;
}
.sym-grid {
  display: grid;
  row-gap: 50px;
  column-gap: 50px;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  margin: 2rem 0 0;
}
.sym-grid .grid-items {
  text-align: center;
}
.sym-grid > :nth-child(5) {
  grid-column: 1 / -1; /* Makes the 5th item span across all columns */
  justify-self: center;
  align-self: center;
}
.sym-title {
  text-align: center;
  font-family: "ProximaNova-Bold";
  margin: 15px 0 0;
}

/* Treatment Options Section */
.option-sec {
  padding: 40px 0;
  background: #ffffff;
}
.tab1 {
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.tab1 button {
  display: block;
  background-color: #effafc;
  color: #14259b;
  margin-bottom: 8px;
  padding: 18px 25px;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font: clamp(16px, 3.2vw, 24px) "ProximaNova-SemiBold";
}
.tab1 button:hover,
button.live {
  background-color: #14259b;
  color: #ffffff;
}
.tabcontent1 {
  display: none;
}
.treat-grid {
  display: grid;
  row-gap: 50px;
  column-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  margin: 2rem 19rem 5rem;
}
/* Process Section */
.process-sec {
  background: #f9f9f9;
  padding: 50px 0 80px;
}
.process-grid {
  display: grid;
  row-gap: 60px;
  column-gap: 100px;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  padding: 3rem 4rem 0;
}
li.grid-items {
  display: flex;
  align-items: flex-start;
}
/* Success Stories Section */
.success-sec {
  padding: 50px 0;
  background: #effafc;
  position: relative;
}
.success-sec .swiper-container {
  overflow: hidden;
  padding: 3rem 0;
}
.story-slider .swiper-slide {
  background-color: #ffffff;
}
.story-slider .swiper-slide-active {
  box-shadow: rgb(0 0 0 / 10%) 25px 7px 25px 0px;
  z-index: 9999;
}
.story-slider .swiper-slide.swiper-slide-visible.swiper-slide-prev {
  transform: translate3d(470px, 0px, -300px) rotateX(0deg) rotateY(0deg)
    scale(1) !important;
  opacity: 0.6;
}
.story-slider .swiper-slide.swiper-slide-visible.swiper-slide-next {
  transform: translate3d(-470px, 0px, -300px) rotateX(0deg) rotateY(0deg)
    scale(1) !important;
  opacity: 0.6;
}
.success-sec .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}
.success-sec .swiper-pagination-bullet {
  background: #bcd8e9 !important;
  opacity: 1 !important;
  width: 10px !important;
  height: 10px !important;
}
.success-sec .swiper-pagination-bullet-active {
  background: url(../img/home/page.png) no-repeat center/cover !important;
  height: 26px !important;
  width: 26px !important;
}
.success-grid {
  display: grid;
  row-gap: 60px;
  column-gap: 0;
  grid-template-columns: 35% 65%;
}
.grid-des {
  padding: 55px 55px;
}
/* Book Appointment Section */
.book-sec {
  background: #ffffff;
  padding: 70px 0 90px;
}
.squarefadeSwiper {
  position: absolute;
  left: 0;
  height: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
.dr-des {
  background: #242894;
  margin-top: auto;
  border-radius: 0px 0px 0px 40px;
  padding: 30px;
}
.book-sec .book-form {
  padding: 1rem 6rem;
}

@media (max-width: 980px) {
  .squarefadeSwiper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: visible;
  }
  .book-sec .book-form {
    padding: 0 0rem;
  }
}

.squarefadeSwiper .swiper-slide {
  text-align: left;
  display: flex;
  flex-direction: column;
  background-position: center;
  background-size: cover;
  height: 100%;
  border-radius: 40px 0 0 40px;
}

.squarefadeSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.book-sec .bg-white {
  background-color: #ffffff !important;
  box-shadow: rgb(0 0 0 / 10%) 25px 7px 25px 0px;
  border-radius: 60px 25px 25px 60px;
}
.book-form {
  padding: 0 0rem;
}
.book-form .form-control {
  display: block;
  width: 100%;
  padding: 1rem;
  font-size: 18px;
  line-height: 1.5;
  color: #1a1a1a;
  border: 1px solid #d1d1d1;
  border-radius: 20px;
  margin-bottom: 25px;
}
.book-form select {
  background: url(../img//down-arrow.png) no-repeat;
  background-position: 95%;
}
.blue_btn {
  font-size: clamp(16px, 3.2vw, 20px);
  font-family: "ProximaNova-SemiBold";
  color: #fcfcfc;
  border-radius: 20px;
  margin: 10px 20px 10px 0;
  padding: 10px 42px;
  height: 55px;
  background: #14259b;
  border: unset;
}
.iti--separate-dial-code .iti__selected-flag {
  background-color: unset !important;
}

/* Trauma page */
.trauma-sec {
  background: #ffffff;
  padding: 70px 0;
}
.trauma-special-sec {
  background: #ffffff;
  padding: 20px 0 80px;
}
.trauma-special-sec .tab1, .trauma-special-sec .tab2 {
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin: 50px 0 10px;
  padding: 0;
}
.trauma-special-sec .tab1 button, .trauma-special-sec .tab2 button {
  display: block;
  background-color: #ffffff;
  color: #353535;
  padding: 10px 18px;
  border: none;
  border-radius: 10px;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  font: 17px "ProximaNova-SemiBold";
  line-height: 22px;
  margin-right: 1px;
}
.trauma-special-sec .tab1 button:hover, .trauma-special-sec .tab2 button:hover,
.trauma-special-sec button.live {
  background-color: #14259b;
  color: #ffffff;
}
.trauma-special-sec .tabcontent1, .trauma-special-sec .tabcontent2 {
  display: none;
}
.trauma-special-sec .w-80 {
  width: 80%;
}

/*---------- Sports Page ---------*/
.sport-faq-sec {
  background: #ffffff;
}
.sport-faq-sec .accordion-button {
  padding: 20px 0px;
  font: 24px "ProximaNova-SemiBold";
  color: #333a78;
  transition: 0.5s ease-in-out;
}
.sport-faq-sec ul {
  list-style: outside;
  font: 18px "ProximaNova-Regular";
}
.sport-faq-sec ul li {
  margin: 15px 0;
}
.accordion-button:not(.collapsed) {
  background: unset !important;
}
.sport-faq-sec .accordion-button:not(.collapsed) {
  color: #333a78;
  padding: 30px 15px;
  transition: 0.5s ease-in-out;
}
.accordion-body {
  font: 16px "ProximaNova-Regular";
}
.sport-injury-sec {
  background: #effafc;
  padding-bottom: 100px;
}
.football {
  position: sticky;
  top: 0%;
  z-index: 0;
  background: #effafc;
}
.basketball {
  position: sticky;
  top: 0%;
  z-index: 1;
  background: #effafc;
}
.tennis {
  position: sticky;
  top: 0%;
  z-index: 2;
  background: #effafc;
}
.running {
  z-index: 3;
  background: #effafc;
}
.sport-title {
  font: clamp(26px, 3.2vw, 46px) "ProximaNova-Bold";
  color: #14259b;
}
.sport-content {
  font: clamp(16px, 2vw, 20px) "ProximaNova-Regular";
  color: #000000;
  line-height: 30px;
  margin: 30px 0;
}
.sport-slider-sec {
  padding: 50px 0 0;
  background: #ffffff;
  position: relative;
}
.sport-slider-sec .swiper-container {
  width: 100%;
}
.sport-slider-sec .swiper-container.slider {
  overflow: hidden;
  padding: 0;
}
.sport-slider-sec .swiper-container.slider-thumbnail {
  overflow: hidden;
  padding: 0;
  margin: 30px auto;
  width: 88%;
}
.sport-slider-sec
  .swiper-container.slider-thumbnail
  .sport-slider-sec
  .swiper-wrapper
  .swiper-slide {
  height: 100%;
  opacity: 0.5;
  overflow: hidden;
}
.sport-slider-sec
  .swiper-container.slider-thumbnail
  .swiper-wrapper
  .swiper-slide.swiper-slide {
  border-left: 1px solid #aaaaaa;
  padding: 0 20px;
  cursor: pointer;
}
.sport-slider-sec
  .swiper-container.slider-thumbnail
  .swiper-wrapper
  .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  border-left: 2px solid #14259b;
}
.sport-slider-sec .swiper-button-next:after,
.sport-slider-sec .swiper-button-prev:after {
  font-size: 16px !important;
  font-weight: bold;
}
.sport-slider-sec .swiper-button-next,
.sport-slider-sec .swiper-button-prev {
  position: absolute;
  top: 8%;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 50%;
  height: 32px;
  width: 32px;
}
.sport-slider-sec .swiper-button-next:hover,
.sport-slider-sec .swiper-button-prev:hover {
  background: #000000;
  color: #ffffff;
}
.sport-slider-sec .swiper-button-prev {
  left: auto;
  right: 90px;
}
.sport-slider-sec .swiper-button-next {
  left: auto;
  right: 40px;
}
.sport-slider-title {
  color: #000000;
}
.swiper-slide-thumb-active .sport-slider-title {
  color: #14259b;
}
.sport-des {
  font: clamp(16px, 3.2vw, 18px) "ProximaNova-Regular";
  color: #000000;
  line-height: 20px;
  margin: 20px 0 0;
}
.sport-tab-sec {
  background: #effafc;
  padding: 100px 0;
}
/* Style the tab */
.sport-tab-sec .tab {
  overflow: hidden;
  background-color: #333a78;
  border-radius: 65px;
  padding: 14px 10px;
  width: 947px;
  margin: 0 auto;
  text-align: center;
  z-index: 99;
}
/* Style the buttons inside the tab */
.sport-tab-sec .tab button {
  background-color: unset;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  font: 22px "ProximaNova-Regular";
  color: #ffffff;
  height: 48px;
  width: 180px;
}
/* Create an active/current tablink class */
.sport-tab-sec .tab button.active {
  color: #f5d601;
  border: 2px solid #f5d601;
  border-radius: 48px;
}
/* Style the tab content */
.sport-tab-sec .tabcontent {
  display: none;
  background: url(../img/sports/cricket.png) no-repeat center/cover;
  height: 785px;
  margin-top: -40px;
  flex-direction: column;
  justify-content: flex-end;
}
.tab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  column-gap: 30px;
  row-gap: 30px;
  justify-items: center;
  padding: 3.5rem 6rem 5.5rem;
}
.right-border-custom-height {
  position: relative;
}
.right-border-custom-height::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 1px;
  height: 117px;
  background-color: rgba(255, 255, 255, 0.5);
}
.injury-title {
  color: #ffffff;
  margin-bottom: 0;
}
.injury-des {
  color: #ffffff;
  line-height: 24px;
}
.fitness-sec {
  background: #333a78;
  padding: 80px 0;
  position: relative;
}
.fitness-sec .swiper-container {
  width: 77%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0 2rem;
}
.fitness-sec .swiper-slide {
  /* text-align: left; */
  font-size: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 60px !important;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: row !important;
}
.fitness-sec .slide-des {
  text-indent: -25px;
  margin-left: 0px;
  font: 16px "ProximaNova-Regular";
  margin-bottom: 15px;
  margin-top: 5px;
  line-height: 24px;
}
.fitness-sec .swiper-btn-next {
  position: absolute;
  top: 58% !important;
  color: #6b8eb7 !important;
  background: url(../img/icons/angle-right.png) no-repeat center/cover;
  width: 17px;
  height: 31px;
}
.fitness-sec .swiper-btn-prev {
  position: absolute;
  top: 58% !important;
  color: #6b8eb7 !important;
  background: url(../img/icons/angle-left.png) no-repeat center/cover;
  width: 17px;
  height: 31px;
}
.swiper-btn-prev {
  left: 5% !important;
  right: auto;
}
.swiper-btn-next {
  right: 5% !important;
  left: auto;
}
.swiper-btn-next.swiper-btn-disabled,
.swiper-btn-prev.swiper-btn-disabled {
  opacity: 1 !important;
}
.fitness-sec .swiper-btn-next:after,
.swiper-btn-prev:after {
  font-size: 30px !important;
  font-weight: bold;
}
.program-sec {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}
.program-grid {
  display: grid;
  row-gap: 80px;
  column-gap: 110px;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  padding: 5% 1.5%;
}
.program-grid .grid-items {
  border: 1px solid #14259b;
  border-radius: 10px;
}
.program-grid .grid-text {
  padding: 15px 25px;
}
.program-grid hr {
  margin: 1rem 0;
  color: #14259b !important;
  border: 0;
  border-top: 1px solid;
  opacity: 1;
}
.program-sec .swiper-container {
  width: 85%;
  margin: 0 auto;
  height: 100%;
  overflow: hidden;
  padding: 3% 0;
}
.program-sec .swiper-medi-prev {
  position: absolute;
  top: 83% !important;
  background: url(../img/icons/medi-left.png) no-repeat center/cover;
  width: 17px;
  height: 31px;
}
.program-sec .swiper-medi-next {
  position: absolute;
  top: 83% !important;
  background: url(../img/icons/medi-right.png) no-repeat center/cover;
  width: 17px;
  height: 31px;
}
.program-sec .swiper-medi-prev {
  left: 4%;
  right: auto;
}
.program-sec .swiper-medi-next {
  left: auto;
  right: 4%;
}
.sport-prepare-sec {
  padding: 80px 0;
  background: #effafc;
}
.prepare-grid {
  display: grid;
  row-gap: 80px;
  column-gap: 110px;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  padding: 4% 13.5% 0;
}
.prepare-grid .slide-des {
  text-indent: -35px;
  margin-left: 8px;
  font: clamp(16px, 3.2vw, 18px) "ProximaNova-Regular";
  margin-bottom: 15px;
  margin-top: 10px;
  line-height: 24px;
}
.right-border-prepare-height {
  position: relative;
}
.right-border-prepare-height::after {
  content: "";
  position: absolute;
  top: 55px;
  right: -30px;
  width: 1px;
  height: 200px;
  background-color: rgba(51, 58, 120, 0.4);
}
.session-sec {
  background: #ffffff;
  padding: 80px 0 0;
  position: relative;
}
.session-sec .swiper-container {
  width: 76%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 3rem 0rem 0;
}
.session-sec .swiper-slide {
  /* text-align: left; */
  font-size: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 60px !important;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: row !important;
}
.session-sec .slide-des {
  text-indent: -25px;
  margin-left: 0px;
  font: 16px "ProximaNova-Regular";
  margin-bottom: 15px;
  margin-top: 5px;
  line-height: 24px;
}
.session-sec .swiper-btn-next {
  position: absolute;
  top: 55% !important;
  color: #6b8eb7 !important;
  background: url(../img/icons/medi-right.png) no-repeat center/cover;
  width: 17px;
  height: 31px;
}
.session-sec .swiper-btn-prev {
  position: absolute;
  top: 55% !important;
  color: #6b8eb7 !important;
  background: url(../img/icons/medi-left.png) no-repeat center/cover;
  width: 17px;
  height: 31px;
}
.swiper-btn-prev {
  left: 5% !important;
  right: auto;
}
.swiper-btn-next {
  right: 5% !important;
  left: auto;
}
.swiper-btn-next.swiper-btn-disabled,
.swiper-btn-prev.swiper-btn-disabled {
  opacity: 1 !important;
}
.session-sec .swiper-btn-next:after,
.swiper-btn-prev:after {
  font-size: 30px !important;
  font-weight: bold;
}
.card {
  position: relative;
  cursor: pointer;
  border: unset;
}
.card .face {
  /* width: 300px;
  height: 200px; */
  transition: 0.5s;
}
.card .face.face1 {
  position: relative;
  background: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transform: translateY(0px);
  padding: 10px;
  border-radius: 10px;
}
.card:hover .face.face1 {
  transform: translateY(0);
  border-radius: 10px 10px 0px 0px;
}
.card .face.face1 .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}
.card .face.face1 .title img {
  transition: 0.5s;
}
.card:hover .face.face1 .title img {
  transform: rotate(180deg);
  transition: 0.5s;
}
.card .face.face1 .content {
  opacity: 1;
  transition: 0.5s;
}
.card:hover .face.face1 .content {
  opacity: 1;
}
.card .face.face1 .content h3 {
  margin: 30px 0 20px;
  padding: 0;
  color: #000000;
  font-size: clamp(18px, 4.2vw, 22px);
  line-height: 30px;
}
.card:hover .face.face1 .content h3 {
  margin: 30px 0 0;
}
.card .face.face2 {
  position: relative;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  padding: 0 20px 20px;
  transform: translateY(-120px);
  border-radius: 0px 0px 10px 10px;
}
.card:hover .face.face2 {
  transform: translateY(0);
}
.card .face.face2 .content p {
  margin: 0;
  padding: 0;
}
.card .face.face2 .content a {
  margin: 15px 0 0;
  display: inline-block;
  text-decoration: none;
  font-weight: 900;
  color: #333;
  padding: 5px;
  border: 1px solid #333;
}
.card .face.face2 .content a:hover {
  background: #333;
  color: #fff;
}

.foot-sec {
  background: #ffffff;
  padding: 60px 0;
}
.foot-content {
  margin: 0px auto 50px;
  padding: 40px 60px 40px 60px;
  max-width: 1024px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}
.foot-grid {
  display: grid;
  row-gap: 30px;
  column-gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  padding: 4% 0 0;
}
.foot-grid .grid-items {
  background: #ffffff;
  border: 2px solid #333a78af;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 15px 10px;
  display: flex;
  color: #333a78;
  font: 17px "ProximaNova-Semibold";
  align-items: center;
}
/*------------ Contact Page ------------- */

/* Form Section Style  */
.contact-sec {
  padding: 60px 0 80px;
}
.form-bg {
  background: #dee0ed;
  border-radius: 10px;
  padding: 25px;
  margin-top: 5rem;
}
.contact-grid {
  display: grid;
  row-gap: 10px;
  column-gap: 25px;
  grid-template-columns: 43% 55%;
  padding: 0;
}
.address-items {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
}
.address-items ul {
  margin: 25px 0 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
}
.address-items ul li {
  font-size: 17px;
  font-family: "ProximaNova-Semibold";
  color: #9f9f9f;
  text-indent: -30px;
  margin-left: 35px;
  margin-bottom: 15px;
}
.address-items ul .first-item {
  flex-basis: 100%;
}
.address-items ul li {
  padding-right: 40px;
}
.form-bg-1 {
  background: #353e7a;
  border-radius: 10px;
  padding: 50px 30px;
}
input,
select,
textarea,
label {
  font-family: "ProximaNova-SemiBold";
  font-size: 18px;
  margin-top: 5px;
}
.iti {
  width: 100%;
}
form :is(input, textarea, select).errorform {
  border: 1px solid red !important;
}
/* Remove native arrow on IE */
select::-ms-expand {
  display: none;
}
select:-moz-focusring {
  color: transparent !important;
  text-shadow: 0 0 0 var(--white);
}

textarea {
  resize: none;
}
ul {
  list-style: none;
}

/*----------------------------------------------------------
------------------ Facilities Page Style ----------------
----------------------------------------------------------*/
.banner-bg {
  background: url(../img/facilities/banner.png) no-repeat center/cover;
  height: 340px;
  margin-top: 115px;
}

/* Facility Card Section */
.facility-sec {
  padding: 70px 0 40px;
}
.facility-grid {
  display: grid;
  gap: 35px 22px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  padding: 50px 0px 30px;
}
.facility-grid .grid-items {
  background: #f1f1f1;
  border: 1px solid #c8c8c8;
  border-radius: 10px;
  padding: 25px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.facility-grid .grid-items:hover {
  background: #14259b;
}
.facility-grid .grid-items:hover .facility-main {
  display: none;
}
.facility-grid .grid-items .facility-hover {
  display: none;
}
.facility-grid .grid-items:hover .facility-hover {
  display: block;
}
.facility-grid .grid-items:hover h5,
.facility-grid .grid-items:hover p {
  color: #ffffff;
}
.facility-icon {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
}
.facility-btn {
  font: 18px "ProximaNova-Regular";
  background: #14259b;
  color: #ffffff;
  border: unset;
  width: 180px;
  height: 40px;
  border-radius: 20px;
  box-shadow: rgb(0 0 0 / 25%) 0px 4px 10px;
}
.facility-grid .grid-items:hover .facility-btn {
  background: #f5a706;
}

.appointment-sec {
  background: url(../img/facilities/appointment-bg.png) no-repeat center/cover;
  height: 258px;
  display: flex;
  align-items: center;
}
.appointment-btn {
  background: #f5a706;
  border-radius: 10px;
  border: unset;
  height: 60px;
  width: 417px;
  font: clamp(22px, 4.2vw, 20px) "ProximaNova-Semibold";
  color: #ffffff;
}
.appointment {
  display: flex;
  justify-content: space-between;
  height: 60px;
}

/* Doctors Section  */
.dr-sec {
  background: #eeeded;
  padding: 50px 0;
}
.dr-grid {
  display: grid;
  gap: 35px 25px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding: 50px 0px 30px;
}
.dr-grid .grid-items {
  box-shadow: rgb(0 0 0 / 15%) 0px 10px 10px;
  border-radius: 5px;
}
.dr-details {
  padding: 20px 30px;
}
.dr-field {
  border: 1px solid #14259b;
  border-radius: 5px;
  height: 35px;
  width: 135px;
  padding: 0 5px;
}
.dr-btn {
  border: unset;
  background: #14259b;
  color: #ffffff;
  width: 100%;
  height: 42px;
  font: 16px "ProximaNova-Regular";
}
.dr-grid .grid-items:hover .dr-btn {
  background: #f5a706;
}

/* Treatments Section */
.tm-grid {
  display: grid;
  gap: 35px 50px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding: 30px 0px 50px;
  justify-items: center;
}

/*----------------------------------------------------------
------------------ Individual Facilities Page Style ----------------
----------------------------------------------------------*/
.facility-banner {
  /* background: url(../img/facilities/facility-bg.png) no-repeat center/cover; */
  height: 200px;
  margin-top: 115px;
  display: flex;
  text-align: center;
  background: #14259b;
  align-items: center;
}
.facility-label {
  background: #14259b;
  width: auto;
  padding: 10px 20px;
  margin: 0 auto;
}
.facility-banner .breadcrumb {
  padding: 1rem 19rem;
  justify-content: center;
}
.facility-banner .breadcrumb a,
.facility-banner li.current,
.facility-banner .breadcrumb li::after {
  font-size: 24px;
}
.facility-details-sec {
  background: #f5f5f5;
  padding: 70px 0;
}
.facility-details-sec ol li {
  font: 16px "ProximaNova-Regular";
  color: #1e1e1e;
  margin-top: 10px;
}
.facility-details-sec .bg-white {
  background-color: #ffffff !important;
  box-shadow: rgb(0 0 0 / 10%) 25px 7px 25px 0px;
  border-radius: 20px;
  padding: 30px;
}
/*------------------------------------------------
---------------- FORM ELEMENTS -------------------
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.my-form .form-group {
  margin-bottom: 40px;
}
select {
  width: 10rem;
  background-color: #f5a706;
  border: #f5a706 2px solid;
}
select > option {
  background-color: #353e7a;
  color: #ffffff;
}
.form-control {
  display: block;
  padding: 15px 10px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgb(255 255 255 / 75%);
  background-color: transparent !important;
  background-clip: padding-box;
  border: unset;
  border-radius: 5px;
  border: 1px solid #d5c7ea;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-family: "ProximaNova-Regular";
}
.my-form .form-control:focus {
  color: #ffffff;
  background-color: unset;
  border-color: unset;
  outline: 0;
  box-shadow: unset;
}
.check-text {
  font-family: "ProximaNova-Regular";
  font-size: 14px;
  padding: 10px;
  width: 100%;
  color: #ffffff;
}
.w-93 {
  width: 93% !important;
}
.my-form select {
  background: url(../img/icons/down-arrow.svg) no-repeat;
  background-position: right;
}

.my-form *:disabled {
  cursor: default;
  filter: blur(1px);
}
.my-form ::placeholder {
  color: rgb(255 255 255 / 75%) !important;
  opacity: 1; /* Firefox */
}
.my-form .iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
  color: rgb(255 255 255 / 75%);
}

.my-form ::-ms-input-placeholder {
  /* Edge 12-18 */
  color: rgb(255 255 255 / 75%) !important;
}
/* FORM BTNS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.my-form .required-msg {
  display: none;
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/162656/asterisk.svg)
    no-repeat center left / 15px 15px;
  padding-left: 20px;
}
.my-form .btn-grid {
  position: relative;
  overflow: hidden;
  transition: filter 0.2s;
  width: 183px;
  color: #000000;
  font-size: 16px;
}
.black_btn {
  font-size: clamp(16px, 3.2vw, 18px);
  font-family: "ProximaNova-SemiBold";
  color: #fcfcfc;
  border-radius: 27px;
  margin: 10px 20px 10px 0;
  padding: 5px 42px;
  height: 55px;
  background: #f5a706;
  border: unset;
}
/*----------------------------------------------------------
---------------------Blog Page Style ---------------------- 
----------------------------------------------------------*/
.article-sec {
  padding: 80px 0 40px;
  background: #f9f9f9;
}
.blog-label {
  background: #f2bfb7;
  height: 40px;
  border-radius: 5px;
  border: unset;
  font-family: "ProximaNova-Regular";
  font-size: 14px;
  padding: 0 15px;
  color: #000000;
  cursor: auto !important;
}
button.blog-label:hover {
  background: #fcfcfc !important;
  border: 1px solid #000000;
  transition: 0.2s 0.1s;
}
.article-grid {
  display: grid;
  row-gap: 10px;
  column-gap: 32px;
  grid-template-columns: 30rem 22rem 25rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid #000000;
}
.recent-grid {
  display: grid;
  row-gap: 40px;
  column-gap: 20px;
  grid-template-columns: 35% 65%;
}
.recent-title {
  font-family: "ProximaNova-SemiBold";
  line-height: 26px;
  margin: 15px 0px 5px;
  font-size: 16px;
}
.right-arrow span {
  transition: all 0.5s linear;
}
.right-arrow:hover span {
  margin-left: 10px;
  transition: all 0.5s linear;
}
/* Topic Section Style */
.topic-sec {
  padding: 50px 0 70px;
  background: #f9f9f9;
}
.topic-sec .left {
  position: sticky;
  top: 120px;
}
.topic-btn {
  border: none;
  background: transparent;
  border-radius: 5px;
  font-family: "ProximaNova-Regular";
  color: #000000;
  padding: 0px 15px;
  margin: 10px 10px 10px 0px;
  border: 1px solid #000000;
  height: 40px;
  font-size: 14px;
}

.topic-sec .active {
  background: #f2bfb7;
  border: 1px solid #f2bfb7;
}

.subscribe-title {
  font-family: "ProximaNova-SemiBold";
  margin: 25px 0 5px;
  color: #000000;
}
.subscribe-btn {
  border: unset;
  background: unset;
  border-bottom: 1px solid #000000;
  font-size: 18px;
}
ul.subscribe-icon {
  list-style: none;
  display: flex;
  padding: 0;
  margin-top: 15px;
}
.subscribe-icon li {
  margin-right: 25px;
}
.parent-grid {
  display: grid;
  row-gap: 50px;
  column-gap: 50px;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  margin-right: 2rem;
}

.parent-grid .grid-items {
  display: flex;
  flex-direction: column;
}
.blog-btn {
  background: #f2bfb7;
  height: 40px;
  border-radius: 5px;
  border: unset;
  font-family: "ProximaNova-Regular";
  font-size: 14px;
  padding: 0 15px;
  color: #000000;
  margin: 18px 0;
  cursor: auto !important;
}
.blog-content {
  line-height: 25px;
  color: #000000;
  font-size: 16px;
  margin: 10px 0;
}
.blog-title {
  text-align: left;
  line-height: 35px;
  margin: 15px 0 20px;
}
.blog-des1 {
  line-height: 24px;
  font-size: 16px;
}
.article-grid a {
  color: #000000 !important;
  text-decoration: unset;
  font-size: 16px;
  font-family: "ProximaNova-Regular";
}

/*----------------------------------------------------------
---------------------Individual Blog Page Style ------------
----------------------------------------------------------*/
.blog_content-sec {
  padding: 0px 0 80px;
  background: #f9f9f9;
}
.blog-box {
  border: 1px solid #000000;
  border-radius: 25px;
  padding: 30px;
  position: sticky;
  top: 120px;
}
.similar-grid {
  display: grid;
  row-gap: 50px;
  column-gap: 50px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  width: 98%;
}

.similar-grid .grid-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hr_2 {
  border-top: 1px solid #000000;
  margin-bottom: 40px;
}
.border-right {
  border-right: 1px solid #000000;
}
.individual-title {
  font: 24px "ProximaNova-SemiBold";
  text-align: left;
  line-height: 40px;
  width: 70%;
  padding: 35px 0 0;
}
.individual-subtitle {
  font: 18px "ProximaNova-SemiBold";
  padding: 35px 0;
}
.individual-des {
  font-size: 16px;
  margin-bottom: 20px;
  width: 88%;
}
.spacer2 {
  margin-bottom: 40px;
}

/*----------------------------------------------------------
---------------------Career Page Style --------------------
----------------------------------------------------------*/

.career-about-sec {
  padding: 80px 0;
}
.career-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 208px;
  height: 48px;
  border-radius: 24px;
  background: #f5d601;
  text-decoration: none;
  color: #14259b !important;
  font: 16px "ProximaNova-regular";
  margin-top: 35px;
  transition: all 0.3s;
}
.job-list-sec {
  padding: 80px 0;
}
.career-form .form-control {
  display: block;
  width: 100%;
  padding: 1.4rem 0;
  font-size: 14px;
  line-height: 1.5;
  color: #939394;
  border: unset;
  border-bottom: 1px solid #000000;
  border-radius: 0;
  margin-bottom: 25px;
}
.career-form {
  background: #f5f5f5;
  padding: 40px 40px 60px;
  margin-left: 4rem;
}
.career_btn {
  font: 16px "ProximaNova-Regular";
  border-radius: 24px;
  padding: 10px 25px;
  height: 50px;
  color: #14259b;
  background: #f5d601;
  border: unset;
  /* float: center; */
  
}
.career-form select {
  background: url(../img/down-arrow.png) no-repeat;
  background-position: right;
}
/*----------------------------------------------------------
--------------------- Bio Year Page Style ---------------------- 
----------------------------------------------------------*/
.bio-sec {
  padding: 50px 0;
}
.bio-grid {
  display: grid;
  row-gap: 100px;
  column-gap: 60px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  justify-items: center;
  align-items: center;
  margin: 30px 0;
}

.bio-grid .grid-items {
  transition: transform 0.5s ease, opacity 0.5s ease;
}

table {
  width: 398px;
  height: 397px;
}
table,
th {
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-collapse: collapse;
  padding: 20px;
  background: #fbfbfb;
  font: 18px "ProximaNova-Bold";
  border-color: #bebebe;
}
td {
  border-right-width: 1px;
  padding: 16px 20px;
  font: 18px "ProximaNova-SemiBold";
}
th {
  border-radius: 10px 10px 0px 0px;
}
table td:last-child td:first-child {
  border: 2px solid orange !important;
  border-bottom-left-radius: 10px;
}

table td:last-child td:last-child {
  border: 2px solid green !important;
  border-bottom-right-radius: 10px;
}
tfoot {
  background: #d7d7d7 !important;
}
.bg-head {
  background: #333a78;
  color: #ffffff;
  text-align: center;
  font: 20px "ProximaNova-Bold";
}
.filters {
  margin: 25px 0px;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: end;
}
.filters button {
  padding: 10px 25px;
  margin: 0px 5px;
  background-color: #121212;
  border: none;
  border-radius: 10px;
  transition: 150ms;
  color: #ffffff;
  font-size: 16px;
  line-height: 25px;
  font-weight: 700;
  position: relative;
  outline: none;
  cursor: pointer;
}
.filters button.is-checked {
  background-color: #fff;
  color: #121212;
}

@media (max-width: 767px) {
  .filters button {
    padding: 5px 10px;
    margin: 5px;
  }
}
.category-dropdown {
  font-size: 24px;
  padding: 5px 10px;
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 150px;
  cursor: pointer;
  color:#000000;
}

.category-dropdown:focus {
  outline: none;
  border-color: #007bff;
}

/*----------------------------------------------------------
--------------------- Career Individual Page Style ---------------------- 
----------------------------------------------------------*/

.career-content {
  padding: 10px 0 70px;
  background: #f9f9f9;
}
.job-title {
  display: flex;
  justify-content: space-between;
  width: 55%;
  align-items: center;
  margin-bottom: 2.5rem;
}
.career-content ul {
  list-style: disc;
  margin-left: 33px;
  font-family: "ProximaNova-Regular";
  font-size: 18px;
  color: #1e1e1e;
}
#uploadfile {
  cursor: pointer;
  padding-bottom: 7px;
  border-bottom: 1px solid #000000;
}
#uploadfile {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}
#fileInput {
  display: none;
}
.black_btn {
  font-size: clamp(16px, 3.2vw, 18px);
  font-family: "ProximaNova-SemiBold";
  color: #fcfcfc;
  border-radius: 27px;
  margin: 10px 20px 10px 0;
  padding: 5px 42px;
  height: 55px;
  background: #f5a706;
  border: unset;
}
.des {
  color: #8f8f8f;
  font: 18px "ProximaNova-Regular";
  text-align: left;
}

/* FAQ's Page Style */

.faq-sec {
  padding: 100px 0;
  background: #ffffff;
}
.accordion-item {
  border: unset;
  border-bottom: 1px solid #d1d1d1 !important;
}
.accordion-button:not(.collapsed) {
  color: #1425ab;
  padding: 30px 15px;
  transition: 0.5s ease-in-out;
}
.accordion-button:focus {
  box-shadow: unset;
}
.accordion-button {
  padding: 30px 0px;
  font: 18px "ProximaNova-SemiBold";
  color: #1e1e1e;
  transition: 0.5s ease-in-out;
}
.blue-border {
  border-top: 1px solid #14259b;
  margin: 7rem 0 6rem;
}

/*----------------------------------------------------------
--------------------- Service Page ---------------------- 
----------------------------------------------------------*/

.service-banner {
  background: url(../img/service/banner-img.png) no-repeat center/cover;
  height: 450px;
  margin-top: 110px;
  display: flex;
  align-items: center;
}
.service-title {
  color: #ffffff;
  font: clamp(32px, 3.2vw, 52px) "ProximaNova-Bold";
}

.treatment-sec {
  background: #ffffff;
  padding: 50px 0;
}
.treatment-grid {
  display: grid;
  row-gap: 25px;
  column-gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  justify-items: center;
  align-items: center;
  margin: 30px 0;
}
.treat-title {
  background: #14259b;
  padding: 20px;
  position: absolute;
  bottom: 0px;
  margin: 0 auto;
  z-index: 1;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font: 16px "ProximaNova-Regular";
}
.treatment-grid .grid-items {
  position: relative;
  overflow: hidden;
}
.treatment-grid img {
  transition: 0.3s ease-in-out;
}
.treatment-grid .grid-items:hover img {
  -webkit-transform: rotate(15deg) scale(1.4);
  transform: rotate(10deg) scale(1.3);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.doctor-sec {
  background: #effafc;
  padding: 50px 0;
}
.doctor-sec .swiper-container {
  overflow: hidden;
  position: relative;
  padding: 50px 0;
}
.doctor-sec .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.doctor-slider .swiper-slide img {
  border: 8px solid #fff;
  border-radius: 48% 48% 0 0%;
}
.doctor-name {
  color: #1b3c74;
  font: 24px "ProximaNova-Regular";
}
.doctor-role {
  color: #1b3c74;
  font: 16px "ProximaNova-SemiBold";
}
.doctor-slider .swiper-pagination {
  bottom: 0px !important;
}
.doctor-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 10px !important;
  background: #bcd8e9;
  opacity: 1;
}
.doctor-slider .swiper-pagination-bullet-active {
  background: #2aa7ff;
}
/*----------------------------------------------------------
---------------------Knee Page Style ---------------------- 
----------------------------------------------------------*/
.knee-sec {
  padding: 80px 0 0;
}
.knee-content {
  text-indent: -32px;
  margin-top: 25px;
}
.hr_1 {
  border: 1px solid #838383;
  margin: 5rem 0 1rem;
}
.knee-tab {
  padding: 35px 0;
}
.knee-tab ul.tabs {
  display: flex;
  justify-content: center;
  padding: 0;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.knee-tab ul.tabs li.current {
  background: #14259b;
  color: #ffffff;
}
.knee-tab ul.tabs li {
  font: 18px "ProximaNova-Regular";
  border: unset;
  border-radius: 0;
  margin: 10px;
  padding: 15px 20px;
  display: block;
  color: #14259b;
  background: #effafc;
  text-decoration: unset;
}
.tab-content ul {
  display: flex;
  font: 18px "ProximaNova-Semibold";
  flex-wrap: wrap;
}
.tab-content li {
  width: 50%;
  display: flex;
  align-items: center;
  margin: 30px 0;
}
.knee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(246px, 1fr));
  column-gap: 30px;
  row-gap: 60px;
  justify-items: center;
}
.knee-treat {
  padding: 50px 0;
  background: #f5f5f5;
}
.knee-treat-grid {
  display: grid;
  gap: 35px 25px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  padding: 30px 0 0;
  justify-items: center;
}
/*----------------------------------------------------------
-------------- Clinical Research Page Style ---------------- 
----------------------------------------------------------*/

.clinical-sec {
  background: #ffffff;
}
.sports-medicine {
  background: #ffffff;
  padding: 5rem 18rem;
  position: sticky;
  top: 0;
  z-index: 1;
}
.clinical-mission {
  background: #effafc;
  padding: 5rem 18rem;
  position: sticky;
  top: 0;
  z-index: 2;
}
.teach-mission {
  background: #ffffff;
  padding: 5rem 18rem;
  position: sticky;
  top: 0;
  z-index: 3;
}
.research-mission {
  background: #effafc;
  padding: 5rem 18rem;
  z-index: 9;
}

/* Publication Section */
.publication-sec {
  padding: 80px 0;
  background: #fcfcfc;
}
.publication-sec td {
  word-break: break;
}
.publication-sec table,
.publication-sec th {
  padding: 20px 0px;
}
table.dataTable thead th,
table.dataTable thead td {
  padding: 20px !important;
  border: unset;
  border-bottom: 1px solid #111;
  background: #353e7a;
  border-radius: 0;
  color: #ffffff;
  text-align: center !important;
  font: clamp(20px, 3.2vw, 24px) "ProximaNova-SemiBold";
}
table.dataTable.no-footer {
  border-bottom: unset !important;
  background: unset;
}
.table-bordered > :not(caption) > * {
  text-align: center;
}
.table > :not(caption) > * > * {
  box-shadow: unset !important;
}
.table > thead {
  vertical-align: middle;
}
table.dataTable tbody th,
table.dataTable tbody td {
  padding: 25px 10px !important;
  border-bottom: 4px solid #dddddd !important;
}
.table > tbody {
  vertical-align: middle;
}
.dataTables_wrapper {
  padding-bottom: 20px;
}
/*=======================================================
                     Insurance Page Style 
  ======================================================== */
.client-logo-sec {
  background: #f1f1f1;
  padding: 80px 0;
}
.facility-details-sec ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}
.facility-details-sec ul li {
  width: 250px;
}
.insurance-title {
  font: 16px "ProximaNova-Semibold";
  text-align: center;
}
/*=======================================================
                     Home Page Patient Testimonials Style 
  ======================================================== */
.patient-testy-sec {
  padding: 50px 0;
  background-color: #fcfcfc;
}
ul.tabs {
  margin: 0px;
  padding: 0px;
  list-style: none;
  text-align: center;
}
ul.tabs li {
  background: none;
  color: #222;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 10px;
  cursor: pointer;
  font: 18px "ProximaNova-Semibold";
  border: 1px solid #14259b;
  margin: 0 10px;
}
ul.tabs li.current {
  background: #14259b;
  color: #ffffff;
}
.tab-content {
  display: none;
  padding: 15px;
}
.tab-content.current {
  display: inherit;
}
.swiper-container.videoswiper {
  padding: 70px 10px 30px;
  margin-left: -10px;
  margin-right: -10px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.videoswiper h1 {
  margin-bottom: 20px;
  font-weight: 400;
}
.videoswiper h1 a {
  margin-left: 8px;
  color: #7f8083;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
}
.videoswiper h1 a:hover {
  text-decoration: underline;
}

.videoswiper .swiper-slide {
  overflow: hidden;
  /*transition: 0.1s all;*/
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.videoswiper .swiper-slide:hover {
  z-index: 2;
}
.videoswiper .swiper-slide:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 10px;
  right: 10px;
  height: 100px;
  cursor: pointer;
  z-index: 2;
}

.videoswiper .swiper-card {
  position: relative;
  height: 250px;
  background-color: white;
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
}

.videoswiper .card-img {
  position: relative;
  height: 80%;
  width: 100%;
  background-color: #f2f2f2;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.videoswiper .card-img:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2040%2040%22%3E%3Cpath%20d%3D%22M20%200C9%200%200%209%200%2020s9%2020%2020%2020%2020-9%2020-20S31%200%2020%200zM16%2029V11l12%209L16%2029z%22%20fill%3D%22%23FFFFFF%22%2F%3E%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 40px;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.1));
  transition: 0.6s all;
  cursor: pointer;
}
.videoswiper .card-img:hover:after {
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
}
.videoswiper .card-img a {
  height: 100%;
  display: block;
  cursor: pointer;
}
.videoswiper .card-info {
  margin: 10px 0;
  color: #000000;
  font-family: "ProximaNova-Semibold";
  text-align: center;
}
.videoswiper .card-info > a {
  position: relative;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.videoswiper .swiper-button-prev,
.videoswiper .swiper-button-next {
  height: 40px;
  width: 40px;
  top: 29px;
  background-color: white;
  background-size: 14px;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: 0.6s all;
  cursor: pointer;
}

.videoswiper .swiper-button-prev:hover,
.videoswiper .swiper-button-next:hover {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}
.videoswiper .swiper-button-next:after,
.videoswiper .swiper-button-prev:after {
  font-size: 16px !important;
  font-weight: bold;
}
.videoswiper .swiper-button-prev {
  left: initial;
  right: 60px;
  border: 1px solid;
}

.videoswiper .swiper-button-next {
  border: 1px solid;
}
/* Text Slider */
.swiper-container.textswiper {
  margin-left: -10px;
  margin-right: -10px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  padding: 70px 10px 30px;
}
.textswiper .swiper-slide {
  overflow: hidden;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  transition: 0.6s all;
  height: 100%;
  width: 100% !important;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
}
.textswiper .card-info {
  margin: 25px 0;
  color: #000000;
  font-family: "ProximaNova-Semibold";
  text-align: center;
}
.textswiper .swiper-button-prev,
.textswiper .swiper-button-next {
  height: 40px;
  width: 40px;
  top: 29px;
  background-color: white;
  background-size: 14px;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: 0.6s all;
  cursor: pointer;
}

.textswiper .swiper-button-prev:hover,
.textswiper .swiper-button-next:hover {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}
.textswiper .swiper-button-next:after,
.textswiper .swiper-button-prev:after {
  font-size: 16px !important;
  font-weight: bold;
}
.textswiper .swiper-button-prev {
  left: initial;
  right: 60px;
  border: 1px solid;
}

.textswiper .swiper-button-next {
  border: 1px solid;
}

/* Connor Branch page */

.branch-top {
  margin-top: 115px;
}
ul.knee {
    display: flex;
    font: 18px "ProximaNova-Semibold";
    flex-wrap: wrap;
}
.knee li {
    width: 50%;
    margin: 30px 0;
}

/* Professional Page */
.course-grid{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  column-gap: 30px;
  row-gap: 30px;
  justify-items: center;
}

/* HSI Page */

.hsi-banner{
    background: url(../img/hsi/banner.png) no-repeat center/cover !important;
    margin-top: 90px;
    display: flex;
    align-items: center;
    text-align: center;
    height: 640px;
}
.about-hsi{
  padding: 80px 0;
}
.vision-hsi{
  background: rgba(20, 37, 155, 0.06);
  padding: 80px 0;
}
.hsi-list {
    list-style: outside;
    padding: 20px;
    color: #686868;
    font-family: ProximaNova-Regular;
}
.hsi-list li{
  margin-bottom: 10px;
}
.hsi-text {
    padding: 20px 0;
    color: #686868;
    font-family: ProximaNova-Regular;
}
.contact-hsi{
  padding: 80px 0;
}
   .contact-card {
      background: #ffffff;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      padding: 40px;
      transition: all 0.3s ease;
    }
    .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }
    .contact-title {
      font-weight: 600;
      color: #004aad;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
.contact-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 30px;
}
    .contact-info p {
      margin: 5px 0;
      color: #333;
    }
    .contact-info strong {
      color: #004aad;
    }
    .icon-box {
      width: 45px;
      height: 45px;
      background: #004aad;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      font-size: 18px;
    }
        /* Fellowship Application page Style  */

.app-banner {
    background: #2A4A6F;
    height: 300px;
    margin-top: 90px;
    display: flex;
    text-align: center;
    align-items: center;
}
  .app-title {
    color: #ffffff;
    font: clamp(28px, 3.2vw, 38px) "ProximaNova-Regular";
}
/* ------------------ LAYOUT ------------------ */
.form-progress {
  background: #ffffff;
    box-shadow: 0 0px 1px 1px #E5E7EB;
    margin-bottom: 3rem;
    padding: .8rem 20rem;
}
.app-form {
    display: flex;
    padding: 0 20rem;
    gap: 1.7rem;
}

/* ------------------ LEFT STEPS ------------------ */
.steps-panel {
    width: 280px;
    height: fit-content;
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 0px 1px 1px #E5E7EB;
}
.steps-panel h3 {
  margin-bottom: 15px;
  font-size: 16px;
}

.steps-panel ul {
  list-style: none;
  padding: 0;
}

.steps-panel li {
    padding: 15px 20px 15px 50px;
    border-radius: 8px;
    margin-bottom: 10px;
    font: 14px 'ProximaNova-Regular';
    background: #f1f4fa;
    color: #555;
}

.steps-panel li.active {
    background: #353e7a;
    color: #fff;
    font: 14px 'ProximaNova-Regular';
}

.steps-panel li.completed {
  background: #F0FDF4;
  color: #008236;
}
/* step number circle */
.number {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #d6d9e6;
    color: #1F3B5C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font: 14px 'ProximaNova-Regular';
    margin-right: 8px;
    text-indent: 0px;
    margin-left: -36px;
}

/* COMPLETED STEP */
li.completed .number {
  background: #008236;
  color: transparent;   /* hides number */
  position: relative;
}

/* CHECK ICON */
li.completed .number::after {
  content: "✔";
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  position: absolute;
}

/* ACTIVE STEP */
li.active .number {
  background: #ffbf2f;
  color: #000;
}

/* ------------------ FORM PANEL ------------------ */
.form-panel {
  flex: 1;
}

.form-card {
  background: #353e7a;
  color: #fff;
  padding: 30px;
  border-radius: 16px;
}

/* ------------------ PROGRESS ------------------ */
.progress-wrapper {
  background: #ddd;
  height: 8px;
  border-radius: 10px;
  overflow: hidden;
}

#progressBar {
  height: 8px;
  width: 16%;
  background: #ffbf2f;
}

#progressText {
    margin-bottom: 10px;
    display: block;
    font: 13px 'ProximaNova-Regular';
    color: #4A5565;
}

/* ------------------ STEPS ------------------ */
.step { display: none; }
.step.active { display: block; }

.step h2 {
  font:16px "ProximaNova-Regular";
  text-align: start;
  margin-bottom: 15px;
}

/* ------------------ INPUTS ------------------ */
input, textarea, select {
    width: 100%;
    padding: 14px 10px;
    border-radius: 8px;
    border: 1px solid #ffffff;
    margin-bottom: 20px;
    font: 14px "ProximaNova-Regular";
    color: #ffffff;
    background: transparent;
}
#multiStepForm label{
    font: 14px "ProximaNova-Regular";
}
#multiStepForm ::placeholder {
  color: #8EC5FF;
  font: 14px "ProximaNova-Regular";
}
#multiStepForm select {
    color: #ffffff;
  font: 14px "ProximaNova-Regular";
}
.custom-date-picker {
    appearance: none; /* Removes the default appearance */
    -webkit-appearance: none; /* For Safari */
    position: relative;
  
}

/* This makes the original calendar icon invisible while keeping it clickable */
.custom-date-picker::-webkit-calendar-picker-indicator {
    opacity: 0;
    display: block;
    position: absolute;
    right: 10px;
    width: 20px;
    height: 100%;
    cursor: pointer;
}

/* Custom white icon overlay */
.custom-date-picker:before {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="white" viewBox="0 0 24 24"><path d="M19 4h-1V2h-2v2H8V2H6v2H5c-1.1 0-1.99.9-1.99 2L3 20c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zM7 12h5v5H7z"/></svg>');
    position: absolute;
    right: 10px;
    top: 55%;
    transform: translateY(-50%);
    pointer-events: none; /* Makes the icon non-clickable but allows the input's functionality */
}
/* ------------------ BUTTONS ------------------ */
.buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

button {
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

#backBtn {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    font: 16px "ProximaNova-Regular";
}
#nextBtn, #submitBtn {
    background: #F7B32B;
    color: #1F3B5C;
    font: 16px "ProximaNova-Regular";
}

#submitBtn { display: none; }

.edu-field {
    border: 1px solid #ffffff;
    border-radius: 8px;
    padding: 15px 15px 0px;
    margin: 0;
}
.custom-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    position: relative;
    padding-left: 28px;
    margin-right: 15px;
    user-select: none;
}

/* Hide default checkbox */
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Checkbox box */
.custom-checkbox .checkmark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  border: 1px solid #ffffff;
  background: transparent;
}

/* Checked state */
.custom-checkbox input:checked ~ .checkmark {
  background-color: #ffffff;
}

/* Tick mark */
.custom-checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

/* Show tick */
.custom-checkbox input:checked ~ .checkmark::after {
  display: block;
}

/* Tick style */
.custom-checkbox .checkmark::after {
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #1f3fae;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.step-text{
  color: #BEDBFF;
  font: 14px "ProximaNova-Regular";
  text-indent: -27px;
  margin-left: 27px;
}
.check-form-group{
  background: rgba(28, 57, 142, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 15px;
}
@media (max-width:1440px){
  .form-progress, .app-form {
    padding: .8rem 15rem;
}
}
@media (max-width:1030px){
  .form-progress, .app-form {
    padding: .8rem 5rem;
}
}
@media (max-width:850px){
  .form-progress, .app-form {
    padding: .8rem 1rem;
}
}
@media (max-width:450px){
  .form-progress, .app-form {
    padding: .8rem 1rem;
    flex-direction: column;
}
.steps-panel{
  width: fit-content;
}
.form-card {
    padding: 15px;
}
.app-banner {
    margin-top: 130px;
}
}
.dataTables_wrapper .dataTables_length select, .dataTables_wrapper .dataTables_filter input {

    color: #000000;
}