
  @import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500&family=Roboto:wght@300;400&display=swap');
/*-----------------------------------*\
 * #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
 * #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --united-nations-blue: hsl(214, 56%, 58%);
  --bright-navy-blue: hsl(214, 57%, 51%);
  --spanish-gray: hsl(0, 0%, 60%);
  --black-coral: hsl(225, 8%, 42%);
  --oxford-blue: hsl(208, 97%, 12%);
  --yale-blue: hsl(214, 72%, 33%);
  --blue-ncs: hsl(197, 100%, 36%);
  --gunmetal: hsl(206, 34%, 20%);
  --gainsboro: hsl(0, 0%, 88%);
  --cultured: hsl(0, 0%, 98%);
  --white: #f4f0eb;
  --black: hsl(0, 0%, 0%);
  --onyx: hsl(0, 0%, 25%);
  --jet: hsl(0, 0%, 20%);

  /**
   * typography
   */

  --ff-poppins: "Poppins", sans-serif;
  --ff-montserrat: 'Roboto Slab', 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;
  overflow-x: hidden;
  
}

body { background: var(--white); 
overflow-x: hidden;
font-family: 'Roboto', sans-serif;
font-family: 'Roboto Slab', serif;}





/*-----------------------------------*\
 * #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: rgb(150, 63, 63);
  border-color: rgb(150, 63, 63);
}

.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;
  line-height: 2.0;
 color: #AB8F63;
 font-family: "Yellowtail", cursive;
 }

.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;
  background:#f5f1e5 ;
  overflow-x: hidden;
  
}

.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;
  padding-bottom: 20px;
 
  z-index: 1;
}
.mobile-list{
  display: none;
}
.header.active .header-top {
  position: fixed;
  background: #efefef;
  margin-bottom: 20px;
}

.header-top .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: flex-start;
  align-items: center;
  margin-bottom: 5px;
}
.helpline-number,.helpline-title{
  font-size: 20px;
  color: #423F40;
}

.helpline-box .wrapper { display: none; }

.helpline-box .icon-box {
  background: rgb(150, 63, 63);
  padding: 6px;
  border-radius: 50%;
  color: var(--white);
}

.helpline-box .icon-box ion-icon { --ionicon-stroke-width: 40px; }

.header-top .logo { margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
   width: 250px;
   height: 100px;

   padding: 20px;
   border-radius: 5px;
   
}

.header-top .logo img { width: 100%; 

}

.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: #AB8F63;

}

.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;
  margin-top: 20px;
}

.social-list {
  display: flex;
  align-items: center;
  gap: 5px;
}

.social-link {
  /* color: var(--white); */
  color: rgb(96, 96, 96);
  padding: 8px;
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
  font-size: 20px;
  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:last-child{
  display: none;
}

.navbar-list li { border-bottom: 1px solid hsla(0, 0%, 0%, 0.1); }

.navbar-link {
  padding: 15px 20px;
  /* color: var(--jet); */
  color: rgb(96, 96, 96);
  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/safari-img/safari-photo-7.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: hsla(0, 0%, 0%, 0.8);
  background-blend-mode: overlay;
  display: grid;
  place-items: center;
  min-height: 600px;
  text-align: center;
  padding-top: 125px;
} */

.hero-title { margin-bottom: 20px; 
font-size: 20px;
width: 90%;}

.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;
}

/*-----------------------------------*\
 * #short description
\*-----------------------------------*/

.short-dsc{
  margin-top: 160px;
  width: 100%;
  min-height: 50vh;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(../images/safari-image/lio-min.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.short-dsc.zanzibar{
  width: 100%;
  min-height: 50vh;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(../images/zanzibar-img/yatch-bg.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.short-dsc.kilimanjaro{
  width: 100%;
  min-height: 50vh;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(../images/kili-photo/lemosho.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.short-dsc.safari-c{
  width: 100%;
  min-height: 50vh;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(../images/safari-image/photo-7.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.short-dsc.about{
  width: 100%;
  min-height: 50vh;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(../images/safari-image/photo-4.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.short-dsc h2{
  font-size: 2.0rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.short-dsc .link{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #fff;
  padding-top: 2rem;
}
.short-dsc .link a{
  color: #fff;
  font-size: 1.5rem;
}
.short-dsc .link a:hover{
  color: var(--blue-ncs);
}
.short-dsc .link span,
.short-dsc .link p{
  font-size: 1.5rem;
  color: #fff;
}

/*-----------------------------------*\
 * #POPULAR
\*-----------------------------------*/

.popular { padding-block: var(--section-padding); }
.popular .container .section-text{
  max-width: 1200px;
  text-align: center;
  line-height: 2.0;
  font-size: 25px;
  font-weight: 300;
}

.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: rgb(150, 63, 63);
  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: rgb(150, 63, 63);
  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; }





/*-----------------------------------*\
 * #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); */
  background-image: url(../images/safari-img/safari-photo-6.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-block: var(--section-padding);
}

.cta :is(.section-subtitle, .section-title, .section-text) { color: var(--white); }

.cta .section-text { font-size: var(--fs-5);
 }







/* slide show css */

.slide-container{
  position: relative;
  width: 800px;
  height: 350px;
  border: 3px solid #ede6d6;
  box-shadow: 0 0 8px 2px rgba(0,0,0,0.2);
  margin: 10px auto;
}
.slide-container .slides{
  width: 100%;
  height: calc(100% - 40px);
  position: relative;
  overflow: hidden;
}
.slide-container .slides img{
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.slide-container .slides img:not(.active){
  top: 0;
  left: -100%;
}
span.next, span.prev{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 14px;
  color: #eee;
  font-size: 24px;
  font-weight: bold;
  transition: 0.5s;
  border-radius: 3px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}
span.next{
  right: 20px;
}
span.prev{
  left: 20px;
}
span.next:hover, span.prev:hover{
  background-color: #ede6d6;
  opacity: 0.8;
  color: #222;
} 
.dotsContainer{
  position: absolute;
  bottom: 5px;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
}
.dotsContainer .dot{
  width: 15px;
  height: 15px;
  margin: 0px 2px;
  border: 3px solid #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.6s ease;
}
.dotsContainer .active{
  background-color: #555;
}

@keyframes next1{
  from{
    left: 0%
  }
  to{
    left: -100%;
  }
}
@keyframes next2{
  from{
    left: 100%
  }
  to{
    left: 0%;
  }
}

@keyframes prev1{
  from{
    left: 0%
  }
  to{
    left: 100%;
  }
}
@keyframes prev2{
  from{
    left: -100%
  }
  to{
    left: 0%;
  }
}

@media (max-width: 580px) {
  .slide-container{
    position: relative;
    width: 400px;
    height: 350px;
    border: 3px solid #ede6d6;
    box-shadow: 0 0 8px 2px rgba(0,0,0,0.2);
    margin: 10px auto;
  }
  .social-link{
    display: none;
  }
  .btn.btn-primary{
    display: none;
  }
  .navbar-list li:last-child{
    display: block;
  }
  
}


/*-----------------------------------*\
 * #GO TO TOP
\*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 100px;
  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; }

/**
   * safari card desidn
   */
   .safari-container{
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    row-gap: 10px;
    column-gap: 10px;
    text-align: center;
    width: 80%;
    margin: 20px auto;
   }
   .safari-container .safari-card{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 350px;
    border-radius: 20px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
    transition: 0.5s;
   }
   .safari-container .safari-card:hover{
    height: 400px;
   }
   .safari-container .safari-card .imgBx{
    position: absolute;
    top: 20px;
    border-radius: 12px;
    width: 300px;
    height: 220px;
    background: #333;
    transition: 0.5s;
    overflow: hidden;
   }
   .safari-container .safari-card .imgBx img{
    width: 100%;
    height: 100%;
    overflow: hidden;
   }
   .safari-container .safari-card:hover .imgBx{
    top: -100px;
    scale: 0.75;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
   }
   .safari-container .safari-card:hover .imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
   }
   .safari-container .safari-card .safari-content{
    position: absolute;
    overflow: hidden;
    width: 100%;
    padding: 0 30px;
    text-align: center;
    top: 252px;
  overflow: hidden;
  height: 30px;
    text-align: center;
   }
   .safari-container .safari-card:hover .safari-content{
    top: 120px;
    height: 250px;
   }
   .safari-container .safari-card .safari-content h2{
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    color:#AB8F63;
    font-weight: 400;
    font-family: 'Roboto Slab', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
   }
   .safari-container .safari-card .safari-content p{
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
    color: #423F40;
    font-size: 16px;
    font-weight: 300;
    text-align: justify;
   }
   .safari-container .safari-card .safari-content a{
    position: relative;
    top: 15px;
    display: inline-block;
    padding: 12px 25px;
    background: #fb5800;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;

   }

/**
   * itinary styling
   */
   .it-container{
    max-width: 1250px;
    margin: 10px auto;
   }
   .it-container .row{
    display: grid;
    grid-template-columns: 1fr 3px 1fr;
    padding: 0px 20px;
    grid-column-gap:20px;
   }
   .row .line{
    position: relative;
    background-color: #f8c630;
   }
   .contents time{
    position: relative;
    display: inline-block;
    padding: 5px 12px;
    margin-bottom: 20px;
    background-color: #f8c630;
    color: #fff;
    border-radius: 8px;
    text-transform: uppercase;
   }
   .contents time::before{
    position: absolute;
    content: '';
    width: 20px;
    height: 3px;
    background-color: #fb5800;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
   }
   .contents .description{
    position: relative;
    background-color: #fff;
    padding: 15px 20px;
    border-left: 5px solid #fb5800;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.55);
   }
   .contents .description::before{
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    background-color: #fb5800;
    top: -10px;
    left: 20px;
    clip-path: polygon(0% 50%, 50% 0%, 100% 50%,0% 50%);
   }
   .contents .description h3{
    color: #AB8F63;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
   }
   .contents .description p{
    color: #423F40;
    font-size: 14px;
    line-height: 2;
    font-weight: 300;
    text-align: justify;
   font-family: 'Roboto', sans-serif;
   }
   .row .empty-col{
    grid-area: empty_column;
   }
   .row .line{
    grid-area: the_line;
   }
   .row .contents{
    grid-area: the_contents;
    padding: 10px 0px;
   }
   .row:nth-child(odd){
    grid-template-areas: 'empty_column the_line the_contents';
   }
   .row:nth-child(even){
    grid-template-areas: 'the_contents the_line empty_column';
    text-align: right;
   }
   .row:nth-child(even) time::before{
    right: initial;
    left: 100%;
   }
   .row:nth-child(even) .description::before{
    left: initial;
    right: 20px;
   }
   .row:nth-child(even) .description{
    text-align: left;
   }
   .row .line .circle{
    content: '';
    position: absolute;
    width: 17px;
    height: 17px;
    background-color: #f0f0f0;
    border: 3px solid #fb5800;
    border-radius: 50%;
    transform: translateX(-50%);
   }
   .row .line .start{
    top: 0;
   }
   .row .line .end{
    bottom: 0;
   }
    .row:nth-child(odd) .description{
    /* transform: translateX(150px); */
    transition: all 0.5s;
  opacity: 1;
   }
   .row:nth-child(even) .description{
    /* transform: translateX(-150px); */
    transition: all 0.5s;
    opacity: 1;
   } 
   .row:nth-child(odd) .show{
    transform: translateX(0px);
    opacity: 1;
   }
   .row:nth-child(even) .show{
    transform: translateX(0px);
    opacity: 1;
   }
   .description li{
    list-style: none;
    line-height: 2;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #444;
    margin: 3px 0;
    font-family: 'Roboto', sans-serif;
  }
  .description li img{
    width: 25px;
    margin-right: 10px;
  }

/*-----------------------------------*\
 * #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;
  }



  /**
   * 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; }
}

/**
 * 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; }



  

  .form-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }

 

}





/**
 * 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); */
    color: rgb(96, 96, 96);
    --fs-4: 16px;
    font-weight: 600;
    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; }



  /**
 



/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * spacing
     */

    --section-padding: 100px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1180px; }

}
}
   @media(max-width:768px){
    .row:nth-child(odd),
    .row:nth-child(even){
      grid-template-columns: 3px 1fr;
      grid-template-areas: 'the_line the_contents';
      text-align: left;
    }
    .row:nth-child(even) time::before{
      left: initial;
      right: 100%;
     }
     .row:nth-child(even) .description::before{
      right: initial;
      left: 20px;
     }
     .row .empty-col{
      display: none;
     }
     .mobile-list{
      display: block;
      position: fixed;
      bottom: 0;
      display: flex;
      width: 100%;
      background-color: #AB8F63;
      align-items: center;
      justify-content: space-evenly;
      left: 0;
     }
     .mobile-list i{
      font-size: 25px;
      color: #555;
     }
     .mobile-list li:hover a{
      background-color: #222;
     }
     
     .mobile-list a{
    margin: 15px auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
     }
     .mobile-list a p{
      font-size: 12px;
     }
   }
  
   @media(max-width:520px){
    .row:nth-child(odd),
    .row:nth-child(even){
      grid-template-columns: 1fr;
      grid-column-gap: 0px;
    }
    .contents time::before{
      display: none;
    }
    .row .line{
      display: none;
    }
   }
