:root {
  --mahlara-font: "Roboto", sans-serif;
  --mahlara-heading-font: "Montserrat", sans-serif;
  --mahlara-text: #2d2d2d;
  --mahlara-text-rgb: 99, 99, 99;
  --mahlara-base: #073950;
  --mahlara-base-rgb: 0, 102, 84;
  --mahlara-primary: #0A73A8;
  --mahlara-primary-rgb: 245, 200, 53;
  --mahlara-gray: #ffffff;
  --mahlara-gray-rgb: 146, 145, 143;
  --mahlara-white: #ffffff;
  --mahlara-white-rgb: 255, 255, 255;
  --mahlara-white2: #f0f2f8;
  --mahlara-white2-rgb: 240, 242, 248;
  --mahlara-white3: #DFEFF9;
  --mahlara-white3-rgb: 236, 245, 244;
  --mahlara-white4: #e2edec;
  --mahlara-white4-rgb: 226, 237, 236;
  --mahlara-black: #000000;
  --mahlara-black-rgb: 0, 0, 0;
  --mahlara-black2: #222222;
  --mahlara-black2-rgb: 34, 34, 34;
  --mahlara-black3: #333333;
  --mahlara-black3-rgb: 51, 51, 51;
  --mahlara-black4: #ffffff;
  --mahlara-black4-rgb: 19, 17, 17;
  --mahlara-black5: #444444;
  --mahlara-black5-rgb: 68, 68, 68;
  --mahlara-border-color: #dddddd;
  --mahlara-border-color-rgb: 221, 221, 221;
  --section-space: 120px;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-120 {
  margin-top: 120px;
}

.mt--60 {
  margin-top: -60px;
}

.mt--120 {
  margin-top: -120px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb--60 {
  margin-bottom: -60px;
}

.mb--120 {
  margin-bottom: -120px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-142 {
  padding-top: 142px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--mahlara-font, "DM Sans", sans-serif);
  font-weight: 400;
  color: var(--mahlara-text, #636363);
  font-size: 16px;
  line-height: 1.625;
  overflow-x: hidden;
}

/* .container {
  text-align: left !important;
} */

body.locked {
  overflow: hidden;
}

a {
  color: var(--mahlara-base, #006654);
  transition: all 400ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--mahlara-heading-font, "Sora", sans-serif);
  color: var(--mahlara-black, #000000);
}

@media (max-width: 767px) {

  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

@media (max-width: 767px) {
  p br {
    display: none;
  }
}

.mahlara-text {
  color: var(--mahlara-text, #636363);
}

.background-base {
  background-color: var(--mahlara-base, #006654);
}

.background-white {
  background-color: var(--mahlara-white, #ffffff);
}

.background-white2 {
  background-color: var(--mahlara-white2, #f0f2f8);
}

.background-white3 {
  background-color: var(--mahlara-white3, #ecf5f4);
}

.background-black {
  background-color: var(--mahlara-black, #000000);
}

.background-black-2 {
  background-color: var(--mahlara-black2, #222222);
}

.background-black-3 {
  background-color: var(--mahlara-black3, #333333);
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.section-space {
  padding-top: var(--section-space, 120px);
  padding-bottom: var(--section-space, 120px);
}

@media (max-width: 767px) {
  .section-space {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .section-space {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.section-space-t {
  padding-top: var(--section-space, 120px);
}

@media (max-width: 767px) {
  .section-space-t {
    padding-top: 100px;
  }
}

@media (max-width: 575px) {
  .section-space-t {
    padding-top: 80px;
  }
}

.section-space-b {
  padding-bottom: var(--section-space, 120px);
}

@media (max-width: 767px) {
  .section-space-b {
    padding-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .section-space-b {
    padding-bottom: 80px;
  }
}


.container {
  padding-left: 15px;
  padding-right: 15px;
}
.container-fluid {
    padding-left: 0px;
    padding-right: 0px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-10 {
  --bs-gutter-y: 10px;
}

.gutter-y-15 {
  --bs-gutter-y: 15px;
}

.gutter-y-20 {
  --bs-gutter-y: 20px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gutter-y-40 {
  --bs-gutter-y: 40px;
}

.gutter-y-50 {
  --bs-gutter-y: 50px;
}

.gutter-y-60 {
  --bs-gutter-y: 60px;
}

.logo-retina img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* section title */
.sec-title {
  margin-bottom: 11px;
}

.sec-title--center {
  margin-bottom: 38px;
  text-align: center;
}

.sec-title--center .sec-title__top {
  justify-content: center;
  padding-left: 44px;
  clip-path: polygon(15% 0, 85% 0, 100% 50%, 85% 100%, 15% 100%, 0 50%);
}

.sec-title__top {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 17px;
  padding: 13px 37px 11px 30px;
  background-color: var(--tagline-bg);
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
}

@media (max-width: 767px) {
  .sec-title__top {
    padding-left: 25px;
  }
}

.sec-title__shape {
  max-width: 100%;
  height: auto;
  position: relative;
  top: 1px;
}

@media (max-width: 767px) {
  .sec-title__shape {
    top: 0px;
  }
}

.sec-title__tagline {
  margin: 0px;
  font-size: 18px;
  color: var(--mahlara-primary, #f5c835);
  font-weight: 600;
  line-height: 1.277;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .sec-title__tagline {
    font-size: 16px;
  }
}

.sec-title__title {
  margin: 0px;
  font-size: 24px;
  font-weight: 700;
  color: var(--title-color);
  line-height: 1.314;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 575px) {
  .sec-title__title {
    font-size: 30px;
  }
}

/* button */
.mahlara-btn {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  padding: 7px 8px 7px 32px;
  background-color: var(--mahlara-primary, #f5c835);
  z-index: 1;
  overflow: hidden;
  border-radius: 0px 100px 100px 0px;
  transition: 500ms;
}



/* news button */
.mahlara-btn-news {
  display: inline-flex;
  /* gap: 20px; */
  align-items: center;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  /* padding: 7px 8px 7px 32px; */
  /* background-color: var(--mahlara-primary, #f5c835); */
  z-index: 1;
  overflow: hidden;
  border-radius: 0px 100px 100px 0px;
  transition: 500ms;
}

.mahlara-btn-news::before {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  /* background-color: var(--mahlara-base, #006654); */
  transition: all 500ms ease;
}

.mahlara-btn-news::after {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
  /* background-color: var(--mahlara-base, #006654); */
  transition: all 500ms ease;
}

.mahlara-btn-news:hover::after {
  width: 100%;
  left: 0px;
}

.mahlara-btn__text-news {
  display: inline-block;
  font-size: 16px;
  color: #073950 !important;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
  transition: all 500ms ease;
  padding: 0 14px;
}

a.mahlara-btn-news:hover {
  text-decoration: underline;
}


.mahlara-btn--white .mahlara-btn__text {
  display: inline-block;
  font-size: 16px;
  color: #000000 !important;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
  transition: all 500ms ease;
}


@media (max-width: 390px) {
  .mahlara-btn {
    padding-left: 25px;
  }
}

.mahlara-btn::before {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: var(--mahlara-base, #006654);
  transition: all 500ms ease;
}

.mahlara-btn::after {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
  background-color: var(--mahlara-base, #006654);
  transition: all 500ms ease;
}

.mahlara-btn:hover::after {
  width: 100%;
  left: 0px;
}

.mahlara-btn__text {
  display: inline-block;
  font-size: 16px;
  color: #ffffff !important;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
  transition: all 500ms ease;
}

.mahlara-btn--white .mahlara-btn__text {
  display: inline-block;
  font-size: 16px;
  color: #000000 !important;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
  transition: all 500ms ease;
}

.mahlara-btn__icon-box {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--mahlara-base, #006654);
  transition: all 500ms ease;
}

.mahlara-btn__icon {
  width: 12px;
  height: 12px;
  position: relative;
  overflow: hidden;
  font-size: 12px;
  color: var(--mahlara-white, #ffffff);
  transition: all 500ms ease;
}

.mahlara-btn__icon i {
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.mahlara-btn__icon i:last-child {
  left: -15px;
  bottom: -15px;
  transform: translate(0, 0);
}

.mahlara-btn__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.mahlara-btn:hover .mahlara-btn__text {
  color: var(--mahlara-white, #ffffff) !important;
}


.mahlara-btn:hover .mahlara-btn__icon-box {
  background-color: var(--mahlara-primary, #f5c835);
}

.mahlara-btn:hover .mahlara-btn__icon {
  color: var(--mahlara-base, #006654);
}

.mahlara-btn:hover .mahlara-btn__icon i {
  transform: translate(15px, -15px);
  transition: all 0.5s ease-out;
}

.mahlara-btn:hover .mahlara-btn__icon i:last-child {
  visibility: visible;
}

.mahlara-btn--base {
  background-color: var(--mahlara-base, #006654);
}

.mahlara-btn--base::before {
  background-color: var(--mahlara-primary, #f5c835);
}

.mahlara-btn--base::after {
  background-color: var(--mahlara-primary, #f5c835);
}

.mahlara-btn--base .mahlara-btn__text {
  color: var(--mahlara-white, #ffffff);
}

.mahlara-btn--base:hover .mahlara-btn__text {
  color: var(--mahlara-black4, #131111);
}

.mahlara-btn--base .mahlara-btn__icon {
  color: var(--mahlara-base, #006654);
}

.mahlara-btn--base:hover .mahlara-btn__icon {
  color: var(--mahlara-white, #ffffff);
}

.mahlara-btn--base .mahlara-btn__icon-box {
  background-color: var(--mahlara-primary, #f5c835);
}

.mahlara-btn--base:hover .mahlara-btn__icon-box {
  background-color: var(--mahlara-base, #006654);
}

.mahlara-btn--white {
  background-color: var(--mahlara-white, #ffffff);
}

.mahlara-btn--white::before {
  background-color: var(--mahlara-primary, #f5c835);
}

.mahlara-btn--white::after {
  background-color: var(--mahlara-primary, #f5c835);
}

.mahlara-btn--white .mahlara-btn__text {
  color: var(--mahlara-black4, #131111);
}

.mahlara-btn--white:hover .mahlara-btn__text {
  color: var(--mahlara-black4, #131111);
}

.mahlara-btn--white .mahlara-btn__icon {
  color: var(--mahlara-base, #006654);
}

.mahlara-btn--white:hover .mahlara-btn__icon {
  color: var(--mahlara-white, #ffffff);
}

.mahlara-btn--white .mahlara-btn__icon-box {
  background-color: var(--mahlara-primary, #f5c835);
}

.mahlara-btn--white:hover .mahlara-btn__icon-box {
  background-color: var(--mahlara-base, #006654);
}

/* social links */
.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--mahlara-white, #ffffff);
  overflow: hidden;
  transition: all 500ms ease;
}

.social-links a:hover {
  border-color: var(--mahlara-primary, #f5c835);
  background-color: var(--mahlara-primary, #f5c835);
}

.social-links__icon {
  display: inline-flex;
  font-size: 16px;
  color: var(--mahlara-white, #ffffff);
  transition: all 500ms ease;
}

.social-links__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.social-links a:hover .social-links__icon {
  color: #ffffff;
  animation: slideTop 500ms;
}

/* ratings */
.mahlara-ratings {
  display: flex;
  align-items: center;
  gap: 5px;
}

.mahlara-ratings__icon {
  display: inline-flex;
  font-size: 14px;
  color: var(--mahlara-base, #006654);
  transition: all 500ms ease;
}

.mahlara-ratings__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* post pagination */
.post-pagination {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 991px) {
  .post-pagination {
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .post-pagination {
    gap: 15px;
  }
}

.post-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  font-size: 16px;
  color: var(--mahlara-base, #006654);
  text-align: center;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1;
  background-color: var(--mahlara-white2, #f0f2f8);
  border-radius: 5px;
  overflow: hidden;
  transition: all 400ms ease;
}

@media (max-width: 575px) {
  .post-pagination__btn {
    width: 45px;
    height: 45px;
  }
}

.post-pagination__btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.post-pagination__btn:hover {
  color: var(--mahlara-white, #ffffff);
  background-color: var(--mahlara-base, #006654);
}

.post-pagination__btn.active {
  color: var(--mahlara-white, #ffffff);
  background-color: var(--mahlara-base, #006654);
}

.post-pagination__icon {
  display: inline-flex;
  align-items: center;
  font-size: 24px;
  color: var(--mahlara-base, #006654);
  transition: all 400ms ease;
}

@media (max-width: 575px) {
  .post-pagination__icon {
    font-size: 22px;
  }
}

.post-pagination__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* active user */
.active-user {
  display: inline-flex;
  gap: 30px;
  align-items: center;
  padding: 11px 20px 11px 11px;
  border-radius: 100px;
  background-color: var(--mahlara-white, #ffffff);
  border: 1px solid var(--mahlara-border-color, #dddddd);
}

.active-user__image {
  display: inline-flex;
  align-items: center;
}

.active-user img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--mahlara-white, #ffffff);
}

.active-user img:not(:first-child) {
  margin-left: -12px;
}

.active-user__info {
  position: relative;
}

.active-user__info::before,
.active-user__info::after {
  content: "";
  width: 2px;
  height: 50%;
  position: absolute;
  top: 0px;
  left: -12px;
  border-radius: 50px;
  background-color: var(--mahlara-primary, #f5c835);
}

.active-user__info::after {
  top: auto;
  bottom: 0px;
  background-color: var(--mahlara-base, #006654);
}

.active-user__count {
  margin: 0px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.active-user__text {
  margin-bottom: -5px;
  color: var(--mahlara-black, #000000);
}

/* owl slider buton, dots customize */
.mahlara-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}

.mahlara-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.mahlara-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.mahlara-owl__carousel--basic-nav.owl-carousel .owl-nav {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.mahlara-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--mahlara-black2, #222222);
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid var(--mahlara-black2, #222222);
  transition: all 500ms ease;
}

@media (max-width: 767px) {
  .mahlara-owl__carousel--basic-nav.owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }
}

.mahlara-owl__carousel--basic-nav.owl-carousel .owl-nav button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.mahlara-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  color: var(--mahlara-white, #ffffff);
  border-color: var(--mahlara-base, #006654);
  background-color: var(--mahlara-base, #006654);
}

.mahlara-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
  border: none;
  outline: none;
  color: inherit;
}

.mahlara-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.mahlara-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
  width: 16px;
  height: 16px;
  outline: 0;
  position: relative;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--mahlara-base, #006654);
  transition: all 500ms ease;
}

.mahlara-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot::after {
  content: "";
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  border-radius: inherit;
  transform: translate(-50%, -50%);
  background-color: var(--mahlara-primary, #f5c835);
  transition: all 500ms ease;
}

.mahlara-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  background-color: transparent;
}

.mahlara-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  border-color: var(--mahlara-primary, #f5c835);
  background-color: var(--mahlara-primary, #f5c835);
}

.mahlara-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active::after {
  opacity: 1;
}

.mahlara-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
  background-color: transparent;
}

.mahlara-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled+.owl-dots {
  margin-top: 50px;
}

.mahlara-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled,
.mahlara-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
  display: none;
}

.custom-nav {
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  position: relative;
  bottom: 10px;
}

@media (max-width: 991px) {
  .custom-nav {
    bottom: 0px;
  }
}

.custom-nav button {
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--mahlara-black2, #222222);
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid var(--mahlara-black2, #222222);
  transition: all 500ms ease;
}

@media (max-width: 767px) {
  .custom-nav button {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }
}

.custom-nav button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.custom-nav button:hover {
  color: var(--mahlara-white, #ffffff);
  border-color: var(--mahlara-base, #006654);
  background-color: var(--mahlara-base, #006654);
}

.custom-nav button span {
  border: none;
  outline: none;
  color: inherit;
}

.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
}

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: var(--mahlara-base, #006654);
}

.hammer {
  width: 22px;
  height: 22px;
  fill: var(--mahlara-base, #006654);
}

.hammer path:nth-child(1),
.hammer path:nth-child(2) {
  animation: hammerBounce 3s ease-in-out infinite;
}

.hammer path:nth-child(3),
.hammer path:nth-child(4),
.hammer path:nth-child(5),
.hammer path:nth-child(6) {
  transform-origin: center;
  animation: hammerStrike 3s ease-in-out infinite;
}

.ui-datepicker .ui-datepicker-header {
  background-image: none;
  background-color: var(--mahlara-black, #000000);
  color: var(--mahlara-white, #ffffff);
  font-family: var(--mahlara-font, "DM Sans", sans-serif);
}

.ui-datepicker-calendar th span {
  font-family: var(--mahlara-font, "DM Sans", sans-serif);
}

.ui-datepicker-calendar td {
  background-color: var(--mahlara-text, #636363);
  background-image: none;
  font-family: var(--mahlara-font, "DM Sans", sans-serif);
  color: var(--mahlara-text, #636363);
}

.ui-datepicker-calendar td a {
  border-color: var(--mahlara-border-color, #dddddd);
  background-color: var(--mahlara-text, #636363);
  background-image: none;
}

.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
  border-color: var(--mahlara-border-color, #dddddd);
  background-color: var(--mahlara-text, #636363);
  background-image: none;
  color: var(--mahlara-text, #636363);
  padding: 10px 5px;
  text-align: center;
  line-height: 1em;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
  color: var(--mahlara-white, #ffffff);
  background-color: var(--mahlara-base, #006654);
}

.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
  color: var(--mahlara-white, #ffffff);
  background-color: var(--mahlara-base, #006654);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--mahlara-white, #ffffff);
  color: var(--mahlara-black, #000000);
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--mahlara-base, #006654);
  color: var(--mahlara-white, #ffffff);
  top: 2px;
}

.ui-datepicker .ui-datepicker-prev:hover {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next:hover {
  right: 2px;
}

/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-right: 8px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--mahlara-base, #006654);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--mahlara-black, #000000);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 130px;
  right: -42px;
}

/* preloader */
.preloader {
  position: fixed;
  background-color: var(--mahlara-black4, #131111);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
}

.preloader__image img {
  width: 32%;
  height: auto;
  margin: auto;
  position: relative;
  text-align: center;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--mahlara-base, #006654);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--mahlara-base, #006654);
  opacity: 0.3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--mahlara-base, #006654);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
  0% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
  }

  30% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }

  50% {
    -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
    transform: translateY(50px) translateX(100px) rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  80% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }

  100% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(-10px) translateX(-10px) rotate(-5deg);
    transform: translateY(-10px) translateX(-10px) rotate(-5deg);
  }

  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}

@keyframes shapeMover {

  0%,
  100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }

  50% {
    transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}

@keyframes banner3Shake {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }

  30% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  60% {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
}

@keyframes squareMover {

  0%,
  100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }

  20%,
  60% {
    -webkit-transform: translate(20px, 40px) rotate(180deg);
    transform: translate(20px, 40px) rotate(180deg);
  }

  30%,
  80% {
    -webkit-transform: translate(40px, 60px) rotate(0deg);
    transform: translate(40px, 60px) rotate(0deg);
  }
}

@keyframes treeMove {

  0%,
  100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }

  25%,
  75% {
    -webkit-transform: rotate(5deg) translateX(15px);
    transform: rotate(5deg) translateX(15px);
  }

  50% {
    -webkit-transform: rotate(10deg) translateX(30px);
    transform: rotate(10deg) translateX(30px);
  }
}

@keyframes leafMove {

  0%,
  100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }

  25%,
  75% {
    transform: rotate(-2deg) translateX(5px);
  }

  50% {
    transform: rotate(-4deg) translateX(10px);
  }
}

@keyframes messageMove {

  0%,
  100% {
    transform: translateX(0);
  }

  25%,
  75% {
    transform: translateX(5px);
  }

  50% {
    transform: translateX(10px);
  }
}

@keyframes flowerRotate {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25%,
  75% {
    transform: rotate(5deg);
  }

  50% {
    transform: rotate(10deg);
  }
}

@keyframes zump {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  50% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes zumpBottom {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  50% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(1.25);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.25);
  }
}

@keyframes zoomIn2 {
  0% {
    transform: scale(0.5) rotate(0deg);
  }

  100% {
    transform: scale(1.25) rotate(45deg);
  }
}

@keyframes zoomIn3 {
  0% {
    transform: scale(0.7) rotate(0deg);
  }

  100% {
    transform: scale(1) rotate(45deg);
  }
}

@keyframes zoomIn4 {
  0% {
    transform: scale(0.5) rotate(0deg);
  }

  100% {
    transform: scale(1) rotate(45deg);
  }
}

@keyframes zoomOut {
  0% {
    transform: scale(0.7);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.7);
  }
}

@keyframes zoom-out-in {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.6);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes moveX {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  50% {
    -webkit-transform: translate3d(15px, 0, 0);
    transform: translate3d(15px, 0, 0);
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes moveX2 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  50% {
    -webkit-transform: translate3d(-15px, 0, 0);
    transform: translate3d(-15px, 0, 0);
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(359deg);
  }
}

@keyframes rotateReverse {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-359deg);
  }
}

@keyframes shapeRotate {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(90deg);
  }

  100% {
    transform: rotate(0);
  }
}

@keyframes wobble-horizontal-hover {
  16.65% {
    transform: translateX(5px);
  }

  33.3% {
    transform: translateX(-3px);
  }

  49.95% {
    transform: translateX(4px);
  }

  66.6% {
    transform: translateX(-2px);
  }

  83.25% {
    transform: translateX(1px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
  }

  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 50px) rotate3d(0, 1, 0, -190deg);
  }

  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 50px) rotate3d(0, 1, 0, -170deg);
  }

  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  }

  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  }
}

@keyframes smartMove {
  0% {
    width: 0;
  }

  15% {
    width: 100%;
  }

  85% {
    opacity: 1;
  }

  90% {
    width: 100%;
    opacity: 0;
  }

  100% {
    width: 0;
    opacity: 0;
  }
}

@keyframes smartMove2 {
  0% {
    width: 0;
  }

  15% {
    width: 126px;
  }

  85% {
    opacity: 1;
  }

  90% {
    width: 126px;
    opacity: 0;
  }

  100% {
    width: 0;
    opacity: 0;
  }
}

@keyframes smartMove3 {
  0% {
    width: 0;
  }

  15% {
    width: 173px;
  }

  85% {
    opacity: 1;
  }

  90% {
    width: 173px;
    opacity: 0;
  }

  100% {
    width: 0;
    opacity: 0;
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }

  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}

@keyframes rectMove {

  0%,
  50%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25%,
  75% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@keyframes moveBackground {
  0% {
    background-position: -1920px 100%;
  }

  100% {
    background-position: 0 100%;
  }
}

@keyframes moveBackgroundY {
  0% {
    background-position: 100% 1920px;
  }

  100% {
    background-position: 100% 0;
  }
}

@keyframes slideTop {
  49% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes slideRight {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes slideLeft {
  49% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes animatedCircle {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }

  20% {
    transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }

  40% {
    transform: translate(141px, 72px) rotate(72deg) scale(1);
  }

  60% {
    transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }

  80% {
    transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }

  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}

@keyframes vibrant {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(-2px, 2px);
  }

  40% {
    transform: translate(-2px, -2px);
  }

  60% {
    transform: translate(2px, 2px);
  }

  80% {
    transform: translate(2px, -2px);
  }

  100% {
    transform: translate(0);
  }
}

@keyframes vibrant2 {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(2px, -2px);
  }

  40% {
    transform: translate(-2px, -2px);
  }

  60% {
    transform: translate(2px, 2px);
  }

  80% {
    transform: translate(-2px, 2px);
  }

  100% {
    transform: translate(0);
  }
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar {
  position: relative;
  z-index: 999;
  padding: 10.5px 0px;
  background-color: var(--mahlara-white, #ffffff);
  border-bottom: 1px solid var(--mahlara-border-color, #dddddd);
}

@media (max-width: 991px) {
  .topbar {
    padding: 17px 0px;
  }
}

@media (max-width: 767px) {
  .topbar {
    display: none;
  }
}

.topbar::before,
.topbar::after {
  content: "";
  width: 673px;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: RGBA(var(--mahlara-base-rgb, 0, 102, 84), 0.3);
  clip-path: polygon(100% 0%, 93% 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
}

@media (max-width: 991px) {

  .topbar::before,
  .topbar::after {
    width: 100%;
    clip-path: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {

  .topbar::before,
  .topbar::after {
    width: 540px;
  }
}

@media (min-width: 1200px) and (max-width: 1299px) {

  .topbar::before,
  .topbar::after {
    width: 600px;
  }
}

.topbar::after {
  width: 663px;
  background-color: var(--mahlara-base, #006654);
}

@media (max-width: 991px) {
  .topbar::after {
    width: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .topbar::after {
    width: 530px;
  }
}

@media (min-width: 1200px) and (max-width: 1299px) {
  .topbar::after {
    width: 590px;
  }
}

.topbar .container {
  max-width: 1299px;
  position: relative;
  z-index: 1;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
}

.topbar__info {
  margin: 0px;
  display: flex;
  align-items: center;
  gap: 18px;
}

@media (max-width: 991px) {
  .topbar__info {
    width: 100%;
    justify-content: center;
  }
}

.topbar__info li {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  font-size: 14px;
  color: var(--mahlara-white, #ffffff);
  line-height: 1.285;
}

.topbar__info li a {
  color: #073950;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.topbar__info li a:hover {
  background-size: 100% 1px;
}

.topbar__info li a:hover {
  color: var(--mahlara-primary, #f5c835);
}

.topbar__info__icon {
  display: inline-flex;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--mahlara-primary, #f5c835);
}

.topbar__info__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 23px;
}

@media (max-width: 991px) {
  .topbar__right {
    display: none;
  }
}

.topbar__pages {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0px;
}

.topbar__pages li {
  position: relative;
  font-size: 14px;
  color: var(--mahlara-text, #636363);
  line-height: 1.285;
  text-transform: capitalize;
}

.topbar__pages li:not(:last-of-type)::after {
  content: "";
  width: 1px;
  height: 18px;
  margin: auto 0px;
  position: absolute;
  top: 0px;
  right: -10px;
  bottom: 0px;
  background-color: var(--mahlara-border-color, #dddddd);
}

.topbar__pages a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.topbar__pages a:hover {
  background-size: 100% 1px;
}

.topbar__pages a:hover {
  color: var(--mahlara-base, #006654);
}

.topbar .social-links a {
  width: 28px;
  height: 28px;
  border-color: var(--mahlara-gray, #92918f);
}

.topbar .social-links a:hover {
  border-color: #ffffff;
}

.topbar .social-links__icon {
  font-size: 12px;
  color: var(--mahlara-gray, #92918f);
}

.topbar--two {
  padding: 0px;
  border: none;
  overflow: hidden;
  background-color: var(--mahlara-white3, #ecf5f4);
}

.topbar--two::before,
.topbar--two::after {
  display: none;
}

.topbar--two .container {
  max-width: 1430px;
}

@media (min-width: 1800px) {
  .topbar--two .container {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 176px;
  }
}

.topbar--two .topbar__note {
  display: flex;
  gap: 16px;
  align-items: center;
}

.topbar--two .topbar__note__title {
  flex-shrink: 0;
  margin: 0px;
  position: relative;
  padding: 7px 7.5px;
  font-size: 14px;
  color: var(--mahlara-black4, #131111);
  line-height: 1.25;
  font-weight: 500;
  text-transform: uppercase;
  writing-mode: sideways-lr;
  background-color: var(--mahlara-primary, #f5c835);
}

.topbar--two .topbar__note__title::after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent var(--mahlara-base, #006654);
}

.topbar--two .topbar__note__text {
  margin: 0px;
  font-size: 13px;
  color: #073950;
}

.topbar--two .topbar__right {
  display: flex;
  gap: 38px;
}

@media (max-width: 1199px) {
  .topbar--two .topbar__info {
    display: none;
  }
}

.topbar--two .topbar__info li {
  color: var(--mahlara-text, #636363);
}

.topbar--two .topbar__social {
  display: flex;
  gap: 15px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.topbar--two .topbar__social::after {
  content: "";
  width: 120% !important;
  height: calc(100% + 24px);
  position: absolute;
  top: 50%;
  left: -19px;
  z-index: -1;
  transform: translateY(-50%);
  background-color: var(--mahlara-base, #006654);
}

@media (max-width: 1799px) {
  .topbar--two .topbar__social::after {
    width: calc(100% + 235px);
  }
}

.topbar--two .topbar__social__title {
  margin: 0px;
  font-size: 14px;
  color: var(--mahlara-white, #ffffff);
  line-height: 1.25;
  text-transform: capitalize;
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.header {
  width: 100%;
  max-width: 1400px;
  padding: 0px 15px;
  margin: 0px auto;
  position: relative;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 999;
}

.header::before {
  content: "";
  width: 5px;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 10px;
  background-color: var(--mahlara-primary, #f5c835);
}

.header::after {
  content: "";
  width: 1px;
  height: 85px;
  position: absolute;
  top: 0px;
  right: 14px;
  background-color: var(--mahlara-border-color, #dddddd);
}

@media (max-width: 991px) {
  .header::after {
    display: none;
  }
}

.header--two {
  max-width: 100%;
  padding: 0px;
  margin: 0px;
  position: relative;
}

.header--two::before,
.header--two::after {
  display: none;
}

.main-header {
  position: relative;
  z-index: 999;
  background-color: var(--mahlara-white, #ffffff);
}

.main-header>.container {
  max-width: 1356px;
}

.main-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .main-header__inner {
    padding: 20px 0;
  }
}

@media (max-width: 412px) {
  .main-header__logo {
    margin-right: 20px;
  }
}

.main-header__logo a {
  display: inline-block;
}

.main-header__logo img {
  max-width: 100%;
  height: auto;
  width: 100%;
}

.main-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.main-header__nav {
  margin-right: 36px;
}

@media (max-width: 1199px) {
  .main-header__nav {
    display: none;
  }
}

.main-header__search {
  display: inline-flex;
  position: relative;
  font-size: 26px;
  color: var(--mahlara-black4, #131111);
  transition: all 500ms ease;
}

@media (max-width: 1199px) {
  .main-header__search {
    margin-left: 50px;
  }
}

@media (max-width: 430px) {
  .main-header__search {
    margin-left: 40px;
  }
}

.main-header__search:hover {
  color: var(--mahlara-primary, #f5c835);
}

.main-header__search::before {
  content: "";
  display: none;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  background-color: var(--mahlara-border-color, #dddddd);
}

@media (max-width: 1199px) {
  .main-header__search::before {
    display: inline-block;
  }
}

@media (max-width: 430px) {
  .main-header__search::before {
    left: -20px;
  }
}

.main-header__search svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.main-header__btn {
  margin-left: 30px;
}

@media (max-width: 767px) {
  .main-header__btn {
    display: none;
  }
}

@media (min-width: 1200px) and (max-width: 1299px) {
  .main-header__btn {
    margin-left: 25px;
  }
}

.main-header__call {
  display: flex;
  align-items: center;
  gap: 15px;
}

.main-header__call__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 23px;
  color: var(--mahlara-primary, #f5c835);
  background-color: var(--mahlara-white, #ffffff);
  transition: all 500ms ease;
}

.main-header__call__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.main-header__call__title {
  margin-bottom: 3px;
  font-size: 18px;
  color: var(--mahlara-black2, #222222);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.25;
}

.main-header__call__number {
  margin: 0px;
  font-size: 16px;
  color: var(--mahlara-black3, #333333);
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.25;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.main-header__call__number:hover {
  background-size: 100% 1px;
}

.main-header .sidebar-btn__toggler {
  width: 50px;
  height: 50px;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  background-color: var(--mahlara-primary, #f5c835);
}

.main-header .sidebar-btn__toggler__line {
  width: 21px;
  height: 2px;
  display: inline-block;
  border-radius: 100px;
  background-color: var(--mahlara-base, #006654);
  transition: all 500ms ease;
}

.main-header .sidebar-btn__toggler__line:nth-child(2) {
  transform: translateX(6px);
}

.main-header .sidebar-btn__toggler:hover .sidebar-btn__toggler__line {
  transform: translateX(0px);
}

.main-header--two {
  width: 100%;
  position: absolute;
  top: 23px;
  left: 0px;
  background-color: transparent;
}

@media (max-width: 767px) {
  .main-header--two {
    top: 10px;
  }
}

.main-header--two .main-menu .main-menu__list>li {
  padding-top: 35px;
  padding-bottom: 35px;
}

.main-header--two .main-menu .main-menu__list>li>a,
.main-header--two .main-menu .main-menu__list>li.megamenu>a::after,
.main-header--two .main-menu .main-menu__list>li.dropdown>a::after,
.main-header--two .main-header__search {
  color: var(--mahlara-white, #ffffff);
}

.main-header--two .main-menu__list>li.current>a::after,
.main-header--two .main-menu__list>li.megamenu:hover>a::after,
.main-header--two .main-menu__list>li.dropdown:hover>a::after {
  color: var(--mahlara-primary, #f5c835) !important;
}

.main-header--two .main-header__search:hover {
  color: var(--mahlara-primary, #f5c835);
}

.main-header--two .main-header__search::before {
  background-color: RGBA(var(--mahlara-border-color-rgb, 221, 221, 221), 0.5);
}

.main-header--two .mobile-nav__btn span {
  background-color: var(--mahlara-white, #ffffff);
}

.main-header--two .mobile-nav__btn:hover span {
  background-color: var(--mahlara-primary, #f5c835);
}

.main-header--two .main-header__call {
  margin-left: 38px;
}

@media (max-width: 1299px) {
  .main-header--two .main-header__call {
    margin-left: 30px;
  }
}

@media (max-width: 767px) {
  .main-header--two .main-header__call {
    display: none;
  }
}

@media (max-width: 1199px) {
  .main-header--two .main-header__call__icon {
    color: var(--mahlara-base, #006654);
    background-color: var(--mahlara-primary, #f5c835);
  }
}

.main-header--two .main-header__call:hover .main-header__call__icon {
  color: var(--mahlara-white, #ffffff);
  background-color: var(--mahlara-black4, #131111);
}

@media (max-width: 1199px) {
  .main-header--two .main-header__call:hover .main-header__call__icon {
    color: var(--mahlara-primary, #f5c835);
    background-color: var(--mahlara-white, #ffffff);
  }
}

@media (max-width: 1199px) {
  .main-header--two .main-header__call__title {
    color: var(--mahlara-white, #ffffff);
  }
}

@media (max-width: 1199px) {
  .main-header--two .main-header__call__number {
    color: var(--mahlara-white, #ffffff);
  }
}

@media (min-width: 1800px) {
  .main-header--three::before {
    content: "";
    width: 100px;
    height: 235px;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: var(--mahlara-primary, #f5c835);
  }

  .main-header--three::after {
    content: "";
    width: 57px;
    height: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: -1;
    background-color: var(--mahlara-base, #006654);
  }
}

.main-header--three>.container {
  max-width: 1430px;
}

@media (min-width: 1800px) {
  .main-header--three>.container {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 31px;
  }
}

@media (min-width: 1800px) {
  .main-header--three .main-header__inner {
    padding-left: 30px;
  }
}

.main-header--three .main-menu .main-menu__list>li {
  padding-top: 40px;
  padding-bottom: 40px;
}

.main-header--three .main-header__call {
  margin-left: 60px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1799px) {
  .main-header--three .main-header__call {
    display: none;
  }
}

.main-header--three .main-header__call::after {
  content: "";
  width: calc(100% + 156px);
  height: calc(100% + 48.5px);
  position: absolute;
  top: 50%;
  left: -40px;
  z-index: -1;
  transform: translateY(-50%);
  background-color: var(--mahlara-white3, #ecf5f4);
}

.main-header--three .main-header__call__icon {
  color: var(--mahlara-white, #ffffff);
  background-color: var(--mahlara-base, #006654);
}

.main-header--three .sidebar-btn__toggler {
  margin-left: 91px;
}

@media (max-width: 1799px) {
  .main-header--three .sidebar-btn__toggler {
    margin-left: 30px;
  }
}

@media (max-width: 767px) {
  .main-header--three .sidebar-btn__toggler {
    margin-left: 25px;
  }
}

@media (max-width: 500px) {
  .main-header--three .sidebar-btn__toggler {
    display: none;
  }
}

@media (min-width: 1200px) and (max-width: 1299px) {
  .main-header--three .sidebar-btn__toggler {
    display: none;
  }
}

.sticky-header--cloned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  visibility: hidden;
  transform: translateY(-100%);
  background-color: var(--mahlara-white, #ffffff);
  box-shadow: 0px 3px 18px rgba(var(--mahlara-black-rgb, 0, 0, 0), 0.07);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: transform 500ms ease, visibility 500ms ease;
}

.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
}

.sticky-header--cloned.main-header--two {
  background-color: var(--mahlara-black2, #222222);
}

.sticky-header--cloned.main-header--two .main-menu .main-menu__list>li {
  padding-top: 48px;
  padding-bottom: 48px;
}

.sticky-header--cloned.main-header--two .main-header__call:hover .main-header__call__icon {
  color: var(--mahlara-base, #006654);
  background-color: var(--mahlara-primary, #f5c835);
}

.sticky-header--cloned.main-header--two .main-header__call .main-header__call__title,
.sticky-header--cloned.main-header--two .main-header__call .main-header__call__number {
  color: var(--mahlara-white, #ffffff);
}

.sticky-header--cloned.main-header--two .main-header__call .main-header__call__number:hover {
  color: var(--mahlara-primary, #f5c835);
}

.sticky-header--cloned.main-header--three::before {
  display: none;
}

.mobile-nav__btn {
  width: 26px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}

@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}

.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: #003558;
  transition: all 500ms ease;
}

.mobile-nav__btn span:nth-child(2) {
  margin-top: 5px;
  margin-bottom: 5px;
}

.mobile-nav__btn:hover span {
  background-color: var(--mahlara-base, #006654);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul {
    display: flex;
  }
}

.main-menu .main-menu__list>li {
  position: relative;
  padding-top: 48px;
  padding-bottom: 48px;
}

.main-menu .main-menu__list>li.dropdown>a {
  position: relative;
}

.main-menu .main-menu__list>li+li {
  margin-left: 42px;
}

@media (min-width: 1200px) and (max-width: 1299px) {
  .main-menu .main-menu__list>li+li {
    margin-left: 30px;
  }
}

@media (min-width: 1300px) and (max-width: 1399px) {
  .main-menu .main-menu__list>li+li {
    margin-left: 24px;
  }
}

.main-menu .main-menu__list>li>a {
  position: relative;
  font-size: 14px;
  display: flex;
  align-items: center;
  color: var(--mahlara-black3, #333333);
  line-height: 1.25;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 500ms ease;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a {
  color: var(--mahlara-primary, #f5c835);
}

.main-menu .main-menu__list>li.megamenu>a,
.main-menu .main-menu__list>li.dropdown>a {
  padding-right: 16px;
}

.main-menu .main-menu__list>li.megamenu>a::after,
.main-menu .main-menu__list>li.dropdown>a::after {
  content: "\f078";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  font-weight: 600;
  color: var(--mahlara-black3, #333333);
  transition: all 500ms ease;
}

.main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li.megamenu:hover>a::after,
.main-menu .main-menu__list>li.dropdown:hover>a::after {
  color: var(--mahlara-primary, #f5c835);
}

.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 270px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 15px 20px 11px;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  background-color: var(--mahlara-white, #ffffff);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>.megamenu {
  position: static;
}

.main-menu .main-menu__list>.megamenu>ul {
  top: 100% !important;
  left: -15px !important;
  right: -15px !important;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  transition: all 300ms linear 0ms;
  transform: perspective(500px) rotateX(-20deg);
  transform-origin: 50% 0%;
  pointer-events: none;
}

.main-menu .main-menu__list li.megamenu:hover>ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: perspective(500px) rotateX(0);
}

.main-menu .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
  margin-bottom: 5px;
}

.main-menu .main-menu__list li ul li:last-child {
  margin-bottom: 0px;
}

.main-menu .main-menu__list li.megamenu ul li {
  margin: 0;
}

.main-menu .main-menu__list li ul li>a {
  font-size: 15px;
  line-height: 26px;
  color: var(--mahlara-black3, #333333);
  font-weight: 500;
  display: flex;
  text-transform: capitalize;
  padding: 8px 20px;
  transition: 400ms;
}

.main-menu .main-menu__list li ul li>a::after {
  position: absolute;
  right: 20px;
  top: 8px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  color: var(--mahlara-black2, #222222);
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease;
}

.main-menu .main-menu__list li ul li.current>a,
.main-menu .main-menu__list li ul li:hover>a {
  color: var(--mahlara-black2, #222222);
  background-color: var(--mahlara-primary, #f5c835);
}

.main-menu .main-menu__list li ul li.current>a::after,
.main-menu .main-menu__list li ul li:hover>a::after {
  opacity: 1;
  visibility: visible;
}

.main-menu .main-menu__list li ul li>ul {
  top: 0;
  left: calc(100% + 20px);
}

.main-menu .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu {
  /* after third level no menu */
}

.main-menu .main-menu__list li ul li>ul ul {
  display: none;
}

.main-menu-five .main-menu__list>li.current>a,
.main-menu-five .main-menu__list>li:hover>a {
  color: var(--mahlara-primary, #f5c835) !important;
  text-shadow: 0 0 0.5px currentColor;
}

@media (min-width: 1200px) and (max-width: 1400px) {

  .main-menu__list li:nth-last-child(1) ul li>ul,
  .main-menu__list li:nth-last-child(2) ul li>ul {
    left: auto;
    right: calc(100% + 20px);
  }
}

/*--------------------------------------------------------------
# Megamenu Popup
--------------------------------------------------------------*/
.mobile-nav__container .main-menu__list>.megamenu.megamenu-clickable>ul,
.main-menu .main-menu__list>.megamenu.megamenu-clickable>ul,
.stricky-header .main-menu__list>.megamenu.megamenu-clickable>ul {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100vw;
  height: 100vh;
  visibility: visible;
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
  z-index: 999999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  padding: 0;
  background-color: var(--mahlara-white, #ffffff);
  display: block !important;
  margin: 0;
}

.main-menu__list>li.megamenu-clickable>ul::-webkit-scrollbar {
  display: none;
}

.mobile-nav__container .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active,
.main-menu .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active,
.stricky-header .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
}

body.megamenu-popup-active {
  overflow: hidden;
}

body.megamenu-popup-active .stricky-header {
  bottom: 0;
}

body.megamenu-popup-active .mobile-nav__content {
  overflow: unset;
}

.mobile-nav__content .demo-one .container {
  padding-left: 15px;
  padding-right: 15px;
}

.megamenu-popup {
  position: relative;
}

.megamenu-popup .megamenu-clickable--close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: block;
  color: var(--mahlara-black, #000000);
}

@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}

.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--mahlara-base, #006654);
}

.megamenu-popup .megamenu-clickable--close span {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  color: currentColor;
  transition: all 500ms ease;
}

.megamenu-popup .megamenu-clickable--close span::before,
.megamenu-popup .megamenu-clickable--close span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.megamenu-popup .megamenu-clickable--close span::after {
  transform: translate(-50%, -50%) rotate(45deg);
}



/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  visibility: hidden;
  position: fixed;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase {
  margin-bottom: -1px;
  margin-top: 0;
  border-bottom: 1px solid RGBA(var(--mahlara-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: transparent;
  box-shadow: none;
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--mahlara-white, #ffffff);
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.8;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--mahlara-black4, #131111);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding: 16px 15px 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}

.mobile-nav__content .main-menu__nav {
  display: block;
  padding: 0;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  display: inline-flex;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  color: var(--mahlara-white, #ffffff);
  cursor: pointer;
  transition: all 500ms ease;
}

.mobile-nav__close svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.mobile-nav__close:hover {
  color: var(--mahlara-base, #006654);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid RGBA(var(--mahlara-white-rgb, 255, 255, 255), 0.05);
}

.mobile-nav__content .main-menu__list ul li>a {
  padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid RGBA(var(--mahlara-white-rgb, 255, 255, 255), 0.05);
}

.mobile-nav__content .main-menu__list li>a {
  height: 46px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mahlara-font, "DM Sans", sans-serif);
  line-height: 30px;
  color: #000000;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>ul>li>a {
  font-size: 15px;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--mahlara-base, #006654);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  border: none;
  outline: none;
  color: var(--mahlara-white, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  background-color: var(--mahlara-base, #006654);
  transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  color: var(--mahlara-black4, #131111);
  transform: rotate(0deg);
  background-color: #073950;
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

.mobile-nav__contact li {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--mahlara-base, #006654);
}

.mobile-nav__contact__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 12px;
  color: var(--mahlara-white, #ffffff);
  background-color: var(--mahlara-base, #006654);
}

.mobile-nav__contact__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.mobile-nav__content .social-links {
  gap: 12px;
}

.mobile-nav__content .social-links a {
  width: 32px;
  height: 32px;
  border: none;
  background-color: var(--mahlara-base, #006654);
}

.mobile-nav__content .social-links a:hover {
  background-color: var(--mahlara-primary, #f5c835);
}

.mobile-nav__content .social-links__icon {
  font-size: 14px;
  color: var(--mahlara-white, #ffffff);
}

.mobile-nav__content .social-links a:hover .social-links__icon {
  color: var(--mahlara-base, #006654);
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
  display: none;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  overflow: hidden;
}

.contact-one--page {
  margin-top: 70px;
}

@media (max-width: 1299px) {
  .contact-one--page {
    margin-top: 0px;
  }
}

.contact-one--page .contact-one__bg {
  width: calc(100% - 250px);
  border-radius: 50px 0px 0px 0px;
}

@media (max-width: 1799px) {
  .contact-one--page .contact-one__bg {
    width: calc(100% - 150px);
  }
}

@media (max-width: 1599px) {
  .contact-one--page .contact-one__bg {
    width: calc(100% - 70px);
  }
}

@media (max-width: 1399px) {
  .contact-one--page .contact-one__bg {
    width: calc(100% - 20px);
  }
}

@media (max-width: 1299px) {
  .contact-one--page .contact-one__bg {
    width: 100%;
    border-radius: 0px;
  }
}

.contact-one--page .contact-one__bg::before {
  border-radius: inherit;
}

.contact-one--page .contact-one__bg__shape {
  display: inline-block;
  left: 0px;
}

@media (max-width: 1299px) {
  .contact-one--page .contact-one__bg__shape {
    display: none;
  }
}

.contact-one__bg {
  width: 100%;
  height: 100%;
  position: relative;
  position: absolute;
  top: 0px;
  right: 0px;
  overflow: hidden;
}

.contact-one__bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: var(--mahlara-base, #006654);
}

.contact-one__bg::after {
  content: "";
  width: 41.103%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: var(--mahlara-primary, #f5c835);
  clip-path: polygon(37% 0, 100% 0%, 100% 100%, 0 100%);
}

@media (max-width: 991px) {
  .contact-one__bg::after {
    display: none;
  }
}

.contact-one__bg__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 1;
  animation: moveX2 2s ease-in-out infinite;
}

@media (max-width: 1799px) {
  .contact-one__bg__shape {
    left: -120px;
  }
}

@media (max-width: 1599px) {
  .contact-one__bg__shape {
    left: -200px;
  }
}

@media (max-width: 1399px) {
  .contact-one__bg__shape {
    display: none;
  }
}

.contact-one .container {
  position: relative;
  z-index: 2;
}

.contact-one .sec-title {
  margin-bottom: 26px;
}

.contact-one__info {
  margin: 0px;
}

.contact-one__info li+li {
  margin-top: 30px;
}

.contact-one__info li:nth-child(even) {
  margin-left: 70px;
}

@media (max-width: 991px) {
  .contact-one__info li:nth-child(even) {
    margin-left: 0px;
  }
}

.contact-one__info__inner {
  min-width: 285px;
  display: inline-flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  padding: 20px 21px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--mahlara-border-color, #dddddd);
  transition: all 500ms ease;
  width: 76%;
}

.contact-one__info__inner::before {
  content: "";
  width: 54px;
  height: 54px;
  position: absolute;
  top: 20px;
  left: 21px;
  z-index: -1;
  border-radius: 50%;
  background-color: #dfeff9;
  transition: all 500ms ease;
}

.contact-one__info__inner:hover {
  border-color: var(--mahlara-primary, #f5c835);
}

.contact-one__info__inner:hover::before {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  border-radius: 0px;
}

.contact-one__info__icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 24px;
  color: var(--mahlara-base, #006654);
  background-color: #dfeff9;
  transition: all 500ms ease;
}

.contact-one__info__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.contact-one__info__inner:hover .contact-one__info__icon {
  color: var(--mahlara-white, #ffffff);
  background-color: var(--mahlara-base, #006654);
}

.contact-one__info__title {
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--mahlara-white, #ffffff);
  font-weight: 700;
  line-height: 1.277;
  text-transform: capitalize;
  transition: all 500ms ease;
}

.contact-one__info__inner:hover .contact-one__info__title {
  color: var(--mahlara-black2, #222222);
}

.contact-one__info__text {
  font-size: 16px;
  color: var(--mahlara-white, #ffffff);
  font-weight: 400;
  line-height: 1.277;
  line-height: 1.3125;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.contact-one__info__text:hover {
  background-size: 100% 1px;
}

.contact-one__info__inner:hover .contact-one__info__text {
  color: var(--mahlara-black3, #333333);
}

.contact-one__form {
  padding: 85px 80px;
  border-radius: 50px;
  background-color: var(--mahlara-white, #ffffff);
}

@media (max-width: 991px) {
  .contact-one__form {
    padding: 60px 50px;
  }
}

@media (max-width: 440px) {
  .contact-one__form {
    padding: 40px 30px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .contact-one__form {
    padding: 46px 40px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .contact-one .form-one__group {
    grid-template-columns: 1fr;
  }
}

.contact-one .form-one .bootstrap-select>.dropdown-toggle,
.contact-one .form-one input[type=text],
.contact-one .form-one input[type=email],
.contact-one .form-one input[type=search],
.contact-one .form-one input[type=tel] {
  height: 48px;
  border-radius: 100px;
  background-color: transparent !important;
  border: 1px solid var(--mahlara-border-color, #dddddd);
}

.contact-one .form-one .bootstrap-select>.dropdown-toggle:focus,
.contact-one .form-one input[type=text]:focus,
.contact-one .form-one input[type=email]:focus,
.contact-one .form-one input[type=search]:focus,
.contact-one .form-one input[type=tel]:focus {
  border-color: var(--mahlara-base, #006654);
}

.contact-one .form-one .mahlara-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 14px 35px;
  gap: 10px;
  border-radius: 100px;
}

.contact-one .form-one .mahlara-btn::before {
  display: none;
}

.contact-one .form-one .mahlara-btn:hover .mahlara-btn__text {
  color: var(--mahlara-black4, #131111);
}

.contact-one .form-one .mahlara-btn .mahlara-btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--mahlara-white, #ffffff);
}

.contact-one .form-one .mahlara-btn .mahlara-btn__icon i {
  position: absolute;
  top: 0px;
  bottom: auto;
}

.contact-one .form-one .mahlara-btn .mahlara-btn__icon i:last-child {
  left: -20px;
  bottom: auto;
}

.contact-one .form-one .mahlara-btn:hover .mahlara-btn__icon {
  color: var(--mahlara-black4, #131111);
}

.contact-one .form-one .mahlara-btn:hover .mahlara-btn__icon i {
  transform: translate(20px, 0px);
}

.contact-one__image {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  animation: moveX 2s linear infinite;
}

@media (max-width: 1599px) {
  .contact-one__image {
    right: -50px;
  }
}

@media (max-width: 1399px) {
  .contact-one__image {
    display: none;
  }
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.form-one__group {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
  margin: 0;
}

@media (min-width: 768px) {
  .form-one__group {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-one__control {
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  position: relative;
}

.form-one__control--full {
  grid-column-start: 1;
  grid-column-end: -1;
}

.form-one .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;
  font-family: var(--mahlara-font, "DM Sans", sans-serif);
  border-radius: 5px;
}

.form-one .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.form-one .bootstrap-select .dropdown-menu {
  border-radius: 5px;
}

.form-one .bootstrap-select>.dropdown-toggle {
  position: relative;
  height: 50px;
  outline: none !important;
  border: 0;
  border-radius: 0px;
  background-color: var(--mahlara-white2, #f0f2f8) !important;
  margin: 0;
  padding: 0;
  padding-left: 29px;
  padding-right: 29px;
  font-family: var(--mahlara-font, "DM Sans", sans-serif);
  color: var(--mahlara-text, #636363) !important;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
  line-height: 50px;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}

@media (max-width: 767px) {
  .form-one .bootstrap-select>.dropdown-toggle {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.form-one .bootstrap-select>.dropdown-toggle::before {
  position: absolute;
  top: 0;
  right: 29px;
  bottom: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 16px;
  color: var(--mahlara-text, #636363);
}

@media (max-width: 767px) {
  .form-one .bootstrap-select>.dropdown-toggle::before {
    right: 25px;
  }
}

.form-one .bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid var(--mahlara-border-color, #dddddd);
}

.form-one .bootstrap-select .dropdown-menu {
  border: none;
}

.form-one .bootstrap-select .dropdown-menu>li>a {
  padding: 10px 29px;
  font-family: var(--mahlara-font, "DM Sans", sans-serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--mahlara-text, #636363);
  background-color: var(--mahlara-white2, #f0f2f8);
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 767px) {
  .form-one .bootstrap-select .dropdown-menu>li>a {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.form-one .bootstrap-select .dropdown-menu>li:hover>a,
.form-one .bootstrap-select .dropdown-menu>li.selected>a {
  color: var(--mahlara-white, #ffffff);
  border-color: var(--mahlara-base, #006654);
  background-color: var(--mahlara-base, #006654);
}

.form-one .bootstrap-select>.dropdown-toggle {
  display: flex;
  align-items: center;
}

.form-one .bootstrap-select>.dropdown-toggle .filter-option {
  display: flex;
  align-items: center;
}

.form-one .bootstrap-select>.dropdown-toggle,
.form-one input[type=text],
.form-one input[type=email],
.form-one input[type=search],
.form-one input[type=tel],
.form-one textarea {
  display: block;
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  padding: 0px 29px;
  font-family: var(--mahlara-font, "DM Sans", sans-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--mahlara-text, #636363);
  border-radius: 5px;
  background-color: var(--mahlara-white2, #f0f2f8);
  transition: all 500ms ease;
}

@media (max-width: 767px) {

  .form-one .bootstrap-select>.dropdown-toggle,
  .form-one input[type=text],
  .form-one input[type=email],
  .form-one input[type=search],
  .form-one input[type=tel],
  .form-one textarea {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.form-one .bootstrap-select>.dropdown-toggle:focus, .form-one input[type=text]:focus, .form-one input[type=email]:focus, .form-one input[type=search]:focus, .form-one input[type=tel]:focus, .form-one textarea:focus
{
    color: #676767;
}

.form-one textarea {
  padding-top: 10px;
  background-color: transparent;
  border-radius: 20px;
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
}

.google-map iframe {
  width: 100%;
  height: 484px;
  display: block;
  position: relative;
  border: none;
  mix-blend-mode: luminosity;
}

@media (max-width: 767px) {
  .google-map iframe {
    height: 450px;
  }
}

.google-map__contact {
  overflow: hidden;
  background-color: var(--mahlara-black, #000000);
}

/***********************************************
 Video Banner
 ***********************************************/
.video-btn {
  width: 41px;
  height: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 20px;
  color: var(--mahlara-black4, #131111);
  border-radius: 50%;
  z-index: 1;
  background-color: var(--mahlara-primary, #f5c835);
  transition: all 0.5s ease;
}

.video-btn::after {
  content: "";
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: inherit;
  border: 3px solid var(--mahlara-primary, #f5c835);
  transition: all 0.5s ease;
}

.video-btn:hover {
  color: var(--mahlara-white, #ffffff);
  background-color: var(--mahlara-base, #006654);
}

.video-btn:hover::after {
  border-color: var(--mahlara-base, #006654);
}

.video-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 7px;
  width: 100%;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-three {
  background-color: var(--mahlara-white, #ffffff);
  margin-top: 70px;
}

.about-three__image {
  position: relative;
}

.about-three__image__one {
  display: inline-block;
  z-index: 1;
  width: 390px;
  height: 432px;
  overflow: hidden;
  position: relative;
}

.about-three__image__one img {
  max-width: 100%;
  border-radius: 50px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-three__image__shape {
  position: absolute;
  top: 103%;
  left: -22px;
  bottom: 0px;
  margin: auto 0px;
  animation: zoomIn3 2.5s infinite alternate;
}

.about-three__image__shape1 {
  position: absolute;
  top: 338px;
  left: 253%;
  bottom: 0px;
  margin: auto 0px;
  /* animation: zoomIn3 2.5s infinite alternate; */
}

.about-three__content {
  display: grid;
  grid-gap: 200px 28px;
  align-items: end;
  grid-template-columns: auto 300px;
}

@media (max-width: 991px) {
  .about-three__content {
    display: block;
  }
}

.about-three__text {
  margin-bottom: 24px;
}

.about-three__item {
  display: flex;
  align-items: center;
  gap: 35px;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  padding: 14px 0px 14px 15px;
  border-top: 1px solid var(--mahlara-border-color, #dddddd);
  border-bottom: 1px solid var(--mahlara-border-color, #dddddd);
}

.about-three__item::before {
  content: "";
  width: 60px;
  height: calc(100% + 2px);
  position: absolute;
  top: 50%;
  left: -1px;
  z-index: -1;
  transform: translateY(-50%);
  background-color: var(--mahlara-base, #006654);
  transition: all 500ms ease;
}

.about-three__item:hover::before {
  background-color: var(--mahlara-primary, #f5c835);
}

.about-three__item__icon {
  display: inline-flex;
  font-size: 30px;
  color: var(--mahlara-white, #ffffff);
  transition: all 500ms ease;
}

.about-three__item__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.about-three__item:hover .about-three__item__icon {
  color: var(--mahlara-base, #006654);
}

.about-three__item__title {
  margin: 0px;
  font-size: 18px;
  font-weight: 700;
  color: var(--mahlara-black4, #131111);
  line-height: 1.375;
  text-transform: capitalize;
}

.about-three__content__image {
  display: inline-block;
  position: relative;
  width: 396px;
  height: 368px;
  overflow: hidden;
  right: 34%;
}

@media (max-width: 991px) {
  .about-three__content__image {
    margin-top: 160px;
  }
}

.about-three__content__image img {
  max-width: 100%;
  height: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}

.about-three__content__image .about-three__content__img {
  border: 9px solid #ffffff;
  border-radius: 48px 195px 82px 66px;
}

.about-three__content__left {
  width: 90%;
  position: relative;
  right: 5%;
}

.about-three__content__img {
  border-radius: 50px;
}

.about-three__content__badge {
  position: absolute;
  top: 68%;
  left: 50%;
  right: 0px;
  z-index: 1;
  margin: 0px auto;
  animation: vibrant2 3s ease 0s infinite;
}

/*--------------------------------------------------------------
# Vision Mission
--------------------------------------------------------------*/


.vision-three {
  background-color: var(--mahlara-white, #ffffff);
  margin-top: 70px;
}

.vision-three__item {
  padding: 40px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--mahlara-white3, #ecf5f4);
}

@media (max-width: 767px) {
  .vision-three__item {
    padding: 30px;
  }
}

@media (max-width: 440px) {
  .vision-three__item {
    padding: 25px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .vision-three__item {
    padding: 30px;
  }
}

.vision-three__bg {
  width: 0%;
  height: 100%;
  position: relative;
  position: absolute;
  top: 0px;
  left: 0px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  transition: 600ms;
}

.vision-three__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #073950 !important;
}

.vision-three__item:hover .vision-three__bg {
  width: 100%;
}

.vision-three__content {
  position: relative;
  z-index: 2;
}

.vision-three__top {
  display: flex;
  align-items: center;
  gap: 30px 44px;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  padding: 0 60px 18px 23.5px;
  border-radius: 10px 50px 50px 10px;
  background-color: var(--mahlara-white, #ffffff);
  transition: all 500ms ease;
}

@media (max-width: 767px) {
  .vision-three__top {
    padding-right: 40px;
  }
}

@media (max-width: 575px) {
  .vision-three__top {
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    border-radius: 0px;
    background-color: transparent;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .vision-three__top {
    padding-right: 40px;
  }
}

.vision-three__top::before {
  content: "";
  width: 90px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0px;
  z-index: -1;
  transform: translateY(-50%);
  border-radius: 10px;
  background-color: var(--mahlara-base, #006654);
  transition: all 500ms ease;
}

@media (max-width: 575px) {
  .vision-three__top::before {
    display: none;
  }
}

.vision-three__item:hover .vision-three__top {
  background-color: #dfeff9;
}

@media (max-width: 575px) {
  .vision-three__item:hover .vision-three__top {
    background-color: transparent;
  }
}

.vision-three__item:hover .vision-three__top::before {
  background-color: var(--mahlara-white, #ffffff);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

@media (max-width: 575px) {
  .vision-three__item:hover .vision-three__top::before {
    display: none;
  }
}

.vision-three__icon {
  display: inline-flex;
  color: var(--mahlara-white, #ffffff);
  transition: all 500ms ease;
  position: relative;
  top: 10px;
}

@media (max-width: 575px) {
  .vision-three__icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: var(--mahlara-base, #006654);
  }
}

.vision-three__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

@media (max-width: 575px) {
  .vision-three__item:hover .vision-three__icon {
    background-color: var(--mahlara-primary, #f5c835);
  }
}

.vision-three__item:hover .vision-three__icon {
  color: var(--mahlara-primary, #f5c835);
}

.vision-three__item:hover .vision-three__icon img {
  filter: brightness(1) invert(25) sepia(34) saturate(100) hue-rotate(180deg);
}


.vision-three__item:hover .vision-three__icon h4 {
  margin: 0px;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.272;
  text-transform: capitalize;
}


@media (max-width: 575px) {
  .vision-three__item:hover .vision-three__icon {
    color: var(--mahlara-base, #006654);
  }
}

.vision-three__title {
  margin: 0px;
  font-size: 22px;
  font-weight: 700;
  color: var(--mahlara-black2, #222222);
  line-height: 1.272;
  text-transform: capitalize;
  position: relative;
  top: 10px;
}

@media (max-width: 390px) {
  .vision-three__title {
    font-size: 20px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .vision-three__title {
    font-size: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .vision-three__title {
    font-size: 20px;
  }
}

.vision-three__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.vision-three__title a:hover {
  background-size: 100% 1px;
}

@media (max-width: 575px) {
  .vision-three__item:hover .vision-three__title {
    color: var(--mahlara-white, #ffffff);
  }
}

.vision-three__text {
  margin-bottom: 24px;
  transition: all 500ms ease;
}

.vision-three__item:hover .vision-three__text {
  color: var(--mahlara-white, #ffffff);
}

.vision-three__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 50px;
  bottom: -10px;
  z-index: 1;
  transition: all 500ms ease;
  animation: vibrant2 3s ease 0s infinite;
}

@media (max-width: 575px) {
  .vision-three__shape {
    right: 30px;
  }
}

.vision-three__shape--hover {
  opacity: 0;
}

.vision-three__item:hover .vision-three__shape {
  opacity: 0;
}

.vision-three__item:hover .vision-three__shape--hover {
  opacity: 1;
}

/*--------------------------------------------------------------
# facilities
--------------------------------------------------------------*/
section.facilities-one {
  margin-top: 70px;
}

.facilities-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.facilities-card__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background-color: var(--mahlara-white3, #ecf5f4);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cpath d='M20 0H340Q370 0 370 30V280Q370 310 340 310Q280 310 280 370Q280 400 250 400H20Q0 400 0 380V20Q0 0 20 0Z' fill='%23ddd'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cpath d='M20 0H340Q370 0 370 30V280Q370 310 340 310Q280 310 280 370Q280 400 250 400H20Q0 400 0 380V20Q0 0 20 0Z' fill='%23ddd'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.facilities-card__bg__main {
  width: 0%;
  height: 100%;
  position: relative;
  position: absolute;
  top: 0px;
  left: 0px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  transition: 600ms;
}

.facilities-card__bg__main::before {
  content: "";
  width: 95px;
  height: 68px;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
  opacity: 0;
  transform: translateX(100%);
  background-color: var(--mahlara-primary, #f5c835);
  -webkit-mask: url("../images/shapes/facilities-card-shape-1-2.png");
  mask: url("../images/shapes/facilities-card-shape-1-2.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

@media (max-width: 1199px) {
  .facilities-card__bg__main::before {
    display: none;
  }
}

.facilities-card__bg__main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbfff9a8;
}

.facilities-card:hover .facilities-card__bg__main {
  width: 100%;
}

.facilities-card:hover .facilities-card__bg__main::before {
  opacity: 1;
  transform: translateX(0%);
  transition: all 500ms ease 500ms;
}

.facilities-card__content {
  padding: 37px 60px 0 37px;
  position: relative;
  z-index: 1;
  transition: all 500ms ease;
  margin: 40px 0;
}

@media (max-width: 412px) {
  .facilities-card__content {
    padding: 30px 30px 49.5px;
  }
}

@media (max-width: 375px) {
  .facilities-card__content {
    padding: 30px 25px 49.5px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .facilities-card__content {
    padding: 30px 30px 49.5px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .facilities-card__content {
    padding: 30px 25px 49.5px;
  }
}

.facilities-card__tagline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 19px;
}

.facilities-card__tagline svg {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
}

.facilities-card__tagline svg rect {
  width: 12px;
  height: 12px;
  stroke: var(--mahlara-base, #006654);
  stroke-width: 3px;
  transition: all 500ms ease;
}

.facilities-card__tagline__text {
  margin: 0px;
  transition: all 500ms ease;
}

.facilities-card:hover .facilities-card__tagline svg rect {
  stroke: var(--mahlara-primary, #f5c835);
}

.facilities-card:hover .facilities-card__tagline__text {
  color: var(--mahlara-primary, #f5c835);
}

.facilities-card__title {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--mahlara-black2, #222222);
  line-height: 1.272;
  text-transform: capitalize;
}

@media (max-width: 375px) {
  .facilities-card__title {
    font-size: 21px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .facilities-card__title {
    font-size: 20px;
  }
}

.facilities-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.facilities-card__title a:hover {
  background-size: 100% 1px;
}

.facilities-card__text {
  margin-bottom: 22px;
  transition: all 500ms ease;
}

.facilities-card__bottom {
  display: flex;
  align-items: center;
  gap: 68px;
  position: relative;
}

@media (max-width: 360px) {
  .facilities-card__bottom {
    gap: 40px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .facilities-card__bottom {
    gap: 43px;
  }
}

.facilities-card__icon {
  display: inline-flex;
  flex-shrink: 0;
  font-size: 70px;
  color: var(--mahlara-primary, #f5c835);
  transition: all 500ms ease;
}

.facilities-card__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.facilities-card:hover .facilities-card__title,
.facilities-card:hover .facilities-card__text,
.facilities-card:hover .facilities-card__icon {
  color: #03355f;
}

.facilities-card__number {
  position: relative;
  margin: 0px;
  writing-mode: sideways-lr;
}

.facilities-card__number::before {
  content: "0" counter(facilitiesNumber);
  counter-increment: facilitiesNumber;
  font-family: inherit;
  font-size: 40px;
  color: transparent;
  font-weight: 800;
  line-height: 1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #053859;
  transition: all 500ms ease;
  position: relative;
  right: 66%;
  font-family: "Roboto", sans-serif;
}

.facilities-card__number::after {
  content: "";
  width: 2px;
  height: 45px;
  position: absolute;
  left: -24%;
  bottom: -61px;
  transform: translateX(-50%);
  border-radius: 50px;
  background-color: #053859;
  transition: all 500ms ease;
}

.facilities-card:hover .facilities-card__number::before {
  -webkit-text-stroke-color: var(--mahlara-primary, #f5c835);
}

.facilities-card:hover .facilities-card__number::after {
  background-color: var(--mahlara-primary, #f5c835);
}

.facilities-card__btn {
  width: 71px;
  height: 71px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #053359;
  position: absolute;
  right: 21px;
  margin-top: -32px;
  border-radius: 50%;
  background-color: #ffffff;
  transition: all 500ms ease;
}

@media (max-width: 375px) {
  .facilities-card__btn {
    width: 60px;
    height: 60px;
    font-size: 28px;
    bottom: 16px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .facilities-card__btn {
    width: 60px;
    height: 60px;
    font-size: 28px;
    bottom: 16px;
  }
}

.facilities-card__btn:hover {
  transform: rotate(45deg);
}

.facilities-card__btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.facilities-card:hover .facilities-card__btn {
  color: #ffffff;
  background-color: #0a9acf;
}

.facilities-card-two {
  display: grid;
  grid-gap: 0px;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  overflow: hidden;
  background-color: var(--mahlara-white, #ffffff);
}

@media (max-width: 767px) {
  .facilities-card-two {
    grid-template-columns: repeat(1, 1fr);
  }
}

.facilities-card-two::after {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: var(--mahlara-base, #006654);
  transition: all 800ms ease;
}

@media (max-width: 767px) {
  .facilities-card-two::after {
    transition-duration: 500ms;
  }
}

.facilities-card-two:hover::after {
  width: 100%;
  left: 0px;
}

.facilities-card-two__content {
  padding: 40px 30px 25px;
  position: relative;
  z-index: 3;
  transition: all 500ms ease;
}

@media (max-width: 767px) {
  .facilities-card-two__content {
    padding: 30px;
  }
}

.facilities-card-two__icon-box {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 114px;
  border-radius: 10px;
  background-color: var(--mahlara-base, #006654);
  transition: all 500ms ease;
}

@media (max-width: 767px) {
  .facilities-card-two__icon-box {
    margin-bottom: 40px;
  }
}

.facilities-card-two:hover .facilities-card-two__icon-box {
  background-color: var(--mahlara-primary, #f5c835);
}

.facilities-card-two__icon {
  display: inline-flex;
  font-size: 40px;
  color: var(--mahlara-white, #ffffff);
  transition: all 500ms ease;
}

.facilities-card-two__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.facilities-card-two:hover .facilities-card-two__icon {
  color: var(--mahlara-base, #006654);
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.facilities-card-two__number {
  position: relative;
  margin-bottom: 15px;
}

.facilities-card-two__number::before {
  content: "0" counter(facilitiesNumber) ".";
  counter-increment: facilitiesNumber;
  font-family: inherit;
  font-size: 22px;
  color: transparent;
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--mahlara-primary, #f5c835);
  transition: all 500ms ease;
}

.facilities-card-two:hover .facilities-card-two__number::before {
  -webkit-text-stroke-color: var(--mahlara-white, #ffffff);
}

.facilities-card-two__title {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--mahlara-black2, #222222);
  line-height: 1.272;
  text-transform: capitalize;
}

.facilities-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.facilities-card-two__title a:hover {
  background-size: 100% 1px;
}

.facilities-card-two__text {
  margin: 0px;
  transition: all 500ms ease;
}

.facilities-card-two:hover .facilities-card-two__title,
.facilities-card-two:hover .facilities-card-two__text {
  color: var(--mahlara-white, #ffffff);
}

.facilities-card-two__btn {
  width: 51px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--mahlara-base, #006654);
  position: absolute;
  right: -25px;
  bottom: 29px;
  z-index: 1;
  border-radius: 50%;
  background-color: var(--mahlara-primary, #f5c835);
  border: 3px solid var(--mahlara-white, #ffffff);
  transition: all 500ms ease;
}

@media (max-width: 767px) {
  .facilities-card-two__btn {
    margin-top: 30px;
    position: static;
    border-color: var(--mahlara-base, #006654);
  }

  .facilities-card-two__btn:hover {
    border-color: var(--mahlara-white, #ffffff) !important;
  }
}

.facilities-card-two__btn:hover {
  transform: rotate(45deg);
}

.facilities-card-two__btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

@media (max-width: 767px) {
  .facilities-card-two:hover .facilities-card-two__btn {
    border-color: var(--mahlara-white, #ffffff);
  }
}

.facilities-card-two__bg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

@media (max-width: 767px) {
  .facilities-card-two__bg {
    display: none;
  }
}

.facilities-card-two__shape {
  width: auto !important;
  display: inline-block !important;
  max-width: 100%;
  height: auto;
  position: absolute;
  position: absolute;
  top: 65px;
  left: 93px;
  z-index: 1;
  transition: all 500ms ease;
}

@media (max-width: 767px) {
  .facilities-card-two__shape {
    top: -30px;
    right: -60px;
    left: auto;
  }
}

.facilities-card-two:hover .facilities-card-two__shape {
  opacity: 0.5;
}

section.facilities-one {
  margin-top: 70px;
}

.facilities-one,
.facilities-two,
.facilities-three {
  counter-reset: facilitiesNumber;
  /* background-color: var(--mahlara-white3, #ecf5f4); */
}

.facilities-bg {
  background-image: url(../img/icons/facilities-bg.png);
  padding: 40px 20px 38px 45px;
  border-radius: 20px;
}

.facilities-one .facilities-card__bg {
  background-color: white !important;
}

.facilities-two {
  position: relative;
}

.facilities-two .container {
  position: relative;
  z-index: 1;
}

.facilities-two__top {
  margin-bottom: 38px;
}

.facilities-two .sec-title {
  margin: 0px;
}

@media (min-width: 768px) {
  .facilities-two__container {
    padding-right: 0;
    width: auto;
    min-width: auto;
    max-width: inherit;
    margin-left: calc((100% - 720px) / 2);
  }
}

@media (min-width: 992px) {
  .facilities-two__container {
    margin-left: calc((100% - 960px) / 2);
  }
}

@media (min-width: 1200px) {
  .facilities-two__container {
    margin-left: calc((100% - 1200px) / 2);
  }
}

.facilities-two__bottom {
  margin-top: 70px;
}

.facilities-two__bottom__content {
  display: flex;
  gap: 30px;
  align-items: center;
}

@media (max-width: 991px) {
  .facilities-two__bottom__content {
    flex-direction: column;
    text-align: center;
  }
}

.facilities-two__bottom__icon {
  width: 123px;
  height: 123px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 62px;
  color: var(--mahlara-primary, #f5c835);
  border-radius: 20px;
  background-color: var(--mahlara-white, #ffffff);
}

.facilities-two__bottom__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.facilities-two__bottom__icon::after {
  content: "";
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 15px;
  border: 1px dashed var(--mahlara-base, #006654);
}

.facilities-two__bottom__title {
  margin-bottom: 11px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.318;
}

.facilities-two__bottom__text {
  margin: 0px;
  font-weight: 500;
  color: var(--mahlara-black3, #333333);
}

.facilities-two__bottom__text__icon {
  width: 21px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -2px;
  margin-right: 5px;
  font-size: 11px;
  color: var(--mahlara-base, #006654);
  border-radius: 50%;
  background-color: var(--mahlara-primary, #f5c835);
}

.facilities-two__bottom__text__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.facilities-two__bottom__button {
  text-align: right;
}

@media (max-width: 991px) {
  .facilities-two__bottom__button {
    text-align: center;
  }
}

.facilities-two__shape-1,
.facilities-two__shape-2 {
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 0px;
}

.facilities-two__shape-1 {
  top: 0px;
}

.facilities-two__shape-2 {
  bottom: 0px;
}

.facilities-two__shape-3 {
  width: 245px;
  height: 528px;
  position: relative;
  position: absolute;
  top: 122px;
  right: 0px;
  background: var(--mahlara-base, #006654);
  border-radius: 200px 0 0 0;
}

@media (max-width: 1799px) {
  .facilities-two__shape-3 {
    display: none;
  }
}

.facilities-two__shape-3::after {
  content: "";
  width: 195px;
  height: 468px;
  position: absolute;
  top: 50px;
  left: 50px;
  background: var(--mahlara-primary, #f5c835);
  border-radius: 150px 0 0 0;
}

.facilities-three__grid {
  display: grid;
  grid-gap: 40px 51px;
  align-items: center;
  grid-template-columns: auto 479px;
  padding: 50px;
  border-radius: 30px;
  background-color: var(--mahlara-white, #ffffff);
}

@media (max-width: 1199px) {
  .facilities-three__grid {
    grid-template-columns: auto;
  }
}

@media (max-width: 767px) {
  .facilities-three__grid {
    padding: 30px;
  }
}

@media (max-width: 412px) {
  .facilities-three__grid {
    padding: 20px;
  }
}

.facilities-three__item+.facilities-three__item {
  margin-top: 30px;
}

.facilities-three__item {
  display: flex;
  gap: 30px 20px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px 10px 10px;
  border-radius: 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: var(--mahlara-white3, #ecf5f4);
}

@media (max-width: 767px) {
  .facilities-three__item {
    padding-right: 20px;
  }
}

@media (max-width: 575px) {
  .facilities-three__item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 30px;
    border-radius: 20px;
  }
}

@media (max-width: 412px) {
  .facilities-three__item {
    padding: 25px;
  }
}

.facilities-three__item::before {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
  background-color: var(--mahlara-base, #006654);
  transition: all 500ms ease;
}

.facilities-three__item:hover::before {
  width: 100%;
  left: 0px;
}

.facilities-three__item::after {
  content: "";
  width: 55px;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
  background-color: var(--mahlara-base, #006654);
  border-radius: 0px 500px 500px 0px;
}

@media (max-width: 767px) {
  .facilities-three__item::after {
    width: 50px;
  }
}

@media (max-width: 575px) {
  .facilities-three__item::after {
    display: none;
  }
}

.facilities-three__item__left {
  display: flex;
  gap: 25px;
  align-items: center;
}

@media (max-width: 575px) {
  .facilities-three__item__left {
    flex-direction: column;
    align-items: flex-start;
  }
}

.facilities-three__item__icon-box {
  width: 89px;
  height: 89px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--mahlara-base, #006654);
  transition: all 500ms ease;
}

.facilities-three__item:hover .facilities-three__item__icon-box {
  background-color: var(--mahlara-primary, #f5c835);
}

.facilities-three__item__icon {
  display: inline-flex;
  font-size: 40px;
  color: var(--mahlara-white, #ffffff);
  transition: all 500ms ease;
}

.facilities-three__item__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.facilities-three__item:hover .facilities-three__item__icon {
  color: var(--mahlara-base, #006654);
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.facilities-three__item__title {
  margin: 0px;
  font-size: 22px;
  font-weight: 700;
  color: var(--mahlara-black2, #222222);
  line-height: 1.272;
  text-transform: capitalize;
}

.facilities-three__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.facilities-three__item__title a:hover {
  background-size: 100% 1px;
}

.facilities-three__item:hover .facilities-three__item__title {
  color: var(--mahlara-white, #ffffff);
}

.facilities-three__item__btn {
  width: 59px;
  height: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 26px;
  color: var(--mahlara-primary, #f5c835);
  border-radius: 50%;
  background-color: var(--mahlara-white, #ffffff);
  transition: all 500ms ease;
}

.facilities-three__item__btn:hover {
  transform: rotate(45deg);
}

.facilities-three__item__btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.facilities-three__item:hover .facilities-three__item__btn {
  color: var(--mahlara-base, #006654);
  background-color: var(--mahlara-primary, #f5c835);
}

.facilities-three__item__number {
  margin: 0px;
  position: relative;
  position: absolute;
  right: 100px;
  bottom: -24px;
}

@media (max-width: 575px) {
  .facilities-three__item__number {
    right: 30px;
    bottom: 30px;
  }
}

@media (max-width: 412px) {
  .facilities-three__item__number {
    bottom: 25px;
  }
}

.facilities-three__item__number::before {
  content: "0" counter(facilitiesNumber);
  counter-increment: facilitiesNumber;
  font-family: inherit;
  font-size: 70px;
  color: transparent;
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--mahlara-primary, #f5c835);
  transition: all 500ms ease;
}

@media (max-width: 575px) {
  .facilities-three__item__number::before {
    font-size: 60px;
  }
}

@media (max-width: 412px) {
  .facilities-three__item__number::before {
    font-size: 55px;
  }
}

.facilities-three__item:hover .facilities-three__item__number::before {
  -webkit-text-stroke-color: RGBA(var(--mahlara-white-rgb, 255, 255, 255), 0.3);
}

@media (max-width: 1199px) {
  .facilities-three__image {
    text-align: center;
  }
}

.facilities-three__image img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
}

.facilities-page {
  counter-reset: facilitiesNumber;
  background-color: var(--mahlara-white, #ffffff);
}

.facilities-page .facilities-card-two {
  background-color: var(--mahlara-white2, #f0f2f8);
}

@media (max-width: 1199px) {
  .facilities-page .facilities-card-two {
    grid-template-columns: repeat(1, 1fr);
  }

  .facilities-page .facilities-card-two::after {
    transition-duration: 500ms;
  }

  .facilities-page .facilities-card-two__content {
    padding: 30px;
  }

  .facilities-page .facilities-card-two__icon-box {
    margin-bottom: 40px;
  }

  .facilities-page .facilities-card-two__btn {
    margin-top: 30px;
    position: static;
    border-color: var(--mahlara-base, #006654);
  }

  .facilities-page .facilities-card-two__btn:hover {
    border-color: var(--mahlara-white, #ffffff) !important;
  }

  .facilities-page .facilities-card-two:hover .facilities-card-two__btn {
    border-color: var(--mahlara-white, #ffffff);
  }

  .facilities-page .facilities-card-two__bg {
    display: none;
  }

  .facilities-page .facilities-card-two__shape {
    top: -30px;
    right: -60px;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Principal Message
--------------------------------------------------------------*/

section.testimonials-one {
  margin-top: 70px;
}

.testimonials-one {
  background-color: var(--mahlara-white, #ffffff);
}

.testimonials-one__wrapper {
  position: relative;
  padding: 73.5px 55px 73.5px 70px;
  overflow: hidden;
  border-radius: 30px;
  background-color: var(--mahlara-white3, #ecf5f4);
}

@media (max-width: 767px) {
  .testimonials-one__wrapper {
    padding: 50px 40px;
  }
}

@media (max-width: 540px) {
  .testimonials-one__wrapper {
    padding: 40px 30px;
  }
}

@media (max-width: 375px) {
  .testimonials-one__wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .testimonials-one__wrapper {
    padding-right: 40px;
    padding-left: 40px;
  }
}

.testimonials-one__carousel {
  position: relative;
  z-index: 1;
}

.testimonials-one__carousel.owl-carousel .owl-nav {
  margin: 0px;
  position: relative;
  position: absolute;
  right: 0px;
  bottom: 0px;
  display: inline-flex;
  align-items: center;
  gap: 72px;
}

@media (max-width: 767px) {
  .testimonials-one__carousel.owl-carousel .owl-nav {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

.testimonials-one__carousel.owl-carousel .owl-nav::after {
  content: "";
  width: calc(100% - 55px);
  height: calc(100% - 12px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--mahlara-white, #ffffff);
}

.testimonials-one__carousel.owl-carousel .owl-nav button {
  width: 58px;
  height: 58px;
  position: relative;
  z-index: 1;
  color: var(--mahlara-base, #006654);
  border-color: var(--mahlara-base, #006654);
  background-color: var(--mahlara-white3, #ecf5f4);
}

.testimonials-one__carousel.owl-carousel .owl-nav button:hover {
  color: var(--mahlara-base, #006654);
  border-color: var(--mahlara-primary, #f5c835);
  background-color: var(--mahlara-primary, #f5c835);
}

.testimonials-one__carousel .mahlara-owl__carousel__counter {
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  right: 72px;
  bottom: 19px;
  z-index: 1;
  font-family: var(--mahlara-heading-font, "Sora", sans-serif);
  font-size: 18px;
  color: var(--mahlara-black, #000000);
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 767px) {
  .testimonials-one__carousel .mahlara-owl__carousel__counter {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

.testimonials-one__carousel .mahlara-owl__carousel__counter__current {
  color: var(--mahlara-primary, #f5c835);
}

.testimonials-one__carousel .mahlara-owl__carousel__counter__total {
  position: relative;
}

.testimonials-one__carousel .mahlara-owl__carousel__counter__total::before {
  content: "/";
  position: absolute;
  top: -1px;
  left: -14px;
  font-family: var(--mahlara-heading-font, "Sora", sans-serif);
  font-size: 18px;
  color: var(--mahlara-black, #000000);
  font-weight: 700;
  line-height: 1;
}

.testimonials-one__item {
  display: grid;
  grid-gap: 40px 77px;
  align-items: start;
  grid-template-columns: 333px auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .testimonials-one__item {
    grid-column-gap: 60px;
  }
}

@media (max-width: 991px) {
  .testimonials-one__item {
    grid-template-columns: 1fr;
  }
}

.testimonials-one__item__image {
  width: 333px;
  height: 333px;
  position: relative;
  padding: 10px;
  border-radius: 50%;
  background-color: var(--mahlara-white, #ffffff);
}

@media (max-width: 440px) {
  .testimonials-one__item__image {
    width: 290px;
    height: 290px;
  }
}

@media (max-width: 390px) {
  .testimonials-one__item__image {
    width: 270px;
    height: 270px;
  }
}

@media (max-width: 360px) {
  .testimonials-one__item__image {
    width: 230px;
    height: 230px;
  }
}

.testimonials-one__item__image::before,
.testimonials-one__item__image::after {
  content: "";
  width: 3px;
  height: 50%;
  position: absolute;
  right: -38.5px;
  border-radius: 100px;
}

@media (max-width: 1199px) {

  .testimonials-one__item__image::before,
  .testimonials-one__item__image::after {
    right: -30px;
  }
}

@media (max-width: 991px) {

  .testimonials-one__item__image::before,
  .testimonials-one__item__image::after {
    display: none;
  }
}

.testimonials-one__item__image::before {
  top: 0px;
  background-color: var(--mahlara-base, #006654);
}

.testimonials-one__item__image::after {
  bottom: 0px;
  background-color: var(--mahlara-primary, #f5c835);
}

.testimonials-one__item__image img {
  width: 100% !important;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.flex-btn {
  display: flex;
  justify-content: space-between;
}

.testimonials-one__item .mahlara-ratings {
  padding: 13px 25px;
  position: absolute;
  left: 50%;
  bottom: 0px;
  z-index: 1;
  transform: translateX(-50%);
  border-radius: 100px;
  background-color: var(--mahlara-white3, #ecf5f4);
  border: 1px solid var(--mahlara-primary, #f5c835);
}

.testimonials-one__item .mahlara-ratings__icon {
  font-size: 18px;
  color: var(--mahlara-primary, #f5c835);
}

.testimonials-one__item__icon {
  width: 67px;
  height: 66px;
}

.testimonials-one__item__icon path:nth-child(1) {
  fill: var(--mahlara-primary, #f5c835);
}

.testimonials-one__item__icon path:nth-child(2) {
  stroke: #2f5ce9;
}

.testimonials-one__item__icon path:nth-child(3) {
  fill: var(--mahlara-base, #006654);
}

.testimonials-one__item__icon path:nth-child(4) {
  stroke: #2f5ce9;
}

.testimonials-one__item__quote {
  margin: 22px 0px 12px;
  padding-bottom: 12px;
  font-size: 18px;
  color: #474747;
  font-style: italic;
  line-height: 1.5;
  border-bottom: 1px solid var(--mahlara-border-color, #dddddd);
  font-weight: 400;
}

@media (max-width: 767px) {
  .testimonials-one__item__quote {
    font-size: 20px;
  }
}

@media (max-width: 390px) {
  .testimonials-one__item__quote {
    font-size: 18px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .testimonials-one__item__quote {
    font-size: 20px;
  }
}

.testimonials-one__item__quote span {
  color: var(--mahlara-primary, #f5c835);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

@media (max-width: 767px) {
  .testimonials-one__item__identity {
    margin-bottom: 100px;
  }
}

.testimonials-one__item__name {
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--mahlara-black2, #222222);
  font-weight: 700;
  line-height: 1.318;
  text-transform: capitalize;
}

.testimonials-one__item__designation {
  margin: 0px;
}

.testimonials-one__shape-1 {
  width: 227px;
  height: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0px;
  left: 0px;
  overflow: hidden;
  background-color: var(--mahlara-base, #006654);
  border-radius: 30px 300px 300px 30px;
  box-shadow: 0 0 6.3px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .testimonials-one__shape-1 {
    display: none;
  }
}

.testimonials-one__shape-1 img {
  max-width: 100%;
  height: auto;
  margin-left: -10px;
}

.testimonials-one__shape-2 {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 0px;
  right: 0px;
  animation: zump 2s linear infinite;
}

/*--------------------------------------------------------------
# Counter
--------------------------------------------------------------*/
.funfact {
  background-color: var(--mahlara-white, #ffffff);
}

.funfact__item {
  position: relative;
  text-align: center;
  padding: 0px 30px 38px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .funfact__item {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.funfact__item__shape {
  width: 100%;
  height: calc(100% - 36px);
  position: relative;
  position: absolute;
  left: 0px;
  bottom: 0px;
  overflow: hidden;
  border-radius: 0px 0px 500px 500px;
  background-color: var(--mahlara-white3, #ecf5f4);
}

.funfact__item__shape::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-color: var(--mahlara-base, #006654);
  transition: all 500ms ease;
}

.funfact__item:hover .funfact__item__shape::after {
  height: 100%;
}

.funfact__item__content {
  position: relative;
  z-index: 1;
}

.funfact__item__icon-box {
  width: 74px;
  height: 74px;
  position: relative;
  margin: 0px auto 20px;
}

.funfact__item__icon-box::before,
.funfact__item__icon-box::after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top: 0px;
  border-style: solid;
  transition: all 500ms ease;
}

.funfact__item__icon-box::before {
  left: -36px;
  border-width: 0 0 36px 36px;
  border-color: transparent transparent var(--mahlara-primary, #f5c835) transparent;
}

.funfact__item__icon-box::after {
  right: -36px;
  border-width: 36px 0 0 36px;
  border-color: transparent transparent transparent var(--mahlara-primary, #f5c835);
}

.funfact__item:hover .funfact__item__icon-box::before {
  border-color: transparent transparent var(--mahlara-base, #006654) transparent;
}

.funfact__item:hover .funfact__item__icon-box::after {
  border-color: transparent transparent transparent var(--mahlara-base, #006654);
}

.funfact__item__icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  font-size: 38px;
  color: var(--mahlara-white, #ffffff);
  overflow: hidden;
  background-color: var(--mahlara-base, #006654);
  border-radius: 0px 0px 50px 50px;
  transition: all 500ms ease;
}

.funfact__item__icon::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: -1;
  background-color: var(--mahlara-primary, #f5c835);
  transition: all 500ms ease;
}

.funfact__item__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.funfact__item:hover .funfact__item__icon {
  color: var(--mahlara-base, #006654);
}

.funfact__item:hover .funfact__item__icon::after {
  height: 100%;
  top: 0px;
}

.funfact__item__count {
  margin-bottom: 8px;
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  color: var(--mahlara-black2, #222222);
  transition: all 500ms ease;
}

@media (min-width: 576px) and (max-width: 767px) {
  .funfact__item__count {
    font-size: 40px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .funfact__item__count {
    font-size: 40px;
  }
}

.funfact__item__title {
  margin: 0px;
  transition: all 500ms ease;
  font-size: 14px;
}

.funfact__item:hover .funfact__item__count,
.funfact__item:hover .funfact__item__title {
  color: var(--mahlara-white, #ffffff);
}

.funfact--two {
  position: relative;
  margin-top: 70px;
  margin-bottom: 70px;
  background-image: url(../img/icons/counter-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}



.funfact--two .funfact__bg {
  width: 100%;
  height: calc(100% + 339px);
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

@media (max-width: 991px) {
  .funfact--two .funfact__bg {
    height: calc(100% + 300px);
  }
}

@media (max-width: 575px) {
  .funfact--two .funfact__bg {
    height: calc(100% + 250px);
  }
}

.funfact--two .container {
  position: relative;
  z-index: 1;
}

.funfact--two .funfact__item {
  display: grid;
  grid-gap: 18px;
  align-items: center;
  grid-template-columns: 74px auto;
  padding: 48px 35px 48px 0px;
}

.funfact--two .funfact__item__shape {
  height: 100%;
  border-radius: 15px;
  background-color: var(--mahlara-white, #ffffff);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.funfact--two .funfact__item__shape::after {
  content: "";
  width: 0%;
  height: 100%;
  top: 0px;
  right: 0px;
  left: auto;
  bottom: auto;
}

.funfact--two .funfact__item:hover .funfact__item__shape::after {
  width: 100%;
  left: 0px;
}

.funfact--two .funfact__item__icon-box {
  margin: 0px;
  z-index: 1;
}

.funfact--two .funfact__item__icon-box::before {
  top: -36px;
  left: 0px;
  border-width: 36px 0 0 36px;
  border-color: transparent transparent transparent var(--mahlara-primary, #f5c835);
}

.funfact--two .funfact__item__icon-box::after {
  top: auto;
  right: auto;
  left: 0px;
  bottom: -36px;
  border-width: 36px 36px 0 0;
  border-color: var(--mahlara-primary, #f5c835) transparent transparent transparent;
}

.funfact--two .funfact__item:hover .funfact__item__icon-box::before {
  border-color: transparent transparent transparent var(--mahlara-white, #ffffff);
}

.funfact--two .funfact__item:hover .funfact__item__icon-box::after {
  border-color: var(--mahlara-white, #ffffff) transparent transparent transparent;
}

.funfact--two .funfact__item__icon {
  border-radius: 0px 50px 50px 0px;
}

.funfact--two .funfact__item__icon::after {
  content: "";
  width: 0%;
  height: 100%;
  top: 0px;
  right: 0px;
  left: auto;
  bottom: auto;
}

.funfact--two .funfact__item:hover .funfact__item__icon::after {
  width: 100%;
  left: 0px;
}

.funfact--two .funfact__item__content {
  text-align: left;
}

.funfact--two .funfact__item__count {
  margin-bottom: 5px;
  font-size: 38px;
}

/*--------------------------------------------------------------
# News & Events 
--------------------------------------------------------------*/
section.blog-twosection-space-b {
  margin-top: 70px;
  margin-bottom: 50px;
  background-color: #DFEFF9;
  padding: 50px 0 110px;
}

.blog-card {
  position: relative;
  padding: 10px;
  overflow: hidden;
  border-radius: 20px;
  background-color: var(--mahlara-white, #ffffff);
  transition: all 500ms ease;
}

.blog-card-two__image.big-news {
  height: 355px !important;
}

.blog-card::before {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: var(--mahlara-base, #006654);
  transition: all 500ms ease;
}

.blog-card:hover::before {
  height: 100%;
  top: 0px;
}

.blog-card::after {
  content: "";
  width: 100%;
  height: 240px;
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  transform: translateY(-30%);
  background-color: var(--mahlara-primary, #f5c835);
  clip-path: polygon(100% 0, 100% 43%, 50% 100%, 0 43%, 0 0);
  transition: all 500ms ease;
}

.blog-card:hover::after {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 300ms;
}

.blog-card__image {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 15px 15px 0px 0px;
}

.blog-card__image img {
  width: 100%;
  display: block;
  border-radius: inherit;
}

.blog-card__image__link {
  width: 100%;
  height: 100%;
  background-color: rgba(var(--mahlara-black4-rgb, 19, 17, 17), 0.5);
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(-30%);
  border-radius: inherit;
  transition: opacity 500ms ease, transform 500ms ease;
}

.blog-card__image__link::before,
.blog-card__image__link::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--mahlara-white, #ffffff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-card__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.blog-card:hover .blog-card__image__link {
  opacity: 1;
  transform: translateY(0);
}

.blog-card__content {
  position: relative;
  z-index: 1;
  padding: 0px 20px 30px;
}

@media (max-width: 412px) {
  .blog-card__content {
    padding: 0px 10px 15px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .blog-card__content {
    padding: 0px 10px 15px;
  }
}

.blog-card__admin {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: -36px 0px 19px;
  position: relative;
  top: 0px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  padding: 10px 25px 10px 10px;
  border-radius: 100px;
  background-color: var(--mahlara-white, #ffffff);
  border: 1px solid var(--mahlara-border-color, #dddddd);
}

.blog-card__admin__image {
  width: 50px !important;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
}

.blog-card__admin__name {
  margin-bottom: 3px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--mahlara-black2, #222222);
  text-transform: capitalize;
}

.blog-card__admin__date {
  margin: 0px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px 17px;
  margin-bottom: 15px;
}

@media (max-width: 390px) {
  .blog-card__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .blog-card__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.blog-card__meta li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  color: var(--mahlara-text, #636363);
  line-height: 1.25;
}

.blog-card__meta li a {
  color: inherit;
}

.blog-card__meta li a:hover {
  color: var(--mahlara-primary, #f5c835);
}

.blog-card__meta__icon {
  font-size: 18px;
  color: var(--mahlara-base, #006654);
  transition: all 500ms ease;
}

.blog-card__meta__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.blog-card:hover .blog-card__meta li {
  color: var(--mahlara-white, #ffffff);
}

.blog-card:hover .blog-card__meta__icon {
  color: var(--mahlara-primary, #f5c835);
}

.blog-card__title {
  margin-bottom: 27px;
  font-size: 22px;
  font-weight: 700;
  color: var(--mahlara-black2, #222222);
  line-height: 1.272;
}

@media (max-width: 375px) {
  .blog-card__title {
    font-size: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card__title {
    font-size: 20px;
  }
}

.blog-card__title a {
  color: inherit;
}

.blog-card__title a:hover {
  color: var(--mahlara-primary, #f5c835);
}

.blog-card__title a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.blog-card__title a:hover {
  background-size: 100% 1px;
}

.blog-card:hover .blog-card__title {
  color: var(--mahlara-white, #ffffff);
}

.blog-card:hover .mahlara-btn::after {
  width: 100%;
  left: 0px;
}

.blog-card:hover .mahlara-btn__text {
  color: var(--mahlara-black4, #131111);
}

.blog-card:hover .mahlara-btn__icon-box {
  background-color: var(--mahlara-base, #006654);
}

.blog-card:hover .mahlara-btn__icon {
  color: var(--mahlara-white, #ffffff);
}

.blog-card:hover .mahlara-btn__icon i {
  transform: translate(15px, -15px);
  transition: all 0.5s ease-out;
}

.blog-card:hover .mahlara-btn__icon i:last-child {
  visibility: visible;
}

.blog-card__shape {
  width: auto !important;
  display: inline-block !important;
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 30px;
  bottom: 30px;
  opacity: 0;
  transition: all 500ms ease;
  animation: rotate 5s linear infinite;
}

@media (max-width: 412px) {
  .blog-card__shape {
    right: 15px;
    bottom: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .blog-card__shape {
    right: 15px;
    bottom: 15px;
  }
}

.blog-card:hover .blog-card__shape {
  opacity: 1;
}

.blog-card__border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  border: 1px solid var(--mahlara-border-color, #dddddd);
  transition: all 500ms ease;
}

.blog-card:hover .blog-card__border {
  border-color: var(--mahlara-base, #006654);
}

.blog-card-two {
  display: grid;
  align-items: center;
  grid-template-columns: 270px auto;
  background-color: var(--mahlara-white, #ffffff);
  border-radius: 10px;
  overflow: hidden;
  filter: drop-shadow(2px 0 5.7px rgba(0, 0, 0, 0.1));
}

@media (max-width: 767px) {
  .blog-card-two {
    display: block;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card-two {
    display: block;
  }
}

.blog-card-two__image {
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 10px 0px 0px 10px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

@media (max-width: 767px) {
  .blog-card-two__image {
    height: 270px;
    border-radius: 10px 10px 0px 0px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card-two__image {
    height: 270px;
    border-radius: 10px 10px 0px 0px;
  }
}

.blog-card-two__image__link {
  width: 100%;
  height: 100%;
  background-color: rgba(var(--mahlara-black4-rgb, 19, 17, 17), 0.5);
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(-30%);
  transition: opacity 500ms ease, transform 500ms ease;
}

.blog-card-two__image__link::before,
.blog-card-two__image__link::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--mahlara-white, #ffffff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-card-two__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.blog-card-two:hover .blog-card-two__image__link {
  opacity: 1;
  transform: translateY(0);
}

.blog-card-two__date {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
  min-width: 57px;
  text-align: center;
}

.blog-card-two__date__day {
  display: block;
  position: relative;
  z-index: 1;
  padding: 11.5px 5px 7.5px;
  font-family: var(--mahlara-heading-font, "Sora", sans-serif);
  font-size: 30px;
  color: var(--mahlara-white, #ffffff);
  font-weight: 600;
  line-height: 1;
  border-radius: 15px 15px 0px 0px;
  background-color: var(--mahlara-base, #006654);
  transition: all 500ms ease;
}

.blog-card-two__date__month {
  display: block;
  position: relative;
  padding: 8px 5px 7px;
  font-size: 16px;
  font-weight: 500;
  color: var(--mahlara-black3, #333333);
  line-height: 1;
  text-transform: uppercase;
  background-color: var(--mahlara-primary, #f5c835);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}

.blog-card-two:hover .blog-card-two__date__day {
  color: var(--mahlara-black3, #333333);
  background-color: var(--mahlara-white, #ffffff);
}

.blog-card-two__content {
  position: relative;
  z-index: 1;
  padding: 20px 23px 20px 28px;
  border-radius: 0px 10px 10px 0px;
}

@media (max-width: 767px) {
  .blog-card-two__content {
    padding: 29px 30px 30px;
    border-radius: 0px 0px 10px 10px;
  }
}

@media (max-width: 390px) {
  .blog-card-two__content {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card-two__content {
    padding: 29px 30px 30px;
    border-radius: 0px 0px 10px 10px;
  }
}

.blog-card-two__content::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: -1;
  background-color: var(--mahlara-base, #006654);
  transition: all 500ms ease;
}

.blog-card-two:hover .blog-card-two__content::after {
  height: 100%;
  top: 0px;
}

.blog-card-two__category {
  display: inline-block;
  padding: 9.5px 21px;
  margin-bottom: 21px;
  font-size: 16px;
  font-weight: 600;
  color: var(--mahlara-black4, #131111);
  text-transform: uppercase;
  border-radius: 10px;
  background-color: var(--mahlara-primary, #f5c835);
  border: 1px solid var(--mahlara-base, #006654);
  transition: all 500ms ease;
}

.blog-card-two:hover .blog-card-two__category {
  color: var(--mahlara-black2, #222222);
  border-color: var(--mahlara-white, #ffffff);
  background-color: var(--mahlara-white, #ffffff);
}

.blog-card-two__meta {
  display: flex;
  align-items: center;
  gap: 10px 15px;
  margin-bottom: 15px;
}

.blog-card-two__meta li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  color: var(--mahlara-text, #636363);
  line-height: 1.25;
}

.blog-card-two__meta li a {
  color: inherit;
}

.blog-card-two__meta li a:hover {
  color: var(--mahlara-primary, #f5c835);
}

.blog-card-two__meta__icon {
  font-size: 16px;
  color: var(--mahlara-text, #636363);
  transition: all 500ms ease;
}

.blog-card-two__meta__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.blog-card-two:hover .blog-card-two__meta li {
  color: var(--mahlara-white, #ffffff);
}

.blog-card-two:hover .blog-card-two__meta__icon {
  color: var(--mahlara-primary, #f5c835);
}

.blog-card-two__title {
  margin-bottom: 27px;
  font-size: 18px;
  font-weight: 700;
  color: var(--mahlara-black2, #222222);
  line-height: 1.272;
}

@media (max-width: 390px) {
  .blog-card-two__title {
    font-size: 20px;
  }
}

.blog-card-two__title a {
  color: inherit;
}

.blog-card-two__title a:hover {
  color: var(--mahlara-primary, #f5c835);
}

.blog-card-two__title a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.blog-card-two__title a:hover {
  background-size: 100% 1px;
}

.blog-card-two:hover .blog-card-two__title {
  color: var(--mahlara-white, #ffffff);
}

.blog-card-two:hover .mahlara-btn::after {
  width: 100%;
  left: 0px;
}

.blog-card-two:hover .mahlara-btn__text {
  color: var(--mahlara-black4, #131111);
}

.blog-card-two:hover .mahlara-btn__icon-box {
  background-color: var(--mahlara-base, #006654);
}

.blog-card-two:hover .mahlara-btn__icon {
  color: var(--mahlara-white, #ffffff);
}

.blog-card-two:hover .mahlara-btn__icon i {
  transform: translate(15px, -15px);
  transition: all 0.5s ease-out;
}

.blog-card-two:hover .mahlara-btn__icon i:last-child {
  visibility: visible;
}

.blog-card-two__shape {
  width: auto !important;
  display: inline-block !important;
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 16px;
  bottom: 0px;
  z-index: 1;
  transition: all 500ms ease;
}

.blog-card-two__shape--hover {
  opacity: 0;
}

.blog-card-two:hover .blog-card-two__shape {
  opacity: 0;
}

.blog-card-two:hover .blog-card-two__shape--hover {
  opacity: 1;
}

.blog-card-two--normal {
  display: block;
}

.blog-card-two--normal .blog-card-two__image {
  height: auto;
  border-radius: 10px 10px 0px 0px;
}

.blog-card-two--normal .blog-card-two__image img {
  width: 100%;
  display: block;
  border-radius: inherit;
}

.blog-card-two--normal .blog-card-two__category {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
}

.blog-card-two--normal:hover .blog-card-two__category {
  color: var(--mahlara-black4, #131111);
  border-color: var(--mahlara-primary, #f5c835);
  background-color: var(--mahlara-primary, #f5c835);
}

.blog-card-two--normal .blog-card-two__content {
  padding: 45px 30px 50px;
  border-radius: 0px 0px 10px 10px;
}

@media (max-width: 430px) {
  .blog-card-two--normal .blog-card-two__content {
    padding-top: 55px;
  }
}

@media (max-width: 390px) {
  .blog-card-two--normal .blog-card-two__content {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.blog-card-two--normal .blog-card-two__date {
  top: -50px;
  right: 62px;
  left: auto;
}

@media (max-width: 440px) {
  .blog-card-two--normal .blog-card-two__date {
    right: 30px;
  }
}

.blog-card-two--normal .blog-card-two__meta {
  margin-bottom: 14px;
}

.blog-card-two--normal .blog-card-two__shape {
  right: 57px;
}

@media (max-width: 767px) {
  .blog-card-two--normal .blog-card-two__shape {
    right: 30px;
  }
}

@media (max-width: 575px) {
  .blog-card-two--normal .blog-card-two__shape {
    display: none !important;
  }
}

.blog-card-three__image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.blog-card-three__image img {
  width: 100%;
  display: block;
  border-radius: inherit;
  transition: all 500ms ease;
}

.blog-card-three__image__link {
  width: 100%;
  height: 100%;
  background-color: rgba(var(--mahlara-black4-rgb, 19, 17, 17), 0.6);
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(-30%);
  transition: opacity 500ms ease, transform 500ms ease;
}

.blog-card-three__image__link::before,
.blog-card-three__image__link::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--mahlara-white, #ffffff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-card-three__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.blog-card-three:hover .blog-card-three__image img {
  transform: scale(1.1);
}

.blog-card-three:hover .blog-card-three__image__link {
  opacity: 1;
  transform: translateY(0);
}

.blog-card-three__content {
  width: calc(100% - 40px);
  position: relative;
  z-index: 1;
  margin: -83px 0px 0px auto;
  background-color: var(--mahlara-white, #ffffff);
  filter: drop-shadow(0 1px 6.3px rgba(0, 0, 0, 0.1));
}

@media (max-width: 412px) {
  .blog-card-three__content {
    width: calc(100% - 20px);
    margin-top: -100px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .blog-card-three__content {
    width: calc(100% - 20px);
    margin-top: -100px;
  }
}

.blog-card-three__content::before {
  content: "";
  width: 40px;
  height: 41px;
  position: absolute;
  top: 0px;
  left: -40px;
  background-color: var(--mahlara-primary, #f5c835);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  transition: all 500ms ease;
}

@media (max-width: 412px) {
  .blog-card-three__content::before {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .blog-card-three__content::before {
    display: none;
  }
}

.blog-card-three__content::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: -1;
  background-color: var(--mahlara-base, #006654);
  transition: all 500ms ease;
}

.blog-card-three:hover .blog-card-three__content::before {
  background-color: var(--mahlara-base, #006654);
}

.blog-card-three:hover .blog-card-three__content::after {
  height: 100%;
  top: 0px;
}

.blog-card-three__top {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 10.5px 60px 10.5px 20px;
  background-color: var(--mahlara-base, #006654);
  transition: all 500ms ease;
}

@media (max-width: 412px) {
  .blog-card-three__top {
    padding-right: 80px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .blog-card-three__top {
    padding-right: 80px;
  }
}

.blog-card-three:hover .blog-card-three__top {
  background-color: var(--mahlara-primary, #f5c835);
}

.blog-card-three__meta {
  display: flex;
  gap: 10px 14px;
  align-items: center;
  margin: 0px;
}

@media (max-width: 412px) {
  .blog-card-three__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .blog-card-three__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.blog-card-three__meta li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 16px;
  font-weight: 400;
  color: var(--mahlara-white, #ffffff);
  line-height: 1.25;
  transition: all 500ms ease;
}

.blog-card-three__meta li a {
  color: inherit;
  transition: 0s;
}

.blog-card-three__meta__icon {
  font-size: 16px;
  color: var(--mahlara-white, #ffffff);
  transition: all 500ms ease;
}

.blog-card-three__meta__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.blog-card-three:hover .blog-card-three__meta li,
.blog-card-three:hover .blog-card-three__meta__icon {
  color: var(--mahlara-black3, #333333);
}

.blog-card-three__btn {
  width: 41px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: var(--mahlara-primary, #f5c835);
  transition: all 500ms ease;
}

@media (max-width: 412px) {
  .blog-card-three__btn {
    width: 60px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .blog-card-three__btn {
    width: 60px;
  }
}

.blog-card-three__btn__icon {
  font-size: 13px;
  color: var(--mahlara-base, #006654);
  transition: all 500ms ease;
}

.blog-card-three__btn__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.blog-card-three__btn:hover .blog-card-three__btn__icon {
  transform: rotate(45deg);
}

.blog-card-three:hover .blog-card-three__btn {
  background-color: var(--mahlara-base, #006654);
}

.blog-card-three:hover .blog-card-three__btn__icon {
  color: var(--mahlara-white, #ffffff);
}

.blog-card-three__inner {
  padding: 20px 24px 23px;
}

.blog-card-three__title {
  position: relative;
  padding-left: 17px;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
  color: var(--mahlara-black2, #222222);
  line-height: 1.272;
}

@media (max-width: 412px) {
  .blog-card-three__title {
    padding-left: 0px;
    font-size: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .blog-card-three__title {
    padding-left: 0px;
    font-size: 20px;
  }
}

.blog-card-three__title::before {
  content: "";
  width: 3px;
  height: calc(100% - 11px);
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  border-radius: 100px;
  background-color: var(--mahlara-primary, #f5c835);
}

@media (max-width: 412px) {
  .blog-card-three__title::before {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .blog-card-three__title::before {
    display: none;
  }
}

.blog-card-three__title a {
  color: inherit;
}

.blog-card-three__title a:hover {
  color: var(--mahlara-primary, #f5c835);
}

.blog-card-three__title a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.blog-card-three__title a:hover {
  background-size: 100% 1px;
}

.blog-card-three__text {
  margin: 0px;
  transition: all 500ms ease;
}

.blog-card-three:hover .blog-card-three__title,
.blog-card-three:hover .blog-card-three__text {
  color: var(--mahlara-white, #ffffff);
}

.blog-card-four__image {
  margin-bottom: 30px;
}

.blog-card-four__image img {
  width: 100%;
  display: block;
}

.blog-card-four__meta {
  margin-bottom: 21px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 25px;
}

.blog-card-four__category {
  padding: 7px 25px;
  border-radius: 100px;
}

.blog-card-four__category::before {
  display: none;
}

.blog-card-four__info {
  display: flex;
  align-items: center;
}

.blog-card-four__info__text {
  margin: 0;
  position: relative;
  font-family: var(--mahlara-font, "DM Sans", sans-serif);
  font-size: 16px;
  color: var(--mahlara-text, #636363);
  font-weight: 400;
  text-transform: capitalize;
}

.blog-card-four__info__text:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  margin-right: 6px;
  font-size: 16px;
  color: var(--mahlara-text, #636363);
  font-weight: 400;
}

.blog-card-four__info__text a {
  color: inherit;
}

.blog-card-four__info__text a:hover {
  color: var(--mahlara-base, #006654);
}

.blog-card-four__info__text a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.blog-card-four__info__text a:hover {
  background-size: 100% 1px;
}

.blog-card-four__comment {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-card-four__comment__icon {
  display: inline-flex;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--mahlara-text, #636363);
}

.blog-card-four__comment__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.blog-card-four__comment__text {
  color: var(--mahlara-text, #636363);
  text-transform: capitalize;
  transition: all 500ms ease;
}

.blog-card-four__comment__text:hover {
  color: var(--mahlara-base, #006654);
}

.blog-card-four__title {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
  color: var(--mahlara-black2, #222222);
  line-height: 1.318;
}

@media (max-width: 412px) {
  .blog-card-four__title {
    font-size: 20px;
  }
}

.blog-card-four__title a {
  color: inherit;
}

.blog-card-four__title a:hover {
  color: var(--mahlara-base, #006654);
}

.blog-card-four__title a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.blog-card-four__title a:hover {
  background-size: 100% 1px;
}

.blog-card-four__text {
  margin-bottom: 28px;
}

.blog-one {
  background-color: var(--mahlara-white, #ffffff);
}

.blog-one--home1 {
  position: relative;
}

.blog-one--home1::before {
  content: "";
  width: 100%;
  height: 568px;
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(180deg, #ecf5f4 14.98%, rgba(217, 217, 217, 0) 100%);
}

.blog-one--home1 .container {
  position: relative;
  z-index: 1;
}

.blog-two {
  background-color: var(--mahlara-white, #ffffff);
}

.blog-three {
  background-color: var(--mahlara-white, #ffffff);
}

.blog-three__top {
  margin-bottom: 38px;
}

.blog-three .sec-title {
  margin: 0px;
}

.blog-page {
  background-color: var(--mahlara-white, #ffffff);
}

.blog-page .post-pagination {
  justify-content: center;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blog-page--sidebar .blog-card-two__content {
    padding: 24px 20px;
  }

  .blog-page--sidebar .blog-card-two__title {
    font-size: 20px;
  }

  .blog-page--sidebar .blog-card-three__content {
    width: calc(100% - 40px);
    margin-top: -83px;
  }

  .blog-page--sidebar .blog-card-three__content::before {
    display: block;
  }

  .blog-page--sidebar .blog-card-three__top {
    padding-right: 60px;
  }

  .blog-page--sidebar .blog-card-three__meta {
    flex-direction: row;
    align-items: center;
  }

  .blog-page--sidebar .blog-card-three__btn {
    width: 41px;
  }

  .blog-page--sidebar .blog-card-three__title {
    padding-left: 17px;
    font-size: 22px;
  }

  .blog-page--sidebar .blog-card-three__title::before {
    display: block;
  }
}

.blog-page--sidebar .post-pagination {
  justify-content: flex-start;
}

@media (max-width: 991px) {
  .blog-page--sidebar .post-pagination {
    justify-content: center;
  }
}



.client-carousel {
  position: relative;
  top: 60px;
}

.client-carousel::before,
.client-carousel::after {
  content: "";
  width: calc(50% - 180px);
  height: 2px;
  background-color: var(--mahlara-border-color, #dddddd);
  position: absolute;
  top: 12px;
  left: 0px;
}

.client-carousel::after {
  left: auto;
  right: 0px;
}

.client-carousel__content {
  text-align: center;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-page {
  background-color: var(--mahlara-white, #ffffff);
  margin-top: 70px;
  margin-bottom: 70px;
}

.about-three__button.gallery-btnn.aos-init.aos-animate {
  text-align: center;
  margin-top: 40px;
}

img.about-three__image__shape.gallery-ani {
  position: absolute;
  /* top: 74% !important; */
  top: 850.5% !important;
  left: 88% !important;
  z-index: 0;
  bottom: 0px;
  margin: auto 0px;
  animation: zoomIn3 2.5s infinite alternate;
}

img.about-three__image__shape.gallery-ani1 {
  position: absolute;
  /* top: 62.5% !important; */
  top: 766.5% !important;
  left: 0;
  z-index: 0;
  bottom: 0px;
  margin: auto 0px;
  animation: zump 2s linear infinite;
}




.gallery-page__filter__list {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
}

.gallery-page__filter__list li {
  padding: 11px 30px;
}

.gallery-page__filter__list li.active::after {
  width: 100%;
  left: 0px;
}

.gallery-page__filter__list li.active .mahlara-btn__text {
  color: var(--mahlara-white, #ffffff);
}

.gallery-page__card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
  width: 290px;
  height: 237px;
}

.gallery-page__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-page__card__hover {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
}

.gallery-page__card__hover::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  visibility: hidden;
  right: -100%;
  bottom: -100%;
  background-color: rgb(5 51 89 / 67%);
  transition: all 500ms ease;
}

.gallery-page__card__hover .img-popup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  transform: scale(0.5);
  font-size: 22px;
  color: var(--mahlara-base, #006654);
  background-color: var(--mahlara-white, #ffffff);
  transition: all 500ms ease;
}

.gallery-page__card__hover .img-popup:hover {
  background-color: var(--mahlara-primary, #f5c835);
}

.gallery-page__card:hover .gallery-page__card__hover {
  visibility: visible;
}

.gallery-page__card:hover .gallery-page__card__hover::after {
  right: 0px;
  bottom: 0px;
  visibility: visible;
}

.gallery-page__card:hover .img-popup {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.main-footer {
  position: relative;
  overflow: hidden;
  background-color: #053359;
}

.footer-logo img {
  padding: 10px;
  width: 150px;
}

.footer-about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  margin: 58px 0 40px;
  padding: 22px;
  border-radius: 20px;
}

.main-footer__top {
  position: relative;
  padding-top: 223px;
  padding-bottom: 0;
  overflow: hidden;
}

.main-footer__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.main-footer__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--mahlara-base-rgb, 0, 102, 84), 0.94);
}

.main-footer .container {
  position: relative;
  z-index: 1;
}

.main-footer__bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px 30px;
  padding: 2px 0px;
  border-top: 1px solid rgba(var(--mahlara-white-rgb, 255, 255, 255), 0.3);
}

.main-footer__bottom {
  background-color: #03243F;
  border-top: 1px solid gray;
}

@media (max-width: 991px) {
  .main-footer__bottom__inner {
    flex-direction: column-reverse;
    justify-content: center;
    padding: 30px 0px;
    text-align: center;
  }
}

.main-footer__copyright {
  margin: 0px;
  font-size: 16px;
  font-weight: 400;
  color: var(--mahlara-white, #ffffff);
  text-transform: capitalize;
}

.main-footer__page {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px 26px;
  margin: 0px;
}

@media (max-width: 991px) {
  .main-footer__page {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .main-footer__page {
    gap: 13px 22px;
  }
}

.main-footer__page li {
  font-size: 16px;
  font-weight: 400;
  color: var(--mahlara-white, #ffffff);
  line-height: 1.25;
  text-transform: capitalize;
}

.main-footer__page li a {
  color: inherit;
}

.main-footer__page li a:hover {
  color: var(--mahlara-primary, #f5c835);
}

.main-footer__page li a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.main-footer__page li a:hover {
  background-size: 100% 1px;
}

.main-footer--two .main-footer__top {
  padding-top: 0px;
}

.main-footer--two .main-footer__newsletter {
  margin-bottom: 74px;
  border-bottom: 1px solid RGBA(var(--mahlara-border-color-rgb, 221, 221, 221), 0.3);
}

@media (max-width: 1199px) {
  .main-footer--two .main-footer__newsletter {
    border: none;
  }
}

.main-footer--two .main-footer__newsletter__content {
  display: flex;
  gap: 39px;
  align-items: center;
}

@media (max-width: 1199px) {
  .main-footer--two .main-footer__newsletter__content {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .main-footer--two .main-footer__newsletter__content {
    text-align: center;
    flex-direction: column;
  }
}

.main-footer--two .main-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 42px 40px;
  position: relative;
  background-color: var(--mahlara-primary, #f5c835);
}

@media (max-width: 360px) {
  .main-footer--two .main-footer__logo {
    padding: 30px;
  }
}

.main-footer--two .main-footer__logo::before,
.main-footer--two .main-footer__logo::after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0px;
  background-color: rgba(var(--mahlara-primary-rgb, 245, 200, 53), 0.3);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}

@media (max-width: 1299px) {

  .main-footer--two .main-footer__logo::before,
  .main-footer--two .main-footer__logo::after {
    display: none;
  }
}

.main-footer--two .main-footer__logo::before {
  width: 80px;
  left: -80px;
}

.main-footer--two .main-footer__logo::after {
  width: 40px;
  left: -40px;
}

.main-footer--two .main-footer__logo img {
  max-width: 100%;
  height: auto;
}

.main-footer--two .main-footer__newsletter__title {
  margin: 0px;
  font-size: 22px;
  color: var(--mahlara-white, #ffffff);
  font-weight: 700;
  line-height: 1.314;
  text-transform: capitalize;
}

.main-footer--two .main-footer__newsletter__form {
  position: relative;
}

@media (max-width: 1199px) {
  .main-footer--two .main-footer__newsletter__form {
    max-width: 586px;
    margin: 0px auto;
  }
}

.main-footer--two .main-footer__newsletter__form input[type=email],
.main-footer--two .main-footer__newsletter__form input[type=text] {
  width: 100%;
  height: 45px;
  outline: none;
  border: none;
  font-size: 14px;
  font-weight: 400;
  color: var(--mahlara-text, #636363);
  padding-left: 30px;
  padding-right: 5px;
  border-radius: 100px;
  background-color: var(--mahlara-white, #ffffff);
  transition: all 500ms ease;
}

.main-footer--two .main-footer__newsletter__form input[type=email]:focus,
.main-footer--two .main-footer__newsletter__form input[type=text]:focus {
  color: var(--mahlara-black, #000000);
}

.main-footer--two .main-footer__newsletter__form .mahlara-btn {
  width: 100%;
  display: block;
  margin-top: 20px;
  padding: 9.5px 30px;
  text-align: center;
  border-radius: 100px;
}

.main-footer--two .main-footer__newsletter__form .mahlara-btn::before {
  display: none;
}

@media (max-width: 575px) {
  .main-footer--two .main-footer__newsletter__form .mahlara-btn::after {
    background-color: var(--mahlara-white, #ffffff);
  }
}

@media (min-width: 576px) {
  .main-footer--two .main-footer__newsletter__form .mahlara-btn {
    width: auto;
    display: inline-flex;
    margin: 0px;
    padding: 9.5px 24px;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
  }
}

.main-footer--two .main-footer__newsletter__form .mahlara-btn__text {
  font-size: 15px;
}

.main-footer--two .main-footer__newsletter__form .mahlara-btn__text__icon {
  margin-left: 3px;
  font-size: 14px;
  color: inherit;
}

.main-footer--two .main-footer__newsletter__form .mahlara-btn__text__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.main-footer--two .main-footer__newsletter__form .mahlara-btn:hover .mahlara-btn__text {
  color: var(--mahlara-white, #ffffff);
}

.main-footer--two .footer-widget__title {
  margin-bottom: 25px;
}

.main-footer--two .footer-widget--links,
.main-footer--two .footer-widget--blog {
  margin-top: 0px;
}

.main-footer--two .main-footer__shape-1,
.main-footer--two .main-footer__shape-2 {
  max-width: 100%;
  height: auto;
  position: absolute;
}

.main-footer--two .main-footer__shape-1 {
  top: 0px;
  left: 0px;
  animation: moveX2 2s linear infinite;
}

.main-footer--two .main-footer__shape-2 {
  right: 66px;
  bottom: 153px;
  animation: rotate 7s linear infinite;
}

@media (max-width: 1599px) {
  .main-footer--two .main-footer__shape-2 {
    right: 20px;
    bottom: 100px;
  }
}

@media (max-width: 1399px) {
  .main-footer--two .main-footer__shape-2 {
    display: none;
  }
}

.footer-widget--links,
.footer-widget--blog {
  margin-top: 20px;
}

.footer-widget--links-1 {
  padding-left: 70px;
}

@media (max-width: 1199px) {
  .footer-widget--links-1 {
    padding-left: 40px;
  }
}

@media (max-width: 991px) {
  .footer-widget--links-1 {
    padding-left: 20px;
  }
}

@media (max-width: 767px) {
  .footer-widget--links-1 {
    margin-top: 0px;
    padding-left: 0px;
  }
}

.footer-widget--links-2 {
  padding-left: 70px;
}

@media (max-width: 1199px) {
  .footer-widget--links-2 {
    padding-left: 40px;
  }
}

@media (max-width: 991px) {
  .footer-widget--links-2 {
    margin-top: 0px;
    padding-left: 0px;
  }
}

.footer-widget--blog {
  padding-left: 12px;
}

@media (max-width: 1199px) {
  .footer-widget--blog {
    margin-top: 0px;
    padding-left: 0px;
  }
}

.footer-widget__title {
  margin-bottom: 34px;
  font-size: 22px;
  color: var(--mahlara-white, #ffffff);
  font-weight: 700;
  line-height: 1.363;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .footer-widget__title {
    margin-bottom: 25px;
  }
}

.footer-widget__logo {
  display: inline-flex;
  margin-bottom: 31px;
}

.footer-widget__logo img {
  max-width: 100%;
  height: auto;
}

.footer-widget__text {
  margin-bottom: 22px;
  color: var(--mahlara-white, #ffffff);
}

.footer-widget__links-box {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.footer-widget__links {
  margin: 0px;
}

.footer-widget__links li+li {
  margin-top: 10px;
}

.footer-widget__links li {
  font-size: 16px;
  color: var(--mahlara-white, #ffffff);
}

.footer-widget__links li a {
  color: inherit;
}

.footer-widget__links li a:hover {
  color: var(--mahlara-primary, #f5c835);
}

.footer-widget__links li a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.footer-widget__links li a:hover {
  background-size: 100% 1px;
}

.footer-widget__links--1 li {
  position: relative;
  padding-left: 15px;
}

/* .footer-widget__links--1 li::before {
  content: "\f068";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-size: 8px;
  color: var(--mahlara-white, #ffffff);
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  transition: all 500ms ease;
} */

.footer-contact {
  display: flex;
  height: 26px;
  margin: 34px 0;
  align-items: center;
}

.footer-contact a {
  color: white;
  padding: 0 12px;
}

.footer-contact-container {
  position: relative;
  bottom: 20px;
}

.footer-widget__links--1 li:hover::before {
  color: var(--mahlara-primary, #f5c835);
}

.footer-widget__blog {
  margin: 0px;
}

.footer-widget__blog li+li {
  margin-top: 30px;
}

.footer-widget__blog li {
  display: grid;
  grid-template-columns: 75px auto;
  align-items: start;
  grid-gap: 19px;
}

.footer-widget__blog__image {
  width: 75px;
  border-radius: 5px;
}

.footer-widget__blog__image img {
  width: 100%;
  display: block;
  border-radius: inherit;
}

.footer-widget__blog__date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mahlara-white, #ffffff);
}

.footer-widget__blog__icon {
  display: inline-flex;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--mahlara-primary, #f5c835);
}

.footer-widget__blog__title {
  margin: 0px;
  font-size: 16px;
  font-weight: 600;
  color: var(--mahlara-white, #ffffff);
  line-height: 1.375;
}

.footer-widget__blog__title a {
  color: inherit;
}

.footer-widget__blog__title a:hover {
  color: var(--mahlara-primary, #f5c835);
}

.footer-widget__blog__title a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.footer-widget__blog__title a:hover {
  background-size: 100% 1px;
}



/************************* inner banner **********************/


.innerpage_bnr {
  position: relative;

  background-image: url(../img/inner-banner.png);
  margin-bottom: 30px;
  padding: 90px 10px;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.7s all;
  -webkit-transition: 0.7s all;
  background-attachment: inherit;
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}


.innerpage_bnr.banner_cnt h6 {
  font-size: 40px;
  color: #161a4a;
  text-align: left;
  text-transform: capitalize;
  margin-top: 0;
  position: relative;
  top: -10px;
  /* left: 6%; */
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 1px;
  font-weight: bold;
  font-weight: 700;
  text-shadow: 2px 4px 6px #5b1e7b94;
  margin: 0 25px;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  margin-top: 0;
  padding-top: 70px;
  padding-bottom: 70px;
  overflow: hidden;
  background-color: var(--mahlara-white, #ffffff);
}

@media (max-width: 1199px) {
  .page-header {
    padding-top: 200px;
    padding-bottom: 150px;
  }
}

@media (max-width: 767px) {
  .page-header {
    margin-top: 0px;
    padding-top: 210px;
    padding-bottom: 120px;
  }
}

.page-header__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

@media (min-width: 1800px) {
  .page-header__col {
    width: 100%;
  }
}

@media (min-width: 1800px) {
  .page-header__content {
    max-width: 600px;
  }
}

.page-header__title {
  margin-bottom: 10px;
  font-size: 40px;
  color: var(--mahlara-black2, #222222);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.166;
}

@media (max-width: 1199px) {
  .page-header__title {
    font-size: 55px;
  }
}

@media (max-width: 991px) {
  .page-header__title {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .page-header__title {
    font-size: 40px;
  }
}

@media (max-width: 440px) {
  .page-header__title {
    font-size: 35px;
  }
}

.page-header__image {
  width: 933px;
  height: 100%;
  position: relative;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
  background-color: var(--mahlara-white, #ffffff);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 531.000000"><g transform="translate(0.000000,531.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M650 5296 c0 -7 -10 -20 -22 -29 -66 -43 -205 -207 -274 -322 -68 -115 -135 -269 -167 -385 -119 -441 -101 -906 58 -1460 46 -163 61 -207 91 -278 8 -18 14 -40 14 -50 0 -9 7 -26 15 -36 8 -11 15 -28 15 -37 0 -10 6 -30 14 -46 8 -15 31 -68 52 -118 35 -85 58 -138 141 -315 34 -74 45 -98 77 -173 35 -82 44 -104 59 -142 8 -22 22 -59 31 -82 41 -108 53 -147 89 -273 140 -493 120 -878 -59 -1155 -41 -63 -122 -147 -199 -206 -56 -43 -240 -139 -265 -139 -7 0 -33 -7 -59 -15 -25 -8 -66 -18 -91 -23 -27 -6 1694 -10 4393 -11 l4437 -1 0 2655 0 2655 -4175 0 c-3550 0 -4175 -2 -4175 -14z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 531.000000"><g transform="translate(0.000000,531.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M650 5296 c0 -7 -10 -20 -22 -29 -66 -43 -205 -207 -274 -322 -68 -115 -135 -269 -167 -385 -119 -441 -101 -906 58 -1460 46 -163 61 -207 91 -278 8 -18 14 -40 14 -50 0 -9 7 -26 15 -36 8 -11 15 -28 15 -37 0 -10 6 -30 14 -46 8 -15 31 -68 52 -118 35 -85 58 -138 141 -315 34 -74 45 -98 77 -173 35 -82 44 -104 59 -142 8 -22 22 -59 31 -82 41 -108 53 -147 89 -273 140 -493 120 -878 -59 -1155 -41 -63 -122 -147 -199 -206 -56 -43 -240 -139 -265 -139 -7 0 -33 -7 -59 -15 -25 -8 -66 -18 -91 -23 -27 -6 1694 -10 4393 -11 l4437 -1 0 2655 0 2655 -4175 0 c-3550 0 -4175 -2 -4175 -14z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

@media (max-width: 1799px) {
  .page-header__image {
    display: none;
  }
}

.page-header__image::after {
  content: "";
  width: calc(100% - 15px);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--mahlara-primary, #f5c835);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 540.000000"><g transform="translate(0.000000,540.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M655 5390 c3 -5 -6 -20 -21 -32 -234 -198 -403 -506 -478 -868 -43 -207 -59 -496 -36 -665 5 -38 12 -97 15 -130 7 -80 52 -313 80 -420 36 -135 74 -261 91 -303 8 -18 14 -39 14 -47 0 -8 6 -29 14 -47 13 -31 22 -55 62 -160 9 -24 22 -56 29 -73 7 -16 23 -55 35 -85 24 -60 51 -121 112 -250 94 -201 138 -299 138 -311 0 -6 6 -23 14 -37 26 -52 46 -103 46 -120 0 -10 4 -22 9 -27 4 -6 25 -64 45 -130 59 -191 62 -206 107 -430 6 -33 14 -136 16 -228 4 -136 2 -187 -12 -260 -30 -153 -73 -266 -138 -366 -41 -63 -204 -222 -252 -246 -22 -10 -47 -24 -55 -30 -36 -28 -248 -105 -290 -106 -14 0 -34 -4 -45 -9 -11 -5 1931 -9 4413 -9 l4432 -1 0 2700 0 2700 -4176 0 c-2697 0 -4173 -3 -4169 -10z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 540.000000"><g transform="translate(0.000000,540.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M655 5390 c3 -5 -6 -20 -21 -32 -234 -198 -403 -506 -478 -868 -43 -207 -59 -496 -36 -665 5 -38 12 -97 15 -130 7 -80 52 -313 80 -420 36 -135 74 -261 91 -303 8 -18 14 -39 14 -47 0 -8 6 -29 14 -47 13 -31 22 -55 62 -160 9 -24 22 -56 29 -73 7 -16 23 -55 35 -85 24 -60 51 -121 112 -250 94 -201 138 -299 138 -311 0 -6 6 -23 14 -37 26 -52 46 -103 46 -120 0 -10 4 -22 9 -27 4 -6 25 -64 45 -130 59 -191 62 -206 107 -430 6 -33 14 -136 16 -228 4 -136 2 -187 -12 -260 -30 -153 -73 -266 -138 -366 -41 -63 -204 -222 -252 -246 -22 -10 -47 -24 -55 -30 -36 -28 -248 -105 -290 -106 -14 0 -34 -4 -45 -9 -11 -5 1931 -9 4413 -9 l4432 -1 0 2700 0 2700 -4176 0 c-2697 0 -4173 -3 -4169 -10z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.page-header__image__main {
  width: calc(100% - 30px);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 549.000000"><g transform="translate(0.000000,549.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M668 5476 c-2 -7 -24 -31 -50 -53 -41 -36 -89 -87 -153 -164 -24 -28 -78 -108 -88 -129 -4 -8 -16 -28 -26 -45 -25 -39 -75 -142 -106 -220 -44 -108 -89 -284 -105 -405 -29 -227 -32 -274 -27 -404 10 -270 62 -594 132 -817 8 -26 15 -54 15 -63 0 -8 6 -30 14 -48 7 -18 21 -60 31 -93 9 -33 23 -72 31 -87 8 -14 14 -33 14 -42 0 -8 6 -30 14 -48 8 -18 22 -53 31 -78 21 -55 43 -106 61 -143 8 -16 14 -33 14 -38 0 -9 26 -67 100 -224 68 -144 97 -209 120 -265 12 -30 26 -64 32 -74 6 -11 14 -31 18 -45 5 -14 18 -51 30 -81 26 -68 86 -248 105 -315 7 -27 21 -75 29 -106 9 -31 16 -64 16 -75 0 -10 6 -48 14 -84 8 -36 20 -125 27 -198 31 -335 -51 -631 -227 -821 -89 -97 -236 -196 -347 -237 -92 -33 -163 -54 -187 -55 -14 0 -34 -4 -45 -9 -11 -5 1931 -9 4413 -9 l4432 -1 0 2745 0 2745 -4164 0 c-3498 0 -4165 -2 -4168 -14z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 549.000000"><g transform="translate(0.000000,549.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M668 5476 c-2 -7 -24 -31 -50 -53 -41 -36 -89 -87 -153 -164 -24 -28 -78 -108 -88 -129 -4 -8 -16 -28 -26 -45 -25 -39 -75 -142 -106 -220 -44 -108 -89 -284 -105 -405 -29 -227 -32 -274 -27 -404 10 -270 62 -594 132 -817 8 -26 15 -54 15 -63 0 -8 6 -30 14 -48 7 -18 21 -60 31 -93 9 -33 23 -72 31 -87 8 -14 14 -33 14 -42 0 -8 6 -30 14 -48 8 -18 22 -53 31 -78 21 -55 43 -106 61 -143 8 -16 14 -33 14 -38 0 -9 26 -67 100 -224 68 -144 97 -209 120 -265 12 -30 26 -64 32 -74 6 -11 14 -31 18 -45 5 -14 18 -51 30 -81 26 -68 86 -248 105 -315 7 -27 21 -75 29 -106 9 -31 16 -64 16 -75 0 -10 6 -48 14 -84 8 -36 20 -125 27 -198 31 -335 -51 -631 -227 -821 -89 -97 -236 -196 -347 -237 -92 -33 -163 -54 -187 -55 -14 0 -34 -4 -45 -9 -11 -5 1931 -9 4413 -9 l4432 -1 0 2745 0 2745 -4164 0 c-3498 0 -4165 -2 -4168 -14z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.page-header__shape {
  max-width: 100%;
  height: auto;
  margin: auto 0px;
  position: absolute;
  top: -72px;
  right: -14px;
  bottom: 0px;
  z-index: 1;
  animation: moveX2 2s ease-in-out infinite;
}

@media (max-width: 1199px) {
  .page-header__shape {
    display: none;
  }
}

@media (min-width: 1800px) {
  .page-header__shape {
    left: 79px;
    right: auto;
  }
}

.mahlara-breadcrumb {
  margin: 0;
  padding: 5px 15.5px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px 0;
  flex-wrap: wrap;
  border-radius: 5px;
  background-color: var(--mahlara-white, #ffffff);
}

.mahlara-breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--mahlara-text, #636363);
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.25;
}

@media (max-width: 575px) {
  .mahlara-breadcrumb li {
    font-size: 15px;
  }
}

.mahlara-breadcrumb li:not(:last-of-type)::after {
  content: "/";
  margin-left: 6px;
  margin-right: 6px;
  font-size: 16px;
}

.mahlara-breadcrumb li span,
.mahlara-breadcrumb li a {
  display: inline-flex;
}

.mahlara-breadcrumb li:not(:first-child) span {
  color: var(--mahlara-primary, #f5c835);
}

.mahlara-breadcrumb li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.mahlara-breadcrumb li a:hover {
  background-size: 100% 1px;
}

.mahlara-breadcrumb li a:hover {
  color: var(--mahlara-primary, #f5c835);
}




.main-button {
  transform: rotate(270deg);
  position: fixed;
  font-family: 'Inter';
  font-weight: 400;
  top: 44%;
  right: -88px;
  z-index: 1;
  background-color: #0B4976;
  border-color: #0B4976;
  font-size: 16px;
  padding: 3px 13px;
  border: solid 1px #0B4976;
  color: white;
  line-height: 1.5;
  letter-spacing: 1.68px;
  border-radius: 12px 12px 0px 0px;
}


.side-button a:hover {
  color: white;
}

h4.testimonials-one__item__name span {
  font-size: 14px;
  line-height: 1.5;
  text-transform: lowercase;
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
}


/************************************ Responsive Media Query *******************************/
@media only screen and (max-width: 600px) {
  .about-three__content__left {
    width: 100%;
    position: relative;
    right: 0;
  }

  .about-three__content__image {
    display: inline-block;
    position: relative;
    width: 396px;
    height: 368px;
    overflow: hidden;
    right: 0;
  }

  .about-three__content__image {
    margin-top: 42px !important;
  }

  .facilities-bg {
    background-image: url(../img/icons/facilities-bg.png);
    padding: 34px 19px 38px 38px;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .flex-btn {
    display: block;
  }

  .flex-btn .mahlara-btn {
    margin-top: -110px;
  }

  .footer-about {
    display: block;
    align-items: center;
    background-color: white;
    margin: 58px 0 40px;
    padding: 22px;
    border-radius: 20px;
  }

  .main-footer__bottom {
    background-color: #03243F;
    border-top: 1px solid gray;
    margin-top: 43px;
  }

  .gallery-page__card {
    margin: auto;
  }
}

@media only screen and (max-width: 992px) and (min-width: 601px) {
  .about-three__content__left {
    width: 100%;
    position: relative;
    right: 0;
  }

  .about-three__content__image {
    display: inline-block;
    position: relative;
    width: 396px;
    height: 368px;
    overflow: hidden;
    right: 0;
  }

  .about-three__content__image {
    margin-top: 42px !important;
  }

  .facilities-bg {
    background-image: url(../img/icons/facilities-bg.png);
    padding: 34px 19px 38px 38px;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media only screen and (min-width: 1600px) {
  .about-three__image__shape1 {
    position: absolute;
    top: 338px;
    left: 261%;
    bottom: 0px;
    margin: auto 0px;
    /* animation: zoomIn3 2.5s infinite alternate; */
  }
}



/*--------------------------------------------------------------
# whatsup icon
--------------------------------------------------------------*/
.whatsapp-click-icon {
  position: fixed;
  z-index: 8888;
  right: 15px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  animation: button-animation-normal 1s;
  -webkit-animation: button-animation-normal 1s;
  animation-fill-mode: forwards;
  animation: breathe 2s ease-in-out infinite;
}

@keyframes button-animation-normal {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

@-webkit-keyframes button-animation-normal {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

.whatsapp-click-icon.whatsapp-animate {
  animation: button-animation 1s;
  -webkit-animation: button-animation 1s;
  animation-fill-mode: forwards;
}

@keyframes button-animation {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(0);
  }
}

@-webkit-keyframes button-animation {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(0);
  }
}

.whatsapp-click-icon p {
  cursor: pointer;
  margin: 0;
  color: #000;
  padding: 5px 10px;
  background-color: #fff;
  border-radius: 150px;
  margin-right: 10px;
}

.whatsapp-click-icon svg {
  opacity: 1;
  cursor: pointer;
  width: 60px;
  height: 60px;
  transition: all linear 0.5s;

}

.whatsapp-click-icon:hover svg {
  opacity: 0.8;

}

.whatsapp-container {
  position: fixed;
  z-index: 88888;
  bottom: -400px;
  right: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.whatsapp-inner-main {
  background: #e6ddd4;
  padding: 20px 20px 20px 10px;
  position: relative;
  z-index: 2;
  height: 260px;
}

.whatsapp-inner-main:before {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  opacity: .08;
  background-image: url("../img/whatsapp.png");
}

.whatsapp-close {
  position: absolute;
  transition: all .4s;
  cursor: pointer;
  right: 8px;
  top: 6px;
  background-color: #000;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  width: 20px;
  height: 20px;
  line-height: 20px;
}

.whatsapp-close:hover {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
}

.whatsapp-msg-container {
  padding: 7px 14px 6px;
  background-color: #fff;
  border-radius: 0 8px 8px;
  position: relative;
  transform-origin: center top;
  z-index: 2;
  box-shadow: rgb(0 0 0 / 13%) 0 1px 0.5px;
  margin-top: 4px;
  margin-left: 15px;
  max-width: calc(100% - 40px);
  font-size: 14px;
  font-family: Segoe UI, Helvetica Neue, Helvetica, Lucida Grande, Arial, Ubuntu, Cantarell, Fira Sans, sans-serif;
}

.whatsapp-msg-container p span.whatsapp-msg-bold {
  font-weight: bold;
  padding-bottom: 15px;
  display: inline-block;
}

.whatsapp-msg-container:before {
  position: absolute;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  top: 0;
  left: -12px;
  width: 12px;
  height: 19px;
}

.whatsapp-msg-type-container {
  position: relative;
  padding: 12px 15px;
  background: #f0f0f0;
}

.whatsapp-msg-type-container ul li input {
  height: 48px !important;
  line-height: 32px;
  padding: 0 10px 0 15px;
  font-size: 14px;
  resize: none;
  width: 100%;
  border: none;
  border-radius: 24px;
  outline: 0;
  font-family: Segoe UI, Helvetica Neue, Helvetica, Lucida Grande, Arial, Ubuntu, Cantarell, Fira Sans, sans-serif;
}

.whatsapp-msg-type-container ul li a {
  background-color: #25d366;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
  line-height: 26px;
  text-align: center;

}

.whatsapp-msg-type-container ul li a svg {
  top: 50%;
  transform: translateY(32%);
}

.whatsapp-msg-type-container ul {
  list-style-type: none;
  padding: 0;
  left: 0;
  position: relative;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.whatsapp-msg-type-container ul li {
  display: inline-block;
  margin-right: 10px;
}

.whatsapp-msg-type-container ul li:last-child {
  margin-right: 0;
}