/* ------reponsive------- */
@media (max-width: 1500px) {
  .main__heading.big {
    font-size: 250px;
    line-height: 132px;
  }
  .big__container {
    margin-top: 85px;
  }

  .special__carousel {
    padding: 0 84px;
  }
  .custom__arrow {
    z-index: 10;
  }
  .special__arrow,
  .destination__arrow {
    width: 100%;
  }
  .places__carousel {
    padding: 0 20px;
  }
  .latest__section .main__heading.big {
    margin-top: 13px;
  }
  .banner__wrapper {
    max-width: 700px;
  }
  .sidebar__title {
    font-size: 30px;
    padding-bottom: 0;
  }
  .sidebar__title::after {
    padding-bottom: 0;
  }
  .most__popular .wrapper img {
    width: 130px;
  }

  .sidebar .sidebar__wrapper:not(:last-child) {
    margin-bottom: 40px;
  }
  .padding-right {
    padding-right: 0;
  }
  .padding-left {
    padding-left: 0;
    max-width: calc(1080px - 25%);
    margin: 0 auto;
    padding-right: 0;
  }
  .single__heading.big {
    font-size: 100px;
    line-height: 100px;
  }
}
@media (max-width: 1199px) {
  .section-t {
    padding-top: 70px;
  }
  .section-b {
    padding-bottom: 70px;
  }
  .section {
    padding: 70px 0;
  }
  .page__section {
    padding: 40px 0 70px 0;
  }
  .s-section-t {
    padding-top: 60px;
  }
  .s-section-b {
    padding-bottom: 60px;
  }
  .s-section {
    padding: 60px 0;
  }
  .link__title.medium a,
  .search__txt {
    font-size: 35px;
    line-height: 39px;
  }
  .link__title.medium-large a {
    font-size: 45px;
    line-height: 45px;
  }
  .link__title.big a {
    font-size: 54px;
    line-height: 50px;
  }
  .single__heading {
    font-size: 54px;
    line-height: 50px;
  }
  .footer__logo img {
    width: 150px;
  }
  .footer__logo {
    margin-top: -97px;
  }
  .updates__container .wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
  }
  .main__heading.big {
    font-size: 200px;
    line-height: 100px;
    letter-spacing: -3%;
    margin: 0;
    color: var(--primary);
    opacity: 0.3;
  }

  .big__container {
    margin-top: 70px;
  }
  .share__icons {
    margin-top: -60px;
    padding-bottom: 10px;
  }

  /* 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: #005888b8;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .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;
    min-width: 300px;
    background: #fff;
    position: relative;
    z-index: 10;
    height: 100%;
    overflow-y: auto;
  }
  .offcanvas .offcanvas__bar.showbar {
    left: 0;
  }

  .offcanvas__logo {
    padding: 10px;
  }
  .offcanvas__logo a {
    display: block;
    text-align: center;
  }
  .offcanvas__logo a img {
    width: 150px;
    margin: 0 auto;
  }
  .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: var(--primary);
  }
  .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: 10px;
    border-top: 1px solid #eee;
  }
  #primary-menu1 > li > a {
    color: #666;
    text-transform: capitalize;
    font-size: 15px;
    padding: 10px 20px;
    display: block;
    font-weight: 500;
    border-radius: 12px;
  }

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

  #primary-menu1 li {
    position: relative;
    cursor: pointer;
  }
  #primary-menu1 > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  #primary-menu1 > li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  #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 > a:focus,
  #primary-menu1 > li:hover > a,
  #primary-menu1 > li:focus > a {
    background: #0058880d;
    color: var(--primary);
  }

  #primary-menu1 > li > ul > li:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  #primary-menu1 li.menu-item-has-children span {
    color: var(--primary);
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 20px;
    width: 38px;
    height: 38px;
    background: #fff;
    right: 3px;
    border-radius: 12px;
  }
  #primary-menu1 li.menu-item-has-children span i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  #primary-menu1 li.menu-item-has-children > ul {
    margin-top: 5px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }

  #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: 21px;
  }

  #primary-menu1 > li.menu-item-has-children ul li {
    border-radius: 12px;
  }
  #primary-menu1 > li.menu-item-has-children ul li a {
    font-size: 14px;
    color: #444;
    font-weight: 400;
    padding: 10px 30px;
    display: block;
    text-transform: capitalize;
    border-radius: 12px;
  }

  #primary-menu1 > li ul li:hover > a {
    color: var(--primary);
    background: #0058880d;
  }

  #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 */

  .banner__section::after {
    width: 350px;
  }
  .most__popular .wrapper div:last-child {
    -webkit-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
  }
  .single__heading.big {
    font-size: 80px;
    line-height: 80px;
  }
  .article__navigation .wrapper img {
    width: 130px;
  }
}
@media (max-width: 959px) {
  .section-t {
    padding-top: 60px;
  }
  .section-b {
    padding-bottom: 60px;
  }
  .section {
    padding: 60px 0;
  }
  .page__section {
    padding: 40px 0 60px 0;
  }
  .s-section-t {
    padding-top: 50px;
  }
  .s-section-b {
    padding-bottom: 50px;
  }
  .s-section {
    padding: 50px 0;
  }
  .main__heading.small,
  .entry-title {
    font-size: 54px;
    line-height: 54px;
  }

  .updates__container .wrapper {
    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-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 0;
  }
  .updates__container .wrapper .hover__img {
    width: 100%;
  }
  .main__heading.big {
    font-size: 150px;
    line-height: 60px;
  }
  .big__container {
    margin-top: 60px;
  }
  .places__carousel .item img {
    aspect-ratio: 10/12;
  }
  .custom__arrow .arrow {
    padding: 25px;
  }
  .custom__arrow .arrow img {
    width: 15px;
  }
  .special__carousel {
    padding: 0 0;
  }
  .special__arrow {
    width: 109%;
  }

  .special__container .custom__arrow.flip__arrow .arrow.prevarrow {
    border-radius: 0 100px 100px 0;
  }

  .special__container .custom__arrow.flip__arrow .arrow.nextarrow {
    border-radius: 100px 0 0 100px;
  }
  .latest__container {
    margin-top: 40px;
  }
  .latest__sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .link__title.big a {
    font-size: 49px;
    line-height: 45px;
  }
  .single__heading {
    font-size: 49px;
    line-height: 45px;
  }
  .banner__heading {
    font-size: 54px;
    line-height: 50px;
  }
  .banner__section::after {
    opacity: 0.2;
  }
  .banner__content {
    padding: 50px 0 50px 0;
  }
  .share__icons {
    margin-top: 0;
    padding-bottom: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .most__popular .wrapper div:last-child {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .most__popular {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .related__section {
    margin-top: 40px;
  }
  .bordered__section-t {
    padding-top: 40px;
  }
  .latest__sidebar .wrapper:not(:last-child) {
    margin-bottom: 0;
  }
  .single__heading.big {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  .most__popular {
    grid-template-columns: repeat(1, 1fr);
  }
  .article__navigation .wrapper {
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .article__navigation {
    margin-top: 40px;
  }
  .article__navigation .wrapper img {
    width: 100px;
  }
  .article__navigation .next__article .wrapper > div:first-child {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .article__navigation .next__article .wrapper > div:last-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .article__navigation .next__article .wrapper {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
@media (max-width: 639px) {
  .section-t {
    padding-top: 40px;
  }
  .section-b {
    padding-bottom: 40px;
  }
  .section {
    padding: 40px 0;
  }
  .page__section {
    padding: 30px 0 40px 0;
  }
  .s-section-t {
    padding-top: 30px;
  }
  .s-section-b {
    padding-bottom: 30px;
  }
  .s-section {
    padding: 30px 0;
  }
  .link__title a {
    font-size: 22px;
    line-height: 26px;
  }
  .content__wrapper {
    margin-top: 30px;
  }
  .error-404 {
    padding-top: 120px;
  }
  .error-404 .error-watermark {
    top: calc(50% - 69px);
    font-size: 160px;
  }
  .error-404 .error-title {
    font-size: 25px;
  }
  .error-404 .error-text {
    font-size: 14px;
    margin-top: 10px;
  }

  .error-404 {
    padding-top: 120px;
  }
  .error-404 .error-watermark {
    top: calc(50% - 69px);
    font-size: 160px;
  }
  .error-404 .error-title {
    font-size: 25px;
  }
  .error-404 .error-text {
    font-size: 14px;
    margin-top: 10px;
  }
  .the__content p,
  .entry-content p,
  .the__content li {
    font-size: 16px;
    line-height: 28px;
  }
  .the__content h1 {
    font-size: 26px;
  }
  .the__content h2 {
    font-size: 20px;
  }
  .footer__title {
    font-size: 18px;
  }
  .btn__center {
    margin-top: 30px;
  }

  .border__heading {
    padding-top: 30px;
  }

  .uk-modal-body {
    padding: 20px 20px;
  }
  ::-webkit-input-placeholder {
    font-size: 14px;
  }
  ::-moz-placeholder {
    font-size: 14px;
  }
  :-ms-input-placeholder {
    font-size: 14px;
  }
  ::-ms-input-placeholder {
    font-size: 14px;
  }
  ::placeholder {
    font-size: 14px;
  }
  .site-header .custom-logo {
    width: 100px;
  }
  .search__icon {
    margin-left: 0;
  }
  /*  */
  .offcanvas {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  .offcanvas .offcanvas__bar {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
  }
  .offcanvas .offcanvas__bar.showbar {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  .offcanvas .offcanvas__bar .offcanvas__sidebar {
    min-width: 100%;
  }
  .offcanvas__close {
    left: auto;
    right: 10px;
    border: 1px solid var(--primary);
    background: var(--primary);
    width: 30px;
    height: 30px;
  }
  .offcanvas__close .offcanvas__icon span {
    width: 15px;
    height: 2px;
    background: #fff;
  }
  .offcanvas__close .offcanvas__icon {
    width: 15px;
  }
  /*  */

  .top__footer .uk-grid > div:first-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 50%;
  }
  .top__footer .uk-grid > div:nth-child(2) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
  }
  .top__footer .uk-grid > div:nth-child(2) > div {
    margin-bottom: 15px;
    border-bottom: 1px solid #ffffff61;
    padding-bottom: 15px;
  }
  .top__footer .uk-grid > div:last-child {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 50%;
  }
  .footer__info {
    text-align: center;
    padding: 30px 0;
  }
  .footer__menu ul li a {
    font-size: 12px;
    padding: 15px;
  }
  .copyright {
    padding: 20px 0;
    font-size: 13px;
  }
  .main__heading.big {
    font-size: 75px;
    line-height: 32px;
  }
  .main__heading.small,
  .entry-title {
    font-size: 38px;
    line-height: 40px;
    margin-bottom: 20px;
  }
  .big__container {
    margin-top: 45px;
  }
  /* .site-footer {
    margin-top: 100px;
  } */
  .footer__logo img {
    width: 130px;
  }
  .offcanvas__logo a img {
    width: 130px;
    margin: 0 auto;
  }
  .link__title.medium a,
  .search__txt {
    font-size: 28px;
    line-height: 32px;
  }
  .link__title.medium-large a {
    font-size: 30px;
    line-height: 30px;
  }
  .custom__arrow .arrow {
    padding: 20px;
  }
  .custom__arrow .arrow img {
    width: 10px;
  }
  .destination__carousel .slick-list {
    overflow: hidden;
  }
  .slick__carousel .item {
    margin: 0 8px;
  }
  .destination__carousel .slick-dots {
    bottom: -35px;
  }
  .small__txt {
    margin-top: 15px;
  }
  .special__arrow {
    width: 107%;
  }
  .latest__sidebar {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  .latest__container {
    margin-top: 30px;
  }
  .link__title.big a {
    font-size: 36px;
    line-height: 35px;
  }
  .single__heading {
    font-size: 40px;
    line-height: 35px;
  }
  .banner__heading {
    font-size: 40px;
    line-height: 44px;
  }
  .banner__content {
    padding: 40px 0 40px 0;
  }
  .banner__txt {
    margin-top: 20px;
  }
  .banner__section .custom__arrow {
    top: calc(500px - 35px);
  }
  .banner__slider img {
    height: 500px;
    width: 100%;
  }
  .top__bg img {
    max-width: 100%;
  }
  .share__icons {
    margin-top: 0;
    padding-bottom: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .latest__sidebar .wrapper:not(:last-child) {
    margin-bottom: 30px;
  }
  .bordered__section-t {
    padding-top: 30px;
  }
  .bordered__section-b {
    margin-top: 70px;
  }
  .most__popular .wrapper {
    margin-bottom: 20px;
  }
  .most__popular .wrapper:last-child {
    margin-bottom: 0;
  }
  .single__heading.big {
    font-size: 40px;
    line-height: 40px;
  }
  .more__category .wrapper {
    margin-top: 30px;
  }
  .search__input input::-webkit-input-placeholder {
    font-size: 20px;
  }
  .search__input input::-moz-placeholder {
    font-size: 20px;
  }
  .search__input input:-ms-input-placeholder {
    font-size: 20px;
  }
  .search__input input::-ms-input-placeholder {
    font-size: 20px;
  }
  .search__input input::placeholder {
    font-size: 20px;
  }
  .search__input input {
    height: 50px;
  }
  .contact__info .wrapper:not(:last-child) .txt {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .article__navigation .wrapper .link__title {
    display: none;
  }
}

@media (max-width: 390px) {
  .main__heading.big {
    font-size: 70px;
    line-height: 15px;
  }
  .big__container {
    margin-top: 35px;
  }
  .special__arrow {
    width: 109%;
  }
}
