html {
  font-family: Barlow, -apple-system, BlinkMacSystemFont, san-serif;
  line-height: 1.5;
  margin: 0;
  text-rendering: optimizeLegibility;
  -webkit-appearance: none;
  height: 100%;
  width: 100%;
}

body {
  margin: 0;
}

.wrapper {
  max-width: 1152px;
  padding: 0 2em;
  margin: 0 auto;
}
@media (max-width: 425px) {
  .wrapper {
    padding: 0 1em;
  }
}

h1, h2, h3, h4 {
  color: #330855;
  line-height: 1.3;
  margin: 0;
}

h1 {
  font-size: 2.625em;
  font-weight: 700;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 2.25em;
  }
}

h2 {
  font-size: 2.25em;
  font-weight: 700;
}

h3 {
  font-size: 1.375em;
  font-weight: 600;
}

h4 {
  font-size: 1.25em;
  font-weight: 600;
}

p {
  color: #797A85;
  font-size: 1.125em;
  margin-top: 0;
}

a {
  color: #78D3FF;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}
a .arrow svg * {
  fill: #78D3FF;
}
a:hover {
  color: #92DBFF;
}
a:hover .arrow {
  transform: translateX(2px);
}
a:hover .arrow svg * {
  fill: #92DBFF;
}
a:active {
  color: #68C0EB;
}
a:active .arrow svg * {
  fill: #68C0EB;
  margin-left: 1em;
}

.secondairybutton {
  color: white;
  background-color: #78D3FF;
  padding: 0 1em;
  border-radius: 4.5px;
  line-height: 48px;
  display: inline-block;
  font-weight: 500;
}
.secondairybutton:hover {
  color: white;
  background-color: #92DBFF;
}
.secondairybutton:active {
  background-color: #68C0EB;
}

.hero {
  min-height: 460px;
  background: transparent right 2em top 50% url(../img/illustration-updated.svg) no-repeat;
  background-size: 42%;
  margin-top: 6em;
}
@media (max-width: 768px) {
  .hero {
    background: none;
  }
}
@media (max-width: 425px) {
  .hero {
    margin-top: 4em;
  }
}
.hero .container {
  position: relative;
  max-width: 52%;
  transform: translateY(45%);
}
@media (max-width: 768px) {
  .hero .container {
    max-width: none;
    transform: none;
  }
}
.hero h1 {
  margin-bottom: 0.75em;
}
.hero p {
  font-size: 1.25em;
  max-width: 500px;
}
@media (max-width: 1024px) {
  .hero p {
    font-size: 1.125em;
  }
}
@media (max-width: 768px) {
  .hero p {
    max-width: none;
  }
}
.hero .background-image {
  visibility: hidden;
  display: none;
  margin: 6em auto;
  width: 100%;
  max-width: 560px;
}
@media (max-width: 768px) {
  .hero .background-image {
    visibility: visible;
    display: block;
  }
}
@media (max-width: 425px) {
  .hero .background-image {
    margin: 4em auto 6em auto;
  }
}

.form {
  text-align: center;
  margin-bottom: 7em;
}
.form form {
  display: flex;
  justify-content: center;
}
.form:last-child {
  padding-top: 5em;
}
.form h4 {
  color: #F99341;
  margin-bottom: 1em;
}
.form input::placeholder {
  color: #B7B9C8;
}
.form input:focus, .form button:focus {
  outline: none;
}
.form input:-webkit-autofill,
.form input:-webkit-autofill:hover,
.form input:-webkit-autofill:focus,
.form input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
}
.form input {
  font-size: 1.25em;
  caret-color: #78D3FF;
  color: #330855;
  width: 100%;
  border: none;
  outline: none;
  margin-right: -8px;
  margin-bottom: 1em;
  border-radius: 4.5px 0px 0px 4.5px;
  background-color: #FBFAFF;
  height: 64px;
  max-width: 336px;
  -webkit-appearance: none;
  padding: 0em 1em;
  font-family: Barlow, -apple-system, BlinkMacSystemFont, san-serif;
  float: left;
}
.form button {
  font-size: 1.25em;
  color: white;
  border-radius: 0px 4.5px 4.5px 0px;
  background-color: #F99341;
  height: 64px;
  font-family: Barlow, -apple-system, BlinkMacSystemFont, san-serif;
  font-weight: 500;
  border: none;
  text-align: center;
  padding: 1em;
  cursor: pointer;
  position: relative;
  float: right;
}
.form button:hover {
  background-color: #FE9C4D;
}
.form button:active {
  background-color: #F29041;
}
.form .checkmark {
  display: none;
}
.form .checkmark.draw:after {
  animation-duration: 400ms;
  animation-timing-function: ease;
  animation-name: checkmark;
  transform: scaleX(-1) rotate(135deg);
}
.form .checkmark:after {
  opacity: 1;
  height: 1em;
  width: 0.5em;
  transform-origin: left top;
  border-right: 3px solid white;
  border-top: 3px solid white;
  content: "";
  left: 60px;
  top: 32px;
  position: absolute;
}
@keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 0.5em;
    opacity: 1;
  }
  40% {
    height: 1em;
    width: 0.5em;
    opacity: 1;
  }
  100% {
    height: 1em;
    width: 0.5em;
    opacity: 1;
  }
}
.form p {
  font-size: 1em;
}

.brands {
  text-align: center;
  margin-bottom: 7.5em;
}
.brands h4 {
  margin-bottom: 2em;
}
.brands .logos {
  margin: 0 auto;
  max-height: 38px;
  overflow: hidden;
}
.brands .logos div {
  display: inline-block;
  vertical-align: middle;
  margin: 0px 32px;
}
@media (max-width: 768px) {
  .brands .logos div {
    margin: 0px 24px;
  }
}
@media (max-width: 425px) {
  .brands .logos div {
    margin: 0 16px;
  }
  .brands .logos .rectangular {
    display: none;
  }
}

.freelancers {
  display: flex;
  align-items: stretch;
}
@media (max-width: 768px) {
  .freelancers {
    flex-direction: column;
  }
}
.freelancers .left {
  margin-right: 4em;
  position: relative;
}
@media (max-width: 425px) {
  .freelancers .left {
    margin-right: 0;
  }
  .freelancers .left .long {
    display: none;
  }
}
.freelancers .left .scroll {
  position: sticky;
  position: -webkit-sticky;
  top: 4em;
  padding-bottom: 40em;
}
@media (max-width: 768px) {
  .freelancers .left .scroll {
    position: static;
    padding-bottom: 4em;
  }
}
.freelancers .left .scroll .short {
  display: none;
}
@media (max-width: 425px) {
  .freelancers .left .scroll .short {
    display: inline-block;
  }
}
.freelancers .left h2 {
  margin-bottom: 0.75em;
}
.freelancers .left p {
  margin-bottom: 1.5em;
}
.freelancers .left a {
  font-size: 1.125em;
}
.freelancers .left .arrow {
  margin-left: 0.5em;
  position: relative;
  top: -2px;
  display: inline-block;
  transition: 0.2s ease-in-out;
}
.freelancers .left .bottom {
  position: absolute;
  bottom: 0;
}
@media (max-width: 768px) {
  .freelancers .left .bottom {
    display: none;
  }
}
.freelancers .left .bottom h3 {
  font-weight: 700;
  margin-bottom: 1em;
}
.freelancers .left .bottom p, .freelancers .left .bottom a {
  font-size: 1em;
}
.freelancers .right h3 {
  margin-bottom: 0.75em;
}
.freelancers .right .profile {
  background-color: #FBFAFF;
  border-radius: 4.5px;
  padding: 1.5em;
  margin-bottom: 1.5em;
}
.freelancers .right .profile:last-of-type {
  margin-bottom: 0;
}
.freelancers .right .profile h4 {
  font-size: 1em;
  margin: 0 0 0.5em 0;
}
.freelancers .right .profile p {
  font-size: 1em;
  font-weight: 400;
  margin: 0;
}
.freelancers .right .more {
  font-size: 0.875em;
  color: #B7B9C8;
  text-align: center;
  margin-top: -1em;
  margin-bottom: 2em;
  padding: 0 1em;
}
.freelancers .right .more a {
  white-space: nowrap;
}
.freelancers .mobile {
  display: none;
  padding-top: 6em;
}
@media (max-width: 768px) {
  .freelancers .mobile {
    display: block;
  }
  .freelancers .mobile h3 {
    margin-bottom: 1em;
  }
}

.reviews {
  display: flex;
  align-items: stretch;
  margin: 7em auto;
}
@media (max-width: 768px) {
  .reviews {
    flex-direction: column;
    margin: 6em auto;
  }
}
.reviews .testimonial {
  margin-right: 4em;
}
@media (max-width: 768px) {
  .reviews .testimonial {
    margin: 0 auto 3em auto;
    max-width: 600px;
  }
}
.reviews .testimonial .photo {
  background-size: contain;
  margin: 0 auto 1em auto;
}
.reviews .testimonial p {
  font-size: 1em;
  font-style: italic;
  text-align: center;
  margin: 0;
}
.reviews .testimonial .name {
  color: #B7B9C8;
}
.reviews .testimonial:last-of-type {
  margin-right: 0;
}
@media (max-width: 768px) {
  .reviews .testimonial:last-of-type {
    margin: 0 auto;
  }
}

.footer {
  background-color: #330855;
  margin-bottom: 0;
  padding: 5em 2em 0 2em;
}
@media (max-width: 425px) {
  .footer {
    padding: 5em 1em 0 1em;
  }
}
.footer .credits {
  padding: 4em 0 1em 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.875em;
}
.footer .credits a {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

/*# sourceMappingURL=css/style.css.map */
