@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--lato);
}

:root {
  --lato: "Lato", sans-serif;
  --linear-gradient: linear-gradient(180deg, #258d6e 0%, #27667a 100%);
  --green: rgba(12, 102, 75, 1);
  --lightGreen: rgba(38, 134, 113, 1);
  --radiyamcolor: rgba(0, 206, 144, 1);
  --radiyamBlue: rgba(197, 255, 238, 1);
  --lightBlue: #dbfff4;
  --cardLinear-gradient: linear-gradient(90deg,
      rgba(37, 141, 110, 0.897) 0%,
      rgba(39, 103, 122, 0.767) 100%);
  --contactHeader: rgba(41, 107, 122, 1);
  --copyrights: #258d6e;
  --lightBlue: rgba(209, 244, 234, 1)
}

.logo {
  width: 13vw;
}

.nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  background-color: white;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.13);
  padding: 15px 20px;
  height: 15vh;
}

.links {
  display: flex;
  margin: 0;
  padding: 0;
}

.navLink {
  list-style: none;
  font-family: var(--lato);
  font-size: 1.2vw;
}

.navLink a {
  padding: 5px 20px;
  text-decoration: none;
  color: black;
  margin: 0 5px;
}

.navLink :hover {
  transition: 0.1s ease-in-out;
  background: var(--linear-gradient);
  border-radius: 5px;
  color: white !important;
  cursor: pointer;
}

.callBtn button {
  background: var(--linear-gradient);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 10px;
  font-family: var(--lato);
  font-size: 1.2vw;
  cursor: pointer;
}

.callIcon {
  margin-right: 5px;
  width: 1.5vw;
}

.active a {
  background: var(--linear-gradient);
  padding: 5px 15px;
  border-radius: 5px;
  color: white !important;
  cursor: pointer;
}

/* *******************************************************MOBILE NAVBAR************************************************* */
/* mobile Navbar */

.mobile_container {
  display: none;
}

.mobile_container .header_mobile {
  position: fixed !important;
  display: block;
  top: 0;
  left: 0;
  overflow-x: hidden !important;
  z-index: 999;
}

.content {
  padding: 40px 5% 20px;
  text-align: justify;
  max-height: 100%;
  color: #333;
  overflow-y: scroll;
}

.content img {
  width: 100%;
  position: relative;
  display: block;
  margin: 40px auto 30px;
}

/* End container/placeholder */

/* Menu header_mobile */
.header_mobile {
  background: #ffffff;
  overflow: hidden !important;
  height: 15vh;
  width: 100%;
  z-index: 1;
  position: fixed !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease-out, background 1s ease-out;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.13);
}

.header_mobile.menu-open {
  height: 100%;
  background: var(--linear-gradient);
  transition: all 0.45s ease-out, background 0.8s ease-out;
}

/* Menu List items */
.mobile-menu {
  clear: both;
  display: flex;
  justify-content: end;
  align-items: center;
  height: 100vh;
}

.header_mobile ul.menu {
  position: relative;
  margin-bottom: 40vw;
  padding: 0px 40px 0;
  list-style: none;
}

.header_mobile ul.menu li.menu-item a {
  display: block;
  position: relative;
  color: #fff;
  text-align: right;
  text-decoration: none;
  font-size: 5vw;
  line-height: 2.8;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}

.header_mobile ul.menu li.menu-item {
  margin-top: 5px;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99),
    -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99),
    opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99),
    opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99),
    -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.header_mobile ul.menu li.menu-item:nth-child(1) {
  transition-delay: 0.35s;
}

.header_mobile ul.menu li.menu-item:nth-child(2) {
  transition-delay: 0.3s;
}

.header_mobile ul.menu li.menu-item:nth-child(3) {
  transition-delay: 0.25s;
}

.header_mobile ul.menu li.menu-item:nth-child(4) {
  transition-delay: 0.2s;
}

.header_mobile ul.menu li.menu-item:nth-child(5) {
  transition-delay: 0.15s;
}

.header_mobile ul.menu li.menu-item:nth-child(6) {
  transition-delay: 0.1s;
}

.header_mobile ul.menu li.menu-item:nth-child(7) {
  transition-delay: 0.05s;
}

.header_mobile.menu-open ul.menu li.menu-item {
  opacity: 1;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(1) {
  transition-delay: 0.05s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(2) {
  transition-delay: 0.1s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(3) {
  transition-delay: 0.15s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(4) {
  transition-delay: 0.2s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(5) {
  transition-delay: 0.25s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(6) {
  transition-delay: 0.3s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(7) {
  transition-delay: 0.35s;
}

.hamburger {
  font-size: 7vw;
  color: #000000;
}

/* Menu Icon */
.icon-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.icon-container #menuicon {
  width: 20px;
  height: 10px;
  position: relative;
  display: block;
  margin: -4px auto 0;
  top: 50%;
}

.closed {
  display: none;
}

#menuicon .bar {
  width: 100%;
  height: 1px;
  display: block;
  position: relative;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

#menuicon .bar.bar1 {
  -webkit-transform: translateY(0px) rotate(0deg);
  transform: translateY(0px) rotate(0deg);
}

#menuicon .bar.bar2 {
  -webkit-transform: translateY(6px) rotate(0deg);
  transform: translateY(6px) rotate(0deg);
}

#menuicon .bar.bar3 {
  -webkit-transform: translateY(12px) rotate(0deg);
  transform: translateY(12px) rotate(0deg);
}

.menu-open .closed {
  display: block;
  font-size: 8vw;
  float: right;
  color: #fff;
}

.menu-open .icon-container .hamburger {
  display: none;
}

.menu-open .logo {
  display: none !important;
  transition: all 0.5s ease;
}

.menu-open .icon-container #menuicon .bar {
  transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0.1s;
}

.menu-open .icon-container #menuicon .bar.bar1 {
  -webkit-transform: translateY(4px) rotate(45deg);
  transform: translateY(4px) rotate(45deg);
}

.menu-open .icon-container #menuicon .bar.bar2 {
  -webkit-transform: translateY(3px) rotate(-45deg);
  transform: translateY(3px) rotate(-45deg);
}

.mobile_pallete {
  height: 15vh;
}

.logo {
  width: 13vw;
  transition: all 0.5s ease;
}

/******************************************************** Home Page ********************************************************** */
.main {
  width: 100%;
  padding: 5% 0px;
  background-image: url("../img/Home/bannerBg.webp");
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
}

.mainImg {
  width: 80%;
}

.greenText {
  color: var(--lightGreen);
}

.bannerHeading {
  font-weight: 800;
  line-height: 4vw;
  font-size: 3.125vw;
  width: 70%;
}

.bannerPara {
  font-size: 1.3vw;
  width: 90%;
  padding: 1px 0;
}

.bannerBtn {
  background: var(--green);
  color: white;
  border: none;
  padding: 8px 25px;
  border-radius: 5px;
  font-family: var(--lato);
  font-size: 1vw;
  cursor: pointer;
}

.AboutContainer {
  padding: 5% 0px;
}

.HealthContainer {
  width: 100%;
  padding: 5% 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aboutImg {
  width: 75%;
}

.bar {
  height: 20vw;
  margin-left: 30px;
}

.aboutHeading {
  color: var(--green);
  font-weight: 800;
  font-size: 1.146vw;
}

.aboutTitle {
  color: var(--lightGreen);
  font-size: 2.604vw;
  font-weight: 800;
}

.aboutPara {
  font-size: 1vw;
  line-height: 2.5vw;
}

.aboutmeBtn button {
  background: var(--linear-gradient);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 5px;
  font-family: var(--lato);
  font-size: 1vw;
  cursor: pointer;
}

.aboutmeBtnSm button {
  display: none;
}

.Service {
  width: 100%;
  padding: 5% 0px;
  background-image: url("../img/Home/bannerBg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

}

.serviceContainer {
  background: var(--lightBlue);
  padding: 5% 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.serviceBottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0px;
}

.serviceHeading {
  font-weight: 800;
  font-size: 1vw;
}

.serviceTitle {
  font-size: 1.5vw;
  font-weight: 700;
  width: 90%;
}

.serviceBtn button {
  background: var(--radiyamcolor);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 4px;
  font-family: var(--lato);
  font-size: 1vw;
  cursor: pointer;
}

.serviceBtnSm button {
  display: none !important;
  background: var(--radiyamcolor);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 4px;
  font-family: var(--lato);
  font-size: 1vw;
  cursor: pointer;
}

.card_container {
  position: relative;
  width: 20vw;
  height: 30vw;
  background-image: var(--card-img);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 15px;
  border: none;
  overflow: hidden;
}

.card-body {
  position: absolute;
  top: 70%;
  height: 100%;
  width: 100%;
  background: rgba(37, 141, 110, 0.747);
  border-radius: 15px;
  overflow: hidden !important;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.card-text {
  color: white;
  font-size: 1.5vw;
  text-align: center;
  font-weight: 800;
}

.cardList {
  margin: 0px;
  padding: 0;
  display: none;
}

.CardItems {
  list-style: disc;
  color: white;
  text-align: left;
  margin-bottom: 0;
  font-size: 1vw;
  padding: auto;
}

.card_container:hover .cardList {
  display: block;
}

.card_container:hover .card-body {
  top: 0%;
  transition: all 0.5s ease;
  background: var(--cardLinear-gradient);
  justify-content: center;
}

.card-para {
  color: white;
  text-align: center;
  margin-bottom: 0;
  font-size: 1vw;
}

.cardBtn button {
  background: var(--radiyamcolor);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-family: var(--lato);
  font-size: 1vw;
  cursor: pointer;
  margin-top: 3vw;
}

.healthTitle {
  color: var(--lightGreen);
  font-size: 3.385vw;
  font-weight: 800;
}

.healthPara {
  font-size: 1.302vw;
  line-height: 2.5vw;
  width: 80%;
}

.testimonial {
  background-image: url("../img/Home/testimonialBgImg.webp");
  padding: 5% 0px;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.testimonial-title {
  text-transform: uppercase;
  font-size: 1.146vw;
  text-align: center;
  color: white;
  font-weight: 800;
}

.testimonial-heading {
  font-size: 2.5vw;
  color: white;
  text-align: center;
  width: 50%;
  margin: 0 auto;
  font-weight: 700;
}

.testimonialBox {
  margin-top: 20px;
  background-color: white;
  width: 100%;
  height: 20vw;
  border-radius: 45px 45px 0px 45px;
}

.testimonialBoxTop {
  padding: 20px 10px;
  width: 30vw;
}

.customerImg {
  width: 7vw;
}

.customerName {
  font-size: 1vw;
}

.testimonialBoxBottom {
  padding: 10px 20px;
  font-size: 1.25vw;
  line-height: 2.5vw;
  margin: 0px auto;
  text-align: center;
}

.contact {
  background-image: url("../img/Home/bannerBg.webp");
  background-size: cover;
  width: 100%;
}

.contact-container {
  padding: 5% 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

}

.contactImg {
  width: 80%;
}

.contact-heading {
  color: var(--contactHeader);
  font-weight: 700;
  font-size: 3.906vw;
}

.contact-title {
  font-weight: 400;
  font-size: 1.8vw;
  width: 70%;
  line-height: 3vw;
}

/* *************************************************ABOUT************************************************* */
.center {
  overflow: hidden;
}

.aboutbannerImg {
  position: relative;
  padding: 15% 0px;
  width: 100%;
  background-image: url("../img/Aboutus/aboutBanner.webp");
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
}

.aboutTopRight {
  background-color: rgba(41, 107, 122, 0.6);
  position: absolute;
  text-align: left;
  width: 40%;
  padding: 35px 10px;
  top: 50%;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  left: 0;
  transform: translate(0%, -50%);
}

.bannerhead {
  color: white;
  font-size: 2.5vw;
  font-weight: 700;
}

.bannerpara {
  color: white;
  font-size: 1.1vw;
}

.aboutmainBottom {
  padding-top: 5%;
  padding-bottom: 5%;
}

.aboutmainBottomP {
  font-size: 1vw;
  line-height: 2vw;
  margin-bottom: 3vw;
  text-align: justify;
  font-family: var(--lato);
}

.aboutHeadingblue {
  color: #268671;
  font-size: 1.3vw;
  font-weight: 700;
  margin-bottom: 2vw;
}

.appointments {
  background-image: url("../img/Aboutus/contentBgImg.webp");
  width: 100%;
  padding: 10% 0px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: contain;
  margin: 5% 0 10% 0;
}

.Affiliations {
  background-image: url("../img/Aboutus/contentBgImg.webp");
  width: 100%;
  padding: 5% 0px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: contain;
  margin: 5% 0px 0px 0px;
}

.appointmentImg {
  width: 30vw;
  position: absolute;
  bottom: 0;
}

.appointmentHeading {
  color: #0c664b;
  font-weight: 900;
  font-size: 1.7vw;
}

.appointmentItem {
  list-style: disc;
  padding: 5px 3px;
  font-size: 1.1vw;
  font-weight: 600;
}

.appointmentItem2 {
  padding: 5px 3px;
  font-size: 1.302vw;
  font-weight: 500;
}

.appointmentPara {
  font-size: 1.354vw;
  font-weight: 700;
  width: 90%;
}

.ContactUs button {
  background: var(--linear-gradient);
  color: white;
  border: none;
  padding: 15px 50px;
  border-radius: 5px;
  font-family: var(--lato);
  font-size: 1vw;
  cursor: pointer;
}

.slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* *********************************************************************Service******************************************************************************* */
.bannerHead {
  color: #0c664b;
  font-weight: 900;
}

.serviceHeading {
  font-weight: 800;
  font-size: 3.125vw;
  color: var(--lightGreen);
}

/* *********************************************************************Health******************************************************************************* */
.HealthContainer {
  width: 100%;
  padding: 5% 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.healthImg {
  width: 30vw;
}

.bold {
  font-weight: 800;
}

.healthList {
  margin: 0;
  padding: 0;
}

.healthPoints {
  padding: 1vw 0;
  font-size: 1.3vw;
}

/* *********************************************************************FQA******************************************************************************* */
.topBanner {
  background-image: url("../img/topBanner.webp");
  height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
}

.TopbannerHeading {
  color: white;
  font-weight: 900;
  font-size: 2.5vw;
  text-align: center;
}

.fqa_main {
  width: 100%;
}

.section-center {
  width: 100%;
  background-color: white;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.2);
}

.question-title {
  display: flex;
  letter-spacing: 2px;
  padding: 10px;
  justify-content: space-between;
}

.question-title p {
  margin-bottom: 0;
}

.question-text {
  margin: 10px;
  text-align: justify;
  border-top: 1px solid rgba(0, 0, 0, 0.422);
}

.question-text li {
  padding-top: 5px;
}

.question-text {
  padding-top: 5px;
}

i {
  color: var(--copyrights);
  font-size: 1.1rem;
}

button {
  border: none;
}

.question-text {
  display: none;
}

.minus-icon {
  display: none;
}

.show-text .question-text {
  display: block;
}

.show-text .minus-icon {
  display: inline;
}

.show-text .plus-icon {
  display: none;
}

.fqa-list li {
  margin-top: 5px;
}

/* *********************************************************************CONTACT******************************************************************************* */
.contactHeading {
  font-weight: 700;
  font-size: 4vw;
}

.contactPara {
  width: 80%;
  font-size: 1.1vw;
}

.contactList {
  margin: 4vw 0px;
  width: 35vw;
  position: relative;
}

.contactItemIcon {
  width: 3vw;
  filter: brightness(0) saturate(100%) invert(34%) sepia(62%) saturate(403%) hue-rotate(144deg) brightness(95%) contrast(95%);
  transition: filter 0.5s ease-in-out;
}

.contactH2 {
  color: #00251a;
  font-weight: 700;
  font-size: 1.302vw;
  transition: all 0.5s ease-in-out;
}

.call-outline {
  width: 4vw !important;
}

.contactP {
  margin: 0;
  transition: all 0.5s ease-in-out;
}

.contactBtn button {
  padding: 10px 30px;
  background-color: var(--radiyamBlue);
}

.contactPageImg {
  width: 30vw;
}

.miniIcon {
  margin-right: 10px !important;
}

.contactA {
  color: rgb(0, 0, 0);
  text-decoration: none;
  transition: all 0.5s ease-in-out;

  &:hover {
    color: inherit;
  }
}

.contactList::before {
  content: "";
  position: absolute;
  left: -220%;
  width: 50vw;
  padding: 50px;
  background-color: #296b7a;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  z-index: -10;
}

.contactList:hover::before {
  left: -30%;
}

.contactList:hover .contactH2 {
  color: white;
}

.contactList:hover .contactA {
  color: white;
}

.contactList:hover .contactP {
  color: white;
}

.contactList:hover .contactItemIcon {
  filter: brightness(0) saturate(100%) invert(93%) sepia(64%) saturate(245%) hue-rotate(78deg) brightness(100%) contrast(104%);
}

/* *********************************************************************FOOTER******************************************************************************* */
.Footer-container {
  background: var(--linear-gradient);
  padding: 3% 0px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footerLogoImg {
  width: 15vw;
}

.footerPara {
  color: white;
  font-size: 1vw;
  font-weight: 400;
  line-height: 2vw;
}

.footerNavList {
  margin: 0;
  padding: 0;
  text-align: center;
}

.footerNavHeading {
  color: white;
  font-size: 1.23vw;
  font-weight: 900;
  text-align: center;
  margin: 2px;
}

.footerNavItem {
  list-style: none;
  padding: 7px 0;
}

.footerNavItem a,
.footermail {
  text-decoration: none !important;
  color: white !important;
  font-size: 1vw;

  &:hover {
    color: white !important;
  }
}

.footerContactpara {
  color: white !important;
  text-align: center;
  margin: 0;
}

.footerMap {
  width: 19vw;
  height: 10vw;
  border-radius: 10px !important;
}

.footerBottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--copyrights);
  padding: 20px 0;
}

.footerBottomPara {
  color: white !important;
  margin: 0;
  font-size: 1vw;
}

/* *********************************************************************Services************************************************* */
.tabContainer {
  background-color: #ffffff;
  width: fit-content;
  border-radius: 50px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.322);
}

.tabItem {
  color: rgb(0, 0, 0);
  font-size: 1vw;
  font-weight: 600;
  padding: 1vw 3vw;
  border-radius: 50px;
  cursor: pointer;
  background-color: white;
}

.Tabactive {
  background-color: #268571;
  color: white;
}

.tabContent {
  display: none;
}

.tabContent.tabcontentactive {
  display: block;
}

.AppendiceLeftSideLeft {
  transform: rotate(-90deg);
  text-align: center;
}

.AppendiceLeftSideLefth2 {
  font-weight: 800;
}

.servesesContainer {
  position: relative;
  margin: 5% 0px;
}

.servesesContainer3 {
  background-color: var(--lightBlue);
  position: relative;
  margin: 5% 0px;
  z-index: -10;
}

.AppendiceLeftSideRight p {
  height: 90%;
  font-size: 1vw;
}

.AppendiceLeftSideRight2 p {
  height: 90%;
  line-height: 2.5vw;
  font-size: 1.2vw;
  font-weight: 600;
}

.servicesesImg {
  height: 35vw;
  width: 40vw;
  object-fit: contain;
}

.whiteBg {
  background-color: white;
  border-radius: 10px;
  width: 80%;
  padding: 2vw 0px 2vw 4vw;
}

.whiteBg2 {
  background-color: white;
  border-radius: 10px;
  width: 80%;
  padding: 2vw 4vw 2vw 0vw;
}

.whiteBg3 {
  background-color: white;
  border-radius: 10px;
  width: 100%;
  padding: 4vw 2vw 4vw 6vw;
}

.BenefitsHeader {
  font-size: 4vw;
  font-weight: 800;
  color: rgba(37, 141, 110, 1);
}

.AppendiceLeftSide {
  padding: 5% 0px;
  background: var(--lightBlue);
  z-index: -10;
  border-radius: 10px;
  margin-left: -15vw !important;
}

.AppendiceLeftSide2 {
  padding: 5% 0px;
  background: var(--lightBlue);
  z-index: -10;
  border-radius: 10px;
  margin-right: -15vw !important;
}

.AppendiceLeftSide3 {
  height: 50vh;
  background: var(--lightBlue);
  border-radius: 10px;
  z-index: -10;
  margin-left: -12vw;
}

/* *********************************************************************RESPONSIVE************************************************* */
@media screen and (max-width: 990px) {
  .nav {
    display: none;
  }

  .mobile_container {
    display: block;
  }

  .logo {
    width: 20vw;
  }
.Margin-top{
  margin-top: 110px;
}
  .header_mobile ul.menu li.menu-item a {
    font-size: 3vw;
  }

  .menu-open .closed {
    font-size: 6vw;
  }

  .hamburger {
    font-size: 5vw;
  }

  .bannerHeading {
    line-height: 6vw;
    font-size: 4.5vw;
    width: 100%;
  }

  .bannerPara {
    line-height: 3vw;
    font-size: 2vw;
    width: 100%;
    padding: 20px 0;
    text-align: justify;
  }

  .bannerBtn {
    padding: 10px 30px;
    border-radius: 10px;
    font-size: 2vw;
  }

  .mainImg {
    width: 90%;
  }

  .aboutImg {
    width: 90%;
  }

  .aboutHeading {
    font-size: 3vw;
  }

  .aboutTitle {
    color: var(--lightGreen);
    font-size: 4vw;
    font-weight: 800;
  }

  .main {
    margin-top: 15vh;
    padding: 10% 0px;
  }

  .aboutPara {
    font-size: 1.5vw;
    line-height: 4vw;
  }

  .aboutmeBtn button {
    font-size: 2vw;
  }

  .bar {
    display: none;
    height: 40vw;
  }

  .bannerHead {
    color: #0c664b;
    font-size: 6vw;
    font-weight: 900;
  }

  .Service {
    margin-top: 15vh;
  }

  .serviceHeading {
    font-size: 3vw;
    margin-bottom: 1vw;
  }

  .serviceTitle {
    font-size: 2vw;
    font-weight: 700;
    width: 100%;
  }

  .appointmentLeft {
    width: 50%;
  }

  .serviceBtn button {
    font-size: 1.5vw;
  }

  .serviceBtnSm button {
    display: none;
  }

  .card-text {
    color: white;
    font-size: 1.9vw;
    text-align: center;
    font-weight: 700;
  }

  .card_container {
    width: 25vw;
    height: 40vw;
  }

  .card-body {
    position: absolute;
    top: 80%;
    padding: 0.5rem 1rem;
  }

  .card-para {
    font-size: 1.5vw;
  }

  .CardItems {
    font-size: 1.3vw;
  }

  .cardBtn button {
    font-size: 1.5vw;
  }

  .healthTitle {
    font-size: 6vw;
  }

  .healthPara {
    font-size: 2vw;
    line-height: 4.5vw;
    width: 100%;
  }

  .testimonial-title {
    font-size: 4.146vw;
  }

  .testimonialTop {
    margin-bottom: 5vw;
  }

  .testimonial-heading {
    font-size: 3.7vw;
    width: 80%;
    font-weight: 600;
  }

  .testimonialBox {
    margin-top: 20px;
    background-color: white;
    width: 100%;
    height: 20vw;
    border-radius: 30px 30px 0px 30px;
  }

  .testimonialBoxTop {
    padding: 15px 20px;
    width: 50%;
  }

  .testimonialBoxBottom p {
    font-size: 1.5vw;
    text-align: center;
  }

  .footerLogoImg {
    width: 20vw;
    margin: 0px auto;
  }

  .footerPara {
    color: white;
    font-size: 2vw;
    font-weight: 400;
    line-height: 3vw;
    text-align: center;
  }

  .Footer-container {
    background: var(--linear-gradient);
  }

  .footerMap {
    width: 100%;
    height: 25vw;
    border-radius: 5px !important;
  }

  .footerNavHeading {
    color: white !important;
    font-size: 2.6vw;
  }

  .footerNavItem a,
  .footermail {
    text-decoration: none !important;
    color: white !important;
    font-size: 2vw;
  }

  .footerBottomPara {
    color: white !important;
    margin: 0;
    font-size: 2vw;
  }

  .contactHeading {
    font-weight: 700;
    font-size: 7vw;
    text-align: center;
  }

  .contactPara {
    width: 100%;
    text-align: center;
    font-size: 2.2vw;
  }

  .contactItemIcon {
    width: 5vw;
  }

  .contactH2 {
    font-size: 2vw;
  }

  .contactPageImg {
    display: none !important;
  }

  .contactList {
    margin: 4vw 8vw;
    width: 85%;
  }

  .contactList::before {
    width: 95vw;
    left: -220%;
  }

  .contactList:hover::before {
    left: -30%;
  }

  .aboutbannerImg {
    height: 40vh;
    margin-top: 15vh;
  }

  .aboutTopRight {
    width: 50%;
  }

  .bannerhead {
    font-size: 3.5vw;
  }

  .bannerpara {
    font-size: 1.6vw;
    margin: 2vw auto;
  }

  .aboutHeadingblue {
    color: #268671;
    font-size: 2vw;
    font-weight: 800;
    margin-bottom: 2vw;
  }

  .aboutmainBottomP {
    font-size: 1.9vw;
    line-height: 4vw;
    margin-bottom: 4vw;
  }

  .appointmentHeading {
    color: #0c664b;
    font-weight: 900;
    font-size: 3.25vw;
  }

  .appointmentItem {
    padding: 5px 3px;
    font-size: 1.7vw;
    font-weight: 600;
  }

  .appointmentItem2 {
    padding: 5px 3px;
    font-size: 1.7vw;
    font-weight: 500;
  }

  .appointmentPara {
    font-size: 1.5vw;
    font-weight: 900;
  }

  .ContactUs button {
    font-size: 1.4vw;
  }

  .topBanner {
    margin-top: 15vh;
  }

  .TopbannerHeading {
    font-size: 5vw;
  }

  .healthPoints {
    padding: 5px 0;
    font-size: 2vw;
  }

  .healthImg {
    width: 40vw;
  }

  .homeContact {
    background-image: url("../img/Home/bannerBg.webp");
    background-size: cover;
    width: 100%;
  }

  .appointmentImg {
    position: relative;
    width: 35vw;
    margin-top: 3vw;
  }

  .servicesesImg {
    height: 50vw;
    width: 50vw;
  }

  .tabItem {
    padding: 2vw 5vw;
    font-size: 1.5vw;
  }

  .AppendiceLeftSide {
    background: var(--lightBlue);
    z-index: -10;
    border-radius: 10px;
    margin-left: -5vw !important;
  }

  .whiteBg {
    background-color: white;
    border-radius: 10px;
    margin-left: -10vw;
  }

  .whiteBg2 {
    background-color: white;
    border-radius: 10px;
    margin-right: -10vw;
  }

  .AppendiceLeftSideRight p {
    line-height: 2.5vw;
    font-size: 1.5vw;
  }

  .AppendiceLeftSide2 {
    background: var(--lightBlue);
    z-index: -10;
    border-radius: 10px;
    margin-right: -5vw !important;
  }

  .AppendiceLeftSide3 {
    height: 50vh;
    background: var(--lightBlue);
    border-radius: 10px;
    z-index: -10;
    margin-left: -10vw !important;
  }

  .whiteBg3 {
    background-color: white;
    border-radius: 10px;
    padding: 4vw 0vw 4vw 0vw;
  }

  .AppendiceLeftSideRight2 p {
    height: 90%;
    line-height: 2.5vw;
    font-size: 1.5vw;
    font-weight: 600;
  }

  .tabContainer {
    width: fit-content;
  }
}

/* ********************************************************RESPONSIVE MOBILE******************************************* */
@media screen and (max-width: 600px) {

  .servicesesImg {
    height: 70vw;
    width: 70vw;
    margin: 6vw auto;
  }

  .tabmob {
    padding: 3vw 8vw !important;
    font-size: 2, 5vw !important;
  }

  .AppendiceLeftSide {
    background: var(--lightBlue);
    z-index: -10;
    border-radius: 10px;
    margin-left: 0 !important;
  }

  .whiteBg {
    background-color: white;
    border-radius: 10px;
    width: 100%;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
  }

  .whiteBg2 {
    background-color: white;
    border-radius: 10px;
    width: 100%;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .AppendiceLeftSideRight p {
    line-height: 6vw;
    font-size: 3vw;
  }

  .AppendiceLeftSideLeft {
    transform: rotate(0deg);
    text-align: center;
  }

  .tabItem {
    padding: 3vw 2vw;
    font-size: 2.3vw;
  }

  .logo {
    width: 45vw;
  }

  .hamburger {
    font-size: 9vw;
  }

  .main {
    margin-top: 15vh;
  }

  .mainLeft {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 4vw;
  }

  .bannerHeading {
    line-height: 12vw;
    font-size: 8.5vw;
    width: 100%;
    text-align: center;
  }

  .bannerPara {
    line-height: 8vw;
    font-size: 3vw;
    padding: 0;
  }

  .bannerBtn {
    font-size: 3vw;
  }

  .bar {
    display: none;
  }

  .aboutHeading {
    font-size: 8vw;
    text-align: center;
    margin: 0;
  }

  .aboutTitle {
    color: var(--lightGreen);
    font-size: 5vw;
    text-align: center;
    font-weight: 800;
    margin: 0;
  }

  .aboutPara {
    font-size: 2.7vw;
    line-height: 5vw;
    text-align: center;
  }

  .aboutRight {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .aboutImg {
    width: 90%;
    margin-top: 6vw;
  }

  .aboutmeBtn button {
    font-size: 3vw;
    display: none !important;
  }

  .aboutmeBtnSm button {
    display: block !important;
    font-size: 3vw;
  }

  .serviceHeading {
    font-size: 10vw;
    text-align: center;
  }

  .serviceTitle {
    font-size: 4vw;
  }

  .serviceBtn button {
    display: none;
  }

  .serviceBtnSm button {
    display: block !important;
    font-size: 3vw;
  }

  .serviceBtnSm {
    text-decoration: none;
  }

  .card_container {
    width: 80%;
    height: 60vh;
    margin-bottom: 6vw;
  }

  .card-body {
    top: 75%;
    padding: 0.5rem 1rem;
  }

  .card-text {
    color: white;
    font-size: 5.3vw;
  }

  .card-para {
    font-size: 3.2vw;
  }

  .CardItems {
    font-size: 3vw;
  }

  .cardBtn button {
    font-size: 3.5vw;
  }

  .healthTitle {
    font-size: 10vw;
  }

  .healthPara {
    font-size: 3.3vw;
    line-height: 5vw;
    width: 100%;
    text-align: center;
  }

  .aboutImg {
    width: 80%;
    margin: 6vw auto;
  }

  .testimonial-title {
    font-size: 8vw;
  }

  .testimonial-heading {
    font-size: 5vw;
    width: 80%;
    font-weight: 600;
  }

  .testimonialBox {
    width: 100%;
    height: 60vw;
    border-radius: 0px;
  }

  .testimonialBoxTop {
    padding: 15px 25px;
    width: 90%;
  }

  .testimonialBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
  }

  .customerImg {
    width: 13vw;
  }

  .customerName {
    font-size: 4.4vw;
    font-weight: 700;
  }

  .testimonialBoxBottom p {
    font-size: 3.5vw;
    text-align: center;
    line-height: 6vw;
  }

  .contactList::before {
    width: 100vw;
    left: -220%;
  }

  .contactList:hover::before {
    left: -10%;
  }

  .contactList {
    margin: 10vw auto;
  }

  .contactH2 {
    font-size: 3vw;
  }

  .contactPara {
    width: 100%;
    text-align: center;
    font-size: 3vw;
  }

  .contactBtn button {
    padding: 10px 10px;
  }

  .Footer-container {
    background: var(--linear-gradient);
  }

  .contactItemIcon {
    width: 7vw;
  }

  .footerLogoImg {
    width: 45vw;
  }

  .footerPara {
    font-size: 3.5vw;
    line-height: 6vw;
  }

  .footerNavHeading {
    color: white;
    font-size: 5.5vw;
  }

  .footerNavItem a,
  .footermail {
    text-decoration: none !important;
    color: white !important;
    font-size: 3vw;
  }

  .footerBottomPara {
    font-size: 3vw;
  }

  .footerMap {
    width: 100%;
    height: 45vw;
    border-radius: 5px !important;
  }

  .aboutbannerImg {
    background-size: cover;
    background-position: center;
    margin-top: 15vh;
    height: 40v;
  }

  .aboutTopRight {
    width: 90%;
  }

  .bannerhead {
    font-size: 5.5vw;
  }

  .bannerpara {
    font-size: 3.5vw;
    margin: 2vw auto;
  }

  .aboutmainBottomP {
    font-size: 3vw;
    line-height: 6vw;
    margin-bottom: 4vw;
    text-align: justify;
  }

  .aboutHeadingblue {
    color: #268671;
    font-size: 4vw;
    font-weight: 800;
    margin-bottom: 2vw;
    text-align: justify;
  }

  .appointmentLeft {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .appointmentImg {
    position: relative;
  }

  .appointmentHeading {
    font-size: 7vw;
  }

  .appointmentPara {
    font-size: 3vw;
    text-align: center;
  }

  .appointmentItem {

    padding: 5px 3px;
    font-size: 3.5vw;
    font-weight: 600;
  }

  .ContactUs button {
    font-size: 3vw;
  }

  .appointmentImg {
    width: 55vw;
    margin: 5vw auto;
  }

  .appointments-container {
    padding: 10% auto;
  }

  .appointmentItem2 {
    padding: 5px 3px;
    font-size: 3vw;
    font-weight: 500;
  }

  .bannerHead {
    color: #0c664b;
    font-weight: 900;
    font-size: 9vw;
  }

  .serviceHeading {
    font-size: 10vw;
    text-align: center;
  }

  .bannerPara {
    line-height: 6vw;
    font-size: 3vw;
    padding: 0;
    text-align: center;
  }

  .healthTitle {
    font-size: 12vw;
  }

  .TopbannerHeading {
    font-size: 10vw;
  }

  .healthPoints {
    padding: 5px 0;
    font-size: 3.5vw;
  }

  .healthImg {
    width: 100%;
    margin-top: 10vw;
  }

  .contactHeading {
    font-weight: 800;
    font-size: 12vw;
    text-align: center;
  }

  .contactPara {
    width: 100%;
    text-align: center;
    font-size: 3.5vw;
  }

  .doctorakka {
    display: none !important;
  }

  .BenefitsHeader {
    font-size: 6vw;
  }

  .AppendiceLeftSide3 {
    display: none !important;
  }

  .header_mobile ul.menu li.menu-item a {
    font-size: 7vw;
  }

  .menu-open .closed {
    font-size: 10vw;
  }
}

@media screen and (max-width: 425px) {

  .card_container {
    width: 100%;
    height: 50vh;
    margin-bottom: 6vw;
  }

  .contactA {
    font-size: 3.5vw;
  }

  .card-text {
    margin: 0;
    font-size: 6vw;
  }

  .Footer-container {
    background: var(--linear-gradient);
  }

  .doctorakka {
    display: none;
  }
}