@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

:root {
  --primary-color: #034833;
  --light-color: #f1f4eb;
  --white-color: #fff;
  --dark-color: #191b1a;
  --grey-color: #5b5b5b;
  --grey-color-2: #f2f5ec;
}

dl,
ul {
  list-style: none;
}
body {
  font-family: "DM Sans", sans-serif !important;
}

#popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: var(--light-color);
  padding: 40px 10px;
  width: 340px;
  border-radius: 10px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2), 0 -10px 10px rgba(0, 0, 0, 0.2);
  z-index: 990;
  transition: 0.2s linear;
}

#popup.active {
  transform: translate(-50%, -50%) scale(1);
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary-color);
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  font-size: 28px;
  border-radius: 100px;
  cursor: pointer;
}

#hero-bg {
  display: grid;
  grid-template-columns: 3fr 1fr;
}

#hero-bg .img img {
  height: 100%;
}

#hero-bg .form {
  padding: 10px;
  background: var(--primary-color);
  color: var(--light-color);
}

#navbar {
  background: var(--light-color);
}

.nav-item {
  font-size: 18px;
  font-weight: 600;
}

.heading-2 {
  font-size: 48px;
  font-weight: 700;
  position: relative;
}
.heading-2 span {
  color: var(--primary-color);
}

#tour-places {
  background: var(--light-color);
}

.tour-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--white-color);
  border: 1px solid var(--dark-color);
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2), 0 -5px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  gap: 10px;
}

.tour-box .body {
  padding: 10px;
}

.tour-box .inclusions-list {
  display: grid;
  grid-template-columns: min-content 1fr;
  column-gap: 10px;
  align-items: center;
  /* border-top: 1px solid var(--grey-color); */
  /* padding: 3px 0; */
}

.tour-box .inclusions-list img {
  height: 30px;
  width: 30px;
  object-fit: contain;
}

.tour-box .inclusions-list p {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 0;
}

.btn-primary-custom {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 14px 50px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  position: relative;
  z-index: 99;
  overflow: hidden;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  transition: 0.3s 0.2s linear;
}

.btn-primary-custom::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: var(--light-color);
  z-index: -1;
  transition: 0.3s linear;
}

.btn-primary-custom:hover::before {
  transform: translate(-50%, -50%) scale(10);
}

.btn-primary-custom:hover {
  color: var(--dark-color);
}

.btn-light-custom {
  background: var(--light-color);
  color: var(--dark-color);
  padding: 14px 50px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  position: relative;
  z-index: 99;
  overflow: hidden;
  font-weight: 600;
  border-radius: 100px;
  transition: 0.3s 0.2s linear;
}

.btn-light-custom::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: var(--dark-color);
  z-index: -1;
  transition: 0.3s linear;
}

.btn-light-custom:hover::before {
  transform: translate(-50%, -50%) scale(10);
}

.btn-light-custom:hover {
  color: var(--white-color);
}

.hotel-box {
  border: 1px solid var(--grey-color);
  height: 450px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2), 0 -5px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.hotel-box .img {
  height: 200px;
  overflow: hidden;
}

.hotel-box .img img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.hotel-box .body {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.star-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #eab821;
  margin-bottom: 10px;
}

#cta {
  background: url("./../images/jim-corbett-cta.png");
  padding: 100px 0;
  color: var(--white-color) !important;
  background-size: cover;
  background-attachment: fixed;
}

#cta p {
  font-size: 20px;
}

footer {
  background: var(--dark-color);
  color: var(--white-color);
  padding: 60px 0;
}

.footer-imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.callback-form {
  display: flex;
  width: 100%;
  /* background: var(--white-color); */
  color: var(--dark-color);
}

.pre-phone {
  padding: 10px;
  background: #ddd;
  font-weight: 700;
}

.form-control-custom {
  border: none;
  outline: none;
  padding: 10px;
  flex: 1;
}

.btn-phone {
  background: var(--primary-color);
  border: none;
  outline: none;
  color: var(--white-color);
  padding: 10px 20px;
}

.footer-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.footer-img .img img {
  width: 80px;
}

.footer-img p {
  font-size: 12px;
}

.social-icons {
  display: flex;
}

.social-icons .icon {
  cursor: pointer;
}

.payment-imgs {
  display: flex;
  gap: 5px;
}

.payment-img img {
  height: 60px;
  width: 60px;
  object-fit: contain;
}

#copyright {
  padding: 20px 0 10px 0;
  background: #333;
  color: var(--light-color);
  margin-bottom: 60px;
}

.whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  /* background: var(--primary-color); */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  z-index: 999;
  /* animation: whatsappAnim 1s linear infinite backwards; */
}

.whatsapp::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  transform: translate(-50%, -50%);
  background: var(--primary-color);
  z-index: -1;
  border-radius: 100px;
  transition: 0.4s linear;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  animation: whatsappAnim 1s linear infinite backwards;
}

.phone {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  /* background: var(--white-color); */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  z-index: 999;
}

.phone::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  transform: translate(-50%, -50%);
  background: var(--white-color);
  z-index: -1;
  border-radius: 100px;
  transition: 0.4s linear;
  animation: whatsappAnim 1s linear infinite backwards;
}

.btn-call-primary {
  background: #24cc63;
  width: 100%;
  height: 60px;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  z-index: 999;
  animation: callAnim 2s linear infinite;
}

@keyframes callAnim {
  0% {
    background: #24cc63;
  }

  50% {
    background: var(--primary-color);
  }

  100% {
    background: #24cc63;
  }
}

@media screen and (max-width: 600px) {
  #hero-bg {
    grid-template-columns: 1fr;
  }

  .col-sm-4,
  .col-sm-3,
  .col-sm-8,
  .col-sm-12 {
    margin: 10px 0;
  }
}
