

/* 
.line {
  display: block !important;
  text-align: center !important;
  white-space: normal !important;
}


.word {
  display: inline-block !important;
  white-space: pre-wrap !important;
  vertical-align: top !important;
} */


a {
  text-decoration: none;
}
/* body{overflow: hidden;} */

/* Navbar container */
.nav-bar {
  width: fit-content;
}

/* Menu UL */
.nav-menu.nav-desktop {
  display: flex;
  justify-content: center; /* change to flex-start / flex-end if needed */
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

/* Generic nav items */
.nav-item {
  position: relative;
}

/* Generic nav link */
.nav-item {
  text-decoration: none;
  font-family: "Gotham-Book";
  font-weight: normal !important;
  color: #747373;
  font-size: 14px;
  padding: 1px 0;
  transition: all 0.5s ease;
  border-bottom: 1px solid transparent;
}
.nav-item.active {
  border-color: black;
  color: black;
}
.nav-item:hover {
  border-color: black;
  color: black;
}
/* --------------------------------------------my css Start---------- */

.hamburger {
  border: 1px solid gray;
  border-radius: 4px;
  padding: 4px;
  overflow: hidden;
  display: none;
}
.hamburger .line {
  width: 24px;
  height: 2px;
  /* background: black; */
  background: gray;
  display: block;
  margin: 4px auto;
  border-radius: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* .hamburger:active{
 background: red;
} */
.hamburger:hover {
  cursor: pointer;
}

/* ONE */
#hamburger-1.is-active {
  background: black;
}
#hamburger-1.is-active .line {
  background: white;
}

#hamburger-1.is-active .line:nth-child(2) {
  opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(45deg);
  -ms-transform: translateY(6px) rotate(45deg);
  -o-transform: translateY(6px) rotate(45deg);
  transform: translateY(6px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(-45deg);
  -ms-transform: translateY(-6px) rotate(-45deg);
  -o-transform: translateY(-6px) rotate(-45deg);
  transform: translateY(-6px) rotate(-45deg);
}

.top-nav-spacing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.top-nav-spacing {
  /* padding: 8px 24px; */
  padding: 10px 0;
}

.back-to-top {
  background-color: #fff;
}
.back-to-top a {
  display: block;
  color: #000;
  text-decoration: none;
  padding-top: 15px;
  padding-bottom: 12px;
  text-transform: uppercase;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid #a99ca778;
}
/* --------------------------------------------my css End---------- */
/** header css **/
.header_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  z-index: 15;
  background: #fff;
  z-index: 9999;
  transition: top 0.5s;
  border-bottom: 2px solid #e0e0e075;
}

.header_wrapper.sticky {
  position: fixed;
  /* top: -84px; */
}
.logo {
  /* width: 60px; */
  height: 75px;
}
.logo img {
  width: 80%;
  height: 80%;
  margin-top: 12px;
  object-fit: contain;
}

.backtop-section {
  background: #1c1c1c;
  padding: 15px;
  text-align: center;
  color: #1c1c1c;
  font-size: 18px;
  position: relative;
  z-index: 500;
  max-width: 1620px;
  margin: 0 auto;
  width: 100%;
}

.backtop-section a {
  color: #fff;
  font-family: "Roboto", sans-serif;
}

/* ----- Menu ------ */
ul {
  list-style-type: none;
}
.main-menu {
  position: absolute;
  width: fit-content;
  top: 106%;
  right: 0.3%;
  z-index: -1;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  opacity: 0;
  height: 0;
  justify-content: start;
  padding: 3rem 2rem;
  gap: 1rem;
  display: none;
}
.main-menu li {
  width: 100%;
  border-bottom: 1px solid transparent;
  /* padding: 1rem 7rem; */
  transition: border-color 0.3s ease;
  border-radius: 6px;
  cursor: pointer;
}
.main-menu li:hover {
  /* border-color: black; */
  background: #efefef;
}
.main-menu li a {
  font-family: "Gotham-Medium";
  font-weight: normal !important;
  color: #747373;
  font-size: 1rem;
  /* padding: 0 2rem; */
  display: inline-block;
  text-decoration: none;
  padding: 1rem 7rem;
  transition: all 0.5s ease;
}

.main-menu li a.active {
  color: black;
}

.main-menu li a:hover {
  /* border-color: black; */
}


/* ---------------> */
.header_wrapper section{
  overflow:visible;
}
/* Position submenu */
.nav-item.dropdown {
  position: relative;
}

.nav-item .dropdown-menu {
  display: none;
  position: absolute;
  top: 115%; /* just below parent */
  left: 0;
  background: #fff;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  min-width: 180px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  z-index: 99;
}

.nav-item .dropdown-menu li {
  padding: 0;
}

.nav-item .dropdown-menu li a {
  display: block;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.nav-item .dropdown-menu li a:hover {
  background: #f5f5f5;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.main-menu li.submenu a {
      padding: 1rem 9rem;
}

/* ---------------- FOOTER ------------------ */

.footer {
  background-color: #fdfbf5;
  /* padding: 40px 0px 0px 0px; */
  color: #333;
  width: 100%;
}

.footer-container {
  width: 100%;
  /* display: flex; */
  /* flex-direction: column; */
  /* gap: 3rem; */
}

.footer-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  gap: 40px;
  padding: 3rem 0;
  align-items: flex-start;
}

.footer-logo img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
}

.footer-logo p {
  margin: 10px 0 0;
  font-weight: bold;
  color: #2e1f70;
}
.footer-map {
  width: 700px;
  height: 400px;
  align-items: center;
  border: 0.6px solid #6e6d72;
  border-radius: 12px;
  overflow: hidden;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.footer ul {
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
}

.footer-links ul li {
  width: fit-content;
  padding: 0;
  list-style: none;
  list-style-type: none;
  transition: all 0.5s ease;
  border-bottom: 1px solid transparent;
}

.footer-links ul li:hover {
  border-color: black;
}

.footer-content h4 {
  font-family: "Gotham-Medium";
  font-weight: normal !important;
  margin-bottom: 14px;
  color: #6b8092;
}

.footer-links li {
  margin-bottom: 8px;
  cursor: pointer;
  color: #000000;
}

.location-section {
  max-width: 400px;
}

/* .location-section h4 {
  color: #607489;
  font-size: 14px;
  margin-bottom: 16px;
} */

.location-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.location-item .icon {
  font-size: 18px;
  margin-right: 10px;
}

.footer-links li,
.location-item .text {
  font-family: "Gotham-Book";
  font-size: 16px;
  line-height: 1.8;
  color: black;
}
.location-item a{
  transition: all 0.5s ease;
}
.location-item a:hover{
  text-decoration: underline;
  color: red;
}
.footer-links li {
  margin-bottom: 8px;
  cursor: pointer;
  color: #000000;
}
.footer-links li.active,
.footer-links ul li:hover {
  color: #6b8092;
  border-color:#6b8092;
  font-weight: bold;
}
/* --------- footer location End------- */

.footer-map iframe {
  border-radius: 12px;
}

.footer-bottom {
  /* margin-top: 40px; */
  border-top: 1px solid #eaeaea;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-socials a {
  margin-right: 15px;
  color: #333;
  font-size: 18px;
  text-decoration: none;
}

.footer-legal a {
  margin-left: 20px;
  color: #666;
  text-decoration: none;
}

.footer-legal p {
  display: inline;
  margin-right: 20px;
}

/* ---- social icon -------- */

.social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  padding: 3rem 0px;
}

.social-icons-desk {
  display: block;
}
.social-icons-mob {
  display: none;
}
.social-icons a img {
  width: 20px;
  height: 16px;
  transition: transform 0.2s ease;
}

.social-icons a:hover img {
  transform: scale(1.15);
}

/* ------ footer rule page ---------- */
.footer-rule-page {
  width: 100%;
  background: #f5f2e7;
}

.footer-bottom-bar {
  font-family: "Gilroy-Light";
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0px;
  font-size: 12px;
  color: black;
  flex-wrap: wrap;
}
.footer-right li[class="active"]{
  border-bottom: 1px solid black;
}
.footer-right a {
  color: black;
  text-decoration: none;
  font-size: 14px;
}
.footer-right {
  display: flex;
  gap: 2rem;
}
.footer-right li {
  border-bottom: 1px solid transparent;
  transition: all 0.5s ease;
  width: fit-content;
}

.footer-right li:hover {
  border-color: black;
}

.foo-submenu{
  display: flex;
  margin-bottom: 8px;
}
.foo-submenu li{
  margin-bottom: 0;
}
.foo-submenu span{
    font-size: 13px;
    display: flex
;
    align-items: center;
}
/* ----------- Back to top ----------------- */
.back-to-top {
  background-color: #fff;
}
.back-to-top a {
  font-family: "Gotham-Medium";
  display: block;
  color: #000;
  text-decoration: none;
  padding-top: 15px;
  padding-bottom: 12px;
  text-transform: uppercase;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid #a99ca778;
}

/* --------------- Header & Footer responsive ------------- */

@media (max-width: 1640px) {
  .top-nav-spacing {
    padding: 10px 1rem;
  }
}
@media (max-width: 1600px) {
  .top-nav-spacing {
    padding: 10px 4rem;
  }
}

@media (max-width: 1540px) {
  .top-nav-spacing {
    padding: 10px 2rem;
  }
}
@media (max-width: 1440px) {
  .top-nav-spacing {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1280px) {
  .top-nav-spacing {
    padding: 10px 0;
  }
}

@media (max-width: 1100px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links ul {
    flex-direction: row;
    column-gap: 1.5rem;
    row-gap: 0.5rem;
    flex-wrap: wrap;
  }

  .social-icon-desk {
    display: none !important;
  }
  .social-icons-mob {
    display: block;
  }
  .social-icons-mob div {
    padding: 0 !important;
  }
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-direction: row;
    justify-content: flex-start;
    margin-right: auto;
  }

  .social-icons-mob {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
  }

  .social-icons-mob .social-icons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-left: 300px;
  }

  .social-icons-mob .social-icons a img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 980px) {
  .nav-bar {
    display: none;
  }
  .hamburger {
    display: block;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-direction: row;
    justify-content: flex-start;
    margin-right: 200px;
  }

  .social-icons-mob {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
  }

  .social-icons-mob .social-icons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-left: 200px;
  }

  .social-icons-mob .social-icons a img {
    width: 24px;
    height: 24px;
  }

  .footer-links ul {
    column-gap: 1.5rem;
    row-gap: 0.5rem;
  }
}
@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
    align-items: flex-start;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-direction: row;
    justify-content: flex-start;
    margin-right: auto;
  }

  .footer-logo img {
    width: auto;
    height: auto;
    max-width: 200px;
  }

  .footer-logo p {
    margin-top: 10px;
    font-size: 16px;
  }

  .social-icons-mob {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
  }

  .social-icons-mob .social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 100px;
  }

  .social-icons-mob .social-icons a img {
    width: 24px;
    height: 24px;
  }

  .footer-map {
    width: 100%;
    height: 266px;
  }

  .location-section {
    max-width: 100%;
  }

  .footer-links ul {
    flex-direction: column;
    font-size: 20px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }

  .footer-right a {
    margin: 0;
  }

  .footer-right {
    display: flex;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .main-menu {
    top: 0;
    margin-top: 60px;
    width: 100%;
  }
  .main-menu li {
    display: flex;
    justify-content: start;
    align-items: center;
  }
  .main-menu li a{
    padding-left: 1rem;
  }
  .main-menu li.submenu a {
    padding: 1rem 9rem;
    padding-left: 2rem;
  }

  /* Footer: logo and social icon sizing for 768px */
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-direction: row;
    justify-content: flex-start;
    margin-right: auto;
  }

  .footer-logo img {
    width: auto;
    height: auto;
    max-width: 200px;
  }

  .social-icons-mob {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
  }

  .social-icons-mob .social-icons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-left: 350px;
  }

  .social-icons-mob .social-icons a img {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 40px;
  }
  .hamburger {
    border-radius: 3px;
    padding: 4px;
  }
  .hamburger .line {
    width: 20px;
    height: 1.5px;
    margin: 3px auto;
  }
  #hamburger-1.is-active .line:nth-child(1) {
    -webkit-transform: translateY(3px) rotate(45deg);
    -ms-transform: translateY(3px) rotate(45deg);
    -o-transform: translateY(3px) rotate(45deg);
    transform: translateY(3px) rotate(45deg);
  }
  #hamburger-1.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-6px) rotate(-45deg);
    -ms-transform: translateY(-6px) rotate(-45deg);
    -o-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-menu {
    top: 0;
    margin-top: 60px;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
    align-items: flex-start;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-direction: row;
    justify-content: flex-start;
    margin-right: auto;
  }

  .footer-logo img {
    width: auto;
    height: auto;
    max-width: 130px;
  }

  .social-icons-mob {
    display: flex;
    /*align-items: center;*/
    justify-content: flex-end;
    gap: 0.8rem;
  }

  .social-icons-mob .social-icons {
    display: flex;
    gap: 0.8rem;
    /*align-items: center;*/
    justify-content: flex-end;
    margin-left: 16px;
  }

  .footer-links ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-map {
    width: 100%;
    height: 200px;
  }

  .location-section {
    width: 100%;
  }
}


/* .nav-menu li:nth-child(6),
.main-menu li:nth-child(6) {
  display: none !important;
}

.footer-links ul li:nth-child(7){
  display: none !important;
} */