:root {
  --dark-text: #1a1a2e;
  --offwhite: #f8fafb;
  --blue-2: #3b82f6;
  --light-blue-3: #00bcd4;
  --cta-orange: #f5a623;
  --cta-dark-orange: #d4891a;
  --purple-1: #8b5cf6;
  --white-main: white;
  --light-grey: #f0f2fd;
  --dropshadow-blue: #3b82f680;
  --white: #333;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Outfit, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 46px;
}

h2 {
  color: var(--dark-text);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Outfit, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
}

h3 {
  color: var(--dark-text);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Outfit, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

p {
  opacity: .65;
  color: var(--dark-text);
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 24px;
}

.banner {
  min-height: 100vh;
  display: flex;
  position: relative;
}

.banner-holder {
  flex-flow: row;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding: 150px 0 100px;
  position: relative;
}

.banner-holder-right {
  z-index: -1;
  background-image: linear-gradient(90deg, #f8f8f8, #fff0 55%), url('../images/hero-bg.jpeg');
  background-position: 0 0, 90% 0;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  flex: 1;
  max-width: 50%;
  margin-left: 50%;
  padding-left: 0;
  padding-right: 0;
  display: block;
  position: absolute;
  inset: 0%;
}

.body {
  background-color: var(--offwhite);
}

.parallax-element {
  z-index: -1;
  object-fit: cover;
  height: auto;
  position: absolute;
  inset: 0% 0% auto auto;
}

.header-section {
  z-index: 100;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #f8f8f84d;
  position: fixed;
  inset: 0% 0% auto;
}

.navigation {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 60px;
  display: flex;
}

.hero-shape {
  z-index: 1;
  position: fixed;
  inset: 0% 0% 0% auto;
}

.banner-text {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 60%;
  display: flex;
}

.banner-heading {
  color: var(--dark-text);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Outfit, sans-serif;
  font-size: 76px;
  font-weight: 700;
  line-height: 78px;
}

.gradient-text {
  background-image: linear-gradient(135deg, var(--dark-text), var(--blue-2) 50%, var(--light-blue-3));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.gradient-text.orange {
  background-image: linear-gradient(135deg, #f5a623, #ec4899 100%, var(--light-blue-3));
}

.section-relative {
  z-index: 10;
  max-width: 1400px;
  margin: 180px auto auto;
  padding-left: 40px;
  padding-right: 40px;
  position: static;
  inset: 0% 0% auto;
}

.paragraph {
  color: #797979;
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
}

.master-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--cta-orange);
  background-image: linear-gradient(135deg, var(--cta-orange), var(--cta-dark-orange));
  color: #fff;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 12px 30px;
  font-family: Outfit, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 0 30px #f5a6234d;
}

.master-button:hover {
  background-image: linear-gradient(135deg, #ffc15a, var(--cta-dark-orange));
  transform: translate(0, -2px);
  box-shadow: 0 0 50px #f5a62366;
}

.master-button.small {
  padding: 10px 20px;
  font-size: 16px;
  line-height: 18px;
}

.master-button.small.blue {
  background-image: linear-gradient(135deg, var(--purple-1), var(--blue-2));
}

.master-button.blue {
  background-image: linear-gradient(135deg, var(--purple-1), var(--light-blue-3));
  align-self: flex-start;
}

.master-button.blue.centered {
  align-self: center;
}

.button-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.button-icon.small {
  width: .9rem;
  height: .9rem;
}

.button-holder {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.master-button-outline {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 2px solid var(--cta-orange);
  color: var(--cta-dark-orange);
  background-color: #f5a62300;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 12px 30px;
  font-family: Outfit, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.master-button-outline:hover {
  background-image: linear-gradient(135deg, #ffc15a, var(--cta-dark-orange));
  color: var(--white-main);
  transform: translate(0, -2px);
  box-shadow: 0 0 50px #f5a62366;
}

.master-button-outline.w--current {
  background-image: linear-gradient(135deg, #ffc15a, var(--cta-dark-orange));
  color: var(--white-main);
}

.svg-icon {
  width: 2rem;
  height: 2rem;
}

.svg-icon:hover {
  cursor: pointer;
}

.logo-image {
  border: 1px none var(--white-main);
  border-radius: 1.2rem;
  max-height: 80px;
}

.logo-image.footer {
  max-height: 50px;
}

.navigation-link-holder {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: none;
}

.navlink {
  color: var(--dark-text);
  font-family: Outfit, sans-serif;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
}

.navline {
  background-image: linear-gradient(135deg, var(--purple-1), var(--blue-2) 50%, var(--light-blue-3));
  border-radius: 10px;
  width: 0%;
  height: 4px;
}

.tag {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border: 2px solid var(--dark-text);
  color: var(--dark-text);
  -webkit-text-stroke-color: var(--dark-text);
  text-transform: uppercase;
  background-color: #1a1a2e26;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  font-family: Outfit, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  display: flex;
}

.tag-circle {
  background-color: var(--dark-text);
  border-radius: 100%;
  width: 8px;
  height: 8px;
}

.scroll-holder {
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  inset: auto 0% 0%;
}

.dark-blue-section {
  background-image: linear-gradient(135deg, var(--dark-text), var(--blue-2));
}

.content-section {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
}

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

.number-holder {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.counter {
  color: var(--white-main);
  font-family: Outfit, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

.counter.yellow {
  color: var(--cta-orange);
}

.hero-number-js-holder {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-number-subtext {
  color: var(--white-main);
  font-family: Outfit, sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 25px;
}

.hero-number-subtext.yellow {
  color: var(--cta-orange);
}

.hero-number-sub {
  color: var(--cta-orange);
  font-family: Outfit, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

.hero-number-sub.yellow {
  color: var(--cta-orange);
}

.paragraph-2 {
  font-size: 20px;
  line-height: 34px;
}

.text-block {
  font-size: 16px;
}

.bold-text {
  font-size: 23px;
}

.main-white-sections {
  background-color: var(--offwhite);
}

.main-white-sections.grey {
  background-color: #f0f2fd;
}

.main-white-sections.grey.video {
  padding-bottom: 120px;
}

.content-section-2 {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 120px 0;
}

.content-section-2.video {
  padding-bottom: 20px;
}

.content-container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}

.content-container.short {
  max-width: 1000px;
}

.content-container.banner {
  min-height: auto;
}

.content-split {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: row;
  align-items: stretch;
}

.content-split.margin-top {
  margin-top: 10px;
}

.content-split.narrow {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.content-inner {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  flex: 1;
  padding: 0;
  display: flex;
  position: relative;
}

.content-inner.narrow {
  justify-content: center;
  align-items: center;
}

.video-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-holder {
  box-shadow: 0 2px 15px 0 var(--dropshadow-blue);
  border-radius: 20px;
  display: flex;
  position: sticky;
  top: 120px;
  overflow: hidden;
}

.video-icon {
  width: 60px;
  height: 60px;
  color: var(--white-main);
  background-color: #f8fafb80;
  border-radius: 100%;
  flex: 0 auto;
  margin: auto;
  position: absolute;
  inset: 0%;
}

.video-icon.hidden {
  display: none;
}

.heading-tags {
  color: var(--blue-2);
  text-transform: uppercase;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
}

.heading-tags.white {
  color: var(--white-main);
}

.heading-tag-holder {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: -10px;
  display: flex;
}

.heading-tag-holder.centered {
  justify-content: center;
  align-items: center;
}

.heading-icons {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--blue-2);
}

.heading {
  display: block;
}

.inner-grey-div {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--light-grey);
  height: 100%;
  box-shadow: none;
  border-radius: 20px;
  flex-flow: column;
  margin-top: 0;
  padding: 30px 40px;
  display: flex;
}

.heading-tag-2 {
  color: var(--purple-1);
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}

.banner-para {
  font-size: 21px;
  line-height: 32px;
}

.light-section {
  background-image: linear-gradient(135deg, var(--light-blue-3), var(--blue-2));
}

.tickbox-holder {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-icons {
  width: 1.8rem;
  height: 1.8rem;
  color: var(--light-grey);
}

.hero-text {
  color: var(--white-main);
  font-family: Outfit, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 24px;
}

.hero-text.yellow {
  color: var(--cta-orange);
}

.tickbox-div {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.body-images {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 400px;
  max-height: 400px;
}

.centered {
  text-align: center;
}

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

.inner-icons {
  width: 3rem;
  height: 3rem;
  color: var(--purple-1);
  background-color: #8b5cf626;
  border-radius: 10px;
  padding: 6px;
}

.inner-icons._2 {
  color: var(--blue-2);
  background-color: #3b82f626;
}

.inner-icons._3 {
  color: var(--light-blue-3);
  background-color: #00bcd426;
}

.dark-blue-hero-section {
  background-color: var(--offwhite);
  background-image: linear-gradient(135deg, #1a1a2e, #2d2b55);
}

.dark-blue-hero-section.grey {
  background-color: var(--light-grey);
}

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

.white.centered.small {
  color: var(--offwhite);
  text-align: left;
  font-size: 14px;
  line-height: 18px;
}

.donation-tabs {
  flex-flow: column;
  width: 100%;
  display: flex;
}

.tab-menu {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.inner-icon-image {
  width: 3rem;
  height: 3rem;
  color: var(--purple-1);
  background-color: #8b5cf626;
  border-radius: 10px;
  padding: 0;
}

.inner-icon-image._2 {
  color: var(--blue-2);
  background-color: #3b82f626;
}

.inner-icon-image._3 {
  color: var(--light-blue-3);
  background-color: #00bcd426;
}

.payment-heading-holder {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.payment-portal-inner {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--light-grey);
  height: 100%;
  box-shadow: none;
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding: 20px;
  display: flex;
}

.footer {
  background-color: var(--dark-text);
}

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

.footer-content {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 0;
}

.footer-inner-divs {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-icon-holder {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.social-icons {
  border: 1.5px solid var(--light-grey);
  opacity: .7;
  width: 2rem;
  height: 2rem;
  color: var(--offwhite);
  background-color: #f8fafb40;
  border-radius: 100%;
  padding: 3px;
  transition: all .3s;
}

.social-icons:hover {
  opacity: 100;
}

.footer-headings {
  color: var(--offwhite);
  text-transform: uppercase;
  font-family: Outfit, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

.footer-links {
  opacity: .75;
  color: var(--offwhite);
  font-family: Inter, sans-serif;
  transition: all .3s;
}

.footer-links:hover {
  opacity: 1;
}

.footer-inner {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  flex: 1;
  padding: 0;
  display: flex;
  position: relative;
}

.footer-inner.hidden {
  display: none;
}

.input {
  color: var(--offwhite);
  background-color: #ffffff0d;
  border: 1.5px solid #f8fafb80;
  border-radius: 50px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Outfit, sans-serif;
}

.input:hover {
  border-color: #f8fafb;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Outfit, sans-serif;
}

.input:focus {
  border-color: #f8fafb;
}

.input::placeholder {
  color: #f8fafb80;
}

.subscribe-form {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.contained {
  max-width: 600px;
}

.list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  margin-bottom: 0;
  padding-left: 20px;
  display: flex;
}

.code-embed {
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

  h2 {
    font-size: 25px;
    line-height: 28px;
  }

  h3 {
    font-size: 22px;
    line-height: 24px;
  }

  p {
    font-size: 16px;
    line-height: 21px;
  }

  .banner {
    min-height: auto;
    padding-left: 0;
  }

  .banner-holder {
    z-index: 10;
    padding: 120px 0 60px;
  }

  .banner-holder-right {
    padding-left: 30px;
    padding-right: 30px;
  }

  .header-section {
    background-color: var(--offwhite);
    position: relative;
  }

  .navigation {
    padding-left: 30px;
    padding-right: 30px;
  }

  .banner-heading {
    font-size: 50px;
    line-height: 50px;
  }

  .gradient-text {
    font-size: 32px;
    line-height: 32px;
  }

  .section-relative {
    padding-left: 30px;
    padding-right: 30px;
  }

  .master-button {
    font-size: 17px;
    line-height: 18px;
  }

  .master-button.small.blue {
    align-self: auto;
  }

  .master-button.small.blue.nav, .master-button.small.nav {
    font-size: 22px;
    line-height: 26px;
  }

  .button-icon {
    width: 1rem;
    height: 1rem;
  }

  .button-icon.small.nav {
    width: 1.1rem;
    height: 1.1rem;
  }

  .master-button-outline {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navigation-link-holder {
    z-index: 200;
    border-bottom: 2px solid var(--offwhite);
    background-color: var(--white-main);
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 30px;
    position: fixed;
    inset: 0% 0% auto;
  }

  .navlink {
    background-color: var(--light-grey);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 22px;
    line-height: 26px;
  }

  .navline {
    width: 0%;
  }

  .content-section {
    padding: 30px;
  }

  .hero-number-grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .counter {
    font-size: 30px;
    line-height: 36px;
  }

  .hero-number-subtext {
    font-size: 18px;
    line-height: 20px;
  }

  .main-white-sections.grey.video {
    padding-bottom: 60px;
  }

  .content-section-2 {
    padding: 60px 0;
  }

  .content-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .content-split {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column-reverse;
  }

  .content-split.narrow.side {
    flex-flow: row;
  }

  .video-image {
    width: 100%;
  }

  .video-holder.founder {
    max-width: 60%;
  }

  .heading-tags {
    font-size: 18px;
    line-height: 18px;
  }

  .heading-icons {
    width: 1.2rem;
    height: 1.2rem;
  }

  .inner-grey-div {
    padding: 25px;
  }

  .heading-tag-2 {
    font-size: 17px;
    line-height: 20px;
  }

  .banner-para {
    font-size: 18px;
    line-height: 24px;
  }

  .hero-icons {
    width: 1.4rem;
    height: 1.4rem;
  }

  .hero-text {
    font-size: 18px;
    line-height: 22px;
  }

  .body-images {
    max-height: 250px;
  }

  .inner-icons {
    width: 2.3rem;
    height: 2.3rem;
  }

  .footer-content {
    padding: 40px 0;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 22px;
    line-height: 24px;
  }

  h3 {
    font-size: 20px;
    line-height: 22px;
  }

  p {
    font-size: 15px;
    line-height: 20px;
  }

  .banner {
    z-index: 10;
    padding-left: 0;
  }

  .banner-holder {
    padding: 20px 0 40px;
  }

  .banner-holder-right {
    margin-left: 60%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-section {
    background-color: #ffffff4d;
    position: relative;
  }

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

  .banner-text {
    max-width: 75%;
  }

  .banner-heading {
    font-size: 38px;
    line-height: 38px;
  }

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

  .master-button {
    height: 40px;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 16px;
  }

  .master-button.small.blue.nav, .master-button.small.nav {
    font-size: 21px;
    line-height: 24px;
  }

  .button-icon {
    width: .9rem;
    height: .9rem;
  }

  .master-button-outline {
    height: 40px;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 18px;
  }

  .navlink {
    font-size: 21px;
    line-height: 24px;
  }

  .content-section {
    padding: 25px 20px;
  }

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

  .counter {
    font-size: 24px;
    line-height: 26px;
  }

  .hero-number-subtext {
    font-size: 16px;
    line-height: 18px;
  }

  .main-white-sections.grey.video {
    padding-bottom: 35px;
  }

  .content-section-2 {
    padding: 35px 0;
  }

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

  .content-split {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .content-split.margin-top {
    margin-top: 5px;
  }

  .content-split.narrow.side {
    flex-flow: column;
  }

  .content-split.footer {
    justify-content: center;
    align-items: center;
  }

  .inner-grey-div {
    padding: 20px 25px;
  }

  .heading-tag-2 {
    font-size: 16px;
    line-height: 18px;
  }

  .banner-para {
    font-size: 16px;
    line-height: 21px;
  }

  .hero-text {
    font-size: 16px;
    line-height: 20px;
  }

  .tickbox-div {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .body-images {
    max-height: 200px;
  }

  .white.centered.small {
    text-align: center;
  }

  .tab-menu {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .footer-content {
    padding: 35px 0;
  }

  .footer-inner-divs, .footer-inner, .subscribe-form {
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 479px) {
  h1, p {
    text-align: center;
  }

  .banner-holder {
    padding-top: 0;
  }

  .banner-holder-right {
    box-sizing: border-box;
    object-fit: contain;
    object-position: 50% 100%;
    background-image: linear-gradient(0deg, #f8f8f8 5%, #fff0), url('../images/hero-bg.jpeg');
    background-position: 0 0, 90% 0;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
    max-width: 100%;
    height: 290px;
    margin-top: 0;
    margin-bottom: 20px;
    margin-left: 0%;
    position: static;
    inset: 0% 0% auto;
  }

  .header-section {
    position: relative;
  }

  .navigation {
    flex-flow: row;
    justify-content: space-between;
    align-items: stretch;
  }

  .banner-text {
    max-width: 100%;
  }

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

  .master-button {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .master-button.small {
    flex: 1;
  }

  .master-button.small.blue.nav, .master-button.small.nav {
    flex: 0 auto;
  }

  .master-button.blue {
    align-self: center;
  }

  .button-holder {
    flex-flow: column;
    width: 100%;
  }

  .button-holder.side-mobile {
    flex-flow: row;
    align-items: stretch;
  }

  .master-button-outline {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .logo-image {
    max-height: 55px;
  }

  .navigation-link-holder {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    text-align: center;
    flex-flow: column;
    flex: 0 auto;
    justify-content: center;
    align-self: auto;
    align-items: center;
    display: none;
  }

  .main-white-sections.grey.video {
    padding-bottom: 40px;
  }

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

  .content-container.banner {
    margin-top: -190px;
  }

  .video-holder.founder {
    max-width: 100%;
  }

  .heading-tag-holder {
    justify-content: center;
    align-items: center;
  }

  .inner-grey-div {
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .banner-para {
    text-align: center;
  }

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

  .body-images {
    max-height: 150px;
  }

  .tab-menu {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}


