@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap");

:root {
  --primary: #0553b8;
  --secondary: #f77031;
  --tertiary: #24539f;
  --color-green: #9cc43f;
  --color-yellow: #f8e441;
  --primary-font: "Lora", sans-serif;
  --secondary-font: "Merriweather", sans-serif;
  --light: white;
  --transition: all 0.5s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Merriweather", sans-serif;
  -webkit-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  color: var(--primary);
  transition: 0.35s ease-in-out;
  overflow: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lora", sans-serif;
  font-weight: 400;
  color: var(--primary);
  margin: 0;
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(40px, 3vw, 50px);
  font-family: var(--primary-font);
  color: var(--primary);
  line-height: 1.3;
  font-weight: 400;
}

.section-heading {
  font-size: clamp(32px, 3vw, 50px);
  font-family: var(--primary-font);
  color: var(--primary);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

a,
a:active,
a:hover {
  text-decoration: none;
  outline: 0;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

/* a:visited {
    color:whitesmoke;
} */

p {
  color: #1d1d1d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  /* max-width: 100%; */
  font-family: var(--secondary-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}

.position-relative {
  position: relative;
}

.column-1 {
  grid-column: span 1;
}

.row-1 {
  grid-row: span 1;
}

.column-2 {
  grid-column: span 2;
}

.row-2 {
  grid-row: span 2;
}

.column-3 {
  grid-column: span 3;
}

.row-3 {
  grid-row: span 3;
}

.column-4 {
  grid-column: span 4;
}

.row-4 {
  grid-row: span 4;
}

.column-5 {
  grid-column: span 5;
}

.row-5 {
  grid-row: span 5;
}

.column-6 {
  grid-column: span 6;
}

.row-6 {
  grid-row: span 6;
}

.column-7 {
  grid-column: span 7;
}

.row-7 {
  grid-row: span 7;
}

.column-8 {
  grid-column: span 8;
}

.row-8 {
  grid-row: span 8;
}

.column-9 {
  grid-column: span 9;
}

.row-9 {
  grid-row: span 9;
}

.column-10 {
  grid-column: span 10;
}

.row-10 {
  grid-row: span 10;
}

.column-11 {
  grid-column: span 11;
}

.row-11 {
  grid-row: span 11;
}

.column-12 {
  grid-column: span 12;
}

.row-12 {
  grid-row: span 12;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.section {
  padding-top: 50px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.h-100 {
  height: 100%;
}

.mb-5 {
  margin-bottom: 30px;
}

.mt-48 {
  margin-top: 40%;
}

.flex-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex-inline::after,
.flex-inline::before,
.flex::after,
.flex::before {
  display: none;
}

.flex-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px;
}

@media (max-width: 992px) {

  .column-1,
  .column-2,
  .column-3,
  .column-4,
  .column-5,
  .column-6,
  .column-7,
  .column-8,
  .column-9,
  .column-10,
  .column-11,
  .column-12 {
    grid-column: span 6;
  }

  .grid {
    grid-gap: 16px;
  }
}

@media (max-width: 768px) {

  .column-1,
  .column-2,
  .column-3,
  .column-4,
  .column-5,
  .column-6,
  .column-7,
  .column-8,
  .column-9,
  .column-10,
  .column-11,
  .column-12 {
    grid-column: span 12;
  }
}

.mt-40 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 2rem;
}

.left-column {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
  padding-right: 3rem;
}

.right-column {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 300px;
  min-width: 300px;
}

.section-sm {
  padding: 14px 0;
}

.section-md {
  padding: clamp(40px, 3vw, 70px) 0;
}

.section-lg {
  padding: 100px 0;
}

.da-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.da-container-md {
  max-width: 1200px;
}

.da-container-xlarge {
  max-width: 100%;
}

.da-container-large {
  max-width: 1800px;
}

.da-container-small {
  max-width: 960px;
}

.da-container-xsmall {
  max-width: 786px;
  margin: auto;
}

.da-custom-container {
  max-width: 1700px;
  margin-left: auto;
}

.text-center {
  text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1.5em;
}

.btn {
  border: none;
  background: var(--secondary);
  border-radius: 12px;
  padding: 9px 18px;
  color: white;
  align-items: center;
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  width: fit-content;
  font-family: var(--secondary-font);
  cursor: pointer;

  /* background: linear-gradient(180deg, #4e142a 0%, #b62260 100%); */
  margin: 0 auto;
  font-size: 14px;
  line-height: 24px;
}

.white-btn {
  color: var(--secondary);
  background: var(--light);
  margin: 0;
}

.underline {
  text-decoration: underline;
  color: #f77031;
}

.btn:hover {
  /* background: linear-gradient(180deg, #b62260 0%, #4e142a 100%); */
  background-color: var(--primary);
  color: var(--light);
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  list-style: none;
}

/* header */
.site-header {
  background-color: #00000095;
  position: absolute;
  top: 0;
  z-index: 99;
  width: 100%;
  transition: var(--transition);
}

.site-header .custom-logo {
  padding: 15px 0;
}

.header-default.site-header {
  position: relative;
  background: #000;
}

.site-header nav>div ul li a {
  color: white;
  font-family: var(--secondary-font);
  font-size: 16px;
  height: 100%;
  display: flex;
  align-items: center;
}

.site-header ul li a:hover,
.breadcrumb ul li a:hover {
  color: var(--secondary);
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  background-color: #000;
}

#site-navigation {
  display: flex;
  align-self: stretch;
}

.main-navigation>div>ul {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
  height: 100%;
}


.nav-menu {
  gap: 10px;
}

.site-branding img {
  width: 170px;
  height: auto;
}

.site-header .phone-icon {
  gap: 10px;
}

.site-header .phone-icon .btn {
  background-color: var(--primary);
}

.site-header .phone-icon .btn:hover {
  background-color: var(--secondary);
}

.main-navigation .menu>li.current-menu-item>a,
.main-navigation .menu>li.current-menu-parent>a,
.main-navigation .menu>li.current-menu-ancestor>a {
  color: var(--secondary);
  font-weight: 600;
}

.bar-icon {
  background-color: rgba(0, 0, 0, 0.715);
  height: 100%;
  padding: 0 14px;
  cursor: pointer;
  font-size: 22px;
  display: none;
  align-content: center;
}

.bar-icon i {
  color: white;
}

/* footer */
.footer-logo {
  width: 310px;
  height: 92px;
  margin: 0 auto;
}

.footer-logo img {
  width: 100%;
  height: 100%;
}

.footer-title {
  border-top: 1px solid #674311;
  border-bottom: 1px solid #674311;
  margin: 10px 0;
}

.footer-title h2 {
  color: #674311;
  text-align: center;
  font-size: 20px;
  margin: clamp(0px, 3vw, 10px) 0;
  line-height: 28px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-links-wrapper {
  border-bottom: 1px solid #674311;
  gap: 20px;
  margin-top: 30px;
  padding-bottom: 30px;
}

.footer-links-wrapper h3 {
  color: var(--secondary);
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 20px;
  line-height: 36px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.footer-links-wrapper ul {
  list-style: none;
  margin: 10px 0;
}


.footer-links-wrapper p,
.footer-links-wrapper li {
  margin-bottom: 10px;
  color: #1d1d1d;
  font-family: var(--secondary-font);
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  opacity: 0.8;
  line-height: 18px;
}

.footer-links-wrapper a {
  color: #1d1d1d;
}

.footer-links-wrapper p {
  line-height: 24px;
}

.quick-links:last-child {
  border: none;
}

.scroll-x-hide {
  overflow-x: auto;
  overflow-y: hidden;

  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE / Edge */
}

.scroll-x-hide::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

/* offcanvas */
.off-canvas {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: #fff;
  padding: 10px 20px;
  transition: transform 0.3s ease;
  transform: translateX(0);
  z-index: 1000;
}

.main-navigation.off-canvas {
  display: none;
}

/* Active state */
.off-canvas.menu-open {
  transform: translateX(300px);
}

/* Menu styles */
.off-canvas ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* .off-canvas li {
  margin-bottom: 20px;
} */

.off-canvas a {
  text-decoration: none;
  font-size: 16px;
  color: #000;
  display: block;
  padding: 10px 12px;
  color: #000;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

#primary-menu .sub-menu a {
  padding: 8px 10px;
  width: 100%;
  color: #1d1d1d;
  opacity: .8;
  display: block;
}

.main-navigation>div ul li {
  position: relative;
  list-style: none;
  display: flex;
  height: 100%;
}

.main-navigation.off-canvas {
  align-content: unset;
}

.off-canvas #primary-menu1 .sub-menu a {
  font-size: 14px;
}

/* Hover effect */
.off-canvas a:hover,
#primary-menu .sub-menu a:hover {
  background: #f7703124;
  border-radius: 6px;
  /* width: 100%; */
}

/* Overlay */
/* body.menu-active::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
} */
.offcanvas-close {
  background: none;
  border: none;
  font-size: 15px;
  cursor: pointer;
  padding: 0 5px;
}

button.offcanvas-close:hover {
  background-color: #f7703124;
}

.off-canvas .sub-menu,
.main-navigation .sub-menu {
  padding-left: 15px;
}

.off-canvas .menu-item-has-children>a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.off-canvas .menu-item-has-children>a::after,
.main-navigation .menu-item-has-children>a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.off-canvas .menu-item-has-children.submenu-open>a::after,
.main-navigation .menu-item-has-children.submenu-open>a::after {
  transform: rotate(180deg);
}

.main-navigation .sub-menu {
  position: absolute;
  background-color: white;
  padding: 20px 12px;
  border-radius: 9px;
  box-shadow: 0px 0px 2px 1px #8080802b;
  top: 120%;
  min-width: 200px;
  left: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all .3s linear;
}

#primary-menu .sub-menu::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -32px;
  left: 0;
}

.main-navigation li.menu-item-has-children:hover>.sub-menu {
  visibility: visible;
  transition: all .3s linear;
  opacity: 1;
  top: 100%;

}

.off-canvas-logo-wrapper {
  margin: 20px 0;
  justify-content: space-between;
}

.offcanvas-logo {
  width: 100px;
}

@media (max-width: 1120px) {
  .banner-section .container {
    justify-content: space-evenly;
  }

  .hamburger-menu {
    display: block;
  }

  .site-header .main-navigation {
    display: none;
  }

  .main-navigation.off-canvas .menu,
  .main-navigation.off-canvas {
    display: block;
  }

  .main-navigation.main-navigation.off-canvas #primary-menu1 {
    display: block;
  }

  #primary-menu1 .sub-menu {
    display: none;
  }

  body.menu-active::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
}


.banner-title h1 img {
  width: 50px;

}

section {
  scroll-margin-top: 100px;
}

/* activities css */
.recommended-trips .breadcrumb li,
.recommended-trips .breadcrumb li a {
  color: #333333;
  font-family: var(--secondary-font);
  font-size: 14px;
}

.default-title .breadcrumb li,
.default-title .breadcrumb a {
  color: black;
  font-size: 15px;
}

.default-title {
  padding-bottom: 20px;
}

.default-title h1 {
  color: var(--secondary);
}

.default-title .text-content {
  border-bottom: 3px dashed #CCCCCC;
  padding-bottom: clamp(10px, 3vw, 20px);
}

.default-title p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: var(--primary);
  margin: 13px 0 0;
}

/* .img-banner .da-container {
  max-width: 1200px;

} */

.img-banner .da-container img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.default-text-wrapper p,
.default-content-wrapper p {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.9;
  color: #000000;
  opacity: 0.9;
}


.default-text-wrapper {
  position: relative
}

.default-text-wrapper::before {
  content: "";
  background-image: url(../img/explore-bg2.png);
  bottom: -317px;
  left: 0;
  position: absolute;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 930px;
}


.default-content-wrapper h2 {
  font-size: 28px;
}

.default-content-wrapper h3 {
  font-size: 24px;
}

.default-content-wrapper h4 {
  font-size: 20px;
}

.default-content-wrapper {
  position: relative;
}

.default-content-wrapper::before {
  content: "";
  background-image: url(../img/lineart-trekker.png);
  bottom: -200px;
  left: 0;
  position: absolute;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 340px;
}

.content__area p img {
  width: 100%;
}

.content__area li {
  font-family: var(--secondary-font);
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 26px;
  color: #000000;
  opacity: 0.9;
}

.content__area ul li {
  font-family: var(--secondary);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.7);
  text-shadow: 1px 1px 0px #FFFFFF;
  margin-bottom: 10px;
  background: url("../img/default-bullet.svg") 0 0 no-repeat;
  background-position-x: 0px;
  background-position-y: 0px;
  background-size: auto;
  background-position: left 4px;
  background-size: 18px;
  padding-left: 30px;
  list-style: none;
}

/* .content__area blockquote  {
  font-family: var(--primary);
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 60px;
  letter-spacing: -0.02em;
  color: #F77031;
} */
.content__area blockquote p {
  font-family: var(--secondary);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.7);
  text-shadow: 1px 1px 0px #FFFFFF;
  margin-bottom: 10px;
  background: url("../img/starmark.svg") 0 0 no-repeat;
  background-position-x: 0px;
  background-position-y: 0px;
  background-size: auto;
  background-position: left 4px;
  background-size: 18px;
  padding-left: 30px;
  list-style: none;
  margin-bottom: 0;

}

.content__area blockquote {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 28.43%), linear-gradient(0deg, rgba(247, 112, 49, 0.05), rgba(247, 112, 49, 0.05)), #FFFFFF;
  border: 2px solid #FFFFFF;
  box-shadow: 0px 0px 2px #F77031;
  border-radius: 10px;
  padding: 20px 30px;
  height: fit-content;
  margin-bottom: 20px;
}

/* contact us  */
.contact-banner .banner-title {
  max-width: 100%;
}

.banner-section .contact-banner.banner-text h1 {
  width: 100%;
  text-align: center;
  position: unset;
}

.contact-wrapper {
  text-align: center;
}

.contact-wrapper h2 {
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  color: var(--primary);
  opacity: 0.9;
}

.contact-wrapper p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  text-align: center;
  color: #1D1D1D;
  opacity: 0.8;
  align-self: stretch;
}

.contact-wrapper p:last-child,
.contact-wrapper a {
  color: var(--secondary);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  opacity: 1;
}

.contact-wrapper a {
  margin-bottom: 1.3rem;
  display: block;
}

.contact-wrapper {
  border-right: 1px solid #BBC7CC;
  padding: 0 20px;
}

.contact-wrapper:last-child {
  border: none;
}

.contact-icon {
  margin-bottom: 15px;
}

.contact-nav {
  position: relative;
}

.contact-nav::before {
  content: "";
  background-image: url(../img/explore-bg2.png);
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 885px;
}

.socials-icons i {
  color: var(--secondary);
}

.socials-icons {
  gap: 10px;

}

.send-message h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 32px;
  color: #0553B8;
  opacity: 0.9;
}

.send-message .text-content {
  width: 30%;
}

.send-message .text-content p {
  width: 300px;
}

.contact-form {
  width: 60%;
}

.contact-form form {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  column-gap: 20px;
}

.contact-form form p {
  width: calc(50% - 10px);
  margin-bottom: 0;
  opacity: 1;
}

.contact-form form input,
.contact-form form textarea {
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  width: 100%;
  font-family: var(--secondary-font);
  font-size: 15px;
}

.contact-form form p:nth-child(6) {
  width: 100%;
}

.contact-form form .wpcf7-submit {
  display: block;
  border: none;
  background: #F86A1E;
  border-radius: 12px;
  padding: 9px 18px;
  color: white;
  align-items: center;
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  width: fit-content;
  font-family: var(--secondary-font);
  cursor: pointer;
  font-size: 14px;
  line-height: 24px;
  margin-top: 15px;
  transition: var(--transition)
}

.contact-form form .wpcf7-submit:hover {
  background: var(--primary);

}

.wpcf7-spinner::before {
  top: -21px;
  left: 80px;
}

.wpcf7-spinner {
  display: none;
}

.bgimg-container .partner-text-contents {
  background-image: url(../img/blue.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 90px 0;
}

.additional-section .bgimg-container .partner-text-contents {
  background-image: url(../img/additional-info.jpg);
  padding: 20px 0;
  background-attachment: fixed;
}

.contact-page .banner-img {
  width: 100%;
  height: 50vh;
}

/* map */
.map-content iframe {
  width: 100%;
}

.page-template-template-contact .partner-with-us {
  padding-top: 0;
}

.error-404 h1 {
  margin-bottom: 20px;
  font-size: clamp(24px, 3vw, 60px);
}

.destination-section .travel-content:nth-child(3),
.destination-section .travel-content:nth-child(2n) {
  margin-top: 0;
}



.destination-section .travel-content {
  width: calc(33% - 15px);
}

.destination-section.travel-section .text-content,
.destination-section.travel-section h2.section-heading {
  width: 100%;
}

.destination-section.travel-section::before {
  display: none;
}

@media (max-width: 1220px) {
  .destination-section .travel-content {
    width: calc(50% - 15px);
  }
}

@media (max-width: 780px) {
  .destination-section .travel-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .destination-section .img-text-content {
    position: unset;
  }

  .destination-section.travel-section .img-text-content p {
    display: block;
    color: #1d1d1d;
    padding-right: 20px;
  }

  .destination-section .img-text-content h3 {
    color: var(--primary);
  }

  .destination-section .img-text-content h3 span {
    color: var(--secondary);
  }
}

.inner-page-banner.contact-page .banner-img {
  height: 96vh;
}

.default-title p i {
  margin-right: 7px;

}

.review-single .travel-content-wrapper {
  gap: 0;

}

.review-single .review-box-wrapper {
  margin-bottom: 0;
}

.blog-title h1 {
  margin-bottom: 0;
}

.blog-title {
  padding-bottom: 0;
}


/* footer sticky */
.sticky-footer {
    display: none;
    
  }

  
@media (max-width:480px) {
  .sticky-footer{
    display: block;
    background: #eeeaea;
    padding: 10px 10px;
    box-shadow: 0px 1px 3px #707070;
    position: sticky;
    bottom: 0;
    z-index: 10;
  }
  .sticky-footer .btn {
    margin: 0;
  }
  
}
.da-container.da-container-small.short-content p{
text-align: center;
}

.dest-content {
  background-color: #f7f7f7;
}
.destination-package h2{
  margin-bottom: 30px;
}