/* Large devices */
@media (min-width: 1200px) {}


/* Tablets */
@media (max-width: 992px) {

  /* ===== Layout Visibility ===== */
  .small {
    display: block;
    transition: 0.3s ease-in-out;
  }

  #main_header {
    display: none;
  }

  section {
    padding: 50px 0;
  }

  /* ===== Navigation ===== */
  .small nav {
    padding: 7px 0;
  }

  .small img {
    width: 78px;
  }

  .small nav .container-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  /* ===== Menu Buttons (Merged) ===== */
  .small nav .menu,
  .small nav .menu-2 {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
  }

  .small nav .menu {
    background: var(--theme-color-second);
  }

  .small nav .menu-2 {
    background: var(--theme-color-third);
  }

  /* ===== Sidebar ===== */
  .small nav .sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease-in-out;
    z-index: 1000;
  }

  .small.show .sidebar,
  .small nav .sidebar.show {
    left: 0;
  }

  .small nav .sidebar>ul {
    margin-top: 120px !important;
  }

  .small nav .sidebar>ul>li {
    padding: 10px;
  }

  .small nav .sidebar ul>li:last-child {
    border-bottom: none;
  }

  .small nav .sidebar ul>li>a {
    color: #000;
    padding: 4px;
    font-size: 17px;
    text-transform: capitalize;
  }

  /* ===== Sub Menu ===== */
  .small nav .sidebar>ul>li.link-sm {
    position: relative;
  }

  .small nav .sidebar ul li.link-sm i {
    position: absolute;
    top: 3px;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 19px;
    font-weight: 700;
    color: #1e1e1e;
  }

  .small nav .sidebar ul.sub-menu-sm {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    margin-top: 0 !important;
  }

  .small nav .sidebar ul.sub-menu-sm li {
    padding: 4px 16px;
  }

  ul.list-unstyled.p-0.m-0.sub-menu-sm li a {
    font-size: 14px;
  }

  /* ===== Close Button ===== */
  .small .times {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: #0e0e0e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
  }

  /* ===== Overlay ===== */
  .small .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease-in-out;
    z-index: 999;
  }

  .small.show .overlay {
    opacity: 1;
    pointer-events: all;
  }

  /* ===== Typography ===== */
  p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  p br {
    display: none;
  }

  h1 {
    font-size: 35px !important;
  }

  h2 {
    font-size: 30px !important;
  }

  /* ===== Banner ===== */
  .banner_sec .heading {
    height: 65vh;
  }

  /* ===== Footer ===== */
  .footer {
    background: var(--theme-color-second);
    color: #fff;
    padding: 80px 0;
    text-align: center;
  }

  .footer h6 {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .footer .ft-link li {
    margin-bottom: 20px;
  }

  .footer .ft-link li a {
    color: #fff;
    font-size: 21px;
  }

  .footer .ft-heading h6 span {
    font-size: 21px;
    opacity: 0.8;
  }

  .footer .contact-list li a {
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .footer .lis-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
  }

  .banner_sec .heading h3 {
    font-size: 21px;
    font-weight: 400;
    margin-bottom: 0;
  }

  .footer .ft-head-2 .ft-logo {
    display: none;
  }

  .footer .social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
  }

  .hd_info {

    gap: 16px;

  }
}

/* Small tablets */
@media (max-width: 768px) {}

/* Mobile */
@media (max-width: 576px) {}

/* Small mobile */
@media (max-width: 480px) {}

/* Very small */
@media (max-width: 360px) {}