@import url("https://fonts.googleapis.com/css2?family=Patua+One&family=Raleway:wght@300&family=Rowdies:wght@300;400&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  font-size: 100%;
  font-family: "Quicksand", Helvetica, Arial, sans-serif;
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

input, textarea, button {
  border: none;
  outline: none;
  font-family: "Quicksand", Helvetica, Arial, sans-serif;
}

button {
  border: none;
}
button:hover {
  cursor: pointer;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
}

em {
  font-style: italic;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}
select:hover {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}

.about .splash .row, .transformations .splash .row, body > footer > .row:last-of-type, body > header nav {
  display: flex;
  align-items: center;
}
.about .splash .row > *:last-child, .transformations .splash .row > *:last-child, body > footer > .row:last-of-type > *:last-child, body > header nav > *:last-child {
  margin-left: auto;
}

h1, h2, h3, p {
  color: #242424;
}

h1, h2, h3 {
  font-weight: 400;
  font-family: "Rowdies", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}

h1 {
  font-size: 5em;
}
@media only screen and (max-width: 800px) {
  h1 {
    font-size: 3.5em;
  }
}
@media only screen and (max-width: 600px) {
  h1 {
    font-size: 2.75em;
  }
}
@media only screen and (max-width: 420px) {
  h1 {
    font-size: 2.25em;
  }
}

h2 {
  font-size: 2.25em;
}
@media only screen and (max-width: 800px) {
  h2 {
    font-size: 1.875em;
  }
}
@media only screen and (max-width: 600px) {
  h2 {
    font-size: 1.5em;
  }
}
@media only screen and (max-width: 420px) {
  h2 {
    font-size: 1.25em;
  }
}

p {
  font-weight: 300;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  line-height: 1.625em;
}

.splash p {
  font: 1.375em "Patua One", Helvetica, Arial, sans-serif;
}
@media only screen and (max-width: 800px) {
  .splash p {
    font-size: 1.25em;
  }
}
@media only screen and (max-width: 600px) {
  .splash p {
    font-size: 1.125em;
  }
}
@media only screen and (max-width: 420px) {
  .splash p {
    font-size: 1em;
  }
}

input, select {
  font-weight: 300;
  font-size: 1em;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
}

.dark * {
  color: #FFF;
}

.light * {
  color: #242424;
}

/* Links */
a {
  color: #39D083;
}

.btn, nav a {
  font-family: "Patua One", Helvetica, Arial, sans-serif;
}

.btn {
  -webkit-transition: background-color 100ms ease-in-out;
  -moz-transition: background-color 100ms ease-in-out;
  -o-transition: background-color 100ms ease-in-out;
  transition: background-color 100ms ease-in-out;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  display: inline-block;
  padding: 15px 35px;
  font-size: 1.25em;
  color: #FFF;
  background-color: #39D083;
}
.btn:hover {
  background-color: #29ad6a;
}
.btn:hover {
  animation-name: btn-bounce;
  animation-duration: 400ms;
  animation-timing-function: ease;
}
.btn.secondary {
  padding-right: 20px;
  padding-left: 25px;
  color: #39D083;
  border: 1px solid #39D083;
  background-color: #FFF;
}
.btn.secondary:hover {
  background-color: #29ad6a;
}
.btn.secondary span {
  -webkit-transition: transform 100ms ease-in-out;
  -moz-transition: transform 100ms ease-in-out;
  -o-transition: transform 100ms ease-in-out;
  transition: transform 100ms ease-in-out;
  display: inline-block;
  position: relative;
  padding-left: 3px;
  font-size: 0.875em;
  color: #39D083;
}
.btn.secondary:hover {
  color: #FFF;
}
.btn.secondary:hover span {
  -moz-transform: translate(5px, 0);
  -o-transform: translate(5px, 0);
  -ms-transform: translate(5px, 0);
  -webkit-transform: translate(5px, 0);
  transform: translate(5px, 0);
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .btn {
    padding: 12px 20px;
    font-size: 1.125em;
  }
}

.ig {
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
}

@keyframes btn-bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
body > header {
  position: absolute;
  width: 100%;
  padding: 85px 0;
}
body > header .mob-menu {
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  top: 50%;
  right: 30px;
  display: none;
  width: 30px;
}
body > header .mob-menu span {
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
  border-radius: 1px;
  display: block;
  width: 100%;
  height: 4px;
  margin-bottom: 5px;
  background-color: #FFF;
}
body > header .mob-menu span:last-child {
  margin-bottom: 0;
}
body > header nav a {
  position: relative;
  color: #FFF;
  vertical-align: middle;
}
body > header nav a:not(.btn) {
  -webkit-transition: opacity 100ms ease-in-out;
  -moz-transition: opacity 100ms ease-in-out;
  -o-transition: opacity 100ms ease-in-out;
  transition: opacity 100ms ease-in-out;
  margin-right: 40px;
  font-size: 1.25em;
  opacity: 0.8;
}
body > header nav a:not(.btn):hover {
  opacity: 1;
}
body > header nav a.ig {
  width: 44px;
  height: 44px;
  background-image: url(../img/ig-header.png);
}
body > header nav a.current::after {
  content: "";
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  display: block;
  width: 35px;
  height: 2px;
  background-color: #FFF;
}
body > header .logo {
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
@media only screen and (max-width: 980px) {
  body > header {
    padding: 55px 0;
  }
  body > header nav a:not(.btn) {
    margin-right: 20px;
    font-size: 1.125em;
  }
  body > header .logo {
    width: 175px;
  }
}
@media only screen and (max-width: 800px) {
  body > header {
    padding: 40px 0;
  }
  body > header nav a:not(.btn) {
    margin-right: 20px;
    font-size: 1.125em;
  }
  body > header nav a.ig {
    width: 35px;
    height: 35px;
    background-size: 100%;
  }
  body > header .logo {
    width: 150px;
  }
}
@media only screen and (max-width: 768px) {
  body > header {
    padding: 30px 0;
  }
  body > header nav {
    position: relative;
    display: inline-block;
    width: calc(100% - 175px);
    vertical-align: middle;
  }
  body > header nav a:not(.btn) {
    font-size: 1em;
  }
  body > header nav div:last-child {
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    right: 0;
  }
  body > header .logo {
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    position: relative;
    top: unset;
    left: unset;
    display: inline-block;
    margin-right: 20px;
    vertical-align: middle;
  }
}
@media only screen and (max-width: 680px) {
  body > header .mob-menu {
    display: inline-block;
  }
  body > header nav {
    -moz-transform: translate(100%, 0);
    -o-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    position: fixed;
    top: 0;
    right: 0;
    width: calc(100% - 100px);
    height: 100vh;
    padding: 45px;
    overflow-y: auto;
    background-color: black;
  }
  body > header nav a {
    display: block !important;
    margin-bottom: 30px;
  }
  body > header nav a:not(.btn) {
    font-size: 1.5em;
    opacity: 1;
  }
  body > header nav a.btn {
    text-align: center;
  }
  body > header nav div:last-child {
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    position: relative;
    top: unset;
    right: unset;
  }
}
@media only screen and (max-width: 600px) {
  body > header {
    padding: 25px 0;
  }
}

body > footer {
  padding: 100px 0 50px;
  background-color: #242424;
}
body > footer h2, body > footer p, body > footer input, body > footer select, body > footer input::placeholder {
  color: #FFF;
}
body > footer > .row:first-of-type {
  text-align: center;
}
body > footer h2, body > footer p {
  margin-bottom: 25px;
}
body > footer .col {
  max-width: 950px;
}
body > footer input, body > footer select {
  -webkit-transition: border 300ms ease-in-out;
  -moz-transition: border 300ms ease-in-out;
  -o-transition: border 300ms ease-in-out;
  transition: border 300ms ease-in-out;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  float: left;
  width: calc(50% - 10px);
  height: 70px;
  padding: 0 25px;
  margin-top: 20px;
  border: 1px solid #888;
  background: none;
}
body > footer input:focus, body > footer select:focus {
  border-color: #FFF;
}
body > footer input:not(:last-child), body > footer select:not(:last-child) {
  margin-right: 20px;
}
body > footer select {
  background: url(../img/select-arrow.png) right 25px center no-repeat;
}
body > footer .g-recaptcha {
  margin-top: 20px;
}
body > footer .g-recaptcha > div {
  margin: 0 auto;
}
body > footer button {
  margin-top: 35px;
}
body > footer > .row:last-of-type {
  max-width: 1420px;
  padding: 40px 40px 0;
  margin-top: 100px;
  font-weight: 300;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  border-top: 1px solid #3D3D3D;
}
body > footer > .row:last-of-type a, body > footer > .row:last-of-type small {
  color: #626262;
}
body > footer > .row:last-of-type ul li {
  display: inline-block;
  padding-right: 10px;
  margin-right: 5px;
  border-right: 1px solid #626262;
}
body > footer > .row:last-of-type ul li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}
body > footer > .row:last-of-type ul li a {
  -webkit-transition: color 100ms ease-in-out;
  -moz-transition: color 100ms ease-in-out;
  -o-transition: color 100ms ease-in-out;
  transition: color 100ms ease-in-out;
}
body > footer > .row:last-of-type ul li a:hover {
  color: #959595;
}
body > footer > .row:last-of-type .ig {
  -webkit-transition: opacity 150ms ease-in-out;
  -moz-transition: opacity 150ms ease-in-out;
  -o-transition: opacity 150ms ease-in-out;
  transition: opacity 150ms ease-in-out;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-right: 20px;
  opacity: 0.75;
  background-image: url(../img/ig-footer.png);
}
body > footer > .row:last-of-type .ig:hover {
  opacity: 1;
}
@media only screen and (max-width: 980px) {
  body > footer {
    padding: 70px 0 40px;
  }
  body > footer > .row:last-of-type {
    margin-top: 70px;
  }
}
@media only screen and (max-width: 740px) {
  body > footer {
    padding-top: 40px;
  }
  body > footer p {
    margin-bottom: 10px;
  }
  body > footer input, body > footer select {
    float: none;
    width: 100%;
  }
  body > footer input:not(:last-child), body > footer select:not(:last-child) {
    margin-right: 0;
  }
  body > footer button.btn {
    width: calc(100% - 60px);
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
  }
  body > footer > .row:last-of-type {
    display: block;
    margin-top: 40px;
  }
  body > footer > .row:last-of-type .copyright {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 600px) {
  body > footer button.btn {
    width: calc(100% - 30px);
  }
}
@media only screen and (max-width: 420px) {
  body > footer input, body > footer select {
    height: 50px;
    padding: 0 20px;
  }
}
body > footer.overlap {
  padding-top: 230px;
  margin-top: -100px;
}
@media only screen and (max-width: 980px) {
  body > footer.overlap {
    padding-top: 170px;
  }
}
@media only screen and (max-width: 600px) {
  body > footer.overlap {
    padding-top: 140px;
  }
}

.home {
  background-color: #FCFFFF;
}
.home .splash {
  padding-bottom: 325px;
  background: url(../img/home-splash-bg.jpg) center no-repeat;
  background-size: cover;
}
.home .splash .row {
  padding-left: 130px;
}
.home .splash .row .col {
  max-width: 650px;
}
.home .splash p {
  margin: 40px 0 50px;
}
@media only screen and (max-width: 980px) {
  .home .splash {
    padding-bottom: 265px;
  }
  .home .splash .row {
    padding-left: 80px;
  }
}
@media only screen and (max-width: 800px) {
  .home .splash {
    padding-bottom: 215px;
  }
  .home .splash .row {
    padding-left: 40px;
  }
  .home .splash .row .col {
    float: none;
    margin: 0 auto;
  }
  .home .splash p {
    margin: 30px 0 40px;
    font: 1.25em "Patua One", Helvetica, Arial, sans-serif;
  }
}
@media only screen and (max-width: 600px) {
  .home .splash {
    padding-bottom: 185px;
  }
  .home .splash .row {
    padding-left: 20px;
  }
  .home .splash p {
    margin: 20px 0 30px;
    font: 1.125em "Patua One", Helvetica, Arial, sans-serif;
  }
}
@media only screen and (max-width: 420px) {
  .home .splash p {
    font: 1em "Patua One", Helvetica, Arial, sans-serif;
  }
}
.home .about-me {
  -moz-transform: translate(0, -170px);
  -o-transform: translate(0, -170px);
  -ms-transform: translate(0, -170px);
  -webkit-transform: translate(0, -170px);
  transform: translate(0, -170px);
  background-image: url(../img/home-about-warren.jpg);
}
@media only screen and (max-width: 1000px) {
  .home .about-me {
    background-position: calc(100% + 100px) center;
  }
}
@media only screen and (max-width: 920px) {
  .home .about-me {
    padding-bottom: 130%;
  }
}
@media only screen and (max-width: 600px) {
  .home .about-me {
    -moz-transform: translate(0, -140px);
    -o-transform: translate(0, -140px);
    -ms-transform: translate(0, -140px);
    -webkit-transform: translate(0, -140px);
    transform: translate(0, -140px);
  }
}
.home .transformations-lead {
  padding-top: 0;
}
.home .transformations-lead .col p {
  margin: 35px 0 50px;
}
.home .transformations-lead .transformation-pics {
  max-width: none;
  padding: 0;
  margin-top: 110px;
}
.home .transformations-lead .transformation-pics img {
  display: block;
  float: left;
  width: 25%;
}
@media only screen and (max-width: 980px) {
  .home .transformations-lead {
    top: -80px;
  }
  .home .transformations-lead .col p {
    margin: 30px 0 40px;
  }
  .home .transformations-lead .transformation-pics {
    margin-top: 80px;
    margin-bottom: -80px;
  }
  .home .transformations-lead .transformation-pics img {
    width: 50%;
  }
}
@media only screen and (max-width: 600px) {
  .home .transformations-lead {
    top: -100px;
  }
  .home .transformations-lead .col p {
    margin: 20px 0 30px;
  }
  .home .transformations-lead .transformation-pics {
    margin-top: 40px;
    margin-bottom: -100px;
  }
}
@media only screen and (max-width: 350px) {
  .home .transformations-lead .transformation-pics img {
    float: none;
    width: 100%;
  }
}
.home .testimonials {
  padding: 120px 0;
  background-color: #39D083;
}
.home .testimonials .col {
  max-width: 830px;
  padding-left: 115px;
  background: url(../img/speechmarks.png) left top no-repeat;
}
.home .testimonials .col p {
  font: 300 1.75em "Rowdies", Helvetica, Arial, sans-serif;
}
.home .testimonials .col > span {
  display: block;
  margin-top: 25px;
  font: 300 1.125em "Raleway", Helvetica, Arial, sans-serif;
}
.home .testimonials .col > span span {
  font-size: 0.875em;
}
@media only screen and (max-width: 980px) {
  .home .testimonials {
    padding: 90px 0;
  }
}
@media only screen and (max-width: 680px) {
  .home .testimonials {
    padding: 30px 0 50px;
  }
  .home .testimonials .col {
    padding-left: 90px;
    background-size: 60px auto;
    background-position: left 40px;
  }
  .home .testimonials .col p {
    font-size: 1.5em;
  }
}
@media only screen and (max-width: 600px) {
  .home .testimonials {
    padding: 0 0 30px;
  }
  .home .testimonials .col {
    padding: 0 20px;
    background-position: 20px 40px;
  }
}
@media only screen and (max-width: 480px) {
  .home .testimonials {
    padding: 30px 0;
  }
  .home .testimonials .col {
    padding-top: 60px;
    background-position: 20px top;
  }
  .home .testimonials .col p {
    font-size: 1.25em;
  }
}

.about .splash {
  background: #242424;
}
.about .splash .row .splash-img {
  background-image: url(../img/about-splash-bg.jpg);
}
.about .bio {
  padding-top: 130px;
}
.about .bio p {
  margin-top: 35px;
}
@media only screen and (max-width: 980px) {
  .about .bio {
    padding-top: 70px;
  }
  .about .bio p {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .about .bio {
    padding-top: 30px;
  }
  .about .bio p {
    margin-top: 20px;
  }
}
.about .mission {
  -moz-transform: translate(0, 130px);
  -o-transform: translate(0, 130px);
  -ms-transform: translate(0, 130px);
  -webkit-transform: translate(0, 130px);
  transform: translate(0, 130px);
  background-image: url(../img/about-bio-bg.jpg);
}
@media only screen and (max-width: 1000px) {
  .about .mission {
    background-position: calc(100% + 50px) center;
  }
}
@media only screen and (max-width: 980px) {
  .about .mission {
    -moz-transform: translate(0, 70px);
    -o-transform: translate(0, 70px);
    -ms-transform: translate(0, 70px);
    -webkit-transform: translate(0, 70px);
    transform: translate(0, 70px);
  }
}
@media only screen and (max-width: 920px) {
  .about .mission {
    background-image: url(../img/about-bio-mobile.jpg);
  }
}
@media only screen and (max-width: 600px) {
  .about .mission {
    -moz-transform: translate(0, 50px);
    -o-transform: translate(0, 50px);
    -ms-transform: translate(0, 50px);
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
  }
}
.about .services {
  padding: 280px 0 130px;
  background: #39D083;
}
.about .services .row {
  max-width: 1000px;
}
.about .services .row h2 {
  font-size: 3em;
}
.about .services .row .service {
  padding: 10px 0 0 110px;
  margin-top: 50px;
  background-position: left top;
  background-repeat: no-repeat;
}
.about .services .row .service h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}
.about .services .row .service.one-to-one {
  background-image: url(../img/service-one-to-one.png);
}
.about .services .row .service.one-to-one h3 {
  padding: 30px 0;
}
.about .services .row .service.group {
  background-image: url(../img/service-group.png);
}
.about .services .row .service.group h3 {
  padding: 5px 0;
}
.about .services .row .service.online {
  background-image: url(../img/service-online.png);
}
.about .services .row .service.online h3 {
  padding: 22px 0;
}
@media only screen and (max-width: 980px) {
  .about .services {
    padding: 160px 0 70px;
  }
}
@media only screen and (max-width: 920px) {
  .about .services .row .service {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 800px) {
  .about .services .row h2 {
    font-size: 2.25em;
  }
  .about .services .row .service h3 {
    font-size: 1.375em;
  }
}
@media only screen and (max-width: 600px) {
  .about .services {
    padding: 100px 0 40px;
  }
  .about .services .row h2 {
    font-size: 1.75em;
  }
  .about .services .row .service {
    margin-top: 40px;
  }
  .about .services .row .service h3 {
    font-size: 1.25em;
  }
}
@media only screen and (max-width: 420px) {
  .about .services .row h2 {
    font-size: 1.375em;
  }
  .about .services .row .service {
    padding: 5px 0 0 75px;
    margin-top: 25px;
    background-size: 50px auto;
  }
  .about .services .row .service h3 {
    font-size: 1.125em;
  }
}
@media only screen and (max-width: 350px) {
  .about .services .row .service {
    padding: 0;
    margin-top: 30px;
  }
  .about .services .row .service h3 {
    padding: 0 !important;
  }
  .about .services .row .service.one-to-one {
    padding-top: 85px;
  }
  .about .services .row .service.group {
    padding-top: 45px;
  }
  .about .services .row .service.online {
    padding-top: 80px;
  }
}

body .transformations .splash {
  background: #39D083;
}
body .transformations .splash .row .splash-img {
  background-image: url(../img/transformations-splash-bg.jpg);
}
@media only screen and (max-width: 1200px) {
  body .transformations .splash .row > div .col h1 {
    font-size: 2.25em;
  }
}
@media only screen and (max-width: 980px) {
  body .transformations .splash .row > div {
    padding-top: 200px !important;
  }
  body .transformations .splash .row > div .col h1 {
    font-size: 1.75em;
  }
}
@media only screen and (max-width: 800px) {
  body .transformations .splash .row > div {
    padding-top: 150px !important;
  }
  body .transformations .splash .row > div .col h1 {
    font-size: 1.5em;
  }
}
@media only screen and (max-width: 600px) {
  body .transformations .splash .row > div {
    padding-top: 120px !important;
  }
}
body .transformations .transformation-grid {
  padding: 130px 0 100px;
}
body .transformations .transformation-grid .row {
  max-width: 1160px;
}
body .transformations .transformation-grid .row img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  display: block;
  float: left;
  width: 340px;
  max-width: calc(33.33% - 20px);
  margin-right: 30px;
  margin-bottom: 30px;
}
body .transformations .transformation-grid .row img:nth-child(3n) {
  margin-right: 0;
}
@media only screen and (max-width: 980px) {
  body .transformations .transformation-grid {
    padding: 70px 0 60px;
  }
}
@media only screen and (max-width: 750px) {
  body .transformations .transformation-grid .row img {
    max-width: calc(50% - 10px);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  body .transformations .transformation-grid .row img:nth-child(3n) {
    margin-right: 20px;
  }
  body .transformations .transformation-grid .row img:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 750px) and (max-width: 600px) {
  body .transformations .transformation-grid {
    padding: 30px 0 10px;
  }
  body .transformations .transformation-grid .row img {
    max-width: calc(50% - 7.5px);
    margin-right: 15px;
    margin-bottom: 15px;
  }
  body .transformations .transformation-grid .row img:nth-child(3n) {
    margin-right: 15px;
  }
  body .transformations .transformation-grid .row img:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 750px) and (max-width: 360px) {
  body .transformations .transformation-grid .row img {
    max-width: 100%;
    margin-right: 0 !important;
    margin-bottom: 15px;
  }
}
body .transformations .reviews .review {
  width: 920px;
  margin-top: 80px;
  min-height: unset;
  background-size: 340px auto;
}
body .transformations .reviews .review .col {
  width: calc(100% - 340px);
  text-align: left;
}
body .transformations .reviews .review .col p:first-child {
  margin-top: 0;
}
body .transformations .reviews .review .col p:last-child {
  font-weight: 700;
}
body .transformations .reviews .review.steve {
  background-image: url(../img/reviews/steve.jpg);
}
body .transformations .reviews .review.sara {
  background-image: url(../img/reviews/sara.jpg);
}
body .transformations .reviews .review.francisco {
  background-image: url(../img/reviews/francisco.jpg);
}
body .transformations .reviews .review.marine {
  background-image: url(../img/reviews/marine.jpg);
}
body .transformations .reviews .review.fabian {
  background-image: url(../img/reviews/fabian.jpg);
}
body .transformations .reviews .review:nth-child(even) {
  background-position: left center;
}
body .transformations .reviews .review:nth-child(even) .col {
  float: right;
}
@media only screen and (max-width: 980px) {
  body .transformations .reviews .review {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 920px) {
  body .transformations .reviews .review {
    background-size: 100% auto;
  }
  body .transformations .reviews .review .col {
    width: 100%;
  }
  body .transformations .reviews .review.steve {
    padding-bottom: 95%;
  }
  body .transformations .reviews .review.sara {
    padding-bottom: 120%;
  }
  body .transformations .reviews .review.francisco, body .transformations .reviews .review.fabian {
    padding-bottom: 130%;
  }
  body .transformations .reviews .review.marine {
    padding-bottom: 110%;
  }
}
@media only screen and (max-width: 600px) {
  body .transformations .reviews .review {
    max-width: 100%;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 480px) {
  body .transformations .reviews .review {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 600px) {
  body .transformations .reviews > .row > .row {
    padding: 0;
  }
  body .transformations .reviews .review.steve {
    padding-bottom: 103%;
  }
  body .transformations .reviews .review.sara {
    padding-bottom: 130%;
  }
  body .transformations .reviews .review.francisco, body .transformations .reviews .review.fabian {
    padding-bottom: 140%;
  }
  body .transformations .reviews .review.marine {
    padding-bottom: 120%;
  }
}

#gallery > a {
  position: absolute;
  display: block;
  width: 45px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
#gallery > a.close {
  top: 60px;
  right: 60px;
  height: 45px;
  background-image: url(../img/close.png);
}
#gallery > a.back, #gallery > a.forward {
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  height: 77px;
  top: 50%;
}
#gallery > a.back.disabled, #gallery > a.forward.disabled {
  opacity: 0.2;
}
#gallery > a.back.disabled:hover, #gallery > a.forward.disabled:hover {
  cursor: not-allowed;
}
#gallery > a.back {
  left: 60px;
  background-image: url(../img/back.png);
}
#gallery > a.forward {
  right: 60px;
  background-image: url(../img/forward.png);
}
#gallery img {
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: calc(100% - 450px);
  max-height: calc(100vh - 100px);
}
@media only screen and (max-width: 768px) {
  #gallery a {
    width: 30px;
  }
  #gallery a.close {
    top: 30px;
    right: 30px;
    height: 30px;
  }
  #gallery a.back {
    left: 30px;
  }
  #gallery a.forward {
    right: 30px;
  }
  #gallery img {
    max-width: calc(100% - 200px);
  }
}
@media only screen and (max-width: 520px) {
  #gallery a {
    width: 20px;
  }
  #gallery a.back {
    left: 15px;
  }
  #gallery a.forward {
    right: 15px;
  }
  #gallery img {
    max-width: calc(100% - 120px);
  }
}
@media only screen and (max-width: 375px) {
  #gallery a {
    width: 15px;
  }
  #gallery a.close {
    top: 15px;
    right: 15px;
    height: 15px;
  }
  #gallery a.back {
    left: 10px;
  }
  #gallery a.forward {
    right: 10px;
  }
  #gallery img {
    max-width: calc(100% - 80px);
  }
}

body {
  -webkit-transition: transform 250ms ease-in-out;
  -moz-transition: transform 250ms ease-in-out;
  -o-transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
}
body.mob-slide {
  -moz-transform: translate(calc(-100% + 100px), 0);
  -o-transform: translate(calc(-100% + 100px), 0);
  -ms-transform: translate(calc(-100% + 100px), 0);
  -webkit-transform: translate(calc(-100% + 100px), 0);
  transform: translate(calc(-100% + 100px), 0);
  overflow: hidden;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.row {
  width: 100%;
  max-width: 1500px;
  padding: 0 40px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .row {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 600px) {
  .row {
    padding: 0 15px;
  }
}
.row::before, .row::after {
  display: table;
  line-height: 0;
  content: "";
}
.row::after {
  clear: both;
}
.row *[class^=col] {
  display: block;
  float: left;
  width: 100%;
  min-height: 30px;
  padding: 0 20px;
}
@media only screen and (max-width: 600px) {
  .row *[class^=col] {
    padding: 0;
  }
}
.row *[class^=col].center {
  float: none;
  margin: 0 auto;
}

.section {
  position: relative;
}

.home .splash, .about .splash .row > div, .transformations .splash .row > div {
  padding-top: 260px;
}
@media only screen and (max-width: 980px) {
  .home .splash, .about .splash .row > div, .transformations .splash .row > div {
    padding-top: 200px;
  }
}
@media only screen and (max-width: 800px) {
  .home .splash, .about .splash .row > div, .transformations .splash .row > div {
    padding-top: 150px;
  }
}
@media only screen and (max-width: 600px) {
  .home .splash, .about .splash .row > div, .transformations .splash .row > div {
    padding-top: 120px;
  }
}

.transformations-lead .col, .bio .col, .reviews .col {
  max-width: 900px;
  text-align: center;
}
.transformations-lead .col h2, .bio .col h2, .reviews .col h2 {
  font-size: 3em;
}
@media only screen and (max-width: 800px) {
  .transformations-lead .col h2, .bio .col h2, .reviews .col h2 {
    font-size: 2.5em;
  }
}
@media only screen and (max-width: 600px) {
  .transformations-lead .col h2, .bio .col h2, .reviews .col h2 {
    font-size: 2em;
  }
}
@media only screen and (max-width: 420px) {
  .transformations-lead .col h2, .bio .col h2, .reviews .col h2 {
    font-size: 1.5em;
  }
}
.transformations-lead .col p, .bio .col p, .reviews .col p {
  font-size: 1.125em;
}
@media only screen and (max-width: 600px) {
  .transformations-lead .col, .bio .col, .reviews .col {
    text-align: left;
  }
}

.about-me, .mission, .review {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.1);
  width: 1120px;
  max-width: calc(100% - 60px);
  min-height: 650px;
  margin: 0 auto;
  background-color: #FFF;
  background-position: calc(100% + 1px) center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  z-index: 9;
}
.about-me .col, .mission .col, .review .col {
  width: 40%;
  padding-top: 60px;
  padding-bottom: 60px;
}
.about-me .col p, .mission .col p, .review .col p {
  margin-top: 35px;
  font-size: 1.125em;
}
.about-me .col .btn, .mission .col .btn, .review .col .btn {
  margin-top: 50px;
}
@media only screen and (max-width: 1080px) {
  .about-me, .mission, .review {
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: unset;
  }
  .about-me .col, .mission .col, .review .col {
    width: 50%;
    padding: 0;
  }
  .about-me .col p, .mission .col p, .review .col p {
    margin-top: 25px;
  }
  .about-me .col .btn, .mission .col .btn, .review .col .btn {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 1000px) {
  .about-me .col, .mission .col, .review .col {
    width: 60%;
  }
}
@media only screen and (max-width: 920px) {
  .about-me, .mission, .review {
    padding-bottom: 70%;
    background-color: #FFF;
    background-position: center bottom !important;
    background-size: 100% auto;
  }
  .about-me .col, .mission .col, .review .col {
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .about-me, .mission, .review {
    max-width: calc(100% - 40px);
    padding-top: 25px;
  }
  .about-me .col, .mission .col, .review .col {
    padding: 0 10px;
  }
  .about-me .col p, .mission .col p, .review .col p {
    font-size: 1em;
  }
}

.about .splash, .transformations .splash {
  padding-top: 0;
  background-size: 50% auto;
}
.about .splash .row, .transformations .splash .row {
  align-items: stretch;
  max-width: unset;
  padding: 0;
}
.about .splash .row > div, .transformations .splash .row > div {
  width: 50%;
  padding-bottom: 250px;
}
.about .splash .row .splash-img, .transformations .splash .row .splash-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about .splash .row .col, .transformations .splash .row .col {
  padding: 0 60px;
  max-width: 620px;
}
.about .splash .row .col h1, .transformations .splash .row .col h1 {
  font-size: 3em;
  margin-bottom: 50px;
}
@media only screen and (max-width: 980px) {
  .about .splash .row > div, .transformations .splash .row > div {
    padding-bottom: 180px;
  }
  .about .splash .row .col h1, .transformations .splash .row .col h1 {
    font-size: 2.25em;
  }
}
@media only screen and (max-width: 800px) {
  .about .splash .row > div, .transformations .splash .row > div {
    padding-bottom: 130px;
  }
}
@media only screen and (max-width: 680px) {
  .about .splash .row, .transformations .splash .row {
    display: block;
  }
  .about .splash .row > div, .transformations .splash .row > div {
    padding: 50px 0 !important;
    width: 100%;
  }
  .about .splash .row .splash-img, .transformations .splash .row .splash-img {
    height: 400px;
    background-position: center 60%;
  }
  .about .splash .row .col h1, .transformations .splash .row .col h1 {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .about .splash .row > div, .transformations .splash .row > div {
    padding: 30px 0 !important;
  }
  .about .splash .row .col, .transformations .splash .row .col {
    padding: 0 15px;
  }
  .about .splash .row .col h1, .transformations .splash .row .col h1 {
    font-size: 1.75em;
  }
}
@media only screen and (max-width: 420px) {
  .about .splash .row .col h1, .transformations .splash .row .col h1 {
    margin-bottom: 20px;
    font-size: 1.375em;
  }
}

.scroll-fade {
  opacity: 0;
}
.scroll-fade.in-view {
  animation-name: scroll-fade-animation;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  opacity: 1;
}
.scroll-fade.about-me.in-view {
  animation-name: scroll-fade-animation-about;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  opacity: 1;
}
@media only screen and (max-width: 600px) {
  .scroll-fade.about-me.in-view {
    animation-name: scroll-fade-animation-about-mobile;
  }
}
.scroll-fade.mission.in-view {
  animation-name: scroll-fade-animation-mission;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  opacity: 1;
}
@media only screen and (max-width: 980px) {
  .scroll-fade.mission.in-view {
    animation-name: scroll-fade-animation-mission-med;
  }
}
@media only screen and (max-width: 600px) {
  .scroll-fade.mission.in-view {
    animation-name: scroll-fade-animation-mission-mobile;
  }
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  z-index: 999;
}

.thanks {
  position: relative;
  height: 100vh;
}
.thanks.error {
  background-color: #39D083;
}
.thanks.error .btn {
  color: #39D083;
  background-color: #FFF;
}
.thanks.error .btn:hover {
  background-color: #e6e6e6;
}
.thanks.valid {
  background-color: #242424;
}
.thanks * {
  color: #FFF;
}
.thanks > div {
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 820px;
  max-width: calc(100% - 60px);
  max-height: calc(100% - 60px);
  padding: 0 30px;
  text-align: center;
  overflow-y: auto;
}
.thanks > div img {
  margin-bottom: 60px;
}
.thanks > div h1 {
  font-size: 3.5em;
}
.thanks > div p {
  margin: 35px 0 40px;
  font-size: 1.25em;
}
@media only screen and (max-width: 680px) {
  .thanks > div {
    padding: 0 20px;
    max-width: calc(100% - 40px);
    max-height: calc(100% - 40px);
  }
  .thanks > div h1 {
    font-size: 2.75em;
  }
}
@media only screen and (max-width: 480px) {
  .thanks > div {
    padding: 0 15px;
    max-width: calc(100% - 30px);
    max-height: calc(100% - 40px);
  }
  .thanks > div img {
    margin-bottom: 40px;
  }
  .thanks > div h1 {
    font-size: 1.75em;
  }
  .thanks > div p {
    margin: 20px 0 30px;
    font-size: 1em;
  }
}

@keyframes scroll-fade-animation {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  25% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scroll-fade-animation-about {
  0% {
    opacity: 0;
    transform: translate(0, -120px);
  }
  25% {
    opacity: 0;
    transform: translate(0, -120px);
  }
  100% {
    opacity: 1;
    transform: translate(0, -170px);
  }
}
@keyframes scroll-fade-animation-about-mobile {
  0% {
    opacity: 0;
    transform: translate(0, -90px);
  }
  25% {
    opacity: 0;
    transform: translate(0, -90px);
  }
  100% {
    opacity: 1;
    transform: translate(0, -140px);
  }
}
@keyframes scroll-fade-animation-mission {
  0% {
    opacity: 0;
    transform: translate(0, 180px);
  }
  25% {
    opacity: 0;
    transform: translate(0, 180px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 130px);
  }
}
@keyframes scroll-fade-animation-mission-med {
  0% {
    opacity: 0;
    transform: translate(0, 120px);
  }
  25% {
    opacity: 0;
    transform: translate(0, 120px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 70px);
  }
}
@keyframes scroll-fade-animation-mission-mobile {
  0% {
    opacity: 0;
    transform: translate(0, 100px);
  }
  25% {
    opacity: 0;
    transform: translate(0, 100px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 50px);
  }
}

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