
@media only screen and (max-width: 900px) {

/* NAV BAR SECTION */
  .nav-logo {
    width: 95px;
    height: 105px;
  }

  .nav-wrapper ul {
    display: none;
  }

  
  .topnav {
    position: absolute;
    z-index: 2000;
    padding: 0px 20px;
    top: 20px;
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }
        
  #myLinks {
    position: absolute;
    top: 60px;
    right: 0;
    display: none;
    text-align: center;
    width: 100%;
    border-top: 2px solid var(--accent_color);
    background-color: var(--main_color);
  }

  #myLinks li a {
    color: var(--light_color);
  }

  #myLinks li a:hover{
    color: var(--accent_color);
  }

  .topnav a {
    color: var(--accent_color);
    padding: 14px 14px;
    text-decoration: none;
    font-size: 17px;
    display: block;
  }

 
  .topnav a.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }

  .topnav a:hover {
    background-color: var(--main_color_op60);
    color: var(--accent_color_light);    
  }

/* HERO SECTION */
  .hero-container {
    width: 100%;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 0px;
  }

  .hero-wrapper {
    margin-top: 0px;
    flex-direction: column;
    padding-bottom: 30px;
  } 

  .hero-info-container {
    width: 100%;
  }

  .hero-img-container {
    width: 100%;
    height: auto;
    position: absolute;
    margin-top: -15px;
    justify-content: center;
  }

  .hero-img-container img {
    width: 300px;
    margin-top: -12px;
    transform: rotate(-90deg);
  }

  .hero-info-container-text {
    margin-left: 0px;
    margin-top: 200px;
    justify-content: center;
  }

  .hero-info-container h1{
    width: 100%;
    font-size: var(--font_small_h1);
    margin-top: 70px;
    text-align: center;
  }
    
  .hero-info-container p {
    width: 100%;
    font-size: var(--font_small_p);
    justify-content: center;
    text-align: center;
  }

  .hero-btn {
    width: 200px;
    font-size: var(--font_medium_p);
  }

  .hero-info-container-btn {
  justify-content: center;
  }

  .hero-info-container-btn a{
    margin-left: 0px;
  }

/* SERVICES SECTION */
  .services-wrapper h2{
    width: 100%;
    text-align: center;
    padding-bottom: 50px;
    font-size: var(--font_medium_h2);
    padding-left: 0px;
  }
           
  .services-cards {
    justify-content: center;
  }

  .service-card {
    width: 350px;
    height: 500px;
    padding-bottom: 20px;
  }

  .service-card-info h3 {
    font-size: var(--font_medium_h3);
  }

  .service-card-info p {
    font-size: var(--font_xsmall_p);
  }

  /* CLIENT SECTION */

  .client-review {
    width: 350px;
    height: 230px;
  }

  .client-wording {
    width: 100%;
    text-align: center;
    
}

  .client-wording h2 {
    width: 80%;
    font-size: var(--font_medium_h2);
  }
      
  .ratings {
    width: 80vw;
  }

  .ratings img {
    width: 15px
  }

  .client-text p {
    font-size: var(--font_xsmall_p);
  }

/* CONTACT SECTION */
  .contact-container {
    width: 100%;
    flex-direction: column;
  }

  .contact-wrapper {
    width: 100%;
  }
      
  .contact-paragraph {
    justify-content: center;
    margin-top: 0px;
  }

  .contact-text h4 {
    font-size: var(--font_large_h2);
  }

  .contact-paragraph p {
  font-size: var(--font_small_p);
  width: 70%;
  }

  .contact-info {
    margin-top: 0px;
  }

  .contact-number a, .contact-email a {
  font-size: var(--font_small_p);
  padding-left: 10px;
}

  .form-wrapper {
    width: 100%;
  }

  .form-header h2 {
  font-size: var(--font_medium_h2);
}



  /* GALLERY SECTION */

  .gallery-wording h2 {
    font-size: var(--font_medium_h2);
}


    .gallery-imgs img {
    width: 80%;
    border-radius: 10px;
  }

  /* ABOUT SECTION */

  .about-wording h2 {
  font-size: var(--font_medium_h2);
}

.about-wording p {
    font-size: var(--font_small_p);
}

}



