@font-face {
  font-family: "Nocturne Serif";
  src: url("../fonts/NocturneSerif-ExtraLight.woff2") format("woff2"),
    url("../fonts/NocturneSerif-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nocturne Serif";
  src: url("../fonts/NocturneSerif-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Founders Grotesk";
  src: url("../fonts/FoundersGrotesk-Regular.woff2") format("woff2"),
    url("../fonts/FoundersGrotesk-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Founders Grotesk";
  src: url("../fonts/FoundersGrotesk-Semibold.woff2") format("woff2"),
    url("../fonts/FoundersGrotesk-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Founders Grotesk";
  src: url("../fonts/FoundersGrotesk-Light.woff2") format("woff2"),
    url("../fonts/FoundersGrotesk-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Founders Grotesk";
  src: url("../fonts/FoundersGrotesk-Medium.woff2") format("woff2"),
    url("../fonts/FoundersGrotesk-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #f86a1e;
  --secondary: #e91d27;
  --text: #333;
  --dark: #323232;
  --transition: all 0.5s linear;
  --transition-2: all 0.5s ease-in-out;
  --primary-font: "Nocturne Serif";
  --secondary-font: "Founders Grotesk", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

a,
a:hover,
a:active {
  text-decoration: none;
}

#page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body {
  font-family: var(--secondary-font);
  font-weight: 400;
  background: #faf9f6;
  font-size: 18px;
}

img {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
h1,
h2,
h3,
h5,
h4,
h6 {
  font-family: var(--primary-font);
  font-weight: 300;
  margin: 0;
}

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

p {
  color: var(--text);
  font-size: 18px;
  margin: 0 0 8px;
  line-height: 1.4;
  font-weight: 300;
}

p:last-child {
  margin-bottom: 0;
}

.section {
  padding-top: clamp(40px, 6vw, 100px);
}
.padding-b {
  padding-bottom: clamp(40px, 6vw, 100px);
}
.padding-t-small {
  padding-top: clamp(40px, 5vw, 80px);
}
.padding-b-small {
  padding-bottom: clamp(40px, 5vw, 80px);
}
.padding-tb {
  padding: clamp(40px, 5vw, 80px) 0;
}
.margin-tb {
  margin: clamp(40px, 6vw, 105px) 0;
}

.text-btn {
  position: relative;
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--secondary);
  display: flex;
  width: fit-content;
}

.text-btn:hover {
  color: var(--primary);
}

.text-btn::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: calc(100% - 0.3rem);
  height: 1px;
  background-color: var(--secondary);
  transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.39, 1.01);
  transform-origin: center left;
}

.text-btn:hover::after {
  transform: scaleX(0);
  transform-origin: center right;
  background: var(--primary);
}

.heading-wrap.uk-text-center {
  max-width: 770px;
  margin: auto;
  margin-bottom: clamp(25px, 3vw, 40px);
}

.heading-wrap {
  margin-bottom: clamp(35px, 4vw, 75px);
}

h1,
h2,
.heading-wrap h1,
.heading-wrap h2 {
  font-weight: 200;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.2;
  margin-top: 0;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin-bottom: clamp(10px, 2vw, 24px);
}
.section-title h1,
.section-title h2 {
  margin-bottom: 0;
}

.heading-wrap p {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.01em;
  color: #000000;
  opacity: 0.9;
}

.heading-wrap span {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #202049;
}
h3.entry-title,
.content__area h2,
.content__area h3 {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
  color: #f86a1e;
  margin: 0 0 clamp(8px, 2vw, 14px);
}
.content__area h3 {
  font-size: clamp(18px, 2vw, 20px);
}

form input,
form select,
form textarea {
  width: 100%;
  border: 1px solid #737144;
  background-color: #fff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  font-family: var(--secondary-font);
  outline: unset !important;
  padding: 10px;
  letter-spacing: 0.5px;
}
input.wpcf7-submit {
  cursor: pointer;
  width: fit-content;
  background-color: #f86a1e;
  border-color: #f86a1e;
  text-transform: uppercase;
  font-weight: 400;
  padding: 10px 20px;
  color: #fff;
}
form p {
  margin: 0;
}
form textarea {
  height: 176px;
  resize: none;
}

.trip__card {
  position: relative;
}
.trip__card span.days {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 600;
  display: block;
  background-color: var(--primary);
  color: #fff;
  z-index: 1;
  letter-spacing: 10%;
  text-transform: uppercase;
  padding: 4px 12px;
}
.trip__card img {
  height: 730px;
  width: 100%;
  object-fit: cover;
}

.trip__card > a {
  display: block;
  position: relative;
}

.trip__card > a::before {
  content: "";
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.trip__card .trip__content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 30px;
  width: 100%;
}

.trip__card .trip__content h3 {
  margin: 0;
  font-weight: 400;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.2;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.trip__card .trip__content h3 > a {
  color: #fff;
}

.trip__card .trip__content > a {
  display: inline-block;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 5%;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #ffffff;
}

.blog__card > a {
  display: block;
  width: 100%;
  height: 100%;
}

.blog__card > a img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.blog__content {
  padding: clamp(20px, 2vw, 30px);
  background: #fff;
  height: 100%;
}

.blog__content h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-top: 0;
  margin-top: 12px;
}

.blog__content h3 a {
  color: var(--secondary);

  &:hover {
    color: var(--primary);
  }
}

.blog__content span {
  position: relative;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: 4%;
  text-transform: uppercase;
  color: #202049;
  display: flex;
  border-bottom: 1px solid #202049;
  width: fit-content;
  font-family: var(--primary-font);
}

.review__card {
  max-width: 90ch;
  margin: auto;
  text-align: center;
}

.review__card p {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.01em;
  color: #000000;
  opacity: 0.9;
}

.review__card span {
  font-family: var(--primary-font);
  font-weight: 200;
  font-size: 28px;
  line-height: 1.3;
  text-align: center;
  margin-top: 18px;
  margin-bottom: 14px;
  display: block;
  letter-spacing: -0.03em;
  color: var(--secondary);
}
.review__card .country {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--secondary);
}

.newsLetter {
  padding: 24px 0;
  background: #ffffffb0;
  text-align: center;
  font-family: var(--primary-font);
  font-weight: 200;
  font-size: 24px;
  letter-spacing: 0.01em;
  color: var(--secondary);
}

.newsLetter a {
  color: var(--secondary);
  text-decoration: underline;
}

.associated__with {
  padding: 24px 0;
  background-color: #fff;
}
.associated__slider {
  max-width: 600px;
  margin: 0 auto;
}
.associate-img {
  text-align: center;
}
.associate-img img {
  height: 50px;
}

.speak__with__us .uk-grid {
  flex-wrap: nowrap;
}

/* Header start  */
.site-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}

.default-header {
  position: sticky;
  top: 0;
}
.sticky .site-header,
.default-header {
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.site-branding .custom-logo {
  max-width: 150px;
  padding: 25px 0;
  filter: brightness(0) invert(1);
}
.sticky .site-header .site-branding .custom-logo,
.default-header .site-branding .custom-logo {
  filter: unset;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 25px;
}
.sticky .header__right svg path,
.default-header .header__right svg path {
  stroke: var(--text);
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.search-form-container {
  position: fixed;
  top: -120px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  visibility: hidden;
  background: #fff;
  padding: clamp(30px, 4vw, 60px) 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}
.search-form-container.active {
  top: 0;
  visibility: visible;
}
.search-form-wrapper {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.search-form-container .close-search {
  font-size: 24px;
  color: #333;
  text-decoration: none;
  cursor: pointer;
}
.search-form-container .search-form {
  position: relative;
  width: 100%;
}
.search-form-container .search-form input {
  width: 100%;
  padding: 12px 65px 12px 26px;
  font-size: 17px;
  font-family: var(--secondary-font);
  outline: unset;
  border-radius: 10px;
  border: 1px solid #c9c9c9;
}
.search-form-container .search-form button {
  margin-left: 10px;
  padding: 13px 14px;
  cursor: pointer;
  border-radius: 10px;
  background: var(--primary);
  /* border: 1px solid #c9c9c9; */
  border: none;
  position: absolute;
  right: 0;
  top: 0;
}
.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.main-navigation {
  margin-left: 62px;
}
.main-navigation > div > ul {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-navigation > div > ul > li > a,
.sub-menu > li > a,
.offcanvas__nav #primary-menu1 > li a {
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.sticky .main-navigation > div > ul > li > a,
.default-header .main-navigation > div > ul > li > a {
  color: var(--text);
}
.main-navigation > div > ul > li > a:hover,
.default-header .main-navigation > div > ul > li > a:hover,
.sticky .main-navigation > div > ul > li > a:hover {
  color: var(--primary);
}
.hamburger-toggle {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  padding: 0;
  display: none;
}
.hamburger-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5px;
  flex-direction: column;
}
.hamburger-menu span.dot {
  width: 30px;
  height: 2.5px;
  border-radius: 2px;
  background-color: #fff;
  display: block;
}
.default-header .hamburger-menu span.dot,
.sticky .hamburger-menu span.dot {
  background-color: var(--text);
}
.uk-offcanvas-overlay.uk-open::before {
  background: rgba(0, 0, 0, 0.7);
}
.uk-offcanvas .uk-offcanvas-bar {
  background-color: #fff5e5;
  padding: 0;
  width: 330px;
}
.uk-offcanvas .offcanvas__content {
  padding: 20px;
}
.uk-offcanvas .offcanvas__content > div:not(:last-child) {
  margin-bottom: 20px;
}
.offcanvas__new__logo {
  background-color: #fff;
  padding: 10px 20px;
}
.offcanvas__new__logo img {
  max-width: 162px;
}
.uk-offcanvas .uk-offcanvas-bar .uk-offcanvas-close {
  top: 22px;
  right: 20px;
  background-color: #fff5e5;
  color: var(--dark);
  padding: 6px;
}
.main-navigation,
.main-navigation .menu-menu-1-container,
.main-navigation #primary-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  /* display: flex; */
}
.offcanvas__nav #primary-menu1 > li a {
  color: var(--dark);
}
.main-navigation > div > ul,
.offcanvas__nav #primary-menu1 {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}
.main-navigation > div > ul > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-navigation > div > ul > li:last-child {
  padding-right: 0;
}
.main-navigation > div > ul > li i,
.offcanvas__nav #primary-menu1 > li i {
  color: #fff;
  font-size: 13px;
  margin-left: 5px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
}
.main-navigation > div > ul > li:hover i {
  color: var(--primary);
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}
.main-navigation > div > ul > li > a,
.offcanvas__nav #primary-menu1 > li a {
  position: relative;
  z-index: 1000;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  outline: unset;
}

/*  */
/*  */

.main-navigation > div > ul > li.menu-item-has-children > a::before {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -15px;
  color: #fff;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.default-header
  .main-navigation
  > div
  > ul
  > li.menu-item-has-children
  > a::before,
.sticky .main-navigation > div > ul > li.menu-item-has-children > a::before {
  color: var(--text);
}
.default-header
  .main-navigation
  > div
  > ul
  > li.menu-item-has-children
  > a:hover::before,
.sticky
  .main-navigation
  > div
  > ul
  > li.menu-item-has-children
  > a:hover::before,
.main-navigation > div > ul > li.menu-item-has-children > a:hover::before {
  color: var(--primary);
}
.site-header.fixed #primary-menu li.menu-item-has-children > ul {
  margin-top: -5px;
}
.main-navigation > div > ul > li.menu-item-has-children > a::after {
  content: "";
  width: 20px;
  height: 15px;
  background: #fff;
  left: calc(50% - 20px);
  position: absolute;
  display: none;
  top: 46px;
  z-index: -1;
  clip-path: polygon(50% 0, 0% 100%, 100% 100%);
}
.main-navigation > div > ul > li.menu-item-has-children:hover > a::after {
  display: block;
  -webkit-animation: fadeupArrow 0.4s ease-in-out forwards;
  animation: fadeupArrow 0.4s ease-in-out forwards;
}
.site-header.fixed
  .main-navigation
  > div
  > ul
  > li.menu-item-has-children
  > a::after,
.header-default
  .main-navigation
  > div
  > ul
  > li.menu-item-has-children
  > a::after {
  -webkit-animation: fadeupFixedArrow 0.4s ease-in-out forwards;
  animation: fadeupFixedArrow 0.4s ease-in-out forwards;
}
.main-navigation > div > ul > li.menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  min-width: 300px;
  max-width: 700px;
  z-index: 9999;
  transform: translateY(-16px);
}
.main-navigation > div > ul > li.menu-item-has-children .sub-menu::before {
  content: "";
  position: absolute;
  z-index: -1;
  height: calc(100% + 20px);
  left: 40%;
  top: -43px;
  width: 100%;
  margin: 0 auto;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.main-navigation > div > ul > li.menu-item-has-children .sub-menu {
  background-color: #fff;
  -webkit-box-shadow: 0 12px 40px 0 rgba(99, 153, 122, 0.2),
    0 70px 100px -60px rgba(99, 153, 122, 0.4);
  box-shadow: 0 12px 40px 0 rgba(99, 153, 122, 0.2),
    0 70px 100px -60px rgba(99, 153, 122, 0.4);
  pointer-events: initial;
  margin: 0 auto;
  padding: 10px;
}
.sub-menu {
  padding: 10px;
  margin: 0;
  list-style-type: none;
  border-radius: 10px;
}
.sub-menu > li > a {
  display: inline-block;
  position: relative;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  display: block;
  padding: 14px 30px 14px 18px;
  border-radius: 12px;
  background-color: #cfcfcf00;
  color: var(--text);
}
.sub-menu > li.menu-item-has-children > a::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  font-size: 12px;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sub-menu > li > a:hover::after {
  right: 10px;
  opacity: 1;
  visibility: visible;
}
.sub-menu > li > a:hover {
  background: #63997a2b;
  color: var(--primary);
}
@-webkit-keyframes fadeupArrow {
  from {
    opacity: 0;
    bottom: -140px;
  }
  to {
    opacity: 1;
    bottom: -30px;
  }
}
@keyframes fadeupArrow {
  from {
    opacity: 0;
    bottom: -140px;
  }
  to {
    opacity: 1;
    bottom: -30px;
  }
}

@-webkit-keyframes fadeup {
  from {
    opacity: 0;
    top: 140px;
  }
  to {
    opacity: 1;
    top: 72px;
  }
}
@keyframes fadeup {
  from {
    opacity: 0;
    top: 140px;
  }
  to {
    opacity: 1;
    top: 72px;
  }
}

@-webkit-keyframes fadeleft {
  from {
    opacity: 0;
    left: 500px;
  }
  to {
    opacity: 1;
    left: 290px;
  }
}
@keyframes fadeleft {
  from {
    opacity: 0;
    left: 500px;
  }
  to {
    opacity: 1;
    left: 290px;
  }
}

@-webkit-keyframes fadeupFixedArrow {
  from {
    opacity: 0;
    bottom: -140px;
  }
  to {
    opacity: 1;
    bottom: 0;
  }
}
@keyframes fadeupFixedArrow {
  from {
    opacity: 0;
    bottom: -140px;
  }
  to {
    opacity: 1;
    bottom: 0;
  }
}
@-webkit-keyframes fadeupFixed {
  from {
    opacity: 0;
    top: 150%;
  }
  to {
    opacity: 1;
    top: 85px;
  }
}
@keyframes fadeupFixed {
  from {
    opacity: 0;
    top: 150%;
  }
  to {
    opacity: 1;
    top: 85px;
  }
}
.main-navigation > div ul > li.menu-item-has-children:hover > .sub-menu,
.main-navigation > div ul > li.menu-item-has-children a:hover > .sub-menu {
  display: block;
  -webkit-animation: fadeup 0.3s ease-in-out forwards;
  animation: fadeup 0.3s ease-in-out forwards;
}
.main-navigation
  > div
  > ul
  > li.menu-item-has-children
  > .sub-menu
  > li.menu-item-has-children:hover
  > .sub-menu {
  display: block;
  left: 100%;
  top: 15px;
  opacity: 1;
  visibility: visible;
  animation: fadeleft 0.3s ease-in-out forwards;
  -webkit-animation: fadeleft 0.3s ease-in-out forwards;
}
.site-header.fixed
  .main-navigation
  > div
  > ul
  > li.menu-item-has-children:hover
  .sub-menu,
.header-default
  .main-navigation
  > div
  > ul
  > li.menu-item-has-children:hover
  .sub-menu {
  -webkit-animation: fadeupFixed 0.3s ease-in-out forwards;
  animation: fadeupFixed 0.3s ease-in-out forwards;
}
.main-navigation > div > ul > li .sub-menu > li {
  position: relative;
}
.main-navigation > div > ul > li:hover ul {
  display: block;
}
.offcanvas__nav #primary-menu1 {
  flex-direction: column;
  align-items: start;
}
.offcanvas__nav #primary-menu1 > li {
  width: 100%;
}
.offcanvas__nav #primary-menu1 li {
  position: relative;
}
.offcanvas__nav #primary-menu1 > li:not(:last-child) {
  border-bottom: 1px solid #f1f1f1;
}
.offcanvas__nav #primary-menu1 > li > ul,
.offcanvas__nav #primary-menu1 > li > ul > li > ul {
  display: none;
}
.offcanvas__nav #primary-menu1 > li > a,
.offcanvas__nav #primary-menu1 > li.menu-item-has-children ul li a {
  display: block;
  position: relative;
  width: 100%;
  padding: 14px;
  background-color: #fff;
  border-radius: 0;
}
/* .offcanvas__nav #primary-menu1 > li.menu-item-has-children > a::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  color: var(--text);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
} */
.offcanvas__nav #primary-menu1 li .submenu-toggle i {
  color: var(--light);
  margin: 0;
}
.offcanvas__nav #primary-menu1 li .submenu-toggle {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9999;
  padding: 8px 10px;
  cursor: pointer;
  background-color: var(--primary);
}
.offcanvas__nav #primary-menu1 > li > ul > li {
  background-color: unset !important;
  width: 100%;
}
.offcanvas__nav #primary-menu1 > li > ul,
.offcanvas__nav #primary-menu1 > li > ul > li > ul {
  display: none;
  padding: 0;
  border-top: 1px solid #f1f1f1;
  position: relative;
  z-index: 1;
  border-radius: 0;
}
.offcanvas__nav #primary-menu1 > li > ul > li:not(:last-child) {
  border-bottom: 1px solid #f1f1f1;
}
.offcanvas__nav .sub-menu > li > a {
  padding: 10px;
  background-color: unset;
  border-radius: 0;
}
.offcanvas__nav #primary-menu1 > li > ul > li a {
  padding: 14px 20px !important;
}
.offcanvas__nav #primary-menu1 > li > ul > li > ul > li a {
  padding: 14px 30px !important;
}
.offcanvas__content .header-search form {
  position: relative;
}
.offcanvas__content .header-search button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 7px;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  border-radius: 8px;
}
.offcanvas__content .header-search button svg path {
  fill: transparent;
  stroke: #fff;
}

/* Header end  */

.footer__links {
  background: #484848;
  padding: 30px 0;
}

.footer__links span {
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}

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

.footer__links ul > li {
  margin-bottom: 4px;
}

.footer__links ul > li > a {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.site-footer__wrapper {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
}
.site-footer__wrapper > div {
  flex: 1;
}
.site-footer__wrapper > div:last-child {
  flex: 2;
  display: flex;
  justify-content: end;
}

.footer__logo > a img {
  /* filter: brightness(0) invert(1); */
  max-height: 80px;
  margin-bottom: 14px;
}

.footer__desc p {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #fff;
}

.footer__desc p a {
  color: #fff;
}

.social__links > a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  margin-right: 6px;
}

.copyright__data {
  display: flex;
  gap: 20px;
  row-gap: 15px;
  justify-content: space-between;
  align-items: center;
  margin-top: clamp(25px, 3vw, 30px);
}
.copyright__data p {
  color: #ffffffd3;
  font-size: 15px;
  margin: 0;
}

.copyright__data p a {
  color: #fff;
}

.error404 .site-header {
  position: relative;
}
.error-404-wrapper {
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
}
.error-404-wrapper h1 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  margin: 0 0 10px;
}
.error-404-wrapper p {
  margin: 0;
  font-size: 18px;
}
.error-404-wrapper .text-btn {
  margin: 20px auto 0;
  width: fit-content;
}

.no-results.not-found {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}
.no-results.not-found form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 600px;
  margin: 20px auto 0;
}
.no-results.not-found form label {
  width: 100%;
}
.no-results.not-found .search-submit {
  width: fit-content;
  cursor: pointer;
}

.single-banner__section,
.single-banner__section picture {
  height: 85vh;
}

@media (max-width: 1400px) {
  .trip__card img {
    height: 600px;
  }
}
@media (max-width: 1024px) {
  .site-footer__wrapper > div {
    flex: 0 0 calc(50% - 20px) !important;
    display: block !important;
  }
  .site-footer__wrapper > div:last-child {
    flex: 100% !important;
    border-top: 1px solid #606060;
    border-bottom: 1px solid #606060;
    padding: 24px 0;
    text-align: center;
  }
  .hamburger-toggle {
    display: block;
  }
  #site-navigation {
    display: none;
  }
}
@media (max-width: 959px) {
  .footer__links .uk-width-1-5\@m {
    width: 50%;
  }
  .copyright__data {
    flex-direction: column;
    text-align: center;
  }
  .uk-width-1-3\@m {
    width: calc(100% / 2);
  }
  .single-banner__section,
  .single-banner__section picture {
    height: 65vh;
  }
}

@media (max-width: 767px) {
  .trip__card img {
    height: 500px;
  }
  .single-banner__section,
  .single-banner__section picture {
    height: 100%;
  }
  .speak__with__us .uk-grid {
    flex-direction: column-reverse;
    gap: 25px;
  }
  h1 br,
  h2 br,
  h3 br {
    display: none;
  }
}
@media (max-width: 567px) {
  .trip__card img {
    height: 400px;
  }
  .uk-width-1-3\@m {
    width: 100%;
  }
}

form .wpcf7-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 18px 18px;
  padding-right: 30px;
}

.default__section form.wpcf7-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 20px;
  row-gap: 10px;
  border-radius: 20px;
  background-color: #f3f2ee;
  padding: clamp(25px, 3vw, 40px);
}
.default__section form.wpcf7-form > p {
  width: calc(50% - 10px);
  margin: 0;
}
.default__section form.wpcf7-form p strong {
  display: block;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  color: var(--primary);
}
.default__section form.wpcf7-form p:has(strong) {
  width: 100%;
}
.default__section form.wpcf7-form p + p strong {
  margin-top: 18px;
}
.default__section form.wpcf7-form p br {
  display: none;
}
.default__section form.wpcf7-form > p:nth-last-of-type(1),
.default__section form.wpcf7-form > p:nth-last-of-type(2) {
  width: 100%;
}
.default__section form.wpcf7-form input.wpcf7-submit {
  width: fit-content;
  margin-top: 12px;
}
.default__section form.wpcf7-form label {
  display: block;
}
form.wpcf7-form .wpcf7-list-item:not(:last-child) {
  margin: 0 12px 0 0;
}
form.wpcf7-form .wpcf7-list-item input {
  width: fit-content;
  margin: 0;
}
.wpcf7-list-item {
  margin: 0 0 15px;
}

@media (max-width: 567px) {
  .default__section form.wpcf7-form > p {
    width: 100%;
  }
}
