.contact-wrapper {
  padding: 8rem 3rem;
}

.contact {
  width: 100%;
  max-width: var(--max-screen-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 5.5rem;
  box-sizing: border-box;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 45%;
  box-sizing: border-box;
}

.contact-left-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact .form {
  width: 55%;
  min-width: unset;
}

.contact-left-title {
  font-size: 3.5625rem;
  line-height: 4.0625rem;
  color: var(--main-text-color);
}

.contact-left-title--bold {
  font-weight: var(--font-weight-bold);
}

.contact-left-description {
  font-size: var(--font-size-xxl);
  line-height: 2.625rem;
  color: var(--placeholder-color);
  margin: 0.5rem 0;
}

.contact-left-location {
  border: 1px solid var(--border-color);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  display: flex;
  gap: 1.75rem;
}

.contact-left-location-city {
  font-size: 2.0625rem;
  line-height: 3.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--main-text-color);
}

.contact-left-location-address {
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: var(--main-text-color);
}

.contact-left-image {
  margin-top: 3.5rem;
}

.contact-right-title {
  color: var(--blue);
  font-size: 2.0625rem;
  line-height: 3.125rem;
  font-weight: var(--font-weight-bold);
}

/*Responsive*/
@media only screen and (max-width: 1366px) {
  .contact-wrapper {
    padding: 5rem 3rem;
  }

  .contact {
    gap: 3rem;
  }
}

@media only screen and (max-width: 1200px) {
  .contact-wrapper {
    padding: 4rem 1.5rem;
  }
}

@media only screen and (max-width: 1080px) {
  .contact {
    flex-direction: column;
  }

  .contact-left {
    width: 100%;
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
  }

  .contact-left > img {
    width: 40%;
    margin-top: 0;
  }

  .contact .form {
    width: 100%;
  }
}

@media only screen and (max-width: 960px) {
  .contact-left {
    flex-direction: column;
  }

  .contact-left > img {
    width: unset;
    max-width: 25rem;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  .contact-left-title {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .contact .form {
    padding: 3rem 1.5rem;
  }

  .contact-wrapper {
    padding: 4rem 0;
  }

  .contact-left {
    padding: 0 1.5rem;
  }
}

@media only screen and (max-width: 480px) {
  .contact-left {
    padding: 0 1rem;
  }

  .contact .form {
    padding: 3rem 1rem;
  }

  .contact-left-location {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }

  .contact-left-location-city {
    margin-bottom: 0.5rem;
  }
}
