@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-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(--visional-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;
}
#navLinks li {
  margin-right: 20px;
}

/* Hero-section */

.hero-section {
  height: auto;
  background: rgb(236, 236, 236);
  background: linear-gradient(
    148deg,
    rgba(236, 236, 236, 1) 0%,
    rgba(242, 242, 242, 1) 74%
  );
}

.hero-section .hero-left {
  flex-direction: column;
  row-gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.hero-content .visional-title {
  font-size: 50px;
  font-weight: 900;
}
.hero-content .visional-para {
  font-size: 20px;
}

.hero-cta button {
  width: 180px;
  height: 55px;
  border-radius: 50px;
}
.hero-left .hero-cta button {
  width: 250px;
  height: 70px;
  border-radius: 50px;
}
.hero-cta .more-info {
  border: 1px solid #c8c8c8;
  background-color: #f6f6f6;
  color: #423d3d;
}
.hero-cta .ready-to-start {
  border: none;
  background-color: #85b540;
  color: #ffffff;
}
.hero-section .hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-top: 60px;
}
.hero-section .hero-right img {
  width: 500px;
  height: 500px;
  object-fit: cover;
}

/* question section */
.question-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #85b540;
  height: auto;
}
.question-section .question-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* video section */
.video-section {
  height: auto;
}
.video-left {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.video-left img {
  width: 400px;
  height: 500px;
  object-fit: cover;
}
.video-left .mobile-video-card .mobile-video {
  position: absolute;
  width: 195px;
  height: 390px;
  left: 177px;
  bottom: 65px;
  border-radius: 0 0 30px 30px;
  object-fit: cover;
}
.video-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 20px;
  padding-right: 20px;
}
.video-title {
  font-size: 30px;
  font-weight: 900;
}
.video-para {
  font-size: 16px;
}

/* 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;
}

.hamburger {
  display: none;
}
#offcanvasRight {
  display: none;
}

/* Responsive */

@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;
  }
}

/* Responsive */
@media only screen and (max-width: 1200px) {
  .video-left .mobile-video-card .mobile-video {
    width: 195px;
    height: 380px;
    left: 133px;
    bottom: 65px;
    border-radius: 0 0 30px 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-content .visional-title {
    font-size: 40px;
  }
  .hero-left .hero-cta button {
    width: 200px;
    height: 70px;
  }
  .hero-cta button {
    width: 200px;
    height: 70px;
  }
  .hero-section .hero-right img {
    width: 400px;
    height: 400px;
  }
  .video-left .mobile-video-card .mobile-video {
    width: 195px;
    height: 380px;
    left: 88px;
    bottom: 65px;
    border-radius: 0 0 30px 30px;
  }
  .map-right img {
    width: 400px;
    height: 200px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section .hero-left {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .hero-content .visional-title {
    font-size: 30px;
  }
  .hero-content .visional-para {
    font-size: 16px;
  }
  .hero-cta button {
    width: 150px;
    height: 60px;
  }
  .hero-left .hero-cta button {
    width: 150px;
    height: 60px;
  }
  .hero-section .hero-right img {
    width: 300px;
    height: 300px;
  }
  .video-left img {
    width: 350px;
    height: 450px;
  }
  .video-left .mobile-video-card .mobile-video {
    width: 174px;
    height: 340px;
    left: 44px;
    bottom: 62px;
    border-radius: 0 0 20px 20px;
  }

  .map-title,
  .video-title {
    font-size: 30px;
  }
  .map-para,
  .video-para {
    font-size: 16px;
  }
  .map-right img {
    width: 300px;
    height: 150px;
  }
}
/*Footer*/

.footer {
  min-height: 60vh;
  margin-top: -25px;
  background-color: #1d2b3b;
}
.footer-container {
  display: flex;
  padding-top: 60px;
  margin-left: 135px;
  margin-right: 135px;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  font-size: 20px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-content {
  max-width: 500px;
  margin-top: 40px;
  font-weight: lighter;
}
.download-text {
  color: white;
  margin: 20px 0;
}
.footer-download {
  height: 70px;
  margin-bottom: 40px;
  cursor: pointer;
}
.footer-content {
  color: #fff;
  opacity: 50%;
  font-size: 20px;
}
.footer-copyright {
  display: flex;
  color: #fff;
  opacity: 0.5;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: lighter;
  width: 100%;
}
.footer-right {
  color: #fff;
}
.connect-text {
  margin-bottom: 10px;
}
.footer-right div i {
  margin: 22px 44px 22px 0;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
}
.footer-right div a {
  color: #fff !important;
}
.newsletter-container {
  margin-top: 30px;
}
.newsletter-content {
  opacity: 0.5;
  max-width: 500px;
  margin-bottom: 30px;
  font-weight: lighter;
  margin-top: 10px;
}
.newsletter-input {
  margin-top: 20px;
}
.newsletter-input input {
  height: 50px;
  outline: none;
}
.btn {
  width: 140px;
  border: 2px solid #fff;
  background-color: #1d2b3b;
  padding-left: 0;
  color: #fff;
  margin-left: 5px;
}
.btn:hover {
  background-color: #fff;
  color: #1d2b3b;
  cursor: pointer;
}
.input-email {
  width: 240px;
  padding-left: 15px;
}

label.error {
  color: red;
  font-size: 16px;
}

#subModal form .dcard {
    border: 1px solid gray;
    border-radius: 5px;
    box-shadow: #ada6a6 1px 2px;
    padding: 25px;
    margin-bottom: 5px;
}

#subModal form .dcard .form-group {
    margin: 5px 0px;
}
/* login popup start */
img {
    max-width: 100% !important;
}
.visional-popup .modal-dialog{top: 12%!important;z-index: 9999!important;}
.visional-popup .modal-header{border-bottom: 0!important;}
.visional-popup .modal-dialog .modal-content{border-radius: 0!important;}
.login-pop{width: 100%;}
.login-pop h3{font-size: 24px;font-family: "latobold"; color: #4e4e4e;text-align: left;margin: 0;}
.login-pop-frm{width: 100%;}
.login-pop-frm ul{list-style: none;}
.login-pop-frm ul li{margin: 16px 0px;}
.login-pop-frm ul li a{font-family: "latolight";font-size: 12px;color: #919191;}
.login-pop-frm ul li input[type=text], .login-pop-frm ul li input[type=password]{width: 100%;border-bottom: 1px solid #e2e2e2;text-align: left;border-top: none;border-left: none;
border-right: none;background: none;color: #919191;font-size: 14px;padding-bottom: 15px;padding-left: 10px;font-family: "latolight";}

.login-pop-frm ul li h6{color: #919191;font-family: "latolight";font-weight: lighter; font-size: 14px;float: left;position: relative;top: -8px;}
/*For radio buttons*/
.login-pop-frm ul li input[type="checkbox"] {display:none;margin-top: 3px;}
.login-pop-frm ul li label {height:14px;width: 14px;display:inline-block;background: #ddd;border-radius: 50%;cursor:pointer;margin-right: 10px;
float: left;margin-top: 3px;}
.login-pop-frm ul li input[type="checkbox"]:checked + label {background: url(../images/checked-icon.png) no-repeat;}
.send-btn {
    background: #95d657;
    border-radius: 30px;
    margin-top: 10px;
    font-size: 12px;
    font-family: "latoregular";
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 10px;
    display: block;
    width: 40%;
    transition: all 200ms linear;
    border: none;
}
.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.close:hover, .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}
.close:focus, .close:hover {
    color: #000;
    text-decoration: none;
    opacity: .75;
}
button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}
[type=reset], [type=submit], button, html [type=button] {
    -webkit-appearance: button;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}
/* login popup end */
@media only screen and (max-width: 767px) {
  .hero-section .hero-left {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .hero-content .visional-title {
    text-align: center;
  }
  .hero-content .visional-para {
    text-align: center;
  }
  .video-right {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .map-title {
    text-align: center;
  }
  .map-para {
    text-align: center;
  }
  .map-right {
    justify-content: center;
  }
  .video-left .mobile-video-card .mobile-video {
    width: 194px;
    height: 380px;
    left: 118px;
    bottom: 70px;
    border-radius: 0 0 20px 20px;
  }
}

@media only screen and (max-width: 500px) {
  .hero-section .hero-left {
    align-items: center;
  }
  .hero-content .visional-title {
    font-size: 30px;
  }
  /*.hero-cta {
    flex-direction: column;
  }*/
  .map-right img {
    width: 300px;
    height: 200px;
  }
  .video-left .mobile-video-card .mobile-video {
    width: 194px;
    height: 380px;
    left: 70px;
    bottom: 70px;
    border-radius: 0 0 20px 20px;
  }
}

@media only screen and (max-width: 425px) {
  .hero-section .hero-right img {
    width: 300px;
    height: 300px;
  }
  .video-left .mobile-video-card .mobile-video {
    width: 194px;
    height: 380px;
    left: 50px;
    bottom: 70px;
    border-radius: 0 0 20px 20px;
  }
}
@media only screen and (max-width: 390px) {
  .video-left img {
    width: 350px;
    height: 450px;
  }
  .video-left .mobile-video-card .mobile-video {
    width: 175px;
    height: 345px;
    left: 46px;
    bottom: 62px;
    border-radius: 0 0 20px 20px;
    object-fit: cover;
  }
}

@media only screen and (max-width: 376px) {
  .video-left .mobile-video-card .mobile-video {
    width: 175px;
    height: 345px;
    left: 38px;
    bottom: 62px;
    border-radius: 0 0 20px 20px;
    object-fit: cover;
  }
}

@media only screen and (max-width: 320px) {
  .video-left img {
    width: 250px;
    height: 350px;
  }
  .video-left .mobile-video-card .mobile-video {
    width: 137px;
    height: 265px;
    left: 40px;
    bottom: 48px;
    border-radius: 0 0 10px 20px;
    object-fit: cover;
  }
}
