:root {
  --white: white;
  --black: #111103;
  --off-white: #edeced;
  --green: #46b894;
  --midnight-blue: #203151;
  --medium-aquamarine: #348588;
}

.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 {
  background-color: var(--white);
  color: var(--black);
  text-align: left;
  flex-direction: column;
  font-family: Open Sans, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  display: flex;
}

h1 {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Paytone One, sans-serif;
  font-size: 3em;
  font-weight: 400;
  line-height: 1.5;
}

h2 {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Paytone One, sans-serif;
  font-size: 2.5em;
  font-weight: 400;
  line-height: 1.5;
}

h3 {
  color: var(--off-white);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Paytone One, sans-serif;
  font-size: 2.25em;
  font-weight: 400;
  line-height: 1.4;
}

h4 {
  color: var(--off-white);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Paytone One, sans-serif;
  font-size: 1.9em;
  font-weight: 400;
  line-height: 1.4;
}

h5 {
  color: var(--off-white);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Paytone One, sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.4;
}

h6 {
  color: var(--off-white);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Paytone One, sans-serif;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.4;
}

p {
  color: var(--off-white);
  max-width: 800px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1em;
  font-weight: 300;
}

a {
  color: var(--green);
  font-family: Open Sans, sans-serif;
  font-size: 1em;
  font-weight: 400;
  text-decoration: none;
  transition: color .3s;
}

a:hover {
  color: var(--black);
}

ul, ol {
  color: var(--black);
  text-align: left;
  margin-top: 25px;
  margin-bottom: 25px;
  padding-left: 40px;
  font-size: 1em;
  font-weight: 300;
}

li {
  margin-top: 5px;
  margin-bottom: 5px;
}

img {
  max-width: 100%;
  display: inline-block;
}

blockquote {
  border-left: 5px solid var(--green);
  color: var(--off-white);
  max-width: 600px;
  margin-top: 35px;
  margin-bottom: 35px;
  padding: 25px 20px;
  font-size: 18px;
  line-height: 22px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
  font-size: 1em;
  font-weight: 300;
}

.section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}

.section.blue {
  z-index: 10;
  background-color: #000;
  overflow: hidden;
}

.section.green {
  background-color: #000;
  padding-top: 65px;
  padding-bottom: 150px;
}

.section.top-aligned {
  justify-content: flex-start;
  padding-left: 35px;
  padding-right: 35px;
}

.section.gradient {
  background-image: linear-gradient(139deg, var(--green), var(--midnight-blue));
}

.section.overflow {
  overflow: hidden;
}

.section.no-padding {
  padding-top: 0;
}

.container {
  z-index: 20;
  flex-flow: column wrap;
  align-items: flex-start;
  width: 100%;
  max-width: 1300px;
  min-height: 50px;
  display: flex;
  position: relative;
}

.container.left-aligned {
  align-items: flex-start;
  min-height: auto;
}

.container.horizontal {
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.container.centered {
  align-items: center;
}

.container.employee {
  width: auto;
}

.container.job-listing-date {
  flex-direction: row;
  min-height: auto;
  margin-top: 15px;
  margin-bottom: 25px;
}

.container.job-info {
  align-items: flex-start;
  position: sticky;
  top: 120px;
}

.container.sticky {
  width: auto;
  position: sticky;
  top: 120px;
}

.container.blue {
  background-color: #0082cc;
  justify-content: center;
  padding-bottom: 10px;
  padding-left: 35px;
  padding-right: 35px;
}

.rich-text {
  text-align: left;
  flex-direction: column;
  margin-top: 35px;
}

.rich-text h1, .rich-text h3, .rich-text h2, .rich-text h4, .rich-text h5, .rich-text h6 {
  color: #000;
  font-family: Merriweather, serif;
}

.rich-text blockquote {
  color: var(--black);
  font-family: Merriweather, serif;
  font-weight: 300;
}

.rich-text p {
  color: var(--black);
  font-family: Merriweather, serif;
}

.rich-text.bottom-margin {
  margin-bottom: 100px;
}

.button {
  z-index: 50;
  color: var(--white);
  background-color: #e71096;
  border-radius: 5px;
  padding: 13px 25px;
  font-family: Merriweather, serif;
  font-size: 25px;
  font-weight: 400;
  transition: padding-right .4s, padding-left .4s, background-color .4s;
  position: relative;
}

.button:hover {
  background-color: var(--midnight-blue);
  color: #fff;
  padding-left: 35px;
  padding-right: 35px;
}

.button.nav {
  z-index: 200;
  text-transform: capitalize;
  background-color: #0082cc;
  border-radius: 5px;
  margin-top: 0;
  margin-left: 10px;
  font-family: Paytone One, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 25px;
}

.button.secondary {
  background-color: #0082cc;
  border-radius: 5px;
  font-family: Paytone One, sans-serif;
}

.button.secondary:hover {
  background-color: var(--medium-aquamarine);
}

.button.centered {
  justify-content: center;
  display: flex;
}

.sticky-nav {
  z-index: 100;
  background-color: #000;
  justify-content: center;
  min-height: 105px;
  padding: 20px;
  display: flex;
  position: sticky;
  inset: 0% 0% auto;
}

.nav-grid {
  grid-template: "Logo Navigation"
  / .5fr 1fr;
  place-items: center;
  width: 100%;
}

.logo-link {
  width: 150px;
}

.logo-link.w--current {
  width: 200px;
  display: flex;
}

.logo {
  width: 100%;
}

.dropdown {
  color: var(--off-white);
  margin-left: 0;
  margin-right: 0;
  padding-left: 12px;
  padding-right: 12px;
  font-family: Poiret One, sans-serif;
  font-size: 1.1em;
}

.dropdown-toggle {
  color: var(--off-white);
  font-family: Open Sans, sans-serif;
  font-weight: 300;
  transition: color .3s;
}

.dropdown-toggle:hover {
  color: var(--green);
}

.dropdown-list {
  background-color: #f4eef7;
}

.dropdown-list.w--open {
  background-color: var(--off-white);
  padding: 15px 30px;
}

.dropdown-link {
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 0;
  font-family: Open Sans, sans-serif;
  font-weight: 300;
  transition-duration: .3s;
}

.dropdown-link:hover {
  color: var(--green);
}

.nav-link {
  color: var(--off-white);
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  font-family: Paytone One, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  display: flex;
}

.nav-link:hover {
  color: #e71096;
}

.nav-link.w--current {
  color: #e71096;
  font-family: Paytone One, sans-serif;
  font-size: 25px;
}

.nav-link.w--current:hover {
  color: #e71096;
}

.nav-container {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-height: 50px;
  display: flex;
}

.right-hero-image {
  z-index: 15;
  object-fit: cover;
  position: absolute;
  inset: 54% 0% 0% 66%;
  box-shadow: 0 20px 20px 5px #20315140;
}

.card {
  color: #111103;
  background-color: #fff;
  width: 100%;
  min-height: 100%;
  padding: 25px 25px 75px;
  position: relative;
  box-shadow: 0 10px 20px #afafaf40;
}

.card.blog {
  z-index: 50;
  grid-column-gap: 25px;
  grid-row-gap: 16px;
  background-color: var(--white);
  text-align: left;
  border-radius: 10px;
  grid-template-rows: auto;
  grid-template-columns: .25fr .75fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  max-width: none;
  padding: 40px 35px 50px;
  font-size: 17px;
  transition: background-color .3s, color .3s;
  display: grid;
}

.card.blog:hover {
  color: var(--green);
}

.card.our-mission {
  z-index: 25;
  background-color: #000;
  border-radius: 10px;
  flex-direction: row;
  align-items: stretch;
  min-height: auto;
  padding-bottom: 25px;
  padding-left: 35px;
  padding-right: 35px;
}

.card.donate {
  z-index: 25;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  padding-top: 15px;
  padding-bottom: 25px;
  display: flex;
  top: 242px;
}

.card.employee {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  max-height: 300px;
  padding-bottom: 25px;
  display: flex;
}

.card.blog {
  z-index: 20;
  padding-bottom: 25px;
  transition: background-color .3s;
  display: block;
}

.card.blog:hover {
  background-color: var(--off-white);
}

.card.sticky {
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  min-height: auto;
  display: flex;
  position: sticky;
  top: 125px;
}

.card-image {
  object-fit: cover;
  width: 100%;
  margin-bottom: 15px;
  display: block;
}

.card-title {
  color: var(--black);
  border-left: 5px solid #e71096;
  margin-top: 5px;
  padding-left: 15px;
  font-size: 1.5em;
}

.card-title.small {
  border-left-color: #0082cc;
  font-family: Paytone One, sans-serif;
  font-size: 1.3em;
  font-weight: 400;
}

.collection-wrapper {
  width: 100%;
  position: relative;
}

.text-block {
  font-family: Open Sans, sans-serif;
  font-size: 1em;
  font-weight: 300;
}

.text-block.left-margin {
  margin-left: 6px;
}

.text-block.white-background {
  background-color: var(--white);
  padding: 7px 15px;
}

.green-background {
  z-index: 25;
  color: var(--white);
  background-color: #0082cc;
  border-radius: 10px;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding: 5px 25px;
  font-family: Merriweather, serif;
  font-weight: 900;
}

.green-background.bottom-space {
  margin-bottom: 0;
}

.green-background.blog-title {
  position: relative;
  top: -50px;
}

.h2-medium {
  font-size: 1.7em;
}

.footer {
  text-align: center;
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 25px 50px;
  display: flex;
}

.footer-heading {
  color: var(--off-white);
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Paytone One, sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
}

.footer-link {
  color: var(--off-white);
  margin-bottom: 10px;
  font-family: Open Sans, sans-serif;
  font-weight: 400;
  text-decoration: none;
  display: block;
}

.footer-link:hover {
  color: #e71096;
  text-decoration: none;
}

.footer-link.w--current {
  font-family: Open Sans, sans-serif;
  font-weight: 700;
}

.footer-link.w--current:hover {
  color: #0082cc;
}

.footer-container {
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  max-width: 1000px;
  min-height: 50px;
  margin-bottom: 50px;
  display: flex;
}

.footer-list {
  margin-top: 15px;
  padding-left: 0;
}

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

.our-mission-grid {
  grid-column-gap: 35px;
  flex: none;
  grid-template: "Title Image"
  / 1fr 2fr;
  place-items: center;
  width: 100%;
  max-height: 500px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.our-mission-background {
  z-index: 5;
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
}

.our-mission-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 35px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.article-list-grid {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.article-grid {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template: "Image"
                 "Card"
                 / .5fr;
  grid-auto-columns: 1fr;
  place-items: center;
  position: relative;
}

.article-image {
  z-index: 5;
  object-fit: cover;
  border: 10px solid #fff;
  width: 100%;
  max-width: none;
  height: 85%;
  padding: 15px;
  position: static;
  left: -25px;
}

.empty-state {
  background-color: var(--green);
  color: #fff;
  padding: 15px 35px;
  font-family: Open Sans, sans-serif;
  font-size: 1em;
}

.faq-div {
  cursor: pointer;
  align-items: center;
  width: 100%;
  min-height: 50px;
  padding-top: 25px;
  padding-bottom: 15px;
  padding-right: 30px;
  position: relative;
}

.faq-title {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 1.3em;
  font-weight: 700;
}

.expand-icon {
  margin-right: 15px;
}

.faq-container {
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  max-width: 1300px;
  display: flex;
}

.faq-paragraph {
  color: var(--black);
}

.faq-list {
  width: 100%;
}

.faq-item {
  margin-top: 10px;
  margin-bottom: 10px;
}

.faq-tag {
  font-size: 16px;
  font-weight: 300;
  position: absolute;
  inset: 25px 25px auto auto;
}

.left-border {
  color: var(--black);
  border-left: 5px solid #0082cc;
  padding-left: 15px;
  font-weight: 300;
  transition: border-color .3s;
}

.left-border:hover {
  border-left-color: var(--off-white);
}

.navbar {
  display: none;
}

.hero {
  background-color: var(--medium-aquamarine);
  background-image: linear-gradient(135deg, #0082cc 50%, #e71096 50%);
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-heading {
  z-index: 20;
  background-color: var(--green);
  color: var(--off-white);
  max-width: 600px;
  padding: 15px 20px;
  font-family: PT Serif, serif;
  font-size: 2.5em;
  position: relative;
  box-shadow: 14px 14px 20px 5px #20315140;
}

.middle-hero-image {
  z-index: 10;
  width: 700px;
  max-width: none;
  position: absolute;
  top: 82px;
  left: auto;
  right: 30%;
  box-shadow: 0 20px 20px 5px #20315140;
}

.left-hero-image {
  z-index: 5;
  position: absolute;
  inset: 68% 45% 14% auto;
  box-shadow: 0 20px 20px 5px #20315140;
}

.hero-container {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1300px;
  display: flex;
}

.green {
  color: #e71096;
  margin-top: 0;
}

.story-grid {
  z-index: 20;
  grid-row-gap: 20vh;
  grid-template-rows: auto auto auto auto;
  grid-template-areas: "Title-1 Paragraph-1"
                       "Title-2 Paragraph-2"
                       "Title-3 Paragraph-3"
                       "Title-4 Paragraph-4";
  place-items: center start;
  width: 100%;
  max-width: 1300px;
  margin-top: 150px;
  margin-bottom: 150px;
  padding-left: 35px;
  padding-right: 35px;
}

.horizontal-line {
  z-index: 10;
  background-color: #0082cc;
  width: 110%;
  height: 5px;
  position: absolute;
  top: 50%;
  bottom: 50%;
}

.our-story-card {
  z-index: 25;
  background-color: var(--white);
  width: 100%;
  padding: 25px 35px;
  position: relative;
}

.our-story-title {
  border-left: 10px solid #0082cc;
  margin-top: 100px;
  padding-left: 15px;
  font-family: Paytone One, sans-serif;
  font-size: 3.5em;
  font-weight: 900;
}

.faq-wrapper {
  width: 100%;
  max-width: 1300px;
  margin-top: 75px;
  margin-bottom: 50px;
  display: block;
}

.faq-wrapper.no-margin {
  margin-top: 0;
}

.card-image-wrapper {
  flex-direction: row;
  min-width: 100%;
  min-height: 500px;
  margin-right: 25px;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.event-grid {
  grid-column-gap: 35px;
  grid-template: "Events Paragraph"
  / 1fr 1.5fr;
  width: 100%;
  min-height: 500px;
  margin-top: 100px;
}

.large-image {
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
  max-width: none;
  height: 100%;
  overflow: hidden;
}

.event-card {
  background-color: #0082cc;
  width: 100%;
  min-height: 75px;
  padding: 15px 25px;
  transition: padding-top .3s, padding-bottom .3s;
}

.event-card:hover {
  padding-top: 25px;
  padding-bottom: 25px;
}

.event-title {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.2em;
}

.event-heading {
  background-color: #000;
  width: 100%;
  margin-top: 0;
  margin-bottom: 5px;
  padding: 15px 25px;
  font-size: 2em;
}

.event-details {
  color: var(--white);
  font-weight: 300;
}

.fixed-hero-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 45vh;
  box-shadow: inset 0 -20px 20px #11110340;
}

.current-event-grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template: "Title Title"
                 "Date Location"
                 "Register Register"
                 "Description Description"
                 "Upcoming Upcoming"
                 / 1fr 1fr;
  align-items: start;
  width: 100%;
  max-width: 900px;
  position: relative;
  top: -51px;
}

.event-info-container {
  background-color: var(--midnight-blue);
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  margin-bottom: 10px;
  padding: 10px 20px;
  display: flex;
}

.event-info-container.centered {
  background-color: #000;
  justify-content: center;
  margin-bottom: 0;
}

.contact-grid {
  grid-template-rows: auto;
  grid-template-areas: "Image Information";
  place-items: center;
  width: 100%;
}

.about-us-title {
  font-size: 3.5em;
}

.guiding-word {
  background-color: var(--medium-aquamarine);
  margin-left: 5px;
  margin-right: 5px;
  padding: 6px 15px;
}

.about-us-image {
  object-fit: cover;
  width: 100%;
  height: 90%;
}

.about-us-card {
  background-color: #000;
  width: 100%;
  padding-bottom: 50px;
  padding-left: 35px;
  padding-right: 35px;
  position: relative;
  left: -10%;
}

.contact-block {
  margin-top: 50px;
}

.field-label {
  color: var(--white);
  font-size: 1em;
  font-weight: 300;
}

.text-field {
  height: 3.5em;
  margin-bottom: 30px;
  padding: 10px 25px;
  font-size: 1em;
  font-weight: 300;
  transition: background-color .3s;
}

.text-field:hover, .text-field:focus {
  background-color: var(--off-white);
}

.text-field.password {
  margin-bottom: 0;
}

.contact-form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: "Name Email"
                 "Message Message"
                 "Button Button"
                 / 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.guiding-words-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.about-us-grid {
  grid-column-gap: 35px;
  grid-template: "Images"
                 "Text"
                 / 1fr;
  align-items: stretch;
  width: 100%;
  max-width: 1300px;
  margin-top: 50px;
  position: relative;
}

.spacer {
  width: 100%;
  height: 25px;
}

.hero-image {
  background-image: url('../images/IMG_9260.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-height: 60vh;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
  box-shadow: inset 0 -20px 20px #00000040;
}

.employee-list {
  grid-column-gap: 35px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  margin-top: 50px;
  margin-bottom: 45px;
  display: grid;
}

.employee-list.featured {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 75px;
}

.employee-image {
  width: 150px;
  position: relative;
  top: -46px;
  left: -39px;
}

.employee-image.large {
  width: 200px;
  margin-bottom: 15px;
  position: static;
}

.employee-name {
  color: var(--black);
  border-left: 4px solid #0082cc;
  margin-bottom: 10px;
  padding-left: 15px;
  font-family: Paytone One, sans-serif;
  font-size: 1.1em;
}

.employee-role {
  font-size: 1em;
  font-weight: 300;
}

.employee-role.green {
  background-color: var(--green);
  color: var(--white);
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 5px 15px;
}

.employees-wrapper {
  width: 100%;
}

.employee-email {
  font-weight: 300;
}

.job-listing {
  color: #e71096;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5em;
}

.jobs-list {
  grid-column-gap: 16px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 35px;
  margin-bottom: 150px;
  display: grid;
}

.job-card-cta {
  color: var(--black);
  border-left: 5px solid #0082cc;
  padding-left: 15px;
  font-size: 1em;
  font-weight: 300;
  position: absolute;
  inset: auto auto 25px 25px;
}

.job-description-grid {
  grid-template: "Description Employer-info"
  / 2fr 1fr;
  place-items: start;
  width: 100%;
  max-width: 1300px;
  position: relative;
}

.back-link {
  color: var(--black);
  margin-bottom: 25px;
  font-weight: 300;
  position: static;
  inset: 0% auto auto 0%;
}

.back-link:hover {
  color: var(--green);
}

.blog-list {
  grid-column-gap: 16px;
  grid-row-gap: 50px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.blog-list.featured {
  grid-row-gap: 10px;
  margin-top: 0;
}

.blog-item {
  grid-column-gap: 35px;
  grid-row-gap: 16px;
  grid-template: "Card Image"
  / 1fr .75fr;
  grid-auto-columns: 1fr;
  align-items: center;
  max-height: 400px;
  display: grid;
}

.blog-image {
  z-index: 10;
  object-fit: cover;
  width: 100%;
  height: 90%;
  position: relative;
  left: -80px;
}

.blog-list-grid {
  grid-template: "Blog-cards Recommended"
  / 1fr .25fr;
  align-items: start;
  width: 100%;
  max-width: 1300px;
  margin-top: 25px;
  margin-bottom: 50px;
}

.employee-grid {
  grid-template-columns: 1fr 1.5fr;
  align-items: start;
  width: 100%;
  margin-top: 25px;
}

.blog-post-grid {
  grid-column-gap: 35px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  width: 100%;
  max-width: 1300px;
  margin-bottom: 100px;
}

.faq-grid {
  grid-template: "Nav FAQ"
  / 1fr 2.5fr;
  align-items: start;
  width: 100%;
  max-width: 1300px;
}

.faq-link {
  color: #000;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 3px 15px;
  transition: background-color .3s, color .3s;
}

.faq-link:hover {
  color: var(--white);
  background-color: #0082cc;
}

.faq-link:focus {
  background-color: var(--green);
  color: var(--white);
}

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

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

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

._404-paragraph {
  margin-top: 25px;
}

._404-image {
  margin-bottom: 15px;
}

.white-link {
  color: var(--white);
  text-decoration: underline;
}

.success-message {
  color: var(--white);
  background-color: #0082cc;
  font-family: Paytone One, sans-serif;
}

.error-message {
  color: var(--white);
  background-color: #f85255;
  font-weight: 300;
}

.color-3 {
  background-color: var(--off-white);
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 200px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 25px;
  display: flex;
}

.color-1 {
  background-color: var(--green);
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 200px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 25px;
  display: flex;
}

.style-guide-grid {
  grid-row-gap: 100px;
  grid-template: "Main-heading Main-heading"
                 "Title-1 Area-1"
                 "Title-2 Area-2"
                 "Title-3 Area-3"
                 "Title-4 Area-4"
                 / .5fr 1fr;
  align-items: start;
  width: 100%;
  margin-top: 25px;
  margin-bottom: 50px;
}

.color-2 {
  background-color: var(--medium-aquamarine);
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 200px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 25px;
  display: flex;
}

.color-5 {
  background-color: var(--black);
  border: 3px solid #333533;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 200px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 25px;
  display: flex;
}

.dark {
  color: var(--black);
  font-family: Open Sans, sans-serif;
  font-weight: 600;
}

.color-4 {
  background-color: var(--midnight-blue);
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 200px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 25px;
  display: flex;
}

.changelog-grid {
  width: 100%;
}

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

.thin-link {
  color: #000;
  font-weight: 300;
}

.made-by-wrapper {
  color: #355070;
  background-color: #fff;
  min-width: 200px;
  padding: 1em 2em;
  font-size: .8em;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s, right .2s, bottom .2s, box-shadow .2s;
  position: fixed;
  inset: auto 15px 15px auto;
  box-shadow: 4px 4px #2b2d42;
}

.made-by-wrapper:hover {
  box-shadow: none;
  color: #e56b6f;
  text-decoration: none;
  bottom: 9px;
  right: 9px;
}

.made-by-text {
  color: var(--midnight-blue);
  margin-top: 0;
  margin-bottom: 0;
}

.left-content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  margin-left: 75px;
  margin-right: 75px;
  display: flex;
}

.color {
  color: #e71096;
  font-family: Paytone One, sans-serif;
  font-size: 43px;
  font-weight: 900;
}

.black-block {
  background-color: #000;
  background-image: url('../images/IMG_9260.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50vw;
  height: 100%;
}

.h1 {
  color: #000;
  text-transform: capitalize;
  margin-top: 10px;
  font-family: Merriweather, serif;
  font-size: 55px;
  line-height: 65px;
}

.left-hero {
  border: 1px #000;
  border-right: 1px solid #c4c4c4;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding-bottom: 105px;
  display: flex;
  position: relative;
}

.paragraph-hero {
  color: #000;
  font-family: Open Sans, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
}

.btn-wrapper {
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.logo-section {
  background-color: #0082cc;
  justify-content: space-between;
  width: 100%;
  padding: 40px 75px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.hero-btn-2 {
  color: #fff;
  text-transform: capitalize;
  background-color: #000;
  border: 2px solid #000;
  border-radius: 10px;
  margin-top: 0;
  padding: 15px 25px;
  font-family: Paytone One, sans-serif;
  font-weight: 400;
  transition: all .2s;
}

.hero-btn-2:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.hero-section {
  justify-content: space-between;
  min-height: 90vh;
  display: flex;
}

.title {
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Merriweather, serif;
  font-weight: 600;
}

.hero-btn {
  color: #fff;
  text-transform: capitalize;
  background-color: #0082cc;
  border: 2px solid #0082cc;
  border-radius: 10px;
  margin-top: 0;
  margin-right: 20px;
  padding: 15px 25px;
  font-family: Paytone One, sans-serif;
  font-weight: 400;
  transition: all .2s;
}

.hero-btn:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.logo-2 {
  max-width: 100px;
}

.hero-right {
  background-image: url('../images/lycs-architecture-U2BI3GMnSSE-unsplash-min.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  height: 90vh;
  display: flex;
  overflow: hidden;
}

.heading, .heading-2, .heading-3, .heading-4, .heading-5, .heading-6 {
  font-family: Merriweather, serif;
}

.button-2 {
  color: #fafafc;
  text-align: center;
  text-transform: capitalize;
  background-color: #0082cc;
  border-radius: 8px;
  padding: 12px 40px;
  font-family: Merriweather, serif;
  font-size: 16px;
  font-weight: 900;
  transition: box-shadow .2s cubic-bezier(.165, .84, .44, 1), transform .2s cubic-bezier(.165, .84, .44, 1);
}

.button-2:hover {
  transform: translate(2px, -2px);
  box-shadow: 2px 2px #b9dfc6;
}

.section-2 {
  padding: 96px 32px;
}

.section-2.light-grey {
  background-color: #fff;
}

.top-title {
  color: #3e8156;
  margin-bottom: 12px;
}

.about-info-left {
  flex: 0 auto;
  min-width: 540px;
  position: sticky;
  top: 24px;
}

.spacer-huge {
  width: 64px;
  height: 64px;
}

.about-image-right {
  object-fit: cover;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  flex: 0 auto;
  width: 100%;
  max-height: 730px;
}

.container-2 {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.about-layout {
  grid-column-gap: 64px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: start;
  display: grid;
  position: relative;
}

.heading-7 {
  color: #e71096;
}

.text-block-2 {
  margin-bottom: 20px;
  font-family: Merriweather, serif;
  font-size: 20px;
  font-weight: 300;
}

.heading-8 {
  font-family: Paytone One, sans-serif;
  font-weight: 400;
}

.paragraph {
  font-weight: 400;
}

.link {
  color: #e71096;
  font-weight: 700;
  transition-property: none;
}

.link:hover {
  color: #ff009f;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.empty-state-2 {
  background-color: #0000;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.section-blog-featured {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-padding {
  padding: 10px 2.5rem;
}

.blog_list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.section-blog-all-posts {
  padding-top: 40px;
  padding-bottom: 60px;
}

.padding-bottom {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.heading-9 {
  color: #000;
}

.heading-10 {
  color: #000;
  text-transform: uppercase;
  margin-top: 0;
}

.blog_image-link {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: .75rem;
  width: 100%;
  min-height: 500px;
  margin-bottom: .25rem;
  overflow: hidden;
}

.blog_image {
  width: 100%;
  min-height: 2px;
  transition: transform .25s ease-out;
}

.blog_image:hover {
  transform: scale(1.1);
}

.blog_title-link {
  margin-bottom: .5rem;
}

.blog_title {
  color: #000;
  font-size: 1.5rem;
  line-height: 1.5;
}

.button-icon {
  color: #0d1317;
  align-items: center;
  display: flex;
}

.button-icon-arrow {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 1rem;
  margin-left: .75rem;
  display: flex;
}

.paragraph-2 {
  color: #000;
  font-weight: 400;
}

.text-block-4 {
  font-weight: 800;
}

.paragraph-3 {
  color: #000;
  font-weight: 400;
}

.text-caps {
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
}

.hero-section-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text {
  color: #000;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 28px;
}

.form-grid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
}

.success-text {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.button-3 {
  text-transform: capitalize;
  background-color: #0082cc;
  border: 2px solid #0082cc;
  border-radius: 5px;
  margin-top: 10px;
  padding: 15px 20px;
  font-weight: 700;
  transition: box-shadow .2s;
  position: relative;
  box-shadow: inset 0 0 100px 100px #0000;
}

.button-3:hover {
  box-shadow: inset 0 0 100px 100px #0003;
}

.success-message-2 {
  text-align: left;
  background-color: #0082cc;
}

.heading-1 {
  color: #000;
  text-align: center;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.1;
}

.form-group {
  margin-bottom: 12px;
}

.hero-form {
  text-align: left;
  flex-direction: column;
  display: flex;
}

.form-block {
  margin-top: 35px;
  display: none;
}

.opt-in-content {
  max-width: 550px;
  padding: 60px 25px;
}

.form-input {
  text-transform: capitalize;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  height: 50px;
  margin-bottom: 0;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 600;
}

.form-input::placeholder {
  color: #22252599;
}

.hero-image-2 {
  width: 100%;
  height: 100%;
}

.hero-grid {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  align-items: center;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.success-heading {
  color: #fff;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 2em;
  font-style: normal;
  text-decoration: none;
}

.section-3 {
  padding-top: 85px;
  padding-bottom: 85px;
}

.section-3.bg-grey-1 {
  background-color: #f8f6f4;
}

.section-3.no-space {
  padding-top: 60px;
}

.card-body {
  padding: 24px;
}

.heading-11 {
  color: #2d2d2d;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

.card-image-2 {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.card-2 {
  border: 1px solid #ecebea;
  border-radius: 6px;
  flex-direction: column;
  min-width: 150px;
  display: flex;
  position: relative;
}

.row {
  flex-wrap: wrap;
  width: 100%;
  display: flex;
}

.feature-grid {
  grid-column-gap: 25px;
  grid-row-gap: 40px;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  text-align: center;
  max-width: 600px;
  margin-bottom: 65px;
  margin-left: auto;
  margin-right: auto;
}

.wrapper {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.heading-12 {
  color: #000;
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 500;
  line-height: 42px;
}

.play-icon {
  text-align: center;
  align-self: center;
  width: 85px;
  margin-left: 0;
  padding-left: 0;
}

.video-content {
  background-image: url('../images/blond-hair-camera-chairs-2041394-min.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  display: flex;
}

.video-content.shadow {
  background-image: linear-gradient(#0003, #0003), url('../images/cropped-BW-2019-Photo-edited.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 6px;
  height: 25vh;
  min-height: 35vh;
  box-shadow: 11px 11px 25px #00000059;
}

.div-play-button {
  z-index: 2;
  text-align: center;
  cursor: pointer;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.green-oval-image {
  width: 124%;
  max-width: 800%;
  height: 124%;
  position: absolute;
  inset: -11% auto auto -13%;
}

.video-grid-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  display: flex;
}

.lightbox-link {
  color: #fff;
  text-align: left;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
  position: relative;
  left: auto;
}

.lightbox-link:hover {
  color: #cfa54b;
}

.video-grid {
  grid-column-gap: 25px;
  grid-row-gap: 40px;
  flex-direction: column;
  grid-template-rows: auto;
  justify-content: center;
  display: flex;
}

.div-play-block {
  z-index: 2;
  background-color: #000000bf;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.div-play-block.topo {
  background-color: #0082cc;
  flex-direction: row;
}

.lightbox-link-2 {
  max-width: 25vw;
}

.text-block-5, .text-block-6 {
  font-weight: 800;
}

.link-2 {
  color: #0082cc;
  font-weight: 800;
  text-decoration: underline;
}

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

.column-2 {
  padding-left: 5px;
}

.collection-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  place-items: center;
  display: grid;
}

.sponsor-heading {
  color: #e71096;
  text-align: center;
}

.container-3 {
  display: none;
}

@media screen and (max-width: 991px) {
  .section {
    padding: 0 25px 60px;
  }

  .section.green {
    padding-top: 50px;
  }

  .section.overflow {
    padding-bottom: 0;
  }

  .container {
    justify-content: center;
    align-items: center;
  }

  .container.job-listing-date {
    margin-top: 10px;
  }

  .container.job-info {
    position: static;
  }

  .container.sticky {
    width: 100%;
    position: relative;
    top: auto;
  }

  .button.nav {
    margin-left: 0;
  }

  .sticky-nav {
    display: none;
  }

  .nav-grid {
    grid-column-gap: 16px;
    grid-row-gap: 35px;
    text-align: center;
    flex-direction: column;
    grid-template: "."
                   "."
                   "."
                   / 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    justify-items: stretch;
    display: flex;
  }

  .logo-link {
    width: 150px;
    display: none;
    position: absolute;
    inset: 45px auto auto 25px;
  }

  .logo-link.w--current {
    position: static;
  }

  .logo {
    width: 100%;
    max-width: none;
  }

  .dropdown {
    padding-left: 0;
  }

  .dropdown-toggle {
    color: var(--black);
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    font-family: Paytone One, sans-serif;
    font-size: 1.5em;
    font-weight: 400;
  }

  .dropdown-toggle.w--open {
    color: var(--green);
  }

  .dropdown-list {
    border-left: 5px solid var(--green);
  }

  .dropdown-list.w--open {
    background-color: #0000;
    padding-left: 0;
  }

  .dropdown-link {
    margin-left: 15px;
  }

  .dropdown-link.w--current {
    color: var(--green);
  }

  .nav-link {
    color: #fff;
    text-transform: uppercase;
    margin-left: 0;
    margin-right: 0;
    font-family: Paytone One, sans-serif;
    font-size: 1.5em;
    font-weight: 400;
  }

  .nav-link.w--current {
    color: #e71096;
    text-transform: uppercase;
  }

  .nav-container {
    justify-content: center;
    padding-left: 25px;
    padding-right: 25px;
    position: relative;
  }

  .right-hero-image {
    background-image: linear-gradient(146deg, #afafaf7d, #ffffffb0);
    width: 400px;
    top: 77%;
    left: auto;
    right: 4%;
  }

  .card.blog {
    min-height: auto;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 25px;
  }

  .card.blog:hover {
    background-color: #fff;
  }

  .card.our-mission {
    max-width: none;
    min-height: auto;
  }

  .card.employee {
    max-height: none;
  }

  .card.sticky {
    margin-bottom: 25px;
    position: static;
  }

  .card-title.small {
    font-size: 1.2em;
  }

  .h2-medium {
    font-size: 1.5em;
  }

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

  .our-mission-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template: "Image"
                   "Title"
                   / 1fr;
    align-items: center;
    max-height: none;
  }

  .article-list-grid {
    grid-row-gap: 35px;
    grid-template-columns: 1fr;
  }

  .article-grid {
    grid-row-gap: 0px;
    grid-template: "Image"
                   "Card"
                   / 1fr;
  }

  .article-image {
    border-bottom-style: none;
    max-height: 400px;
    left: auto;
  }

  .faq-title {
    font-size: 1.2em;
  }

  .faq-container {
    width: 85%;
  }

  .faq-tag {
    font-weight: 300;
  }

  .navbar {
    z-index: 200;
    background-color: #000;
    align-items: center;
    width: 100vw;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    position: sticky;
    inset: 0% 0% auto;
    box-shadow: 0 20px 20px #11110326;
  }

  .menu-icon {
    width: 100%;
    max-width: none;
    display: block;
  }

  .menu-button {
    z-index: 110;
    background-color: #0082cc;
    border-radius: 5px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin-left: 20px;
    padding: 10px;
    display: flex;
    position: absolute;
    inset: 25% 5% auto auto;
  }

  .menu-button.w--open {
    background-color: #e71096;
  }

  .hero {
    flex-direction: column;
  }

  .hero-heading {
    font-size: 2.5em;
  }

  .middle-hero-image {
    top: 3%;
    left: 35%;
  }

  .left-hero-image {
    top: 57%;
    left: -8%;
  }

  .hero-container {
    padding-left: 35px;
  }

  .story-grid {
    grid-template-columns: .5fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .horizontal-line {
    width: 120%;
  }

  .our-story-title {
    font-size: 2.5em;
  }

  .event-grid {
    grid-row-gap: 0px;
    grid-template: "Paragraph"
                   "Events"
                   / 1fr;
    margin-top: 25px;
  }

  .large-image {
    height: auto;
  }

  .event-heading {
    font-size: 1.3em;
  }

  .event-details {
    font-size: 1em;
  }

  .nav-menu {
    z-index: 100;
    background-color: #000;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    padding-top: 100px;
    padding-left: 45px;
    padding-right: 45px;
    display: flex;
    position: fixed;
    inset: 0%;
  }

  .icon {
    inset: 0% -11% 0% auto;
  }

  .contact-grid {
    grid-row-gap: 0px;
    grid-template: "Image"
                   "Information"
                   / 1fr;
    margin-top: 25px;
  }

  .about-us-title {
    text-align: center;
  }

  .guiding-word {
    font-size: 2em;
  }

  .about-us-image {
    height: 100%;
    max-height: 500px;
  }

  .about-us-card {
    left: 0%;
  }

  .about-us-grid {
    grid-template: "Images"
                   "Text"
                   / 1fr;
    margin-top: 50px;
  }

  .employee-list {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 65px;
  }

  .employee-image {
    width: 100px;
    top: -30px;
    left: -30px;
  }

  .job-description-grid {
    grid-template: "Employer-info"
                   "Description"
                   / 1fr;
  }

  .back-link {
    top: -30px;
  }

  .blog-list {
    margin-top: 25px;
  }

  .blog-list.featured {
    margin-bottom: 50px;
  }

  .blog-item {
    max-height: none;
  }

  .blog-list-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "Recommended"
                         "Blog-cards";
    margin-top: 25px;
  }

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

  .blog-post-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template: "Nav"
                   "FAQ"
                   / 1fr;
    margin-top: 25px;
  }

  .style-guide-grid {
    grid-row-gap: 50px;
    grid-template: "Main-heading"
                   "Title-1"
                   "Area-1"
                   "Title-2"
                   "Area-2"
                   "Title-3"
                   "Area-3"
                   "Title-4"
                   "Area-4"
                   / 1fr;
    justify-items: start;
  }

  .made-by-wrapper {
    inset: auto 15px 15px auto;
  }

  .left-content-wrapper {
    align-items: center;
  }

  .color {
    text-align: center;
  }

  .black-block {
    width: 100vw;
    display: block;
  }

  .h1 {
    text-align: center;
  }

  .left-hero {
    border-right-style: none;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 100px;
  }

  .paragraph-hero {
    text-align: center;
  }

  .hero-section {
    flex-direction: column;
  }

  .hero-right {
    background-image: url('../images/IMG_9260.jpg');
    background-position: 50%;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 50vh;
  }

  .mobile-logo {
    width: 250px;
    position: relative;
    inset: 0%;
  }

  .section-2 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-info-left {
    position: static;
  }

  .spacer-huge {
    width: 48px;
    height: 48px;
  }

  .about-layout {
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .paragraph {
    text-align: center;
  }

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

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .text {
    text-align: center;
  }

  .opt-in-content {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .hero-image-2 {
    width: auto;
    height: auto;
    max-height: 450px;
  }

  .hero-grid {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .section-3 {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .feature-grid {
    grid-column-gap: 20px;
  }

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

  .play-icon {
    margin-left: 0;
  }

  .video-content.shadow {
    height: 400px;
  }

  .div-play-button {
    width: 80px;
    height: 80px;
  }

  .video-grid-content {
    padding: 0 30px 75px;
  }

  .lightbox-link {
    margin-left: 0;
    margin-right: 0;
  }

  .video-grid {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .div-play-block {
    background-color: #cfa54b;
  }

  .lightbox-link-2 {
    max-width: 50vw;
  }

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

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

  h2 {
    font-size: 2.2em;
  }

  h3 {
    font-size: 2em;
  }

  h4 {
    font-size: 1.7em;
  }

  .section.green {
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 17px;
  }

  .section.top-aligned {
    padding-left: 25px;
    padding-right: 25px;
  }

  .container.horizontal {
    flex-wrap: wrap;
  }

  .container.timeline {
    align-items: center;
  }

  .container.job-listing-date {
    min-height: auto;
    margin-bottom: 20px;
  }

  .rich-text {
    margin-bottom: 50px;
  }

  .button {
    font-size: 1em;
  }

  .sticky-nav {
    position: relative;
  }

  .nav-grid {
    grid-row-gap: 25px;
  }

  .logo-link.w--current {
    width: 150px;
    margin-bottom: 25px;
    display: flex;
  }

  .dropdown-toggle {
    font-size: 1.3em;
  }

  .right-hero-image {
    top: auto;
    bottom: 6%;
    right: -12%;
  }

  .card.blog {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .card-title {
    font-size: 1.3em;
  }

  .card-title.small {
    font-size: 1.1em;
  }

  .green-background {
    color: var(--white);
    font-size: 2em;
  }

  .footer {
    padding: 70px 20px;
  }

  .footer-container {
    flex-direction: column;
  }

  .list-container {
    padding-top: 25px;
    padding-left: 0;
  }

  .faq-container {
    width: 100%;
    margin-top: 15px;
  }

  .faq-tag {
    display: none;
    position: static;
  }

  .menu-button {
    top: 25px;
    right: 25px;
  }

  .hero {
    padding-left: 25px;
    padding-right: 25px;
  }

  .middle-hero-image {
    width: 500px;
    top: 15%;
    left: -8%;
    right: auto;
  }

  .left-hero-image {
    width: 300px;
    inset: auto auto 24% 5%;
  }

  .hero-container {
    align-items: center;
    max-width: 100%;
    padding-left: 0;
  }

  .green {
    font-size: 1.9em;
  }

  .story-grid {
    grid-row-gap: 50px;
    grid-template: "Title-1"
                   "Paragraph-1"
                   "Title-2"
                   "Paragraph-2"
                   "Title-3"
                   "Paragraph-3"
                   "Title-4"
                   "Paragraph-4"
                   / 1fr;
  }

  .horizontal-line {
    width: 5px;
    height: 150px;
  }

  .our-story-card {
    margin-bottom: 50px;
  }

  .our-story-title {
    font-size: 2em;
  }

  .card-image-wrapper {
    height: 200px;
  }

  .event-grid {
    grid-row-gap: 0px;
    grid-template: "Paragraph"
                   "Events"
                   / 1fr;
  }

  .event-title {
    font-size: 1.1em;
  }

  .nav-menu {
    padding-top: 100px;
  }

  .about-us-title {
    font-size: 2.5em;
  }

  .guiding-word {
    margin-top: 0;
    font-size: 1.7em;
  }

  .employee-list, .employee-list.featured {
    grid-template-columns: 1fr;
  }

  .employee-image.large {
    width: 150px;
  }

  .job-listing {
    font-size: 1.3em;
  }

  .blog-item {
    grid-row-gap: 0px;
    grid-template: "Image"
                   "Card"
                   / 1fr;
  }

  .blog-image {
    height: auto;
    max-height: 300px;
    left: auto;
  }

  .made-by-wrapper {
    font-size: .8em;
  }

  .left-content-wrapper {
    margin-left: 40px;
    margin-right: 40px;
  }

  .logo-section {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-left: 40px;
    padding-right: 40px;
  }

  .logo-2 {
    max-width: 100px;
  }

  .section-2 {
    padding: 64px 24px;
  }

  .about-info-left {
    min-width: auto;
  }

  .spacer-huge {
    width: 40px;
    height: 40px;
  }

  .about-image-right {
    object-fit: cover;
    max-height: 100vw;
  }

  .page-padding {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

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

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .blog_image-link {
    margin-bottom: 1.25rem;
  }

  .heading-1 {
    margin-bottom: 16px;
    font-size: 40px;
  }

  .opt-in-content {
    width: 90%;
    padding: 50px 0;
  }

  .card-body {
    padding: 15px;
  }

  .heading-11 {
    font-size: 20px;
  }

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

  .heading-12 {
    margin-bottom: 16px;
    font-size: 32px;
    line-height: 38px;
  }

  .video-content.shadow {
    height: 250px;
  }

  .video-grid-content {
    padding-bottom: 50px;
  }

  .video-grid {
    grid-row-gap: 0px;
  }

  .column {
    padding-right: 0;
  }

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

  .collection-list {
    flex-direction: column;
    display: flex;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 1.8em;
  }

  h2 {
    font-size: 1.7em;
  }

  h3 {
    font-size: 1.5em;
  }

  h4 {
    font-size: 1.3em;
  }

  h5 {
    font-size: 1.2em;
  }

  h6 {
    font-size: 1.1em;
  }

  .section {
    padding: 0 15px;
  }

  .section.blue {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section.top-aligned {
    padding-top: 50px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .container {
    justify-content: center;
    align-items: center;
  }

  .sticky-nav {
    padding: 0;
  }

  .nav-grid {
    grid-row-gap: 15px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    justify-content: center;
    display: flex;
  }

  .logo-link.w--current {
    width: 100px;
    margin-bottom: 0;
  }

  .dropdown-toggle {
    font-size: 1.1em;
  }

  .nav-link {
    color: #fff;
    text-transform: uppercase;
    font-family: Paytone One, sans-serif;
    font-size: 1.5em;
    font-weight: 400;
  }

  .nav-link.w--current {
    color: #e71096;
    text-transform: uppercase;
    font-family: Paytone One, sans-serif;
    font-size: 1.5em;
    font-weight: 400;
  }

  .nav-container {
    padding-left: 10px;
    padding-right: 40px;
  }

  .right-hero-image {
    bottom: 24%;
    right: -33%;
  }

  .card.blog {
    grid-template-rows: auto auto;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .card.our-mission {
    padding-left: 15px;
    padding-right: 15px;
  }

  .card.employee {
    flex-direction: column;
  }

  .green-background {
    font-size: 1.5em;
  }

  .h2-medium {
    font-size: 1.4em;
  }

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

  .footer-heading {
    margin-top: 20px;
  }

  .our-mission-grid {
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .our-mission-container {
    padding-left: 25px;
    padding-right: 25px;
  }

  .article-grid {
    grid-row-gap: 87px;
    grid-template-columns: auto;
  }

  .article-image {
    height: 100%;
    max-height: 300px;
    padding: 15px;
    top: 40px;
  }

  .faq-div {
    padding: 15px 15px 25px;
  }

  .faq-title {
    text-align: center;
    font-size: 1em;
  }

  .expand-icon {
    width: 20px;
  }

  .faq-container {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .menu-button {
    margin-left: 10px;
    top: 20px;
    right: 10px;
  }

  .menu-button.w--open {
    background-color: #e71096;
  }

  .hero-heading {
    font-size: 2em;
  }

  .middle-hero-image {
    width: 350px;
    left: -25%;
  }

  .left-hero-image {
    width: 250px;
    bottom: 16%;
    left: -21%;
  }

  .image {
    width: 100%;
    max-width: none;
  }

  .event-list {
    grid-row-gap: 1px;
  }

  .event-grid {
    margin-top: 15px;
  }

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

  .nav-menu {
    background-color: #000;
    padding-top: 100px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .icon {
    color: #fff;
  }

  .current-event-grid {
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-areas: "Title Title"
                         "Date Date"
                         "Location Location"
                         "Register Register"
                         "Description Description"
                         "Upcoming Upcoming";
  }

  .contact-grid {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .about-us-title {
    text-align: center;
    font-size: 2em;
  }

  .guiding-word {
    text-align: center;
    font-size: 1.4em;
  }

  .about-us-card {
    padding-left: 25px;
    padding-right: 25px;
  }

  .text-field {
    margin-bottom: 10px;
  }

  .contact-form {
    grid-template-rows: auto auto auto auto;
    grid-template-areas: "Name Name"
                         "Email Email"
                         "Message Message"
                         "Button Button";
  }

  .guiding-words-wrapper {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .employee-list {
    margin-top: 25px;
  }

  .dark {
    text-align: center;
  }

  .made-by-wrapper {
    bottom: 10px;
    right: 10px;
  }

  .left-content-wrapper {
    text-align: center;
    align-items: center;
    margin-left: 10px;
    margin-right: 10px;
  }

  .color {
    font-size: 30px;
    font-weight: 900;
    line-height: 50px;
  }

  .h1 {
    font-size: 8vw;
    line-height: 10vw;
  }

  .left-hero {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .btn-wrapper {
    flex-direction: column;
    justify-content: center;
  }

  .logo-section {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 40px;
  }

  .hero-btn-2 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-btn {
    margin-bottom: 20px;
    margin-right: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .logo-2 {
    width: auto;
  }

  .logo-2.mobile-hide {
    display: none;
  }

  .mobile-logo {
    width: 200px;
  }

  .section-2 {
    padding: 48px 16px;
  }

  .text-block-3 {
    color: #fff;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .blog_image-link {
    background-image: none;
  }

  .text {
    font-size: 16px;
  }

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

  .button-3 {
    text-align: center;
    display: block;
  }

  .heading-1 {
    margin-bottom: 12px;
  }

  .opt-in-content {
    width: 90%;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .section-3 {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .card-body {
    padding: 12px;
  }

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

  .video-content.shadow {
    height: 200px;
  }

  .video-grid-content {
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
  }

  .lightbox-link {
    position: static;
    left: 0;
  }

  .column {
    margin-bottom: 10px;
  }

  .collection-list {
    flex-direction: column;
    display: flex;
  }
}

#w-node-_2e22e49e-f09e-f81c-d881-cf324903e2e1-e281cf5c {
  grid-area: Paragraph-1;
}

#w-node-_679ed52f-cbc7-5bd7-c257-353a5c9c4062-e281cf5c {
  grid-area: Paragraph-2;
}

#w-node-d310ccb8-03db-1169-f43f-57a1b5da9b3e-e281cf5c {
  grid-area: Paragraph-3;
}

#w-node-_90eba6d2-5a7e-c077-35eb-a1a429eec09c-e281cf5c {
  grid-area: Paragraph-4;
}

#w-node-fed12b89-fa1e-e783-55a1-ccafbd3a17ee-e281cf5c {
  grid-area: Title-1;
}

#w-node-c1a3ae29-7a45-fdb1-be99-b3c8138c81bb-e281cf5c {
  grid-area: Title-2;
}

#w-node-_2ff02510-5692-7285-b487-351e061b87c8-e281cf5c {
  grid-area: Title-3;
}

#w-node-_6f7e9933-c148-9733-1223-9bb920d5aa97-e281cf5c {
  grid-area: Title-4;
}

#w-node-_9dd55821-dd36-812d-e895-b6effe1cfd65-fe1cfd62 {
  grid-area: Logo;
}

#w-node-_9dd55821-dd36-812d-e895-b6effe1cfd68-fe1cfd62 {
  grid-area: Navigation;
}

#w-node-_4dca6f2d-7d4d-6fdc-fedf-710f89900357-fe1cfd62 {
  grid-area: Logo;
}

#w-node-_313a52d4-e795-c593-89d2-0a6e5f816105-d381cf60 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9e4e7486-9a7d-ebcb-6528-b9d0f884094e-af81cf64 {
  grid-area: Image;
}

#w-node-_3af07245-3469-04dd-3a95-4dd1b035f7f2-af81cf64 {
  grid-area: Information;
}

#w-node-_8c364f8f-ee79-2256-1739-5ab4c9e1eaf0-af81cf64 {
  grid-area: Name;
}

#w-node-_61877aff-f871-7fa9-5d45-c57f51a83308-af81cf64 {
  grid-area: Message;
}

#w-node-a7b2c485-4ec2-e465-8d00-51b9e7aff30c-af81cf64 {
  grid-area: Email;
}

#w-node-_3a9c787c-58b4-ebce-f6d4-5a7c5f1edea2-af81cf64 {
  grid-area: Button;
}

#w-node-db5647ba-f11b-2e3d-1527-2d7010dc229c-eefa8565, #w-node-db5647ba-f11b-2e3d-1527-2d7010dc229d-eefa8565 {
  place-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_712d4627-1f8d-61f5-6f5f-cb72c509eeb3-c509eeaf {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_712d4627-1f8d-61f5-6f5f-cb72c509eeb6-c509eeaf {
    grid-area: 2 / 1 / 3 / 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_80c0cfab-b4fd-3fbb-9c0e-f331bb28c3d7-d381cf60, #w-node-_0eb487fe-5db8-fa4b-4739-4bb9695f55e7-eefa8565 {
    justify-self: auto;
  }

  #w-node-db5647ba-f11b-2e3d-1527-2d7010dc229c-eefa8565 {
    place-self: center;
  }

  #w-node-_80c0cfab-b4fd-3fbb-9c0e-f331bb28c3d7-fd54c984, #w-node-_80c0cfab-b4fd-3fbb-9c0e-f331bb28c3d7-ec34c84b {
    justify-self: auto;
  }
}


