@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&amp;family=Vidaloka&amp;display=swap");
* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  overflow-x: hidden;
}

#root {
  width: 100%;
  position: relative;
}

main {
  width: 100%;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

ul {
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

input,
textarea {
  background: none;
  border: none;
  outline: none;
}

img {
  max-width: 250%;
  max-height: 120%;
}

.sticky-header {
  position: sticky;
  top: 0;
  left: 0;
  transform: translate3d(0, 0, 0);
  z-index: 999;
  animation-name: fade-in-down;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  transition: all 0.4s;
}

@keyframes fade-in-down {
  0% {
    transform: translate3d(0, -50px, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 56px;
  width: 56px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  color: #fff;
  overflow: hidden;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.progress-wrap::after {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f062";
  text-align: center;
  line-height: 56px;
  font-size: 18px;
  color: #070610;
  left: 0;
  top: 0;
  height: 56px;
  width: 56px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 300ms linear;
}

.progress-wrap:hover::after {
  background-color: #070610;
  color: #dfeadc;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #070610;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 300ms linear;
}

.background-fill_btn {
  position: relative;
  display: block;
  background-color: #fb8500;
  padding: 0.8rem 1rem;
  border-radius: 50px;
  color: #fff;
  text-align: center;
}
.background-fill_btn span {
  position: relative;
  z-index: 1;
}
.background-fill_btn span i {
  margin-left: 0.6rem;
  transform: rotate(-40deg);
}
.background-fill_btn:after {
  content: "";
  position: absolute;
  top: 8%;
  left: 5px;
  width: 25%;
  height: 85%;
  background-color: #fdab4e;
  border-radius: 50%;
  transition: all 0.3s linear;
}
.background-fill_btn:hover::after {
  border-radius: 50px;
  width: calc(100% - 0.5625rem);
}

.header__section {
  background-color: #fff;
  width: 100%;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  transition: all 0.4s;
}
.header__section .header__content-wrapper {
  width: 100%;
}
.header__section .header__content-wrapper .header__content {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__section .header__content-wrapper .header__content .header__content-logo {
  height: 45px;
  width: 180px;
}
.header__section .header__content-wrapper .header__content .header__content-menu-wrapper .header__content-menu {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
.header__section .header__content-wrapper .header__content .header__content-menu-wrapper .header__content-menu li .nav-menu__item {
  font-size: 1rem;
  transition: all 0.2s linear;
}
.header__section .header__content-wrapper .header__content .header__content-menu-wrapper .header__content-menu li .nav-menu__item:hover {
  color: #f28f00;
}
.header__section .header__content-wrapper .header__content .header__content-menu-wrapper .header__content-dropdown {
  height: 100%;
  position: relative;
}
.header__section .header__content-wrapper .header__content .header__content-menu-wrapper .header__content-dropdown .nav-menu__item {
  display: flex;
  gap: 0.3rem;
  align-items: baseline;
}
.header__section .header__content-wrapper .header__content .header__content-menu-wrapper .header__content-dropdown .header__content-dropdown-menu {
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: calc(200% + 3px);
  left: 0;
  border-top: 2px solid #f28f00;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  transform: translateX(-20%);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  z-index: -1;
}
.header__section .header__content-wrapper .header__content .header__content-menu-wrapper .header__content-dropdown .header__content-dropdown-menu .dropdown__sub {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.header__section .header__content-wrapper .header__content .header__content-menu-wrapper .header__content-dropdown .header__content-dropdown-menu .dropdown__sub .menu-item {
  width: 100%;
  padding: 0.5rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  transition: all 0.3s linear;
}
.header__section .header__content-wrapper .header__content .header__content-menu-wrapper .header__content-dropdown .header__content-dropdown-menu .dropdown__sub .menu-item i {
  transform: translateX(-100%);
  opacity: 0;
  transition: inherit;
}
.header__section .header__content-wrapper .header__content .header__content-menu-wrapper .header__content-dropdown .header__content-dropdown-menu .dropdown__sub .menu-item:hover {
  background-color: #ffa948;
}
.header__section .header__content-wrapper .header__content .header__content-menu-wrapper .header__content-dropdown .header__content-dropdown-menu .dropdown__sub .menu-item:hover i {
  transform: translateX(0);
  opacity: 0.9;
}
.header__section .header__content-wrapper .header__content .header__content-menu-wrapper .header__content-dropdown .header__content-dropdown-menu .dropdown__sub .dropdown__sub-menu {
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: -2px;
  left: 100%;
  border-top: 2px solid #f28f00;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  transform: translateX(-20%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  z-index: -1;
}
.header__section .header__content-wrapper .header__content .header__content-menu-wrapper .header__content-dropdown .header__content-dropdown-menu .dropdown__sub .dropdown__sub-menu li .submenu-item {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  transition: all 0.3s linear;
}
.header__section .header__content-wrapper .header__content .header__content-menu-wrapper .header__content-dropdown .header__content-dropdown-menu .dropdown__sub .dropdown__sub-menu li .submenu-item:hover {
  background-color: #ffa948;
}
.header__section .header__content-wrapper .header__content .header__content-menu-wrapper .header__content-dropdown .header__content-dropdown-menu .dropdown__sub:hover .dropdown__sub-menu {
  visibility: visible;
  transform: translateX(0);
  opacity: 1;
}
.header__section .header__content-wrapper .header__content .header__content-menu-wrapper .header__content-dropdown:hover .header__content-dropdown-menu {
  visibility: visible;
  transform: translateX(0);
  opacity: 1;
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
}

.mobile-header__content-wrapper {
  position: fixed;
  top: 74px;
  left: 0;
  z-index: 998;
  width: 100%;
  height: 90vh; /* Ensure it takes full screen height */
  background: white;
  overflow-y: auto; /* Allows scrolling inside */
  display: none;
  flex-direction: column;
}
.mobile-header__content-wrapper .mobile-header__content {
  padding-top: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header-main-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1.125rem;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header-main-menu .mobile-header__link-span {
  width: 100%;
  position: relative;
  display: flex;
  align-items: baseline;
  flex-direction: column;
  gap: 0.5rem;
  background-color: #fde7cd;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: #1d293d;
  font-size: 1rem;
  font-weight: 600;
  z-index: 1;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header-main-menu .mobile-header__link-span span {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header-main-menu .mobile-header__link-span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 20%;
  height: 100%;
  background-color: #ffb45d;
  border-radius: 30%;
  opacity: 0;
  transition: all 0.4s linear;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header-main-menu .mobile-header__link-span:hover::after {
  opacity: 1;
  width: 100%;
  border-radius: 6px;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header-main-menu .mobile-header__link-span .mobile-header__link-dropdown-menu {
  width: 100%;
  max-height: 0px; /* Initially hidden */
  overflow: hidden;
  display: flex;
  transition: max-height 0.3s ease-in-out;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header-main-menu .mobile-header__link-span .mobile-header__link-dropdown-menu .mobile-header-dropdown__sub {
  width: 100%;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header-main-menu .mobile-header__link-span .mobile-header__link-dropdown-menu .mobile-header-dropdown__sub .menu-item {
  position: relative;
  display: flex;
  align-items: baseline;
  flex-direction: column;
  gap: 0.5rem;
  background-color: #fde7cd;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: #1d293d;
  font-size: 1rem;
  font-weight: 600;
  z-index: 1;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header-main-menu .mobile-header__link-span .mobile-header__link-dropdown-menu .mobile-header-dropdown__sub .menu-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 20%;
  height: 100%;
  background-color: #ffb45d;
  border-radius: 30%;
  opacity: 0;
  transition: all 0.4s linear;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header-main-menu .mobile-header__link-span .mobile-header__link-dropdown-menu .mobile-header-dropdown__sub .menu-item:hover::after {
  opacity: 1;
  width: 100%;
  border-radius: 6px;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header-main-menu .mobile-header__link-span .mobile-header__link-dropdown-menu .mobile-header-dropdown__sub .menu-item i {
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s linear;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header-main-menu .mobile-header__link-span .mobile-header__link-dropdown-menu .mobile-header-dropdown__sub .menu-item:hover i {
  transform: translateX(0);
  opacity: 0.9;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header-main-menu .mobile-header__link-span .mobile-header__link-dropdown-menu .mobile-header-dropdown__sub-menu {
  width: 100%;
  max-height: 0px; /* Initially hidden */
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  flex-direction: column;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header-main-menu .mobile-header__link-span .mobile-header__link-dropdown-menu .mobile-header-dropdown__sub-menu .submenu-item {
  width: 100%;
  position: relative;
  display: flex;
  align-items: baseline;
  flex-direction: row;
  gap: 0.5rem;
  background-color: #fde7cd;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: #1d293d;
  font-size: 1rem;
  font-weight: 600;
  z-index: 1;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header-main-menu .mobile-header__link-span .mobile-header__link-dropdown-menu .mobile-header-dropdown__sub-menu .submenu-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 20%;
  height: 100%;
  background-color: #ffb45d;
  border-radius: 30%;
  opacity: 0;
  transition: all 0.4s linear;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header-main-menu .mobile-header__link-span .mobile-header__link-dropdown-menu .mobile-header-dropdown__sub-menu .submenu-item:hover::after {
  opacity: 1;
  width: 100%;
  border-radius: 6px;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section {
  padding: 0 1.125rem;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__btn {
  position: relative;
  display: block;
  background-color: #fb8500;
  padding: 0.8rem 1rem;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__btn span {
  position: relative;
  z-index: 1;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__btn span i {
  margin-left: 0.5rem;
  transform: rotate(-50deg);
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__btn:after {
  content: "";
  position: absolute;
  top: 10%;
  left: 5px;
  width: 40px;
  height: 40px;
  background-color: #ffa640;
  border-radius: 50px;
  transition: all 0.4s linear;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__btn:hover::after {
  width: calc(100% - 0.5625rem);
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer {
  margin-top: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .contact-info .contact-info-wrapper {
  margin-top: 0.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: initial;
  justify-content: initial;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .contact-info .contact-info-wrapper .contact-info__content {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: baseline;
  justify-content: initial;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .location-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .location-info .location-info-wrapper {
  margin-top: 0.5rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: initial;
  justify-content: initial;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .location-info .location-info-wrapper .location-info__address {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: baseline;
  justify-content: initial;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .location-info .location-info-wrapper .location-info__address a {
  width: 100%;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .social-links-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .social-links-info .social-links-wrapper {
  margin: 1rem auto 3rem auto;
  width: 100%;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .social-links-info .social-links-wrapper ul {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .social-links-info .social-links-wrapper ul li {
  font-size: 1rem;
  display: inline-block;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .social-links-info .social-links-wrapper ul li a {
  height: 48px;
  width: 48px;
  text-align: center;
  line-height: 48px;
  transition: all 0.4s linear;
  border-radius: 50%;
  display: inline-block;
  background: #fde7cd;
  color: #f28f00;
}
.mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .social-links-info .social-links-wrapper ul li a:hover {
  background-color: #f28f00;
  color: #fff;
}

.footer_section {
  width: 100%;
}
.footer_section .footer-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer_section .footer-main .footer-main-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.footer_section .footer-main .footer-main-menu .footer-main-menu__logo img {
  width: 93.75vw;
  max-width: 300px;
  aspect-ratio: 4/1;
}
.footer_section .footer-main .footer-main-menu .footer-main-menu__nav ul {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.footer_section .footer-main .footer-main-menu .footer-main-menu__nav ul li {
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s linear;
}
.footer_section .footer-main .footer-main-menu .footer-main-menu__nav ul li:hover {
  color: #f28f00;
}
.footer_section .footer-main .footer-main-menu .footer-main-menu__social {
  height: 100%;
}
.footer_section .footer-main .footer-main-menu .footer-main-menu__social ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  height: 100%;
}
.footer_section .footer-main .footer-main-menu .footer-main-menu__social ul li {
  font-size: 1rem;
  display: inline-block;
}
.footer_section .footer-main .footer-main-menu .footer-main-menu__social ul li a {
  height: 48px;
  width: 48px;
  text-align: center;
  line-height: 48px;
  transition: all 0.4s linear;
  border-radius: 50%;
  display: inline-block;
  background: #fde7cd;
  color: #f28f00;
}
.footer_section .footer-main .footer-main-menu .footer-main-menu__social ul li a:hover {
  background-color: #f28f00;
  color: #fff;
}
.footer_section .footer-main .footer-main-body {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 2rem;
}
.footer_section .footer-main .footer-main-body .footer-main-body__details-number {
  font-size: 2rem;
  font-weight: 600;
  transition: all 0.2s linear;
}
.footer_section .footer-main .footer-main-body .footer-main-body__details-number:hover {
  color: #f28f00;
}
.footer_section .footer-main .footer-main-body .footer-main-body__details-email {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s linear;
}
.footer_section .footer-main .footer-main-body .footer-main-body__details-email li span {
  line-height: 1.6;
  word-spacing: 3px;
}
.footer_section .footer-main .footer-main-body .footer-main-body__details-email:hover {
  color: #f28f00;
}
.footer_section .footer-main .footer-main-body .footer-main-body__details-address {
  margin-top: 1rem;
  font-size: 0.8rem;
}
.footer_section .footer-main .footer-main-body .footer-main-body__details-address li span {
  line-height: 1.6;
  word-spacing: 3px;
}
.footer_section .footer-main .footer-main-body .footer-main-body__details-address li span br {
  display: none;
}
.footer_section .footer-main .footer-main-copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #dfeadc;
  padding: 0.8rem 0 3rem 0;
}
.footer_section .footer-main .footer-main-copyright p {
  font-size: 0.725rem;
  letter-spacing: 1.5px;
}
.footer_section .footer-main .footer-main-copyright ul {
  font-size: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer_section .footer-main .footer-main-copyright ul li a {
  transition: all 0.3s linear;
}
.footer_section .footer-main .footer-main-copyright ul li a:hover {
  color: #f28f00;
}

/* xs */
@media (min-width: 475px) {
  .footer_section .footer-main .footer-main-menu .footer-main-menu__nav ul {
    gap: 0.5rem;
  }
  .footer_section .footer-main .footer-main-body .footer-main-body__details-number {
    font-size: 2.5rem;
  }
  .footer_section .footer-main .footer-main-body .footer-main-body__details-email {
    margin-top: 1.2rem;
    font-size: 1.2rem;
  }
  .footer_section .footer-main .footer-main-body .footer-main-body__details-address {
    font-size: 0.9rem;
  }
  .footer_section .footer-main .footer-main-body .footer-main-body__details-address li span br {
    display: block;
  }
  .footer_section .footer-main .footer-main-copyright p {
    font-size: 0.8rem;
  }
}
/* sm */
@media (min-width: 640px) {
  .footer_section .footer-main .footer-main-menu .footer-main-menu__nav ul {
    gap: 0.8rem;
  }
  .footer_section .footer-main .footer-main-menu .footer-main-menu__nav ul li {
    font-size: 1rem;
  }
  .footer_section .footer-main .footer-main-copyright p {
    font-size: 0.8rem;
  }
}
/* md */
@media (min-width: 768px) {
  .mobile-header__content-wrapper .mobile-header__content {
    padding-top: 1rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
  .mobile-header__content-wrapper .mobile-header__content .mobile-header-main-menu {
    order: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1.125rem;
  }
  .mobile-header__content-wrapper .mobile-header__content .mobile-header-main-menu a {
    display: block;
    background-color: #fde7cd;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    color: #1d293d;
    font-size: 1rem;
    font-weight: 600;
  }
  .mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section {
    order: 1;
    padding: 0 1.125rem;
    display: flex;
    flex-direction: column;
  }
  .mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fb8500;
    padding: 0.8rem 1rem;
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
  }
  .mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__btn span {
    position: relative;
    z-index: 1;
  }
  .mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__btn span i {
    margin-left: 0.5rem;
    transform: rotate(-50deg);
  }
  .mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__btn:after {
    content: "";
    position: absolute;
    top: 10%;
    left: 5px;
    width: 40px;
    height: 40px;
    background-color: #ffa640;
    border-radius: 50px;
    transition: all 0.4s linear;
  }
  .mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__btn:hover::after {
    width: calc(100% - 0.5625rem);
  }
  .mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
  }
  .mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
  }
  .mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .contact-info .contact-info-wrapper {
    margin-top: 0.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: initial;
    justify-content: initial;
  }
  .mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .contact-info .contact-info-wrapper .contact-info__content {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: baseline;
    justify-content: initial;
  }
  .mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .location-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
  }
  .mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .location-info .location-info-wrapper {
    margin-top: 0.5rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: initial;
    justify-content: initial;
  }
  .mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .location-info .location-info-wrapper .location-info__address {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: baseline;
    justify-content: initial;
  }
  .mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .location-info .location-info-wrapper .location-info__address a {
    width: 100%;
  }
  .mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .social-links-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
  }
  .mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .social-links-info .social-links-wrapper {
    margin: 1rem auto 3rem auto;
    width: 100%;
  }
  .mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .social-links-info .social-links-wrapper ul {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
  }
  .mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .social-links-info .social-links-wrapper ul li {
    font-size: 1rem;
    display: inline-block;
  }
  .mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .social-links-info .social-links-wrapper ul li a {
    height: 48px;
    width: 48px;
    text-align: center;
    line-height: 48px;
    transition: all 0.4s linear;
    border-radius: 50%;
    display: inline-block;
    background: #fde7cd;
    color: #f28f00;
  }
  .mobile-header__content-wrapper .mobile-header__content .mobile-header__contact-section .contact-section__footer .social-links-info .social-links-wrapper ul li a:hover {
    background-color: #f28f00;
    color: #fff;
  }
  .footer_section .footer-main .footer-main-menu {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer_section .footer-main .footer-main-menu .footer-main-menu__logo img {
    width: 200px;
    aspect-ratio: 4/1;
  }
  .footer_section .footer-main .footer-main-menu .footer-main-menu__nav ul {
    gap: 0.5rem;
  }
  .footer_section .footer-main .footer-main-menu .footer-main-menu__nav ul li {
    font-size: 0.9rem;
  }
  .footer_section .footer-main .footer-main-menu .footer-main-menu__social ul {
    align-items: center;
    gap: 0.6rem;
  }
  .footer_section .footer-main .footer-main-menu .footer-main-menu__social ul li {
    font-size: 0.8rem;
  }
  .footer_section .footer-main .footer-main-menu .footer-main-menu__social ul li a {
    height: 38px;
    width: 38px;
    line-height: 38px;
  }
  .footer_section .footer-main .footer-main-body {
    margin-bottom: 2rem;
  }
  .footer_section .footer-main .footer-main-body .footer-main-body__details-number {
    font-size: 2.5rem;
  }
  .footer_section .footer-main .footer-main-body .footer-main-body__details-email {
    margin-top: 1.275rem;
    font-size: 1.275rem;
  }
  .footer_section .footer-main .footer-main-body .footer-main-body__details-address {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
  .footer_section .footer-main .footer-main-body .footer-main-body__details-address li span {
    line-height: 1.6;
    word-spacing: 3px;
  }
  .footer_section .footer-main .footer-main-body .footer-main-body__details-address li span br {
    display: initial;
  }
  .footer_section .footer-main .footer-main-copyright {
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    padding: 0.8rem 0 6rem 0;
  }
  .footer_section .footer-main .footer-main-copyright p {
    font-size: 0.875rem;
    letter-spacing: 1.5px;
  }
  .footer_section .footer-main .footer-main-copyright ul {
    font-size: 0.875rem;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
@media (max-width: 1023px) {
  #navBar {
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .mobile-menu-btn {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5rem;
    border: 1px solid #1d293d;
    padding: 0.5rem;
    border-radius: 0.2em;
  }
  .mobile-menu-close {
    display: none;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5rem;
    border: 1px solid #1d293d;
    padding: 0.5rem 0.675rem;
    border-radius: 0.2em;
  }
}
/* lg */
@media (min-width: 1024px) {
  .sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate3d(0, 0, 0);
    z-index: 999;
    animation-name: fade-in-down;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    transition: all 0.4s;
  }
  #navBar {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    padding: 10px 0 15px 0;
    transition: all 0.4s;
    will-change: transform;
  }
  .header__section {
    background: none;
  }
  .header__section .header__content-wrapper {
    background-color: #fff;
    border-radius: 50px;
  }
  .header__section .header__content-wrapper .header__content {
    padding: 1rem;
  }
  .header__section .header__content-wrapper .header__content .header__content-menu-wrapper .header__content-menu {
    display: flex;
    align-items: center;
    gap: 1.275rem;
  }
  .header__section .header__content-wrapper .mobile-menu-btn {
    display: none !important;
  }
  .header__section .header__content-wrapper .mobile-menu-close {
    display: none !important;
  }
  .mobile-header__content-wrapper {
    display: none;
  }
  .footer_section .footer-main {
    flex-direction: column;
    gap: 2rem;
  }
  .footer_section .footer-main .footer-main-menu {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .footer_section .footer-main .footer-main-menu .footer-main-menu__logo img {
    width: 240px;
    aspect-ratio: 4/1;
  }
  .footer_section .footer-main .footer-main-menu .footer-main-menu__nav ul {
    gap: 1rem;
  }
  .footer_section .footer-main .footer-main-menu .footer-main-menu__nav ul li {
    font-size: 1rem;
  }
  .footer_section .footer-main .footer-main-menu .footer-main-menu__nav ul li span {
    display: none;
  }
  .footer_section .footer-main .footer-main-menu .footer-main-menu__social ul {
    align-items: center;
    gap: 1rem;
  }
  .footer_section .footer-main .footer-main-menu .footer-main-menu__social ul li {
    font-size: 1rem;
  }
  .footer_section .footer-main .footer-main-menu .footer-main-menu__social ul li a {
    height: 48px;
    width: 48px;
    line-height: 48px;
  }
  .footer_section .footer-main .footer-main-body {
    margin-bottom: 2rem;
  }
  .footer_section .footer-main .footer-main-body .footer-main-body__details-number {
    font-size: 3rem;
  }
  .footer_section .footer-main .footer-main-body .footer-main-body__details-email {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
  .footer_section .footer-main .footer-main-body .footer-main-body__details-address {
    margin-top: 1rem;
    font-size: 1rem;
  }
  .footer_section .footer-main .footer-main-copyright {
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    padding: 0.8rem 0 6rem 0;
  }
  .footer_section .footer-main .footer-main-copyright p {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
  }
  .footer_section .footer-main .footer-main-copyright ul {
    font-size: 0.9rem;
  }
}
/* xl */
@media (min-width: 1280px) {
  .header__section .header__content-wrapper {
    padding: 0 2rem;
  }
  .header__section .header__content-wrapper .header__content .header__content-menu-wrapper .header__content-menu {
    gap: 2.5rem;
  }
  .header__section .header__content-wrapper .header__content .header__content-menu-wrapper .header__content-menu li .nav-menu__item {
    font-size: 1rem;
  }
  .footer_section .footer-main .footer-main-menu .footer-main-menu__logo img {
    width: 280px;
    aspect-ratio: 4/1;
  }
  .footer_section .footer-main .footer-main-menu .footer-main-menu__nav ul li {
    font-size: 1.125rem;
  }
  .footer_section .footer-main .footer-main-menu .footer-main-menu__social ul li {
    font-size: 1.125rem;
  }
  .footer_section .footer-main .footer-main-body .footer-main-body__details-number {
    font-size: 4rem;
  }
  .footer_section .footer-main .footer-main-body .footer-main-body__details-email {
    margin-top: 1.5rem;
    font-size: 1.875rem;
  }
  .footer_section .footer-main .footer-main-body .footer-main-body__details-address {
    font-size: 1.125rem;
  }
  .footer_section .footer-main .footer-main-copyright p {
    font-size: 1rem;
  }
  .footer_section .footer-main .footer-main-copyright ul {
    font-size: 1rem;
  }
}
/* 2xl */
/* @media (min-width: 1536px) {} */
@media (max-width: 240px) {
  .mobile-menu-btn {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1rem;
    border: 1px solid #1d293d;
    padding: 0.5rem;
    border-radius: 0.2em;
  }
  .mobile-menu-close {
    display: none;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1rem;
    border: 1px solid #1d293d;
    padding: 0.5rem 0.675rem;
    border-radius: 0.2em;
  }
}