/* Medium Layout: 1280px. */

@media only screen and (min-width: 992px) and (max-width: 1280px) {
}

/* Tablet Layout: 768px. */

@media only screen and (min-width: 767px) and (max-width: 991px) {
  .logo {
    text-align: center;
  }
  .single-blog img {
    width: 100%;
  }
  .pricing-box {
    margin-top: 30px;
  }
  .project-idea h2,
  .project-idea p {
    font-size: 22px;
  }
  .single-project-complete {
    margin-top: 30px;
  }
  .about-text {
    margin-top: 50px;
  }
  .section-title p {
    padding: 0;
  }
  .single-contact {
    text-align: center;
  }
  .contact-icon {
    float: none;
  }
}

/* Mobile Layout: 320px. */

@media only screen and (max-width: 767px) {
  .menu-bg .navbar-collapse {
  }
  .welcome-area {
    height: 100%;
  }
  .welcome-image-area {
    height: 100%;
  }
  .welcome-image-area,
  .welcome-video-area {
    padding-top: 120px;
  }
  .welcome-image-area h2,
  .single-slide-item h2,
  .welcome-video-area h2,
  .about-text h2,
  .call-to-area-text h2 {
    font-size: 50px;
  }
  .slider-control {
    display: none;
  }
  a.slide-btn {
    font-size: 12px;
    padding: 10px;
    margin-bottom: 5px;
  }
  .section-title h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .footer-social-link {
    text-align: left;
    margin-top: 20px;
  }
  .pricing-box {
    margin-top: 30px;
  }
  .single-testimonial {
    padding: 0;
  }
  .video-area-text {
    margin-top: 50px;
  }
  .footer-social-link {
    text-align: center;
  }
  .scrollup {
    height: 40px;
    width: 40px;
    line-height: 35px;
  }
  .header-text {
    margin-top: 10px;
  }
  .header-text h2 {
    font-size: 60px;
    /* margin-top: 120px; */
  }
  .footer-text h6 {
    font-size: 15px;
  }
  .footer-area {
    padding: 50px 0px;
  }
  .section-padding {
    padding: 40px 0px;
  }
  .single-testimonial {
    margin-right: 30px;
    margin-left: 30px;
  }
  .single-contact-details {
    margin-bottom: 30px;
  }
  .header-text p {
    padding: 0;
  }
  .single-testi-des {
    padding: 10px;
  }

  .logo-footer {
    display: none;
  }

  .footer-area .container .row img {
    width: 30%;
  }

  .logo,
  .menu-bg .logo {
    padding-top: 15px;
    /* text-align: center; */
  }
  .tour-info ul {
    text-align: center;
  }
  .tour-info,
  .menu-bg .tour-info {
    padding-top: 3px;
    margin-bottom: 10px;
  }
  .tour-places {
    /* margin-top: 250px !important; */
  }

  /* .logo a img {
    width: 25%;
  } */

  .tour-info ul li {
    font-size: 12px;
  }

  .display-table {
    height: 70%;
  }

  .nav-logo {
    width: 15%;
  }
}

/* Wide Mobile Layout: 480px. */

/* @media only screen and (min-width: 480px) and (max-width: 767px) { */

@media only screen and (max-width: 767px) {
  .logo-wrap {
    /* justify-content: center; */
  }

  .logo-text {
    text-align: left;
  }

  .logo-title {
    font-size: 14px;
  }

  .logo-subtitle {
    font-size: 11px;
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 26px;
    color: #fff;
    z-index: 1002;
    cursor: pointer;
  }

  .tour-info {
    display: none;
  }

  /* OVERLAY */
  .mobile-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
  }

  .mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  /* MENU */
  .mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0b3a5a;
    padding: 25px;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1001;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }

  .mobile-menu.active {
    transform: translateY(0);
    display: block;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-menu .nav-logo {
    width: 80px;
  }

  .mobile-menu .logo-title {
    font-size: 15px;
    color: #fff;
  }

  .mobile-menu .logo-subtitle {
    font-size: 11px;
    color: #c7c4c4;
  }

  .mobile-menu .logo-text {
    line-height: 1.1;
  }

  .close-mobile {
    font-size: 32px;
    color: #fff;
    cursor: pointer;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 35px;
  }

  .mobile-menu ul li {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeSlide 0.4s ease forwards;
  }

  .mobile-menu.active ul li:nth-child(1) {
    animation-delay: 0.15s;
  }

  .mobile-menu.active ul li:nth-child(2) {
    animation-delay: 0.25s;
  }

  @keyframes fadeSlide {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-height: 900px) {
  .header-text h2 {
    font-size: 100px;
    margin-top: 120px;
  }
}

@media (max-width: 360px) {
  .mobile-menu .logo-subtitle {
    display: none;
  }
}
