/* =======================================
   FONTS
======================================= */
@font-face {
  font-family: "nickson";
  font-weight: 400;
  font-style: normal;
  src: url(../fonts/nickson.otf) format("otf"), url(../fonts/nickson.woff) format("woff"), url(../fonts/nickson.woff2) format("woff2");
}
/* =======================================
   COLORS
======================================= */
/* =======================================
   GLOBALS
======================================= */
body {
  background: #B7E2E4;
  font-family: "adelphi-pe-variable", sans-serif;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

h1, h2, h3 {
  font-family: "nickson", serif;
  font-weight: 400;
  text-transform: uppercase;
  margin: 15px 0;
}

p {
  margin: 15px 0;
}

h1 {
  font-size: 72px;
  line-height: 100%;
  color: #D62929;
}

h2 {
  font-size: 38px;
  line-height: 110%;
}

h3 {
  font-size: 24px;
  line-height: 110%;
  margin: calc(15px * 2) 0 15px;
  letter-spacing: 1px;
}

ul {
  padding: 0 calc(15px * 2);
  font-weight: 400;
}
ul li:not(:last-child) {
  margin-bottom: 15px;
}
ul.check {
  margin-top: calc(15px * 3);
}
ul.check li {
  list-style: none;
  display: flex;
  align-items: center;
}
ul.check li::before {
  content: "";
  background: url(../img/check.svg) no-repeat center/cover;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-block;
  margin: 0 8px 0 -8px;
}

a {
  color: currentColor;
  font-weight: 600;
  transition: 0.3s ease-out;
}
a:hover {
  opacity: 0.6;
}

.button {
  background: #fff;
  color: #000;
  border: #fff 4px solid;
  border-radius: 36px;
  text-decoration: none;
  padding: 8px 16px;
  display: inline-flex;
  box-shadow: 0 0 0 2px #D62929 inset;
  font-weight: 500;
  align-items: center;
  gap: calc(15px / 2);
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease-out;
  font-family: "adelphi-pe-variable", sans-serif;
}
.button::after {
  content: "";
  background: currentColor;
  mask-image: url(../img/arrow.svg);
  -webkit-mask-image: url(../img/arrow.svg);
  mask-size: contain;
  -webkit-mask-size: contain;
  width: 16px;
  height: 16px;
}
.button.download::after {
  mask-image: url(../img/download.svg);
  -webkit-mask-image: url(../img/download.svg);
  width: 18px;
  height: 16px;
}
.button:hover {
  opacity: 1;
  background: #D62929;
  box-shadow: none;
  color: #fff;
}
.button.secondary {
  background: #D62929;
  color: #fff;
}
.button.secondary:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 0 2px #D62929 inset;
}

section, header, footer {
  padding: 0 15px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container .content {
  padding: calc(15px * 3) 0;
}
.container img {
  max-width: 100%;
  height: auto;
}

/* =======================================
   HEADER/FOOTER
======================================= */
header, footer {
  padding: 15px;
  height: 85px;
  display: flex;
  align-items: center;
}
header .container, footer .container {
  width: 100%;
  border-top: #D62929 3px solid;
  border-bottom: #D62929 3px solid;
  padding: 5px 0;
  max-width: 1380px;
}
header .container a, header .container p, footer .container a, footer .container p {
  flex: 1;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 20px;
  text-decoration: none;
  color: #000;
  letter-spacing: 1px;
  margin: 0;
}
header .container a:hover, footer .container a:hover {
  opacity: 1;
  color: #D62929;
}
header .container img, footer .container img {
  max-width: 33.3333%;
  margin: -30px 0;
}

/* =======================================
   SECTIONS
======================================= */
.hero {
  padding: calc(15px * 3) 15px;
}
.hero .container {
  gap: calc(15px * 2);
}
.hero .container .content {
  max-width: 750px;
  font-size: 32px;
  font-weight: 500;
}
.hero .container .content p {
  max-width: 540px;
}

.performance {
  background: #D62929;
  color: #fff;
  overflow: hidden;
}
.performance .container {
  gap: calc(15px * 2);
}
.performance .container .content {
  width: 580px;
}
.performance .container img {
  padding-top: 15px;
  margin-bottom: -50px;
  max-width: 50%;
}

.results {
  padding: 0;
  position: relative;
}
.results .container {
  gap: 0 calc(15px * 2);
  justify-content: flex-start;
}
.results .container .content {
  width: 580px;
  max-width: 50%;
  padding: calc(15px * 4) 15px;
}
.results .container .content h2 {
  color: #D62929;
}
.results .container img {
  max-width: 50%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.backing {
  background: #D62929;
  padding: calc(15px * 3) 15px;
  color: #fff;
}
.backing .container {
  gap: calc(15px * 2);
  justify-content: space-around;
}
.backing .container .content {
  max-width: 580px;
}
.backing .container .content .button {
  margin-top: 15px;
}

.contact {
  padding: calc(15px * 3) 15px;
}
.contact .container {
  padding: calc(15px * 2);
  background: #fff;
  flex-direction: column;
  align-items: flex-start;
  max-width: 800px;
}
.contact .container h2 {
  color: #D62929;
  margin: 0 0 15px;
}
.contact .container form {
  width: 100%;
}
.contact .container form *[aria-hidden] {
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact .container form .field {
  margin-bottom: 15px;
  position: relative;
}
.contact .container form .field label {
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  display: block;
}
.contact .container form .field input, .contact .container form .field textarea {
  padding: 12px 15px;
  border: 0px;
  border-bottom: #D62929 2px solid;
  font-size: 20px;
  font-weight: 400;
  width: calc(100% - calc(15px * 2));
  display: block;
  color: #000;
  font-family: "adelphi-pe-variable", sans-serif;
}
.contact .container form .field input::placeholder, .contact .container form .field textarea::placeholder {
  color: #000;
  font-weight: 500;
}
.contact .container form .field .error {
  background: #D62929;
  color: #fff;
  padding: calc(15px / 2);
  display: none;
}
.contact .container form .field .error.show {
  display: block;
}
.contact .container form .submitRow {
  text-align: center;
}

@media screen and (max-width: 900px) {
  header, footer {
    height: unset;
    position: relative;
  }
  header .container, footer .container {
    flex-direction: column;
    margin-top: calc(76px + calc(15px * 2));
  }
  header .container img, footer .container img {
    margin: 15px 0;
    order: 1;
    max-height: 76px;
    width: auto;
    position: absolute;
    top: 15px;
  }
  header .container a, footer .container a {
    order: 2;
  }
  section .container {
    flex-direction: column;
  }
  section .container .content {
    max-width: 100% !important;
    width: 100% !important;
  }
  .hero .container .content {
    order: 2;
    max-width: 1200px;
    padding: 0;
  }
  .results {
    overflow: hidden;
  }
  .results .container .content {
    order: 2;
    padding: 0 15px calc(15px * 3) !important;
    width: calc(100% - calc(15px * 2)) !important;
    max-width: calc(100% - calc(15px * 2)) !important;
  }
  .results .container img {
    max-height: unset;
    max-width: 130%;
    position: relative;
    margin-left: -100px;
  }
  .performance .container {
    align-items: center;
  }
  .performance .container .content {
    max-width: 1200px;
  }
  .performance .container img {
    max-width: 100%;
  }
}
@media screen and (max-width: 600px) {
  body, .button, input, textarea, input::placeholder, textarea::placeholder {
    font-size: 18px;
  }
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 20px;
  }
  .contact .container {
    padding: 15px;
  }
  header .container a {
    order: 2;
  }
  .hero .container .content {
    font-size: 26px;
  }
}
@media screen and (max-width: 800px) {
  .backing h2 {
    max-width: 500px;
  }
}
@media screen and (max-width: 550px) {
  .backing h2 {
    max-width: 315px;
  }
}/*# sourceMappingURL=style.css.map */