
.gallery-4-cols { 
  display: block;
  grid-template-columns: repeat(4, 1fr);
}
.grid-2-cols {
  grid-template-columns: repeat(2, 1fr);
}
.gallery-2-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.w {
  width: 100%;
  height: 100%;
}
.hidden {
  display: none;
}
.desk {
  display: none;
}
.mobile {
  display: block;
}
.absolute {
  position: absolute;
  top: 0;
  z-index: -1;
  min-height: fit-content;
  overflow: hidden;
  width: 100%;
}

@media (min-width: 750px) {
  html {

    font-size: 67.5%;
  }
}

@media (min-width: 1000px) {
   
  .gallery-2-cols {
    grid-template-columns: repeat(4, 1fr);
  }
  .desk {
    display: block;
  }
  .mobile {
    display: none;
  }
  html {
    font-size: 75%;
  }
  .hero-heading {
    width: 100%;
  }
  .header-img {
    height: 100vh;
  }
  .hero-section {
    margin-top: -8rem
  }
 
  /* .nav-bar {
    position: absolute;
    top: 20%;
    left: 5%;
    background-color: var(--white);
  }
  
  .nav-bar {
    width: 82.5%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 4rem 4rem;
  }
  .nav-bar:after {
    content: "";
    border-bottom: 5rem solid white;
    border-left: 5rem solid transparent;
    top: -5rem;
    right: 0;
    position: absolute;
  }
  
  .nav-bar a {
    color: var( --dark-g-blue);

  }
  .CTA-contact {
    display: inline-block;
    padding: 2rem 4rem;
    background-color: rgb(255, 197, 8);
  } */
}

@media (min-width: 1200px) {
  .grid-2-cols {
    display: grid;
  }
  .tesimonials-container {
    flex-direction: row;
    height: 90vh;
  
  }

  .testimonial:not(:last-child) {
    margin-bottom: 0;
  }
  .testimonial:last-child {
    margin-bottom: 0;
  }
  .testimonial-header {
    margin: 0;
  }
  .test-text {
    margin-bottom: 10rem;
  }
  .left-col {
    grid-column: 1 ;
    grid-row: 1;
  }

  .mobile-nav-bar {
    display: none;
  }
  .nav-bar {
    display: flex;
  }
  .article {
    align-items: flex-start;
    text-align: left;
  }
  .article-overlay {
    height: calc(100vw / 2);
  }
  .article-overlay p {
    width: 50%;
  }
  .test-job {
    font-size: 1.6rem;
  }
  .test-text, .test-name {
    font-size: 2rem;
  }
  .tesimonials-container {
    padding: 0 20rem;
  }
}