.post-template-default .site-header {
  position: relative;
}
/* Itinerary Banner start  */
.itinerary-banner__section {
  padding: 30px 0;
  background: linear-gradient(180deg, #ffffff 0%, #d3f4f2 107.33%);
}
ul.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 25px;
  padding: 0;
}
ul.breadcrumb li {
  position: relative;
  font-size: 14px;
  color: #336939;
}
ul.breadcrumb li:not(:last-child)::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #979898;
  font-size: 12px;
  margin: 0 8px;
}
ul.breadcrumb li a {
  color: #979898;
}
.itinerary-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 20px;
  position: relative;
}
.itinerary-gallery .view__img {
  position: absolute;
  right: 25px;
  bottom: 25px;
  border-radius: 12px;
  border: 1.5px solid #ffffff;
  padding: 10px 14px;
  color: var(--light);
  font-size: 14px;
  font-weight: 600;
}
.itinerary-gallery figure {
  margin: 0;
  cursor: pointer;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.itinerary-gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.itinerary-gallery figure:nth-child(1) {
  grid-column: span 2 / span 2;
  grid-row: span 6 / span 6;
}
.itinerary-gallery figure:nth-child(2) {
  grid-column: span 2 / span 2;
  grid-row: span 3 / span 3;
  grid-column-start: 3;
}
.itinerary-gallery figure:nth-child(3) {
  grid-column: span 2 / span 2;
  grid-row: span 6 / span 6;
  grid-column-start: 5;
}
.itinerary-gallery figure:nth-child(4) {
  grid-column: span 2 / span 2;
  grid-row: span 3 / span 3;
  grid-column-start: 3;
  grid-row-start: 4;
}
.itinerary-gallery figure:nth-child(3)::after {
  content: "";
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 74.03%,
    rgba(0, 0, 0, 0.75) 100%
  );
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.itinerary-gallery figure:not(:nth-child(-n + 4)) {
  display: none;
}
/* Itinerary Banner end  */

/* Itinerary tabs start  */
.itinerary-tabs {
  border-bottom: 1px solid #1e383433;
  background-color: var(--light);
  position: sticky;
  top: 0;
  z-index: 9;
}
.itinerary-tabs ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.itinerary-tabs ul li {
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.itinerary-tabs ul li:not(:last-child)::after {
  content: "";
  width: 1px;
  min-width: 1px;
  height: 16px;
  background-color: #cccccc;
  display: block;
  margin: 0 20px;
}
.itinerary-tabs ul a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8c8c8c;
  font-size: 14px;
  font-weight: 500;
  padding: 18px 0;
}
.itinerary-tabs ul a.active {
  color: #354c48;
  border-bottom: 3px solid var(--text-1);
}
.itinerary-tabs ul a svg path {
  stroke: #8c8c8c;
}
.itinerary-tabs ul a.active svg path {
  stroke: #354c48;
}
/* Itinerary tabs end  */

/* Itinerary title start  */
.itinerary-title {
  margin: 30px 0;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.itinerary-title > div:first-child {
  max-width: 648px;
}
.share-social-media {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4d4d4d;
}
.share-social-media div {
  display: flex;
  align-items: center;
  gap: 6px;
}
.share-social-media a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f5f1ec;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d5823;
}
.itinerary-title h1 {
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -4%;
}
.iti-location {
  font-size: 14px;
  color: var(--text-3);
  display: block;
  margin: 6px 0 0;
}
.iti-location svg {
  margin: 0 2px 3px 0;
}
/* Itinerary title end  */

.itinerary-content-wrapper {
  display: flex;
  align-items: start;
  gap: 35px;
}
.itinerary-content {
  width: 68%;
}
.itinerary-content > div:not(:last-child) {
  margin-bottom: 45px;
}

/* Itinerary overview start  */
.iti-overview > div:not(:last-child) {
  margin-bottom: 30px;
}
.iti-facts {
  background-color: #f5f1ec;
  border-radius: 10px;
  border: 1px solid #1e383414;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 35px;
}
.iti-facts > div {
  width: calc(33.33% - 14px);
  display: flex;
  align-items: start;
  gap: 10px;
}
.facts-item div {
  margin-top: 4px;
}
.facts-item .icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7981d;
  margin-top: 0;
}
.facts-item:nth-child(2) .icon {
  background-color: #ef6868;
}
.facts-item:nth-child(3) .icon {
  background-color: #15803d;
}
.facts-item:nth-child(4) .icon {
  background-color: #2563eb;
}
.facts-item:nth-child(5) .icon {
  background-color: #facc15;
}
.facts-item:nth-child(6) .icon {
  background-color: #ff8f66;
}
.facts-item:nth-child(7) .icon {
  background-color: #c084fc;
}
.facts-item:nth-child(8) .icon {
  background-color: #0288d1;
}
.facts-item:nth-child(9) .icon {
  background-color: #2bc5c5;
}
.facts-item span {
  font-size: 14px;
  color: #93918e;
}
.facts-item p {
  font-size: 14px;
  color: #252423;
  font-weight: 500;
}
.iti-highlight {
  border: 1px solid #1e383414;
  box-shadow: 0px 0px 4px 0px #00000024;
  background-color: #f4f4f4;
  border-radius: 12px;
  padding: 30px;
}
.iti-highlight ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.iti-highlight ul li {
  position: relative;
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  align-items: center;
}
.iti-highlight ul li:last-child {
  margin-bottom: 0;
}
.iti-highlight ul li::before {
  content: "\f062";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: var(--text-1);
  width: 29px;
  height: 29px;
  min-width: 29px;
  border-radius: 50%;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(35deg);
}
.iti-title {
  font-size: 24px;
  font-weight: 500;
  color: #334b47;
  margin-bottom: 18px;
}
.itinerary-content p,
.itinerary-content li {
  color: #494949;
  line-height: 1.4;
}
/* Itinerary overview end  */

/* Trip Itinerary start  */
.expand-all {
  box-shadow: 0px 3px 8px 0px #1e38344d;
  border-radius: 12px;
  padding: 10px 14px;
}
.uk-accordion > li {
  background-color: #e8ebeb;
  border: 1px solid #0000001a;
  border-radius: 12px;
  position: relative;
  padding: 15px;
  margin: 0;
  margin-bottom: 16px;
}
.iti-itinerary .uk-accordion > li {
  margin-left: 80px;
  margin-bottom: 24px;
}
.uk-accordion > li:last-child,
.iti-itinerary .uk-accordion > li:last-child {
  margin-bottom: 0;
}
.iti-itinerary .uk-accordion {
  position: relative;
}
.iti-itinerary .uk-accordion::before {
  content: "";
  width: 1px;
  height: 100%;
  border-left: 2px dashed #d7dbda;
  position: absolute;
  top: 0;
  left: 32px;
}
.uk-accordion > li.uk-open {
  background-color: #f5f1ec;
  padding: 15px;
}
.iti-itinerary .uk-accordion > li.uk-open {
  margin-bottom: 45px;
  padding: 15px 25px 35px;
}
.iti-itinerary .uk-accordion > li.uk-open .uk-accordion-title {
  padding-top: 20px;
}
.uk-accordion-title {
  color: #516562;
  font-size: 18px;
  font-weight: 500;
  padding-right: 26px;
}
.uk-accordion .uk-accordion-title::before {
  background-image: unset;
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  float: unset;
  margin: 0;
  background-color: var(--light);
  border: 1px solid #1e383433;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 14px;
  position: absolute;
  top: 14px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.uk-accordion .uk-open .uk-accordion-title::before {
  content: "\f077";
}
.uk-accordion-content {
  margin: 12px 0 0;
  padding-right: 16px;
}
.uk-accordion-content p {
  color: #62605e;
}
.iti-days {
  width: 62px;
  height: 58px;
  min-width: 62px;
  position: relative;
  display: block;
  position: absolute;
  top: 0;
  left: -80px;
  transition: var(--transition);
}
.iti-itinerary .uk-accordion > li.uk-open .iti-days {
  top: 10px;
}
.iti-days div {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  color: #d6e0de;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
}
.iti-days span {
  color: var(--light);
  font-size: 22px;
  font-weight: 600;
  display: block;
  line-height: 1;
  margin-top: -1px;
}
.iti-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 20px 0 0;
}
.iti-gallery > img {
  width: calc(50% - 9px);
  border-radius: 12px;
  height: 174px;
  object-fit: cover;
}
.iti-include {
  display: flex;
  gap: 12px;
  border-top: 1px dotted #c4c1bd;
  margin-top: 25px;
  padding-top: 12px;
}
.iti-include span,
.iti-include div {
  font-size: 14px;
  font-weight: 500;
  color: #537e55;
}
.iti-include div {
  color: #546662;
}
.iti-include > div {
  display: flex;
  flex-wrap: wrap;
}
.iti-include > div > div {
  position: relative;
  display: flex;
  align-items: center;
}
.iti-include > div > div:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 10px;
  background-color: #aca9a5;
  display: block;
  margin: 0 12px;
}
/* Trip Itinerary end  */

/* Included Excluded start  */
.iti-included-excluded {
  border: 1px solid #1e383433;
  padding: 30px;
  border-radius: 12px;
}
.iti-included-excluded ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.iti-included-excluded ul li {
  position: relative;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.iti-included-excluded ul li:last-child {
  margin-bottom: 0;
}
.iti-included-excluded ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  width: 24px;
  min-width: 24px;
  height: 24px;
  background-color: #d2f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #20c2c2;
  border-radius: 50%;
  font-size: 14px;
}
.iti-excluded ul li::before {
  content: "\f00d";
  background-color: #fce6e8;
  color: #e20917;
}
.iti-included-excluded > div:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
/* Included Excluded end  */

/* Iti Map start  */
.iti-map figure {
  margin: 0;
}
.iti-map img {
  border-radius: 12px;
  border: 1px solid #00000033;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
/* Iti Map end  */

/* Iti Gear Equipment start  */
.gear-equipment {
  margin-top: 35px;
}
.gear-equipment-wrapper:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.gear-equipment-wrapper > div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.gear-equipment-wrapper .icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background-color: #f1f1f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gear-equipment-wrapper .icon img {
  max-width: 22px;
}
.gear-equipment-wrapper h3 {
  color: #354c48;
  font-size: 20px;
  font-weight: 400;
}
.gear-equipment-wrapper ul {
  margin: 0;
  padding: 0 0 0 26px;
  list-style: disc;
}
.gear-equipment-wrapper ul li:not(:last-child) {
  margin-bottom: 6px;
}
/* Iti Gear Equipment end  */

/* Iti Video start  */
.video-wrapper {
  position: relative;
  width: 100%;
}
.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: 12px;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  cursor: pointer;
}
video::-webkit-media-controls {
  display: none !important;
}
.iti-video iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 7/4;
}
/* Iti Video end  */

/* Iti Review start  */
.iti-review .iti-title {
  margin-bottom: 5px;
}
.iti-review .review-form {
  justify-content: start;
  margin: 0;
}
.iti-review-slider .slick-prev,
.iti-review-slider .slick-next {
  top: auto;
  transform: unset;
  bottom: 0;
  width: 28px;
  height: 28px;
}
.iti-review-slider .slick-prev {
  left: 43.5%;
  transform: translateX(56.5%);
}
.iti-review-slider .slick-next {
  right: 43.5%;
  transform: translateX(-56.5%);
}
.iti-review-slider .slick-prev::before,
.iti-review-slider .slick-next::before {
  width: 15px;
  height: 15px;
}
.iti-review-slider .slick-list {
  padding-top: 50px;
  padding-bottom: 10px;
}
.iti-review-slider {
  padding-bottom: 40px;
}
.iti-review-slider .traveler-review-container {
  box-shadow: 0px 0px 17.5px 0px #10101026;
  padding: 24px;
}
.iti-review-slider .traveler-review-container img {
  width: 68px;
  height: 69px;
  margin-top: -60px;
  margin-bottom: 6px;
}
/* Iti Review end  */

/* Itinerary Sidebar start  */
.itinerary-sidebar {
  width: 32%;
  position: sticky;
  top: 90px;
}
.itinerary-sidebar > div:not(:last-child) {
  margin-bottom: 15px;
}
.iti-pricing-card {
  padding: clamp(25px, 3vw, 35px);
  background-color: var(--text-1);
  border-radius: 12px;
  position: relative;
}
.ribbon,
.iti-pricing-card .ribbon > p {
  font-size: 12px;
  font-weight: 500;
  color: #74827e;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
}
.iti-pricing-card .ribbon > p {
  text-transform: none;
}
.ribbon span {
  display: block;
  color: #344b46;
  font-weight: 700;
  font-size: 16px;
  margin: 1px 0;
}
.ribbon {
  --f: 0.8em; /* control the folded part*/
  --r: 0.7em; /* control the ribbon shape */

  position: absolute;
  right: 25px;
  top: calc(-1 * var(--f));
  padding: 1.5em 0.8em 0.6em;
  background: #f5f1ec;
  border-top-right-radius: 12px;
  border-left: var(--f) solid #0005;
  border-bottom: var(--r) solid #0000;
  clip-path: polygon(
    var(--f) 0,
    100% 0,
    100% 100%,
    calc(50% + var(--f) / 2) calc(100% - var(--r)),
    var(--f) 100%,
    var(--f) var(--f),
    0 var(--f)
  );
}
.iti-pricing-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #dfdfda;
  margin: 0 0 30px;
}
.iti-pricing-card h3 del {
  display: block;
  font-weight: 500;
  font-size: 12px;
  border-radius: 8px;
  border: 1px solid #ffffff4d;
  width: fit-content;
  padding: 5px 10px;
  margin-top: 4px;
}
.pricing-note span {
  font-size: 18px;
  font-weight: 500;
  display: block;
  color: #e8ebeb;
  margin: 0 0 4px;
}
.iti-pricing-card p {
  color: #bbc3c2;
  font-size: 14px;
}
.iti-button {
  margin-top: 25px;
}
.iti-button .btn {
  width: 100%;
  border: 1px solid transparent;
  padding: 16px 18px;
}
.iti-button .btn:not(:last-child) {
  margin-bottom: 10px;
}
.iti-button .btn:nth-child(2) {
  border: 1px solid #ffffff33;
  background-color: #ffffff1a;
  color: #ebeded;
}
.iti-button .btn:hover {
  color: #bbc3c2 !important;
  background-color: transparent !important;
  border-color: #1a5c18 !important;
}
.iti-pricing-card .entry-content {
  border-top: 1px solid #344c48;
  margin-top: 25px;
  padding-top: 12px;
}

.travel-expert {
  border: 1px solid #1e383414;
  background: linear-gradient(180deg, #ffffff 55.62%, #d0eae9 100%);
  border-radius: 10px;
  padding: clamp(20px, 3vw, 30px);
  text-align: center;
}
.travel-expert > div {
  max-width: 210px;
  margin: auto;
}
.expert-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}
.expert-image img {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.expert-image img:nth-child(2) {
  width: 66px;
  height: 66px;
  border: 2.28px solid #ffffff;
  position: relative;
  z-index: 1;
}
.expert-image img:first-child {
  margin-right: -12px;
}
.expert-image img:last-child {
  margin-left: -12px;
}
.travel-expert h3 {
  color: #354c48;
  font-weight: 500;
  margin: 0 0 2px;
}
.travel-expert p {
  font-size: 14px;
  color: #627471;
}
.travel-expert .btn {
  width: 100%;
  background-color: var(--text-1);
  color: #e8ebeb;
  margin-top: 14px;
}
.travel-expert .btn::before {
  content: unset;
}
.travel-expert .btn svg path {
  transition: var(--transition);
}
.travel-expert .btn:hover svg path {
  fill: #1a5c18;
}
/* Itinerary Sidebar end  */

/* Similar Package start  */
.similar-package__section {
  background-color: #f6f6f6;
}
.similar-package__section h2 {
  margin-bottom: 22px;
}
.similar-package__section .best-selling-container .featured-image a img {
  height: 193px;
}
.similar-package__section .pricing span,
.similar-package__section .best-selling-container .days span {
  font-size: 18px;
}
.similar-package__section .best-selling-container .days div {
  left: 14px;
}
.similar-package__section .best-selling-container .days img {
  max-height: 57px;
}
/* Similar Package end  */

.itinerary-content > div {
  scroll-margin-top: 80px;
}

@media (max-width: 1400px) {
  .iti-facts {
    padding: 30px 25px;
    gap: 12px;
  }
  .iti-facts > div {
    width: calc(33.33% - 10px);
  }
}
@media (max-width: 1200px) {
  .itinerary-content-wrapper {
    gap: 25px;
  }
}
@media (max-width: 989px) {
  .itinerary-content-wrapper {
    flex-direction: column-reverse;
  }
  .itinerary-content,
  .itinerary-sidebar {
    width: 100%;
    position: unset;
  }
  .iti-button {
    display: flex;
    gap: 10px;
  }
  .iti-button .btn {
    margin: 0 !important;
    flex: 1;
  }
  .itinerary-gallery {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .iti-facts > div {
    width: calc(50% - 6px);
  }
  .iti-review-slider .slick-prev {
    left: 41.5%;
    transform: translateX(58.5%);
  }
  .iti-review-slider .slick-next {
    right: 41.5%;
    transform: translateX(-58.5%);
  }
  .itinerary-gallery .view__img {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 400;
    right: 16px;
    bottom: 16px;
    border-radius: 8px;
  }
  .itinerary-gallery .view__img svg {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 567px) {
  .iti-button {
    flex-direction: column;
  }
  .iti-review-slider .slick-prev {
    left: 37.5%;
    transform: translateX(62.5%);
  }
  .iti-review-slider .slick-next {
    right: 37.5%;
    transform: translateX(-62.5%);
  }
  .itinerary-gallery {
    display: block;
  }
  .itinerary-gallery figure:not(:nth-child(-n + 1)) {
    display: none;
  }
  .itinerary-gallery figure img {
    height: 290px;
    object-fit: cover;
  }
}
