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

body {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  color: #333;
  font-size: 14px;
  line-height: 20px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Lato, sans-serif;
  font-size: 32px;
  line-height: 36px;
  font-weight: 900;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Lato, sans-serif;
  color: #130e44;
  font-size: 24px;
  line-height: 30px;
  font-weight: 900;
  text-transform: capitalize;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #0bb78a;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

p {
  margin-bottom: 10px;
  font-family: 'Open Sans', sans-serif;
  color: #7a7a7a;
  font-size: 15px;
  line-height: 22px;
}

a {
  text-decoration: none;
}

li {
  font-family: 'Open Sans', sans-serif;
}

.hamburger-line {
  width: 25px;
  height: 2.22px;
  border-radius: 100px;
  background-color: #fff;
}

.nav__logo {
  color: #fff;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
}

.navigation__menu-btn {
  overflow: hidden;
  height: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.close-btn {
  width: 18px;
  height: 18px;
  margin-left: 12.5px;
  background-image: var(--image-cac4b7f);
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.navbar {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 101;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  height: 50px;
  max-width: 1440px;
  margin-top: 50px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.hamburger {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 25px;
  height: 10px;
  margin-left: 12.5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.hamburger-line-2 {
  width: 15px;
  height: 2.22px;
  border-radius: 100px;
  background-color: #fff;
}

.close-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 25px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.open-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 25px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navigation-text {
  font-family: Korb, sans-serif;
  color: #fff;
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  padding-bottom: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000;
}

.hero-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  max-width: 800px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.h1-huge {
  display: block;
  width: 90%;
  max-width: 800px;
  margin-top: 0px;
  margin-bottom: 40px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  color: #fff;
  font-size: 120px;
  line-height: 140px;
  font-weight: 700;
  text-align: left;
  letter-spacing: 3.75px;
}

.bigger {
  color: #444;
  font-size: 200px;
  text-align: right;
}

.help-text {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  letter-spacing: 1.5px;
}

.twitter-link {
  color: #734ce1;
  text-decoration: none;
}

.nav-items {
  position: relative;
  z-index: 99;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 80%;
  max-width: 1200px;
  margin-top: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.nav__bg {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 98;
  background-color: #030303;
}

.nav-item-number {
  margin-right: 20px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  color: #fff;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 3px;
}

.nav-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.nav-item.hide {
  display: none;
}

.nav-item-text-full {
  color: #fff;
  font-size: 120px;
  line-height: 150px;
  font-weight: 700;
}

.special-text-wrapper {
  overflow: hidden;
  height: 150px;
}

.nav-social-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 55px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-item-text {
  display: block;
  font-size: 120px;
  line-height: 150px;
  font-weight: 700;
}

.nav-container {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 97;
  display: none;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #030303;
}

.social-link {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  background-image: var(--image-4ff2e72);
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.social-link.instagram {
  background-image: var(--image-i318ee52f);
}

.social-link.twitter {
  background-image: var(--image-4d253b6b);
}

.email-link {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid #1e252c;
  color: #a5a3a6;
  font-size: 12px;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-footer-link {
  position: relative;
  z-index: 99;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  max-width: 1200px;
  margin-top: 35px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 500;
  display: block;
  height: auto;
  max-width: none;
  padding-top: 0px;
  padding-bottom: 0px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
  background-image: -webkit-gradient(linear, left top, right top, from(#0bb78a), to(#43a0bd));
  background-image: linear-gradient(90deg, #0bb78a, #43a0bd);
  color: #43a0bd;
}

.columns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  max-width: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-map_dot {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
  z-index: 20;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4.8em;
  margin-left: 4.9em;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-map_dot.is--hidden {
  display: none;
}

.c-map_contain {
  position: relative;
}

.hero {
  width: 1100px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 48px 59px;
}

.hero.is--hero {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 111%;
  min-height: 100vh;
  padding-top: 114px;
  padding-right: 0px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  background-image: var(--image-i2bc9b302);
  background-position: 50% 50%;
  background-size: cover;
  background-attachment: scroll;
}

.c-map_fill {
  position: relative;
  z-index: -1;
  width: 2.5em;
  height: 2.5em;
  min-height: 2.5em;
  min-width: 2.5em;
  border-radius: 100vw;
  background-color: #ff8ad8;
}

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

.collection-wrapper {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 3;
}

.c-hero_map {
  width: 560px;
}

.button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 250px;
  margin-top: auto;
  padding: 22px 52px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background-color: #ff8ad8;
  color: #0d0d36;
  font-weight: 500;
  text-align: center;
}

.c-map_image {
  position: relative;
  z-index: 1;
  width: 100%;
}

.c-map_circle {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1em;
  height: 1em;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  background-color: #fffffb;
}

.c-map_location {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  margin-right: 2.9em;
  font-size: 1em;
  text-align: right;
  white-space: nowrap;
}

.collection-item {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 100%;
}

.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.big-hero-white-text {
  margin-top: 0px;
  margin-bottom: auto;
  border-style: none;
  border-width: 1px;
  border-color: #573b3b;
  font-family: Lato, sans-serif;
  color: #fff;
  font-size: 75px;
  line-height: 75px;
  font-weight: 900;
  text-align: center;
  letter-spacing: normal;
  text-transform: none;
}

.hero-subheading {
  margin-top: 10px;
  margin-bottom: auto;
  border-style: none;
  border-width: 1px;
  border-color: #573b3b;
  font-family: Korb, sans-serif;
  color: #fff;
  font-size: 29px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.image {
  width: 100%;
}

.content-1-3-2-3 {
  display: block;
  width: 850px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 95px;
  padding-bottom: 95px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.main-text-heading-1 {
  font-family: Korb, sans-serif;
  color: #43a094;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
}

.columns-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.paragraph {
  font-family: Lato, sans-serif;
  color: #7a7a7a;
  font-size: 16px;
  line-height: 23px;
  font-weight: 400;
}

.container-2 {
  display: block;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.section-logo {
  padding: 15px 5%;
  background-color: #fff;
}

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

.full-logo-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  padding: 15px 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.light-logo {
  width: auto;
  max-width: 150px;
}

.feature-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 100px;
  padding-bottom: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1240px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.feature-image-mask {
  width: 100%;
  max-width: none;
  margin-right: 40px;
}

.feature-image {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.h2 {
  font-family: Korb, sans-serif;
  color: #43a094;
  text-transform: uppercase;
}

.blog-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100.0001428%;
  height: 100%;
  margin-right: 0px;
  margin-bottom: 15px;
  padding: 15px 16px 35px;
  float: none;
  clear: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 14px 14px 40px 0 rgba(118, 126, 173, 0.08);
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.blog-card:hover {
  box-shadow: 14px 14px 40px 0 rgba(118, 126, 173, 0.12);
  -webkit-transform: translate(0px, -4px);
  -ms-transform: translate(0px, -4px);
  transform: translate(0px, -4px);
}

.blog-placeholder-image-02 {
  width: 100%;
  min-height: 220px;
  border-radius: 14px;
  background-image: var(--image-35b125f8);
  background-position: 50% 50%;
  background-size: cover;
}

.section-blog {
  min-height: 500px;
  padding: 120px 5%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #fff;
  background-image: var(--image-5789c0c3);
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.blog-placeholder-image-03 {
  width: 100%;
  min-height: 220px;
  border-radius: 14px;
  background-image: var(--image-i54eed40d);
  background-position: 50% 50%;
  background-size: cover;
}

.category-title {
  font-family: Korb, sans-serif;
  color: #0bb78a;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
}

.pre-heading {
  max-width: 500px;
  margin-bottom: 15px;
  font-family: Korb, sans-serif;
  color: #43a094;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.title-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 35px;
  padding-right: 10px;
  padding-left: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-article-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 32px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.heading-primary {
  max-width: 500px;
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: Lato, sans-serif;
  color: #130e44;
  font-size: 35px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.heading-primary.h3-centre {
  max-width: 700px;
  font-family: Lato, sans-serif;
  color: #130e44;
  font-weight: 900;
  text-align: center;
}

.blog-content {
  margin-bottom: 25px;
  text-align: left;
}

.heading-3 {
  margin-top: 0px;
  margin-bottom: 8px;
  font-family: Lato, sans-serif;
  color: #2e3642;
  font-weight: 900;
}

.button-default {
  padding: 18px 35px;
  border-radius: 50px;
  background-color: #484dff;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-size: 16px;
}

.button-default:hover {
  background-color: #343af0;
}

.blog-content-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 140px;
  padding-top: 15px;
  padding-right: 4px;
  padding-left: 4px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
}

.category-tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  padding: 12px 20px 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50px;
  background-color: rgba(11, 183, 138, 0.07);
  text-decoration: none;
}

.blog-placeholder-image {
  width: 100%;
  min-height: auto;
  border-radius: 14px;
}

.text-span {
  color: #484dff;
}

.column-3 {
  width: 33%;
  padding: 10px;
}

.paragraph-2 {
  max-width: 490px;
  color: #546681;
  font-size: 17px;
  line-height: 1.3;
  font-style: normal;
}

.columns-3 {
  display: block;
  max-width: none;
  margin-top: 20px;
  margin-left: auto;
}

.button-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 178px;
  min-height: 64px;
  padding: 14px 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  background-color: #689eff;
  color: #fff;
  text-decoration: none;
}

.button-arrow.button-space {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: none;
  min-width: 150px;
  margin-top: 0px;
  padding-right: 10px;
  padding-left: 10px;
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left top, right top, from(#0bb78a), to(#43a0bd));
  background-image: linear-gradient(90deg, #0bb78a, #43a0bd);
  -webkit-transition: all 400ms cubic-bezier(.573, -.348, .246, 1.833);
  transition: all 400ms cubic-bezier(.573, -.348, .246, 1.833);
  font-family: Korb, sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.button-arrow.button-space:hover {
  background-image: -webkit-gradient(linear, left top, right top, from(#1bd3a3), to(#49b7da));
  background-image: linear-gradient(90deg, #1bd3a3, #49b7da);
  -webkit-transform: translate(0px, -5px);
  -ms-transform: translate(0px, -5px);
  transform: translate(0px, -5px);
}

.button-arrow.button-not-100 {
  width: auto;
  max-width: none;
  min-width: 150px;
  margin-top: 0px;
  padding-right: 10px;
  padding-left: 10px;
  background-image: -webkit-gradient(linear, left top, right top, from(#0bb78a), to(#43a0bd));
  background-image: linear-gradient(90deg, #0bb78a, #43a0bd);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: Korb, sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.button-arrow.button-not-100:hover {
  background-image: -webkit-gradient(linear, left top, right top, from(#1bd3a3), to(#49b7da));
  background-image: linear-gradient(90deg, #1bd3a3, #49b7da);
  -webkit-transform: translate(0px, -5px);
  -ms-transform: translate(0px, -5px);
  transform: translate(0px, -5px);
}

.button-arrow.button-outline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: none;
  min-width: 150px;
  margin-top: 0px;
  padding-right: 10px;
  padding-left: 10px;
  border-style: solid;
  border-width: 2px;
  border-color: #0bb78a;
  border-radius: 10px;
  background-color: transparent;
  -webkit-transition: all 400ms cubic-bezier(.573, -.348, .246, 1.833);
  transition: all 400ms cubic-bezier(.573, -.348, .246, 1.833);
  font-family: Korb, sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.button-arrow.button-outline:hover {
  background-image: -webkit-gradient(linear, left top, right top, from(#1bd3a3), to(#49b7da));
  background-image: linear-gradient(90deg, #1bd3a3, #49b7da);
  -webkit-transform: translate(0px, -5px);
  -ms-transform: translate(0px, -5px);
  transform: translate(0px, -5px);
}

.button-arrow.button-outline-colour {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: none;
  min-width: 150px;
  margin-top: 0px;
  padding-right: 10px;
  padding-left: 10px;
  border-style: solid;
  border-width: 2px;
  border-color: #0bb78a;
  border-radius: 10px;
  background-color: transparent;
  -webkit-transition: all 400ms cubic-bezier(.573, -.348, .246, 1.833);
  transition: all 400ms cubic-bezier(.573, -.348, .246, 1.833);
  font-family: Korb, sans-serif;
  color: #0bb78a;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.button-arrow.button-outline-colour:hover {
  background-image: -webkit-gradient(linear, left top, right top, from(#1bd3a3), to(#49b7da));
  background-image: linear-gradient(90deg, #1bd3a3, #49b7da);
  -webkit-transform: translate(0px, -5px);
  -ms-transform: translate(0px, -5px);
  transform: translate(0px, -5px);
  color: #fff;
}

.arrow {
  margin-left: 4px;
  border-style: none;
  border-width: 1px;
  border-color: #fff;
  color: #fff;
}

.button-text {
  font-family: Korb, sans-serif;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.container-4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1240px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.footer-cta {
  margin-right: 20px;
  margin-bottom: 20px;
  font-family: Lato, sans-serif;
  color: #fff;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 900;
}

.social-link-2 {
  display: block;
  width: auto;
  height: auto;
  padding: 0px 20px 0px 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-link {
  display: block;
  margin-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.footer-link:hover {
  opacity: 1;
  -webkit-transform: translate(5px, 0px);
  -ms-transform: translate(5px, 0px);
  transform: translate(5px, 0px);
}

.footer-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 92px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
}

.footer-bottom.line-blank {
  border-bottom-style: none;
}

.footer-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-grid-03 {
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.footer-03 {
  display: block;
  padding: 132px 3% 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #130e44;
  background-image: -webkit-gradient(linear, left top, right top, from(#1a145c), to(#130e44));
  background-image: linear-gradient(90deg, #1a145c, #130e44);
}

.button-2 {
  padding: 20px 30px;
  border-radius: 10px;
  background-color: #ffd2dd;
  color: #5e4dcd;
  font-size: 16px;
}

.footer-title {
  margin-bottom: 15px;
  font-family: Lato, sans-serif;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: none;
}

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

.footer-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.body {
  max-width: none;
}

.blog-breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 330px;
  padding-top: 100px;
  padding-bottom: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #130e44;
}

.primary-white-heading {
  max-width: 500px;
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: Lato, sans-serif;
  color: #fff;
  font-size: 35px;
  line-height: 1;
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.5px;
}

.primary-white-heading.h3-centre {
  max-width: 700px;
  font-family: Lato, sans-serif;
  color: #130e44;
  font-weight: 900;
  text-align: center;
}

.header-blog-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: auto;
  padding: 80px 3% 120px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #994708;
}

.blog-heading {
  max-width: none;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 50px;
  line-height: 1.1;
  text-align: center;
}

.paragraph-3 {
  margin-bottom: 10px;
  color: #9899ad;
  font-size: 15px;
  line-height: 24px;
}

.blog-grid {
  grid-column-gap: 40px;
  -ms-grid-columns: 1fr 0.4fr;
  grid-template-columns: 1fr 0.4fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.blog-section {
  padding-right: 3%;
  padding-bottom: 132px;
  padding-left: 3%;
}

.blog-hero-image {
  width: 100%;
  margin-top: auto;
  margin-bottom: 80px;
  border-radius: 0px;
  box-shadow: 0 22px 34px 0 rgba(0, 0, 0, 0.06);
}

.image-2 {
  position: absolute;
}

.search-button {
  position: static;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  width: 60px;
  height: 100%;
  border-radius: 10px;
  background-color: #984708;
  background-image: -webkit-gradient(linear, left top, right top, from(#0bb78a), to(#43a0bd));
  background-image: linear-gradient(90deg, #0bb78a, #43a0bd);
}

.text-field {
  height: 60px;
  margin-bottom: 0px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  border: 1px none #000;
  background-color: transparent;
  font-size: 15px;
}

.title-large-2 {
  margin-bottom: 20px;
  font-family: Lato, sans-serif;
  color: #202146;
  font-size: 20px;
  line-height: 130%;
  font-weight: 900;
  text-align: center;
}

.stick-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
}

.search-icon {
  position: absolute;
  left: 22px;
  top: 22px;
  right: 0%;
  bottom: 0%;
}

.best-sellers {
  padding: 20px 0px;
  background-color: #fff;
}

.form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0px;
  background-color: #f2f5f8;
}

.submit-button-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.content-right {
  position: -webkit-sticky;
  position: sticky;
}

.search-button-wrapper {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  height: 100%;
}

.seach-bar-2 {
  height: 60px;
  margin-bottom: 40px;
  padding-left: 20px;
  border: 1px none #000;
  border-radius: 10px;
  box-shadow: 0 12px 14px 0 rgba(0, 0, 0, 0.06);
  color: #9899ad;
  font-size: 15px;
}

.subscription-2 {
  margin-bottom: 40px;
  padding: 100px 20px 20px;
  border-radius: 20px;
  background-color: #fff;
  background-image: var(--image-6def993c);
  background-position: -20px -30px;
  background-size: 125px;
  background-repeat: no-repeat;
  box-shadow: 0 12px 14px 0 rgba(0, 0, 0, 0.06);
}

.submit-button {
  width: 60px;
  height: 60px;
  background-color: transparent;
}

.video {
  margin-top: auto;
  margin-bottom: 80px;
}

.search {
  position: relative;
}

.paragraph-4 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #9899ad;
  font-size: 15px;
  line-height: 24px;
}

.container-6 {
  width: 100%;
  height: 100%;
  max-width: 1110px;
  margin-top: -50px;
  margin-right: auto;
  margin-left: auto;
  padding: 30px;
  border-radius: 20px;
  background-color: #fff;
}

.heading-primary-copy {
  max-width: 500px;
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: Lato, sans-serif;
  color: #130e44;
  font-size: 35px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.heading-primary-copy.h3-centre {
  max-width: 700px;
  font-family: Lato, sans-serif;
  color: #130e44;
  font-weight: 900;
  text-align: center;
}

.link-block {
  color: #130e44;
  text-decoration: none;
}

.link-block-2 {
  text-decoration: none;
}

.collection-list-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}

.nav-link {
  margin-right: 10px;
  margin-left: 10px;
  text-decoration: none;
}

.nav-link.large {
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 26px;
}

.menu-trigger {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  padding: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 400ms cubic-bezier(.637, -.401, .193, 1.751);
  transition: all 400ms cubic-bezier(.637, -.401, .193, 1.751);
  cursor: pointer;
}

.menu-trigger:hover {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

.menu {
  position: fixed;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
}

.menu-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.menu-wrap {
  display: block;
}

.menu-line {
  width: 20px;
  height: 2px;
  margin-top: 3px;
  margin-bottom: 4px;
  border-radius: 100px;
  background-color: #fff;
}

.menu-flyout {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#0bb78a), to(#43a0bd));
  background-image: linear-gradient(90deg, #0bb78a, #43a0bd);
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}

.social-header-class {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.image-3 {
  width: 20px;
  max-width: none;
}

.image-4 {
  width: 8px;
  max-width: none;
}

.image-5 {
  width: 20px;
}

.column-4 {
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
}

.div-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.columns-4 {
  width: 130px;
}

.image-6 {
  width: 16px;
  max-width: none;
}

.section {
  display: block;
  width: 100%;
  height: 0px;
}

.image-7 {
  width: 100%;
  height: auto;
}

.image-8 {
  width: 100%;
}

.purple-divider {
  display: block;
  height: 30px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-image: var(--image-i68398749);
  background-position: 50% 100%;
  background-size: auto;
  background-repeat: repeat-x;
}

.green-bg-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: -webkit-gradient(linear, left top, right top, from(#0bb78a), to(#43a0bd));
  background-image: linear-gradient(90deg, #0bb78a, #43a0bd);
}

.c-section {
  padding: 3em 10vw;
}

.is--hidden-empty {
  width: 0px;
  height: 0px;
  padding: 0px;
  background-color: transparent;
}

.container-7 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 400px;
  padding-top: 50px;
  padding-bottom: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(19, 14, 68, 0.87)), to(rgba(19, 14, 68, 0.87))), var(--image-35b125f8);
  background-image: linear-gradient(180deg, rgba(19, 14, 68, 0.87), rgba(19, 14, 68, 0.87)), var(--image-35b125f8);
  background-position: 0px 0px, 50% 50%;
  background-size: auto, auto;
}

.section-2 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #43a0bd;
}

.columns-5 {
  width: 850px;
}

.heading-3-white {
  margin-top: 0px;
  margin-bottom: 8px;
  font-family: Lato, sans-serif;
  color: #fff;
  font-weight: 900;
  text-align: left;
}

.paragraph-white {
  font-family: Lato, sans-serif;
  color: #ececec;
  font-size: 16px;
  line-height: 23px;
  font-weight: 400;
}

.blog-card-large {
  overflow: hidden;
  width: 100%;
  height: auto;
  margin-right: 0px;
  margin-bottom: 15px;
  padding: 30px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 14px 14px 40px 0 rgba(118, 126, 173, 0.08);
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.blog-card-large:hover {
  box-shadow: 14px 14px 40px 0 rgba(118, 126, 173, 0.12);
  -webkit-transform: translate(0px, -4px);
  -ms-transform: translate(0px, -4px);
  transform: translate(0px, -4px);
}

.c-sermon_title {
  margin-top: 0.6em;
  margin-bottom: 0.4em;
}

.c-sermon_buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
}

.c-button {
  padding: 0.9em 1.9em;
  border-width: 0px;
  border-radius: 0.6em;
  background-color: #818181;
  text-align: center;
}

.c-button:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.1)));
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

.c-button.is--white {
  background-color: #fff;
  color: #0f0e17;
}

.c-button.is--white.is--button-2 {
  margin-top: 0.6em;
}

.c-button.is--button1 {
  margin-top: 0.6em;
  margin-right: 1em;
}

.c-sermon {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: auto;
  max-width: none;
  min-height: 30vw;
  padding: 4em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-radius: 20px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(6, 6, 10, 0.38)), color-stop(28%, rgba(15, 14, 23, 0.69)), color-stop(56%, rgba(15, 14, 23, 0)));
  background-image: linear-gradient(0deg, rgba(6, 6, 10, 0.38), rgba(15, 14, 23, 0.69) 28%, rgba(15, 14, 23, 0) 56%);
  color: #fff;
}

.c-sermon_tag {
  display: inline-block;
  padding: 0.6em 1.4em;
  border-radius: 100vw;
  background-color: rgba(255, 255, 255, 0.11);
}

.is--sermon-tag {
  font-size: 0.9em;
}

.blog-card-big {
  display: block;
  overflow: hidden;
  max-width: 1240px;
  padding: 20px;
  clear: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -o-object-fit: fill;
  object-fit: fill;
}

.video-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  height: 100%;
  max-height: 420px;
  min-height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #16ca9b;
  background-image: var(--image-f5584de);
  background-position: 50% 50%;
  background-size: contain;
  box-shadow: 14px 14px 40px 0 rgba(118, 126, 173, 0.08);
  -webkit-transition: all 200ms cubic-bezier(.596, -.453, .199, 1.81);
  transition: all 200ms cubic-bezier(.596, -.453, .199, 1.81);
}

.video-block:hover {
  -webkit-transform: scale(0.97);
  -ms-transform: scale(0.97);
  transform: scale(0.97);
}

.video-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 82px;
  height: 82px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100px;
  background-color: hsla(0, 0%, 100%, 0.25);
}

.lightbox-link {
  background-color: #fff;
  background-image: var(--image-7b40fadb);
  background-position: 0px 0px;
  background-size: auto;
}

.container-9 {
  display: block;
  max-width: 1240px;
}

.container-10 {
  max-width: 1240px;
  padding-right: 10px;
  padding-left: 10px;
}

.social-wrap {
  display: block;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.social-link-3 {
  display: inline-block;
  margin-right: 3px;
  padding: 4px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0.3;
  -webkit-transition: all 500ms cubic-bezier(.68, -.55, .265, 1.55);
  transition: all 500ms cubic-bezier(.68, -.55, .265, 1.55);
}

.social-link-3:hover {
  opacity: 1;
  -webkit-transform: translate(0px, -5px);
  -ms-transform: translate(0px, -5px);
  transform: translate(0px, -5px);
}

.menu-link {
  margin-top: 0px;
  margin-bottom: auto;
  border-style: none;
  border-width: 1px;
  border-color: #573b3b;
  font-family: Lato, sans-serif;
  color: #fff;
  font-size: 35px;
  line-height: 75px;
  font-weight: 900;
  text-align: center;
  letter-spacing: normal;
  text-decoration: none;
  text-transform: none;
}

.category-tag-with-bg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  padding: 12px 20px 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50px;
  background-color: rgba(233, 249, 240, 0.13);
  opacity: 1;
  text-decoration: none;
}

.category-title-white {
  margin-bottom: 15px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: Korb, sans-serif;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
}

.category-title-white:hover {
  -webkit-transform: translate(-5px, 0px);
  -ms-transform: translate(-5px, 0px);
  transform: translate(-5px, 0px);
}

.flowbase-card {
  position: fixed;
  left: 2%;
  top: auto;
  right: auto;
  bottom: 3%;
  z-index: 9999;
  max-width: 260px;
  padding: 26px 32px;
  border-radius: 25px;
  background-color: #5a2fc6;
  background-image: linear-gradient(166deg, #1d0a50, rgba(16, 6, 43, 0.25)), var(--image-i62461076);
  background-position: 0px 0px, 100% 50%;
  background-size: auto, cover;
  background-repeat: repeat, repeat;
  opacity: 1;
}

.flowbase-check {
  width: 32px;
  margin-bottom: 12px;
}

.flowbase-title {
  margin-top: 0px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.flowbase-close {
  position: absolute;
  left: auto;
  top: -40px;
  right: -40px;
  bottom: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 42px;
  height: 42px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100px;
  background-color: #7839f3;
}

.flowbase-details {
  color: hsla(0, 0%, 100%, 0.6);
}

.flowbase-link-2 {
  color: #fff;
  text-decoration: none;
}

.flowbase-clone {
  margin-top: 16px;
  padding: 16px 24px;
  border-radius: 100px;
  background-color: #fff;
  color: #7839f3;
  font-size: 15px;
  font-weight: 500;
}

.image-9 {
  background-color: transparent;
}

.slider-container {
  overflow: hidden;
  width: 100vw;
  min-height: 300px;
  padding: 40px;
}

.slider-wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: auto;
  max-width: 1240px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider-right-arrow {
  color: #444;
}

.mask {
  position: static;
  overflow: visible;
}

.slider-text {
  margin-bottom: 50px;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  font-family: Lato, sans-serif;
  font-size: 60px;
  line-height: 60px;
  font-weight: 900;
  text-align: center;
}

.slider {
  position: static;
  width: 400px;
  height: 400px;
  background-color: transparent;
}

.slide-content-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #e1e1e1;
}

.slide-content-wrapper.tor-printing {
  background-color: #000;
}

.slide-content-wrapper.indigonic {
  background-color: #462778;
}

.slide-content-wrapper.health-quest-nutrition {
  background-color: #fafcf0;
}

.slide-content-wrapper.colour-perfect {
  background-color: #080808;
}

.slide-content-wrapper.seventy-30 {
  background-color: #d9e020;
}

.slide-content-wrapper.steves-lawn {
  background-color: #fafafa;
}

.slide-content-wrapper.forte {
  background-color: #006f78;
}

.slide-content-wrapper.nimilan {
  background-color: #f8f8f8;
}

.slider-left-arrow {
  color: #444;
}

.logo-width {
  max-width: 250px;
}

.rich-text-block {
  font-family: Korb, sans-serif;
}

.seventy-30-logo {
  max-width: 125px;
}

.grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  justify-items: center;
  align-self: center;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.tags-for-post-types {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: Korb, sans-serif;
  color: #fff;
  text-align: center;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
}

.tags-for-post-types:hover {
  border-bottom: 2px solid #0bb78a;
  -webkit-transform: translate(0px, -5px);
  -ms-transform: translate(0px, -5px);
  transform: translate(0px, -5px);
}

.category-link-block {
  margin-right: 5px;
  margin-left: 5px;
  text-align: center;
  text-decoration: none;
}

.main {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #dce2ec;
}

.global-menu {
  position: fixed;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
  z-index: 100;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 90vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.hamburger-2.w--open {
  background-color: transparent;
}

.hamburger-2.js-hover {
  position: absolute;
  top: 45px;
  right: 45px;
  z-index: 110;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 64px;
  height: 64px;
  padding: 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100%;
  background-color: #fff;
  cursor: pointer;
}

.hamburger-2.js-hover.w--open {
  padding: 0px;
}

.line-bottom {
  width: 100%;
  height: 2px;
  margin-bottom: 6px;
  background-color: #000;
}

.btn {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 64px;
  height: 64px;
  padding: 12px 15px 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  cursor: pointer;
}

.line-top {
  width: 100%;
  height: 2px;
  margin-bottom: 6px;
  background-color: #000;
}

.content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav {
  background-color: transparent;
}

.line-mid {
  width: 100%;
  height: 2px;
  margin-bottom: 6px;
  background-color: #000;
}

.global-menu__item {
  display: block;
  margin-top: 0.25em;
  margin-bottom: 0.25em;
  -webkit-transition: all 80ms ease-in;
  transition: all 80ms ease-in;
  color: #000;
  text-decoration: none;
}

.global-menu__item:hover {
  color: #fff;
}

.pulsing-wrap {
  width: 64px;
  height: 64px;
  border-style: solid;
  border-width: 4px;
  border-color: #666;
  border-radius: 100%;
}

.global-menu__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-family: Montserrat, sans-serif;
  color: #000;
  font-size: 52px;
  line-height: 52px;
  font-weight: 700;
}

.button-large-arrow-copy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 178px;
  min-height: 64px;
  padding: 14px 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  background-color: #689eff;
  color: #fff;
  text-decoration: none;
}

.button-large-arrow-copy.button-space {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 200px;
  max-width: none;
  min-width: 150px;
  margin-top: 0px;
  padding-right: 10px;
  padding-left: 10px;
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left top, right top, from(#0bb78a), to(#43a0bd));
  background-image: linear-gradient(90deg, #0bb78a, #43a0bd);
  -webkit-transition: all 400ms cubic-bezier(.573, -.348, .246, 1.833);
  transition: all 400ms cubic-bezier(.573, -.348, .246, 1.833);
  font-family: Korb, sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.button-large-arrow-copy.button-space:hover {
  background-image: -webkit-gradient(linear, left top, right top, from(#1bd3a3), to(#49b7da));
  background-image: linear-gradient(90deg, #1bd3a3, #49b7da);
  -webkit-transform: translate(0px, -5px);
  -ms-transform: translate(0px, -5px);
  transform: translate(0px, -5px);
}

.button-large-arrow-copy.button-not-100 {
  width: auto;
  max-width: none;
  min-width: 150px;
  margin-top: 0px;
  padding-right: 10px;
  padding-left: 10px;
  background-image: -webkit-gradient(linear, left top, right top, from(#0bb78a), to(#43a0bd));
  background-image: linear-gradient(90deg, #0bb78a, #43a0bd);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: Korb, sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.button-large-arrow-copy.button-not-100:hover {
  background-image: -webkit-gradient(linear, left top, right top, from(#1bd3a3), to(#49b7da));
  background-image: linear-gradient(90deg, #1bd3a3, #49b7da);
  -webkit-transform: translate(0px, -5px);
  -ms-transform: translate(0px, -5px);
  transform: translate(0px, -5px);
}

.button-large-arrow-copy.button-outline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: none;
  min-width: 150px;
  margin-top: 0px;
  padding-right: 10px;
  padding-left: 10px;
  border-style: solid;
  border-width: 2px;
  border-color: #0bb78a;
  border-radius: 10px;
  background-color: transparent;
  -webkit-transition: all 400ms cubic-bezier(.573, -.348, .246, 1.833);
  transition: all 400ms cubic-bezier(.573, -.348, .246, 1.833);
  font-family: Korb, sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.button-large-arrow-copy.button-outline:hover {
  background-image: -webkit-gradient(linear, left top, right top, from(#1bd3a3), to(#49b7da));
  background-image: linear-gradient(90deg, #1bd3a3, #49b7da);
  -webkit-transform: translate(0px, -5px);
  -ms-transform: translate(0px, -5px);
  transform: translate(0px, -5px);
}

.button-large-arrow-copy.button-outline-colour {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: none;
  min-width: 150px;
  margin-top: 0px;
  padding-right: 10px;
  padding-left: 10px;
  border-style: solid;
  border-width: 2px;
  border-color: #0bb78a;
  border-radius: 10px;
  background-color: transparent;
  -webkit-transition: all 400ms cubic-bezier(.573, -.348, .246, 1.833);
  transition: all 400ms cubic-bezier(.573, -.348, .246, 1.833);
  font-family: Korb, sans-serif;
  color: #0bb78a;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.button-large-arrow-copy.button-outline-colour:hover {
  background-image: -webkit-gradient(linear, left top, right top, from(#1bd3a3), to(#49b7da));
  background-image: linear-gradient(90deg, #1bd3a3, #49b7da);
  -webkit-transform: translate(0px, -5px);
  -ms-transform: translate(0px, -5px);
  transform: translate(0px, -5px);
  color: #fff;
}

.images {
  border-radius: 15px;
}

.link-block-4 {
  width: 100%;
}

.lightbox-link-2 {
  width: 100%;
}

.form-subtitle-cf10 {
  margin-top: 10px;
  margin-bottom: 20px;
  color: #969696;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
}

.contact-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.text-field-cf10 {
  height: 60px;
  margin-top: 0px;
  border: 2px solid transparent;
  border-radius: 6px;
  background-color: #f4f6fc;
  font-size: 16px;
  text-align: left;
}

.text-field-cf10:focus {
  border-width: 2px;
  border-color: #0bb78a;
}

.text-field-cf10.other {
  width: 50%;
  margin-top: 10px;
}

.text-field-cf10.big {
  height: 150px;
  margin-top: 10px;
}

.text-field-cf10.extra-left {
  margin-left: 20px;
}

.checkbox-wrapper-cf10 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.form-subwrapper-cf10 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.form-cf10 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.checkbox-cf10 {
  width: 15px;
  height: 15px;
  margin-right: 10px;
  border-radius: 18px;
}

.checkbox-cf10.w--redirected-checked {
  border-color: #f76874;
  background-color: #f76874;
}

.success-message-cf10 {
  background-color: #f0f4f8;
  font-weight: 600;
}

.submit-button-cf10 {
  margin-top: 20px;
  padding: 10px 26px;
  border-style: solid;
  border-width: 2px;
  border-color: #f76874;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 1px 1px 3px 0 #dfdfdf;
  -webkit-transition: color 200ms ease, background-color 200ms ease;
  transition: color 200ms ease, background-color 200ms ease;
  color: #f76874;
  font-size: 14px;
  font-weight: 600;
}

.submit-button-cf10:hover {
  border-color: #f7404f;
  background-color: #f7404f;
  color: #fff;
}

.field-label-cf10 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
}

.checkbox-field-cf10 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 40%;
  height: 60px;
  margin-top: 10px;
  margin-right: 20px;
  margin-bottom: 10px;
  padding: 0px 30px 7px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  border-radius: 6px;
  background-color: #f3f6fb;
  color: #999;
  font-size: 14px;
}

.error-message-cf10 {
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
}

.form-title-cf10 {
  font-size: 40px;
  line-height: 46px;
  font-weight: 700;
}

.form-title-narrow {
  font-size: 40px;
  line-height: 46px;
  font-weight: 700;
}

.blog-bready-narrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 170px;
  padding-top: 100px;
  padding-bottom: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #130e44;
}

.profile-image {
  border-radius: 500px;
}

.columns-6 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu-left {
  position: static;
  z-index: 99999999999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 5px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 0px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.menu-2 {
  position: -webkit-sticky;
  position: sticky;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: 0%;
  z-index: 99999;
  display: block;
  width: 45px;
  margin-left: -5px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  color: #fff;
  cursor: pointer;
}

.social-links {
  margin-bottom: 23px;
  opacity: 0.2;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  color: #fff;
  font-size: 13px;
  line-height: 130%;
  letter-spacing: 1.04px;
  text-decoration: none;
  text-transform: uppercase;
}

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

.social-links.w--current {
  margin-bottom: 23px;
  padding-bottom: 0px;
  opacity: 0.2;
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 13px;
  line-height: 130%;
  font-weight: 700;
  letter-spacing: 1.04px;
  text-decoration: none;
  text-transform: uppercase;
}

.social-links.w--current:hover {
  opacity: 1;
}

.overlay {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 100;
  display: none;
  width: 100vw;
  height: auto;
  max-width: 1110px;
  margin-right: auto;
  margin-left: auto;
  padding: 0px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu-bg {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 8888;
  display: block;
  background-color: #3a3a3d;
  background-image: -webkit-gradient(linear, left top, right top, from(#0bb78a), to(#43a0bd));
  background-image: linear-gradient(90deg, #0bb78a, #43a0bd);
}

.socials {
  position: static;
  left: 45%;
  right: auto;
  z-index: 9999999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 170px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.showreel-title {
  margin-bottom: 0px;
}

.showreel-title.project {
  font-family: Korb, sans-serif;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}

.showreel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  color: #c45af4;
  font-size: 18px;
  line-height: 100%;
  text-decoration: none;
}

.showreel.project {
  margin-top: 70px;
}

.div-block-2 {
  width: 16px;
  height: 2px;
  margin-bottom: 5px;
  background-color: #32cea5;
}

.link {
  padding-top: 12px;
  padding-bottom: 12px;
  opacity: 0.3;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: Lato, sans-serif;
  color: #fff;
  font-size: 64px;
  line-height: 110%;
  font-weight: 900;
  text-decoration: none;
}

.link:hover {
  opacity: 1;
  -webkit-transform: translate(5px, 0px);
  -ms-transform: translate(5px, 0px);
  transform: translate(5px, 0px);
}

.link.w--current {
  opacity: 1;
  font-family: Lato, sans-serif;
  font-weight: 900;
}

.image-10 {
  margin-left: 20px;
  color: #fff;
}

.menu-links {
  position: static;
  left: 65px;
  z-index: 999999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 65px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.columns-7 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 190px;
  clear: none;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.column-5 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
}

.column-6 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 85px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-left: 1px solid hsla(0, 0%, 100%, 0.21);
}

.menu-home-icon {
  position: -webkit-sticky;
  position: sticky;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: 0%;
  z-index: 99999;
  display: block;
  width: 32px;
  margin-left: 0px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  color: #fff;
  cursor: pointer;
}

.link-block-5 {
  text-decoration: none;
}

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 70vh;
  max-height: none;
  max-width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 450px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.emoji {
  font-size: 60px;
}

.rich-text-block-2 {
  margin-bottom: 0px;
}

.lottie-animation {
  width: 35px;
  margin-left: 7px;
}

.image-11 {
  width: 100%;
}

.image-12 {
  width: 100%;
  height: 100%;
  max-height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}

.collection-item-2 {
  position: static;
}

.image-13 {
  width: 100%;
}

.facebook {
  margin-top: 20px;
}

.collection-item-3 {
  position: static;
}

.collection-item-4 {
  position: static;
}

.collection-item-5 {
  position: static;
}

.collection-item-6 {
  width: 100%;
  float: left;
  clear: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.heading-3 {
  margin-left: 10px;
  color: #5c5a4d;
  font-size: 30px;
  text-align: center;
  text-decoration: none;
}

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

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

.facebook-contact-icon {
  width: 55px;
  margin-top: 8px;
}

.filter-block {
  margin-right: 10px;
  margin-bottom: 48px;
  margin-left: 10px;
  padding: 42px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 8px 80px 55px -50px rgba(0, 0, 0, 0.13);
}

.contact-icon {
  width: 65px;
}

.hero-container-2 {
  position: relative;
  top: -70px;
  overflow: visible;
  padding: 5px;
  background-color: #fff;
  -o-object-fit: fill;
  object-fit: fill;
}

.link-block-6 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 200ms cubic-bezier(1, 0, 0, 1);
  transition: all 200ms cubic-bezier(1, 0, 0, 1);
}

.link-block-6:hover {
  -webkit-transform: translate(0px, -5px);
  -ms-transform: translate(0px, -5px);
  transform: translate(0px, -5px);
}

.column-8 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.heading-blog {
  margin-top: 0px;
  margin-bottom: 15px;
  color: #2e3642;
  font-size: 24px;
}

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

._50px {
  width: 50px;
  height: 50px;
}

.empty-state {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

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

  .bigger {
    font-size: 120px;
  }

  .hero.is--hero {
    display: block;
    padding-top: 171px;
    padding-bottom: 96px;
    padding-left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .c-hero_text {
    padding-right: 59px;
    padding-left: 59px;
    text-align: center;
  }

  .c-hero_map {
    width: 100%;
    margin-top: 75px;
  }

  .content-1-3-2-3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .container-2 {
    display: block;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .h2 {
    font-family: Korb, sans-serif;
    color: #43a094;
    text-transform: uppercase;
  }

  .blog-card {
    padding: 20px 20px 35px;
  }

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

  .column-3 {
    width: 100%;
  }

  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

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

  .blog-breadcrumb {
    height: 500px;
  }

  .blog-grid {
    grid-column-gap: 22px;
    -ms-grid-columns: 1fr 0.6fr;
    grid-template-columns: 1fr 0.6fr;
  }

  .c-section {
    padding: 2em 5vw;
  }

  .blog-card-large {
    padding: 20px 20px 35px;
  }

  .c-button:hover {
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent));
    background-image: linear-gradient(180deg, transparent, transparent);
  }

  .c-sermon {
    min-height: 60vw;
    padding: 1.6em;
  }

  .grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .global-menu__item {
    font-size: 42px;
    line-height: 42px;
  }

  .menu-left {
    position: static;
    left: 0px;
  }

  .menu-bg {
    display: block;
  }

  .socials {
    left: 20%;
    margin-right: 140px;
  }

  .menu-links {
    margin-left: 140px;
  }

  .columns-7 {
    width: 100%;
  }

  .column-6 {
    position: static;
  }

  .column-7 {
    position: relative;
  }

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

  .collection-list-3 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .navbar {
    margin-top: 30px;
  }

  .navigation-text {
    display: none;
  }

  .hero-wrapper {
    padding-top: 120px;
  }

  .h1-huge {
    font-size: 64px;
    line-height: 80px;
  }

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

  .nav-items {
    width: 90%;
  }

  .nav-item-text-full {
    display: none;
    font-size: 48px;
    line-height: 90px;
  }

  .special-text-wrapper {
    height: auto;
  }

  .nav-item-text {
    font-size: 48px;
    line-height: 90px;
  }

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

  .c-hero_text {
    padding-right: 40px;
    padding-left: 40px;
  }

  .section-logo {
    padding-top: 20px;
  }

  .full-logo-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .logo-wrap {
    width: 100%;
    margin-bottom: 15px;
  }

  .feature-section {
    padding: 40px 20px;
  }

  .flex-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .feature-image-mask {
    margin-right: 0px;
  }

  .feature-image {
    margin-right: auto;
    margin-left: auto;
  }

  .blog-card {
    width: 100%;
    margin-bottom: 35px;
  }

  .section-blog {
    padding-right: 3%;
    padding-left: 3%;
  }

  .footer-bottom {
    margin-top: 40px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer-grid-03 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }

  .footer-column {
    padding-right: 0px;
  }

  .header-blog-2 {
    padding-bottom: 162px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .blog-heading {
    font-size: 55px;
  }

  .blog-grid {
    grid-row-gap: 62px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }

  .blog-hero-image {
    margin-top: -100px;
  }

  .blog-card-large {
    width: 100%;
    margin-bottom: 35px;
  }

  .c-sermon {
    min-height: 80vw;
  }

  .social-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 32px;
  }

  .social-link-3 {
    margin-right: 14px;
    margin-left: 14px;
  }

  .hamburger-2.js-hover {
    top: 35px;
    right: 35px;
  }

  .global-menu__item {
    font-size: 36px;
    line-height: 36px;
  }

  .contact-form {
    padding: 40px 20px;
  }

  .text-field-cf10.other {
    width: 60%;
  }

  .field-label-cf10 {
    font-size: 16px;
  }

  .checkbox-field-cf10 {
    width: 60%;
  }

  .menu-left {
    width: 100vw;
    height: auto;
    padding: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .menu-2 {
    left: auto;
    top: 0%;
    right: 0%;
    bottom: auto;
    margin-top: 0px;
    margin-right: -20px;
    margin-left: 0px;
    padding-right: 0px;
  }

  .overlay {
    display: none;
    height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .menu-bg {
    display: block;
  }

  .socials {
    display: none;
  }

  .showreel-title.project {
    font-size: 18px;
  }

  .link {
    font-size: 48px;
  }

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

  .columns-7 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
  }

  .column-6 {
    display: none;
  }

  .menu-home-icon {
    left: auto;
    top: 0%;
    right: 0%;
    bottom: auto;
    margin-top: 0px;
    margin-right: -20px;
    margin-left: 0px;
    padding-right: 0px;
  }

  .column-7 {
    position: static;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

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

  .section-3.top-section.home-page {
    padding-right: 5px;
    padding-left: 5px;
  }

  .filter-block {
    padding-bottom: 20px;
  }

  .hero-container-2 {
    top: auto;
    padding: 5px 0px;
  }

  .column-8 {
    margin-bottom: 20px;
  }

  .collection-list-3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  .h1-huge {
    font-size: 36px;
    line-height: 70px;
  }

  .bigger {
    font-size: 100px;
  }

  .header {
    display: block;
    overflow: hidden;
    height: 70px;
    max-width: 100%;
    padding-right: 25px;
    padding-left: 25px;
  }

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

  .hero.is--hero {
    width: auto;
  }

  .c-hero_text {
    padding-right: 29px;
    padding-left: 29px;
  }

  .big-hero-white-text {
    font-size: 60px;
  }

  .image {
    width: auto;
  }

  .logo-wrap {
    margin-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: left;
  }

  .column-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .blog-card {
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .button-arrow.button-space {
    margin-bottom: 10px;
  }

  .container-4 {
    max-width: 100%;
  }

  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .footer-wrapper {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer-grid-03 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .blog-breadcrumb {
    height: 320px;
    padding-bottom: 100px;
  }

  .header-blog-2 {
    min-height: 680px;
  }

  .blog-heading {
    font-size: 44px;
  }

  .social-header-class {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .blog-card-large {
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .c-sermon_title {
    margin-top: 0.4em;
    margin-bottom: 0.4em;
  }

  .c-sermon_buttons {
    width: 100%;
  }

  .c-button.is--white.is--button-2 {
    width: 100%;
    margin-top: 1em;
  }

  .c-button.is--button1 {
    width: 100%;
    margin-top: 0em;
    margin-right: 0em;
  }

  .c-sermon {
    min-height: 100vw;
    padding: 1.5em;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(15, 14, 23, 0.74)), to(rgba(15, 14, 23, 0.74)));
    background-image: linear-gradient(180deg, rgba(15, 14, 23, 0.74), rgba(15, 14, 23, 0.74));
  }

  .video-block {
    margin-bottom: 20px;
  }

  .social-link-3 {
    margin-right: 5px;
    margin-left: 0px;
  }

  .grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hamburger-2.js-hover {
    top: 25px;
    right: 25px;
  }

  .global-menu__item {
    font-size: 32px;
    line-height: 32px;
  }

  .button-large-arrow-copy.button-space {
    margin-bottom: 10px;
  }

  .contact-form {
    width: 100%;
  }

  .text-field-cf10.other {
    width: 80%;
  }

  .text-field-cf10.extra-left {
    margin-left: 0px;
  }

  .form-subwrapper-cf10 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .checkbox-field-cf10 {
    width: 80%;
    margin-right: 0px;
  }

  .menu-left {
    padding: 10px 20px 0px;
  }

  .overlay {
    left: auto;
    top: 0%;
    right: auto;
    bottom: 0%;
    width: 100%;
    height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }

  .menu-links {
    left: auto;
    margin-right: 0px;
    margin-left: 20px;
  }

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

  .filter-block {
    padding: 20px;
  }

  .link-block-6 {
    margin-top: 20px;
  }

  .column-8 {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@font-face {
  font-family: 'Korb';
  src: url("/assets/fonts/korb-bold.otf") format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Korb';
  src: url("/assets/fonts/korb.otf") format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}