/*-----------------------------------*\
 * #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
 * #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --united-nations-blue: hsl(132, 76%, 32%);
  --bright-navy-blue: hsl(105, 52%, 41%);
  --spanish-gray: hsl(0, 0%, 60%);
  --black-coral: hsl(225, 8%, 42%);
  --oxford-blue: hsl(116, 97%, 12%);
  --yale-blue: hsl(105, 72%, 33%);
  --blue-ncs: hsl(119, 64%, 47%);
  --gunmetal: hsl(147, 96%, 19%);
  --gainsboro: hsl(0, 0%, 88%);
  --cultured: hsl(0, 0%, 98%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --onyx: hsl(0, 0%, 25%);
  --jet: hsl(0, 0%, 20%);

  /**
   * typography
   */

  --ff-poppins: "Poppins", sans-serif;
  --ff-montserrat: "Montserrat", sans-serif;

  --fs-1: calc(20px + 3.5vw);
  --fs-2: calc(18px + 1.6vw);
  --fs-3: calc(16px + 0.45vw);
  --fs-4: 15px;
  --fs-5: 14px;
  --fs-6: 13px;
  --fs-7: 12px;
  --fs-8: 11px;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
   * transition
   */

  --transition: 0.25s ease-in-out;

  /**
   * spacing
   */

  --section-padding: 60px;

  /**
   * border-radius
   */

  --radius-15: 15px;
  --radius-25: 25px;

}





/*-----------------------------------*\
 * #RESET
\*-----------------------------------*/

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a { text-decoration: none; }

a,
img,
span,
input,
label,
button,
ion-icon { display: block; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

button { cursor: pointer; }

input { width: 100%; }

ion-icon { pointer-events: none; }

html {
  font-family: var(--ff-poppins);
  scroll-behavior: smooth;
}

body { background: var(--white); }





/*-----------------------------------*\
 * #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.btn {
  color: var(--white);
  text-transform: uppercase;
  font-size: var(--fs-5);
  /* border-radius: 100px; */
  padding: var(--padding, 8px 18px);
  border: var(--border-width, 2px) solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--bright-navy-blue);
  border-color: var(--bright-navy-blue);
}

.btn-primary:is(:hover, :focus) {
  background: var(--yale-blue);
  border-color: var(--yale-blue);
}

.btn-secondary { border-color: var(--white); }

.btn-secondary:is(:hover, :focus) { background: hsla(0, 0%, 100%, 0.1); }

.h1,
.h2,
.h3 {
  font-weight: var(--fw-800);
  font-family: var(--ff-montserrat);
  text-transform: uppercase;
}

.h1 {
  color: var(--white);
  font-size: var(--fs-1);
}

.h2,
.h3 { color: var(--gunmetal); }

.h2 { font-size: var(--fs-2); }

.h3 {
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
}

.section-subtitle {
  color: var(--bright-navy-blue);
  font-size: var(--fs-5);
  text-transform: uppercase;
  font-family: var(--ff-montserrat);
  margin-bottom: 8px;
}

.section-title { margin-bottom: 15px; }

.section-text {
  color: var(--black-coral);
  margin-bottom: 30px;
}

.card-text {
  color: var(--black-coral);
  font-size: var(--fs-5);
}





/*-----------------------------------*\
 * #HEADER
\*-----------------------------------*/

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 61px;
  z-index: 4;
}

.header-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: var(--transition);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  padding-block: 15px;
  z-index: 1;
}

.header.active .header-top {
  position: fixed;
  background: var(--gunmetal);
}

.header-top .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: flex-start;
  align-items: center;
}

.helpline-box .wrapper { display: none; }

.helpline-box .icon-box {
  background: var(--bright-navy-blue);
  padding: 6px;
  /* border-radius: 50%; */
  color: var(--white);
}

.helpline-box .icon-box ion-icon { --ionicon-stroke-width: 40px; }

.header-top .logo { margin-inline: auto; }

.header-top .logo img { max-width: 100px; }

.header-btn-group {
  justify-self: flex-end;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.search-btn,
.nav-open-btn {
  font-size: 30px;
  color: inherit;
}

.search-btn { font-size: 20px; }

.header-bottom { border-bottom: 1px solid hsla(0, 0%, 100%, 0.1); }

.header-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 15px;
}

.social-list {
  display: flex;
  align-items: center;
  gap: 5px;
}

.social-link {
  color: var(--white);
  padding: 8px;
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  /* border-radius: 50%; */
  font-size: 15px;
  transition: var(--transition);
}

.social-link:is(:hover, :focus) { background: hsla(0, 0%, 100%, 0.2); }

.header .btn { --padding: 4px 20px; }

.header .navbar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 100%;
  max-width: 300px;
  height: 100%;
  background: var(--white);
  visibility: hidden;
  pointer-events: none;
  transition: 0.15s ease-in;
  z-index: 3;
}

.navbar.active {
  right: 0;
  visibility: visible;
  pointer-events: all;
  transition: 0.25s ease-out;
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 15px;
}

.navbar-top .logo img { width: 150px; }

.nav-close-btn {
  font-size: 20px;
  color: var(--bright-navy-blue);
}

.nav-close-btn ion-icon { --ionicon-stroke-width: 80px; }

.navbar-list { border-top: 1px solid hsla(0, 0%, 0%, 0.1); }

.navbar-list li { border-bottom: 1px solid hsla(0, 0%, 0%, 0.1); }

.navbar-link {
  padding: 15px 20px;
  color: var(--jet);
  font-weight: var(--fw-500);
  font-size: var(--fs-4);
  transition: var(--transition);
  text-transform: capitalize;
}

.navbar-link:is(:hover, :focus) { color: var(--bright-navy-blue); }

.overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: var(--transition);
}

.overlay.active {
  opacity: 0.7;
  pointer-events: all;
}





/*-----------------------------------*\
 * #HERO
\*-----------------------------------*/

.hero {
  background-image: url("../images/HeroBanner.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: hsla(0, 0%, 0%, 0.7);
  background-blend-mode: overlay;
  display: grid;
  place-items: center;
  min-height: 600px;
  text-align: center;
  padding-top: 125px;
}
.hero-no-index {

  background-color: hsla(0, 0%, 0%, 0.7);
  background-blend-mode: overlay;
  display: grid;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  place-items: center;
  min-height: 100px;
  text-align: center;
  padding-top: 125px;
}
@media (min-width: 580px) {
  .hero-no-index {
      min-height: 100px;
      padding-top: 235px;
  }
}

.hero-title { margin-bottom: 20px; }

.hero-text {
  color: var(--white);
  font-size: var(--fs-5);
  margin-bottom: 40px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}





/*-----------------------------------*\
 * #TOUR SEARCH
\*-----------------------------------*/

.tour-search {
  background: var(--bright-navy-blue);
  padding-block: var(--section-padding);
}

.tour-search-form .input-label {
  color: var(--white);
  font-size: var(--fs-4);
  margin-left: 20px;
  margin-bottom: 10px;
}

.tour-search-form .input-field {
  background: var(--white);
  padding: 10px 15px;
  font-size: var(--fs-5);
  /* border-radius: 50px; */
}

.tour-search-form .input-field::placeholder { color: var(--spanish-gray); }

.tour-search-form .input-field::-webkit-datetime-edit {
  color: var(--spanish-gray);
  text-transform: uppercase;
}

.tour-search-form .input-wrapper { margin-bottom: 15px; }

.tour-search .btn {
  width: 100%;
  --border-width: 1px;
  font-weight: var(--fw-600);
  margin-top: 35px;
}





/*-----------------------------------*\
 * #POPULAR
\*-----------------------------------*/

.popular { padding-block: var(--section-padding); }

.popular-list,
.popular-list > li:not(:last-child) { margin-bottom: 30px; }

.popular-card {
  position: relative;
  overflow: hidden;
  /* border-radius: var(--radius-25); */
  height: 430px;
}

.popular-card .card-img { height: 100%; }

.popular-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-card .card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--white);
  /* border-radius: var(--radius-25); */
  padding: 20px;
}


.popular-card .card-rating {
  background: var(--bright-navy-blue);
  color: var(--white);
  position: absolute;
  top: 0;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 1px;
  transform: translateY(-50%);
  padding: 6px 10px;
  /* border-radius: 20px; */
  font-size: 14px;
}

.popular-card .card-subtitle {
  color: var(--blue-ncs);
  font-size: var(--fs-6);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.popular-card .card-title { margin-bottom: 5px; }

.popular-card :is(.card-subtitle, .card-title) > a { color: inherit; }

.popular .btn { margin-inline: auto; }





/*-----------------------------------*\
 * #PACKAGE
\*-----------------------------------*/

.package { padding-block: var(--section-padding); }

.package-list { margin-bottom: 40px; }

.package-list > li:not(:last-child) { margin-bottom: 30px; }

.package-card {
  background: var(--cultured);
  overflow: hidden;
  /* border-radius: 15px; */
}

.package-card .card-banner { height: 250px; }

.package-card .card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-card .card-content { padding: 30px 20px; }

.package-card .card-title { margin-bottom: 15px; }

.package-card .card-text {
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-meta-list {
  background: var(--white);
  max-width: max-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 8px;
  box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.15);
  /* border-radius: 50px; */
}

.card-meta-item { position: relative; }

.card-meta-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -1px;
  bottom: 4px;
  width: 1px;
  background: hsla(0, 0%, 0%, 0.3);
}

.meta-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding-inline: 9px;
  color: var(--black-coral);
  font-size: var(--fs-8);
}

.meta-box > ion-icon {
  color: var(--bright-navy-blue);
  font-size: 13px;
}

.package-card .card-price {
  background: var(--united-nations-blue);
  color: var(--white);
  padding: 25px 20px;
  text-align: center;
}

.package-card .card-price .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px 15px;
  margin-bottom: 10px;
}

.package-card .card-price .reviews { font-size: var(--fs-5); }

.package-card .card-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px;
  font-size: 14px;
}

.package-card .card-rating ion-icon:last-child { color: hsl(0, 0%, 80%); }

.package-card .price {
  font-size: var(--fs-2);
  font-family: var(--ff-montserrat);
  font-weight: var(--fw-800);
  margin-bottom: 20px;
}

.package-card .price span {
  font-size: var(--fs-7);
  font-weight: initial;
}

.package .btn { margin-inline: auto; }


.itenary-btn{
  font-size: 0.8rem;
  padding: 0.57rem 0;
  border: 3px solid green;
  color: rgb(8, 72, 8);
  text-align: center;
margin-top:15px;
font-weight: 700;
letter-spacing: 2px;
transition: ease-in-out 0.5s;
}
.itenary-btn:hover{
  background-color:hsl(132, 76%, 32%);;
  border: 3px solid  rgb(14, 105, 14);
  color: white;
}




/*-----------------------------------*\
 * #GALLERY
\*-----------------------------------*/

.gallery { padding-block: var(--section-padding); }

.gallery-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  /* border-radius: var(--radius-15); */
  overflow: hidden;
}

.gallery-item:nth-child(3) { grid-area: 1 / 2 / 3 / 3; }

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}





/*-----------------------------------*\
 * #CTA
\*-----------------------------------*/

.cta {
  background: var(--bright-navy-blue);
  padding-block: var(--section-padding);
}

.cta :is(.section-subtitle, .section-title, .section-text) { color: var(--white); }

.cta .section-text { font-size: var(--fs-5); }





/*-----------------------------------*\
 * #FOOTER
\*-----------------------------------*/

.footer-top {
  background: var(--gunmetal);
  padding-block: var(--section-padding);
  color: var(--gainsboro);
}

.footer-brand { margin-bottom: 30px; }

.footer-brand img { width: 180px; }

.footer-brand .logo { margin-bottom: 20px; }

.footer-text {
  font-size: var(--fs-5);
  line-height: 1.7;
}

.footer-contact { margin-bottom: 30px; }

.contact-title {
  position: relative;
  font-family: var(--ff-montserrat);
  font-weight: var(--fw-500);
  margin-bottom: 30px;
}

.contact-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--bright-navy-blue);
}

.contact-text {
  font-size: var(--fs-5);
  margin-bottom: 15px;
  max-width: 200px;
}

.contact-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-item ion-icon { --ionicon-stroke-width: 40px; }

.contact-link,
address {
  font-style: normal;
  color: var(--gainsboro);
  font-size: var(--fs-5);
}

.contact-link:is(:hover, :focus) { color: var(--white); }

.form-text {
  font-size: var(--fs-5);
  margin-bottom: 20px;
}

.footer-form .input-field {
  background: var(--white);
  font-size: var(--fs-5);
  padding: 15px 20px;
  /* border-radius: 100px; */
  margin-bottom: 10px;
}

.footer-form .btn { width: 100%; }

.footer-bottom {
  --gunmetal: hsl(205, 36%, 17%);
  background: var(--gunmetal);
  padding-block: 20px;
  text-align: center;
}

.copyright {
  color: var(--gainsboro);
  font-size: var(--fs-5);
  margin-bottom: 10px;
}

.copyright a {
  color: inherit;
  display: inline-block;
}

.copyright a:is(:hover, :focus) { color: var(--white); }

.footer-bottom-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
}

.footer-bottom-list > li { position: relative; }

.footer-bottom-list > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -10px;
  bottom: 3px;
  width: 1px;
  background: hsla(0, 0%, 100%, 0.2);
}

.footer-bottom-link {
  color: var(--gainsboro);
  font-size: var(--fs-7);
  transition: var(--transition);
}

.footer-bottom-link:is(:hover, :focus) { color: var(--white); }





/*-----------------------------------*\
 * #GO TO TOP
\*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: var(--bright-navy-blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 18px;
  /* border-radius: 6px; */
  box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.5);
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: var(--transition);
}

.go-top.active {
  opacity: 0.8;
  transform: translateY(0);
  visibility: visible;
}

.go-top:is(:hover, :focus) { opacity: 1; }





/*-----------------------------------*\
 * #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 580px screen
 */

@media (min-width: 580px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 580px;
    margin-inline: auto;
  }

  .btn {
    --fs-5: 16px;
    --padding: 12px 30px;
  }

  section:not(.cta) :is(.section-subtitle, .section-title, .section-text) {
    text-align: center;
  }

  .section-text { margin-bottom: 40px; }

  .card-text { --fs-5: 15px; }



  /**
   * HEADER
   */

  .header { padding-top: 83px; }

  .helpline-box .icon-box { padding: 14px; }

  .header-top .logo img { max-width: unset; }

  .search-btn { font-size: 30px; }

  .nav-open-btn { font-size: 40px; }

  .header .btn {
    --fs-5: 14px;
    --padding: 6px 20px;
  }

.logo-width{
        width: 329px;
        height: 74px;
        overflow: hidden;
        position: relative;
        margin-bottom: -13px;
}

  /**
   * HERO
   */

  .hero {
    min-height: 800px;
    padding-top: 85px;
  }

  .hero-text { --fs-5: 15px; }

  .btn-group { gap: 20px; }



  /**
   * TOUR SEARCH
   */

  .tour-search-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    gap: 15px;
  }

  .tour-search-form .input-wrapper { margin-bottom: 0; }

  .tour-search-form .input-field { padding: 16px 20px; }

  .tour-search .btn {
    grid-column: span 2;
    margin-top: 20px;
  }



  /**
   * POPULAR
   */

  .popular-card .card-content { right: auto; }



  /**
   * FOOTER
   */

  .footer .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-form { grid-column: span 2; }

  .footer-bottom { text-align: left; }

  .copyright { margin-bottom: 0; }

  .footer-bottom-list { justify-content: flex-end; }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-5: 15px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 800px; }

  .section-text {
    max-width: 60ch;
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .helpline-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }

  .helpline-box .wrapper {
    display: block;
    color: var(--white);
    font-size: var(--fs-6);
  }

  .social-list { gap: 10px; }



  /**
   * POPULAR
   */

  .popular-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }

  .popular-list > li:not(:last-child) { margin-bottom: 0; }

  .popular-card .card-content { right: 20px; }



  /**
   * PACKAGE
   */

  .package-list { margin-bottom: 50px; }

  .package-list > li:not(:last-child) { margin-bottom: 40px; }

  .package-card {
    display: grid;
    grid-template-columns: 1.3fr 1.5fr 1fr;
  }

  .package-card .card-banner { height: 100%; }

  .package-card .card-content { padding: 40px; }

  .package-card .card-price {
    display: grid;
    place-content: center;
  }

  .package-card .card-price .wrapper { margin-bottom: 15px; }



  /**
   * GALLERY
   */

  .gallery { padding-bottom: calc(var(--section-padding * 2)); }

  .gallery-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .gallery-image {
     /* border-radius: var(--radius-25);  */
    }



  /**
   * CTA
   */

  .cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .cta-content { width: calc(100% - 225px); }

  .cta .section-text { margin-inline: 0; }



  /**
   * FOOTER
   */

  .form-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }

  .footer-form .input-field { margin-bottom: 0; }

  .footer-form .btn { width: max-content; }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 1050px; }



  /**
   * HEADER
   */

  .header.active .header-top {
    position: unset;
    background: unset;
  }

  .nav-open-btn,
  .navbar-top { display: none; }

  .header-bottom { border-bottom: none; }

  .header.active .header-bottom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    color: var(--onyx);
    box-shadow: 0 2px 5px hsla(0, 0%, 0%, 0.08);
    transition: var(--transition);
  }

  .header-bottom .container { padding-block: 0; }

  .header .navbar { all: unset; }

  .navbar-list {
    border-top: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navbar-list li { border-bottom: none; }

  .navbar-link {
    color: var(--white);
    --fs-4: 16px;
    font-weight: unset;
    text-transform: uppercase;
    padding: 20px 15px;
  }

  .header.active .navbar-link { color: var(--onyx); }

  .header.active .navbar-link:is(:hover, :focus) { color: var(--bright-navy-blue); }

  .header.active .social-link {
    color: var(--onyx);
    border-color: hsla(0, 0%, 0%, 0.15);
  }

  .overlay { display: none; }



  /**
   * HERO
   */

  .hero .container { max-width: 740px; }



  /**
   * TOUR SEARCH
   */

  .tour-search-form { grid-template-columns: repeat(5, 1fr); }

  .tour-search .btn {
    --padding: 15px;
    grid-column: unset;
    margin-top: 0;
  }



  /**
   * POPULAR
   */

  .popular-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * PACKAGE
   */

  .meta-box { --fs-8: 13px; }

  .meta-box > ion-icon { font-size: 15px; }



  /**
   * CTA 
   */

  .cta .section-title { max-width: 25ch; }



  /**
   * FOOTER
   */

  .footer-top .container {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }

  /***
  contact us page
  **/



  
  .footer-form { grid-column: unset; }

  .form-wrapper { flex-direction: column; }

  .footer-form .btn { width: 100%; }

}


.services .box-container{
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
}

.services .box-container .box{
  flex: 1 1 21rem;
  /* border-radius: .5rem; */
  padding:1rem;
  text-align: center;
}

.services .box-container .box i{
  padding:1rem;
  font-size: 5rem;
  color:rgb(92, 108, 255);
}

.services .box-container .box h3{
  font-size: 1.5rem;
  color:#333;
}

.services .box-container .box p{
  font-size: 1.07rem;
  color:#666;
  padding:1rem 0;
}

.services .box-container .box:hover{
  box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
}


/* ================================================= */
/* ------------------ About Style ------------------ */
/* ================================================= */

#about {
  position: relative;
  padding: 45px 0 60px 0;
  background: #f2f2f2;
}

#about hr {
  width: 50%;
  margin: 45px auto;
}

#about .img-cols,
#about .content-cols {
  padding: 0;
}

#about .content-cols {
  background: #222222;
}

#about .img-col,
#about .content-col {
  position: relative;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#about .content-col {
  background: #222222;
  padding: 30px
}

#about .img-col {
  overflow: hidden;
}

#about .img-col img {
  transition: 0.3s;
  width: 100%;
}

#about .img-col:hover img {
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#about .content-col h3 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 15px;
}


.aboutUs-page{
  margin-top: 5rem;
}
.about-header-title{
  background-color: green;
  padding: 1rem;
}
.about-header-title p{
  padding-left: 1rem;
}
@media (max-width: 767.98px) {
  #about .content-col {
      text-align: center;
  }

  #about .content-col h3 {
      font-weight: 400;
      margin-top: 15px;
  }
}

#about .content-col p {
  color: #ddd;
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  margin-bottom: 20px;
}

#about .content-col a {
  display: inline-block;
  background: #FFD700;
  font-weight: 400;
  color: #222222;
  padding: 10px 30px;
}

#about .content-col a:hover {
  background: #ffffff;
  color: #FFD700;
}

#about .content-col a:focus {
  color: #fff;
}
/*about us ends*/



/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * spacing
     */

    --section-padding: 100px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1180px; }

}

/****

CONTACT US PAGE
***/

/* For tall screens on mobiles y desktop*/
@media screen and (min-height: 721px) {
  body {
    margin: 0;
  }
  .home__container, .home__img {
    height: 640px;
  }
}
.cly-popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  height: 100vh;
  width: 100%;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all ease-in 0.3s;
  display: flex;
}

.cly-popup--hidden {
  opacity: 0;
  visibility: hidden;
}

.cly-popup__content {
  width: 65%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 3px;
  box-shadow: 0 2em 4em hsla(0, 0%, 0%, 0.2);
  transition: all 0.3s 0.04s;
  overflow-y: auto;
  margin: 0 auto;
}

.cly-popup__content--hidden {
  opacity: 0;
  transform: scale(0);
}

.cly-popup__header {
  padding: 16px 1em;
  background-color: #f8f8f8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 1px 3px #afaeae;
}

.cly-popup__title {
  display: inline-block;
  font-weight: 600;
  font-size: 1.8em;
}

.cly-popup__close {
  color: #444;
  font-size: 3em;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.cly-popup__close:hover {
  color: #000;
}

@media (max-width: 600px) {
  .cly-popup {
    padding: 1em;
  }
}
/* -------------------------------------cly-form------------------------------- */
.cly-form {
  padding: 2em;
  height: 90%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.cly-form__flex-wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

@media (max-width: 600px) {
  .cly-form__flex-wrapper {
    flex-direction: column;
  }
}
.cly-form__flex-wrapper:not(:last-child) {
  margin-bottom: 1em;
}

.cly-form__group {
  flex: 1;
}

.cly-form__group:not(:last-child) {
  margin-right: 1em;
}

@media (max-width: 600px) {
  .cly-form__group:not(:last-child) {
    margin-bottom: 1em;
  }
  .package__container {
    padding: 3rem 1rem 1rem 1rem !important;
  }
  .it-cards__detail-desc--text {
    font-size: 0.8rem !important;
  }
  .it-cards__detail-pkg--text {
    font-size: 0.7rem !important;
  }
  .it-cards__detail-header--title, .it-cards__detail-header--price {
    font-size: 1.1rem !important;
  }
  .package-header {
    padding-left: 0 !important;
  }
  .conatctus {
    padding: 5px 5px !important;
  }
  .package__hero {
    margin-top: -48px !important;
    height: 12rem !important;
  }
}
.cly-form__label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.3em;
}

.cly-form__input {
  display: block;
  /* font-family: inherit; */
  font-family: var(--ff-montserrat);
  
  font-size: 1.2em;
  border-radius: 2px;
  padding: 0.5em;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid #f7f7f7;
  color: inherit;
  transition: all 0.5s;
  border-bottom: 3px solid transparent;
  resize: none;
}

.cly-form__input:focus {
  outline: none;
  box-shadow: 0 1em 2em rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #27ae60;
}

.cly-form__input:focus:invalid,
.cly-form__textarea:focus:invalid {
  border-bottom: 3px solid #ee8080;
}

.cly-form__btn,
.cly-form__btn:active {
  outline: none;
  cursor: pointer;
  margin-left: auto;
  margin-top: auto;
  padding: 0.5em 1em;
  border: none;
  background-color: #00aff0;
  color: #ffffff;
  font-size: 1.2em;
}

.cly-form__btn:hover {
  background-color: #1c75bc;
  color: #ffffff;
}

.form__inputSection {
  padding: 3rem;
  width: 100%;
  padding-top: 0;
}

.form__row {
  display: flex;
  justify-content: space-between;
  margin: 1.5rem 0;
}

.form__input {
  display: flex;
  flex-direction: column;
  width: 45%;
  outline: none;
}

.form__title {
  margin: 2rem 0;
  font-weight: 100;
  color: #35477d;
}

.form__title--white {
  color: #fff;
}

.form__label {
  font-size: 1rem;
  color: #b3b3b3;
  margin: 0.6rem 0;
}

.form__inputField {
  border: none;
  border-bottom: 1px solid #b3b3b3;
  width: 100%;
  padding-top: 0.56rem;
  outline: none;
}

.form__detailsSecrion {
  width: 100%;
  background-color: #35477d;
  padding: 2rem;
  padding-top: 0;
  padding-left: 1rem;
}

.form__para {
  color: #fff;
  word-break: break-word;
  font-size: 0.9rem;
}

.list {
  list-style-type: none;
  font-size: 0.9rem;
}

.list-item {
  margin: 1rem 0.1rem;
  word-wrap: break-word;
}

.list-item > span {
  word-break: break-word;
  color: #fff;
}

.form--flex-end {
  justify-content: flex-end;
}

.form__btn {
  width: 9rem;
  height: 3rem;
  font-size: 1rem;
  color: #fff;
  border: none;
  background: #35477d;
}

.form__href {
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 850px) {
  .cly-form__flex-wrapper {
    flex-direction: column;
  }
  .form__detailsSecrion {
    width: 100%;
    margin-bottom: 1rem;
  }
  .form__inputSection {
    width: 100%;
    padding: 0 0;
  }
}
@media (max-width: 800px) {
  .form__row {
    flex-direction: column;
    margin: 0 0;
  }
  .form__input {
    margin: 0.5rem 0;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .cly-popup__content {
    width: 94%;
  }
}
@media (max-width: 480px) {
  .nav__logo {
    width: 26% !important;
  }
}
.err-alert {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
  margin: 2rem auto;
  box-shadow: 0 0 5px 2px rgb(228, 80, 80);
}

.err-alert > h1 {
  color: rgb(173, 32, 32);
  word-wrap: break-word;
}

.alert {
  padding: 20px;
  background-color: green;
  color: white;
  top: 5rem;
  right: 0;
  position: fixed;
  opacity: 0.88;
  z-index: 5;
}

.alert-warning {
  background-color: #e00e0e;
}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: red;
}


.home__data {
  margin-top: 7.8rem;
}

.ftco-section a {
  transition: 0.3s all ease;
  color: #e3b04b;
}
.ftco-section a:hover, .ftco-section a:focus {
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none;
}

.bg-primary {
  background: #e3b04b !important;
}

.ftco-section {
  padding: 7em 0;
}

.ftco-no-pt {
  padding-top: 0;
}

.ftco-no-pb {
  padding-bottom: 0;
}

.heading-section {
  font-size: 34px;
  color: #000;
  font-weight: 700;
  border: 1px solid #cfcccc;
  padding: 1rem;
  border-radius: 5px;
}

.img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.form-control {
  height: 40px;
  background: transparent;
  color: rgba(0, 0, 0, 0.8) !important;
  font-size: 14px;
  border-radius: 0px;
  box-shadow: none !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(0, 0, 0, 0.5) !important;
}
.form-control::-moz-placeholder { /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.5) !important;
}
.form-control:-ms-input-placeholder { /* IE 0+ */
  color: rgba(0, 0, 0, 0.5) !important;
}
.form-control:-moz-placeholder { /* Firefox 18- */
  color: rgba(0, 0, 0, 0.5) !important;
}
.form-control:focus, .form-control:active {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.3) !important;
}

textarea.form-control {
  height: inherit !important;
}

.wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
}

.contact-wrap {
  background: #fff;
}
.contact-wrap h3 {
  color: #000;
}

@media (max-width: 991.98px) {
  .info-wrap {
    height: 400px;
  }
}

/* .btn {
  padding: 12px 16px;
  cursor: pointer;
  border-width: 1px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
  box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
  position: relative;
  margin-bottom: 20px;
  transition: 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
} */
/* .btn:hover, .btn:active, .btn:focus {
  outline: none !important;
  box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.22) !important;
}
.btn.btn-primary {
  background: #e3b04b !important;
  border-color: #e3b04b !important;
  color: #fff;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  border-color: #d99c22 !important;
  background: #d99c22 !important;
} */

.contactForm .form-control {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0;
}

#contactForm .error {
  color: red;
  font-size: 12px;
}
#contactForm .form-control {
  font-size: 16px;
}

#message {
  resize: vertical;
}

#form-message-warning, #form-message-success {
  display: none;
}

#form-message-warning {
  color: red;
}

#form-message-success {
  color: #28a745;
  font-size: 18px;
  font-weight: 500;
}

.submitting {
  float: left;
  width: 100%;
  padding: 10px 0;
  display: none;
  font-size: 16px;
  font-weight: 500;
  color: #e3b04b;
}

.conatctus {
  border: 1px solid;
  padding: 5px 19px;
  border-color: var(--first-color);
}

.paddint-top {
  padding-top: 7rem !important;
  padding-left: 1.1rem !important;
}

.hero {
  background-attachment: fixed;
  background-origin: border-box;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #FFF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#err {
  width: 100%;
  display: flex;
  justify-content: end;
  position: fixed;
  z-index: 99999999;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensure it's on top of everything */
}

.exploreMore-btn {
  display: flex;
  width: 100%;
  justify-content: center;
  transition: 0.68s all;
  color: #fff;
}

.exploreMore-btn :hover {
  background-color: transparent;
  border: 1px solid #faaf19;
  color: #000;
}/*# sourceMappingURL=styles.css.map */

.hero-contact{
    background-image: url("../images/HeroBanner.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: hsla(0, 0%, 0%, 0.7);
    background-blend-mode: overlay;
}


/*//contcat page*/
.container-contact{
  width: 85%;
  background: #fff;
  border-radius: 6px;
  padding: 20px 60px 30px 40px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  font-family: "Montserrat", sans-serif;
}
.container-contact .content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.container-contact .content .left-side{
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}
.content .left-side::before{
  content: '';
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #afafb6;
}
.content .left-side .details{
  margin: 14px;
  text-align: center;
}
.content .left-side .details i{
  font-size: 30px;
  color: #3e2093;
  margin-bottom: 10px;
}
.content .left-side .details .topic{
  font-size: 18px;
  font-weight: 500;
}
.content .left-side .details .text-one,
.content .left-side .details .text-two{
  font-size: 14px;
  color: #afafb6;
}
.container-contact .content .right-side{
  width: 75%;
  margin-left: 75px;
}
.content .right-side .topic-text{
  font-size: 30px;
  font-weight: 600;
  color: #3e2093;
}
.right-side .input-box{
  height: 50px;
  width: 100%;
  margin: 12px 0;
}
.right-side .input-box input,
.right-side .input-box textarea{
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #F0F1F8;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}
.right-side .message-box{
  margin-top:39px;
  min-height: 110px;
}
.right-side .input-box textarea{
  padding-top: 6px;
}
.right-side .button{
  display: inline-block;
  margin-top: 12px;
}
.right-side .button input[type="button"]{
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: #3e2093;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button input[type="button"]:hover{
  background: #5029bc;
}
.common-box{
  display: flex;
  justify-content: space-between;

}
.ip-box{margin-bottom: 3rem;width: 48% !important;}
@media (max-width: 950px) {
  .container-contact{
    width: 90%;
    padding: 30px 40px 40px 35px ;
  }
  .container-contact .content .right-side{
   width: 75%;
   margin-left: 55px;
}
.common-box{
  flex-direction: column;
  margin-bottom: 3rem;
}
.ip-box:not(:first-child){
  width: 100%;
  margin-top: 2rem;
}
.ip-box{
  width: 100% !important;
  margin-top: 2rem;
}
}
@media (max-width: 820px) {
  .container-contact{
    margin: 40px 0;
    height: 100%;
  }
  .container-contact .content{
    flex-direction: column-reverse;
  }
 .container-contact .content .left-side{
   width: 100%;
   flex-direction: row;
   margin-top: 40px;
   justify-content: center;
   flex-wrap: wrap;
 }
 .container-contact .content .left-side::before{
   display: none;
 }
 .container-contact .content .right-side{
   width: 100%;
   margin-left: 0;
 }
}
.clickable-date {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Ensure the cursor is a pointer over the input field */
.clickable-date::-webkit-datetime-edit {
  cursor: pointer;
}

.clickable-date::-webkit-input-placeholder {
  cursor: pointer;
}

/* For other browsers */
.clickable-date::-moz-placeholder {
  cursor: pointer;
}

.clickable-date::-ms-input-placeholder {
  cursor: pointer;
}
.container-contact {
  position: relative; /* Fixed position on the screen */
  top: 0;
  right: -100%; /* Hidden off the screen to the right */
  height: 100%; /* Full height for vertical alignment */
  width:80%; /* Adjust as needed for the container width */
  background-color: #fff; /* Background color */
  background: #fff;
  border-radius: 6px;
  padding: 20px 60px 30px 40px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  font-family: "Montserrat", sans-serif;
  transition: right 0.8s ease; /* Smooth transition for the animation */

}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .container-contact {
    width: 95%; /* Smaller width for mobile */
  }
}

/* Active state when visible */
.container-contact.active {
  right: 0; /* Slide into view */
}


/*CAR RENTAL BTN*/
/* Styling for the fixed rental button */
.fixed-rental-button {
  position: fixed;
  bottom: 20px;
  left: 5px;
  background-color: #ff5722;
  color: #fff;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  animation: pulse 2s infinite;
}

/* Hover effect */
.fixed-rental-button:hover {
  background-color: #e64a19;
  transform: scale(1.1);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive behavior for smaller screens */
@media (max-width: 768px) {
  .fixed-rental-button {
    font-size: 14px;
    padding: 12px 15px;
    bottom: 15px;
    left :5px;
  }
}

/* Pulse animation for attention */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@media (max-width:600px) {
  .logo-width{
    width: 136px;
    height: 31px;
  }
}