@media (max-width: 1550px) {
  /**********************************
      Testimonials Section
************************************/
  .testimonials-section {
    padding: 14rem 5rem;
    background-color: #20241b;
    position: relative;
  }

  .testimonial-image {
    width: 100%;
    max-width: 60rem;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .testimonial-image-holder.holder-1 {
    display: none;
  }

  .testimonial-image-holder {
    position: relative;
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    background-color: #d4572f;
  }

  .testimonial-button {
    display: none;
  }

  .testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 65rem;
    padding: 1.5rem 2rem;
    width: 100%;
    margin-top: 30px;
    display: flex;
    gap: 3rem;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s ease, opacity 0.5s ease;
    background-color: transparent;
    box-sizing: border-box;
  }

  .testimonial-card.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    z-index: 2;
  }

  .testimonial-container {
    border-bottom: solid 3px #fff;
    border-top: #fff solid 3px;
    position: relative;
    width: 100%;
    max-width: 1000px;
    max-height: 450px;
    overflow: hidden;
    background-color: transparent;
    margin-left: auto;
    margin-right: auto;
    margin-top: 12rem;
  }
}

/**********************************
      Contact Section
************************************/
.contact-section {
  background-color: #d4572f;
  padding: 14rem 2rem;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;
  align-items: flex-start;
}

.contact-form-title {
  font-size: 5.2rem;
  font-family: "Anton";
  text-transform: uppercase;
  color: #fff;
  z-index: 5;
}

.contact-form label {
  font-weight: bold;
  color: #20241b;
  margin-bottom: 0.3rem;
  display: block;
  font-size: 1.2rem;
  font-family: "Inter";
}

.white-color {
  color: #20241b;
}

.grid-left-column {
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
  align-self: flex-start;
}

.left-column-text-lorem {
  font-size: 1.2rem;
  line-height: 1.2;
  font-family: "Inter";
  color: #20241b;
  font-weight: 400;
  text-transform: uppercase;
}

.about-btn.form-submit-button {
  background-color: #20241b;
  color: #fff;
  width: auto;
  align-self: self-start;
  border: none;
}

.about-btn.form-submit-button:hover {
  background-color: #fff;
  color: #d4572f;
  box-shadow: 0 10px 20px rgba(13, 13, 13, 0.9);
  transform: translateY(-4px);
  transition: all 0.3s ease;
}
/**********************************
      Contact Section End
************************************/

/**********************************
      Footer Section
************************************/
.footer-section {
  background-color: #f4efe8;
  padding: 7.5rem 5rem 2rem 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  justify-items: center;
  max-width: 50rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.column-2 {
  grid-column: 1 / 2;
}

.column-3 {
  grid-column: 2 / 3;
}

.footer-text {
  font-family: "Inter";
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #20241b;
  font-weight: bolder;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-family: "Inter";
  color: #20241b;
  font-size: 1.1rem;
  text-transform: capitalize;
  position: relative;
  padding: 0.5rem;
}

/* Animation Underline */
.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #d4572f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer-link:active,
.footer-link:hover {
  color: #d4572f;
}

.footer-link:hover::after {
  transform: scaleX(1);
}

.footer-link.colored {
  color: #d4572f;
}

.copyright-line {
  border: 0.4px solid rgba(212, 88, 47, 0.336);
  width: 100%;
  margin-top: 7.5rem;
}

.copyright-wrapper {
  display: flex;
  text-align: center;
  align-items: center;
  gap: 7px;
  width: 100%;
}

.copyright-text {
  font-family: "Open Sans";
  margin-top: 16px;
}

.footer-logo {
  display: none;
}
