.section-contact {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  width: 33.6875rem;
  height: 39.25rem;
  margin-left: 3.75rem;
}

.section-contact__bg {
  position: relative;
  width: 33.6875rem;
  height: 39.25rem;
  border-radius: 1.5rem;
  overflow: hidden;
}

.section-contact__bg-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-contact__bg-image--mobile {
  display: none;
}

.section-contact__content {
  position: absolute;
  top: 1.75rem;
  left: 1.75rem;
  z-index: 5;
  max-width: 25rem;
}

.section-contact__title {
  margin: 0;
  max-width: 21rem;
  color: var(--White, #fff);
  font-family: "Google Sans", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.025rem;
}

.section-contact__button {
  display: inline-flex;
  height: 2.75rem;
  width: 13.44rem;
  padding: 0.875rem 1.75rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.25rem;
  border-radius: 999rem;
  background: var(--White, #fff);
  color: var(--Text-Title-Blue, #0897d8);
  font-family: "Google Sans", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.16);
}
.section-contact__button:hover{
    text-decoration: underline;
}

.section-contact__button-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

/* Mobile */
@media (max-width: 639px) {
  .section-contact {
    width: 100%;
    height: 28.6875rem;
    border-radius: 1.25rem;
    margin-left: 0;
  }

  .section-contact__bg {
    width: 100%;
    height: 28.6875rem;
  }

  .section-contact__bg-image {
    width: 100%;
    height: 28.6875rem;
    object-fit: cover;
  }

  .section-contact__bg-image--desktop {
    display: none;
  }

  .section-contact__bg-image--mobile {
    display: block;
  }

  .section-contact__content {
    top: 1.875rem;
    left: 1.25rem;
    right: 1.25rem;
    z-index: 5;
    max-width: 20.25rem;
  }

  .section-contact__title {
    max-width: 15rem;
    font-size: 1rem;
    line-height: 150%;
    letter-spacing: -0.02rem;
  }

  .section-contact__button {
    height: 2.5rem;

    padding: 0.875rem 1.5rem;

    font-size: 0.875rem;
  }
}
