@import url("https://fonts.googleapis.com/css2?family=Bellefair&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bellefair&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Bellefair&family=Pathway+Extreme:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  /* font-family: "Raleway", serif; */
    font-family: "Quicksand", serif;
      font-weight: 400;
  
  /* font-weight: 400; */
  background: #dfdfdf;
  font-style: normal;
}
.main-width {
  width: 95%;
  margin: auto;
}

@media (min-width: 1024px) {
  .heading1 {
    font-size: 30px;

    color: #58595b;
    font-weight: 600;
  }
}

@media (max-width: 1023px) {
  .heading1 {
    font-size: 20px;

    color: #58595b;
    font-weight: 600;
  }
}
.heading1-para {
  color: #57585a;
  font-weight: 500;
}

.footer-para {
  color: #616161;
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown ul {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: 999;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.dropdown:hover ul {
  opacity: 1;
  visibility: visible;
}

.dropdown h1 {
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: all 0.5s linear 0s;
}

.dropdown li {
  padding: 10px;
  background: #2f2f2f;
  font-size: 15px;
  color: #999;
  text-align: left;
  width: 200px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown:hover li {
  opacity: 1;
  transform: translateY(0);
}

.dropdown li:hover {
  background-color: #292929;
}

.dropdown li:last-child {
  border-radius: 0 0 5px 5px;
}

.dropdown li:nth-child(1) {
  transition-delay: 0s;
}

.dropdown li:nth-child(2) {
  transition-delay: 0.1s;
}

.dropdown li:nth-child(3) {
  transition-delay: 0.2s;
}

.dropdown li:nth-child(4) {
  transition-delay: 0.3s;
}

.dropdown li:nth-child(5) {
  transition-delay: 0.4s;
}
.link {
  position: relative;
  display: inline-block;
  /* padding-bottom: 2px; */
}

.link:hover::after,
.link.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.link::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #58595b; /* Red underline */
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.45s ease-out;
}

.learn-more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

.learn-more {
  width: 12rem;
  height: auto;
}

.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 40px;
  height: 40px;
  background: #58595b;
  border-radius: 1.625rem;
}

.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: white;
}

.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 7px 0;
  margin: 0 0 0 1.85rem;
  color: #57585a;

  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

.learn-more:hover .circle {
  width: 100%;
}

.learn-more:hover .circle .icon.arrow {
  background: white;
  transform: translate(1rem, 0);
}

.learn-more:hover .button-text {
  color: white;
}

.accordion {
  /* background: white; */

  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
}

.accordion-item {
  border-bottom: 1px solid #58595b;
  padding-bottom: 20px;
}

.accordion-header {
  color: #58595b;
  font-size: 20px;
  font-weight: 500;
  padding: 15px;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header i {
  transition: transform 0.3s ease-in-out;
}

.accordion-header.active i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  color: #2f2f2f;
  overflow: hidden;
  /* background: #f9f9f9; */
  padding: 0px 30px;
  transition: max-height 0.5s ease-in-out;
}

.map {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

.dropdownd {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  height: 0;
  display: none; /* Hidden by default */
  transition: opacity 0.5s ease, height 0.5s ease;
}

.dropdown-toggle:hover {
  cursor: pointer;
}

.dropdownd.showing {
  display: block; /* Make it visible for animation */
}

.dropdownd.visible {
  opacity: 1;
}
.hamburger,
.close-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 18px;
  cursor: pointer;
  z-index: 20;
}

.hamburger .line,
.close-hamburger .line {
  width: 80%;
  height: 2px;
  background-color: #58595b;
  transition: all 0.8s ease;
}

.hamburger.active .line:nth-child(1),
.close-hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .line:nth-child(2),
.close-hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3),
.close-hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation styling */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%; /* Change this from left to right */
  height: 100%;
  background-color: #191919;
  color: white;
  transition: right 0.8s ease; /* Update the transition to 'right' */
  z-index: 15;
  padding-top: 20px;
}

.mobile-nav.active {
  right: 0; /* When active, the nav will slide in from the right */
}


.mobile-nav ul {
  list-style: none;
  padding: 20px;
}

.mobile-nav ul li {
  padding: 15px 0;
}

.mobile-nav ul li a {
  /*color: #fff;*/
  text-decoration: none;
}

/* Style for the close hamburger as a cross (X) */
.close-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30px;

  border-radius: 50%;
  background-color: #fff;
  height: 30px;
  cursor: pointer;
  position: absolute;
  top: 45px;
  right: 20px;
  z-index: 20;
}

.close-hamburger .line {
  position: absolute;
  width: 50%;
  left: 25%;
  height: 3px;
  background-color: #000;
  transition: transform 0.3s ease;
}

/* Transform lines into an X */
.close-hamburger .line:nth-child(1) {
  transform: rotate(45deg);
}

.close-hamburger .line:nth-child(2) {
  transform: rotate(-45deg);
}

/* Prevent page scroll when nav is open */
/* Ensure the mobile navigation is scrollable */
.mobile-nav {
  overflow-y: auto;
}

/* Prevent the body from scrolling when nav is open */
body.nav-open {
  overflow: hidden;
}
