:root {
  --darker-grey: #333;
  --blue: #2196f3;
  --dark-blue: #1565c0;
  --grey-mid: #a8a8a8;
  --dark-grey: #5d5d5d;
  --grey: #dbdbdb;
  --light-grey: #f1f1f1;
  --green: #4caf50;
  --crimson: #d32f2f;
  --burlywood: #d6b786;
  --black-2: #14110f;
  --white: white;
  --dark-orchid: #b915ff;
  --cyan: #00bcd4;
  --pale-turquoise: #75efff;
  --dark-turquoise: #1ce5ff;
  --black: black;
  --slate-grey: #607d8b;
  --pink: #d81b60;
  --purple: #673ab7;
  --indigo: #3f51b5;
  --teal: #00bfa5;
  --lime: #cddc39;
  --gold: #ffc107;
  --orange: #f45a1e;
  --brown: #795548;
  --medium-turquoise: #08dddb;
  --medium-orchid: #cd56ff;
}

body {
  color: var(--darker-grey);
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 22px;
}

h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 40px;
}

h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
}

h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 33px;
}

h4 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 27px;
}

h5, h6 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 22px;
}

a {
  color: var(--blue);
  text-decoration: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 40px;
}

strong {
  font-weight: bold;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 20px;
  padding: 0 20px;
  font-size: 16px;
}

figure {
  margin-bottom: 20px;
}

figcaption {
  color: #3333338f;
  text-align: center;
  margin-top: 7px;
  font-size: 14px;
  line-height: 20px;
}

.button {
  background-color: var(--blue);
  color: #fff;
  text-align: center;
  border-radius: 3px;
  padding: 11px 20px;
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  transition: background-color .15s;
  display: inline-block;
}

.button:hover {
  background-color: var(--dark-blue);
}

.button.w--current {
  background-color: #2e80b6;
}

.button.white {
  color: var(--darker-grey);
  background-color: #fff;
}

.button.white:hover {
  background-color: #ffffffc4;
}

.button.black {
  background-color: var(--darker-grey);
}

.button.black:hover {
  background-color: #000;
}

.button.black.with-field {
  float: left;
  width: 22%;
  margin-left: 2%;
}

.button.full-width {
  width: 100%;
  display: block;
}

.button.small {
  background-color: var(--blue);
  text-transform: uppercase;
  padding: 7px 12px;
  font-size: 11px;
  line-height: 14px;
}

.button.small:hover {
  background-color: var(--dark-blue);
}

.button.tab {
  background-color: var(--grey-mid);
  margin-left: 8px;
  margin-right: 8px;
}

.button.tab:hover {
  background-color: #7e7e7e;
}

.button.tab.w--current {
  background-color: var(--blue);
}

.button.tab.w--current:hover {
  background-color: var(--dark-blue);
}

.button.with-field {
  float: left;
  width: 22%;
  margin-left: 2%;
}

.navigation-link {
  height: 60px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.navigation-link:hover {
  color: var(--blue);
}

.navigation-link.white {
  color: #fff;
}

.navigation-bar {
  background-color: #fff;
}

.navigation-bar.dark {
  background-color: var(--dark-grey);
}

.navigation-bar.top {
  background-color: #fff;
  border-radius: 5px;
  margin-top: 58px;
  margin-bottom: 124px;
}

.navigation-menu.left {
  float: left;
}

.navigation-menu.on-bottom {
  float: none;
  text-align: center;
}

.brand-text {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 23px;
  font-weight: 400;
  line-height: 26px;
}

.brand-link {
  height: 60px;
  transition: opacity .2s;
}

.brand-link:hover {
  opacity: .66;
}

.brand-link.right {
  float: right;
}

.brand-link.on-top {
  float: none;
  text-align: center;
  display: block;
}

.brand-link.white {
  color: #fff;
}

.brand-link.left-spacing {
  color: #fff;
  margin-left: 15px;
}

.brand-link.left {
  margin-left: 16px;
}

.section {
  background-color: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.section.centered {
  text-align: center;
}

.section.accent {
  background-color: #f3f3f3;
}

.section.dark {
  background-color: var(--dark-grey);
  color: #fff;
}

.hero-slider {
  background-color: #0000;
  height: 455px;
}

.slide {
  background-color: var(--grey);
  padding-top: 82px;
  padding-left: 85px;
  padding-right: 85px;
}

.slide.two {
  background-color: var(--grey);
}

.header-section {
  background-color: var(--dark-grey);
  color: #fff;
  text-align: center;
  padding-top: 104px;
  padding-bottom: 104px;
}

.page-heading {
  margin-top: 0;
  margin-bottom: 11px;
}

.cta-section {
  background-color: var(--grey);
  padding-top: 50px;
  padding-bottom: 50px;
}

.cta-section.centered {
  text-align: center;
}

.cta-section.centered-accented {
  background-color: var(--blue);
  color: #fff;
  text-align: center;
}

.cta-heading {
  margin-top: 3px;
  margin-bottom: 0;
  font-weight: 400;
}

.cta-heading.inline-block {
  margin-top: 0;
  margin-right: 13px;
  display: inline-block;
}

.align-right {
  text-align: right;
}

.white-box {
  background-color: #fff;
  border-radius: 5px;
  padding: 15px;
}

.fixed-image-section {
  color: #fff;
  text-align: center;
  background-image: linear-gradient(#00000040, #00000040), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 50%;
  background-size: auto, 125px;
  background-attachment: scroll, fixed;
  padding: 117px 20px;
}

.hero-section {
  height: 100vh;
  padding-top: 250px;
}

.hero-section.centered {
  text-align: center;
}

.slider-navigation {
  font-size: 11px;
}

.slider-icon-circle {
  width: 50px;
  height: 50px;
  padding: 6px;
  font-size: 33px;
}

.hero-subheading {
  margin-bottom: 18px;
}

.hollow-button {
  border: 2px solid var(--blue);
  color: var(--blue);
  border-radius: 4px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  transition: background-color .3s, border .3s, color .3s;
  display: inline-block;
}

.hollow-button:hover {
  border-color: var(--dark-blue);
  color: var(--dark-blue);
}

.hollow-button.white {
  color: #fff;
  border-color: #fff;
}

.hollow-button.white:hover {
  color: #ffffffb8;
  border-color: #ffffffa3;
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading.centered {
  text-align: center;
}

.main-container {
  background-color: #fff;
  padding-left: 20px;
  padding-right: 20px;
}

.form-label {
  text-transform: uppercase;
  margin-bottom: 6px;
  font-size: 13px;
}

.section-subheading.center {
  text-align: center;
  font-size: 20px;
}

.section-title-group {
  margin-bottom: 62px;
}

.section-title-group.centered {
  text-align: center;
}

.form-field {
  border-style: none;
  border-radius: 3px;
  min-height: 41px;
  margin-bottom: 17px;
  margin-right: 1px;
  transition: box-shadow .15s;
  box-shadow: 0 0 0 1px #00000017;
}

.form-field:focus {
  box-shadow: 0 0 0 2px var(--blue);
}

.form-field.text-area {
  min-height: 110px;
}

.form-field.with-button {
  float: left;
  width: 75%;
  margin-bottom: 0;
}

.form-wrapper.squeezed {
  padding-left: 19%;
  padding-right: 19%;
}

.picture-border {
  border: 5px solid #fff;
  box-shadow: 0 0 0 1px #0000001f;
}

.round-image {
  border-radius: 100px;
  margin-bottom: 13px;
}

.social-button {
  background-color: var(--blue);
  border-radius: 100px;
  margin-bottom: 8px;
  margin-left: 4px;
  margin-right: 4px;
  padding: 8px;
  transition: background-color .15s;
}

.social-button:hover {
  background-color: var(--dark-blue);
  opacity: 1;
}

.social-button.border {
  background-color: #0000;
  border: 1px solid #0000005c;
  padding: 6px;
}

.social-button.facebook {
  background-color: #3c5791;
}

.social-button.twitter {
  background-color: #29a9e8;
}

.social-button.red {
  background-color: #d11529;
}

.social-button.pink {
  background-color: #fc488f;
}

.social-button.pink2 {
  background-color: #ed1081;
}

.social-button.orange {
  background-color: #db4e34;
}

.social-button.vimeo {
  background-color: #1ebae7;
}

.social-button.linkdin {
  background-color: #1485c3;
}

.social-button.instagram {
  background-color: #4b769b;
}

.social-button.tumblr {
  background-color: #2e5270;
}

.social-button.webflow {
  background-color: #3278bd;
}

.social-button.medium {
  background-color: #549f63;
}

.social-icon-link {
  opacity: 1;
  padding: 3px;
  transition: opacity .15s;
}

.social-icon-link:hover {
  opacity: .5;
}

.profile-image {
  border-radius: 100px;
  margin-bottom: 15px;
}

.hero-with-nav {
  background-color: var(--grey);
}

.footer {
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer.center {
  text-align: center;
}

.footer.centered-smaller {
  padding-top: 33px;
  padding-bottom: 33px;
}

.footer.accent {
  background-color: var(--light-grey);
}

.footer.centered-accented {
  background-color: var(--light-grey);
  text-align: center;
}

.float-right {
  float: right;
}

.footer-text {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 16px;
}

.link {
  color: var(--blue);
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
}

.link:hover {
  color: var(--dark-blue);
}

.footer-brand-text {
  font-size: 26px;
  line-height: 33px;
}

.sidemenu-wrapper {
  margin-left: 10px;
  padding-left: 20px;
}

.sidemenu-title {
  margin-bottom: 10px;
}

.sidemenu-link {
  color: #8f8f8f;
  padding-top: 6px;
  padding-bottom: 6px;
  text-decoration: none;
  display: block;
}

.sidemenu-link:hover {
  color: var(--darker-grey);
}

.grid-image {
  margin-bottom: 20px;
}

.info-wrapper {
  margin-bottom: 14px;
}

.info-icon {
  float: left;
}

.info-text {
  margin-left: 34px;
}

.footer-link {
  color: #000000bd;
  margin-bottom: 6px;
  text-decoration: none;
  display: block;
}

.footer-link:hover {
  color: #3b99d9;
}

.footer-link.with-icon {
  margin-left: 30px;
}

.hero-title-wrapper {
  margin-bottom: 155px;
}

.icon-left {
  float: left;
  color: #919191;
  padding: 6px;
}

.text-right {
  margin-left: 49px;
}

.left-navigation {
  float: left;
  background-color: var(--grey);
  width: 20%;
  height: 100vh;
}

.nav-link {
  text-align: center;
  padding: 7px 0;
  display: block;
}

.nav-menu {
  float: none;
}

.logo-link {
  float: none;
  text-align: center;
  margin-top: 216px;
  margin-bottom: 50px;
  display: block;
}

.content {
  float: left;
  width: 80%;
  overflow: hidden;
}

.social-footer {
  text-align: center;
  margin-top: 56px;
}

.grid-fours {
  float: left;
  width: 25%;
  padding: 10px;
}

.tab-menu {
  text-align: center;
  margin-bottom: 40px;
}

.flushed-grid {
  float: left;
  width: 25%;
}

.flushed-grid.thirds {
  width: 33.33%;
}

.flushed-grid.sixths {
  width: 16.66%;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.success-wrapper {
  background-color: var(--green);
  color: #fff;
  border-radius: 5px;
  padding: 31px;
}

.success-message {
  margin-bottom: 0;
}

.error-wrapper {
  background-color: var(--crimson);
  color: #fff;
  border-radius: 5px;
}

.error-message {
  margin-bottom: 0;
}

.social-link-wrapper {
  text-align: center;
}

.background {
  background-color: var(--grey);
}

.custom-container {
  background-color: #fff;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
}

.rich-text h1, .rich-text h3, .rich-text h5, .rich-text h4, .rich-text h6 {
  margin-top: 30px;
}

.image-column {
  text-align: center;
}

.content-column {
  padding-top: 42px;
}

.feature-column, .waterfall-image-column {
  text-align: center;
}

.section-2 {
  background-image: url('../images/top-banner1.jpg');
  background-position: 50%;
  background-size: cover;
  margin-top: 1px;
  padding-top: 174px;
}

.container-2 {
  margin-top: -177px;
}

.image {
  margin-top: 3px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.navbar {
  border-bottom: 2px solid var(--burlywood);
  background-image: linear-gradient(to bottom, var(--black-2), var(--black-2));
  position: sticky;
  top: 0;
}

.nav-link-2 {
  color: #fff;
  padding-left: 29px;
  padding-right: 29px;
  font-size: 14px;
}

.nav-link-2:hover {
  background-image: linear-gradient(to bottom, var(--burlywood), var(--burlywood));
}

.text-block {
  color: #fff;
  font-size: 14px;
}

.icon {
  color: #fff;
}

.dropdown-link {
  background-image: linear-gradient(to bottom, var(--burlywood), var(--burlywood));
}

.dropdown-link:hover {
  color: #fff;
}

.section-3 {
  padding-top: 857px;
}

.container-3 {
  margin-top: -741px;
}

.container-4 {
  margin-top: -701px;
}

.heading {
  cursor: pointer;
}

.paragraph {
  overflow: hidden;
}

.container-5 {
  margin-top: -709px;
}

.main-content, .call-to-action {
  padding-top: 100px;
  padding-bottom: 100px;
}

.centered-container {
  text-align: center;
  flex: 1;
}

.section-4 {
  padding-top: 207px;
}

.div-block {
  justify-content: flex-start;
  width: auto;
  max-width: 1200px;
  height: auto;
  margin-top: -167px;
  margin-left: 112px;
  margin-right: 112px;
  padding-top: 116px;
  display: flex;
}

.heading-3 {
  margin-top: 0;
  margin-bottom: 0;
}

.container-6 {
  margin-top: -154px;
  padding-left: 6px;
  padding-right: 6px;
}

.rich-text-block {
  line-height: 16px;
}

.heading-4 {
  text-align: center;
  font-size: 25px;
}

.div-block-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.nav-link-3 {
  color: var(--white);
  transform-style: preserve-3d;
  margin-top: 16px;
  padding-left: 30px;
  padding-right: 30px;
}

.nav-link-3:hover {
  border-bottom: 3px solid var(--dark-orchid);
  transform: scale3d(1none, 1none, 1none);
}

.nav-link-3.w--current {
  border-style: none none solid;
  border-width: 3px;
  border-color: black black var(--dark-orchid);
  color: var(--white);
}

.navbar-2 {
  background-color: var(--cyan);
  background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--pale-turquoise), #00bdbb);
  position: sticky;
  top: 0;
}

.section-5 {
  background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--light-grey), #9c9c9c);
  padding-top: 52px;
}

.image-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.section-6 {
  padding-top: 166px;
}

.body {
  background-image: url('../images/Depositphotos_319280172_l-2015.jpg');
  background-position: 0 0;
  background-size: cover;
  background-attachment: fixed;
}

.section-7 {
  background-color: #42005d99;
  padding-top: 179px;
  padding-bottom: 38px;
}

.container-7 {
  margin-top: -124px;
}

.container-8 {
  margin-top: -55px;
}

.column {
  justify-content: center;
  margin-top: 11px;
  display: flex;
}

.link-block {
  padding-left: 17px;
  padding-right: 17px;
}

.link-block-2 {
  padding-left: 18px;
  padding-right: 18px;
}

.link-block-3 {
  padding-left: 17px;
  padding-right: 17px;
}

.column-2 {
  margin-top: 11px;
}

.section-8 {
  margin-top: 56px;
  padding-top: 56px;
  padding-bottom: 50px;
}

.background-video {
  margin-top: -159px;
  padding-top: 620px;
}

.container-9 {
  margin-top: -474px;
}

.heading-5 {
  text-align: center;
  font-size: 65px;
  line-height: 75px;
}

.heading-6 {
  text-align: center;
  font-size: 45px;
  font-weight: 300;
  line-height: 50px;
}

.container-10 {
  border-radius: 6px;
  margin-top: -378px;
}

.text-block-2 {
  text-align: center;
  font-size: 20px;
}

.column-3 {
  background-image: url('../images/FB_IMG_1595701331564_2.jpg');
  background-position: 100%;
  background-size: cover;
  padding-top: 320px;
}

.column-4 {
  background-color: var(--white);
  padding-top: 320px;
  padding-left: 12px;
  padding-right: 12px;
}

.text-block-3 {
  color: var(--dark-orchid);
  margin-top: -234px;
  padding: 14px 19px;
  font-size: 20px;
}

.container-11 {
  justify-content: center;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.section-9 {
  background-image: radial-gradient(circle, #d8d8d8, gray);
}

.container-12 {
  margin-top: -115px;
}

.body-2 {
  background-image: url('../images/Depositphotos_319280172_l-2015.jpg');
  background-position: 0 0;
  background-size: cover;
  background-attachment: fixed;
}

.section-10 {
  padding-top: 506px;
  padding-bottom: 71px;
}

.container-13 {
  background-image: linear-gradient(#ffffff75, #ffffff75);
  border-radius: 15px;
  margin-top: -404px;
  padding: 41px 22px;
}

.columns {
  background-color: #ffffffa8;
  border-radius: 14px;
  padding: 18px;
}

.body-3 {
  background-image: url('../images/Depositphotos_319280172_l-2015.jpg');
  background-position: 0 0;
  background-size: cover;
  background-attachment: fixed;
}

.section-11 {
  padding-top: 591px;
  padding-bottom: 31px;
}

.container-14 {
  background-color: #ffffffa8;
  border-radius: 14px;
  margin-top: -493px;
  padding: 43px 41px;
}

.heading-7 {
  color: var(--white);
  font-size: 25px;
}

.text-block-5 {
  color: var(--white);
}

.text-block-6 {
  color: var(--white);
  text-align: right;
}

.text-block-7 {
  color: var(--white);
  text-align: right;
  margin-top: 25px;
}

.link-2 {
  color: #00f1ef;
  font-size: 14px;
}

.text-block-8 {
  color: var(--dark-orchid);
}

.link-block-4 {
  justify-content: center;
  display: flex;
}

.link-block-5 {
  padding-left: 18px;
  padding-right: 18px;
}

.text-block-9 {
  margin-top: 15px;
}

.link-3 {
  color: var(--dark-turquoise);
}

.link-4 {
  color: #00acaa;
}

.section-12 {
  background-color: #ffffff9c;
  padding-top: 197px;
  padding-bottom: 78px;
}

.container-16 {
  margin-top: -168px;
}

.heading-8 {
  color: var(--dark-orchid);
}

.text-block-10 {
  color: var(--black);
  line-height: 24px;
}

.section-13 {
  background-color: #680094cc;
  padding-top: 154px;
  padding-bottom: 59px;
}

.container-17 {
  margin-top: -127px;
}

.heading-9 {
  color: var(--white);
  text-align: center;
  margin-top: 0;
  font-family: Great Vibes, cursive;
  font-size: 45px;
}

.text-block-11 {
  color: var(--white);
}

.column-6 {
  background-image: url('../images/simon-migaj-Yui5vfKHuzs-unsplash.jpg');
  background-position: 50%;
  background-size: cover;
  padding-top: 233px;
}

.column-7 {
  background-image: url('../images/victor-garcia-BiGS_w9t7FU-unsplash.jpg');
  background-position: 0 0;
  background-size: cover;
  padding-top: 233px;
}

.column-8 {
  background-image: url('../images/s-o-c-i-a-l-c-u-t-SJ_a5QWR9Yc-unsplash.jpg');
  background-position: 0 0;
  background-size: cover;
  padding-top: 233px;
}

.container-18 {
  background-color: var(--white);
  padding: 48px 34px;
}

.text-block-12 {
  color: var(--darker-grey);
}

.section-14 {
  padding-bottom: 83px;
}

.italic-text {
  font-weight: 400;
}

.heading-10 {
  color: var(--dark-orchid);
  text-align: center;
  margin-top: -26px;
  font-family: Roboto, sans-serif;
  font-weight: 400;
}

.bold-text {
  text-align: center;
  font-weight: 400;
}

.section-15 {
  padding-top: 218px;
}

.body-4 {
  background-image: url('../images/Depositphotos_319280172_l-2015.jpg');
  background-position: 50%;
  background-size: cover;
}

.section-16 {
  padding-top: 448px;
  padding-bottom: 61px;
}

.text-block-13 {
  margin-top: -11px;
}

.heading-11 {
  text-align: center;
  font-family: Great Vibes, cursive;
}

.section-17 {
  background-color: var(--white);
  padding-top: 239px;
  padding-bottom: 51px;
}

.container-20 {
  margin-top: -222px;
}

.heading-12 {
  text-align: center;
}

.bold-text-2 {
  color: var(--dark-orchid);
  font-weight: 400;
}

.text-block-14, .text-block-15 {
  text-align: center;
}

html.w-mod-js [data-ix="fade-in-bottom-page-loads"] {
  opacity: 0;
  transform: translate(0, 50px);
}

html.w-mod-js [data-ix="fade-in-left-scroll-in"] {
  opacity: 0;
  transform: translate(-50px);
}

html.w-mod-js [data-ix="fade-in-right-scroll-in"] {
  opacity: 0;
  transform: translate(50px);
}

html.w-mod-js [data-ix="fade-in-top-scroll-in"] {
  opacity: 0;
  transform: translate(0, -50px);
}

html.w-mod-js [data-ix="fade-in-bottom-scroll-in"] {
  opacity: 0;
  transform: translate(0, 50px);
}

html.w-mod-js [data-ix="bounce-in-scroll-in"] {
  opacity: 0;
  transform: scale(.6);
}

html.w-mod-js [data-ix="scale-on-scroll"] {
  opacity: 0;
  transform: scale(.01);
}

@media screen and (min-width: 1280px) {
  .section-8 {
    padding-bottom: 61px;
  }

  .container-10 {
    max-width: 1150px;
  }

  .column-3, .column-4 {
    padding-top: 370px;
  }

  .text-block-3 {
    margin-top: -258px;
  }

  .container-12, .container-13, .container-14, .container-15, .container-16, .container-17 {
    max-width: 1150px;
  }

  .column-6, .column-7, .column-8 {
    padding-top: 297px;
  }

  .container-18 {
    max-width: 1150px;
    padding-left: 13px;
    padding-right: 13px;
  }

  .container-19, .container-20 {
    max-width: 1150px;
  }
}

@media screen and (max-width: 991px) {
  .hamburger-button:hover {
    color: var(--blue);
  }

  .hamburger-button.w--open {
    background-color: var(--darker-grey);
  }

  .hamburger-button.left {
    float: left;
  }

  .hamburger-button.white {
    color: #fff;
  }

  .hero-slider {
    height: 400px;
  }

  .form-wrapper.squeezed {
    padding-left: 10%;
    padding-right: 10%;
  }

  .left-navigation {
    float: none;
    width: 100%;
    height: auto;
  }

  .nav-link {
    color: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .nav-menu {
    background-color: var(--darker-grey);
    padding: 17px;
  }

  .logo-link {
    float: left;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 10px;
  }

  .content {
    width: 100%;
    height: auto;
  }

  .social-footer {
    margin-top: 0;
  }

  .content-column {
    padding-top: 0;
  }

  .section-2 {
    padding-top: 153px;
  }

  .image {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .navbar {
    position: relative;
  }

  .menu-button {
    color: #fff;
    font-size: 30px;
  }

  .div-block {
    margin-left: 15px;
    margin-right: 15px;
  }

  .menu-button-2 {
    color: var(--white);
    font-size: 37px;
  }

  .menu-button-2.w--open {
    color: #fff;
    background-color: #c8c8c800;
  }

  .nav-menu-2 {
    background-color: #000000db;
  }

  .container-13 {
    margin-top: -363px;
  }
}

@media screen and (max-width: 767px) {
  .brand-link.on-top {
    float: left;
  }

  .brand-link.left-spacing {
    padding-left: 0;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-slider {
    height: 528px;
  }

  .slide {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .cta-section {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-heading {
    margin-bottom: 10px;
  }

  .form-wrapper.squeezed {
    padding-left: 0;
    padding-right: 9px;
  }

  .picture-border {
    margin-bottom: 13px;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-fours {
    width: 33.33%;
  }

  .image-column {
    margin-bottom: 10px;
  }

  .content-column {
    text-align: center;
    margin-bottom: 13px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .main-content, .call-to-action {
    padding: 40px 20px;
  }

  .column {
    padding-top: 0;
  }

  .column-2 {
    padding-right: 505px;
  }

  .background-video {
    padding-top: 347px;
  }

  .container-9 {
    margin-top: -256px;
  }

  .heading-5 {
    font-size: 45px;
  }

  .heading-6 {
    font-size: 35px;
  }

  .text-block-2 {
    font-size: 18px;
  }

  .column-3 {
    padding-top: 382px;
  }

  .column-4 {
    padding-top: 241px;
  }

  .section-10 {
    padding-left: 18px;
    padding-right: 18px;
  }

  .container-13 {
    margin-top: -395px;
  }

  .text-block-4 {
    margin-top: 28px;
  }

  .section-11 {
    padding-left: 22px;
    padding-right: 22px;
  }

  .heading-7, .text-block-5 {
    text-align: center;
  }

  .text-block-6 {
    text-align: center;
    margin-top: 38px;
  }

  .text-block-7 {
    text-align: center;
  }

  .image-3 {
    margin-top: 53px;
  }

  .text-block-8 {
    text-align: center;
  }

  .image-4 {
    margin-top: 48px;
  }

  .text-block-9 {
    text-align: center;
  }

  .section-12 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section-13 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .column-6 {
    padding-top: 398px;
  }

  .column-7 {
    padding-top: 377px;
  }

  .column-8 {
    padding-top: 391px;
  }

  .section-16 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .section-17 {
    padding-left: 11px;
    padding-right: 11px;
  }

  .text-block-14 {
    padding-left: 13px;
    padding-right: 13px;
    font-size: 14px;
  }
}

@media screen and (max-width: 479px) {
  .button.tab {
    margin-bottom: 9px;
  }

  .hero-slider {
    height: 550px;
  }

  .slide {
    padding-left: 53px;
    padding-right: 53px;
  }

  .grid-fours {
    width: 50%;
  }

  .section-2 {
    padding-top: 98px;
  }

  .container-2 {
    margin-top: -231px;
  }

  .image {
    margin-top: 137px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .centered-container {
    text-align: left;
  }

  .heading-2 {
    margin-bottom: 0;
  }

  .section-7 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .link-block, .link-block-2, .link-block-3 {
    padding-left: 7px;
    padding-right: 7px;
  }

  .background-video {
    margin-top: -160px;
    padding-top: 240px;
  }

  .container-9 {
    margin-top: -131px;
  }

  .heading-5 {
    font-size: 35px;
    line-height: 35px;
  }

  .heading-6 {
    font-size: 30px;
    line-height: 35px;
  }

  .text-block-2 {
    padding-left: 4px;
    padding-right: 4px;
    font-size: 15px;
  }

  .column-3 {
    background-position: 85%;
    padding-top: 253px;
  }

  .container-13 {
    margin-top: -407px;
  }

  .column-5 {
    padding-left: 0;
    padding-right: 0;
  }

  .container-14 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .link-block-5, .link-block-6 {
    padding-left: 7px;
    padding-right: 7px;
  }

  .section-12 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .column-6 {
    padding-top: 260px;
  }

  .column-7 {
    padding-top: 243px;
  }

  .column-8 {
    padding-top: 306px;
  }
}


