@font-face {
  font-family: Arvo;
  src: url('../fonts/Arvo-Italic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Arvo;
  src: url('../fonts/Arvo-BoldItalic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Arvo;
  src: url('../fonts/Arvo-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Arvo;
  src: url('../fonts/Arvo-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sourcesanspro;
  src: url('../fonts/SourceSansPro-Italic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Sourcesanspro;
  src: url('../fonts/SourceSansPro-BlackItalic.ttf') format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Sourcesanspro;
  src: url('../fonts/SourceSansPro-BoldItalic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Sourcesanspro;
  src: url('../fonts/SourceSansPro-Black.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sourcesanspro;
  src: url('../fonts/SourceSansPro-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sourcesanspro;
  src: url('../fonts/SourceSansPro-ExtraLight.ttf') format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sourcesanspro;
  src: url('../fonts/SourceSansPro-LightItalic.ttf') format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Sourcesanspro;
  src: url('../fonts/SourceSansPro-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sourcesanspro;
  src: url('../fonts/SourceSansPro-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sourcesanspro;
  src: url('../fonts/SourceSansPro-ExtraLightItalic.ttf') format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Sourcesanspro;
  src: url('../fonts/SourceSansPro-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sourcesanspro;
  src: url('../fonts/SourceSansPro-SemiBoldItalic.ttf') format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

:root {
  --midnight-blue: #020733;
  --indian-red: #ea4e6e;
  --white-smoke: #e9edf0;
  --white: #fafbfc;
  --white-2: white;
  --dark-slate-grey: #1b4c67;
  --teal: #246f7e;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #333;
  font-family: Arvo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

h1 {
  color: var(--midnight-blue);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Sourcesanspro, sans-serif;
  font-size: 6vw;
  font-weight: 700;
  line-height: 6.5vw;
}

h2 {
  color: var(--midnight-blue);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Sourcesanspro, sans-serif;
  font-size: 3.5vw;
  font-weight: 700;
  line-height: 4vw;
}

h3 {
  color: var(--midnight-blue);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Sourcesanspro, sans-serif;
  font-size: 3vw;
  font-weight: 700;
  line-height: 3.5vw;
}

h4 {
  color: var(--midnight-blue);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Sourcesanspro, sans-serif;
  font-size: 2.5vw;
  font-weight: 700;
  line-height: 3vw;
}

h5 {
  color: var(--midnight-blue);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Sourcesanspro, sans-serif;
  font-size: 2vw;
  font-weight: 700;
  line-height: 2.3vw;
}

h6 {
  color: var(--midnight-blue);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Sourcesanspro, sans-serif;
  font-size: 1.5vw;
  font-weight: 600;
  line-height: 2vw;
}

p {
  color: var(--midnight-blue);
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 28px;
}

a {
  color: var(--indian-red);
  font-family: Sourcesanspro, sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

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

blockquote {
  border-left: 5px solid var(--white-smoke);
  color: var(--midnight-blue);
  margin-bottom: 10px;
  padding: 10px 20px;
  font-family: Sourcesanspro, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.section {
  justify-content: center;
  align-items: center;
  padding: 130px 6%;
  display: flex;
  position: relative;
}

.section.hero {
  background-color: #0000;
  height: 100vh;
  max-height: none;
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
}

.section.light-grey-bg {
  background-color: var(--white);
}

.section.full-width-image {
  height: 800px;
  min-height: 110vh;
  overflow: hidden;
}

.section.min-100vh {
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.section.whitepaper {
  background-color: var(--white);
  padding-bottom: 0;
  overflow: hidden;
}

.section.footer {
  border-top: 2px solid var(--white);
}

.section.hero-inner {
  background-color: #0000;
  height: 53vh;
  max-height: none;
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
}

.section.inner {
  background-color: var(--white-smoke);
  flex-direction: column;
  align-items: center;
  min-height: 50vh;
  padding-top: 0;
}

.section.min-home {
  flex-direction: column;
  align-items: center;
  min-height: 83vh;
  padding-top: 65px;
  padding-bottom: 60px;
}

.container {
  width: 100%;
  max-width: 1440px;
}

.container.relative {
  z-index: 2;
  position: relative;
}

.container.navbar-container {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-content {
  width: 60%;
  margin-bottom: -30px;
}

.button {
  background-color: var(--indian-red);
  color: var(--white-2);
  border-radius: 100px;
  padding: 12px 40px;
}

.button.nav-btn {
  border: 2px solid var(--white);
  color: var(--white-2);
  background-color: #0000;
  border-radius: 100px;
  margin-left: 24px;
  padding-left: 40px;
  padding-right: 40px;
  transition: all .4s;
}

.button.nav-btn:hover {
  background-color: var(--white-2);
  color: var(--indian-red);
}

.button.nav-btn.dark {
  border-color: var(--midnight-blue);
  color: var(--midnight-blue);
}

._40px-height-div {
  height: 40px;
}

.flex {
  display: flex;
}

.flex.start-to-end {
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 100px;
}

.logo-contain {
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  width: 50%;
  margin-top: 0;
  display: flex;
}

.logo-wrap {
  text-align: center;
  width: 33%;
  margin-bottom: 32px;
  padding-left: 10px;
  padding-right: 10px;
}

._50-percent-block {
  width: 50%;
  position: relative;
}

._50-percent-block.written-content {
  margin-top: -16px;
  padding-top: 0;
}

._50-percent-block.written-content-innier {
  margin-top: 0;
  padding-top: 40px;
  padding-right: 20px;
}

._50-percent-block.written-content-inner-no-pad {
  margin-top: 0;
  padding-top: 0;
  padding-right: 20px;
}

.video-highlight-image {
  background-image: url('../images/georgia-mashford-yPtnTO8f1Lo-unsplash.jpeg');
  background-position: 50%;
  background-size: cover;
  border-radius: 1px;
  width: 80%;
  height: 450px;
  min-height: 55vh;
  position: relative;
  box-shadow: 6px 6px 18px 6px #0000000a;
}

.absolute-top-background-color {
  background-color: var(--white-smoke);
  height: auto;
  min-height: 66%;
  position: absolute;
  inset: 0% 0% auto;
}

.hero-text {
  color: var(--white-2);
  font-size: 5vw;
  line-height: 5vw;
}

.lightbox-link {
  z-index: 3;
  background-color: var(--midnight-blue);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  display: flex;
  position: absolute;
  inset: -44px -27.6px auto auto;
}

.play-icon {
  margin-top: -2px;
  margin-right: -8px;
}

.large-image {
  background-image: url('../images/wleding-cork-iron-fencing.jpg');
  background-position: 50% 0;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.large-image._2 {
  background-image: url('../images/coatings-iron.jpg');
}

.max-500-width {
  max-width: 500px;
}

.absolute-bottom-bg-color {
  background-color: var(--white);
  min-height: 34%;
  position: absolute;
  inset: auto 0% 0%;
}

.the-white-paper-contain {
  padding-left: 7%;
  display: flex;
}

.whitepaper-visual-wrap {
  width: 50%;
  position: relative;
}

.top-white-paper {
  z-index: 3;
  background-color: var(--white-2);
  height: auto;
  min-height: 80vh;
  padding: 50px 50px 80px;
  position: relative;
}

.navbar {
  z-index: 1000;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  padding: 20px 3%;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.navbar.fixed {
  background-color: var(--white-2);
  display: flex;
  position: fixed;
  transform: translate(0, -100%);
}

.navbar.fixed.inital-show {
  transform: none;
}

.nav-link {
  color: var(--white);
  margin-left: 14px;
  margin-right: 14px;
  font-size: 18px;
  font-weight: 600;
  transition: all .4s;
}

.nav-link:hover {
  color: var(--indian-red);
}

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

.nav-link.dark:hover {
  color: var(--indian-red);
}

.whitepaper-lines-wrap {
  flex-direction: column;
  padding-top: 50px;
  display: flex;
}

.whitepaper-line {
  background-color: var(--white-smoke);
  height: 13px;
  margin-top: 13px;
  margin-bottom: 13px;
}

.whitepaper-line._1 {
  max-width: 60%;
  margin-bottom: 0;
}

.whitepaper-line._2 {
  max-width: 75%;
}

.whitepaper-line._3 {
  max-width: 95%;
}

.whitepaper-line._4 {
  width: 50%;
  margin-bottom: 0;
}

.whitepaper-line._5 {
  width: 45%;
  margin-bottom: 0;
  margin-left: 5%;
}

.whitepaper-line._6 {
  max-width: 35%;
}

.whitepaper-line._7 {
  max-width: 75%;
}

.whitepaper-line._8 {
  width: 35%;
}

.whitepaper-line._9 {
  width: 60%;
  margin-left: 5%;
}

.whitepaper-line._10 {
  max-width: 65%;
}

.whitepaper-line._11 {
  max-width: 75%;
}

.double-line-wrap {
  flex-direction: row;
  justify-content: flex-start;
  max-width: 85%;
  display: flex;
}

.double-line-wrap._2 {
  max-width: 100%;
}

.bottom-whitepapers {
  z-index: 2;
  background-color: var(--dark-slate-grey);
  width: 60%;
  height: 500px;
  min-height: 55vh;
  position: absolute;
  inset: 0%;
  transform: rotate(-8deg)translate(-43px, 52px);
}

.bottom-whitepapers._2 {
  z-index: 1;
  background-color: var(--teal);
  transform: rotate(-14deg)translate(-81px, 95px);
}

.white-paper-cta {
  flex: 1;
  padding-top: 5%;
  padding-left: 90px;
}

.link-block {
  color: var(--indian-red);
  align-items: center;
  display: flex;
}

.link-block.hero {
  color: var(--white-2);
  transition: all .4s;
}

.link-block.hero:hover {
  color: var(--white-2);
}

.link-circle {
  background-color: #1ca1bb;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-left: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.arrow-leg {
  background-color: var(--white-2);
  width: 25px;
  height: 2px;
  position: relative;
}

.arrow-wing {
  background-color: var(--white-2);
  width: 15px;
  height: 2px;
  position: absolute;
  inset: 0% 0% auto auto;
  transform: translate(3px, -5px)rotate(43deg);
}

.arrow-wing._2 {
  transform: translate(3px, 4px)rotate(-43deg);
}

._55-percent-w {
  width: 55%;
}

.double-images-contain {
  height: 600px;
  min-height: 70vh;
  margin-top: 180px;
  padding-top: 0;
  position: relative;
}

.image-1-wrap {
  z-index: 2;
  width: 60%;
  height: 80%;
  position: absolute;
  inset: -62px 0% auto auto;
  overflow: hidden;
  box-shadow: -3px 10px 20px 5px #0000000d;
}

.image-2-wrap {
  z-index: 1;
  width: 60%;
  height: 90%;
  position: absolute;
  inset: auto auto 0% 0%;
  overflow: hidden;
}

.image-1 {
  background-image: url('../images/wonderlane-boiz-wQG66E-unsplash.jpg');
  background-position: 50%;
  background-size: cover;
  height: 100%;
}

.image-2 {
  background-image: url('../images/christina-wocintechchat-com-dFCOgR91H5M-unsplash-1.jpg');
  background-position: 50%;
  background-size: cover;
  height: 100%;
}

.solutions-contain {
  margin-top: 30px;
  display: flex;
}

.solution-block-wrap {
  width: 33.33%;
  height: 575px;
  min-height: 60vh;
  padding: 18px 18px 18px 0;
}

.solutions-block {
  background-color: var(--dark-slate-grey);
  border-radius: 2px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  position: relative;
}

.solutions-block._2 {
  background-color: var(--midnight-blue);
}

.solutions-block._3 {
  background-color: var(--teal);
}

.soultions-block-text {
  color: var(--white-2);
  font-weight: 400;
  position: relative;
}

.solutions-css-icon-wrap {
  justify-content: center;
  align-items: center;
  width: auto;
  margin-top: 0;
  display: flex;
  position: absolute;
  inset: auto 25% 35% auto;
}

.circle {
  border: 10px solid var(--white-2);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  position: relative;
  top: 100px;
  left: 49px;
}

.circle._2 {
  border-color: var(--white-smoke);
  position: absolute;
  inset: auto auto 0 -68px;
}

.circle._4 {
  position: absolute;
  top: 37px;
  left: 35px;
}

.circle._3 {
  position: absolute;
  top: 96px;
  left: -32px;
}

.circle._5 {
  border-color: var(--white-smoke);
  width: 100px;
  height: 100px;
  position: absolute;
  top: -59px;
  left: 52px;
}

.square {
  border: 10px solid var(--teal);
  border-radius: 3px;
  width: 70px;
  height: 70px;
}

.square._1 {
  width: 120px;
  height: 100px;
  position: absolute;
  inset: 0 -51px auto auto;
}

.square._3 {
  border-color: var(--dark-slate-grey);
  width: 100px;
  height: 60px;
  position: relative;
  top: -29px;
  left: 15px;
}

.square._4 {
  border-color: var(--white-smoke);
  width: 80px;
  height: 80px;
  position: relative;
  top: -34px;
  left: 13px;
}

.square._2 {
  width: 150px;
  height: 100px;
}

.read-more-text {
  color: var(--white-2);
  font-family: Sourcesanspro, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

._50-percent-w {
  width: 50%;
}

.how-it-works-cta {
  justify-content: space-between;
  display: flex;
}

.how-it-works-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: .25fr 1fr;
  padding-top: 120px;
}

.how-it-works-image-wrap {
  border-bottom: 2px solid var(--white-smoke);
  padding-top: 30px;
  padding-bottom: 30px;
}

.how-it-works-image-wrap.last {
  border-bottom-style: none;
}

.how-to-step-wrap {
  border-bottom: 2px solid var(--white-smoke);
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 20px;
}

.how-to-step-wrap.last {
  border-bottom-style: none;
}

.newsletter-form {
  z-index: 2;
  width: 100%;
  max-width: 600px;
  margin-bottom: 0;
  position: relative;
}

.submit-button {
  background-color: var(--indian-red);
  width: auto;
  height: 60px;
  color: var(--white-2);
  border: 3px #000;
  border-radius: 2px;
  padding-left: 46px;
  padding-right: 46px;
  font-family: Sourcesanspro, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  transition: all .35s;
}

.submit-button:hover {
  background-color: var(--teal);
  color: var(--white-2);
}

.footer-social-wrap {
  color: #2f3033;
  padding-top: 24px;
  padding-bottom: 10px;
  display: flex;
}

.copyrights {
  background-color: var(--midnight-blue);
  text-align: left;
  justify-content: center;
  align-items: center;
  padding: 16px 6%;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.copyrights-text {
  color: var(--white-2);
  padding-left: 0%;
  padding-right: 0%;
  font-family: Sourcesanspro, sans-serif;
  font-size: 16px;
}

.copyrights-link {
  color: var(--white-2);
  font-size: 16px;
  transition: all .4s;
}

.copyrights-link:hover {
  color: var(--indian-red);
  text-decoration: none;
}

.footer-grid {
  grid-template-rows: auto;
  grid-template-columns: .75fr .5fr .5fr .5fr;
  width: 100%;
}

.social_media_link {
  padding-right: 25px;
}

.error-message {
  font-size: 16px;
}

.footer-info {
  padding-right: 40px;
}

.footer-link {
  color: var(--midnight-blue);
  text-transform: none;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  transition: all .4s;
  display: block;
}

.footer-link:hover {
  color: var(--indian-red);
  text-transform: none;
  text-decoration: none;
}

.newsletter-form-wrap {
  flex-direction: row;
  padding-top: 10px;
  display: flex;
}

.success-message {
  background-color: var(--white-smoke);
  color: #232222;
  border-radius: 4px;
  padding-top: 50px;
  padding-bottom: 50px;
  font-size: 18px;
  line-height: 24px;
}

.footer-home-link {
  margin-bottom: 30px;
}

.text-field {
  border: 3px none var(--teal);
  background-color: var(--white);
  color: #22201d;
  border-radius: 1px;
  height: 60px;
  margin-bottom: 20px;
  font-family: Sourcesanspro, sans-serif;
  font-size: 16px;
  transition: all .35s;
}

.text-field:hover {
  border-style: none;
  border-color: var(--dark-slate-grey);
  background-color: var(--white-smoke);
}

.text-field:focus {
  border-color: var(--dark-slate-grey);
  background-color: var(--white-smoke);
}

.faq-q-text {
  color: var(--midnight-blue);
  text-align: left;
  margin-top: 0;
  font-family: Sourcesanspro, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5em;
}

.faq-contain {
  flex-wrap: wrap;
  width: 85%;
  padding-top: 12px;
  display: flex;
}

.faq-plus {
  background-color: var(--indian-red);
  border-radius: 0;
  width: 30px;
  height: 5px;
}

.faq-plus-l {
  background-color: var(--indian-red);
  border-radius: 0;
  width: 5px;
  height: 20px;
  position: absolute;
}

.faq-plus-wrap {
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-right: 25px;
  display: flex;
  position: relative;
}

.faq-answer-text {
  width: 100%;
  color: var(--midnight-blue);
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
}

.faq-answer {
  color: #221f1f;
  border-bottom: 1px #c1bfbd66;
  margin-bottom: 12px;
  padding-left: 0;
  overflow: hidden;
}

.faq-question {
  cursor: pointer;
  align-items: center;
  height: auto;
  margin-top: 20px;
  margin-bottom: 0;
  padding-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  display: flex;
}

.faq-wrap {
  max-width: 50%;
  padding-right: 60px;
}

.faq-cta {
  justify-content: space-between;
  margin-bottom: 50px;
  display: flex;
}

.about-video-quote-wrap {
  padding-top: 10px;
}

.heading-wrap {
  margin-left: 0;
  margin-right: 0;
}

._20px-div {
  width: 100%;
  height: 20px;
}

.color-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 33.33%;
  margin: 20px 0;
  display: flex;
}

.colors-contain {
  border-bottom: 1px #9b9b9b4d;
  border-right: 1px #9b9b9b4d;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.color-hex {
  color: var(--midnight-blue);
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.div-block-style-guide {
  padding-top: 20px;
  position: relative;
}

.color-heading {
  color: var(--midnight-blue);
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.buttons-contain {
  flex-direction: column;
  display: flex;
}

.button-wrap {
  width: auto;
  padding: 10px 10px 10px 0;
}

.button-wrap.dark {
  background-color: var(--midnight-blue);
  border-radius: 2px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.color {
  background-color: #f2f4f4;
  border: 1px #7f96913d;
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.color._4056a1 {
  background-color: var(--white-smoke);
}

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

.color.d79922 {
  background-color: var(--teal);
  color: #22201d;
  border-style: none;
}

.color.efe2ba {
  background-color: var(--indian-red);
  border: 1px solid #f7f0dc;
}

.color._22201d {
  background-color: var(--midnight-blue);
  border-color: #f1f1f333;
}

.color.c5cbe3 {
  border: 2px solid var(--white-smoke);
  background-color: var(--white);
}

._20px-height-div {
  height: 20px;
}

.style-block {
  background-color: var(--white);
  width: auto;
  min-width: 80%;
  box-shadow: none;
  border: 3px #22201d;
  border-radius: 0;
  margin: 24px 0;
  padding: 36px 45px;
}

.change-log {
  padding-top: 37px;
  font-size: 18px;
}

.max-700-w, .maxx-700-w {
  max-width: 700px;
}

.instruction-wrapper {
  margin-top: 42px;
  margin-bottom: 42px;
}

.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;
  align-items: center;
  width: auto;
  display: flex;
}

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

.field-label {
  color: var(--midnight-blue);
  margin-bottom: 15px;
  font-family: Sourcesanspro, sans-serif;
  font-size: 16px;
}

._404 {
  font-size: 20vw;
  line-height: 15vw;
}

._404-message {
  margin-bottom: 35px;
}

.white-h3 {
  color: var(--white-2);
}

.mobile-navbar-content {
  display: none;
}

.partners-heading {
  max-width: 45%;
  margin-top: 0;
}

.mobile-menu {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: none;
}

.hero-bg-image {
  background-image: linear-gradient(#000, #0000), url('../images/hayes-engineering-home.jpg');
  background-position: 0 0, 100% 0;
  background-size: auto, cover;
  position: absolute;
  inset: 0%;
}

.div-block-9 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text_link {
  color: #15113b;
  padding-top: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .35s;
}

.text_link:hover {
  color: #15113b;
  padding-left: 5px;
  font-weight: 700;
}

.illustrations-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.image-licensing-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template: "."
                 "."
                 "."
                 "."
                 / 1fr 1fr 1fr;
  width: 100%;
  padding-top: 24px;
}

.image-licensing-grid.logos {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.link {
  color: var(--teal);
}

.hero-text-inner {
  color: var(--white-2);
  margin-top: 60px;
  font-size: 5vw;
}

.grid {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-library {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  justify-items: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.gallery {
  max-height: none;
  margin-top: 20px;
  margin-bottom: 20px;
}

.gallery-img {
  object-fit: contain;
  width: 100%;
  min-width: 320px;
  max-width: none;
  height: 100%;
  max-height: 460px;
}

.gallery-contain {
  margin-bottom: 40px;
}

.gallery-head {
  text-align: center;
  width: auto;
  margin-bottom: 40px;
}

.gares {
  object-fit: contain;
  border-radius: 1px;
  width: auto;
  height: auto;
  min-height: auto;
  max-height: 601px;
  position: relative;
  box-shadow: 6px 6px 18px 6px #0000000a;
}

.image-3 {
  object-fit: cover;
  max-height: 600px;
}

._50-percent-block-image {
  text-align: center;
  width: 50%;
  position: relative;
}

._50-percent-block-image.written-content {
  margin-top: -16px;
  padding-top: 0;
}

._50-percent-block-image.written-content-innier {
  margin-top: 0;
  padding-top: 40px;
}

.grid-gym {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  justify-items: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.mobile-menu-2, .mobile-menu-3 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: none;
}

.quote {
  background-color: var(--indian-red);
  border-radius: 34px;
  padding: 20px 38px;
}

.pay {
  padding-top: 40px;
  padding-bottom: 20px;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 54px;
    line-height: 64px;
  }

  h2 {
    font-size: 42px;
    line-height: 54px;
  }

  h3 {
    font-size: 30px;
    line-height: 40px;
  }

  h4 {
    font-size: 24px;
    line-height: 34px;
  }

  h5 {
    font-size: 18px;
    line-height: 26px;
  }

  h6 {
    font-size: 16px;
    line-height: 24px;
  }

  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .section.hero {
    max-height: 720px;
  }

  .section.light-grey-bg {
    padding: 70px 4%;
  }

  .section.full-width-image {
    height: 500px;
    min-height: 60vh;
  }

  .section.min-100vh {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .section.other-pages {
    padding-top: 95px;
  }

  .section.hero-inner {
    max-height: 720px;
  }

  .section.inner, .section.min-home {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .button.nav-btn {
    margin-left: 0;
    margin-right: 30px;
    padding-left: 26px;
    padding-right: 26px;
  }

  .button.nav-btn.mobile {
    border-color: var(--midnight-blue);
    color: var(--midnight-blue);
    text-align: center;
    margin-top: 24px;
  }

  ._40px-height-div {
    height: 30px;
  }

  .logo-contain {
    width: 50%;
    margin-top: 40px;
  }

  .logo-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  ._50-percent-block.written-content, ._50-percent-block.written-content-innier, ._50-percent-block.written-content-inner-no-pad {
    margin-top: 0;
    padding-top: 18px;
  }

  .video-highlight-image {
    width: 90%;
    min-height: auto;
  }

  .absolute-top-background-color {
    min-height: 100%;
  }

  .lightbox-link {
    width: 70px;
    height: 70px;
    inset: auto 9% 6% auto;
  }

  .max-500-width {
    max-width: 400px;
  }

  .absolute-bottom-bg-color {
    min-height: 0%;
    display: none;
  }

  .the-white-paper-contain {
    flex-direction: column-reverse;
    align-items: center;
    padding-left: 0%;
  }

  .whitepaper-visual-wrap {
    width: 70%;
    margin-top: 60px;
    left: 43px;
  }

  .top-white-paper {
    min-height: auto;
  }

  .navbar {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .navbar.fixed {
    transform: translate(0, -100%);
  }

  .nav-links-wrap {
    display: none;
  }

  .nav-link.mobile {
    color: var(--midnight-blue);
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: 0;
    font-size: 24px;
    display: block;
  }

  .white-paper-cta {
    padding-left: 0;
  }

  .link-circle {
    width: 70px;
    height: 70px;
  }

  ._55-percent-w {
    width: 75%;
  }

  .double-images-contain {
    height: 450px;
    min-height: 40vh;
    margin-top: 120px;
  }

  .solutions-contain {
    flex-wrap: wrap;
  }

  .solution-block-wrap {
    width: 100%;
    height: 500px;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 24px;
  }

  .solutions-block {
    padding: 50px;
  }

  .solutions-css-icon-wrap {
    bottom: 32%;
  }

  .circle {
    width: 100px;
    height: 100px;
  }

  .circle._5 {
    width: 80px;
    height: 80px;
  }

  ._50-percent-w {
    width: 75%;
  }

  .how-it-works-cta {
    flex-direction: column;
  }

  .how-it-works-grid {
    padding-top: 40px;
  }

  .how-it-works-image-wrap {
    padding-right: 36px;
  }

  .newsletter-form {
    z-index: 3;
    align-self: flex-start;
    max-width: none;
    margin-top: 24px;
  }

  .submit-button {
    background-color: var(--indian-red);
    color: var(--white-2);
    font-size: 20px;
  }

  .footer-social-wrap {
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    padding-top: 26px;
    padding-bottom: 0;
  }

  .footer-grid {
    grid-template-rows: auto auto;
  }

  .social_media_link {
    padding-left: 15px;
    padding-right: 15px;
  }

  .social_media_link.first {
    padding-left: 0;
  }

  .faq-q-text {
    font-size: 18px;
  }

  .faq-contain {
    width: 100%;
    padding-top: 0;
  }

  .faq-answer-text {
    width: 100%;
  }

  .faq-answer {
    margin-bottom: 0;
    padding-left: 0;
  }

  .faq-cta {
    flex-direction: column;
  }

  .heading-wrap {
    margin-left: 0;
    margin-right: 0;
  }

  .style-block {
    margin-left: 0;
    margin-right: 0;
    padding: 20px;
  }

  ._404 {
    font-size: 25vw;
  }

  .mobile-navbar-content {
    align-items: center;
    display: flex;
  }

  .hamburger-wrap {
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
  }

  .hamburger-line {
    background-color: var(--white-2);
    width: 40px;
    height: 2px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 0;
  }

  .hamburger-line._1.dark, .hamburger-line._2.dark, .hamburger-line._3.dark {
    background-color: var(--midnight-blue);
  }

  .partners-heading {
    max-width: 45%;
  }

  .mobile-menu {
    background-color: var(--white-2);
    flex-direction: column;
    width: 45%;
    padding: 72px;
    display: flex;
    position: fixed;
    inset: 0%;
    transform: translate(-100%);
  }

  .mobile-menu-logo {
    margin-bottom: 36px;
  }

  .hero-text-inner {
    font-size: 10vw;
  }

  .grid-library {
    grid-template-columns: 1fr;
  }

  .gallery-head {
    width: 75%;
  }

  .gares {
    width: 90%;
    min-height: auto;
  }

  ._50-percent-block-image.written-content, ._50-percent-block-image.written-content-innier {
    margin-top: 0;
    padding-top: 18px;
  }

  .mobile-menu-2, .mobile-menu-3 {
    background-color: var(--white-2);
    flex-direction: column;
    width: 45%;
    padding: 72px;
    display: flex;
    position: fixed;
    inset: 0%;
    transform: translate(-100%);
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 54px;
  }

  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section.hero {
    max-height: none;
  }

  .section.light-grey-bg {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section.full-width-image {
    height: 400px;
    min-height: auto;
  }

  .section.footer {
    padding-bottom: 110px;
  }

  .section.other-pages {
    padding-top: 80px;
  }

  .section.hero-inner {
    max-height: none;
  }

  .hero-content {
    width: 70%;
  }

  ._40px-height-div {
    height: 20px;
  }

  .flex.start-to-end {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .logo-contain {
    justify-content: flex-start;
    width: 100%;
  }

  ._50-percent-block {
    width: 100%;
  }

  .video-highlight-image {
    background-position: 50% 0;
    width: 100%;
    height: 320px;
    min-height: auto;
  }

  .absolute-top-background-color {
    min-height: 100%;
  }

  .lightbox-link {
    inset: auto 5% 6% auto;
  }

  .max-500-width {
    max-width: none;
  }

  .absolute-bottom-bg-color {
    min-height: 0%;
  }

  .whitepaper-visual-wrap {
    width: 80%;
    left: 52px;
  }

  .top-white-paper {
    height: 390px;
    min-height: auto;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .whitepaper-lines-wrap {
    padding-top: 30px;
  }

  .whitepaper-line {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .bottom-whitepapers._2 {
    transform: rotate(-14deg)translate(-81px, 95px);
  }

  ._55-percent-w {
    width: 100%;
  }

  .double-images-contain {
    height: 300px;
  }

  .solution-block-wrap {
    height: auto;
    padding-right: 0;
  }

  .solutions-block, .solutions-block._2 {
    padding: 30px;
  }

  .solutions-block._3 {
    padding: 29px;
  }

  .solutions-css-icon-wrap {
    bottom: 30%;
  }

  .circle {
    width: 80px;
    height: 80px;
    top: 77px;
  }

  .circle._2 {
    left: -48px;
  }

  .circle._3 {
    top: 86px;
  }

  .square._1 {
    width: 100px;
    height: 80px;
  }

  .square._2 {
    width: 140px;
    height: 90px;
  }

  .read-more-text {
    padding-top: 25px;
  }

  ._50-percent-w {
    width: 100%;
  }

  .how-it-works-grid {
    flex-direction: column;
    display: flex;
  }

  .how-it-works-image-wrap {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .newsletter-form {
    margin-top: 0;
  }

  .submit-button {
    background-color: var(--indian-red);
    color: var(--white-2);
  }

  .copyrights-text {
    font-size: 14px;
    line-height: 24px;
  }

  .copyrights-link {
    font-size: 14px;
  }

  .footer-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr .5fr .5fr .5fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .footer-link {
    font-size: 18px;
  }

  .faq-plus-l {
    background-color: var(--indian-red);
  }

  .faq-answer {
    padding-left: 0;
  }

  .faq-wrap {
    max-width: 100%;
    padding-right: 0;
  }

  .about-video-quote-wrap {
    margin-bottom: 50px;
  }

  .color-wrapper {
    align-items: flex-start;
    width: 50%;
  }

  .colors-contain {
    flex-wrap: wrap;
  }

  .div-block-style-guide {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .buttons-contain {
    flex-flow: column wrap;
  }

  .button-wrap {
    width: 100%;
  }

  ._20px-height-div {
    height: 20px;
  }

  .style-block {
    padding: 20px;
  }

  .instruction-wrapper {
    text-align: left;
  }

  .utility-page-wrap {
    padding-left: 30px;
    padding-right: 30px;
  }

  ._404 {
    font-size: 30vw;
    line-height: 25vw;
  }

  .logo {
    max-width: 90%;
  }

  .partners-heading {
    max-width: none;
  }

  .mobile-menu {
    width: 75%;
  }

  .div-block-9 {
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 16px;
  }

  .image-licensing-grid.logos {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .hero-text-inner {
    font-size: 13vw;
  }

  .gallery-head {
    width: 100%;
  }

  .gares {
    background-position: 50% 0;
    width: 100%;
    height: 320px;
    min-height: auto;
  }

  ._50-percent-block-image {
    width: 100%;
  }

  .mobile-menu-2, .mobile-menu-3 {
    width: 75%;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    text-align: center;
    font-size: 48px;
    line-height: 52px;
  }

  h2 {
    text-align: center;
    font-size: 30px;
    line-height: 38px;
  }

  h3 {
    text-align: center;
    font-size: 24px;
    line-height: 30px;
  }

  h4 {
    text-align: center;
    font-size: 20px;
    line-height: 26px;
  }

  h5, h6, p {
    text-align: center;
  }

  ul {
    text-align: center;
    padding-left: 20px;
  }

  ol {
    padding-left: 20px;
  }

  blockquote {
    text-align: center;
  }

  .section.hero {
    background-position: 50% 100%;
  }

  .section.min-100vh {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section.hero-inner {
    background-position: 50% 100%;
  }

  .section.inner, .section.min-home {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-content {
    width: 100%;
    max-width: 300px;
  }

  .button.nav-btn {
    margin-left: 0;
    margin-right: 18px;
    padding: 9px 20px;
    font-size: 16px;
  }

  .button.nav-btn.mobile {
    font-size: 20px;
  }

  ._40px-height-div {
    height: 20px;
  }

  .flex.start-to-end {
    align-items: center;
  }

  .logo-contain {
    justify-content: center;
  }

  .logo-wrap {
    width: 50%;
    padding-left: 24px;
    padding-right: 24px;
  }

  ._50-percent-block, .video-highlight-image {
    width: 100%;
  }

  .absolute-top-background-color {
    min-height: 100%;
  }

  .hero-text {
    text-align: left;
  }

  .lightbox-link {
    inset: auto 6% 8% auto;
  }

  .absolute-bottom-bg-color {
    min-height: 0%;
  }

  .whitepaper-visual-wrap {
    width: 75%;
    margin-top: 40px;
    left: 35px;
  }

  .top-white-paper {
    height: 310px;
    padding: 24px 30px 40px;
  }

  .navbar {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .nav-link.mobile {
    margin-bottom: 26px;
    font-size: 20px;
  }

  .whitepaper-lines-wrap {
    padding-top: 24px;
  }

  .whitepaper-line {
    margin-top: 7px;
    margin-bottom: 7px;
  }

  .bottom-whitepapers {
    transform: rotate(-8deg)translate(-19px, 52px);
  }

  .bottom-whitepapers._2 {
    transform: rotate(-14deg)translate(-43px, 95px);
  }

  .link-block {
    flex-direction: column;
    justify-content: center;
  }

  .link-block.hero {
    align-items: flex-start;
  }

  .link-circle {
    margin-top: 13px;
    margin-left: 0;
  }

  .double-images-contain {
    height: 250px;
    min-height: auto;
    margin-top: 80px;
  }

  .image-1-wrap {
    top: -31px;
  }

  .image-2 {
    background-position: 35%;
  }

  .solution-block-wrap {
    height: auto;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 24px;
    padding-right: 0;
  }

  .solutions-block {
    padding: 24px;
  }

  .solutions-css-icon-wrap {
    bottom: 35%;
  }

  .circle._3 {
    top: 75px;
  }

  .circle._5 {
    top: -30px;
  }

  .square._2 {
    height: 80px;
  }

  .read-more-text {
    text-align: center;
    padding-top: 30px;
  }

  .how-it-works-image-wrap {
    align-self: center;
  }

  .newsletter-form {
    margin-top: 0;
  }

  .footer-social-wrap {
    padding-top: 6px;
    padding-bottom: 14px;
  }

  .copyrights-link {
    text-align: left;
    display: inline-block;
  }

  .footer-grid {
    grid-template-rows: auto auto auto;
  }

  .footer-paragrph {
    text-align: left;
  }

  .footer-link {
    text-align: left;
    font-size: 18px;
  }

  .footer-link.w--current {
    font-size: 18px;
  }

  .newsletter-form-wrap {
    flex-direction: column;
  }

  .footer-home-link.w--current {
    margin-bottom: 10px;
  }

  .text-field, .text-field:hover {
    border-right-style: none;
  }

  .faq-answer-text {
    text-align: left;
    margin-bottom: 0;
    font-weight: 400;
  }

  .faq-answer {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 0;
  }

  .faq-question {
    margin-top: 0;
    padding-bottom: 5px;
  }

  .faq-wrap {
    padding-top: 0;
  }

  .about-video-quote-wrap {
    margin-bottom: 24px;
  }

  .color-wrapper {
    align-items: center;
    width: 100%;
  }

  .colors-contain {
    justify-content: center;
  }

  .div-block-style-guide {
    align-items: center;
  }

  .buttons-contain {
    flex-flow: column wrap;
    width: 100%;
  }

  .button-wrap {
    width: 100%;
  }

  .button-wrap.dark {
    margin-top: 16px;
  }

  .style-block {
    padding: 20px;
  }

  .instruction-wrapper {
    text-align: center;
  }

  .utility-page-content {
    width: 90%;
  }

  ._404 {
    font-size: 40vw;
    line-height: 35vw;
  }

  .logo {
    max-width: 75%;
  }

  .newsletter-heading {
    text-align: left;
  }

  .hamburger-line {
    width: 25px;
    margin-top: 3px;
    margin-bottom: 3px;
  }

  .mobile-menu {
    width: 85%;
    padding: 70px 46px 46px;
  }

  .div-block-9 {
    align-items: center;
  }

  .illustrations-grid {
    grid-column-gap: 30px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .image-licensing-grid.logos {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .hero-text-inner {
    text-align: left;
    font-size: 19vw;
  }

  .gares, ._50-percent-block-image {
    width: 100%;
  }

  .mobile-menu-2, .mobile-menu-3 {
    width: 85%;
    padding: 70px 46px 46px;
  }
}

#w-node-_777584fb-2558-8206-2e21-3b66afcdcbf5-afcdcbd9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: start end;
}

#w-node-bd550012-bef8-7222-5db7-b68c02364b51-16a64a99, #w-node-bd550012-bef8-7222-5db7-b68c02364b52-16a64a99, #w-node-bd550012-bef8-7222-5db7-b68c02364b53-16a64a99 {
  align-self: center;
}

#w-node-bd550012-bef8-7222-5db7-b68c02364b54-16a64a99 {
  place-self: center;
}

#w-node-bd550012-bef8-7222-5db7-b68c02364b55-16a64a99 {
  align-self: center;
}

#w-node-bd550012-bef8-7222-5db7-b68c02364b56-16a64a99 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: center;
}

#w-node-_318280bd-fe7d-4f63-92a0-7ed4ceac9f95-16a64a99 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4b580795-6085-3ccf-bde0-aa0207a858bc-99a64a94 {
  justify-self: stretch;
}

#w-node-_43e8f8cd-337a-8f18-b8b3-2f940ef8c998-99a64a94 {
  align-self: auto;
}

#w-node-_05b2b54b-88d9-cfe1-62d0-8234e9847a81-99a64a94 {
  justify-self: stretch;
}

#w-node-_7e124dd5-6600-7a58-8509-ed8ca9163667-99a64a94 {
  align-self: auto;
}

#w-node-_4b580795-6085-3ccf-bde0-aa0207a858bc-a09e1377 {
  justify-self: stretch;
}

#w-node-_43e8f8cd-337a-8f18-b8b3-2f940ef8c998-a09e1377 {
  align-self: auto;
}

#w-node-_05b2b54b-88d9-cfe1-62d0-8234e9847a81-a09e1377 {
  justify-self: stretch;
}

#w-node-_7e124dd5-6600-7a58-8509-ed8ca9163667-a09e1377 {
  align-self: auto;
}

#w-node-_0b93e5a2-6dd1-9097-fb01-0ba12b6e0383-a09e1377 {
  justify-self: stretch;
}

#w-node-_3563ba1f-b420-edbd-290f-191230abd510-a09e1377 {
  align-self: auto;
}

#Gallery.w-node-e87c0e7b-0438-3358-5e9d-d21e999d92b0-908b8d51, #Gallery.w-node-c00849b1-a5da-4e8e-279e-dc95bf681b53-908b8d51 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#gallery.w-node-_438d9219-a7b1-bb1c-2232-5e54db0986dd-908b8d51 {
  justify-self: center;
}

#Gallery.w-node-_7ca5decb-302b-d789-10da-90379ddcc858-3fc7df9f, #Gallery.w-node-_7ca5decb-302b-d789-10da-90379ddcc85a-3fc7df9f, #Gallery.w-node-_12ff81f5-fd9b-9fe3-6316-8f5dac67d82e-69b96d7a, #Gallery.w-node-e87c0e7b-0438-3358-5e9d-d21e999d92b0-c76fb0d6 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_777584fb-2558-8206-2e21-3b66afcdcbe8-afcdcbd9 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_777584fb-2558-8206-2e21-3b66afcdcbf5-afcdcbd9 {
    grid-area: 2 / 1 / 3 / 5;
    place-self: start end;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_777584fb-2558-8206-2e21-3b66afcdcbdc-afcdcbd9 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_777584fb-2558-8206-2e21-3b66afcdcbe8-afcdcbd9 {
    grid-area: 1 / 3 / 2 / 5;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_777584fb-2558-8206-2e21-3b66afcdcbdc-afcdcbd9 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_777584fb-2558-8206-2e21-3b66afcdcbe8-afcdcbd9 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_777584fb-2558-8206-2e21-3b66afcdcbf5-afcdcbd9 {
    grid-area: 3 / 1 / 4 / 5;
  }
}


@font-face {
  font-family: 'Arvo';
  src: url('../fonts/Arvo-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Arvo';
  src: url('../fonts/Arvo-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Arvo';
  src: url('../fonts/Arvo-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Arvo';
  src: url('../fonts/Arvo-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sourcesanspro';
  src: url('../fonts/SourceSansPro-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}