/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}
/* Custom Fonts
--------------------------------------------- */
/* barlow-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/Barlow/barlow-v12-latin-300.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('../fonts/Barlow/barlow-v12-latin-300.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* barlow-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Barlow/barlow-v12-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('../fonts/Barlow/barlow-v12-latin-regular.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* barlow-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/Barlow/barlow-v12-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('../fonts/Barlow/barlow-v12-latin-600.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* abeatbyKai */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'abeatbyKai';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/AbeatbyKai.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('../fonts/AbeatbyKai.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* Alone */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Alone';
  font-weight: normal;
  font-style: normal;
  src: url('../fonts/Alone/AloneRegular.woff2') format('woff2'),
       url('../fonts/Alone/AloneRegular.woff') format('woff');
}

/* Simple Animations
--------------------------------------------- */
@keyframes simple-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes simple-fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes simple-moveinleft {
  0% {
    left:-150%;
  }
  50% {
    opacity: 0;
  }
  100% {
    left:0%;
    opacity: 1;
  }
}
@keyframes simple-moveinleft-enlarge {
  0% {
    left:-150%;
    width: 0%;
  }
  50% {
    opacity: 0;
    width: 25%;
  }
  100% {
    left:0%;
    opacity: 1;
    width: 100%;
  }
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
html {
	box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  padding: 0;
  font-family: 'Barlow', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  color: #fff;
  text-shadow: 0px 0px 3px rgba(0,0,0,0.2);
  -moz-osx-font-smoothing: grayscale; 
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3 {
  margin: 0 0 1em;
  font-weight: normal;
}
p {
  margin: 0 0 1.5rem;
  line-height: 1.6;
}
b, strong {
  font-weight: 700;
}
.hero-content {
  margin: 0 auto;
}
h1.section-heading {
  margin: 0 auto;
  text-align: center;
}
h1.section-heading span {
  display: block;
}
h1.section-heading span.hero-evo,
h1.section-heading span.hero-hybrid {
  font-family: 'Alone',sans-serif;
  line-height: 0.75;
}
h1.section-heading span.hero-evo b,
h1.section-heading span.hero-hybrid b {
  font-weight: normal;
  text-transform: lowercase;
}
h1.section-heading span.hero-evo {
  font-size: clamp(1.125rem, 0.779rem + 1.731vw, 2.25rem); /* 18px/36px | 320px/1360px */
}
h1.section-heading span.hero-hybrid {
  font-size: clamp(3.125rem, 1.971rem + 5.769vw, 6.875rem); /* 50px/110px | 320px/1360px */
}
h1.section-heading span.hero-sub {
  padding-top: 1em;
  font-family: 'abeatbyKai',sans-serif;
  font-size: clamp(0.688rem, 0.553rem + 0.673vw, 1.125rem); /* 11px/18px | 320px/1360px */
  font-weight: normal;
  letter-spacing: 0.35em;
  word-spacing: -0.25em;
}
h2.section-heading {
  margin-right: -0.5em;
  font-family: 'abeatbyKai', sans-serif;
  font-size: clamp(1.313rem, 0.87rem + 2.212vw, 2.75rem); /* 21px/44px | 320px/1360px */
  font-weight: normal;
  letter-spacing: 0.35em;
  word-spacing: -0.25em;
  text-align: center;
}
h2.section-heading span {
  font-size: clamp(0.688rem, 0.553rem + 0.673vw, 1.125rem); /* 11px/18px | 320px/1360px */
  letter-spacing: 0.35em;
  word-spacing: -0.25em;
  display: block;
}
.text-center {
  text-align: center;
}
.content-wrapper {
  /*overflow: hidden;
  overflow: auto;
  overflow-x: hidden;
  height: 100vh;*/
  position: relative;
  /*scroll-snap-type: y proximity;*/
}
.section {
  /*min-height: 100vh;*/
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}
.section-image {
  /*padding-top: 65.63%;  */
  padding-top: calc((1260 / 1920) * 100%);
  left: 0;
  bottom: 0;
  width: 100%;
  background-size: 100%;
  /*background-attachment: fixed;*/
  background-position: left bottom;
  background-repeat: no-repeat;
  position: absolute;
}
.section-wrap {
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  max-width: 1360px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 2;
}
.single-col {
  justify-content: center;
}
.col-right {
  justify-content: flex-end;
}
.col-800 {
  margin: 1rem;
  width: 100%;
  max-width: calc(800px + 2rem);
}
.col-50 {
  margin: 1rem;
  width: calc(50% - 2rem);
}

/* Header and Navigation
--------------------------------------------- */
.header {
  left: 0;
  width: 100%;
  position: absolute;
  z-index: 1000;
}
body.menu-open .header {
  position: fixed;
}
.nav-wrap {
  margin: 0 auto;
  padding: 15px 30px;
  width: 85%;
  color: #fff;
  font-family: "Barlow", Arial, Helvetica, sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  width: 140px;
  position: relative;
  z-index: 100;
  flex-grow: 0;
}
.nav-logo a {
  width: 100%;
}
.nav-menus {
  /*width: 73%;*/
  display: flex;
  flex-grow: 1;
  /*justify-content: space-between;*/
}
.mid-nav {
  flex-grow: 1;
  align-items: center;
  display: flex;
  justify-content: flex-end;
  /*justify-content: flex-end;*/
}
.right-nav {
  font-weight: 600;
  flex-grow: 0;
}
.nav-wrap a {
  padding: 1em;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  background: rgba(55,8,147,0);
  position: relative;
  -moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.nav-wrap .mid-nav a:before {
  content: '';
  width: 0;
  height: 1px;
  background: rgba(255,255,255,1);
  bottom: 0.8em;
  left: 0.9em;
  position: absolute;
  display: block;
  -moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.nav-wrap .mid-nav a:hover:before,
.nav-wrap .mid-nav a:active:before {
  width: calc(100% - 2em);
}
.mobile-nav {
  display: none;
}
.mobile-nav button.open-icon {
  right: 30px;
  top: 18px;
  position: absolute;
  background: transparent;
  border: none;
}
.mobile-nav button.open-icon:hover, .mobile-nav button.open-icon:active, .mobile-nav button.open-icon:focus {
  border-color: none;
  outline: none;
}
.open-icon {
    display: block;
    float: right;
    width: 35px;
    height: 25px;
    position: relative;
    margin: 8px 0 0 0;
    cursor: pointer;
    position: relative;
    z-index: 100;
}
.open-icon span {
    height: 1px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.open-icon .menu_label {
    opacity: 0;
}
.open-icon span:nth-child(1) {
    top: 0px;
    transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
}
.open-icon span:nth-child(2) {
    width: 100%;
    left: 0;
}
.open-icon span:nth-child(3) {
    top: 20px;
    transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
}
.open-icon span:nth-child(2) {
    top: 8px;
}
.open-icon span:nth-child(3) {
    top: 16px;
}
.mobile-nav.toggled .open-icon span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
}
.mobile-nav.toggled .open-icon span:nth-child(2) {
    width: 0;
    left: 50%;
}
.mobile-nav.toggled .open-icon span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
}
.mobile-nav .menu-container {
  top: -13px;
  left: 0;
  right: 0;
  width: 100%;
  position: fixed;
  padding: 0;
  height: 0vh;
  text-align: center;
  background: #300c60;
  overflow: hidden;
  -moz-transition: all 0.75s ease-in-out;
  -webkit-transition: all 0.75s ease-in-out;
  transition: all 0.75s ease-in-out;
}
.mobile-nav.toggled .menu-container {
  padding: 25% 0 10%;
  height: 100vh;
  -moz-transition: all 0.75s ease-in-out;
  -webkit-transition: all 0.75s ease-in-out;
  transition: all 0.75s ease-in-out;
}
@media (max-width: 1400px) {
  .nav-wrap {
    width: 100%;
  }
}
@media (max-width: 1100px) {
  .nav-wrap {
    padding: 15px;
  }
  .nav-menus {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
}

/* section specific */
#section_1 {
  background-color: #355c83;
}
#section_1 .section-image {
  padding-top: calc((900 / 1910) * 100%);
  background-image: url('../images/section1-bg.webp');
  opacity: 0;
}
#section_1.in-view .section-image {
  animation: 0.5s ease-in-out normal forwards 1 simple-fadein;
}
#section_1 .section-wrap {
  padding-top: 31%;
  padding-bottom: 6%;
}

#section_2 {
  background-color: #32557b;
}
#section_2 .section-image {
  padding-top: calc((1260 / 1920) * 100%);
  background-image: url('../images/section2-bg.webp');
  opacity: 0;
}
#section_2.in-view .section-image {
  animation: 0.5s ease-in-out normal forwards 1 simple-fadein;
}
#section_2 .section-wrap {
  padding-top: 5%;
  padding-bottom: 28%;
}

#section_3 {
  background-color: #57642e;
}
#section_3 .section-image {
  padding-top: calc((1301 / 1910) * 100%);
  background-image: url('../images/section3-bg.webp');
  opacity: 0;
}
#section_3.in-view .section-image {
  animation: 0.5s ease-in-out normal forwards 1 simple-fadein;
}
#section_3 .section-wrap {
  padding-top: 5%;
  padding-bottom: 15%;
}

#section_4 {
  background-color: #918083;
}
#section_4 .section-image {
  padding-top: calc((901 / 1910) * 100%);
  background-image: url('../images/section4-bg.webp');
  opacity: 0;
}
#section_4.in-view .section-image {
  animation: 0.5s ease-in-out normal forwards 1 simple-fadein;
}
#section_4 .section-wrap {
  padding-top: 5%;
  padding-bottom: 25%;
}

#section_5 {
  background-color: #343231;
}
#section_5 .section-image {
  padding-top: calc((1201 / 1910) * 100%);
  background-image: url('../images/section5-bg.webp');
  background-position: bottom;
  opacity: 0;
}
#section_5.in-view .section-image {
  animation: 0.5s ease-in-out normal forwards 1 simple-fadein;
}
#section_5 .section-wrap {
  padding-top: 8%;
  padding-bottom: 8%;
}
@media (max-width: 1300px) {
  #section_1 .section-image {
    background-image: url('../images/section1-1400-bg.webp');
  }
  #section_2 .section-image {
    background-image: url('../images/section2-1400-bg.webp');
  }
  #section_3 .section-image {
    background-image: url('../images/section3-1400-bg.webp');
  }
  #section_4 .section-image {
    background-image: url('../images/section4-1400-bg.webp');
  }
  #section_5 .section-image {
    background-image: url('../images/section5-1400-bg.webp');
  }
}
@media (max-width: 1100px) {
  #section_1 .section-image {
    padding-top: calc((1200 / 1910) * 100%);
    background-size: cover;
    background-position: center bottom;
  }
  #section_1 .section-wrap {
    padding-top: 41%;
    padding-bottom: 70px;
  }

  #section_2 .section-image {
    padding-top: calc((1600 / 1920) * 100%);
    background-image: url('../images/section2-bg.webp');
    background-size: 150%;
    opacity: 0;
  }
  #section_2.in-view .section-image {
    animation: 0.5s ease-in-out normal forwards 1 simple-fadein;
  }
  #section_2 .section-wrap {
    padding-top: 70px;
    padding-bottom: 56%;
  }

  #section_3 .section-image {
    padding-top: calc((1910 / 1910) * 100%);
    background-image: url('../images/section3-bg.webp');
    background-size: 150%;
    background-position: right bottom;
    opacity: 0;
  }
  #section_3.in-view .section-image {
    animation: 0.5s ease-in-out normal forwards 1 simple-fadein;
  }
  #section_3 .section-wrap {
    padding-top: 70px;
    padding-bottom: 55%;
  }

  #section_5 .section-image {
    padding-top: calc((1800 / 1910) * 100%);
    background-image: url('../images/section5-bg.webp');
    background-position: right bottom;
    background-size: 150%;
    opacity: 0.3;
  }
  #section_5.in-view .section-image {
    animation: none;
  }
  #section_5 .section-wrap {
    padding-top: 8%;
    padding-bottom: 8%;
  }
}

@media (max-width: 700px) {
  #section_1 .section-image {
    background-image: url('../images/section1-800-bg.webp');
  }
  #section_2 .section-image {
    background-image: url('../images/section2-800-bg.webp');
  }
  #section_3 .section-image {
    background-image: url('../images/section3-800-bg.webp');
  }
  #section_4 .section-image {
    background-image: url('../images/section4-800-bg.webp');
  }
  #section_5 .section-image {
    background-image: url('../images/section5-800-bg.webp');
  }
}
@media (max-width: 500px) {
  #section_1 .section-image {
    padding-top: calc((1600 / 1910) * 100%);
  }
  #section_1 .section-wrap {
    padding-top: 60%;
    padding-bottom: 50px;
  }
}

/* section5 - form etc */
.evolve {
  width: 100%;
  padding: 25px 30px;
  text-align: center;
}
.evolve img {
  margin: 0 auto;
  width: 44%;
  max-width: 460px;
}
.evolve p {
  padding-top: 10px;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.evolve a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.form-wrap {
  /*max-width: 1000px;*/
  display: flex;
  flex-wrap: wrap;
}
.form-left {
  padding: 0 20px;
  width: 50%;
  display: flex;
  flex-direction: column;
}
.form-right {
  padding: 0 12% 0 20px;
  width: 50%;
  display: flex;
  flex-direction: column;
}
.form-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.form-row input,
.form-row select,
.form-row textarea,
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus,
.form-row input:active,
.form-row select:active,
.form-row textarea:active {
  margin: 5px 8px;
  padding: 15px;
  width: calc(100% - 16px);
  color: #fff;
  background: none transparent;
  border: 1px solid #fff;
  outline: none;
  border-radius: 0;
}
.form-row input::-webkit-input-placeholder,
.form-row textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #e5e5e5;
}
.form-row input::-moz-placeholder,
.form-row textarea::-moz-placeholder { /* Firefox 19+ */
  color: #e5e5e5;
  opacity: 1;
}
.form-row input::-ms-input-placeholder,
.form-row textarea::-ms-input-placeholder { /* IE 10+ */
  color: #e5e5e5;
}
.form-row input::placeholder,
.form-row textarea::placeholder { /* modern browsers */
  color: #e5e5e5;
}
.form-row-2-col > div{
  width: 50%;
}
.form-row select {
  height: 52px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  color: #e5e5e5;
  padding: 15px;
  border-radius: 0% !important;
}
.form-row .select {
  width: 100%;
  position: relative;
}
.form-row .select::after {
  content: "";
  width: 1.4em;
  height: 0.7em;
  background-color: #fff;
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  display: block;
  top: 22px;
  right: 18px;
  position: absolute;
  pointer-events: none;
}
.form-row select:required:invalid {
  color: #e5e5e5;
}
.form-row select option[value=""][disabled] {
  display: none;
}
.form-row select option {
  color: #000;
}
.textarea {
  width: 100%;
}
.textarea textarea {
  min-height: 120px;
  color: #e5e5e5;
}
.form-right p {
  margin-top: 0;
  text-align: left;
  line-height: 1.4em;
  letter-spacing: normal;
}
.form-right p strong {
  font-weight: 700;
}
#result_msg {
  width: 100%;
  padding: 20px 20px 30px;
  text-align: center;
  display:none;
}
#result_msg p {
  margin: 0 auto;
  padding: 30px 50px;
  text-align: center;
  line-height: 1.5;
  background: rgba(132,22,166,0.5);
}
#result_msg p.error-msg {
  color: #f33;
  border: 1px solid #f33;
}
.form-submit {
  padding-top: 15px;
  width: 100%;
  text-align: center;
}
.form-submit button {
  margin: 5px auto;
  padding: 15px 60px;
  color: #fff;
  background: none transparent;
  border: 1px solid #fff;
  cursor: pointer;
}

/* footer */
.footer {
  min-height: 400px;
  background-color: #54514e;
  font-size: 1rem;
  line-height: 1.2;
}
.flex_row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.footer h4 {
  font-size: 1.2rem;
  letter-spacing: 1px;
}
.footer p {
  line-height: 1.3;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer-contact .col-50 {
  margin: 0 20px 20px 0;
}
.footer-contact .col-50 p {
  margin: 0;
}
.footer .disclaimer a:last-child {
  font-size: 0.85em;
  color: #ccc;
  text-transform: uppercase;
}
.exo-logos {
  padding: 60px 25px 0;
  text-align: center;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: nowrap;
  border-bottom: 1px solid #777;
}
.exo-logos a {
  object-fit: cover;
  display: inline-grid;
  padding: 0 5%;
}
.exo-logos img {
  height: 100%;
  height: 60px;
  width: auto;
  margin: 0 auto 15px;
}
.added-disclaimer {
  padding: 50px 0 0;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-nav {
  margin: 0 auto;
  padding-top: 30px;
  color: #b3b2b2;
  font-size: 0.8rem;
  text-align: center;
}
.footer-nav p {
  line-height: 1.6;
}
.footer-nav span {
  padding: 0 4px;
  display: inline-block;
}
.footer-nav a {
  color: #b3b2b2;
  -moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
  font-weight: bold;
}

@media (max-width: 1100px) {
  body {
    font-size: 1rem;
  }
  .col-left,
  .col-right {
    justify-content: center;
  }
  .col-50 {
    margin: 0 auto;
    width: calc(100% - 2rem);
    max-width: 800px;
  }
  .form-right {
    padding: 0 20px;
    width: 50%;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 850px) {
  .form-wrap {
    flex-direction: column;
  }
  .form-left,
  .form-right {
    width: 100%;
  }
  .form-right {
    padding-bottom: 20px;
    order: 0;
  }
  .form-left {order:1}
  .form-submit {order:2}
}
@media (max-width: 600px) {
  .form-row-2-col > div {
    width: 100%;
  }
  .exo-logos {
    flex-wrap: wrap;
    padding: 40px 0 0;
    text-align: center;
    border-bottom: 1px solid #777;
  }
  .exo-logos a {
    padding: 0 1%;
    width: 98%;
  }
  .exo-logos img {
    margin-bottom: 35px;
    max-width: 240px;
  }
}