/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #de7b0a;
  --secondary: #162b59;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Roboto", serif;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.preLoader.black {
  background-color: var(--white);
  z-index: 11113;
}

.preLoader.white {
  z-index: 11112;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background: var(--primary);
  font-size: 1.0625rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: bold;
  display: inline-block;
  padding: 1.625rem 2.5625rem;
  border-radius: 50px;
  line-height: normal;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

ul.footer-social li a i:hover {
  background: var(--secondary);
  color: var(--white);
  transition: 0.9s ease;
}

ul.quick-link li:hover {
  transform: translate(10px);
  transition: 0.5s ease;
}

.themeBtn.secondBtn::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: var(--primary);
  z-index: -2;
  transform: scale(0);
}

.themeBtn.secondBtn:hover::before {
  transform: scale(1.1);
  transition: 0.7s ease;
}

.themeBtn.secondBtn:hover {
  color: #fff;
}

.themeBtn::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: #fff;
  z-index: -2;
  transform: scale(0);
  border-radius: 100px;
}

.themeBtn:hover::before {
  transform: scale(1.1);
  transition: 0.7s ease;
}

.themeBtn:hover {
  color: var(--sceondary);
}

/* NAV HEADER CSS */

header {
  margin: 0 auto;
  width: 100%;
  padding: 2.1875rem 0;
  transition: 0.3s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--white);
  z-index: 99;
  box-shadow: 0px 1px 17px 0px #00000080;
}

.navbar-brand {
  padding: 0;
  margin: 0;
  width: 250px;
}

.navbar-brand>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar-nav {
  align-items: center;
  gap: 3.75rem;
}

.navbar-nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  background: var(--secondary);
  bottom: -5px;
}

.navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
  transition: 0.6s ease;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1.125rem;
  color: var(--secondary);
  text-transform: capitalize;
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
  position: relative;
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
  height: 882px;
}

.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
  overflow: hidden;
}

.homeSlider .swiper-pagination {
  bottom: 8rem;
  width: fit-content;
  left: 18rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
  width: 4.35rem;
  height: 4.35rem;
  font-size: 1rem;
  color: #fff;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.28);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.homeSlider .swiper-button-next {
  right: 1rem;
}

.homeSlider .swiper-button-prev {
  left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
  background: var(--white);
  color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  display: inline-block;
  margin: 0 0.5rem !important;
  opacity: 1;
  border: 1px solid var(--white);
  background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
  background: var(--white);
  position: relative;
}

.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.main-slider h1 {
  margin: 0;
  color: var(--white);
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 500;
  text-transform: capitalize;
  width: 92%;
}

.main-slider p {
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
  margin-top: 1rem;
  font-size: 1.5625rem;
}

/* !MAIN HERO SLIDER CSS */

/* New Css Start */
.main-slider h1 span {
  font-weight: bold;
  text-transform: uppercase;
}

.homeSlider .slide-inner::before {
  position: absolute;
  content: "";
  background: linear-gradient(251deg, rgb(0 0 0 / 0%), #162b59);
  height: 100%;
  width: 100%;
}

.main-Btn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.themeBtn.secondBtn {
  background-color: var(--white);
  color: #121212;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* New Css End  */

/* About-Sec Css Start */
.about-content {
  text-align: center;
}

.mainHead {
  font-size: 3.75rem;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--secondary);
  line-height: 1.2;
}

.about-content p {
  color: #373737;
  line-height: 1.8;
  font-size: 1.75rem;
  text-transform: capitalize;
}

section.about-sec {
  padding-bottom: 0;
}

figure.about-imag {
  position: relative;
}

figure.about-imag::before {
  position: absolute;
  content: "";
  height: 70%;
  width: 100%;
  background: linear-gradient(181deg, rgb(255 255 255 / 0%), #ffffff);
  bottom: 0;
}

/* About-Sec Css End  */

/* Medical-Sec Css Start */
.medical-content h3 {
  font-size: 1.375rem;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.7;
  color: var(--secondary);
  width: 85%;
  margin: 0 auto 0.625rem;
}

.medical-content h3 a {
  color: var(--primary);
  font-size: 1.375rem;
}

.medical-content {
  padding-top: 0.625rem;
  text-align: center;
}

.medical-wrapp .icon {
  height: 2.5rem;
  width: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--primary);
  color: var(--white);
  margin: auto;
}

.medical-wrapp .icon i {
  transform: rotate(-45deg);
}

section.medical-sec {
  padding-top: 0;
  margin-top: -15rem;
}

/* Medical-Sec Css End  */

/* Doctore-Sec Css Start */
section.doctor-sec .mainHead {
  line-height: 1.35;
  margin-bottom: 1rem;
}

section.doctor-sec {
  background-color: #f3f3f3;
  z-index: 1;
}

img.img-fluid.doct-imag {
  position: absolute;
  bottom: 0;
  margin: auto;
  width: 22vw;
  left: 0;
}

/* Doctore-Sec Css End  */

/* Benefit-Sec Css Start */
.benefit-content h3 {
  text-transform: capitalize;
  color: var(--secondary);
  line-height: 1.3;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 0.625rem;
}

/* Benefit-Sec Css End  */

/* Performs-Sec Css Start */

.perform-content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--secondary);
  line-height: 1.5;
  margin: 1rem 0 0.3625rem 0;
}

.perform-content p {
  color: #566593;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.perform-main {
  display: flex;
  align-items: flex-start;
  gap: 7rem;
}

.perform-main+.perform-main {
  margin-top: 2rem;
}

figure.perform-img {
  position: absolute;
  height: 100%;
  width: 55%;
  right: 0;
  top: 0;
}

figure.perform-img img {
  height: 100%;
}

.performs-sec {
  background: #ecf5fb;
  padding: 6.875rem 0;
}

/* Performs-Sec Css End  */

/* Testimonials-Sec Css Start */
.testi-main {
  border: 1px solid #d4d6db;
  padding: 2.1875rem 2.0625rem;
}

ul.testi-stars {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}

ul.testi-stars li a i {
  color: #f8d254;
}

.testi-main p {
  line-height: 1.75;
  color: var(--black);
  padding-bottom: 1rem;
  border-bottom: 1px solid #d4d6db;
  width: fit-content;
  margin-top: 0.625rem;
  text-transform: capitalize;
}

figure.test-imag {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

figure.test-imag h5 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #131313;
}

section.testi-sec .mainHead {
  color: #1e0d02;
}

.testi-slider {
  padding-bottom: 5rem;
}

.testi-slider .swiper-pagination .swiper-pagination-bullet {
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  color: transparent;
  outline: none;
  background: transparent;
  transition: all 300ms ease 0s;
  border-radius: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2px;
}

.testi-slider .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-slider .swiper-pagination .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #131313;
  transition: all 300ms ease 0s;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50px;
}

.testi-slider .swiper-pagination .swiper-pagination-bullet-active {
  border-color: #1a191d;
  border-radius: 50px;
}

.testi-slider .swiper-pagination .swiper-pagination-bullet-active:before {
  background: #131313;
}

/* Testimonials-Sec Css End  */

/* Just-Sec Css Start */
section.just-sec {
  background-color: var(--primary);
}

section.just-sec .mainHead {
  color: var(--white);
  line-height: 1.2;
}

/* Just-Sec Css End  */

/* Footer-Sec Css Start */
figure.footer-logo p {
  text-transform: capitalize;
  color: var(--secondary);
  line-height: 2.0625;
  margin-top: 1.625rem;
  width: 89%;
}

footer h2 {
  font-size: 1.375rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

ul.quick-link li a {
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #10234c;
}

ul.quick-link li+li {
  margin-top: 0.625rem;
}

form.footer-form .form-control {
  height: 75px;
  border-radius: 50px;
  background-color: var(--secondary);
  color: #dfe0e0;
  outline: unset;
  border: unset;
  box-shadow: unset;
}

form.footer-form button {
  height: 4rem;
  width: 117px;
  padding: 0;
  outline: unset;
  border: unset;
}

footer {
  background-color: #ecf5fb;
  padding: 6rem 0 0;
}

ul.footer-social {
  display: flex;
  align-items: center;
  gap: 0.425rem;
}

ul.footer-social li a i {
  height: 2.5rem;
  width: 2.5rem;
  display: grid;
  place-items: center;
  background-color: #fff;
  color: var(--secondary);
  border-radius: 50px;
  border: 2px solid #c8c8c8;
}

.footer-bottom {
  padding: 1rem 0;
  margin-top: 5rem;
  border-top: 1px solid #10234c;
}

.footer-bottom p {
  color: var(--secondary);
  text-transform: capitalize;
  font-size: 1.25rem;
  text-align: right;
}

form.footer-form .form-control::placeholder {
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #dfe0e0;
  padding-left: 0.625rem;
}

/* Footer-Sec Css End   */

/* innerpages Start */

.innerBan .overlay {
  position: absolute;
  text-align: left;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.innerBan h2 {
  font-size: 70px;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 500;
}

.innerBan {
  position: relative;
  padding-top: 8rem;
}

.aboutmedical {
  margin-top: 0;
}

.medical-sec.aboutmedical {
  margin-top: 0;
}

.about-sec.aboutpage {
  padding-bottom: 3rem;
}

.cardoc1 {
  position: absolute;
  right: 0;
  bottom: -6rem;
  width: 40vw;
  z-index: -1;
}

.abtcntnt p {
  font-size: 28px;
  text-align: center;
  color: #373737;
  line-height: 1.8;
  width: 89%;
  margin: 50px auto 0;
}

.medical-sec.midecalpage {
  margin-top: 0;
  padding-top: 5rem;
}

.performs-sec.meicaldoctore {
  margin-top: 5rem;
}

.career-section {
  background: #ecf5fb;
  padding: 0;
}

.career-cntnt p {
  font-size: 20px;
  font-weight: 400;
  color: #373737;
  line-height: 2;
  width: 85%;
}

.join-section {
  background: #f3f3f3;
}

.contact-form input {
  width: 100%;
  border: 1px solid #c8c8c8;
  outline: none;
  resize: none;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

input.files {
  padding: 3rem 0 3rem 1rem;
  border: 1px solid #c8c8c8;
  background: #fff;
}

form.contact-form button.themeBtn {
  border: unset;
  padding: 1.5rem 1.5rem;
}

.wheelchairpage .medical-wrapp {
  margin-bottom: 40px;
}

.wheelchairpage {
  padding-bottom: 2rem;
}

figure.about-imag img {
  width: 100%;
}

.about-img img {
  height: 300px;
  object-fit: cover;
}

img {
  max-width: 100%;
}

#mainSlider video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  object-fit: cover;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 500;
}

.hireForm :is(input, textarea) {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--primary);
  margin-bottom: 1.5rem;
}

.hireForm .themeBtn {
  padding: 0.7rem 2rem;
}

.modal-footer .themeBtn {
  padding: 0.7rem 2rem;
  border: 0;
}

.modal-footer .btnSec {
  background: var(--secondary);
}

.preLoader video {
  width: 100%;
}

/*  Revision-Pages Css Start  */

.policy-content h3 {
  font-size: 1.875rem;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.2;
  margin-bottom: 0.625rem;
}

.policy-content p {
  color: var(--black);
  line-height: 1.5;
  margin: 0.925rem 0;
  width: 70%;
}

.policy-content ul li a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
}

.policy-content ul li+li {
  margin: 0.625rem 0;
}

.terms-content h3 {
  font-size: 1.875rem;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--black);
  margin-bottom: 0.625rem;
}

.terms-content p {
  line-height: 1.5;
  font-size: 1.115rem;
  margin-bottom: 0.22rem;
}

.terms-content ul li a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
}

.terms-content ul li+li {
  margin: 0.625rem 0;
}

.medical-content p {
  line-height: 1.5;
  margin-bottom: 0.9rem;
}

.medical-content p a {
  color: var(--primary);
}

/*  Revision-Pages Css End   */

.partner-with .about-content {
  width: 96%;
  margin: 0 auto;
}

.partner-with-img {
  margin-top: 2rem;
}

.pola {
  display: inline-block;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 20px;
  background: #000;
  text-decoration: none;
  padding: 12px;
  border-radius: 120px;
  color: #fff;
  margin: 0 auto;
  margin-bottom: 24px;
}

.innerBan h2 {
  margin-top: 10rem;
}

.perform-wrapp {
    width: 50%;
}