@media screen and (max-width: 560px) {
  :root {
    --text-size: 14px;
    --text-size-lg: 24px;
    --text-size-md: 18px;
    --text-size-sm: 12px;
    --px-sm: 4vw;
    --px-lg: 5vw;
    --py-sm: 1.5vh;
    --py-lg: 3vh;
    --gap: 4vw;
    --raduis-lg: 20px;
    --raduis-md: 10px;
    --raduis-sm: 5px;
  }

  section.map,
  header > nav,
  .filter .selects,
  header .contact span,
  footer,
  .sidebar {
    display: none;
  }

  header,
  section.hero,
  section.content,
  section.content.full,
  section.filter,
  section.loader {
    padding-inline-start: calc(var(--px-sm));
  }

  .hero {
    height: auto;
  }

  header {
    padding: var(--py-lg) var(--px-lg);
  }

  .dropdown-button,
  header > .contact > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1px solid #a6a6a6;
    border-radius: var(--raduis-lg);
    font-size: var(--text-size-sm);
    background-color: var(--background-color);
    padding: 8px !important;
    margin: 0 !important;
  }

  .dropdown-menu {
    top: 10%;
  }

  header > .contact img[alt="icon"] {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  header > .contact img[alt="icon"]:not(.dropdown-menu img) {
    filter: var(--icons-color);
  }

  .filter,
  .hero {
    justify-content: center;
    align-items: center;
  }

  .filter {
    top: 8vh;
    flex-wrap: nowrap;
    padding: var(--py-lg) var(--px-lg);
  }

  .filter .search,
  .filter input {
    width: 100%;
  }

  section.heading:first-child {
    top: 8vh;
    padding: var(--px-sm) 0;
  }

  section.info > .stats > .stat > p {
    font-size: 9px;
  }

  .hero,
  .hero > .info > .about,
  section.overview,
  .facts,
  .cards {
    flex-direction: column !important;
  }

  section.gallery > .cards {
    flex-direction: row !important;
  }

  .hero > .info > .about > button,
  .card > .card-footer > button,
  .card-full > .info > p,
  .card-full > .info > button {
    width: 100%;
  }

  .card-sm {
    height: 2vh;
    aspect-ratio: 4 / 1;
  }

  .card-sm > .overlay {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .card-sm > .overlay > p {
    position: static;
    font-size: var(--text-size-lg);
    color: white;
  }

  .card-full {
    flex-direction: column-reverse;
  }

  .card-full > .thumb {
    height: 30vh;
    border-radius: var(--raduis-lg) var(--raduis-lg) 0 0;
  }

  section.loader {
    width: 100vw;
  }

  section.loader img {
    width: 50%;
  }

  .modal-container {
    height: 92vh;
    top: 8vh;
    z-index: 8;
  }

  .modal {
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding-bottom: 10vh;
  }

  .navbar {
    position: sticky;
    bottom: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: var(--py-sm) var(--px-lg);
    background-color: var(--background-color);
    border-top: 1px solid #00000019;
    box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .navbar > .link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5vh;
    flex-direction: column;
  }

  .navbar > .link > img {
    width: 25px;
    filter: var(--icons-color);
  }

  .navbar > .link > a {
    font-size: var(--text-size-sm);
  }

  .navbar > .link.active > a {
    color: var(--primary-color);
  }

  .navbar > .link.active > img {
    filter: invert(52%) sepia(91%) saturate(2890%) hue-rotate(1deg)
      brightness(98%) contrast(101%);
  }
}
