@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

:root {
  --visional-primary: #9ad06f;
  --visional-secondary: #f9f9f9;
  --visional-cta: #85b540;
  --visional-cta-hover: #689627;
  --visional-white: #ffffff;
  --visional-black: #000000;
}

.navbar {
  background-color: var(--visional-white);
  height: 100px;
  border-bottom: 2px solid #f9f9f9;
}
.navbar-logo img {
  width: 150px;
  height: 150px;
}

.nav-item a {
  color: var(--ecom-black);
}
.navbar-nav .active {
  color: var(--visional-black);
}
.nav-link {
  transition: all 0.2s;
  position: relative;
}

.navbar-nav .nav-item.active a {
  color: #6ca116;
}

.navbar-nav .nav-item a:hover {
  color: #6ca116;
}
.deskNav a{
  color: #333;
}
#navLinks li {
  margin-right: 20px;
}

/* Hero-section */

.hero-section {
  height: auto;
}

.hero-section .polygon-background {
  width: 100%;
  height: auto;
  background-color: var(--visional-white);
}

.hero-section .text-content {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.visional-title {
  font-size: 50px;
  font-weight: 800;
  width: 70%;
  font-family: "Inter", sans-serif;
}
.visional-para1 {
  font-size: 20px;
  width: 70%;
}
.visional-para2 {
  font-size: 20px;
  width: 30%;
}

/* new css for image content*/
.hero-section .image-content {
  width: 100%;
  height: auto;
}
.hero-section .image-content img {
  width: 100%;
  object-fit: cover;
}
.mobile-carousel {
  display: none;
}

.hamburger {
  display: none;
}
#offcanvasRight {
  display: none;
}

/* feature-section */
.feature-text p {
  width: 70%;
}

.feature-section .btn {
  display: flex;
  column-gap: 40px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  border-style: none;
  background-color: var(--visional-cta);
  color: var(--visional-white);
  font-family: "Inter", sans-serif;
}
.feature-section .btn:hover {
  background-color: var(--visional-cta-hover);
}

.feature-section .card {
  border: 2px solid #94b664;
  background-color: #f6faf3;
}
.feature-section .card .card-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background-color: var(--visional-cta);
}
.card-circle img {
  width: 50px;
  height: 50px;
}
/* map-section */
.map-section {
  background-color: #f6f6f6;
  height: auto;
}
.map-title {
  font-size: 40px;
  font-weight: 900;
}
.map-para {
  font-size: 20px;
}
.map-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.map-right img {
  width: 500px;
  height: 300px;
}

/* Responsive */
@media only screen and (max-width: 1024px) {
  .visional-para2 {
    font-size: 20px;
    width: 50%;
  }
}
@media only screen and (max-width: 1000px) {
  .navbar-logo img {
    width: 100px;
    height: 100px;
  }
  .hamburger {
    display: block;
  }
  #offcanvasRight {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .navbar-logo img {
    width: 100px;
    height: 100px;
  }

  .visional-title {
    font-size: 40px;
  }

  .feature-section .btn {
    height: 40px;
  }
}

@media only screen and (max-width: 431px) {
  .visional-para1 {
    font-size: 20px;
    width: 100%;
  }
  .visional-para2 {
    font-size: 16px;
    width: 60%;
  }

  .feature-text p {
    width: 100%;
    font-size: 14px;
  }
}

@media only screen and (max-width: 426px) {
  .visional-title {
    font-size: 30px;
    width: 100%;
  }
  .visional-para {
    font-size: 16px;
    width: 100%;
  }
}

@media only screen and (max-width: 391px) {
  .visional-para2 {
    font-size: 14px;
    width: 60%;
  }
}

/* Responsive */
@media only screen and (min-width: 1200px) {
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .map-right img {
    width: 400px;
    height: 200px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .map-title {
    font-size: 30px;
  }
  .map-para {
    font-size: 16px;
  }
  .map-right img {
    width: 300px;
    height: 150px;
  }
}

@media only screen and (max-width: 767px) {
  .map-title {
    text-align: center;
  }
  .map-para {
    text-align: center;
  }
  .map-right {
    justify-content: center;
  }
}

@media only screen and (max-width: 500px) {
  .hero-section .image-content {
    display: none;
  }
  .mobile-carousel {
    display: block;
  }
  .map-right img {
    width: 300px;
    height: 200px;
  }
}
@media only screen and (max-width: 390px) {
}

@media only screen and (max-width: 376px) {
}

@media only screen and (max-width: 320px) {
}
