/* ================================================================== */
/* =========================== MEDIA QUERIES ======================== */
/* ================================================================== */
/* 
  - phone         // 600px  == 37.5 em
  - tab-port      // 900px  == 56.25em
  - tab-land      // 1200px ==  75  em
 */

@media screen and (max-width: 92.5em) {
  /*! ================================================= */
  .team__container {
    grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  }
}
@media screen and (max-width: 75em) {
  .section-header .logo {
    height: 3.75rem;
  }
  .section-hero {
    min-height: 32rem;
  }

  .menu__container {
    min-height: 32rem;
  }
  .section-story {
    padding: 3.125rem 1rem;
  }
  .story__description-container {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
  .story__container {
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.25rem;
  }
  .story__description-container,
  .story__img-container {
    flex: 1;
  }
}
@media screen and (max-width: 56.25em) {
  .navigation-standout__link,
  .navigation-list,
  .navigation-toggle {
    display: none;
  }
  .navigation-standout__icons {
    margin: 0;
  }
  .mobile-navigation-toggle {
    display: block;
    position: relative;
    cursor: pointer;
    width: 2rem;
    height: 1rem;
    margin-left: 1.5rem;
  }
  .mobile-navigation-toggle:hover {
    color: var(--accent-color-400);
  }
  .mobile-navigation-toggle__line {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 2.5rem;
    height: 0.175rem;
    z-index: 99;
    transition: all 1s ease-in-out;
    background-color: currentColor;
  }
  .mobile-navigation-toggle__line:nth-child(1) {
    top: 0;
    right: 0;
  }
  .mobile-navigation-toggle__line:nth-child(2) {
    top: 50%;
    left: -50%;
    transform: translate(25%, -50%);
  }
  .mobile-navigation-toggle__line:nth-child(3) {
    bottom: 0;
    right: 0;
  }

  .mobile-navigation {
    display: block;
    background-color: #fff;
    overflow: hidden;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 9999;
    padding-top: 5rem;

    animation: fadeIn 0.5s ease-in-out;
  }
  .mobile-navigation-list {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1.25rem;
  }
  .mobile-logo {
    align-self: center;
    display: block;
    max-width: 6.25rem;
    aspect-ratio: 25/16;
  }
  .mobile-logo--img {
    width: 100%;
    height: 100%;
  }
  .mobile-navigation-list__items {
    padding: 0;
    margin: 1.25rem 2.5rem;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .mobile-navigation-list__item {
    padding-bottom: 0.5rem;
    font-size: 1.125rem;
    border-bottom: 1px dashed var(--accent-color-300);
    transition: all 0.3s ease-in-out;
  }
  .mobile-navigation-list__item:hover,
  .mobile-navigation-list__item.active {
    color: var(--accent-color-300);
  }
  .mobile-navigation-list__item a {
    width: 100%;
    display: block;
  }

  .close-menu {
    font-family: var(--Halimun-font);
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 9999;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    color: #818181;

    transition: all 0.3s ease-in-out;
  }
  .close-menu:hover {
    color: #578cbb;
  }

  /* ================================================= */
  .section-hero {
    min-height: 25rem;
  }
  .section-footer {
    padding-top: 0;
  }

  /*! ================================================= */
  .contact__form {
    width: 80%;
    grid-template-columns: 1fr;
  }
  /*! ================================================= */
  .section-about {
    padding: 3.125rem 1rem;
  }
  .section-about__container {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, max-content);
    column-gap: 0;
    row-gap: 3rem;
    /* justify-items: center; */
    /* align-items: center; */
    /* justify-content: center; */
  }
  .about__content-1 {
    grid-row: 2 / 3;
  }
  .about__content-2 {
    grid-row: 4 / -1;
  }
  .about__img-1 {
    grid-row: 1 / 2;
  }
  .about__img-2 {
    grid-row: 3 / 4;
  }

  /*! ================================================= */
  .section-about__hero {
    flex-direction: column;
  }
  .section-about__hero__image {
    max-width: 80%;
  }
}

/*! ================================================= */
/*! ================================================= */
/*! ================================================= */
@media screen and (max-width: 37.5em) {
  .section-services .service-container {
    width: 100%;
  }

  .banner__description {
    width: 60%;
    margin: 0 auto;
  }
  .menu__container {
    min-height: auto;
    padding: 2rem;
  }

  .section-video {
    height: 44rem;
  }
  .video__text,
  .video__text span {
    font-size: 1.375rem;
  }

  .section-location .location__container {
    width: 100%;
    gap: 2rem;
  }
}
