@font-face {
  font-family: "SourceCodePro";
  font-weight: 300;
  src: url("/assets/fonts/scp-300.woff2") format("woff2");
  font-display: fallback;
}

@font-face {
  font-family: "SourceCodePro";
  font-weight: 400;
  src: url("/assets/fonts/scp-400.woff2") format("woff2");
  font-display: fallback;
}

@font-face {
  font-family: "SourceCodePro";
  font-weight: 600;
  src: url("/assets/fonts/scp-600.woff2") format("woff2");
  font-display: fallback;
}

@font-face {
  font-family: "SourceCodePro";
  font-weight: 800;
  src: url("/assets/fonts/scp-800.woff2") format("woff2");
  font-display: fallback;
}

html {
  font-size: 62.5%;
  background-color: white;
  scroll-behavior: smooth;
}

html,
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
}

a,
button,
input {
  all: unset;
}

a,
button {
  cursor: pointer;
}

button {
  padding: 1.5rem 2rem;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

* {
  -webkit-transition: all 0.6s cubic-bezier(0.175, 0.885, 0.3, 1.1);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.3, 1.1);
  color: #181818;
  font-family: "SourceCodePro";
}

h1,
header {
  font-weight: 300;
}

h1 {
  margin: 1rem 0 clamp(0.5rem, 0.2rem + 3vw, 2.8rem) 0;
  font-size: clamp(3.2rem, 1rem + 3vw, 5.2rem);
}

h2 {
  margin: 1rem 0 clamp(0.5rem, 0.2rem + 3vw, 2.8rem) 0;
  font-size: clamp(3rem, 1rem + 3vw, 5rem);
  font-weight: 300;
}

.header {
  color: #181818;
  font-weight: bolder;
  margin: 1rem 0 1.5rem 0;
  font-size: clamp(1.8rem, 1rem + 3vw, 2.2rem);
}

p {
  font-size: clamp(1.6rem, 0.6rem + 1vw, 1.8rem);
  color: #606060;
  margin: 0 auto;
  margin-bottom: 2rem;
  max-inline-size: 80ch;
}

img {
  inline-size: 100%;
  max-inline-size: 100%;
  block-size: auto;
  display: block;
}

.splide__pagination__page.is-active {
  background-color: #62e4e2 !important;
}

.splide__arrow {
  background-color: white !important;
  border: none;
  height: 4rem !important;
  width: 4rem !important;
  top: 130px !important;
  padding: 10px !important;
}

.splide__arrow--prev {
  left: -30px !important;
}

.splide__arrow--prev svg {
  margin-bottom: 10px;
  margin-right: -10px;
  top: 3px !important;
  left: 10px !important;
}

.splide__arrow--next {
  right: -30px !important;
}

.splide__arrow--next svg {
  margin-bottom: 10px;
  margin-left: -10px;
  top: 3px !important;
  left: 2px !important;
}

.splide__arrow svg {
  width: 4rem !important;
  height: 4rem !important;
}

.splide__pagination {
  display: none;
}

.social-networks-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-inline-size: 380px;
  margin: auto;
}

.social-networks-inline a {
  padding: 2rem;
}

.social-networks-inline a img {
  height: 3rem;
  width: 3rem;
}

section {
  text-align: center;
}

@-webkit-keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@-webkit-keyframes blink {
  from,
  to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@keyframes blink {
  from,
  to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

.underline-primary {
  border-bottom: 0.5rem solid #62e4e2;
}

@media only screen and (min-width: 768px) {
  .underline-primary {
    border-bottom: 0.8rem solid #62e4e2;
  }
}

.w-600 {
  font-weight: 600;
}

.w-800 {
  font-weight: 800;
}

.limitted {
  max-inline-size: 1280px;
  margin: auto;
}

.bolder {
  font-weight: bolder;
}

.d-inline-block {
  display: inline-block;
}

.btn {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.6rem;
  color: #181818;
  border-radius: 2.5rem;
  border-bottom-left-radius: 0.5rem;
  border: 2px solid transparent;
  -webkit-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.3, 1.1);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.3, 1.1);
}

.btn:hover {
  background-color: white;
}

.btn.btn-primary {
  background-color: #62e4e2;
}

.btn.btn-primary:hover {
  background-color: white;
  border: 2px solid #62e4e2;
}

.btn.btn-secondary {
  background-color: #ffe200;
}

.btn.btn-secondary:hover {
  background-color: white;
  border: 2px solid #ffe200;
}

.btn.btn-icon {
  background-color: transparent;
  border: 2px solid #181818;
  border-radius: 100%;
  border-bottom-left-radius: 0;
}

.btn:disabled {
  pointer-events: none;
  color: #b7b7b7;
  background-color: #f2f2f2;
}

.control {
  position: relative;
}

.control input {
  width: 100%;
  margin: 1.9rem 0;
  border-bottom: 1px solid white;
  -webkit-padding-start: 0.25rem;
          padding-inline-start: 0.25rem;
  padding-bottom: .75rem;
  padding-top: .25rem;
  color: white;
  font-size: 1.7rem;
  text-align: start;
}

.control label {
  pointer-events: none;
  position: absolute;
  left: 0.25rem;
  top: 2.25rem;
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
}

.control input:focus + label,
.control input:valid + label {
  top: 0rem;
}

.header-space {
  padding-top: 75px;
}

main {
  padding: 0 15px;
  padding-bottom: 120px;
  text-align: center;
}

main h1 {
  margin-bottom: 25px;
}

main .request-fill {
  color: #606060;
}

main .request-fill a {
  border-bottom: 1px solid #606060;
}

main .success-message {
  display: none;
}

main .success-message p {
  margin-bottom: 48px;
}

main .success-message .btn-secondary {
  padding: 1.2rem 2.25rem;
}

main .success-message.show {
  display: block;
  -webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  margin-top: 80px;
}

main form {
  margin: 6rem auto 0 auto;
}

main form .controls .control {
  margin: 1rem 0;
}

main form .controls .control input {
  color: #181818;
  font-weight: 500;
  border-bottom: 1px solid #181818;
}

main form .controls .control label {
  font-size: clamp(1.6rem, 1rem + 1vw, 2rem);
  color: #181818;
}

main form .controls .control input:focus + label,
main form .controls .control input:valid + label {
  font-weight: 300;
  font-size: clamp(1.2rem, 1rem + 1vw, 1.6rem);
}

@media only screen and (min-width: 768px) {
  main form .controls {
    margin: 8rem auto 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  main form .controls .control {
    -webkit-box-flex: 25%;
        -ms-flex: 25%;
            flex: 25%;
    margin: 1rem 4rem;
  }
  main form .controls .control.full {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

main form .controls .just-validate-error-label {
  color: #CC0033 !important;
  font-size: 14px;
  font-style: italic;
  line-height: 18px;
  text-align: left;
  margin-top: -8px;
}

main form.hidden {
  display: none;
}

main .actions {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(1.6rem, 1rem + 1vw, 2rem);
  margin: 0 4rem;
}

main .actions .attach {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2.5rem;
}

main .actions .attach button {
  margin-left: 1.5rem;
}

main .actions button {
  margin: 0 10px;
}

@media only screen and (min-width: 768px) {
  main .actions {
    margin-top: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

#main.hidden {
  display: none;
}

footer .footer-wrapper {
  padding-top: 0;
}

footer .footer-wrapper .left-content p {
  margin: 30px 0;
  font-weight: 300;
}

footer .footer-wrapper .left-content .contact-wrapper a.btn-primary {
  padding: 1.2rem 2.25rem;
  margin-bottom: 0;
}

footer .footer-wrapper .left-content .contact-wrapper a.btn-primary:hover, footer .footer-wrapper .left-content .contact-wrapper a.btn-primary:focus {
  background-color: transparent;
}

@media only screen and (min-width: 768px) {
  .header-space {
    padding-top: 100px;
  }
  footer .footer-wrapper .left-content p {
    text-align: start;
    margin: 40px 0;
    max-width: 55ch;
  }
}

.hidden-attachment {
  visibility: hidden;
}

header nav .top .desktop-links a.btn.btn-primary {
  background-color: #FFE200;
}

header nav .top .desktop-links a.btn.btn-primary:hover, header nav .top .desktop-links a.btn.btn-primary:focus {
  background-color: transparent;
  border-color: #FFE200;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*# sourceMappingURL=contact-us.css.map */