/* Large Desktop Displays */
@media screen and (min-width: 1450px) {
  .container {
    margin: 0 auto;

    display: flex;
    flex-direction: column;

    width: 62.20428%;
    max-width: 62.20428%;

    min-height: 100%;
  }

  .container-large {
    width: 85.4166667% !important;
    max-width: 85.4166667% !important;
  }

  .container-center {
    align-items: center;
    text-align: justify;
    text-align-last: center;
  }

  .container-center-center {
    align-items: center;
    justify-content: center;
    text-align: justify;
    text-align-last: center;
  }

  section h1 {
    font-size: 4.5rem;
    font-family: "Syne", sans-serif;
  }

  #services h1 {
    padding-top: calc(10.5rem + 1px) !important;
    width: 100%;
    text-align: center;
    margin-top: 0;
    padding-bottom: 0;
  }

  #partner-container h1 {
    padding-top: calc(8.5rem + 1px) !important;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light);
    width: 100%;
    text-align: center;
    margin-top: 0;
  }

  #find-us h1 {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light);
    width: 100%;
    text-align: center;
    margin-top: 0;

    font-size: 10rem;
  }

  section p {
    font-size: 1.5rem;
    line-height: 3rem;
    font-family: "Metropolis", sans-serif;
  }

  /* NAV */
  /* ============================== */
  nav .container {
    border-bottom: 1px solid var(--light);

    width: 85.4166667vw !important;
    max-width: 85.4166667vw !important;
  }

  ul.nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
    width: 100%;

    list-style: none;

    padding: 0;
    margin: 0;
  }

  .nav-item .nav-link {
    display: block;
    text-decoration: none;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--medium-gray);

    padding: 2.5rem 0;

    transition: color 0.3s ease;
  }

  .nav-item .nav-link:hover {
    color: var(--light-gray);

    padding: 2.5rem 0;

    transition: color 0.3s ease;
  }

  /* ============================== */

  /* HEADER SECTION */
  /* ============================== */
  header {
    margin: auto;
    display: grid;
    place-items: center;

    min-width: 100%;
    min-height: 100vh;

    position: relative;
  }

  header video {
    width: 100%;
    height: 100%;
    object-fit: cover;

    user-select: none;
    pointer-events: none;
  }

  .video-bg-overlay,
  .bg-dark-overlay {
    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;
  }

  #home-logo {
    width: 360px;
  }
  /* ============================== */

  /* ABOUT  */
  /* ============================== */
  #about {
    min-width: 100%;
    min-height: 100vh;

    position: relative;

    color: var(--light);
  }
  /* ============================== */

  /* SERVICES */
  /* ============================== */
  .table-col:first-child {
    font-size: 1.5rem;
  }

  .table-col:nth-child(2) {
    font-size: 1.8rem;
  }

  .table-col:nth-child(3) {
    font-size: 1.5rem;
  }
  /* ============================== */

  /* PARTNERS */
  /* ============================== */
  #our-partners {
    min-width: 100%;
    min-height: 100vh;

    position: relative;

    color: var(--light);
  }

  #partner-container {
    align-items: center;
    justify-content: center;
    text-align: justify;
    text-align-last: center;
  }

  .partner-list {
    list-style: none;
    width: 60vw;
    height: auto;
    padding: 0;
    margin: 0;

    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-column-gap: 0.5rem;
  }

  .partner-item {
    display: grid;
    place-items: center;
  }

  .partner-item img {
    max-height: 150px !important;
    object-fit: contain;

    filter: grayscale(1) invert(1);

    transition: all 0.3s ease;
  }

  .partner-item img:hover {
    transform: scale(1.1);
    filter: none;
  }
  /* ============================== */

  /* CONTACT */
  /* ============================== */
  #find-us {
    min-width: 100%;
    min-height: 100vh;

    position: relative;

    color: var(--light);
  }

  #contact-container {
    width: 100%;

    align-items: start !important;
  }

  .contact-item {
    display: flex;
    flex-direction: column;

    font-size: 1.125rem;
    line-height: 2.25rem;
    text-align: justify;
  }

  .contact-item:first-child {
    width: 26rem;
  }

  .contact-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }

  .contact-item span {
    display: block;
  }

  .social-media-container {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .social-media-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--light);
    border-radius: 100rem;
  }

  .social-media-item span:first-child {
    font-weight: 700;
  }

  .email-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--light);
    border-radius: 2rem;
    flex: 1;
  }

  .email-container span:first-child {
    font-weight: 700;
    border-bottom: 1px solid var(--light);
    display: block;
    text-align: center;
    width: 100%;
    padding-bottom: 0.5rem;
  }
  /* ============================== */
}
