@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
.flow .steps .step-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .flow .steps .step-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.8rem;
  }
}
.flow .steps .step-contact__child {
  width: 51.6rem;
}
@media screen and (max-width: 768px) {
  .flow .steps .step-contact__child {
    width: 100%;
  }
}
.flow .steps .step-contact__child .contact-button {
  text-align: center;
  width: 100%;
}
.flow .steps .step-contact__child .contact-button a {
  width: 100%;
  color: #ffffff;
  font-size: 2rem;
  padding: 2.2rem 2.4rem;
  border-radius: 4.5rem;
  position: relative;
  -webkit-box-shadow: 0px 0.4rem 0.75rem rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0.4rem 0.75rem rgba(0, 0, 0, 0.25);
  background-image: -webkit-gradient(linear, left top, right top, from(#0078D7), color-stop(50%, #0099EB), to(#0078D7));
  background-image: -webkit-linear-gradient(left, #0078D7 0%, #0099EB 50%, #0078D7 100%);
  background-image: linear-gradient(90deg, #0078D7 0%, #0099EB 50%, #0078D7 100%);
  background-size: 200%;
  background-position: left center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.flow .steps .step-contact__child .contact-button a:hover, .flow .steps .step-contact__child .contact-button a:focus-visible {
  background-position: right center;
}
.flow .steps .step-contact__child .contact-button a:active {
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
  background-position: center;
}
@media (prefers-reduced-motion: reduce) {
  .flow .steps .step-contact__child .contact-button a {
    -webkit-transition: none;
    transition: none;
  }
}
@media screen and (max-width: 768px) {
  .flow .steps .step-contact__child .contact-button a {
    font-size: 2.8rem;
    padding: 3.2rem 1rem;
    border-radius: 6rem;
  }
}
.flow .steps .step-contact__child .contact-button a .text {
  position: relative;
}
.flow .steps .step-contact__child .contact-button a .text.mail-icon::before {
  content: url(/ftth/withflets/assets/images/pages/step/icon-mail.svg);
  width: 1.95rem;
  height: 1.5rem;
  margin-right: 1rem;
}
.flow .steps .step-contact__child .contact-button a .text.tel-icon::before {
  content: url(/ftth/withflets/assets/images/pages/step/icon-tel.svg);
  width: 1.875rem;
  height: 1.875rem;
  margin-right: 1rem;
}
.flow .steps .step-contact__child .contact-button a .arrow {
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.flow .steps .step-contact__child .contact-button a:hover .arrow {
  right: 1.5rem;
}