@import url('https://fonts.googleapis.com/css2?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');

/* 
font-family: "Poppins", sans-serif;
*/

@font-face {
  font-family: 'blowbrushregular';
  src: url('../font/blowbrush-webfont.woff2') format('woff2'),
    url('../font/blowbrush-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

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

.container {
  padding-right: 0;
  padding-left: 0;
}

.my-container {
  width: 83.5%;
  margin: 0 auto;
}


ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

p {
  margin-top: 0;
  margin-bottom: 0;
  text-align: justify;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
}

:root {
  --white: #fff;
  --black: #000;
  --top-nav-blue: #0d2f3f;
  --nav-menu-hover: #e1e1e1;
  --mob-nav-hover: #315c71;
  --btn-green: #399f6e;
  --btn-grey: #535353;
  --ornage-badge: #f37002;
  --price-green:#6EC207;
  --paragraph: #2d2330;
  --heading: #081e2a;
  --daynight-grey: #313131;
  --form-placeholder: #747e93;
  --form-input-border: #a7a7a7;
  --mobile-menu-item: #f2f2f2;
  --footer-bg: #141414;
  --footer-text: #f3f3f3;
  --tour-details-number: #a7a7a7;
  --tour-details-day: #6a6a6a;
  --tour-details-place: #141414;
  --tour-amenities: #272328;
  --tour-amenities-border: #c2c2c2;
  --stay-btn-bg: #fde2cc;
  --deluxe-btn-bg: #f8f8f8;
  --deluxe-btn-text: #6d6d6d;
  --deluxe-btn-border: #cccccc;
  --hotel-booking-page-input: #d4ffea;
  --hotel-booking-page-input-border: #46ffa5;
  --hotel-booking-page-placeholder: #101915;
  --counter-bg:#f9f9f9;
  --sub-total-bg:#f1f1f1;
  --red-line:#B8001F;

}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 18px;
  background: url(../images/background2.jpg);
  overflow-x: hidden;
}


/* ========NAVGATION AND MOBILE MENU========================= */
.bx-menu {
  color: var(--black);
}

.bx-chevron-down{
  margin: 0 0 0 5px;
}

nav {
  /* position: fixed; */
  position: relative;
  z-index: 99;
  width: 100%;
  background: #fff;
}

nav .wrapper {
  position: relative;
  max-width: 82%;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .logo a {
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}

.wrapper .nav-links {
  display: inline-flex;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: var(--paragraph);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  background: var(--nav-menu-hover);
}

.nav-links .mobile-item {
  display: none;
}

.nav-links .drop-menu {
  position: absolute;
  background: var(--white);
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}

.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}

.mega-box {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}

.mega-box .content {
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
  width: calc(25% - 30px);
  line-height: 45px;
}

.content .row img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}

.content .row header {
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}

.content .row .mega-links {
  margin-left: -40px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
  padding: 0 20px;
}

.row .mega-links li a {
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}

.row .mega-links li a:hover {
  color: #f2f2f2;
}

.wrapper .btn {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.wrapper .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}

@media only screen and (max-width:1550px) {
  nav .wrapper {
    max-width: 84%;
  }
}

@media only screen and (max-width:1024px) {
  nav .wrapper {
    max-width: 94%;
  }

  .nav-links li a {
    font-size: 14px;
    padding: 8px 8px;
  }
}

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

  .bx {
    font-size: 30px;
  }

  .bx-chevron-down {
    font-size: 18px;
    line-height: 20px;
  }

  .wrapper .btn {
    display: block;
  }

  .wrapper .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: var(--top-nav-blue);
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
  }

  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: #242526;
  }

  ::-webkit-scrollbar-thumb {
    background: var(--mob-nav-hover);
  }

  #menu-btn:checked~.nav-links {
    left: 0%;
  }

  #menu-btn:checked~.btn.menu-btn {
    display: none;
  }

  #close-btn:checked~.btn.menu-btn {
    display: block;
  }

  .nav-links li {
    margin: 15px 10px;

  }

  .nav-links li a {
    padding: 0 20px;
    display: block;
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    color: var(--mobile-menu-item);
  }

  .nav-links li a:hover {
    background: var(--mob-nav-hover);
  }


  .nav-links .drop-menu {
    position: static;
    opacity: 1;
    top: 80px;
    visibility: visible;
    /* padding-left: 20px; */
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    background: #669db7;
  }

  #showDrop:checked~.drop-menu,
  #showMega:checked~.mega-box {
    max-height: 100%;
  }

  .nav-links .desktop-item {
    display: none;
  }

  .nav-links .mobile-item {
    display: block;
    color: #f2f2f2;
    font-size: 14px;
    font-weight: 400;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }


  .nav-links .mobile-item:hover {
    background: var(--mob-nav-hover);
  }

  .drop-menu li a {
    border-radius: 2px;
    font-size: 14px;
    line-height: 40px;
    width: 100%;
  }

  .mega-box {
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .mega-box .content {
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }

  .mega-box .content .row {
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2) {
    border-top: 0px;
  }

  .content .row .mega-links {
    border-left: 0px;
    padding-left: 15px;
  }

  .row .mega-links li {
    margin: 0;
  }

  .content .row header {
    font-size: 19px;
  }
}

nav input {
  display: none;
}

.body-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}

.body-text div {
  font-size: 45px;
  font-weight: 600;
}

/* ===============TOP HEAD======================== */

header .top-bar {
  background: var(--top-nav-blue);
  padding: 10px 0;
}

.top-bar .top-bar-area {
  display: flex;
  justify-content: space-between;
  color: var(--white);
}

header .top-bar .floated-left{ 
  width: 60% !important;
}
header .top-bar .floated-right{
  width: 40% !important;
}

header .top-bar .floated-left {
  display: flex;
  justify-content: space-between;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: var(--white);
}

header .top-bar .floated-left a {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: var(--white);
  text-decoration: none;
}

header .top-bar .floated-right {
  display: flex;
  justify-content: end;
}

header .top-bar .floated-right p {
  margin: 0 0 0 4px;
}

/* ---------------------- */

@media only screen and (max-width:1500px) and (min-width:1025px) {
  header .top-bar .floated-left{ 
    width:60% !important;
  }
  header .top-bar .floated-right{
    width: 40% !important;
  }

}

@media only screen and (max-width:1024px) {
 
  header .top-bar .floated-left{ 
    width:70% !important;
  }
  header .top-bar .floated-right{
    width: 30% !important;
  }

}

@media only screen and (max-width: 768px) {
  .top-bar .top-bar-area {
    display: block;
    flex-direction: column;
  }


  header .top-bar .floated-left{ 
    width: 100% !important;
  }
  header .top-bar .floated-right{
    width: 100% !important;
  }

  header .top-bar .floated-left {
    display: block;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  header .top-bar .floated-left p {
    text-align: center;
    font-size: 13px;
    line-height: 30px;
  }

  header .top-bar .floated-right p {
    text-align: center;
    margin: 0 3px;

  }

  header .top-bar .floated-right {
    justify-content: center;
    align-items: center;
  }

  header .top-bar .floated-left a {
    font-size: 13px;
    line-height: 30px;
  }

}

/* ===============BANNER======================== */
.banner {
  position: relative;
}

.banner h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'blowbrushregular';
  font-size: 100px;
  color: var(--white);
  letter-spacing: 5px;
  text-shadow: 2px 2px 8px #000000;
}

.home-banner {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  min-height:650px;
}


.swiper {
  width: 100%;
  height: auto;
  overflow: none;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

@media only screen and (max-width:1024px) {
  .banner h1 {
    font-size: 70px;
    line-height: 75px;
  }
}
@media only screen and (max-width:768px) {
  .banner h1 {
    font-size: 50px;
    line-height: 55px;
  }
}
@media only screen and (max-width:480px) {
  .banner h1 {
    font-size: 60px;
        line-height: 55px;
        width: 50%;
        text-align: center;
        margin: 71px 0 0 0;
  }

  .home-banner {
    min-height:400px;
  }
}

/* ===============EXPLORE KENYA======================== */
.explore-kenya {
  margin: 100px 0;
}

.explore-kenya .kenya-pic {
  margin-right: 40px;
}

.explore-kenya .kenya-text {
  margin-left: 40px;
}

.explore-kenya .explore-kenya-area {
  display: flex;
  justify-content: space-between;
}

.explore-kenya .explore-kenya-area h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: var(--paragraph);
}

.explore-kenya .explore-kenya-area h1 {
  font-family: "Poppins", sans-serif;
  font-size: 37px;
  line-height: 40px;
  font-weight: 700;
  color: var(--heading);
  padding: 12px 0 30px 0;
}

.explore-kenya .explore-kenya-area p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  color: var(--paragraph);
  margin-bottom: 20px;
}

.explore-kenya .expore-kenya-btn {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: var(--white);
  background: var(--btn-green);
  padding: 12px 25px;
  border-radius: 2px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  float: left;
  margin-top: 30px;
}

.explore-kenya .expore-kenya-btn:hover {
  background: var(--heading);
  transition: 0.4s;
  border: 1px solid var(--btn-green);
}

/* ===============FEATURED TOUR======================== */
.featured-tour {
  margin-bottom: 80px;
}

.featured-tour h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: var(--paragraph);
  text-align: center;
}

.featured-tour h2 {
  font-family: "Poppins", sans-serif;
  font-size: 37px;
  line-height: 40px;
  font-weight: 700;
  color: var(--heading);
  padding: 12px 0 0px 0;
  text-align: center;
}

.featured-tour .featured-tour-area {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
}

.featured-tour .featured-tour-area .tour-box {
  margin: 30px 15px 0 0;
  width: 32%;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  /* cursor: pointer; */
}

.featured-tour .featured-tour-area .tour-box img {
  width: 100%;
}

.featured-tour .tour-content-area {
  padding: 20px;
}

.featured-tour .tour-content-area .price-duration {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.featured-tour .price-duration .only-duration {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: var(--daynight-grey);
}

.featured-tour .price-duration .only-price {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  color: var(--white);
  background: var(--ornage-badge);
  padding: 6px 13px 5px;
  border-radius: 30px;
}

.featured-tour .tour-content-area h4 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  color: var(--paragraph);
  padding: 10px 0 15px 0;
//  text-transform:uppercase;
}

.featured-tour .tour-content-area .both-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.featured-tour .both-btn .view-details-btn {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  text-decoration: none;
  color: var(--white);
  padding: 10px 20px;
  border-radius: 2px;
  background: var(--btn-green);
  text-align: center;
  width: 48%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.featured-tour .both-btn .book-now-btn {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  text-decoration: none;
  color: var(--white);
  padding: 10px 20px;
  border-radius: 2px;
  background: var(--btn-grey);
  width: 48%;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

/* ==============POP UP MODAL====================== */
.ebcf_modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.ebcf_modal-content {
  background: var(--black);
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 100%;
  height: auto;
  position: absolute;
  border-radius: 5px;
  z-index: 9999;
}

.ebcf_modal-content ul li a {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 40px;
  text-decoration: none;
  color: #212529;
}

.ebcf_modal-content ul li a:hover {
  text-decoration: underline;
}

.ebcf_close {
  color: #aaaaaa;
  float: right;
  font-size: 40px;
  line-height: 45px;
  font-weight: bold;
}

.ebcf_close:hover,
.ebcf_close:focus {
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
}

/* ===========POP UP MODAL END========================= */

/* ===============CONTACT======================== */

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 40px;
  z-index:1;
}

.contact .contact-box {
  width: 80%;
  display: flex;
  justify-content: space-between;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
}

.contact .contact-box .form-part {
  width: 70%;
  background: url(../images/contact-bg.jpg);
  background-size: cover;
  padding:40px  50px;
}

.contact .contact-box .form-part h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: var(--paragraph);
  text-transform: uppercase;
}

.contact .contact-box .form-part h2 {
  font-family: "Poppins", sans-serif;
  font-size: 37px;
  line-height: 40px;
  font-weight: 700;
  color: var(--heading);
  padding: 12px 0;
}
.contact .contact-box .my-input-area{
  display: flex;
  justify-content: space-between;
}
.contact .contact-box .my-input-area div{
  width:49%;
  margin-bottom: 15px;
}

.contact .contact-box form  input[type="text"],
.contact .contact-box form  input[type="tel"],
.contact .contact-box form  input[type="email"] {
  width:100%;
  height: 50px;
  border: 1px solid var(--form-input-border);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color: var(--form-placeholder);
  text-indent: 10px;
  border-radius: 2px;
  outline: none;
}

.contact .contact-box form  input[type="tel"] {
  width:73%;
  height: 50px;
  border: 1px solid var(--form-input-border);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color: var(--form-placeholder);
  text-indent: 10px;
  border-radius: 2px;
  outline: none;
}

.contact .contact-box form select{
  width:25%;
  height: 50px;
  border: 1px solid var(--form-input-border);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color: var(--form-placeholder);
  text-indent: 10px;
  border-radius: 2px;
  outline: none;
}

.contact form textarea {
  width: 99%;
  height: 100px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color: var(--form-placeholder);
  text-indent: 10px;
  padding: 20px 0 0 0;
  border: 1px solid var(--form-input-border);
  border-radius: 2px;
  outline: none;
}

.contact form .form-submit-btn {
  background: var(--btn-green);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 22px;
  font-weight: 400;
  padding: 12px 36px;
  border-radius: 2px;
  border: none;
  float: left;
  margin-top: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.contact form .form-submit-btn:hover {
  background: var(--heading);
  transition: 0.4s;
  border: 1px solid var(--btn-green);
}
.input-area-home{
  width:100% !important;
}
@media only screen and (max-width:1024px) {
  .contact .contact-box {
    width: 95%;
  }
  .contact .contact-box .form-part {
    padding:40px  20px;
  }


}

@media only screen and (max-width:768px) {
.contact .contact-box .form-part {
    padding:40px  20px;
    width: 100%;
  }
  .contact .contact-box {
    flex-direction: column;
  }

  .contact .contact-box div:nth-child(1) img {
    width: 100%;
  }

  .contact .contact-box .my-input-area{
    flex-direction: column;
  }
  .contact .contact-box .my-input-area div{
    width:100%;
  }

}

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

.contact .contact-box div:nth-child(2) h3 {
    font-size: 16px;
    line-height: 15px;
  }

  .contact .contact-box div:nth-child(2) h2 {
    font-size: 26px;
    line-height: 36px;
    padding: 10px 0 25px 0;
  }

  .contact form .input-area {
    flex-direction: column;
    display: block;
  }

  .contact form input[type="text"],
  .contact form input[type="tel"],
  .contact form input[type="email"] {
    width: 100%;
    margin: 0px 0 0 0;
  }

  .contact form textarea {
    width: 100%;
    margin: 0px 0 0 0;
  }

  .contact form .form-submit-btn {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 20px;
    margin-top: 15px;
  }

}


/* ============ARROW================ */

.select_category {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../images/arrow-down.svg) 80% 50%;
  background-repeat: no-repeat;
}
/* 
.contact-page-select_category {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../images/arrow-down.svg) 80% 50%;
  background-repeat: no-repeat;
} */

.hotel-drop_category {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../images/arrow-down.svg) 90% 50% #faf5ee;
  background-repeat: no-repeat;
  padding: 0 10px;
  z-index: 999 !important;

}



/* ===============FOOTER======================== */
footer {
  background: var(--footer-bg);
  padding: 70px 0 0px 0;
}

footer .footer-area div {
  width: 24%;
}

footer .footer-area p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: var(--footer-text);
  width: 80%;
  padding: 20px 0 0 0;
}

footer .footer-area h5 {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 21px;
  font-weight: 600;
  color: var(--footer-text);
  letter-spacing: 1px;
}

footer .footer-area .follow-us {
  margin: 0 0 20px 0;
}

footer .footer-area ul li {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--footer-text);
  text-decoration: none;
  margin: 20px 0 0 0;
}

footer .footer-area ul li a {
  color: var(--footer-text);
  text-decoration: none;
}

footer .copyright p{
  padding: 10px 0;
  border-top: 1px solid var(--footer-text);
  color: var(--footer-text);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  color: var(--footer-text);
  margin-top: 30px;
  text-align: center;
}

/* ===========ABOUT PAGE========================= */

.about-page-banner {

  background-position: center !important;

  background-size: cover !important;

  background-repeat: no-repeat !important;

  min-height: 350px;

}

.in-banner {
  position: relative;
}

/* .in-banner img {
  width: 100%;
  height: auto;
} */

.in-banner .banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.in-banner h1 {
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  line-height: 40px;
  font-weight: 700;
  color: var(--white);
  text-shadow: 2px 2px 8px #000000;
}

/* ===========TOUR PACKAGE PAGE========================= */
.tour-package-page-banner {
  background: url(/images/tour-package-page-banner.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.tour-package-list {
  padding: 70px 0 0px 0;
}

/* ===========SAFARI PAGE========================= */

.safari-page-banner {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  min-height: 350px;
}

.safari-tour {
  margin: 80px 0 80px 0;
}


/* ===========TRANSPORTATION PAGE========================= */
.transportation-page-banner {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  min-height: 350px;
}

.safari-tour {
  margin: 80px 0 80px 0;
}

/* ===========HOTEL BOOKING PAGE========================= */

.hotel-booking-page-banner {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  min-height: 650px;
}

.hotel-booking-page-banner .banner-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hotel-booking-page-banner .banner-text h1 {
  font-family: 'blowbrushregular';
  font-size: 70px;
  line-height: 75px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 8px;
  text-shadow: 2px 2px 8px #000000;
  text-align: center;
  text-transform: uppercase;
}

.hotel-booking-page-banner .hotel-banner-form {
  position: relative;
}

.hotel-booking-page-banner .hotel-banner-form .form-area {
  width: 80%;
  background: rgba(255, 255, 255, .7);
  margin-top: 24rem;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  box-shadow: 2px 2px 8px #000000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hotel-booking-page-banner .hotel-banner-form .form-area div {
  width: 16%;
}

.hotel-booking-page-banner .hotel-banner-form .form-area label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  color: var(--tour-amenities);
}

.hotel-booking-page-banner .hotel-banner-form .my-dropdown {
  width: 100%;
 /*  border: 1px solid var(--hotel-booking-page-input-border); */
  border-radius: 4px;
  height: 50px;
  background: #faf5ee;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 15px;
  font-weight: 400;
  color: var(--hotel-booking-page-placeholder);
  outline: 0;
}

/* .hotel-booking-page-banner .hotel-banner-form select option:hover{
  background: rgba(0, 0, 0, 0.3);
} */


.hotel-booking-page-banner .hotel-banner-form input[type="date"] {
  width: 100%;
  border: 1px solid #767676;
  border-radius: 4px;
  height: 50px;
  background: #faf5ee;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 15px;
  font-weight: 400;
  color: var(--hotel-booking-page-placeholder);
  outline:none;
  padding: 0 10px;
}

.hotel-booking-page-banner .hotel-booking-page-search-btn {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 30px;
  font-weight: 400;
  color: var(--white);
  background: var(--btn-green);
  outline: 0;
  border: 0;
  width: 100%;
  border-radius: 2px;
  text-align: center;
  height: 50px;
  margin: 19px 0 0 0;
}

.hotel-name-list {
  margin: 50px 0 80px 0;
}

.hotel-name-list h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: var(--paragraph);
  text-align: center;
}

.hotel-name-list h2 {
  font-family: "Poppins", sans-serif;
  font-size: 37px;
  line-height: 40px;
  font-weight: 700;
  color: var(--heading);
  padding: 12px 0 0px 0;
  text-align: center;
}

.hotel-name-list .featured-tour-area {
  display: flex;
  flex-wrap: wrap;
}

.hotel-name-list .featured-tour-area .tour-box {
  margin: 30px 15px 0 0;
  width: 32%;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  cursor: pointer;
}

.hotel-name-list .featured-tour-area .tour-box img {
  width: 100%;
}

.hotel-name-list .tour-box .hotel-content-area {
  padding: 20px;
}

.hotel-name-list .hotel-content-area .price-duration {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 25px 0;
}

.hotel-name-list .price-duration .hotel-name {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: var(--daynight-grey);
  padding: 0 0 10px 0;
  text-decoration: underline;
}

.hotel-name-list .price-duration .hotel-place {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
}

.hotel-name-list .price-duration .only-price {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  color: var(--white);
  background: var(--ornage-badge);
  padding: 9px 0;
  border-radius: 2px;
  width: 122px;
  height: 48px;
  text-align: center;
}

.hotel-name-list .tour-content-area h4 {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 21px;
  font-weight: 400;
  text-decoration: underline;
  color: var(--paragraph);
  padding: 15px 0 20px 0;
}

.hotel-name-list .tour-box .view-details-btn {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  text-decoration: none;
  color: var(--white);
  padding: 10px 20px;
  border-radius: 2px;
  background: var(--btn-green);
  text-align: center;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  display: block;
}

.hotel-ebcf_modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.1);
}

.hotel-ebcf_modal-content {
  background-color: rgba(0, 0, 0, 0);
  margin-top: 0;
  padding: 20px 20px 20px 30px;
  border: 1px solid #888;
  width: 40%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  z-index: 9999;
}

.hotel-ebcf_modal-content ul li a {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 40px;
  text-decoration: none;
  color: #212529;
}

.hotel-ebcf_modal-content ul li a:hover {
  text-decoration: underline;
}

.hotel-ebcf_close {
  color: var(--black);
  float: right;
  font-size: 26px;
  line-height: 30px;
  font-weight: bold;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background: var(--white);
  text-align: center;
}

.hotel-ebcf_close:hover,
.hotel-ebcf_close:focus {
  color: var(--heading);
  text-decoration: none;
  cursor: pointer;
}



.mySizeChartModal .reservation-form {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .hotel-ebcf_modal-content .reservation-form {
  display: flex;
  align-items: center;
  justify-content: center;
} */


.hotel-ebcf_modal-content .reservation-form .form-area {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotel-ebcf_modal-content .reservation-form .form-area {
  background: var(--white);
  width: 100%;
}

.hotel-ebcf_modal-content .reservation-form .form-area h2 {
  background: var(--heading);
  font-family: "Poppins", sans-serif;
  font-size: 29px;
  line-height: 40px;
  font-weight: 400;
  text-decoration: none;
  color: var(--white);
  padding: 10px 0;
}

.hotel-ebcf_modal-content .reservation-form .form-area form {
  padding: 30px 30px 40px;
}

.hotel-ebcf_modal-content .reservation-form .form-area form input[type="text"],

.hotel-ebcf_modal-content .reservation-form .form-area form input[type="tel"] {
  width: 100%;
  height: 50px;
  border: 1px solid var(--form-input-border);
  border-radius: 2px;
  color: var(--form-placeholder);
  font-size: 13px;
  line-height: 15px;
  font-weight: 400;
  margin: 15px 0 0 0;
  text-indent: 15px;
  outline: none;
}


.hotel-ebcf_modal-content .reservation-form .form-area form input[type="number"],

.hotel-ebcf_modal-content .reservation-form .form-area form input[type="date"] {
  width: 49%;
  height: 50px;
  border: 1px solid var(--form-input-border);
  border-radius: 2px;
  color: var(--form-placeholder);
  font-size: 13px;
  line-height: 15px;
  font-weight: 400;
  margin: 15px 0 0 0;
  text-indent: 15px;
  outline: none;
}


.hotel-ebcf_modal-content .reservation-form textarea {
  width: 100%;
  height: 100px;
  border: 1px solid var(--form-input-border);
  border-radius: 2px;
  color: var(--form-placeholder);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 15px;
  font-weight: 400;
  margin: 15px 0 0 0;
  padding: 20px 0 0 0;
  text-indent: 15px;
  outline: none;
}

.hotel-ebcf_modal-content .reservation-form .reservation-form-btn {
  background: var(--btn-green);
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  width: 100%;
  color: var(--white);
  border: none;
  border-radius: 2px;
  margin: 15px 0 0 0;
  padding: 8px 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.mySizeChartModal .reservation-form .form-area {
  background: var(--white);
  width: 100%;
}


.mySizeChartModal .reservation-form .form-area h2 {
  /* background: var(--heading); */
  background:var(--btn-grey);
  font-family: "Poppins", sans-serif;
  font-size: 29px;
  line-height: 40px;
  font-weight: 400;
  text-decoration: none;
  color: var(--white);
  padding: 10px 0;
}


.mySizeChartModal .reservation-form .form-area form {
  padding: 30px 30px 40px;
}


.mySizeChartModal .reservation-form .form-area form input[type="text"],
.mySizeChartModal .reservation-form .form-area form input[type="tel"] {
  width: 100%;
  height: 50px;
  border: 1px solid var(--form-input-border);
  border-radius: 2px;
  color: var(--form-placeholder);
  font-size: 13px;
  line-height: 15px;
  font-weight: 400;
  margin: 15px 0 0 0;
  text-indent: 15px;
  outline: none;
}


.mySizeChartModal .reservation-form .form-area form input[type="number"],
.mySizeChartModal .reservation-form .form-area form input[type="date"] {
  width: 49%;
  height: 50px;
  border: 1px solid var(--form-input-border);
  border-radius: 2px;
  color: var(--form-placeholder);
  font-size: 13px;
  line-height: 15px;
  font-weight: 400;
  margin: 15px 0 0 0;
  text-indent: 15px;
  outline: none;
}

.mySizeChartModal .reservation-form textarea {
  width: 100%;
  height: 100px;
  border: 1px solid var(--form-input-border);
  border-radius: 2px;
  color: var(--form-placeholder);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 15px;
  font-weight: 400;
  margin: 15px 0 0 0;
  padding: 20px 0 0 0;
  text-indent: 15px;
  outline: none;
}

.mySizeChartModal .reservation-form .reservation-form-btn {
  background: var(--btn-green);
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  width: 100%;
  color: var(--white);
  border: none;
  border-radius: 2px;
  margin: 15px 0 0 0;
  padding: 8px 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* ===========TOUR DETAILS PAGE========================= */
.tour-details-page-banner .banner-area div {
  width: 49.5%;
  background: var(--ornage-badge);
}

.tour-details-page-banner .banner-area div:nth-child(1) img {
  width: 100%;
}

.tour-details-page-banner .banner-area .right-pics div {
  width: 100%;
}


.tour-details-page-banner .my-pic img {
  width: 100%;
}

.tour-details-page-banner .my-pic2 img {
  width: 100%;
}

.tour-details-page-banner .my-pic3-margin img {
  margin: 0px 0 20px 0;
}


.tour-details-page_main-content {
  margin: 30px 0;
}

.tour-details-page_main-content .left-part {
  /* width: 70%; */
  width: 80%;
  padding-right: 20px;
  border-bottom: 1px solid var(--tour-amenities-border);
  padding-bottom: 40px;
}

.tour-details-page_main-content .right-part {
  width: 30%;
  padding-left: 20px;
}

.tour-details-page_main-content .trip-days {
  padding: 30px 0;
}

.tour-details-page_main-content .left-part h2 {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  line-height: 20px;
  font-weight: 500;
  color: var(--heading);
  text-transform:uppercase;
}

.tour-details-page_main-content .left-part .tour-days-number {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  line-height: 45px;
  font-weight: 800;
  color: var(--tour-details-number);
}

.tour-details-page_main-content .left-part .tour-place {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 15px;
  font-weight: 500;
  color: var(--tour-details-number);
  padding: 0 0 0 5px;
}

.tour-details-page_main-content .left-part .tour-place span {
  color: var(--tour-details-place);
}

.tour-details-page_main-content .left-part .tour-amenities {
  border-top: 1px solid var(--tour-amenities-border);
  border-bottom: 1px solid var(--tour-amenities-border);
  padding: 25px 0;
}

.tour-details-page_main-content .left-part .tour-amenities h5 {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 15px;
  font-weight: 400;
  color: var(--heading);
}

.tour-details-page_main-content .left-part .tour-amenities ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 80%;
}

.tour-details-page_main-content .left-part .tour-amenities ul li {
  margin: 10px 80px 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 40px;
  font-weight: 400;
  color: var(--tour-amenities);
  text-align: center;
  align-items: center;
}

.tour-details-page_main-content .left-part .choose-trip h5 {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 15px;
  font-weight: 400;
  color: var(--heading);
  padding: 20px 0;
}

.tour-details-page_main-content .left-part .choose-trip ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* justify-content: space-between; */
  width: 100%;
  cursor: pointer;
}

.tour-details-page_main-content .left-part .choose-trip ul li {
  margin-right: 15px;
}

.tour-details-page_main-content .left-part .choose-trip-day {
  position: relative;
  top: -24px;
  left: 18px;
  z-index: 1;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 15px;
  font-weight: 600;
  color: var(--white);
  text-shadow: 2px 2px 4px #000000;
}
.tour-details-page_main-content .left-part .choose-trip ul li a {
  color : white;
  text-decoration: none;
}


/* 
.tour-details-page_main-content .left-part .choose-trip ul li a img {
  border-radius: 2px;
  border-radius: 2px;
  width: 110px;
  height: 110px;
} */

.tour-details-page_main-content .left-part .choose-trip ul li img {
  border-radius: 2px;
  width:95px;
  height:95px;
}

/* --stay category---- */
.tour-details-page_main-content .left-part .stay-category .stay-category-link-btn{
width:20%;
display: flex;
justify-content: space-between;
}
.tour-details-page_main-content .left-part .stay-category .standard-btn{
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 15px;
  font-weight: 500;
  color: var(--deluxe-btn-text);
  padding: 15px 25px;
  border-radius: 4px;
  border: 1px solid var(--deluxe-btn-border);
  background: var(--deluxe-btn-bg);
  margin: 0 15px 0 0;
  text-decoration: none;
}
.tour-details-page_main-content .left-part .stay-category .standard-btn:hover{
  color: var(--ornage-badge);
  border: none;
  border: 1px solid var(--ornage-badge);
  background: var(--stay-btn-bg);
}

.tour-details-page_main-content .left-part .stay-category .standard-btn.active {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 15px;
  font-weight: 500;
  color: var(--ornage-badge);
  padding: 15px 25px;
  border-radius: 4px;
  border: none;
  border: 1px solid var(--ornage-badge);
  background: var(--stay-btn-bg);
}

.tour-details-page_main-content .left-part .stay-category .my-tabcontent h6 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 15px;
  font-weight: 600;
  color: var(--heading);
  padding: 20px 0 15px 0;
}


.tour-details-page_main-content .left-part .stay-category .my-tabcontent p  {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  color: var(--heading);
  background: url(../images/tour-drtails-trip-overview-icon-round.svg) 0% 8%;
  background-repeat: no-repeat;
  padding: 0 0 0 15px;
}

.tour-details-page_main-content .stay-category .my-tabcontent .include-exclude>div {
  width: 50%;
  padding: 0 40px 0 0;
}

.tour-details-page_main-content .stay-category .my-tabcontent .include-exclude div>h6 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 15px;
  font-weight: 600;
  color: var(--heading);
  padding: 30px 0 0px 0;
}

.tour-details-page_main-content .stay-category .include-exclude .include li {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  padding: 0 0 0 20px;
  margin-top: 15px;
  color: var(--heading);
  background: url(../images/tour-drtails-includes-icon-green.svg) 0% 28%;
  background-repeat: no-repeat;
}

.tour-details-page_main-content .stay-category .include-exclude .exclude li {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  padding: 0 0 0 20px;
  margin-top: 15px;
  color: var(--heading);
  background: url(../images/tour-drtails-excludes-icon-red.svg) 0% 28%;
  background-repeat: no-repeat;
}

.tour-details-page_main-content .stay-category .tour-plan>h5 {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  padding: 0;
  color: var(--heading);
  text-decoration: underline;
}

.tour-details-page_main-content .stay-category .tour-plan .tour-plan-list li {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  padding: 0 0 0 15px;
  margin-top: 15px;
  color: var(--heading);
  background: url(../images/tour-drtails-trip-overview-icon-round.svg) 0% 50%;
  background-repeat: no-repeat;
}

.tour-details-page_main-content .stay-category .tour-plan .my-margin-top {
  margin-top: 20px;
}

/* ---stay category end------------- */
.tour-details-page_main-content .left-part .stay-category h5 {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 15px;
  font-weight: 600;
  color: var(--heading);
  padding: 20px 0;
}

/* .tour-details-page_main-content .left-part .stay-category .tab {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 15px;
  font-weight: 500;
  color: var(--deluxe-btn-text);
  padding: 15px 25px;
  border-radius: 2px;
  border: 1px solid var(--deluxe-btn-border);
  background: var(--deluxe-btn-bg);
  cursor: pointer;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
} */


/* .tour-details-page_main-content .left-part .stay-category .tab button {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 15px;
  font-weight: 500;
  color: var(--deluxe-btn-text);
  padding: 15px 25px;
  border-radius: 4px;
  border: 1px solid var(--deluxe-btn-border);
  background: var(--deluxe-btn-bg);
  margin: 0 15px 0 0;
} */

/* .tour-details-page_main-content .left-part .stay-category .tab button.active {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 15px;
  font-weight: 500;
  color: var(--ornage-badge);
  padding: 15px 25px;
  border-radius: 4px;
  border: none;
  border: 1px solid var(--ornage-badge);
  background: var(--stay-btn-bg);
} */


/* .tour-details-page_main-content .left-part .stay-category .tabcontent {
  display: none;
  border-top: none;
} */

/* #one:checked~.panels #one-panel,
#two:checked~.panels #two-panel,
#three:checked~.panels #three-panel {
  display: block
}

#one:checked~.tabs #one-tab,
#two:checked~.tabs #two-tab,
#three:checked~.tabs #three-tab {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 15px;
  font-weight: 500;
  color: var(--ornage-badge);
  padding: 15px 25px;
  border-radius: 4px;
  border: none;
  border: 1px solid var(--ornage-badge);
  background: var(--stay-btn-bg);
} */

/* .tour-details-page_main-content .left-part .stay-category .tabcontent h6 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 15px;
  font-weight: 600;
  color: var(--heading);
  padding: 20px 0 15px 0;
} */


/* .tour-details-page_main-content .left-part .stay-category .tabcontent p  {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  color: var(--heading);
  background: url(../images/tour-drtails-trip-overview-icon-round.svg) 0% 8%;
  background-repeat: no-repeat;
  padding: 0 0 0 15px;
} */

/* .tour-details-page_main-content .stay-category .tabcontent .include-exclude>div {
  width: 50%;
  padding: 0 40px 0 0;
} */

/* .tour-details-page_main-content .stay-category .tabcontent .include-exclude div>h6 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 15px;
  font-weight: 600;
  color: var(--heading);
  padding: 30px 0 0px 0;
} */

/* .tour-details-page_main-content .stay-category .include-exclude .include li {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  padding: 0 0 0 20px;
  margin-top: 15px;
  color: var(--heading);
  background: url(../images/tour-drtails-includes-icon-green.svg) 0% 28%;
  background-repeat: no-repeat;
} */

/* .tour-details-page_main-content .stay-category .include-exclude .exclude li {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  padding: 0 0 0 20px;
  margin-top: 15px;
  color: var(--heading);
  background: url(../images/tour-drtails-excludes-icon-red.svg) 0% 28%;
  background-repeat: no-repeat;
} */

/* .tour-details-page_main-content .stay-category .tour-plan>h5 {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  padding: 0;
  color: var(--heading);
  text-decoration: underline;
}

.tour-details-page_main-content .stay-category .tour-plan .tour-plan-list li {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  padding: 0 0 0 15px;
  margin-top: 15px;
  color: var(--heading);
  background: url(../images/tour-drtails-trip-overview-icon-round.svg) 0% 50%;
  background-repeat: no-repeat;
}

.tour-details-page_main-content .stay-category .tour-plan .my-margin-top {
  margin-top: 20px;
} */

.tour-details-page_main-content .right-part .price-area {
  border: 1px solid var(--tour-amenities-border);
  border-radius: 15px;
  padding: 30px 20px;
}

.tour-details-page_main-content .right-part .price-area .main-price {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  line-height: 46px;
  font-weight: 500;
  color: var(--white);
  background: var(--ornage-badge);
  border-radius: 2px;
  text-align: center;
  padding: 4px 0 0 0;
  
}

.tour-details-page_main-content .right-part .price-area .main-price-strike {
  font-family: "Poppins", sans-serif;
  font-size: 27px;
  line-height: 60px;
  font-weight: 500;
  color: var(--white);
  background: var(--ornage-badge);
  border-radius: 2px;
  text-align: center;
  padding: 4px 0 0 0;
  text-decoration: line-through;
  text-decoration-color:var(--btn-grey);
}

.tour-details-page_main-content .right-part .price-area .price-btn a {
  width: 48%;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  padding: 10px;
  text-align: center;
  border-radius: 2px;
  margin-top: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.tour-details-page_main-content .right-part .price-area .right-part-book-btn {
  background: var(--btn-grey);
}

.tour-details-page_main-content .right-part .price-area .right-part-print-btn {
  background: var(--btn-green);
}

.tour-details-page_main-content .right-part .form-area {
  border: 1px solid var(--tour-amenities-border);
  border-radius: 15px;
  padding: 40px 20px;
  margin-top: 30px;
}

.tour-details-page_main-content .right-part .form-area h3 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  color: var(--heading);
  width: 94%;
}

.tour-details-page_main-content .right-part .form-area form input[type="text"],
.tour-details-page_main-content .right-part .form-area form input[type="tel"],
.tour-details-page_main-content .right-part .form-area form input[type="email"],
.tour-details-page_main-content .right-part .form-area form input[type="number"],
.tour-details-page_main-content .right-part .form-area form input[type="date"] {
  width: 100%;
  border: 1px solid var(--tour-amenities-border);
  border-radius: 2px;
  height: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 19px;
  font-weight: 400;
  color: var(--form-placeholder);
  text-indent: 15px;
  margin: 15px 0 0 0;
  padding:0 15px 0 0;
  outline: 0;
}

.tour-details-page_main-content .right-part .form-area form input[type="tel"] {
  width:73%;
  border: 1px solid var(--tour-amenities-border);
  border-radius: 2px;
  height: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 19px;
  font-weight: 400;
  color: var(--form-placeholder);
  text-indent: 15px;
  margin: 15px 0 0 0;
  outline: 0;
}

.tour-details-page_main-content .right-part .form-area form select{
  width: 25%;
  border: 1px solid var(--tour-amenities-border);
  border-radius: 2px;
  height: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 19px;
  font-weight: 400;
  color: var(--form-placeholder);
  text-indent: 15px;
  margin: 15px 0 0 0;
  outline: 0;
}



.tour-details-page_main-content .right-part .form-area form textarea {
  width: 100%;
  border: 1px solid var(--tour-amenities-border);
  border-radius: 2px;
  height: 100px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 19px;
  font-weight: 400;
  color: var(--form-placeholder);
  text-indent: 15px;
  margin: 15px 0 0 0;
  padding: 20px 0 0 0;
  outline: 0;
}

.tour-details-page_main-content .right-part .form-area form .send-enquiry-btn {
  width: 100%;
  border-radius: 2px;
  height: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: var(--white);
  background: var(--btn-green);
  border: none;
  margin: 15px 0 0 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.tour-details-page_main-content .right-part .form-area form .send-enquiry-btn:hover {
  background: var(--heading);
  transition: 0.4s;
  border: 1px solid var(--btn-green);
}

.tour-details-page_main-content .similar-tour h5 {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 15px;
  font-weight: 400;
  color: var(--heading);
  padding: 30px 0 20px !important;
}

.tour-details-page_main-content .similar-tour>.featured-tour .featured-tour-area .tour-box .only-duration {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: var(--daynight-grey);
}



.tour-details-page_main-content .similar-tour>.featured-tour .featured-tour-area .tour-box .price-duration .only-price {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  color: var(--white);
  background: var(--ornage-badge);
  padding: 6px 13px;
  border-radius: 30px;
}

.tour-details-page_main-content .similar-tour>.featured-tour .featured-tour-area .tour-box {
  margin: 0px 0 0 0;
}

.tour-details-page_main-content .similar-tour .tour-box {
  margin: 0px 0 0 0;
  width: 100%;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  /* cursor: pointer; */
}

.tour-details-page_main-content .similar-tour .tour-box img {
  width: 100%;
}

.tour-details-page_main-content .similar-tour .tour-content-area {
  padding: 20px;
}

.tour-details-page_main-content .similar-tour .price-duration {
  display: flex;
  justify-content: space-between;
  align-items: center;
}



.tour-details-page_main-content .similar-tour .price-duration .only-duration {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: var(--daynight-grey);
}

.tour-details-page_main-content .similar-tour .price-duration .only-price {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  color: var(--white);
  background: var(--ornage-badge);
  padding: 6px 13px;
  border-radius: 30px;
}



.tour-details-page_main-content .similar-tour .tour-content-area h4 {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 21px;
  font-weight: 400;
  color: var(--paragraph);
  padding: 15px 0 30px 0;
  text-transform:uppercase;
}



.tour-details-page_main-content .similar-tour .tour-content-area .both-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.tour-details-page_main-content .similar-tour .both-btn .view-details-btn {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  text-decoration: none;
  color: var(--white);
  padding: 10px 20px;
  border-radius: 2px;
  background: var(--btn-green);
  text-align: center;
  display: block;
  width: 48%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.tour-details-page_main-content .similar-tour .both-btn .book-now-btn {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  text-decoration: none;
  color: var(--white);
  padding: 10px 20px;
  border-radius: 2px;
  background: var(--btn-grey);
  display: block;
  width: 48%;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.tour-details-page_main-content .similar-tour .swiper-slide {
  text-align: left;
  margin-bottom: 40px !important;
}



.tour-details-page_main-content .similar-tour .swiper {
  margin-bottom: 60px !important;
}

/* ===========CONTACT PAGE========================= */

.contact-page-banner {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  min-height: 350px;
}

.contact-information {
  padding: 100px 0;
}

.contact-information h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: var(--paragraph);
  text-align: center;
}

.contact-information h1 {
  font-family: "Poppins", sans-serif;
  font-size: 37px;
  line-height: 40px;
  font-weight: 700;
  color: var(--heading);
  padding: 12px 0 30px 0;
  text-align: center;
}

.contact-information-area div {
  width: 32%;
  background: var(--white);
  border-radius: 2px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  text-align: center;
  padding: 80px;
}

.contact-information-area div:hover {
  border: 1px solid var(--btn-green);
}

.contact-information-area div h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: var(--paragraph);
  text-align: center;
  padding: 12px 0;
}

.contact-information-area div h4 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: var(--paragraph);
  text-align: center;
}


.contact-page-send-message div {
  width: 50%;
}

.contact-page-send-message div :nth-child(1) {
  width: 100%;
  object-fit: cover;
}
.contact-page-send-message div :nth-child(1) img{
  /* width: 100%; */
  min-height: 500px;
}

.contact-page-form-bg {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.contact-page-form-bg h2 {
  font-family: "Poppins", sans-serif;
  font-size: 37px;
  line-height: 40px;
  font-weight: 700;
  color: var(--heading);
  padding: 90px 0 0 40px;
}

.contact-page-form-bg .contact-page-form-area {
  padding: 20px 0 0 40px;
  width: 85%;
}

.contact-page-form-area .form-input-area div {
  /* width: 49%; */
  width:49%;
  margin: 0 0 15px 0;
}

.contact-page-form-area .form-input-area{
  width: 100%;
}

.contact-page-form-bg .contact-page-form-area form div input[type="text"],
.contact-page-form-bg .contact-page-form-area form div input[type="email"] {
  width: 100%;
  height: 50px;
  border: 1px solid var(--form-input-border);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color: var(--form-placeholder);
  text-indent: 10px;
  border-radius: 2px;
  outline: none;
}


.contact-page-form-bg .contact-page-form-area form input[type="tel"]
{
  width:71%;
  height: 50px;
  border: 1px solid var(--form-input-border);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color: var(--form-placeholder);
  text-indent: 10px;
  border-radius: 2px;
  outline: none;
}
.contact-page-form-bg .contact-page-form-area form .contact-page-select_category {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../images/arrow-down.svg) 80% 50%;
  background-repeat: no-repeat;
  width: 25% !important;
  outline: none;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  padding: 0 8px;
  border: 1px solid var(--form-input-border);
}
.contact-page-form-bg .contact-page-form-area form  .input-area-mobile{
  width: 100% !important;
}



.contact-page-form-bg .contact-page-form-area form textarea {
  width: 100%;
  height: 100px;
  border: 1px solid var(--form-input-border);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color: var(--form-placeholder);
  text-indent: 10px;
  border-radius: 2px;
  outline: none;
  padding: 20px 0 0 0;
}

.contact-page-form-bg .contact-page-form-area form .form-submit-btn {
  background: var(--btn-green);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 22px;
  font-weight: 400;
  padding: 12px 36px;
  border-radius: 2px;
  border: none;
  float: left;
  margin-top: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.contact-page-form-bg .contact-page-form-area form .form-submit-btn:hover {
  background: var(--heading);
  transition: 0.4s;
  border: 1px solid var(--btn-green);
}

@media only screen and (max-width:1399px) and (min-width:1025px) {
  .contact-page-form-bg h2 {
    padding: 20px 0 0 40px;
  }
}

@media only screen and (max-width:1024px) {
.contact-page-form-bg h2 {
    padding: 50px 0 0 34px;
  }

  .contact-page-send-message {
    flex-direction: column;
    align-items: center;
  }

  .contact-page-send-message div {
    width: 100%;
  }

  .contact-page-form-bg .contact-page-form-area {
    padding: 20px 35px 120px;
    width: 100%;
  }

}

@media only screen and (max-width:768px) {
  .contact-information-area div {
    width: 49%;
    margin-bottom: 15px;
  }

}


@media only screen and (max-width:480px) {
.contact-information {
    padding: 80px 0;
  }

  .contact-information h3 {
    font-size: 16px;
    line-height: 15px;
  }

  .contact-information-area {
    padding: 0 15px;
  }

  .contact-information-area div {
    width: 100%;
  }

  .contact-information-area div h3 {
    font-size: 16px;
    line-height: 15px;
  }

  .contact-information-area div h4 {
    font-size: 15px;
    line-height: 22px;
  }

  .contact-information h1 {
    font-size: 26px;
    line-height: 36px;
  }

  .contact-information-area div img {
    width: 50px;
    height: 50px;
  }

  .contact-page-form-bg h2 {
    font-size: 26px;
    line-height: 36px;
  }

  .contact-page-form-bg .contact-page-form-area {
    padding: 20px 15px 120px;
  }

  .contact-page-form-bg h2 {
    padding: 50px 0 0 12px;
  }

  .contact-page-form-area .form-input-area div {
    width: 100%;
  }


}
/* ===========SIGN UP PAGE========================= */

.signup div {
  width: 50%;
}

.signup-bg {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  /* height: 119vh; */
  min-height:55rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-bg .signup-text {
  width: 70%;
}

.signup .signup-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: 37px;
  line-height: 45px;
  font-weight: 600;
  color: var(--white);
}

.signup .signup-text h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: var(--white);
}
.sign-up-form{
  padding: 50px;
}
.sign-up-form .form-area{
  width: 70%;
}
.sign-up-form .form-area h2{
  font-family: "Poppins", sans-serif;
  font-size: 37px;
  line-height: 40px;
  font-weight: 700;
  color:var(--heading);
  padding: 0 0 20px 0;
}

.sign-up-form .form-area form div{
  width: 100%;
  margin: 0 0 18px 0;
}
.sign-up-form .form-area form div label{
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height:30px;
  font-weight: 400;
  color: var(--heading);
}

.sign-up-form .form-area form input[type="text"],
.sign-up-form .form-area form input[type="tel"],
.sign-up-form .form-area form input[type="password"],
.sign-up-form .form-area form input[type="email"]
{
  width: 100%;
  height: 50px;
  border: 1px solid var(--form-input-border);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color: var(--form-placeholder);
  text-indent: 10px;
  border-radius: 2px;
  outline: none;
}
.sign-up-form .form-area form select{
  width: 100%;
  height: 50px;
  border: 1px solid var(--form-input-border);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color: var(--form-placeholder);
  text-indent: 10px;
  border-radius: 2px;
  outline: none;
}
.sign-up-form .form-area form input[type="file"]{
  width: 100%;
  height: 50px;
  border: 1px solid var(--form-input-border);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color:var(--white);
  text-indent: 10px;
  border-radius: 2px;
  outline: none;
  background: var(--form-input-border);
}
.sign-up-form .sign-up-btn{ 
  width: 100%;
background: var(--btn-green);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 22px;
  font-weight: 400;
  padding: 12px 36px;
  border-radius: 2px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.sign-up-form .sign-up-btn:hover{
  background: var(--heading);
  transition: 0.4s;
  border: 1px solid var(--btn-green);
}


/* ===========LOGIN PAGE========================= */

.login div {
  width: 50%;
}

.login-bg {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  min-height:45rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-bg .login-text {
  width: 70%;
}

.login .login-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: 37px;
  line-height: 45px;
  font-weight: 600;
  color: var(--white);
}

.login .login-text h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: var(--white);
}
.login-form{
  padding: 200px 50px 50px 50px ;
}
.login-form .form-area{
  width: 70%;
}
.login-form .form-area h2{
  font-family: "Poppins", sans-serif;
  font-size: 37px;
  line-height: 40px;
  font-weight: 700;
  color:var(--heading);
  padding: 0 0 20px 0;
}

.login-form .form-area form div{
  width: 100%;
  margin: 0 0 18px 0;
}
.login-form .form-area form div label{
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height:30px;
  font-weight: 400;
  color: var(--heading);
}

.login-form .form-area form input[type="text"],
.login-form .form-area form input[type="tel"],
.login-form .form-area form input[type="password"],
.login-form .form-area form input[type="email"]
{
  width: 100%;
  height: 50px;
  border: 1px solid var(--form-input-border);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color: var(--form-placeholder);
  text-indent: 10px;
  border-radius: 2px;
  outline: none;
}
.login-form .form-area form select{
  width: 100%;
  height: 50px;
  border: 1px solid var(--form-input-border);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color: var(--form-placeholder);
  text-indent: 10px;
  border-radius: 2px;
  outline: none;
}
.login-form .form-area form input[type="file"]{
  width: 100%;
  height: 50px;
  border: 1px solid var(--form-input-border);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color:var(--white);
  text-indent: 10px;
  border-radius: 2px;
  outline: none;
  background: var(--form-input-border);
}
.login-form .sign-up-btn{ 
  width: 100%;
background: var(--btn-green);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 22px;
  font-weight: 400;
  padding: 12px 36px;
  border-radius: 2px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.login-form .sign-up-btn:hover{
  background: var(--heading);
  transition: 0.4s;
  border: 1px solid var(--btn-green);
}


/* ===========PRODUCT BOOK PAGE========================= */
.product-book-page {
  padding: 100px 0;
}

.product-book-page .product-book-area_box1 {
  width: 36%;
}

.product-book-page .product-book-area_box2 {
  width: 22%;
  padding-top: 8rem;
}

.product-book-page .product-book-area_box3 {
  width: 32%;
}

.product-book-page .product-book-area div img {
  width: 100%;
}

.product-book-page .product-book-area_box2 h2 {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  line-height: 30px;
  font-weight: 400;
  color: var(--paragraph);
}

.product-book-page .product-book-area_box2 h3 {
  font-family: "Poppins", sans-serif;
  font-size: 23px;
  line-height: 25px;
  font-weight: 700;
  color: var(--ornage-badge);
  padding: 0 0 30px 0;
}

.product-book-page .product-book-area_box2 h4 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: var(--daynight-grey);
  padding: 15px 0;
}

 .product-book-page .quantity {
  display: flex;
  align-items: center;
  padding: 0;
}

.product-book-page .quantity__minus,
.product-book-page .quantity__plus {
  display: block;
  width: 45px;
  height: 45px;
  margin: 0;
  background: var(--counter-bg);
  text-decoration: none;
  text-align: center;
  line-height: 42px;
  border: 1px solid var(--nav-menu-hover);
}

.product-book-page .quantity__minus {
  border-radius: 3px 0 0 3px;
}

.product-book-page .quantity__plus {
  border-radius: 0 3px 3px 0;
}

.product-book-page .quantity__input {
  width: 68px;
  height: 45px;
  margin: 0;
  padding: 0;
  text-align: center;
  border-top: 1px solid var(--nav-menu-hover);
  border-bottom: 1px solid var(--nav-menu-hover);
  border-right: 1px solid var(--white);
  border-left: 1px solid var(--white);
  background: var(--white);
  color: var(--paragraph);
}

.product-book-page .quantity__minus:link,
.product-book-page .quantity__plus:link {
  color: #8184a1;
}

.product-book-page .quantity__minus:visited,
.product-book-page .quantity__plus:visited {
  color: var(--black);
} 

.product-book-page .product-book-area_box3 h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  line-height: 25px;
  font-weight: 400;
  color: var(--paragraph);
}

.product-book-page .product-book-area_box3 .sub-total {
  background: var(--sub-total-bg);
  padding: 40px 0 0 0px;
  border-radius: 2px;
  margin-top: 15px;
}

.product-book-page .sub-total .sub-total-box p {
  text-align: center;
  width: 50%;
  margin-bottom: 40px;
}

.product-book-page .product-book-area_box3 .total {
  background: var(--sub-total-bg);
  padding: 40px;
  border-radius: 2px;
  margin-top: 15px;
}

.product-book-page .product-book-area_box3 .total p {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  line-height: 25px;
  font-weight: 400;
  color: var(--paragraph);
  text-align:center;

}

.product-book-page .product-book-area_box3 .proceed-checkout-btn{
  background: var(--btn-green);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 22px;
  font-weight: 400;
  width: 100%;
  text-decoration: none;
  text-align: center;
  padding: 12px 0px;
  border-radius: 2px;
  border: none;
  float: left;
  margin-top: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.product-book-page .product-book-area_box3 .proceed-checkout-btn:hover{
  background: var(--heading);
  transition: 0.4s;
  border: 1px solid var(--btn-green);
}


@media only screen and (max-width:768px) {
  .product-book-page .product-book-area{
    flex-direction: column;
    }
    .product-book-page .product-book-area_box1 {
      width:100%;
    }
    .product-book-page .product-book-area_box2 {
      width:100%;
      padding-top: 3rem;
      padding-bottom: 3rem;
    }
    .product-book-page .product-book-area_box3 {
      width:100%;
    }
    .product-book-page {
      padding: 60px 0;
  }

}

@media only screen and (max-width:480px) {
  .product-book-page {
    padding: 30px 15px 60px;
}

.product-book-page .product-book-area_box3 .proceed-checkout-btn {
  font-size: 16px;
  line-height: 15px;
  font-weight: 400;
}
}


  /* ===========CHECKOUT PAGE========================= */


.checkout-page-banner {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  min-height: 350px;
}

.checkout-page{
padding:100px 0 120px 0;
}
.checkout-page .checkout-page-area{
  display: flex;
  align-items: center;
  justify-content: center;

}
.checkout-page .form-area h3{
  color:var(--heading);
  font-family: "Poppins", sans-serif;
  font-size:22px;
  line-height:30px;
  font-weight:400;
  padding:0px 0 10px 0;
}
.checkout-page .form-area .billing-details{
margin-top: 50px;
}
.checkout-page .form-area{
  width:70%;
}
.checkout-page .form-area form div{
  margin-bottom: 15px;
  width:100%;
}
.checkout-page .form-area form input[type="text"],
.checkout-page .form-area form input[type="email"]
{
width: 100%;
height: 50px;
border: 1px solid var(--form-input-border);
font-family: "Poppins", sans-serif;
font-size: 13px;
line-height: 22px;
font-weight: 400;
color: var(--form-placeholder);
text-indent: 10px;
border-radius: 2px;
outline: none;
}
.checkout-page .form-area form input[type="tel"]{
  width: 100%;
  height: 50px;
  border: 1px solid var(--form-input-border);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color: var(--form-placeholder);
  text-indent: 10px;
  border-radius: 2px;
  outline: none;
  }
.checkout-page .form-area form select {
  width: 10%;
  height: 50px;
  border: 1px solid var(--form-input-border);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color: var(--form-placeholder);
  text-indent:6px;
  border-radius: 2px;
  outline: none;
  margin-right: 10px;
}

.checkout-page .form-area form .pay-now-btn{
  background: var(--btn-green);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 22px;
  font-weight: 400;
  padding: 12px 36px;
  border-radius: 2px;
  border: none;
  float: left;
  margin-top: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.checkout-page .form-area form .pay-now-btn:hover {
  background: var(--heading);
  transition: 0.4s;
  border: 1px solid var(--btn-green);
}

/* ===========RESPONSIVE SCREEN START========================= */

/* ---------------------1550---------------------- */
@media only screen and (max-width:1550px) {
  .my-container {
    width: 88%;
  }

  .signup-bg {
    min-height:56rem;
  }
  .sign-up-form .form-area{
    width: 80%;
  }
  .login-bg {
    min-height:30rem;
  }


}

/* ---------------------1025 and 1399---------------------- */
@media only screen and (max-width:1399px) and (min-width:1025px) {
  .tour-details-page_main-content .left-part .choose-trip ul {
    /* width: 45%; */
    width:76%;
  }

  .contact-page-form-bg h2 {
    padding: 20px 0 0 40px;
  }

  .signup-bg {
    min-height:56rem;
  }
  .sign-up-form .form-area{
    width: 80%;
  }
  .login-bg {
    min-height:40rem;
  }

}

/* ---------------------1024---------------------- */
@media only screen and (max-width:1024px) {
  .my-container {
    width: 94%;
  }

  .banner h1 {
    font-size: 70px;
    line-height: 75px;
  }

  .explore-kenya {
    margin: 80px 0;
  }

  .explore-kenya .explore-kenya-area {
    flex-direction: column;
  }

  .explore-kenya .kenya-pic {
    margin-right: 0px;
    text-align: center;
  }

  .explore-kenya .kenya-text {
    margin-left: 0px;
    margin-top: 50px;
  }

  .featured-tour .featured-tour-area {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .featured-tour .featured-tour-area .tour-box {
    margin: 30px 0 0 0;
    width: 48%;
    background: var(--white);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    cursor: pointer;
  }

  .contact .contact-box {
    width: 95%;
  }

  .contact .contact-box .form-part {
    padding:40px  20px;
  }

  .tour-details-page_main-content .left-part {
    width: 65%;
  }

  .tour-details-page_main-content .right-part {
    width: 35%;
  }

  .tour-details-page_main-content .left-part h2 {
    font-size: 28px;
    line-height: 18px;
  }

  .tour-details-page_main-content .left-part .tour-amenities ul {
    width: 100%;
  }

  .tour-details-page_main-content .left-part .choose-trip ul {
    width: 100%;
  }

  .hotel-ebcf_modal-content {
    width: 70%;
  }

  .contact-page-form-bg h2 {
    padding: 50px 0 0 34px;
  }

  .contact-page-send-message {
    flex-direction: column;
    align-items: center;
  }

  .contact-page-send-message div {
    width: 100%;
  }

  .contact-page-form-bg .contact-page-form-area {
    padding: 20px 35px 120px;
    width: 100%;
  }

}

/* ---------------------768---------------------- */
@media only screen and (max-width:768px) {
  .banner h1 {
    font-size: 50px;
    line-height: 55px;
  }

  .contact .contact-box .form-part {
    padding:40px  20px;
    width: 100%;
  }

  .contact .contact-box {
    flex-direction: column;
  }

  .contact .contact-box div:nth-child(1) img {
    width: 100%;
  }

  /* .contact .contact-box div:nth-child(2) {
    width: 100%;
    padding: 20px;
  } */

  .contact .contact-box .my-input-area{
    flex-direction: column;
  }

  .contact .contact-box .my-input-area div{
    width:100%;
  }

  .tour-details-page_main-content .main-content-area {
    display: block;
    flex-direction: column-reverse;
  }

  .tour-details-page_main-content .left-part {
    width: 100%;
    padding-right: 0px;
    padding-top: 40px;
  }

  .tour-details-page_main-content .right-part {
    width: 100%;
    padding-left: 0px;
  }

  .tour-details-page_main-content .left-part .choose-trip-mobile {
    display: block;
  }

  .hotel-booking-page-banner .banner-text {
    top: 35%;
  }

  .hotel-booking-page-banner .hotel-banner-form .form-area {
    width: 80%;
    flex-direction: column;
    margin-top: 40rem;
  }

  .hotel-booking-page-banner .hotel-banner-form .form-area div {
    width: 100%;
    margin: 15px 0 0 0;
  }

  .hotel-name-list .featured-tour-area {
    margin-top: 20rem;
  }

  .hotel-name-list .featured-tour-area .tour-box {
    width: 48%;
  }

  .contact-information-area div {
    width: 49%;
    margin-bottom: 15px;
  }

  .signup{flex-direction: column;
  }
  .signup div {
    width: 100%;
  }
  .signup-bg {
    min-height:18rem;
  }
  .sign-up-form .form-area{
    width: 100% !important;
  }
  .sign-up-form {
    padding: 50px 15px;
}
.signup-bg .signup-text {
  width: 93%;
}


.login{
  flex-direction: column;
}
.login div {
  width: 100%;
}
.login-bg {
  min-height:18rem;
}
.login-form .form-area{
  width: 100% !important;
}
.login-form {
  padding: 50px 15px;
}
.login-bg .login-text {
width: 93%;
}
}

/* ---------------------480---------------------- */
@media only screen and (max-width:480px) {
  .banner h1 {
    font-size: 60px;
    line-height: 55px;
    width: 50%;
    text-align: center;
    margin: 71px 0 0 0;
  }


  .home-banner {
    min-height:400px;
  }

  .explore-kenya {
    padding: 0 15px;
  }

  .explore-kenya .kenya-pic img {
    width: 350px;
    height: auto;
  }

  .explore-kenya .explore-kenya-area h1 {
    font-size: 26px;
    line-height: 36px;
    padding: 12px 0 16px 0;
  }

  .explore-kenya .explore-kenya-area h3 {
    font-size: 16px;
    line-height: 15px;
  }

  .explore-kenya .explore-kenya-area p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 15px;
  }

  .explore-kenya .expore-kenya-btn {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 20px;
    margin-top: 15px;
  }

  .featured-tour {
    margin-bottom: 60px;
    padding: 0 15px;
  }

  .featured-tour h3 {
    font-size: 16px;
    line-height: 15px;
  }

  .featured-tour h2 {
    font-size: 26px;
    line-height: 36px;
    padding: 8px 0 0px 0;
  }

  .featured-tour .both-btn .view-details-btn {
    font-size: 15px;
    line-height: 21px;
    padding: 8px 20px;
  }

  .featured-tour .both-btn .book-now-btn {
    font-size: 15px;
    line-height: 21px;
    padding: 8px 20px;
  }

  .featured-tour .tour-content-area h4 {
    font-size: 16px;
    line-height: 21px;
    padding: 14px 0 15px 0;
  }

  .featured-tour .price-duration .only-price {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    padding: 5px 13px;
  }

  .featured-tour .featured-tour-area .tour-box {
    margin: 25px 0 0 0;
    width: 100%;
    background: var(--white);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    cursor: pointer;
  }

  .contact .contact-box div:nth-child(2) h3 {
    font-size: 16px;
    line-height: 15px;
  }

  .contact .contact-box div:nth-child(2) h2 {
    font-size: 26px;
    line-height: 36px;
    padding: 10px 0 25px 0;
  }

  .contact form .input-area {
    flex-direction: column;
    display: block;
  }

  .contact form input[type="text"],
  .contact form input[type="tel"],
  .contact form input[type="email"] {
    width: 100%;
    margin: 0px 0 0 0;
  }

  .contact form textarea {
    width: 100%;
    margin: 0px 0 0 0;
  }

  .contact form .form-submit-btn {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 20px;
    margin-top: 15px;
  }


  footer {
    padding: 70px 15px 0px 15px;
  }

  footer .footer-area div {
    width: 48%;
    margin: 20px 0 0 0;
  }

  footer .copyright {
    font-size: 12px;
    line-height: 17px;
  }

  footer .footer-area ul li {
    margin: 10px 0 0 0;
    font-size: 13px;
    line-height: 20px;
  }

  footer .footer-area p {
    font-size: 13px;
    line-height: 21px;
  }

  .in-banner img {
    min-height: 150px;
  }

  .about-page-banner {
    min-height: 300px;
}

.safari-page-banner {
  min-height: 300px;
}

  .in-banner h1 {
    font-size: 24px;
    line-height: 36px;
  }

  .hotel-booking-page-banner .banner-text {
    top: 48%;
  }

  .hotel-booking-page-banner .hotel-banner-form .form-area {
    width: 90%;
    background: rgba(255, 255, 255, .7);
    padding: 20px;
  }

  .hotel-booking-page-banner .banner-text h1 {
    font-size: 40px;
    line-height: 45px;
  }

  .hotel-name-list .featured-tour-area {
    padding: 0 15px;
  }

  .hotel-name-list .featured-tour-area .tour-box {
    width: 100%;
  }

  .hotel-name-list .tour-box .view-details-btn {
    font-size: 15px;
    line-height: 21px;
    padding: 8px 20px;
  }

  .hotel-ebcf_modal-content {
    width: 100%;
  }

  .hotel-ebcf_modal-content .reservation-form .form-area div {
    flex-direction: column;
  }

  .hotel-ebcf_modal-content .reservation-form .form-area form input[type="number"],
  .hotel-ebcf_modal-content .reservation-form .form-area form input[type="date"] {
    width: 100%;
  }

  .hotel-ebcf_modal-content .reservation-form .reservation-form-btn {
    font-size: 18px;
    line-height: 22px;
  }

  .explore-kenya-about-page>.explore-kenya {
    margin: 80px 0 20px 0;
  }

  .tour-details-page_main-content .main-content-area {
    padding: 0 15px;
  }

  .tour-details-page-banner .my-pic2 img {
    margin: 12px 0 0 0;
  }

  .tour-details-page_main-content .right-part .price-area .main-price {
    font-size: 24px;
    line-height: 47px;
    padding: 4px 0 0 0;
  }

  .tour-details-page_main-content .right-part .price-area .price-btn a {
    font-size: 14px;
    line-height: 20px;
    margin-top: 20px;
  }

  .tour-details-page_main-content .left-part h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .tour-details-page_main-content .right-part .form-area form .send-enquiry-btn {
    height: 45px;
    font-size: 16px;
    line-height: 23px;
  }

  .tour-details-page_main-content .left-part .stay-category .panels p {
    background: url(../images/tour-drtails-trip-overview-icon-round.svg) 0% 3%;
    background-repeat: no-repeat;
  }

  .tour-details-page_main-content .stay-category .tabcontent .include-exclude .include li {
    background: url(../images/tour-drtails-includes-icon-green.svg) 0% 10%;
    background-repeat: no-repeat;
  }

  .tour-details-page_main-content .stay-category .include-exclude .include li {
    background: url(../images/tour-drtails-includes-icon-green.svg) 0% 10%;
    background-repeat: no-repeat;
  }

  .tour-details-page_main-content .stay-category .include-exclude .exclude li {
    background: url(../images/tour-drtails-excludes-icon-red.svg) 0% 13%;
    background-repeat: no-repeat;
  }

  .tour-details-page_main-content .stay-category .tour-plan .tour-plan-list li {
    background: url(../images/tour-drtails-trip-overview-icon-round.svg) 0% 22%;
    background-repeat: no-repeat;
  }

  .tour-details-page_main-content .similar-tour>.featured-tour .featured-tour-area .tour-box {
    margin: 25px 0 0 0;
  }

  .tour-details-page_main-content .left-part .choose-trip ul {
    width: 100%;
  }

  .tour-package-list h2 {
    padding: 50px 0 0 0;
  }

  .safari-tour {
    margin: 60px 0 60px 0;
  }

  .contact-information {
    padding: 80px 0;
  }

  .contact-information h3 {
    font-size: 16px;
    line-height: 15px;
  }

  .contact-information-area {
    padding: 0 15px;
  }

  .contact-information-area div {
    width: 100%;
  }

  .contact-information-area div h3 {
    font-size: 16px;
    line-height: 15px;
  }

  .contact-information-area div h4 {
    font-size: 15px;
    line-height: 22px;
  }

  .contact-information h1 {
    font-size: 26px;
    line-height: 36px;
  }

  .contact-information-area div img {
    width: 50px;
    height: 50px;
  }

  .contact-page-form-bg h2 {
    font-size: 26px;
    line-height: 36px;
  }

  .contact-page-form-bg .contact-page-form-area {
    padding: 20px 15px 120px;
  }

  .contact-page-form-bg h2 {
    padding: 50px 0 0 12px;
  }

  .contact-page-form-area .form-input-area div {
    width: 100%;
  }

  .signup-bg {
    min-height: 13rem;
  }

  .signup .signup-text h2 {
    font-size: 26px;
    line-height: 36px;
  }
  .signup .signup-text h3 {
    font-size: 16px;
    line-height: 20px;
  }

  .sign-up-form .form-area h2 {
    font-size: 28px;
    line-height: 29px;
  }


  .login-bg {
    min-height: 13rem;
  }

  .login .login-text h2 {
    font-size: 26px;
    line-height: 36px;
  }
  .login .login-text h3 {
    font-size: 16px;
    line-height: 20px;
  }

  .login-form .form-area h2 {
    font-size: 28px;
    line-height: 29px;
  }

  .tour-details-page_main-content .similar-tour {
    margin: 0 15px;
  }

  .modal-body .safari-modal {
    width: 300px;
    height: auto;
  }

  .checkout-page .form-area form select {
    width:20%;
  }

  .checkout-page .form-area form .pay-now-btn{
    font-size: 14px;
    line-height: 20px;
    padding: 10px 20px;
  }

  .checkout-page .form-area .billing-details {
    margin-top: 36px;
  }

.checkout-page .form-area h3 {
  font-size: 19px;
  line-height: 30px;
}

.checkout-page .form-area{
  width:100%;
}

  .checkout-page{
    padding:60px 15px 70px;
  }




}


/* ---------------------375---------------------- */
@media only screen and (max-width:375px) {}



/* ===========RESPONSIVE SCREEN END========================= */

.error-message {
  color: #ff0000;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  margin: 5px 0 0 0;
}

.modal-error-message {
  color: #ff0000;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  margin: 5px 0 0 0;
}

.my-modal-close {
  font-size: 30px;
  line-height: 35px;
  background: none;
  border: none;
}


.swiper-button-next:after {
  font-size: 26px !important;
}

.swiper-button-prev:after {
  font-size: 26px !important;
}


/* -----------------18/9/2024-------------------------- */


/* ===========LOGIN PAGE========================= */

.login-page div {
  width: 50%;
}
.login-bg {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  height:100vh;
}
.login-form{
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  height:100vh;
  display: flex;
  align-items: center;
}
.login-form .form-area{
  width:70%;
  padding: 0 0 0 50px;
}
.login-form .form-area h2 {
  font-family: "Poppins", sans-serif;
  font-size: 37px;
  line-height: 45px;
  font-weight: 700;
  color:var(--heading);
}
.login-form .form-area h4 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height:22px;
  font-weight: 400;
  color:var(--heading);
  padding: 0 0 30px 0;
}
.login-form .form-area form div label {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  color: var(--heading);
}
.login-form .form-area form div{
  width: 100%;
}
.login-page .login-form .form-area form input[type="text"],
.login-page .login-form .form-area form input[type="password"] {
  width: 100%;
  height: 50px;
  border: 1px solid var(--form-input-border);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color: var(--form-placeholder);
  text-indent: 10px;
  border-radius: 2px;
  outline: none;
  background: none;
}
.login-form .login-btn {
  width: 100%;
  background: var(--btn-green);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 22px;
  font-weight: 400;
  padding: 12px 36px;
  margin: 20px 0 0 0;
  border-radius: 2px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  
}
.login-page .forgot-password{
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  color: var(--heading);
  text-decoration: none;
}

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

  .login-page{
    flex-direction: column;
  }

  .login-page div {
    width:100%;
  }
  .login-bg {
    height:50vh;
  }
  .login-form{
    height:80vh;
  }
  .login-form .form-area{
    width:100% !important;
    border-radius: 5px;
    padding: 0 15px !important;
  }
  .login-form .form-area h2{
    font-size: 26px;
    line-height: 30px;
  }

  .login-form .form-area h4 {
    font-size: 16px;
    line-height:22px;
    font-weight: 400;
    padding: 0 0 15px 0;
  }
  .login-form .form-area{
    width:70%;
    padding: 0 0 0 0px;
  }

}


/* ===========SIGN UP PAGE========================= */

.signup-page div {
  width: 50%;
}
.signup-bg {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height:100vh;
}

.signup-form{
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  min-height:100vh;
  display: flex;
  align-items: center;
}
.signup-form .form-area{
  width:80%;
  padding: 0 0 0 50px;
}
.signup-form .form-area h2 {
  font-family: "Poppins", sans-serif;
  font-size: 37px;
  line-height: 45px;
  font-weight: 700;
  color:var(--heading);
}
.signup-form .form-area h4 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height:22px;
  font-weight: 400;
  color:var(--heading);
  padding: 0 0 30px 0;
}
.signup-form .form-area form div label {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  color: var(--heading);
}
.signup-form .form-area form div{
  width: 100%;
}
.signup-page .signup-form .form-area form input[type="text"],
.signup-page .signup-form .form-area form input[type="password"] {
  width: 100%;
  height: 50px;
  border: 1px solid var(--form-input-border);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color: var(--form-placeholder);
  text-indent: 10px;
  border-radius: 2px;
  outline: none;
  background: none;
}
.signup-page .signup-form .form-area form input[type="file"] {
  width: 100%;
  height: 50px;
  border: 1px solid var(--form-input-border);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color: var(--form-placeholder);
  text-indent: 10px;
  border-radius: 2px;
  outline: none;
  background:var(--form-input-border);
}

.signup-form .signup-btn {
  width: 100%;
  background: var(--btn-green);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 22px;
  font-weight: 400;
  padding: 12px 36px;
  margin: 20px 0 0 0;
  border-radius: 2px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  
}
.signup-page .forgot-password{
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  color: var(--heading);
  text-decoration: none;
}
.signup-page .signup-form .form-input-area div{
  width:49%;
}

.signup-page .signup-form .form-area form input[type="tel"]
{
  width:68%;
  height: 50px;
  border: 1px solid var(--form-input-border);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color: var(--form-placeholder);
  text-indent: 10px;
  border-radius: 2px;
  outline: none;
  background: none;
}
.signup-page .signup-page-select_category {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../images/arrow-down.svg) 80% 50%;
  background-repeat: no-repeat;
  width:28%;
  outline: none;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  padding: 0 8px;
  border: 1px solid var(--form-input-border);
}
.signup-page .input-area-mobile{width: 100% !important;}
.aleady-account{
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  color:var(--heading);
  margin: 15px 0 0 0;
}
.aleady-account a{
  text-decoration: none;
  font-weight: 700;
  color: var(--heading);
}

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

  .signup-page{
    flex-direction: column;
  }

  .signup-page div {
    width:100%;
  }
  .signup-bg {
    min-height:50vh !important;
  }
  .signup-form{
    min-height:180vh !important;
  }
  .signup-form .form-area{
    width:100% !important;
    border-radius: 5px;
    padding: 0 15px !important;
  }
  .signup-form .form-area h2{
    font-size: 26px;
    line-height: 30px;
  }

  .signup-form .form-area h4 {
    font-size: 16px;
    line-height:22px;
    font-weight: 400;
    padding: 0 0 15px 0;
  }
  .signup-form .form-area{
    width:70%;
    padding: 0 0 0 0px;
  }
  .signup-page .signup-form .form-input-area div{
    width:100%;
  }

}

.success-message{
  color:var(--btn-green);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  margin:0 0 8px 0;
}

.error-message{
  color:#ff0000;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  margin:0 0 20px 0;
}

.tour-details-page_main-content .right-part .price-area .main-price-optional {
  font-family: "Poppins", sans-serif;
  font-size: 27px;
  line-height: 60px;
  font-weight: 500;
  color:var(--white);
  background:var(--btn-green);
  border-radius: 2px;
  text-align: center;
  padding: 4px 0 0 0;
  margin: 15px 0 0 0;
}


/* ======PRINT ITINERY POP UP============= */

 .overlay {
	position: absolute;
	top: 0;
	bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.5);
  height: auto;
  width:auto;
	transition: opacity 200ms;
  visibility: hidden;
	opacity: 0;
	&.light {
    background: rgba(255,255,255,0.5);
  } 
  .cancel {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: default;
  }
  &:target {
    visibility: visible;
    opacity: 1;
  }
} 

.popup {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  .light & {
    border-color: #aaa;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
   
  }
  h2 {
    margin-top: 0;
    color: #666;
    font-family: "Trebuchet MS", Tahoma, Arial, sans-serif;
  }
  .close {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 20px;
    right: 20px;
    opacity: 0.8;
    transition: all 200ms;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #666;
    &:hover {
      opacity: 1;
    }
  }
  .content {
    max-height: 400px;
    overflow:hidden;
  }
  p {
    margin: 0 0 1em;
    &:last-child {
      margin: 0;
    }
  }
}
.popup .form-area h1{
  font-family: "Poppins", sans-serif;
  font-size:20px;
  line-height: 20px;
  font-weight: 600;
  color: var(--heading);
text-align: center;
padding: 15px 0;
}

.popup .form-area form input[type="text"],
.popup .form-area form input[type="tel"],
.popup .form-area form input[type="email"]
{
  width: 100%;
    height: 50px;
    border: 1px solid var(--form-input-border);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    line-height: 22px;
    font-weight: 400;
    color: var(--form-placeholder);
    text-indent: 10px;
    border-radius: 2px;
    outline: none;
    margin: 15px 0 0 0;
}

.popup .form-area form .popup-submit-btn {
  background: var(--btn-green);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  padding: 12px 36px;
  border-radius: 2px;
  border: none;
  width:49%;
  margin-top: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.popup .form-area form .popup-cancel-btn {
  background:#31363F;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  padding: 12px 36px;
  border-radius: 2px;
  border: none;
  width: 49%;
  margin-top: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  text-align: center;
  text-decoration: none;
}

.popup .form-area form .popup-otp-submit-btn {
  background: var(--btn-green);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  padding: 12px 36px;
  border-radius: 2px;
  border: none;
  width:100%;
  margin-top: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}



/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
/* .modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 100%;
} */

.print-itenary-modal-content{
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 40%;

}


/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.my-timer{
  text-align: center !important;
  color: #B8001F;
  padding: 15px 0 0 0;
}
.errorModal .modal-content{width:40%;}
.errorModal .modal-content h3{
  font-family: "Poppins", sans-serif;
  font-size:18px;
  line-height: 20px;
  font-weight: 600;
  color: var(--heading);
text-align: center;
text-decoration: underline;

}



@media only screen and (max-width:480px) {
  .popup {
    width:350px;
  }
  .popup .form-area form .popup-submit-btn {
    font-size: 16px;
  }
  .popup .form-area form .popup-cancel-btn {
    font-size: 16px;}  

    .modal {
      width: 100%; /* Full width */
    }
    
    .modal-content {
      width:100%;
    }
.print-itenary-modal-content{
  width:98%;
}
  } 

  /* ===========SUCCESS PAGE========================= */

.success-page{
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-page-area{
  width: 60%;
  padding: 150px 0;
}

.success-page-area h2{
  font-family: "Poppins", sans-serif;
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
  text-align: center;
  color: var(--heading);
}
.success-page-area p{
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  text-align: center;
  color:var(--mob-nav-hover);
}


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

  .success-page-area{
    padding:50px 0;
  }

}