@media (max-width: 1200px) {
  /* offcanvas */
  .offcanvas {
    min-height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 10000;
    left: -100%;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
    display: block;
  }
  .offcanvas.show {
    left: 0;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
  }
  .offcanvas::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000c;
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    opacity: 0.6;
  }

  .offcanvas .offcanvas__bar {
    width: 100%;
    position: relative;
    z-index: 10;
    height: 100%;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
    position: absolute;
    top: 0;
    left: -100%;
    -webkit-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    transition: all 0.6s linear;
  }

  .offcanvas .offcanvas__bar .offcanvas__sidebar {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    width: 300px;
    position: relative;
    z-index: 1;
    height: 100%;
    overflow-y: auto;
    background: #fff;
  }
  .offcanvas .offcanvas__bar .offcanvas__sidebar::before {
    content: "";
    background-image: url("../img/lines-vector2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
    width: 300px;
    mix-blend-mode: overlay;
    pointer-events: none;

    position: absolute;
    top: 0;
    left: -100%;
    -webkit-transition: all 0.6s linear 0.3s;
    -o-transition: all 0.6s linear 0.3s;
    transition: all 0.6s linear 0.3s;
  }
  .offcanvas .offcanvas__bar.showbar .offcanvas__sidebar::before {
    position: fixed;
    left: 0;
  }

  .offcanvas .offcanvas__bar.showbar {
    left: 0;
  }

  .offcanvas__logo {
    padding: 7px 10px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10;
    width: 100%;
    -webkit-box-shadow: inset 0 -1px 0 0 #eaeaea;
    box-shadow: inset 0 -1px 0 0 #eaeaea;
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    background: #fffc;
    text-align: center;
  }
  .high-contrast .offcanvas__logo {
    background: #000c;
  }
  .offcanvas__logo .custom-logo-link {
    display: inline-block;
  }
  .offcanvas__logo a img {
    width: 150px;
    margin: 0 auto;
    -webkit-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
  }
  .offcanvas__close {
    position: absolute;
    top: 10px;
    background: #fff;
    width: 50px;
    height: 50px;
    z-index: 100;
    left: 310px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: all 1s linear;
    -o-transition: all 1s linear;
    transition: all 1s linear;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }

  .offcanvas__close .offcanvas__icon {
    width: 20px;
    line-height: 0;
  }
  .offcanvas__close .offcanvas__icon span {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 2px;
    vertical-align: top;
    background: red;
  }
  .high-contrast .offcanvas__close .offcanvas__icon span {
    background: #0ff !important;
  }
  .offcanvas__close .offcanvas__icon span + span {
    margin-top: 5px;
  }

  .offcanvas.show .offcanvas__close .offcanvas__icon span:nth-child(1) {
    -webkit-animation: ease 0.7s 0.6s icon1 forwards;
    animation: ease 0.7s 0.6s icon1 forwards;
  }

  .offcanvas.show .offcanvas__close .offcanvas__icon span:nth-child(2) {
    -webkit-animation: ease 0.7s 0.6s icon2 forwards;
    animation: ease 0.7s 0.6s icon2 forwards;
  }

  .offcanvas.show .offcanvas__close .offcanvas__icon span:nth-child(3) {
    -webkit-animation: ease 0.7s 0.6s icon3 forwards;
    animation: ease 0.7s 0.6s icon3 forwards;
  }
  @-webkit-keyframes icon1 {
    0% {
      top: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    50% {
      top: 7px;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      top: 7px;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
  }
  @keyframes icon1 {
    0% {
      top: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    50% {
      top: 7px;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      top: 7px;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
  }
  @-webkit-keyframes icon2 {
    50% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
    100% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
  }
  @keyframes icon2 {
    50% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
    100% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
  }
  @-webkit-keyframes icon3 {
    0% {
      bottom: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    50% {
      bottom: 7px;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      bottom: 7px;
      -webkit-transform: rotate(135deg);
      transform: rotate(135deg);
    }
  }
  @keyframes icon3 {
    0% {
      bottom: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    50% {
      bottom: 7px;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      bottom: 7px;
      -webkit-transform: rotate(135deg);
      transform: rotate(135deg);
    }
  }
  .offcanvas ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

  #primary-menu1 {
    padding: 0;
  }
  #primary-menu1 > li > a {
    color: var(--primary);
    text-transform: capitalize;
    font-size: 16px;
    padding: 12px 20px;
    display: block;
    font-weight: 600;
  }

  #primary-menu1 > li > ul,
  #primary-menu1 > li > ul > li > ul {
    display: none;
  }

  #primary-menu1 li {
    position: relative;
    cursor: pointer;
    line-height: 1.313rem;
  }
  #primary-menu1 > li {
    border-bottom: 1px solid #eee;
  }

  #primary-menu1 > li > a:hover,
  #primary-menu1 > li a.show-active,
  #primary-menu1 > li.menu-item-has-children ul li a.show-active,
  #primary-menu1 > li:hover > a {
    background: var(--secondary);
  }

  #primary-menu1 > li > ul > li:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  #primary-menu1 li.menu-item-has-children span {
    color: var(--text);
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 20px;
    width: 40px;
    height: 40px;
    /* background: #0000000f; */
    right: 3px;
    pointer-events: none;
  }
  #primary-menu1 li.menu-item-has-children span i {
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 14px;
  }

  #primary-menu1 > li .show + .menu__icon i {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    -ms-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
  #primary-menu1 li.menu-item-has-children > ul {
    background: #f3f3f3;
  }
  .high-contrast #primary-menu1 li.menu-item-has-children > ul {
    background: #504e50;
  }

  #primary-menu1
    li.menu-item-has-children
    > ul
    > li.menu-item-has-children
    > ul {
    background: #fff;
    margin: 0;
    margin-top: 5px;
    border-radius: 0;
    padding: 0;
    border-bottom: 1px solid transparent;
  }
  #primary-menu1 > li.menu-item-has-children > span {
    top: 23px;
  }

  #primary-menu1 > li.menu-item-has-children ul li a {
    font-size: 0.875rem;
    color: var(--text);
    font-weight: 500;
    padding: 10px 30px;
    display: block;
    text-transform: capitalize;
  }

  #primary-menu1 > li ul li:hover > a {
    background: rgba(0, 0, 0, 0.03);
  }

  #primary-menu1
    > li.menu-item-has-children
    ul
    li.menu-item-has-children
    ul
    li
    a {
    padding-left: 40px;
  }

  #primary-menu1
    > li.menu-item-has-children
    ul
    li.menu-item-has-children
    ul
    li.menu-item-has-children
    ul
    li
    a {
    padding-left: 60px;
  }

  .offcanvas__content {
    height: calc(100vh - 84px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
  }

  .offcanvas__nav,
  .offcanvas__social {
    -webkit-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
  }
  .offcanvas__social {
    background: var(--light-xs);
    padding: 10px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
  }
  .offcanvas__social h2 {
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
    font-family: var(--outfit);
    margin-bottom: 10px;
  }

  /* offcanvas */
}

@media (max-width: 959px) {
  .tour__category .uk-grid > div:nth-child(3) {
    margin-top: 30px;
  }

  .review__carousel .owl-nav {
    position: static;
    text-align: center;
    margin-top: 15px;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    margin-bottom: 20px;
  }

  .review__carousel .owl-nav button.owl-prev,
  .review__carousel .owl-nav button.owl-next {
    position: static;
    margin: 0 5px;
  }

  .banner__content {
    display: block;
    position: static;
    padding: 20px 0;
  }

  .banner__section {
    height: 100%;
  }

  .tour__category .uk-grid > div:nth-child(3) {
    margin-top: 30px;
  }

  .banner__img::before {
    height: 135px;
    bottom: -1px;
    background-size: 100%;
    background-position: bottom;
  }

  .activity__content h2 {
    font-size: 4rem;
    line-height: 42px;
  }

  .banner__text .banner__title {
    width: 100%;
  }

  /* .act__slider {
    background: var(--primary);
    backdrop-filter: none;
  } */

  .total__act {
    display: none;
  }

  .uk-container-expand-right.uk-container-large {
    padding-right: 15px !important;
  }

  .banner__text .banner__title {
    font-size: 4.5rem;
    line-height: 48px;
  }

  .banner__text p {
    font-size: 1.8rem;
    color: #004449d0;
  }

  .banner__section {
    height: 100%;
  }

  .banner__section .banner__img {
    height: 100%;
    aspect-ratio: 16/9;
  }

  .home .banner__text .banner__title {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .banner__section::after {
    display: none;
  }
  .banner__section.trip_section {
    height: auto;
  }

  .banner__section.trip_section .banner__img,
  .banner__section.trip_section {
    height: auto;
  }
  .banner__section.trip_section .banner__img img {
    height: auto;
  }

  .banner__section.trip_section::after {
    display: none;
  }
  .site-header {
    position: static;
  }

  .site-branding .custom-logo {
    filter: none;
    -webkit-filter: none;
  }

  .banner__text {
    position: static;
  }
  .banner__section .banner__img img {
    aspect-ratio: 3/4;
    object-fit: cover;
    height: 100%;
  }
  .review__container > .review__img {
    width: 100px;
    height: 100px;
    min-width: 100px;
  }

  .trip__data {
    flex-wrap: wrap;
    gap: 15px;
  }

  .heading-wrap p,
  .heading__text {
    margin-top: 12px;
    margin-left: 0;
  }

  .category__card > a p {
    width: 100%;
  }

  .cat__imgs {
    display: flex;
    flex-wrap: nowrap;
    overflow: auto;
    width: 100%;
  }

  .cat__imgs img {
    min-width: 60%;
  }

  .category__card,
  .category__card > a {
    padding: 20px;
  }

  .banner__section::before,
  .banner__section .banner__img figure::before {
    display: none;
  }

  .banner__text {
    background: var(--primary);
  }

  .single__banner,
  .banner__section.single__banner .banner__img {
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
  }

  .single__banner.banner__section .banner__img figure {
    aspect-ratio: 16/9;
  }

  .single__banner.banner__section .banner__text .banner__title {
    font-size: 28px;
    line-height: 1.3;
  }

  .facts__item {
    display: block;
  }

  .trip__facts {
    padding: 15px;
  }

  .iti__header h3 {
    font-size: 18px;
  }

  .banner__text .banner__title {
    color: #fff;
    font-size: 30px;
    line-height: 1.3;
    text-shadow: none;
    padding: 20px;
  }

  .cta__img img {
    aspect-ratio: 1/1;
    height: 100%;
  }

  .cta__content,
  .blog__container {
    padding: 30px;
  }

  .cta__content p {
    width: 100%;
  }

  .heading-wrap h2 {
    font-size: 40px;
    line-height: 45px;
  }

  .cta__content h2 {
    font-size: 38px;
    line-height: 43px;
  }

  .site-footer {
    border-radius: 12px 12px 0 0;
    -webkit-border-radius: 12px 12px 0 0;
    -moz-border-radius: 12px 12px 0 0;
    -ms-border-radius: 12px 12px 0 0;
    -o-border-radius: 12px 12px 0 0;
  }

  .tailor__content {
    display: none;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }

  .tailor__imgs > img {
    position: static;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }

  .copyright .uk-flex {
    justify-content: center;
    gap: 4px;
    margin-bottom: 70px;
  }

  .tailor__section {
    padding: 50px 0;
  }

  .footer__sticky {
    display: flex;
  }

  .stats__num > div {
    font-size: 38px;
    line-height: 38px;
  }
  .tailor__imgs::before {
    display: none;
  }
  .contact__section > div .uk-grid {
    row-gap: 20px;
  }
  .social__icons.a {
    display: flex;
    gap: 12px;
    visibility: visible;
  }
  .social__icons.a a {
    background: transparent;
    border: 1px solid #ebe4e4;
  }
  .social__icons.a > a > i {
    color: #fff;
  }

  .social__icons {
    display: none;
  }
}

@media (max-width: 490px) {
  .tailor__imgs::before {
    display: none;
  }
  .review__carousel .item {
    margin: 16px 0;
  }
  .review__carousel .owl-nav {
    margin-bottom: 20px;
  }
  .copyright {
    margin-top: 22px;
  }
  .copyright .uk-flex {
    justify-content: center;
    gap: 2px;
  }
  .contact__section {
    padding: 20px 0;
  }
  .gallery-columns-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 390px) {
  .gallery-columns-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
