@media (max-width: 1380px) {
  .banner-text h1 {
    font-size: 60px;
  }
  .banner-text p {
    font-size: 20px;
  }
  .h-a-s-container::after {
    opacity: 0.45;
  }
}
@media (max-width: 1199px) {
  .gallery-columns-4 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .site-menuimg {
    display: block;
  }
  .ham-menu {
    display: block;
  }
  .ham-menu i {
    color: var(--primary-color);
    font-size: 30px;
    cursor: pointer;
  }
  .mobile__menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 30px;
  }
  /* offcanvas mobile menu both  */
  .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: #1a1a1abf;
    -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: 20px;
    background: var(--secondary);
  }
  .offcanvas__logo .custom-logo-link {
    display: block;
    text-align: center;
  }
  .offcanvas__logo a img {
    width: 120px;
    margin: 0 auto;
  }
  .offcanvas__close {
    position: absolute;
    top: 10px;
    width: 50px;
    height: 50px;
    z-index: 100;
    left: 300px;
    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: 30px;
    height: 2px;
    vertical-align: top;
    background: white;
  }
  .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;
    /* border-top: 1px solid #eee; */
  }
  #primary-menu1 > li > a {
    font-family: var(--primary-bold-font);
    color: #666;
    text-transform: capitalize;
    font-size: 16px;
    padding: 10px 20px;
    display: block;
  }

  #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(0, 0, 0, 0.05);
  }
  #primary-menu1 > li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  #primary-menu1 > li > a:hover,
  #primary-menu1 > li a.show-active,
  #primary-menu1 > li > a:focus,
  #primary-menu1 > li:hover > a,
  #primary-menu1 > li:focus > a {
    background: #1a1a1a0d;
    color: rgba(0, 0, 0, 0.8);
  }
  #primary-menu1 > li.menu-item-has-children ul li a.show-active {
    background: #333;
  }
  #primary-menu1 > li.menu-item-has-children a.show-active ~ span > i {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
  }
  #primary-menu1 > li > ul > li:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  #primary-menu1 li.menu-item-has-children span {
    color: black;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 20px;
    width: 42px;
    height: 38px;
    background: #1a1a1a1c;
    right: 0;
  }
  #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%);
    font-size: 12px;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
  }
  #primary-menu1
    li.menu-item-has-children
    > ul
    > li.menu-item-has-children
    span {
    background: #fff;
  }
  #primary-menu1 li.menu-item-has-children > ul {
    /* margin-top: 5px; */
    border-bottom: 1px solid #eee;
    /* padding-bottom: 10px; */
    background: var(--tertiary);
  }

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

  /* #primary-menu1 > li.menu-item-has-children ul li {
     border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    } */
  #primary-menu1 > li.menu-item-has-children ul li a {
    font-size: 14px;
    font-family: var(--primary-bold-font);
    color: white;
    background: #333;
    padding: 10px 30px;
    display: block;
    text-transform: capitalize;
  }

  #primary-menu1 > li ul li:hover > a {
    color: white;
    background: #333;
  }

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

  #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__details {
    border-top: 1px solid #eee;
    padding: 10px;
    background: #1a1a1a0d;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .offcanvas__details .header-contact {
    padding: 10px;
    display: block;
    padding-top: 20px;
  }
  .offcanvas__details .header-socials > a,
  .offcanvas__details .header-contact {
    color: #333;
  }
  /* offcanvas */
  .ham-menu {
    display: block;
  }
  .ham-menu i {
    color: var(--dark-primarry--color);
    font-size: 30px;
    cursor: pointer;
  }
  .nav__menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .heading__nav__section {
    gap: 20px;
  }
  .main-navigation {
    display: none;
  }
  /* offcanvas */
  .cta-btn {
    padding: 10px 18px;
  }
}
@media (max-width: 959px) {
  .banner-text h1 {
    font-size: 50px;
  }
  .h-a-s-img {
    min-height: 350px;
    height: 350px;
  }
  .uk-tab > * {
    padding-left: 10px;
  }
  .services__page__section .services-container ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .page-section {
    padding: 40px 0;
  }
  .page-section-t {
    padding-top: 40px;
  }
  .page-section-b {
    padding-bottom: 40px;
  }
  .headerwrap.mb {
    margin-bottom: 30px !important;
  }
  .ham-menu i {
    font-size: 26px;
  }
}
@media (max-width: 810px) {
  .h-a-s-contentwrap .uk-tab {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .default--banner__section .img-bg img {
    height: 250px;
  }

  .default--banner__section .banner--text {
    position: static;
    background: #235982;
    padding: 20px;
    text-align: center;
  }

  .default--banner__section .banner--text .heading-banner {
    font-size: 35px;
  }
  .numcounter-section {
    background-attachment: scroll;
  }
  .overlay-menu-nav .custom-logo {
    top: 90px;
    width: 60px;
  }
  .followusonsocialnetwork {
    flex-direction: column;
    gap: 35px;
  }
  .followusonsocialnetwork h2 {
    width: 100%;
    text-align: center;
  }
  .banner-text h1 {
    font-size: 36px;
  }
  .banner-text p {
    font-size: 16px;
  }
  .hideonmobile {
    display: none;
  }
  .showonmobile {
    display: block;
  }
  .site-branding .custom-logo {
    width: 70px;
  }

  .bannersection {
    height: 350px;
  }

  .bannersection .item {
    height: 350px;
  }

  .h-a-s-img img {
    height: 100%;
  }

  .bannersection .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .eachdiscountoffer {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .discounts-offer-container .owl-nav button {
    position: relative;
  }
  .discounts-offer-container .owl-nav button.owl-next {
    right: auto;
  }
  .discounts-offer-container .owl-nav button.owl-prev {
    left: auto;
    margin-top: 10px;
  }
  .testimonial-container ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-logo {
    grid-column: span 6;
    text-align: center;
    padding: 0;
  }
  .link1 {
    grid-column: span 3;
  }
  .link3 {
    grid-column: span 12;
  }
  .site-footer {
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
  }

  .heading-banner {
    font-size: 40px;
  }
  .gallery-columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-branding .custom-logo {
    width: 55px;
    padding: 10px 0;
  }
}

@media (max-width: 639px) {
  .site-branding .custom-logo {
    padding: 10px 0;
  }
  .banner-textcontainer {
    top: auto;
    bottom: 10px;
    transform: translate(0);
  }
  /* .bannersection .item img {
    min-height: 100vh;
    object-fit: cover;
    object-position: center top;
  } */
  .banner-text h1 {
    font-size: 50px;
  }
  .site-menuwrap {
    gap: 10px;
  }
  .offcanvas .site-menuwrap {
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
  }
  .overlaymenu-banner {
    display: none;
  }
  .overlay-menu-nav {
    width: 100%;
  }
  .bottom-content ul li {
    padding: 0 15px;
  }
  .footer-logo {
    grid-column: span 12;
  }
  .link1,
  .link2 {
    grid-column: span 6;
  }
  .cta-btn {
    padding: 10px 16px;
  }
  .section {
    padding: 45px 0;
  }
  .section-t {
    padding-top: 45px;
  }
  .section-b {
    padding-bottom: 45px;
  }
  .headerwrap h3 {
    font-size: 26px;
  }
  .aboutus-section .headerwrap h3 {
    width: 100%;
    line-height: 1.45;
  }
  .h-a-s-contentwrap > div {
    padding: 30px 15px;
  }
  .h-a-s-content {
    padding: 10px;
  }
  .h-a-s-contentwrap .uk-tab > li > a {
    padding: 10px 15px;
  }
  .aboutus-container > img {
    width: 65px;
  }
  .headerwrap.w-half,
  .headerwrap.text-center.w-55,
  .headerwrap.text-center.w-half {
    width: 100%;
  }
  .services-container .owl-nav {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    justify-content: center;
    margin-top: 15px;
  }
  .discount-content {
    padding: 35px 25px;
  }
  .scrolldown {
    bottom: 10px;
    width: 36px;
  }
  .h-a-s-container::before {
    opacity: 0.45;
  }
  .gallery-columns-2,
  .gallery-columns-3,
  .gallery-columns-4,
  .gallery-columns-5,
  .gallery-columns-6,
  .gallery-columns-7,
  .gallery-columns-8,
  .gallery-columns-9 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gallery-item img {
    height: auto;
  }
  .services__page__section .services-container ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .page-section {
    padding: 20px 0;
  }
  .page-section-t {
    padding-top: 20px;
  }
  .page-section-b {
    padding-bottom: 20px;
  }
  .cta-btn {
    padding: 6px 12px;
  }
  .footer__sticky .cta-btn {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 100;
    padding: 15px 0;
  }
  .bottomfooter-container {
    flex-direction: column;
    margin-bottom: 50px !important;
  }
}

@media (max-width: 480px) {
  .followusonsocialnetwork > ul li img {
    width: 35px;
    height: 35px;
  }
  .followusonsocialnetwork > ul {
    flex-direction: column;
  }
  .testimonial-header::after,
  .testimonial-header::before {
    top: -30px;
    transform: translateY(0);
  }
  .eachticket-container h3 {
    line-height: 1;
  }
  .testimonial-container ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .aboutus-content p {
    font-size: 15px;
  }
  .site-menu {
    width: 38px;
    height: 38px;
  }
  .site-menu img {
    width: 16px;
  }
  .bottomfooter-container p,
  .bottomfooter-container a {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
  }
}
