/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --primary-color: #192E1A;
  --secondary-color: #BA8E2B;
  --font: 'Montserrat', sans-serif;
}

body {
  font-family: var(--font);
  color: #444444;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--secondary-color);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--primary-color);
  border-top-color: #e7e4fe;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: #192e1aea;
  padding: 12px 0;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  height: 90px;
  width: 100px;
  transition: all 0.5s;
}

#header.header-scrolled .logo img {
  height: 65px;
  transition: all 0.5s;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  padding: 10px 0 10px 33px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary-color);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 25px;
  border-radius: 100px;
  color: #fff;
  transition: 0.3s;
  font-size: 14px;
  border: 1px solid #ffff;
  font-weight: 400;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  border-color: #fff;
}

.navbar .getstarted:before,
.navbar li:hover>.getstarted:before {
  visibility: hidden;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  color: #2c4964;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--primary-color);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}


/* Ve11adan */



/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 47, 65, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 25px;
  right: 44px;
  color: var(--secondary-color);
  font-size: 42px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 50px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2c4964;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--primary-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  color: #BA8E2B;
  padding: 8px 25px;
  border-radius: 100px;
  transition: 0.3s;
  font-size: 14px;
  border: 1px solid #BA8E2B;
  font-weight: 400;
  display: inline-block;
  margin-top: 20px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--primary-color);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Banner Section
--------------------------------------------------------------*/
#where2go__banner {
  width: 100%;
  height: 100vh;
  background: var(--primary-color);
  background-size: cover;
}

#where2go__banner .container,
#where2go__banner .container-fluid {
  padding-top: 84px;
}

#where2go__banner h1 {
  margin: 0;
  font-size: 50px;
  font-weight: 500;
  line-height: 64px;
  color: #fff;
}

#where2go__banner h2 {
  color: #fff;
  margin: 25px 0px 0px;
  font-size: 20px;
  width: 80%;
  font-weight: 300;
  line-height: 1.5;
}

.banner__img {
  text-align: center;
}

.banner__img img {
  height: 530px;
  margin-top: 50px;
}

.download img {
  height: 50px;
  margin-top: 30px;
  transition: all .3s ease-in-out;
}

.download img:hover {
  transform: translateY(-5px);
  box-shadow: -5px 10px 30px rgba(0, 0, 0, .05);
  cursor: pointer;
}

@media (min-width: 1200px) {
  #where2go__banner {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #where2go__banner {
    text-align: center;
  }

  #where2go__banner .container,
  #where2go__banner .container-fluid {
    padding-top: 20px;
  }

  #where2go__banner .animated {
    animation: none;
  }

  #where2go__banner .hero-img {
    text-align: center;
  }

  #where2go__banner .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #where2go__banner h1 {
    font-size: 26px;
    line-height: 36px;
  }

  #where2go__banner h2 {
    font-size: 18px;
    line-height: 24px;
    width: 100%;
  }

  #where2go__banner .hero-img img {
    width: 60%;
  }
}

@media (max-width: 575px) {
  #where2go__banner .hero-img img {
    width: 80%;
  }
}

@media (max-width: 575px),
(max-height: 600px) {
  #where2go__banner {
    height: auto;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f9f8ff;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.where2go__about {
  padding: 120px 0;
  background-color: #e1e4e1;
}

.where2go__about .about__content h6 {
  font-weight: 200;
  font-size: 26px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.where2go__about .about__content h3 {
  font-weight: 400;
  font-size: 45px;
  color: #38533E;
  margin-bottom: 40px;
}

.about__content.image__grid1 {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: repeat(1, 1fr);
  width: 90%;
  margin-left: auto;
}

.about__content img {
  object-fit: cover;
  /* border: 1px solid; */
  border-radius: 10px;
  padding: 0;
  margin: 8px;
}

.about__content .image_1 {
  height: 210px;
  width: 100% !important;
}

.about__content .image_2 {
  height: 330px;
  width: 100% !important;
}

.about__content .image_3 {
  height: 210px;
  width: 100% !important;
}

.about__content .image_4 {
  height: 270px;
  width: 100% !important;
}

.about__content.image__grid1{
  gap:20px;
}

.about__content.image__grid2 {
  gap:20px;
}

.about__content.image__grid2 {
  display: grid;
  grid-template-columns: .6fr 1fr;
  grid-template-rows: repeat(1, 1fr);
}

.about__content.image__grid img {
  padding: 10px;
  width: 100%;
}

.where2go__about .about__content p {
  color: var(--primary-color);
  font-size: 16px;
  opacity: 90%;
  line-height: 1.7;
}

/*--------------------------------------------------------------
# Our App
--------------------------------------------------------------*/
.where2go__app {
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
}

.where2go__app .app_contents h5 {
  font-weight: 300;
  padding-bottom: 15px;
}

.where2go__app .app_contents {
  margin: 0 auto;
}

.where2go__app .app_contents h2 {
  font-weight: 400;
  font-size: 45px;
  line-height: 1.3;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.where2go__app .app_contents p {
  color: #FDFDFD;
  opacity: 90%;
  width: 70%;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.8;
}

.where2go__app .download img {
  height: 44px;
}

.where2go__app .app__ui {
  margin-top: 70px;
  display: flex;
  gap: 20px;
  justify-content: center;

}

.where2go__app .app__ui img {
  padding: 10px;
  cursor: pointer;
  transition: all .3s ease-in-out;
  width: 30%;
  height: 80vh;
  object-fit: cover;
  border-radius: 20px;

}

.where2go__app .app__ui img:hover {
  transform: translateY(-10px);
  box-shadow: -5px 10px 30px rgba(0, 0, 0, .05);
  cursor: pointer;
  filter: drop-shadow(0 0.2rem 0.25rem #192e1a30);
}

/*--------------------------------------------------------------
# Enquire Now
--------------------------------------------------------------*/
.where2go__enquire {
  background-image: url('../img/enquire.png');
  width: 100%;
  background-size: cover;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
}

.where2go__enquire .content h2 {
  font-size: 45px;
  font-weight: 400;
  color: #38533E;
}

.where2go__enquire .content h5 {
  font-weight: 300;
  padding-bottom: 20px;
  font-size: 22px;
  color: var(--primary-color);
}

.enquire__form label.form-label {
  color: #1F1F1F;
  margin-top: 20px;
  margin-bottom: 20px;
}

.enquire__form .form-control:focus {
  box-shadow: none;
  outline: none;
}

.enquire__form .form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #192e1a55;
  padding-left: 0;
  padding-bottom: 12px;
}

.enquire__form .form-control::placeholder {
  color: #1F1F1F;
  opacity: .5;
}

.enquire__form .form-control:-ms-input-placeholder {
  color: #1F1F1F;
}

.enquire__form .form-control::-ms-input-placeholder {
  color: #1F1F1F;
}

.btn-primary {
  padding: 8px 25px;
  border-radius: 100px;
  color: #fff;
  transition: 0.3s;
  font-size: 14px;
  border: 1px solid #ffff;
  font-weight: 400;
  background: var(--primary-color);
  border: var(--primary-color);
}

.btn-primary:hover {
  background: var(--secondary-color);
  border: var(--secondary-color);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #c49e49;
  background-size: cover;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  position: relative;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font);
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-bottom: 12px;
  color: var(--primary-color);
}



#footer .footer-top .footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer__links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer__links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer__links ul li img {
  height: 16px;
  margin-right: 8px;
  width: 16px;
  object-fit: contain;
}

#footer .footer-top .footer__links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer__links ul a {
  color: var(--primary-color);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer__links ul a:hover {
  text-decoration: none;
  color: #fff;
}

.footer__logo img {
  height: 95px;
}

#footer .copyright-wrap {
  border-top: 1px solid #ffffff36;
  color: var(--primary-color);
  font-size: 14px;
}


/*--------------------------------------------------------------
# LOGIN
--------------------------------------------------------------*/
.where2go__login {
  width: 100%;
  min-height: 100vh;
  background: var(--primary-color);
  background-size: cover;
  padding: 0;
  display: flex;
  align-items: center;
}

.where2go__login .logo img {
  height: 80px;
  margin-bottom: 30px;
}

.where2go__login .login__form {
  width: 70%;
  margin: 50px auto;
}

.where2go__login .title h5 {
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
}

.where2go__login .title {
  color: #fff;
  margin-bottom: 30px;
}

.where2go__login .login__form input.form-control {
  border: 1px solid #627063;
  border-radius: 8px;
  background: transparent;
  font-size: 14px;
  padding: 10px 15px;
  color: #ffff;
}

.where2go__login .login__form input.form-control:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid var(--secondary-color);
}

.where2go__login .form-select:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid var(--secondary-color);
}

.form-check-input[type=checkbox]:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid var(--secondary-color);
}

/* .where2go__login .form-select {
  border: 1px solid #627063;
  border-radius: 8px;
  background-color: transparent;
  font-size: 14px;
  padding: 10px 35px;
  color: #627063;
} */
.where2go__login .form-select {
  border: 1px solid #627063;
  border-radius: 8px;
  background-color: transparent;
  font-size: 14px;
  padding: 10px 35px;
  color: #ffff;
}

.where2go__login  option {
  color:#192E1A
}

.form-check-input[type=checkbox] {
  background-color: transparent;
  border: 1px solid #627063;
}

.where2go__login .login__form label.form-label {
  color: #FFFFFF;
  font-size: 14px;
  margin-bottom: 10px;
}

.where2go__login .login__form input.form-control::placeholder {
  color: #627063;
  opacity: .5;
}

.where2go__login label.form-check-label {
  color: #FFFFFF;
}

.where2go__login .login__form input.form-control:-ms-input-placeholder {
  color: #627063;
}

.where2go__login .login__form input.form-control::-ms-input-placeholder {
  color: #627063;
}

button.btn.btn-login {
  background: #BA8E2B;
  width: 100%;
  font-size: 14px;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
}

.external__link {
  color: #FFFFFF;
  display: flex;
  width: 100%;
  justify-content: space-between;
  font-size: 14px;
}

.external__link span {
  color: #ffff;
  opacity: 53%;
}

.external__link p {
  font-size: 14px;
}

.external__link p a {
  margin-left: 10px;
  font-size: 14px;
}

.external__link a {
  color: #FFFFFF !important;
  font-size: 14px;
}

.where2go__login .form-group {
  margin-bottom: 15px;
}

.where2go__login .form-check {
  margin: 10px 0;
}

/* //Error message */
.error_msg {
  color: #bd2b2b;
  font-size: 12px;
  text-align: justify;
  line-height: 1.3;
  padding-top: 8px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px #192e1a inset !important;
  -webkit-text-fill-color: white !important;
}

.hideme {
  display: none;
}

.agreement {
  font-size: 14px;
}

.center_image {
  width: 100%;
}

.phone_code {
  margin-right: 0;
  padding-right: 3px;

}

.phone_code label {
  min-height: 100%;
  background: transparent;
  border: 1px solid #627063;
  color: #ffff;
  padding-top: 9px;
}

.metismenu a:hover,
a:focus {
  color: #EDD089 !important;
}

.errors.sign_in {
  color: #bd2b2b;
}

.terms_and_conditions {
  color: #fff;
  text-decoration: underline;
  text-underline-position: under;
}

.phone_number {
  display: flex;
}


@media only screen and (max-width : 560px) {

  .sign_up_forgot {
    flex-direction: column;
    gap: 10px;
  }

  .sign_up_forgot>p {
    margin: 0;
  }

  .sign_up_forgot>a {
    margin-bottom: 30px;
  }
}

#success_div_span {
  color: #fff;
}