@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;
}
/*# sourceMappingURL=style.css.map */