@font-face {
  font-family: myFont1;
  src: url(../font/Space_Grotesk/SpaceGrotesk-Bold.ttf);
}
@font-face {
  font-family: myFont2;
  src: url(../font/Space_Grotesk/SpaceGrotesk-Light.ttf);
}
@font-face {
  font-family: myFont3;
  src: url(../font/Space_Grotesk/SpaceGrotesk-Medium.ttf);
}
@font-face {
  font-family: myFont4;
  src: url(../font/Space_Grotesk/SpaceGrotesk-Regular.ttf);
}
@font-face {
  font-family: myFont5;
  src: url(../font/Space_Grotesk/SpaceGrotesk-SemiBold.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primaryColor: #156025;
  --secondaryColor: #fdbf3a;
  --secondaryTextColor: rgb(141, 141, 141);
  --mask-opacity: 0.5;
}

body {
  font-family: myFont4;
}

/* width */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.048);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(117, 117, 117);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primaryColor);
}

.container {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .container {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .container {
    width: 95%;
  }
}

a,
article,
button,
div,
span,
i,
b,
h1,
h2,
h3,
h4,
h5,
h6,
p,
input,
ul,
li,
select,
label,
textarea {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  font-family: myFont4;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  font-family: myFont4;
}

input {
  -webkit-tap-highlight-color: transparent;
}

::-webkit-datetime-edit-year-field:not([aria-valuenow]),
::-webkit-datetime-edit-month-field:not([aria-valuenow]),
::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
  color: transparent;
}

video::-internal-media-controls-overlay-cast-button {
  display: none;
}

textarea {
  resize: none;
  font-family: myFont4;
}

::-moz-selection {
  color: white;
  background: #1d1d1d;
}

::selection {
  color: white;
  background: #1d1d1d;
}

main {
  display: flex;
  flex-direction: column;
	overflow: hidden;
}

.evMtho {
  display: none !important;
}

.shimmer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 105;
  background: rgba(0, 0, 0, 0.486);
  display: none;
}

.appointmentFormPopup {
  position: fixed;
  width: 450px;
  height: 100vh;
  background: white;
  top: 0;
  right: -110%;
  z-index: 200;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease-in;
}
@media (max-width: 480px) {
  .appointmentFormPopup {
    width: 100%;
  }
}
.appointmentFormPopup .closeAppointmentFormPopup {
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.866);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  top: 20px;
  right: 20px;
  border-radius: 10px;
  transition: 0.3s;
}
.appointmentFormPopup .closeAppointmentFormPopup:hover {
  transition: 0.3s;
  background: var(--primaryColor);
  color: white;
}
.appointmentFormPopup .appointmentFormPopupHead {
  width: 100%;
  padding: 30px;
  background: #eee;
  background-image: url(../images/bookBg1.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .appointmentFormPopup .appointmentFormPopupHead {
    padding: 20px;
  }
}
.appointmentFormPopup .appointmentFormPopupHead h3 {
  font-size: 28px;
  margin-top: 120px;
  font-family: myFont1;
}
.appointmentFormPopup .appointmentFormPopupHead p {
  font-size: 12px;
  margin-top: 10px;
  line-height: 1.5;
  font-family: myFont2;
}
.appointmentFormPopup .appointmentFormPopupBody {
  width: 100%;
  padding: 30px;
}
@media (max-width: 480px) {
  .appointmentFormPopup .appointmentFormPopupBody {
    padding: 20px;
  }
}
.appointmentFormPopup .appointmentFormPopupBody form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 15px;
}
.appointmentFormPopup .appointmentFormPopupBody form .formGroup {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
}
.appointmentFormPopup .appointmentFormPopupBody form .formGroup:nth-of-type(1) {
  flex: 100%;
}
.appointmentFormPopup .appointmentFormPopupBody form .formGroup:nth-of-type(4) {
  flex: 100%;
}
.appointmentFormPopup .appointmentFormPopupBody form .formGroup label {
  font-size: 14px;
  color: var(--secondaryTextColor);
}
.appointmentFormPopup .appointmentFormPopupBody form .formGroup input {
  width: 100%;
  height: 40px;
  border: none;
  border-bottom: 1px solid #aaa;
  outline: none;
  font-size: 18px;
  background: white;
}
.appointmentFormPopup .appointmentFormPopupBody form .formGroup input:focus {
  border-bottom: 1px solid black;
}
.appointmentFormPopup .appointmentFormPopupBody form .formBtnArea {
  width: 100%;
  margin-top: 20px;
}
.appointmentFormPopup .appointmentFormPopupBody form .formBtnArea button {
  padding: 16px 60px;
  font-size: 20px;
  background: var(--primaryColor);
  cursor: pointer;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  transition: 0.3s ease-out;
  z-index: 0;
  color: white;
  border: none;
  outline: none;
  width: 100%;
}
.appointmentFormPopup .appointmentFormPopupBody form .formBtnArea button:hover {
  color: white;
  transition: 0.3s ease-in;
}
.appointmentFormPopup .appointmentFormPopupBody form .formBtnArea button:hover::after {
  width: 110%;
  transition: 0.3s ease-in;
  opacity: 1;
}
.appointmentFormPopup .appointmentFormPopupBody form .formBtnArea button::after {
  position: absolute;
  content: "";
  width: 30%;
  height: 100%;
  opacity: 0;
  background: var(--secondaryColor);
  z-index: -1;
  border-radius: 50px;
  transition: 0.3s ease-out;
}
.appointmentFormPopup .appointmentFormPopupFooter {
  width: 100%;
  padding: 10px 30px;
  background: rgb(188, 255, 180);
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 15px;
}
.appointmentFormPopup .appointmentFormPopupFooter a {
  text-decoration: none;
  font-size: 14px;
  color: black;
  transition: 0.3s;
}
.appointmentFormPopup .appointmentFormPopupFooter a:hover {
  transition: 0.3s;
  text-decoration: underline;
}

.appointmentFormPopupActive {
  right: 0;
  transition: 0.3s ease-out;
}

.sidemenu {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 0vh;
  overflow: hidden;
  transition: 0.3s;
}
.sidemenu::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.52);
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
.sidemenu .closeSidemenu {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
}
.sidemenu ul {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  gap: 25px;
}
.sidemenu ul li {
  list-style: none;
}
.sidemenu ul li a {
  text-decoration: none;
  color: white;
  font-size: 2.5em;
  display: flex;
  font-family: myFont4;
}
@media (max-width: 480px) {
  .sidemenu ul li a {
    font-size: 2em;
  }
}
.sidemenu ul li .sidemenuLinkActive {
  color: var(--secondaryColor);
}

.sidemenuActive {
  height: 100vh;
  transition: 0.3s;
}

nav {
  width: 100%;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  transition: 0.5s ease-in;
}
nav .navMain {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media (max-width: 768px) {
  nav .navMain {
    height: 60px;
  }
}
nav .navMain .navLogo {
  height: 70px;
  position: relative;
  z-index: 0;
  border-radius: 50px;
  overflow: hidden;
  padding: 10px 50px;
  text-decoration: none;
  background: white;
}
@media (max-width: 1800px) {
  nav .navMain .navLogo {
    width: 150px;
    padding: 15px 10px;
    height: 60px;
    width: 150px;
  }
}
@media (max-width: 768px) {
  nav .navMain .navLogo {
    height: 50px;
    padding: 0 20px;
  }
}
nav .navMain .navLogo::after {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(248, 248, 248, 0.219);
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
nav .navMain .navLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
nav .navMain .navLogo h2 {
  color: white;
  font-size: 30px;
}
nav .navMain .navLink {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 50px;
  margin-right: auto;
}
@media (max-width: 1140px) {
  nav .navMain .navLink {
    display: none;
  }
}
nav .navMain .navLink ul {
  position: relative;
  z-index: 0;
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
nav .navMain .navLink ul::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(248, 248, 248, 0.219);
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
nav .navMain .navLink ul li {
  list-style: none;
}
nav .navMain .navLink ul li a {
  text-decoration: none;
  font-size: 14px;
  color: white;
  padding: 12px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
  transition: 0.3s ease-out;
  position: relative;
  z-index: 0;
}
nav .navMain .navLink ul li a:hover {
  transition: 0.3s ease-in;
}
nav .navMain .navLink ul li a:hover::after {
  width: 100%;
  opacity: 1;
  transition: 0.3s ease-in;
}
nav .navMain .navLink ul li a::after {
  position: absolute;
  content: "";
  width: 30%;
  height: 100%;
  opacity: 0;
  background: rgba(248, 248, 248, 0.219);
  z-index: -1;
  transition: 0.3s ease-out;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
nav .navMain .navLink ul li .navLinkActive {
  background: white;
  color: black;
}
nav .navMain .navLink ul li .navLinkActive::after {
  display: none;
}
nav .navMain .navSocialLinks {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1400px) {
  nav .navMain .navSocialLinks {
    display: none;
  }
}
@media (max-width: 1024px) {
  nav .navMain .navSocialLinks {
    margin-left: auto;
  }
}
@media (max-width: 480px) {
  nav .navMain .navSocialLinks {
    display: none;
  }
}
nav .navMain .navSocialLinks ul {
  position: relative;
  z-index: 0;
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
nav .navMain .navSocialLinks ul::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(248, 248, 248, 0.219);
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
nav .navMain .navSocialLinks ul li {
  list-style: none;
}
nav .navMain .navSocialLinks ul li a {
  text-decoration: none;
  font-size: 16px;
  color: white;
  padding: 12px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  transition: 0.3s ease-out;
  z-index: 0;
}
nav .navMain .navSocialLinks ul li a:hover {
  transition: 0.3s ease-in;
}
nav .navMain .navSocialLinks ul li a:hover::after {
  width: 100%;
  opacity: 1;
  transition: 0.3s ease-in;
}
nav .navMain .navSocialLinks ul li a::after {
  position: absolute;
  content: "";
  width: 30%;
  height: 100%;
  opacity: 0;
  background: rgba(248, 248, 248, 0.219);
  z-index: -1;
  border-radius: 50px;
  transition: 0.3s ease-out;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
nav .navMain .navContact {
  margin-left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  nav .navMain .navContact {
    display: none;
  }
}
nav .navMain .navContact ul {
  position: relative;
  z-index: 0;
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
nav .navMain .navContact ul::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(248, 248, 248, 0.219);
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
nav .navMain .navContact ul li {
  list-style: none;
}
nav .navMain .navContact ul li a {
  text-decoration: none;
  font-size: 14px;
  color: white;
  padding: 12px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  transition: 0.3s ease-out;
  z-index: 0;
}
nav .navMain .navContact ul li a:hover {
  transition: 0.3s ease-in;
}
nav .navMain .navContact ul li a:hover::after {
  width: 100%;
  transition: 0.3s ease-in;
  opacity: 1;
}
nav .navMain .navContact ul li a::after {
  position: absolute;
  content: "";
  width: 30%;
  height: 100%;
  opacity: 0;
  background: rgba(248, 248, 248, 0.219);
  z-index: -1;
  border-radius: 50px;
  transition: 0.3s ease-out;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
nav .navMain .navContact ul li .navLinkActive {
  background: white;
  color: black;
}
nav .navMain .navContact ul li .navLinkActive::after {
  display: none;
}
nav .navMain .navBar {
  display: none;
  margin-left: 40px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  nav .navMain .navBar {
    display: flex;
  }
}
nav .navMain .navBar .navBarBox {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  padding: 10px;
}
nav .navMain .navBar .navBarBox::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(248, 248, 248, 0.219);
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
nav .navMain .navBar .navBarBox span {
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 5px;
}

.slideUp {
  transform: translateY(-80px);
  transition: 0.5s ease-out;
}

.slideDown {
  transform: translateY(0px);
  transition: 0.5s ease-out;
}

.navActive {
  background: var(--primaryColor);
}

#banner {
  width: 100%;
  background: url(../images/banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 0;
}
#banner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.781));
}
#banner .bannerMain {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 200px 0px 100px 0px;
}
@media (max-width: 768px) {
  #banner .bannerMain {
    padding-bottom: 80px;
  }
}
#banner .bannerMain h1 {
  color: white;
  font-size: 5em;
  font-family: myFont2;
}
@media (max-width: 1800px) {
  #banner .bannerMain h1 {
    font-size: 3.5em;
  }
}
@media (max-width: 1024px) {
  #banner .bannerMain h1 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #banner .bannerMain h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #banner .bannerMain h1 {
    font-size: 2em;
  }
}
#banner .bannerMain .bannerDetails {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 50px;
}
@media (max-width: 480px) {
  #banner .bannerMain .bannerDetails {
    margin-top: 20px;
  }
}
#banner .bannerMain .bannerDetails .bannerDetailsDesc {
  flex: 0 0 90%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  #banner .bannerMain .bannerDetails .bannerDetailsDesc {
    flex: 100%;
  }
}
#banner .bannerMain .bannerDetails .bannerDetailsDesc p {
  color: white;
  line-height: 1.7;
  font-family: myFont2;
  font-size: 18px;
}
@media (max-width: 1800px) {
  #banner .bannerMain .bannerDetails .bannerDetailsDesc p {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  #banner .bannerMain .bannerDetails .bannerDetailsDesc p {
    font-size: 14px;
  }
}
#banner .bannerMain .bannerDetails .bannerDetailsDesc .bannerDetailsDescBtnArea {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}
@media (max-width: 480px) {
  #banner .bannerMain .bannerDetails .bannerDetailsDesc .bannerDetailsDescBtnArea {
    gap: inherit;
    justify-content: space-between;
    margin-top: 30px;
  }
}
#banner .bannerMain .bannerDetails .bannerDetailsDesc .bannerDetailsDescBtnArea .bookBtn {
  padding: 16px 60px;
  font-size: 20px;
  background: white;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  transition: 0.3s ease-out;
  z-index: 0;
}
@media (max-width: 768px) {
  #banner .bannerMain .bannerDetails .bannerDetailsDesc .bannerDetailsDescBtnArea .bookBtn {
    font-size: 16px;
    padding: 14px 50px;
  }
}
@media (max-width: 480px) {
  #banner .bannerMain .bannerDetails .bannerDetailsDesc .bannerDetailsDescBtnArea .bookBtn {
    flex: 0 0 48%;
    padding: 14px;
  }
}
#banner .bannerMain .bannerDetails .bannerDetailsDesc .bannerDetailsDescBtnArea .bookBtn:hover {
  color: white;
  transition: 0.3s ease-in;
}
#banner .bannerMain .bannerDetails .bannerDetailsDesc .bannerDetailsDescBtnArea .bookBtn:hover::after {
  width: 110%;
  transition: 0.3s ease-in;
  opacity: 1;
}
#banner .bannerMain .bannerDetails .bannerDetailsDesc .bannerDetailsDescBtnArea .bookBtn::after {
  position: absolute;
  content: "";
  width: 30%;
  height: 100%;
  opacity: 0;
  background: var(--primaryColor);
  z-index: -1;
  border-radius: 50px;
  transition: 0.3s ease-out;
}
#banner .bannerMain .bannerDetails .bannerDetailsDesc .bannerDetailsDescBtnArea a {
  text-decoration: none;
  color: white;
  padding: 10px 40px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  transition: 0.3s ease-out;
  z-index: 0;
}
@media (max-width: 768px) {
  #banner .bannerMain .bannerDetails .bannerDetailsDesc .bannerDetailsDescBtnArea a {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  #banner .bannerMain .bannerDetails .bannerDetailsDesc .bannerDetailsDescBtnArea a {
    flex: 0 0 48%;
    padding: 10px;
  }
}
#banner .bannerMain .bannerDetails .bannerDetailsDesc .bannerDetailsDescBtnArea a:hover {
  transition: 0.3s ease-in;
}
#banner .bannerMain .bannerDetails .bannerDetailsDesc .bannerDetailsDescBtnArea a:hover::after {
  width: 100%;
  transition: 0.3s ease-in;
  opacity: 1;
}
#banner .bannerMain .bannerDetails .bannerDetailsDesc .bannerDetailsDescBtnArea a::after {
  position: absolute;
  content: "";
  width: 30%;
  height: 100%;
  opacity: 0;
  background: rgba(248, 248, 248, 0.219);
  z-index: -1;
  border-radius: 50px;
  transition: 0.3s ease-out;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
#banner .bannerMain .bannerDetails .bannerDetailsDesc .bannerDetailsDescBtnArea a::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(248, 248, 248, 0.219);
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
#banner .bannerMain .bannerDetails .bannerDetailsDesc .bannerDetailsDescBtnArea a i {
  margin-right: 15px;
}
#banner .bannerMain .bannerDetails .bannerDetailsThumbnail {
  flex: 0 0 45%;
  display: none;
}
#banner .bannerMain .bannerDetails .bannerDetailsThumbnail video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}




#aboutBanner {
  width: 100%;
  padding: 200px 0px 100px 0px;
  background: #890000;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  #aboutBanner {
    padding: 150px 0px 80px 0px;
  }
}
#aboutBanner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../images/el1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.2;
}
#aboutBanner .aboutBannerMain {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#aboutBanner .aboutBannerMain h1 {
  color: white;
  font-size: 5.5em;
  font-family: myFont2;
  text-align: center;
}
@media (max-width: 1800px) {
  #aboutBanner .aboutBannerMain h1 {
    font-size: 4em;
  }
}
@media (max-width: 1024px) {
  #aboutBanner .aboutBannerMain h1 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #aboutBanner .aboutBannerMain h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #aboutBanner .aboutBannerMain h1 {
    font-size: 2em;
  }
}
#aboutBanner .aboutBannerMain p {
  font-size: 25px;
  margin-top: 100px;
  font-family: myFont2;
  color: white;
  line-height: 1.7;
  text-align: center;
  width: 70%;
  opacity: 0.7;
}
@media (max-width: 1800px) {
  #aboutBanner .aboutBannerMain p {
    width: 90%;
  }
}
@media (max-width: 1024px) {
  #aboutBanner .aboutBannerMain p {
    width: 100%;
    font-size: 22px;
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  #aboutBanner .aboutBannerMain p {
    font-size: 18px;
  }
}



#treatmentBanner {
  width: 100%;
  padding: 200px 0px 100px 0px;
  background: var(--primaryColor);
  background: url(../images/treatmentBanner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  #treatmentBanner {
    padding: 150px 0px 80px 0px;
  }
}
#treatmentBanner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgba(5, 48, 0, 0.473);
}
#treatmentBanner .treatmentBannerMain {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#treatmentBanner .treatmentBannerMain h1 {
  color: white;
  font-size: 5.5em;
  font-family: myFont2;
  text-align: center;
}
@media (max-width: 1800px) {
  #treatmentBanner .treatmentBannerMain h1 {
    font-size: 4em;
  }
}
@media (max-width: 1024px) {
  #treatmentBanner .treatmentBannerMain h1 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #treatmentBanner .treatmentBannerMain h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #treatmentBanner .treatmentBannerMain h1 {
    font-size: 2em;
  }
}




#innerTreatmentBanner {
  width: 100%;
  padding: 200px 0px 100px 0px;
  background: var(--primaryColor);
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  #innerTreatmentBanner {
    padding: 150px 0px 80px 0px;
  }
}
#innerTreatmentBanner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgba(5, 48, 0, 0.473);
}
#innerTreatmentBanner .innerTreatmentBannerImg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
#innerTreatmentBanner .innerTreatmentBannerImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#innerTreatmentBanner .innerTreatmentBannerMain {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#innerTreatmentBanner .innerTreatmentBannerMain h1 {
  color: white;
  font-size: 5.5em;
  font-family: myFont2;
}
@media (max-width: 1800px) {
  #innerTreatmentBanner .innerTreatmentBannerMain h1 {
    font-size: 4em;
  }
}
@media (max-width: 1024px) {
  #innerTreatmentBanner .innerTreatmentBannerMain h1 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #innerTreatmentBanner .innerTreatmentBannerMain h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #innerTreatmentBanner .innerTreatmentBannerMain h1 {
    font-size: 2em;
  }
}
#innerTreatmentBanner .innerTreatmentBannerMain .innerTreatmentBookBtn {
  padding: 14px 40px;
  font-size: 16px;
  background: white;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  transition: 0.3s ease-out;
  z-index: 0;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  #innerTreatmentBanner .innerTreatmentBannerMain .innerTreatmentBookBtn {
    padding: 12px 30px;
    font-size: 14px;
  }
}
#innerTreatmentBanner .innerTreatmentBannerMain .innerTreatmentBookBtn:hover {
  color: white;
  transition: 0.3s ease-in;
}
#innerTreatmentBanner .innerTreatmentBannerMain .innerTreatmentBookBtn:hover::after {
  width: 110%;
  transition: 0.3s ease-in;
  opacity: 1;
}
#innerTreatmentBanner .innerTreatmentBannerMain .innerTreatmentBookBtn::after {
  position: absolute;
  content: "";
  width: 30%;
  height: 100%;
  opacity: 0;
  background: var(--primaryColor);
  z-index: -1;
  border-radius: 50px;
  transition: 0.3s ease-out;
}




#galleryBanner {
  width: 100%;
  padding: 200px 0px 100px 0px;
  background: black;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  #galleryBanner {
    padding: 150px 0px 80px 0px;
  }
}
#galleryBanner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../images/el3.webp);
  background-size: 500px;
  background-position: center;
  opacity: 0.2;
}
#galleryBanner .galleryBannerMain {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#galleryBanner .galleryBannerMain h1 {
  color: white;
  font-size: 5.5em;
  font-family: myFont2;
  text-align: center;
}
@media (max-width: 1800px) {
  #galleryBanner .galleryBannerMain h1 {
    font-size: 4em;
  }
}
@media (max-width: 1024px) {
  #galleryBanner .galleryBannerMain h1 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #galleryBanner .galleryBannerMain h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #galleryBanner .galleryBannerMain h1 {
    font-size: 2em;
  }
}



#blogBanner {
  width: 100%;
  padding: 200px 0px 100px 0px;
  background: var(--primaryColor);
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  #blogBanner {
    padding: 150px 0px 80px 0px;
  }
}
#blogBanner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../images/el2.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.2;
  transform: rotate(180deg);
}
#blogBanner .blogBannerMain {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#blogBanner .blogBannerMain h1 {
  color: white;
  font-size: 5.5em;
  font-family: myFont2;
}
@media (max-width: 1800px) {
  #blogBanner .blogBannerMain h1 {
    font-size: 4em;
  }
}
@media (max-width: 1024px) {
  #blogBanner .blogBannerMain h1 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #blogBanner .blogBannerMain h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #blogBanner .blogBannerMain h1 {
    font-size: 2em;
  }
}




#innerBlogStrip {
  width: 100%;
  height: 300px;
  background: var(--primaryColor);
  background-image: url(../images/bookBg1.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
#innerBlogStrip::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgba(5, 48, 0, 0.473);
}