/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: GothamLight;
  src: url("/styles/webfonts/GothamSSm-Light_Web.woff2") format("woff2"), url("/styles/webfonts/GothamSSm-Light_Web.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: GothamBook;
  src: url("/styles/webfonts/GothamSSm-Book_Web.woff2") format("woff2"), url("/styles/webfonts/GothamSSm-Book_Web.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: SSPLight;
  font-style: normal;
  font-weight: 300;
  src: url("/styles/webfonts/source-sans-pro-v13-latin-300.woff2") format("woff2"), url("/styles/webfonts/source-sans-pro-v13-latin-300.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: SSPSemibold;
  font-style: normal;
  font-weight: 600;
  src: url("/styles/webfonts/source-sans-pro-v13-latin-600.woff2") format("woff2"), url("/styles/webfonts/source-sans-pro-v13-latin-600.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

body {
  position: relative;
  margin: 0;
  background: #F5F0EE;
  font-size: 21px;
  font-family: SSPLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.5px;
}

h2 {
  font-family: GothamBook, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 47px;
  font-weight: normal;
  margin-bottom: 3.8rem;
}
h2:after {
  content: "";
  display: block;
  position: relative;
  background: #E83F4E;
  width: 70px;
  height: 5px;
  top: 25px;
}

ol {
  padding: 0;
}

p + p {
  margin-top: 28px;
}

a {
  color: #E83F4E;
}

img {
  max-width: 100%;
}

header,
section,
footer {
  clear: both;
}
header > div,
section > div,
footer > div {
  margin: 0 auto;
  padding: 80px 60px;
}
@media (max-width: 768px) {
  header > div,
  section > div,
  footer > div {
    padding: 40px 20px;
  }
}
header > div,
section > div,
footer > div {
  max-width: 1060px;
}

section:nth-child(even) {
  background: #F9F7F7;
}

header#introduction > div {
  padding: 115px 60px;
  position: relative;
}
@media (max-width: 768px) {
  header#introduction > div {
    padding: 60px 20px 80px;
  }
}
header#introduction p {
  padding: 110px 0;
}
@media (max-width: 768px) {
  header#introduction p {
    padding: 60px 0 0;
  }
}
header#introduction p {
  font-family: GothamLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 32px;
  line-height: 1.422222222;
}
header#introduction .top-links {
  position: absolute;
  top: 16px;
  right: 0;
  display: inline-flex;
  gap: 6px;
  padding: 8px;
  background-color: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  header#introduction .top-links {
    position: static;
    margin-bottom: 24px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
header#introduction .top-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background-color: rgba(248, 248, 248, 0.9);
  color: rgb(217.8976744186, 26.1023255814, 43.1255813953);
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 150ms ease-in-out, color 150ms ease-in-out;
}
header#introduction .top-link:hover {
  background-color: rgba(233, 233, 233, 0.95);
  color: rgb(181.4623255814, 21.7376744186, 35.9144186047);
}
header#introduction .top-link.is-active {
  background-color: rgba(232, 63, 78, 0.12);
  color: rgb(199.68, 23.92, 39.52);
}
header#introduction .top-link[aria-disabled=true] {
  opacity: 0.7;
  cursor: default;
}

#process,
#clients {
  background: #F5F0EE;
}

@media (min-width: 768px) {
  #process header,
  #booking header,
  #contact header {
    display: flex;
    align-items: flex-start;
  }
}
#process header h2,
#booking header h2,
#contact header h2 {
  flex-basis: 39.5833332%;
  padding-right: 2.0833333%;
}
#process header p,
#booking header p,
#contact header p {
  padding-top: 2rem;
  flex-basis: 56.2499998%;
  line-height: 1.19047619;
}

#booking {
  background: #F5F0EE;
}
#booking .booking-frame {
  margin-top: 56px;
  background: white;
}
#booking iframe {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
  background: transparent;
}
#booking .booking-link {
  margin-top: 24px;
}

@media (min-width: 768px) {
  #commitment > div,
  #values > div {
    display: flex;
    align-items: flex-start;
  }
}
#commitment > div img,
#values > div img {
  flex-basis: 33.3333332%;
  margin-right: 6.25%;
}
@media (max-width: 768px) {
  #commitment > div img,
  #values > div img {
    max-width: 50%;
    margin-bottom: 30px;
  }
}
#commitment > div .text,
#values > div .text {
  flex-basis: 56.2499998%;
}

#process ol {
  margin-top: 56px;
  list-style-type: none;
}
#process ol > * + * {
  margin-top: 40px;
}
#process ol li {
  clear: both;
}
#process ol li:after {
  content: "";
  display: table;
  clear: both;
}
#process ol li img {
  display: none;
}
#process ol li video, #process ol li img {
  width: 100%;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}
@media (min-width: 768px) {
  #process ol li video, #process ol li img {
    width: 56.2499998%;
  }
  #process ol li:nth-child(odd) video, #process ol li:nth-child(odd) img {
    float: right;
    margin-left: 2.0833333%;
  }
  #process ol li:nth-child(even) video, #process ol li:nth-child(even) img {
    float: left;
    margin-right: 2.0833333%;
  }
}
@media (prefers-reduced-motion: reduce) {
  #process ol li video {
    display: none;
  }
  #process ol li img {
    display: block;
  }
}
#process ol li .num {
  display: block;
  color: rgb(217.8976744186, 26.1023255814, 43.1255813953);
  font-family: SSPLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 21px;
}
@media (min-width: 768px) {
  #process ol li .num {
    padding-top: 100px;
  }
}
#process ol li h3 {
  display: inline;
  font-family: SSPLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 36px;
  font-weight: normal;
  margin-bottom: 0.8rem;
}

@media (min-width: 768px) {
  #commitment > div {
    align-items: center;
  }
}
@media (min-width: 768px) {
  #clients > div {
    display: flex;
    align-items: flex-start;
  }
}
#clients > div h2 {
  flex-basis: 39.5833332%;
  padding-right: 2.0833333%;
  padding-bottom: 36px;
}
#clients > div .client-group {
  flex-basis: 56.2499998%;
}
#clients > div .client-group h3 {
  color: #E83F4E;
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 38px;
  padding-top: 0.8rem;
}
#clients > div .client-group p + h3 {
  margin-top: 48px;
}

#contact form {
  position: relative;
  margin: 100px 0;
  font-size: 0;
}
#contact form label {
  display: inline-block;
  width: 0;
}
#contact form input,
#contact form textarea {
  opacity: 1;
  transition: opacity 200ms ease-out;
  padding: 17px;
  border: none;
  font-family: SSPLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 24px;
}
#contact form input {
  margin-left: 2.0833333%;
  width: calc(31.2499999% - 1px);
}
#contact form input[type=text]:first-of-type {
  margin-left: 0;
}
#contact form textarea {
  margin: 2.0833333% 0;
  width: 97.9166663%;
  resize: vertical;
  height: 240px;
  min-height: 240px;
}
#contact form input[type=submit] {
  background: #E83F4E;
  color: #F9F7F7;
  margin-left: 66.6666664%;
  padding: 8px;
  font-size: 34px;
}
@media (max-width: 768px) {
  #contact form input,
  #contact form textarea {
    width: 100%;
    margin: 0 0 16px !important;
  }
}
#contact form ::placeholder {
  color: #CCC4C1;
}
#contact form .response {
  transition: opacity 200ms ease-in;
  opacity: 0;
  position: absolute;
  top: 40px;
  z-index: 1;
  display: none;
  width: 100%;
  text-align: center;
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 22px;
}
#contact form.success input,
#contact form.success textarea, #contact form.failure input,
#contact form.failure textarea {
  opacity: 0;
}
#contact form.success .response, #contact form.failure .response {
  opacity: 1;
  display: block;
}

footer {
  background: #1F2C33;
}
@media (min-width: 768px) {
  footer > div {
    display: flex;
    align-items: flex-start;
  }
}
footer > div {
  color: #F9F7F7;
}
footer > div small,
footer > div address {
  display: block;
  margin-bottom: 32px;
  flex-basis: 33.3333332%;
  font-size: 17px;
  line-height: 1.19047619;
}
footer > div address {
  font-style: normal;
}
footer > div address span {
  display: block;
}
footer > div address :first-child {
  font-family: SSPSemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
footer > div a {
  color: #F7C3AB;
  text-decoration: none;
}