@font-face {
  font-family: Abhaya Libre;
  src: url('../fonts/AbhayaLibre-Medium.woff2') format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter Variablefont Opsz Wght;
  src: url('../images/') format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark-slate-blue: #0f3d76;
  --slate-grey: #5c677d;
  --cc-bg: #f5f2f8;
  --white: white;
  --black: black;
  --alice-blue: #edf7ff;
  --pale-goldenrod: #dffab1;
  --chocolate: #f36d00;
  --cc-dark-purple: #3f1651;
  --cc-orange: #f89f5b;
  --cc-purple: #5e2390;
  --sandy-brown-2: #ffaf6e;
  --green-yellow: #cfff7c;
  --grey: #88888b;
  --sandy-brown: #fc9948;
}

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

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

body {
  color: var(--dark-slate-blue);
  background-color: #0000;
  font-family: Inter Variablefont Opsz Wght, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Abhaya Libre, Georgia, sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Abhaya Libre, Georgia, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Abhaya Libre, Georgia, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Abhaya Libre, Georgia, sans-serif;
  font-size: 18px;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Abhaya Libre, Georgia, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Abhaya Libre, Georgia, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

p {
  margin-bottom: 10px;
}

a {
  text-decoration: underline;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
}

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

strong {
  font-weight: bold;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

.sec {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.sec.dark, .sec.dark-copy, .sec.footer {
  background-color: var(--dark-slate-blue);
}

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

.sec.video-hero {
  background-color: #c7c7c7;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-top: 120px;
  display: flex;
}

.sec.blog-cat {
  padding-top: 160px;
}

.sec.is--survey {
  width: 100vw;
  color: var(--slate-grey);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.sec.is-cc {
  background-color: var(--cc-bg);
}

.container {
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.container.blog-detail {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  display: flex;
}

.blog__tag {
  border: 1px solid var(--dark-slate-blue);
  color: var(--dark-slate-blue);
  border-radius: 20px;
  margin-top: 60px;
  margin-bottom: 0;
  padding: 10px 15px;
  font-family: Messina Sans;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: color .18s cubic-bezier(.39, .575, .565, 1), background-color .18s cubic-bezier(.39, .575, .565, 1);
}

.blog__tag:hover {
  background-color: var(--dark-slate-blue);
  color: var(--white);
}

.blog__title {
  max-width: 1000px;
  margin-bottom: 0;
  line-height: 1;
}

.blog__cover-img {
  width: 100%;
  max-width: 1000px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.blog-rte {
  width: 100%;
  max-width: 700px;
  color: var(--dark-slate-blue);
  letter-spacing: .2px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.blog-rte h2 {
  color: var(--black);
  margin-top: 32px;
  margin-bottom: 20px;
  font-size: 36px;
  line-height: 1.2;
}

.blog-rte h3 {
  color: var(--black);
  margin-top: 32px;
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 1.2;
}

.blog-rte h4 {
  color: var(--black);
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 28px;
  line-height: 1.2;
}

.blog-rte p {
  letter-spacing: 0;
  margin-bottom: 20px;
}

.blog-rte h5 {
  color: var(--black);
  margin-top: 24px;
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 1.4;
}

.blog-rte h6 {
  color: var(--black);
  font-size: 20px;
  line-height: 1.4;
}

.blog-rte blockquote {
  border-left-width: 5px;
  border-left-color: var(--dark-slate-blue);
  background-color: var(--alice-blue);
  background-image: url('../images/Quote.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 18px 36px;
  line-height: 1.4;
}

.blog-rte a {
  border-bottom: 1px solid var(--dark-slate-blue);
  color: #0f3d76e6;
  text-decoration: none;
}

.blog-rte a:hover {
  color: var(--dark-slate-blue);
  border-bottom-color: #0f3d76cc;
}

.blog-rte li {
  margin-bottom: 10px;
}

.blog-rte figcaption {
  color: #0f3d76cc;
  font-family: Messina Sans;
  font-size: 18px;
  font-weight: 400;
}

.blog-rte figure {
  margin-top: 20px;
}

.blog-rte img {
  max-width: none;
  margin-top: 24px;
  margin-bottom: 24px;
}

.authour-wra {
  grid-column-gap: 4rem;
  grid-row-gap: 2rem;
  border-bottom: 1px solid #0f3d7629;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 20px auto 40px;
  padding-bottom: 20px;
  display: flex;
}

.blog__author-img {
  object-fit: cover;
  border-radius: 50%;
  min-width: 48px;
  max-width: 48px;
  min-height: 48px;
  max-height: 48px;
  margin-right: 20px;
}

.blog__author-wrap {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.blog__author-name {
  color: #0f3d76e6;
  font-size: 16px;
}

.author-date-info {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.blog__date {
  font-family: Messina Sans;
  font-size: 13px;
  text-decoration: none;
}

.fb {
  background-image: url('../images/fb.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 20px;
  padding: 17px;
  display: block;
}

.share-buttons {
  align-items: center;
  max-width: 233px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.share-buttons.btm {
  justify-content: center;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.wa {
  background-image: url('../images/Vectorwef.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 20px;
  padding: 16px;
  display: block;
  overflow: visible;
}

.tw {
  background-image: url('../images/tw.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 20px;
  padding: 17px;
  display: block;
}

.li {
  cursor: pointer;
  background-image: url('../images/li.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 20px;
  padding: 17px;
  display: block;
}

.join-us---track {
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 91px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.spec-grid {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 886px;
  margin-top: 20px;
  margin-bottom: 100px;
  position: relative;
}

.spec-grid.is--home {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 60px;
}

.spec-grid.is--mem {
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
  margin-bottom: 60px;
}

.spec-grid.is-cc {
  grid-template-columns: 1fr 1fr 1fr;
  max-width: none;
  margin-top: 40px;
}

.join-button {
  color: #1d1e28;
  background-color: #ffe59f;
  border-radius: 1000px;
  margin-bottom: 0;
  margin-left: 0;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  transition: all .15s;
}

.join-button:hover {
  padding: 14px 37px;
}

.join-button.w--current {
  color: #f6f6f6;
  background-color: #0000;
  border: 2px solid #f6f6f6;
}

.bg__modal2 {
  z-index: 10000;
  background-color: #000000de;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.membership-term {
  text-align: center;
  margin-bottom: 15px;
  font-weight: 700;
}

.subheading {
  text-align: center;
  width: 75%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.subheading.joining {
  color: #0f3d76e6;
  width: 60%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.nav__menu {
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
}

.membership-detail-wrap {
  align-items: flex-start;
  margin-bottom: 13px;
  display: flex;
}

.button__hero {
  color: #1d1e28;
  letter-spacing: -.4px;
  background-color: #ffe59f;
  border-radius: 1000px;
  align-self: auto;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 40px 12px;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  transition: all .15s;
  display: block;
}

.button__hero:hover {
  margin-bottom: 0;
  padding: 17px 42px 14px;
}

.up-col {
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  display: flex;
}

.text-span-5 {
  text-transform: lowercase;
}

.nav_contain {
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.membership-benefit {
  color: #1d1e28cc;
  margin-left: 16px;
  font-size: 16px;
}

.column-14 {
  flex-direction: column;
}

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

.home__quote-img {
  object-fit: cover;
  background-image: url('../images/person.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.chapter-dropdown {
  color: #fff;
  padding-top: 4px;
}

.section-2 {
  width: 100%;
}

.section-2.darkbg {
  background-color: #1d1e28;
  padding-top: 80px;
  padding-bottom: 64px;
}

.section-2.testimonials {
  background-color: #f6f6f6;
  padding-top: 100px;
  padding-bottom: 100px;
}

.home_adv-list {
  grid-column-gap: 32px;
  grid-row-gap: 48px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  width: 100%;
  max-width: 1000px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.nav__link {
  color: #fff;
  margin-left: 0;
  margin-right: 20px;
  padding: 0;
  font-size: 16px;
  transition: color .2s ease-in-out;
}

.nav__link:hover {
  color: #ffffffbf;
  text-decoration: underline;
}

.nav__link.w--current {
  color: #fff;
  font-family: Inter Variablefont Opsz Wght, Arial, sans-serif;
  text-decoration: none;
}

.nav__link.w--current:hover {
  color: #ffffffbf;
}

.nav__link.mob-nav {
  display: none;
}

.nav__link.is--new {
  background-color: var(--pale-goldenrod);
  color: var(--dark-slate-blue);
  border-radius: 20px;
  padding: 4px 13px;
  display: flex;
}

.nav__link.is--new:hover {
  color: var(--dark-slate-blue);
  background-color: #cfff7c;
  text-decoration: none;
}

.nav__link.is--new.hide {
  display: none;
}

.nav__link.is--survey {
  border: 1px solid var(--white);
  background-color: var(--dark-slate-blue);
  color: var(--white);
  border-radius: 20px;
  margin-right: 0;
  padding: 4px 13px 6px;
  font-size: 15px;
}

.nav__link.is--survey:hover {
  background-color: var(--pale-goldenrod);
  color: var(--dark-slate-blue);
  text-decoration: none;
}

.nav__link.is--survey_home {
  border: 1px solid var(--white);
  background-color: var(--dark-slate-blue);
  color: var(--white);
  border-radius: 20px;
  padding: 4px 13px;
  font-size: 15px;
}

.nav__link.is--survey_home:hover {
  background-color: var(--pale-goldenrod);
  color: var(--dark-slate-blue);
  text-decoration: none;
}

.home-quote__name {
  align-items: flex-start;
  margin-top: 10px;
  display: flex;
}

.faq-wrap {
  width: 100%;
  margin-top: 60px;
}

.faq-wrap.is--summit {
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  margin-top: 40px;
  display: grid;
}

.modal-2 {
  z-index: 1000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding-top: 64px;
  display: none;
  position: fixed;
  inset: 0%;
}

.join-condition-text-wrap {
  color: #1d1e28;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: background-color .25s;
  display: flex;
}

.image-48 {
  width: 16px;
  height: 16px;
}

.testimonial-new {
  cursor: grab;
  background-color: #f6f6f6;
  align-items: stretch;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 20px;
  padding-left: 10%;
  display: flex;
}

.chapter-dropdown-toggle {
  padding-top: 16px;
  padding-left: 0;
  padding-right: 0;
}

.nav {
  z-index: 10;
  border-bottom: 1px solid var(--white);
  background-color: var(--dark-slate-blue);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.dropdown-3 {
  z-index: 20;
}

.empty-state-5 {
  background-color: #0000;
  margin-top: 60px;
  margin-bottom: 60px;
}

.div-block-174 {
  align-items: center;
  margin-top: -20px;
  display: flex;
}

.image-50 {
  margin-top: -2px;
  margin-left: 4px;
}

.home__track-subtitle {
  color: #1d1e28e6;
  margin-bottom: 0;
  margin-left: 5px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
}

.link-5 {
  color: #fffc;
  border-bottom: 1px solid #fffc;
  font-weight: 300;
  text-decoration: none;
  transition: opacity 80ms;
}

.link-5:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.copyright-text {
  text-align: center;
  letter-spacing: .2px;
  margin-top: 40px;
  margin-bottom: 10px;
  margin-left: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 100%;
  text-decoration: none;
}

.copyright-text.mob {
  display: none;
}

.chapter-drop-down-link.w--open {
  background-color: #fff;
}

.title__hero {
  color: var(--white);
  flex-direction: column;
  font-weight: 500;
  line-height: 1;
  display: flex;
}

.title__hero.welcome {
  max-width: 700px;
  color: var(--black);
  text-align: center;
  margin-bottom: 40px;
  font-size: 60px;
}

.title__hero.small {
  margin-bottom: 40px;
  font-size: 60px;
}

.title__hero.is--newsletter {
  max-width: 50rem;
  margin-bottom: 40px;
  font-size: 60px;
}

.title__hero.is--dark {
  color: var(--dark-slate-blue);
  margin-bottom: 40px;
  font-size: 60px;
}

.con {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

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

.con.home-adv {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.con.home {
  z-index: 10;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.con.pad100 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 100px;
  display: flex;
}

.con.pad100.quote {
  background-color: var(--alice-blue);
  max-width: none;
  color: var(--dark-slate-blue);
  margin-top: 60px;
  padding-top: 0;
  padding-bottom: 0;
}

.con.pad100.is--lightbg {
  background-color: var(--alice-blue);
  max-width: none;
  color: var(--dark-slate-blue);
  margin-bottom: 100px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.con.home-faq {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.con.is--hero {
  z-index: 2;
  text-align: center;
  flex-direction: row;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.con.bp100 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 100px;
  display: flex;
}

.con.bp100.quote {
  max-width: 1000px;
  color: var(--dark-slate-blue);
  background-color: #0f3d761a;
  margin-bottom: 100px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.con.is--dashboard {
  z-index: 2;
  text-align: center;
  height: 100%;
  padding-bottom: 60px;
  position: relative;
}

.con.tp60 {
  padding-top: 60px;
}

.con.blog-content {
  flex-direction: row;
  align-items: flex-start;
  max-width: 1060px;
  position: relative;
}

.con.is--home-hero {
  z-index: 2;
  flex-direction: row;
  justify-content: space-between;
  max-width: none;
  height: 100%;
  padding-left: 5%;
  position: relative;
}

.con.is--mem {
  z-index: 2;
  text-align: center;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.con.is--hero-nl {
  z-index: 2;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
}

.con.is--perks-hero {
  z-index: 2;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.con.is--blog {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 100px;
  display: flex;
}

.con.is--blog.quote {
  max-width: 1000px;
  color: var(--dark-slate-blue);
  background-color: #0f3d761a;
  margin-bottom: 100px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.con.is--access-hero {
  z-index: 2;
  text-align: center;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.con.is--survey-thanks {
  z-index: 2;
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: grid;
  position: relative;
}

.con.is-cc {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 100px;
  display: flex;
}

.con.is-cc.quote {
  background-color: var(--alice-blue);
  max-width: none;
  color: var(--dark-slate-blue);
  margin-bottom: 100px;
  padding-top: 0;
  padding-bottom: 0;
}

.con.is-cc.is--lightbg {
  background-color: var(--alice-blue);
  max-width: none;
  color: var(--dark-slate-blue);
  margin-bottom: 100px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.con.is--hero-404 {
  z-index: 2;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding-top: 6rem;
  position: relative;
}

.con.is-hero {
  padding-top: 100px;
}

.column-13 {
  margin-top: 3px;
}

.contact-text {
  color: #1d1e28cc;
  margin-top: 0;
  margin-left: 0;
  margin-right: 13px;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.image-11 {
  display: none;
}

.join-condition {
  width: 50%;
  margin: 20px auto 30px;
  padding-left: 7%;
}

.btn-wrap__hero {
  justify-content: center;
  align-items: center;
  width: 278px;
  height: 9vh;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.collection-list-wrapper-4 {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.title__sec {
  text-align: center;
  letter-spacing: .5px;
  width: 100%;
  max-width: 45rem;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 48px;
  line-height: 1.2;
}

.title__sec.home-adv {
  margin-bottom: 80px;
}

.title__sec.is--blog {
  width: auto;
  margin-left: 0;
  margin-right: 0;
}

.title__sec.is--blog-cat {
  width: auto;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.column-12 {
  margin-top: 3px;
}

.columns {
  max-width: 1200px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 20px;
}

.footer-logo {
  height: 26px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.home__quoter-about {
  color: var(--slate-grey);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
}

.lite-upgrade-navlink {
  color: #ffe59f;
  margin-left: 16px;
  margin-right: 16px;
  padding: 0;
  font-size: 16px;
  transition: color .2s ease-in-out;
}

.lite-upgrade-navlink:hover {
  color: #ffffffb3;
}

.lite-upgrade-navlink.w--current {
  color: #fff;
  text-decoration: none;
}

.membership-price {
  color: #1d1e28cc;
  font-size: 22px;
  line-height: 1em;
}

.section__hero {
  background-color: var(--dark-slate-blue);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
}

.section__hero.is--auto {
  justify-content: flex-start;
  height: auto;
  padding-top: 120px;
}

.section__hero.is--light {
  background-color: var(--white);
  justify-content: flex-start;
  height: auto;
  padding-top: 140px;
}

.section__hero.is--height-auto {
  height: auto;
  padding-top: 18vh;
  padding-bottom: 18vh;
}

.section__hero.is--survey-ty {
  height: auto;
  min-height: 10vh;
  padding-top: 14vh;
  padding-bottom: 7vh;
}

.home__track-subhead {
  color: #1d1e2899;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
}

.profile-dd {
  color: #fff;
  margin-left: 16px;
  margin-right: 16px;
  padding: 0;
  font-size: 16px;
  transition: color .2s ease-in-out;
}

.profile-dd.w--current {
  color: #fff;
  text-decoration: none;
}

.apply-condition-italic {
  color: var(--dark-slate-blue);
  margin-top: 10px;
  font-size: 16px;
  font-weight: 300;
}

.symbol {
  width: 40px;
  height: 40px;
}

.symbol.is--large {
  width: 80px;
  height: 60px;
}

.adv__home {
  width: 100%;
  margin-bottom: 40px;
}

.join-us {
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.div-block-150 {
  justify-content: center;
  align-items: center;
  width: 163px;
  height: 54px;
  margin-left: 16px;
  padding: 0;
  display: flex;
}

.home_advisors {
  width: 100%;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.update-link {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-size: 16px;
  transition: box-shadow .1s ease-in-out;
  display: flex;
  box-shadow: 0 0 5px #0000000f;
}

.update-link:hover {
  background-color: #ffeebf;
}

.nav-button {
  color: #1d1e28;
  background-color: #ffe59f;
  border-radius: 1000px;
  margin-bottom: 0;
  margin-left: 0;
  padding: 12px 25px 9px;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  transition: all .15s;
}

.nav-button:hover {
  padding: 14px 27px 11px;
}

.nav-button.w--current {
  color: #f6f6f6;
  background-color: #0000;
  border: 2px solid #f6f6f6;
}

.pro-popup {
  z-index: 2147483647;
  background-color: #fff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 80vw;
  max-width: 1200px;
  height: 80vh;
  display: flex;
  position: relative;
  box-shadow: 0 5px 800px #0003;
}

.subtitle__sec {
  color: var(--chocolate);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.spec__text {
  color: #5c677d;
  letter-spacing: .3px;
  margin-left: 56px;
  font-size: 18px;
}

.spec__text.is--left {
  color: var(--slate-grey);
  margin-left: 0;
}

.div-block-156 {
  margin-top: 20px;
  display: flex;
}

.heading-7 {
  color: #1d1e28e6;
  text-align: center;
  width: 80%;
  margin: 20px auto;
  font-weight: 400;
  line-height: 1.4em;
}

.spec__title {
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 16px;
  font-family: Messina Sans;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.spec__title.is--left {
  margin-top: 20px;
  margin-bottom: 10px;
  margin-left: 0;
}

.spec__title.is-cc {
  color: var(--cc-dark-purple);
  margin-top: 20px;
  margin-bottom: 10px;
  margin-left: 0;
  font-weight: 700;
}

.profile-link {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-size: 16px;
  transition: box-shadow .1s ease-in-out;
  display: flex;
  box-shadow: 0 0 5px #0000000f;
}

.profile-link:hover {
  background-color: #ffe59f;
}

.div-block-164 {
  margin-top: 20px;
  display: flex;
}

.footer-link-wrap {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: flex-start center;
  align-items: flex-end;
  height: 100%;
  display: flex;
}

.home_adv-item {
  flex-direction: column;
  width: 163px;
  display: flex;
}

.social-link-wrap {
  margin-top: 30px;
}

.subtitle__hero {
  max-width: 520px;
  color: var(--alice-blue);
  letter-spacing: .3px;
  text-transform: none;
  margin-top: 2vh;
  margin-bottom: 0;
  font-family: Messina Sans;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5em;
}

.home__quoter {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.social-link-block {
  margin-right: 20px;
}

.white-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: box-shadow .1s ease-in-out;
  display: flex;
  box-shadow: 0 0 5px #0000000f;
}

.white-card.popup {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  margin-left: 20px;
  margin-right: 20px;
  padding: 20px 40px 10px;
  box-shadow: 0 0 130px -120px #0000000f;
}

.white-card.popup:hover {
  box-shadow: 0 0 130px 80px #0000000f;
}

.white-card.member {
  justify-content: space-between;
  align-items: stretch;
  padding-bottom: 30px;
  box-shadow: 0 0 5px #0000000f;
}

.white-card.member:hover {
  box-shadow: 0 0 80px #00000014;
}

.white-card.job-filter {
  background-color: #fff;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
}

.white-card.industry {
  background-color: #fff;
  justify-content: flex-start;
  width: 232px;
  height: 280px;
  padding-top: 15px;
  padding-bottom: 15px;
  overflow: auto;
}

.white-card.search {
  border-width: 2px;
  border-radius: 20px;
  flex: 0 auto;
  overflow: hidden;
}

.white-card.search:hover, .white-card.search:active, .white-card.search:focus {
  border-color: #1d1e2880;
}

.white-card.filter {
  border-width: 2px;
  border-radius: 20px;
  height: 100%;
  margin-right: 20px;
  overflow: visible;
}

.white-card.filter:hover {
  border-color: #1d1e2880;
}

.nav_logo {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-right: auto;
  display: flex;
}

.apply-condition {
  color: #0f3d76cc;
  margin: 0 20px 4px 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.icon-7 {
  color: #fff;
  margin-right: 0;
}

.correct-icon {
  flex: none;
  align-items: flex-start;
  margin-right: 20px;
  display: flex;
}

.link-with-arrow {
  color: #1d1e28;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
  text-decoration: none;
  display: flex;
}

.home__track-title {
  margin-top: 12px;
  margin-bottom: 16px;
  margin-left: 5px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.spec__title-wrap {
  align-items: flex-start;
  margin-bottom: 10px;
  display: flex;
}

.close__modal2 {
  z-index: 100000;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: absolute;
  inset: 8% 5% auto auto;
}

.grid-4 {
  grid-column-gap: 80px;
  grid-row-gap: 90px;
  border-left: 2px solid #1d1e28c2;
  grid-template-columns: 1fr;
  width: 50%;
  margin-top: 60px;
  margin-left: 5%;
  padding-left: 31px;
}

.div-block-148 {
  background-color: #fff;
  height: 1px;
  margin-top: 5px;
}

.img__hero {
  z-index: 0;
  position: absolute;
}

.img__hero.is--perks {
  width: 100%;
  height: 100%;
  inset: 0%;
}

.home-quote__img-wrap {
  background-color: #e8e8e8;
  background-image: url('../images/person.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 500px;
  flex: none;
  width: 48px;
  height: 48px;
  margin-right: 20px;
  overflow: hidden;
}

.profile-drop-down {
  padding-left: 0;
  padding-right: 10px;
  display: flex;
}

.spec-wrap {
  background-color: var(--alice-blue);
  flex-direction: column;
  padding: 10% 6%;
  display: flex;
}

.spec-wrap.is-cc {
  background-color: var(--white);
  border: 1px solid #5e23903b;
}

.hide {
  display: none;
}

.text-block-47 {
  color: #fffc;
  font-size: 16px;
  font-weight: 300;
}

.div-block-173 {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: flex;
}

.btn {
  background-color: var(--dark-slate-blue);
  color: var(--white);
  text-align: center;
  align-self: auto;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 14px 39px;
  font-family: Abhaya Libre, Georgia, sans-serif;
  font-size: 26px;
  line-height: 1;
  transition: background-color .2s ease-in-out;
  display: block;
}

.btn:hover {
  background-color: #0f3d76e6;
}

.btn.membership {
  text-align: center;
  border-color: #ffe59f;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 16px 30px 14px;
  font-size: 16px;
  line-height: 120%;
  text-decoration: none;
  transition: padding .15s;
  display: flex;
  box-shadow: 0 20px 60px #5e5e5e3d;
}

.btn.membership:hover {
  padding: 18px 32px 16px;
}

.btn.is--white {
  background-color: var(--white);
  color: var(--dark-slate-blue);
}

.btn.is--white:hover {
  background-color: #ffffffe6;
}

.btn.is--white.oops {
  border-radius: 0;
  margin-left: 10px;
  margin-right: 20px;
  padding: 9px 14px;
  font-family: Messina Sans;
  font-size: 19px;
  font-weight: 500;
}

.btn.is--white.is--survey-ty {
  margin-left: 0;
  margin-right: 0;
}

.btn.subscribe-nl {
  border: 1px solid var(--white);
  padding-top: 17px;
  padding-bottom: 10px;
}

.btn.subscribe-nl:hover {
  color: var(--dark-slate-blue);
  background-color: #ffffffe6;
}

.btn.memberships {
  background-color: var(--dark-slate-blue);
  margin-top: 28px;
  margin-left: 56px;
  margin-right: auto;
  font-weight: 500;
}

.btn.memberships.is--small {
  margin-top: 20px;
  padding-left: 28px;
  padding-right: 28px;
  font-size: 18px;
}

.btn.memberships.is--small:hover {
  background-color: #0f3d76db;
}

.btn.is--mem {
  border-radius: 3px;
  margin-top: 40px;
  padding-top: 21px;
  padding-bottom: 21px;
  font-weight: 500;
}

.btn.is--hero {
  background-color: var(--white);
  color: var(--dark-slate-blue);
  font-weight: 700;
}

.btn.is--hero:hover {
  background-color: #ffffffe6;
}

.btn.is--hero.oops {
  margin-left: 0;
  margin-right: 0;
}

.btn.is--bc-hero {
  margin-left: 0;
}

.btn.is--hero__home {
  background-color: var(--white);
  color: var(--dark-slate-blue);
  border-radius: 999px;
  margin-left: 0;
  font-family: Messina Sans;
  font-size: 16px;
}

.btn.is--hero__home:hover {
  background-color: var(--alice-blue);
}

.btn.is--hero__home.oops {
  margin-left: 0;
  margin-right: 0;
}

.btn.is_cc-orange {
  background-color: var(--cc-orange);
  letter-spacing: 0;
  border-radius: 1000px;
  padding-left: 35px;
  padding-right: 35px;
  font-family: Messina Sans;
  font-size: 20px;
}

.btn.is_cc-orange:hover {
  background-color: var(--chocolate);
}

.btn.is-center {
  display: inline-block;
}

.btn.is-directory {
  border: 1px solid var(--dark-slate-blue);
  color: var(--dark-slate-blue);
  background-color: #0000;
  font-family: Messina Sans;
  font-size: 18px;
  display: inline-block;
}

.btn.is_cc-dark-purple {
  background-color: var(--cc-dark-purple);
  letter-spacing: 0;
  border-radius: 1000px;
  padding-left: 35px;
  padding-right: 35px;
  font-family: Messina Sans;
  font-size: 20px;
}

.btn.is_cc-bright-purple {
  background-color: var(--cc-purple);
  letter-spacing: 0;
  border-radius: 1000px;
  padding-left: 35px;
  padding-right: 35px;
  font-family: Messina Sans;
  font-size: 20px;
}

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

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

.div-block-147 {
  padding-bottom: 0;
}

.logout-link {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-size: 16px;
  transition: box-shadow .1s ease-in-out;
  display: flex;
  box-shadow: 0 0 5px #0000000f;
}

.logout-link:hover {
  background-color: #ffeebf;
}

.m-benefits {
  margin-top: 20px;
}

.account-link {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-size: 16px;
  transition: box-shadow .1s ease-in-out;
  display: flex;
  box-shadow: 0 0 5px #0000000f;
}

.account-link:hover {
  background-color: #ffe59f;
}

.tick-wrap {
  align-items: center;
  margin-top: 2px;
  display: flex;
}

.button-wrapper {
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 18vh;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.button-wrapper.no-width {
  flex-direction: column;
  width: 225px;
  height: 14vh;
  margin-bottom: 10px;
  padding-top: 0;
  padding-bottom: 17px;
}

.card-title {
  text-align: center;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 32px;
  font-weight: 700;
  line-height: 1em;
}

.copyright-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #fffc;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 30px;
  font-size: 13px;
  display: grid;
}

.card__home-adv {
  color: #fff;
  background-color: #1d1e28;
  border: 1px solid #ddd;
  border-radius: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 31px 14px;
  transition: box-shadow .1s ease-in-out;
  display: flex;
  box-shadow: 0 0 5px #0000000f;
}

.home__quoter-name {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
}

.nav__logo {
  min-width: 300px;
}

.image-59 {
  margin-left: -49px;
  margin-right: 20px;
}

.home__quote {
  text-align: center;
  width: 75%;
  max-width: 800px;
  margin: 0 auto 20px;
  font-family: Abhaya Libre, Georgia, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4em;
}

.grid__home-adv {
  grid-column-gap: 2vw;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  display: grid;
}

.testimonial-cards {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  flex-direction: column;
  justify-content: space-between;
  width: 30%;
  min-width: 30%;
  min-height: 300px;
  margin-bottom: 20px;
  margin-right: 20px;
  padding: 26px;
  display: flex;
  box-shadow: 0 0 3px #00000021;
}

.home-adv-img {
  object-fit: cover;
  height: 167px;
  margin-bottom: 10px;
}

.home_adv-name {
  text-transform: capitalize;
  margin-top: 5px;
  margin-bottom: 3px;
  font-size: 18px;
  line-height: 1.2;
}

.home__blog-tag {
  color: var(--chocolate);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 52px;
  margin-top: 16px;
  margin-bottom: 10px;
  font-family: Inter Variablefont Opsz Wght, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  display: inline-block;
}

.home_blog-grid {
  grid-column-gap: 5em;
  grid-row-gap: 2.75em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1260px;
  margin: 80px auto 40px;
  display: grid;
}

.home_blog-item {
  flex-direction: column;
  display: flex;
}

.home_blog-image {
  object-fit: cover;
  border: 1px solid #0f3d7617;
  width: 340px;
  height: 190px;
  transition: transform .18s cubic-bezier(.39, .575, .565, 1), box-shadow .18s cubic-bezier(.39, .575, .565, 1);
  display: block;
}

.home_blog-image:hover {
  transform: translate(0, -3px);
  box-shadow: 0 18px 30px -4px #0f3d7638;
}

.home_blog-title {
  color: var(--black);
  letter-spacing: .5px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 26px;
  line-height: 1.2;
}

.home__blog-date-wrap {
  color: #0f3d76bf;
  flex-direction: column;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  text-decoration: none;
  display: flex;
}

.home__blog-date-wrap:hover {
  color: var(--dark-slate-blue);
}

.home__tag-wrap {
  min-height: 19.6px;
}

.home__tag-wrap.is--blogs {
  min-height: 5px;
  font-family: Inter Variablefont Opsz Wght, Arial, sans-serif;
}

.footer__logo-wrap {
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px 30px;
  display: flex;
}

.footerlink {
  color: #ffffffbf;
  margin-left: 16px;
  margin-right: 16px;
  padding: 0;
  font-size: 17px;
  text-decoration: none;
  transition: color .15s ease-in-out;
}

.footerlink:hover {
  color: #fff;
  text-decoration: underline;
}

.footerlink.w--current {
  color: #fff;
  text-decoration: none;
}

.home__blog-title-link {
  color: #0f3d76e6;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  display: flex;
}

.home__blog-title-link:hover {
  color: #0f3d76;
  text-decoration: underline;
}

.home__blog-title-link.is--cat-page {
  margin-top: 20px;
}

.heading-5-copy {
  color: #0f3d76bf;
  border-radius: 52px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 6px 13px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  display: inline-block;
}

.home__blog-date {
  color: var(--slate-grey);
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 10px;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 14px;
  display: inline-block;
}

.home_adv-about {
  color: var(--slate-grey);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
}

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

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

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

.footerlink-wrapper {
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.blog-grid {
  grid-column-gap: 46px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  width: 100%;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.blog-item {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.blog-image {
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  min-height: 240px;
  max-height: 240px;
  transition: transform .18s cubic-bezier(.39, .575, .565, 1), box-shadow .18s cubic-bezier(.39, .575, .565, 1);
  display: block;
}

.blog-image:hover {
  transform: translate(0, -2px);
  box-shadow: 0 19px 30px #0f3d7626;
}

.welcome-rte {
  width: 100%;
  max-width: 700px;
  color: var(--white);
  letter-spacing: .2px;
  margin-left: auto;
  margin-right: auto;
  font-family: Inter Variablefont Opsz Wght, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.4;
}

.welcome-rte h2 {
  color: var(--dark-slate-blue);
  margin-top: 40px;
  margin-bottom: 24px;
  font-size: 48px;
  line-height: 1.2;
}

.welcome-rte h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 36px;
  line-height: 1.2;
}

.welcome-rte h4 {
  margin-top: 40px;
  margin-bottom: 24px;
  font-size: 30px;
  line-height: 1.2;
}

.welcome-rte p {
  color: #0f3d76f2;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.welcome-rte h5 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 26px;
}

.welcome-rte h6 {
  font-size: 24px;
  line-height: 1.4;
}

.welcome-rte blockquote {
  border-left-width: 5px;
  border-left-color: var(--dark-slate-blue);
  background-color: #0f3d761f;
  background-image: url('../images/Quote.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4;
}

.welcome-rte a {
  color: #0f3d76d9;
  border-bottom: 1px solid #0f3d7666;
  font-weight: 600;
  text-decoration: none;
}

.welcome-rte a:hover {
  border-bottom-color: var(--dark-slate-blue);
  color: var(--dark-slate-blue);
}

.welcome-rte li {
  color: #0f3d76f2;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 400;
}

.welcome-rte figcaption {
  color: #0f3d76cc;
  font-family: Messina Sans;
  font-size: 18px;
  font-weight: 400;
}

.welcome-rte figure {
  margin-top: 20px;
}

.welcome-rte img {
  max-width: none;
}

.form {
  margin-top: 24px;
  display: flex;
}

.simple-input {
  border-style: solid;
  border-width: 0 0 1px;
  border-color: black black var(--dark-slate-blue);
  background-color: #0000;
  height: 56px;
  margin-bottom: 0;
  margin-right: 40px;
}

.simple-input:active {
  color: var(--dark-slate-blue);
  letter-spacing: .2px;
  font-weight: 600;
}

.simple-input:focus {
  border-bottom-color: var(--dark-slate-blue);
  color: var(--dark-slate-blue);
  font-weight: 600;
}

.simple-input::placeholder {
  color: #0f3d76cc;
}

.simple-input.is--nl {
  border-bottom-color: var(--white);
  min-width: 180px;
  height: 56px;
  color: var(--white);
  margin-right: 18px;
  font-family: Inter Variablefont Opsz Wght, Arial, sans-serif;
}

.simple-input.is--nl:focus {
  color: #fff;
}

.simple-input.is--nl::placeholder {
  color: #fffc;
}

.btn-2 {
  text-align: center;
  letter-spacing: 0;
  background-color: #4353ff;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 21px 40px;
  font-weight: 500;
  line-height: 1;
  transition: all .15s;
}

.btn-2:hover {
  background-color: #3545ee;
}

.btn-2.is--white {
  color: #3545ee;
  background-color: #fff;
}

.btn-2.is--white:hover {
  background-color: #ffffffe6;
}

.success-message {
  color: #fff;
  background-color: #fff0;
  margin-top: 20px;
  font-size: 20px;
}

.error-message {
  color: #fff;
  background-color: #ee4d4f;
  text-decoration: none;
}

.mem_btn--wrap {
  align-items: center;
  width: 446px;
  margin-top: 40px;
  display: flex;
}

.subtitle {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: Messina Sans;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

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

.newsletter-wrap {
  background-color: var(--alice-blue);
  width: 100%;
  max-width: none;
  color: var(--dark-slate-blue);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  font-size: 16px;
  display: flex;
  position: relative;
}

.nl-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
}

.container-2 {
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 30px;
}

.container-2.hero {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.error {
  color: #ff080c;
  text-decoration: none;
}

.nl-text {
  text-align: center;
  max-width: 417px;
  margin-bottom: 10px;
  font-size: 18px;
  display: none;
}

.success_1 {
  color: var(--dark-slate-blue);
  background-color: #ffffffb0;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 600;
}

.nl-bg {
  z-index: 0;
  opacity: .2;
  width: 100px;
  position: absolute;
  inset: 5% 12% auto auto;
  transform: rotate(-34deg);
}

.nl-bg_1 {
  z-index: 0;
  opacity: .2;
  width: 100px;
  position: absolute;
  inset: 5% auto auto 3%;
  transform: rotate(34deg);
}

.share-btns {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: sticky;
  top: 100px;
  bottom: 100px;
}

.access-link {
  color: #edf7ffa6;
  font-size: 17px;
  text-decoration: none;
}

.access-link:hover {
  color: var(--alice-blue);
  text-decoration: underline;
}

.oops-btn-wrap {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.profile-embed {
  width: 100%;
  height: 100%;
}

.home-blogs {
  width: 100%;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.div-block-179 {
  align-items: flex-start;
  margin-bottom: 60px;
  display: flex;
}

.ad-wrap {
  flex: 1;
  justify-content: flex-end;
  margin-left: auto;
  display: flex;
  position: sticky;
  top: 100px;
}

.ad-block {
  min-width: 230px;
  max-width: 230px;
  min-height: 382px;
  color: var(--white);
  background-image: url('../images/nlc-sidebar-ad-2-1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  padding: 24px;
}

.heading-9 {
  margin-top: 24px;
  margin-bottom: 20px;
  font-family: Messina Sans;
  font-size: 24px;
  line-height: 1.2;
}

.ad-btn {
  background-color: var(--dark-slate-blue);
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
  align-self: auto;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  padding: 14px 39px;
  font-size: 18px;
  line-height: 1;
  transition: background-color .2s ease-in-out;
  display: block;
}

.ad-btn:hover {
  background-color: #0f3d76e6;
}

.ad-btn.membership {
  text-align: center;
  border-color: #ffe59f;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 16px 30px 14px;
  font-size: 16px;
  line-height: 120%;
  text-decoration: none;
  transition: padding .15s;
  display: flex;
  box-shadow: 0 20px 60px #5e5e5e3d;
}

.ad-btn.membership:hover {
  padding: 18px 32px 16px;
}

.ad-btn.white {
  background-color: var(--white);
  color: var(--dark-slate-blue);
}

.ad-btn.white:hover {
  background-color: #ffffffe6;
}

.ad-btn.white.oops {
  margin-left: 10px;
  margin-right: 10px;
}

.ad-btn.subscribe-nl {
  background-color: var(--white);
  color: var(--dark-slate-blue);
}

.ad-btn.subscribe-nl:hover {
  background-color: #ffffffe6;
}

.ad-btn.memberships {
  background-color: var(--dark-slate-blue);
  margin-top: 28px;
  margin-left: 56px;
  margin-right: auto;
  font-weight: 500;
}

.ad-btn.premium-member {
  margin-top: 40px;
  padding-top: 21px;
  padding-bottom: 21px;
  font-weight: 500;
}

.ad-btn.hero {
  background-color: var(--white);
  color: var(--dark-slate-blue);
}

.ad-btn.hero:hover {
  background-color: #ffffffe6;
}

.ad-btn.hero.oops {
  margin-left: 0;
  margin-right: 0;
}

.become-member-pop {
  background-color: var(--dark-slate-blue);
  width: 100%;
  color: var(--white);
  text-align: center;
  letter-spacing: .5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  padding-top: 38px;
  padding-bottom: 38px;
  font-family: Abhaya Libre, Georgia, sans-serif;
  font-size: 21px;
  text-decoration: none;
  display: flex;
}

.blog-content-wrap {
  flex-direction: column;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: 15%;
  display: flex;
}

.become-member-pop__wrap {
  width: 100%;
  max-width: 700px;
}

.dropdown-list {
  padding-top: 0;
}

.dropdown-list.w--open {
  background-color: #0000;
  width: 140px;
  padding-top: 10px;
}

.zero-margin {
  margin-bottom: 0;
}

.search-text-field {
  border: 0 solid #000;
  margin-bottom: 0;
  padding-left: 25px;
  font-size: 16px;
}

.search-text-field.jetboost-list-search-input-5m45 {
  min-width: 328px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.reset-btn {
  color: #1d1e28;
  background-color: #ffe59f;
  border-radius: 1000px;
  margin-bottom: 0;
  margin-left: 0;
  padding: 12px 35px 9px;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  transition: all .15s;
}

.reset-btn:hover {
  padding: 14px 37px 11px;
}

.reset-btn.w--current {
  color: #f6f6f6;
  background-color: #0000;
  border: 2px solid #f6f6f6;
}

.sect {
  width: 100%;
}

.checkbox-label {
  width: 100%;
  font-size: 14px;
}

.search-form-block {
  margin-bottom: 0;
}

.checkbox {
  margin-top: 5px;
}

.filter-wrap {
  align-items: center;
  text-decoration: none;
  display: flex;
}

.page-title {
  text-align: center;
  margin: 140px auto 30px;
}

.submit-button {
  display: none;
}

.search-wrap {
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  min-height: 50px;
  max-height: 50px;
  margin-top: 60px;
  display: flex;
}

.search-wrap.hide {
  justify-content: space-between;
  align-items: stretch;
}

.icon-6 {
  color: #1d1e28cc;
}

.text-block-43 {
  color: #1d1e28cc;
  margin-right: 10px;
  font-size: 16px;
  font-weight: 700;
}

.checkbox-field {
  width: 100%;
}

.member-grid {
  grid-column-gap: 2vw;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
  display: grid;
}

.dropdown-toggle {
  z-index: 1;
  height: 100%;
  padding-top: 8px;
  padding-bottom: 6px;
}

.cont {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.collection-item {
  width: 100%;
  padding: 3px 14px;
  display: flex;
}

.collection-item:hover {
  background-color: #ffe59f75;
}

.member-directory-wrapper {
  width: 100%;
  padding-bottom: 100px;
}

.dropdown {
  z-index: 1;
}

.reset-wrap {
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 44px;
  padding: 0;
  display: flex;
}

.mems__img {
  width: 100%;
  height: 239px;
}

.mems__img.is--place-holder {
  background-color: #fefefe;
}

.mems__detail {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 90%;
  height: 100%;
  margin: 20px auto;
  display: flex;
}

.mems__link {
  margin-top: 0;
  margin-bottom: 10px;
  text-decoration: none;
}

.mems__contact {
  margin-top: 16px;
}

.mems__name {
  color: var(--black);
  text-align: center;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1em;
}

.mems__contact-link {
  border-radius: 1000px;
  width: 24px;
  height: 24px;
  margin-right: 24px;
}

.mems__title {
  color: var(--chocolate);
  margin-top: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.mems__contact-logo {
  filter: contrast(0%);
  height: 100%;
  transition: opacity .1s;
}

.mems__contact-logo:hover {
  filter: contrast();
}

.mems__city {
  color: var(--dark-slate-blue);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.25;
}

.mems__directory {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}

.mems__grid {
  grid-column-gap: 3vw;
  grid-row-gap: 3vw;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.mems__card {
  border-style: solid;
  border-width: 1px 1px 2px;
  border-color: #ddd #ddd var(--dark-slate-blue);
  border-radius: 3px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  transition: border-color .18s cubic-bezier(.39, .575, .565, 1), box-shadow .18s cubic-bezier(.39, .575, .565, 1);
  display: flex;
  overflow: hidden;
}

.mems__card:hover {
  border-bottom-color: #ddd;
  box-shadow: 0 0 68px -12px #00000021;
}

.mems__card.industry {
  background-color: #fff;
  justify-content: flex-start;
  width: 232px;
  height: 280px;
  padding-top: 15px;
  padding-bottom: 15px;
  overflow: auto;
}

.hide-2 {
  color: #fff;
  background-color: #fff;
  display: none;
}

.blog__share-wrap {
  align-items: center;
  display: flex;
}

.blog__share-wrap.is--aligned-centered {
  align-items: center;
}

.mems__search-form-block {
  margin-bottom: 0;
  display: flex;
}

.mems__dd-wrap {
  border-style: solid;
  border-width: 1px 1px 2px;
  border-color: #ddd #ddd var(--dark-slate-blue);
  background-color: #fff;
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
  box-shadow: 0 7px 13px #6666663b;
}

.collection-item-2 {
  width: 100%;
  padding: 3px 14px;
  display: flex;
}

.collection-item-2:hover {
  background-color: #0f3d761a;
}

.filter-wrap-2 {
  align-items: stretch;
  text-decoration: none;
  display: flex;
}

.mems__dd-list {
  padding-top: 0;
}

.mems__dd-list.w--open {
  background-color: #0000;
  width: 140px;
  padding-top: 10px;
}

.search-text-field-2 {
  border: 1px solid var(--dark-slate-blue);
  height: 100%;
  margin-bottom: 0;
  padding-left: 25px;
  font-size: 16px;
}

.search-text-field-2:active, .search-text-field-2:focus {
  color: var(--dark-slate-blue);
}

.search-text-field-2::placeholder {
  color: #0f3d76cc;
}

.search-text-field-2.jetboost-list-search-input-5ol5 {
  min-width: 328px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.btn-3 {
  text-align: center;
  letter-spacing: 0;
  background-color: #4353ff;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 21px 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  transition: all .15s;
}

.btn-3:hover {
  background-color: #3545ee;
}

.btn-3.is--reset {
  background-color: var(--dark-slate-blue);
  min-height: 50px;
  color: var(--white);
  border-radius: 4px;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  transition-duration: .18s;
  display: flex;
}

.btn-3.is--reset:hover {
  color: #fff;
  background-color: #0f3d76e6;
}

.reset-wrap-2 {
  justify-content: center;
  align-items: stretch;
  padding: 0;
  display: flex;
}

.mems__dd-toggle {
  z-index: 1;
  border: 1px solid #66666657;
  height: 100%;
  margin-left: 20px;
  padding-top: 8px;
  padding-bottom: 6px;
}

.mems__dd {
  z-index: 1;
}

.mems__nl-link {
  color: #0f3d76cc;
  border-bottom: 1px solid #5c677d45;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
  display: block;
}

.mems__nl-link:hover {
  border-bottom-color: var(--dark-slate-blue);
  color: #0f3d76;
}

.mems__nl-link.is--name {
  border-bottom-color: #0000;
}

.mems__nl-link.is--name:hover {
  text-decoration: none;
}

.mems__search-input {
  min-width: 360px;
  padding-right: 52px;
}

.mems__search-input.jetboost-list-search-input-5ol5 {
  border-radius: 4px;
}

.mems__search-form {
  min-width: 300px;
  position: relative;
}

.mems__pagination {
  margin-top: 80px;
}

.prev-btn {
  border-color: var(--dark-slate-blue);
  background-color: var(--dark-slate-blue);
  width: 136px;
  color: var(--white);
  text-align: center;
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color .18s cubic-bezier(.39, .575, .565, 1);
}

.prev-btn:hover {
  background-color: #0f3d76e6;
}

.nxt-btn {
  border-color: var(--dark-slate-blue);
  background-color: var(--dark-slate-blue);
  width: 136px;
  color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color .18s cubic-bezier(.39, .575, .565, 1);
  display: flex;
}

.nxt-btn:hover {
  background-color: #0f3d76e6;
}

.mems__subhead {
  text-align: center;
  background-color: #dffab16e;
  border-radius: 6px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 16px 23px;
  font-size: 16px;
}

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

.link-8 {
  color: var(--dark-slate-blue);
  font-weight: 700;
  text-decoration: underline;
}

.members__info-grid {
  grid-column-gap: 10px;
  grid-template-columns: 24px 1fr;
  place-items: start;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}

.location__icon {
  height: 20px;
  margin-top: -3px;
}

.newsletter__icon, .latest-writing__icon {
  width: 20px;
  height: 20px;
  margin-top: -3px;
}

.html-embed {
  background-color: var(--dark-slate-blue);
  width: 100%;
  height: 100%;
  margin-top: 60px;
}

.login-embed {
  border: 1px solid var(--white);
  background-color: var(--dark-slate-blue);
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 800px;
  margin-top: 104px;
  margin-left: auto;
  margin-right: auto;
}

.blog-cat__title-wrap {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-181 {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  display: flex;
}

.link-9 {
  color: var(--black);
}

.hero__link {
  color: var(--sandy-brown-2);
  margin-top: 48px;
  text-decoration: none;
}

.hero__link:hover {
  opacity: 1;
}

.blog__collection {
  width: 100%;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.login-embed-1 {
  z-index: 1;
  background-color: var(--dark-slate-blue);
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 500px;
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.perk-wrap {
  z-index: 1;
  grid-column-gap: 9px;
  grid-row-gap: 16px;
  background-color: #0f3d7600;
  border: 1px solid #ffffff3b;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  padding: 20px 4%;
  transition: all .18s cubic-bezier(.39, .575, .565, 1);
  display: grid;
  position: relative;
  box-shadow: 0 6px 18px #1f66be3d;
}

.perk-wrap:hover {
  background-color: var(--white);
  color: var(--dark-slate-blue);
}

.perk-wrap.hide {
  display: none;
}

.perk-link {
  letter-spacing: .3px;
  margin-top: 20px;
  margin-left: 56px;
  font-size: 18px;
}

.link-8-copy {
  color: var(--dark-slate-blue);
  margin-top: 20px;
  margin-left: 56px;
  font-weight: 600;
  text-decoration: underline;
}

.stacks-grid {
  grid-column-gap: 28px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  max-width: 100%;
  margin-top: 20px;
  margin-bottom: 100px;
}

.stack-wrap {
  background-color: #0f3d760d;
  flex-direction: column;
  padding: 5% 7% 7%;
  display: flex;
}

.nav__dd {
  color: var(--white);
  padding-left: 0;
  padding-right: 21px;
}

.nav__dd-list {
  border: 1px solid var(--dark-slate-blue);
  background-color: var(--white);
  border-radius: 2px;
  box-shadow: 0 3px 9px #0f3d764f;
}

.nav__dd-list.w--open {
  left: -23px;
}

.nav__dd-icon {
  margin-right: 0;
}

.mem__profile-pic {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.perk-code {
  letter-spacing: .3px;
  border: 1px dashed #838383;
  margin-top: 20px;
  padding: 6px 12px;
  font-size: 15px;
}

.div-block-182 {
  justify-content: flex-end;
  display: flex;
}

.perks__title {
  color: var(--chocolate);
  margin-top: 5px;
  margin-bottom: 5px;
  font-family: Abhaya Libre, Georgia, sans-serif;
  font-size: 30px;
  line-height: 1.2;
}

.image-61 {
  margin-left: auto;
}

.perks__content {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.perks__img {
  object-fit: contain;
  width: 180px;
  height: 180px;
}

.perks-grid {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 831px;
  margin-top: 20px;
  margin-bottom: 100px;
  position: relative;
}

.perks__text {
  grid-column-gap: 16px;
  grid-row-gap: 14px;
  width: 100%;
  color: var(--slate-grey);
  grid-template-rows: auto auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.perks__subhead {
  color: var(--dark-slate-blue);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.4;
}

.code {
  border: 1px dashed var(--dark-slate-blue);
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 5px;
  padding-right: 5px;
  display: inline-block;
}

.perks-rte ul {
  padding-left: 20px;
}

.perks-rte a {
  border-bottom: 1px solid var(--dark-slate-blue);
  color: var(--dark-slate-blue);
  text-decoration: none;
}

.perk-links {
  border-bottom: 1px solid var(--dark-slate-blue);
  color: var(--dark-slate-blue);
  font-weight: 600;
  text-decoration: none;
}

.contact-link {
  color: var(--white);
  font-size: 17px;
}

.blog-ad {
  justify-content: center;
  align-items: center;
  width: 15%;
  min-width: 200px;
  display: flex;
  position: sticky;
  top: 100px;
}

.blog-ad.hide {
  display: none;
}

.summit__company-title {
  color: #474a57;
  margin-top: 100px;
  margin-bottom: 36px;
  font-size: 21px;
  font-weight: 400;
}

.marquee-text {
  flex: none;
}

.summit-link {
  color: #ff634b;
  text-decoration: none;
}

.summit-link:hover {
  text-decoration: underline;
}

.summit-input {
  background-color: #0000;
  border: 2px solid #474a57;
  min-height: 56px;
  margin-bottom: 0;
}

.summit-input:focus {
  box-shadow: none;
}

.summit-input::placeholder {
  color: #7d7e90;
  font-size: 18px;
}

.q-rte {
  width: 90%;
  margin-top: 10px;
}

.q-rte a {
  color: var(--dark-slate-blue);
}

.summit__promo-head {
  color: #fff;
  letter-spacing: .4px;
  margin-top: 0;
  margin-bottom: 32px;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.4;
}

.summit__quoter-name {
  margin-top: 0;
  margin-bottom: 4px;
  font-weight: 500;
}

.summit__promo-btn-wrap {
  align-items: center;
  display: flex;
}

.summit__promo-btn-wrap.is--mob {
  display: none;
}

.div-block-190 {
  align-items: flex-start;
  display: flex;
}

.summit__btn-wrap {
  justify-content: flex-start;
  align-items: center;
  width: 190px;
  height: 56px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.summit__btn-wrap.is--promo {
  width: 320px;
}

.summit__btn-wrap.is--centered {
  justify-content: center;
  width: 227px;
}

.summit__btn-wrap.is--banner {
  justify-content: center;
  width: 227px;
  margin-top: 24px;
}

.summit__wc-industries {
  text-align: left;
  display: flex;
}

.slider__quote-icon {
  z-index: -1;
  opacity: .5;
  position: absolute;
  inset: 5% auto auto 2%;
}

.summit__events-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}

.summit__events-grid.is--two {
  grid-template-columns: 1fr 1fr;
}

.q-text {
  flex: 1;
  margin-top: 15px;
  margin-left: 0;
  padding-right: 10px;
  font-family: Abhaya Libre, Georgia, sans-serif;
  font-size: 26px;
}

.nav__brand {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 144px;
  height: 100%;
  display: flex;
}

.nav__brand.w--current {
  width: 144px;
}

.nav__brand.is--summit {
  align-items: flex-start;
}

.summit__industry-name {
  color: #7d7e90;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 8px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.sec-sum {
  width: 100%;
}

.sec-sum.is--summit-dark {
  background-color: var(--alice-blue);
  padding-bottom: 120px;
}

.sec-sum.is--summit-hero {
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  height: 100vh;
  padding-bottom: 0;
  display: flex;
}

.sec-sum.is--summit-embed {
  background-color: #e7eaf3;
  padding-top: 120px;
  padding-bottom: 120px;
}

.sec-sum.is--summit-footer {
  background-color: var(--alice-blue);
  padding-top: 60px;
  padding-bottom: 0;
}

.sec-sum.is--summit-events {
  background-color: #e7eaf3;
  flex-direction: column;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
}

.sec-sum.is--summit-promo {
  background-color: #1d1e28;
  padding-top: 120px;
  padding-bottom: 120px;
}

.sec-sum.is--summit-recordings {
  background-color: #e7eaf3;
  flex-direction: column;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 120px;
  display: flex;
}

.summit__speaker-about {
  color: #f6f6f6;
  letter-spacing: .2px;
  font-size: 16px;
  font-weight: 300;
}

.summit-logo {
  z-index: 1;
  width: 154px;
  min-height: 24px;
  position: absolute;
}

.summit-logo.is--dark {
  z-index: -1;
  background-image: url('../images/CoSummit_Dark.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

.summit-logo.is--light {
  background-image: url('../images/CoSummit_light.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.summit__slide {
  color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 11% 10% 8%;
}

.summit__left-arrow {
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-left: -18px;
  display: flex;
  inset: auto auto 18px 48px;
}

.summit__yelllow-link {
  color: var(--black);
  border-bottom: 1px solid #ffe59f;
  text-decoration: none;
}

.hopin-embed {
  border-bottom: 1px solid #474a57;
  border-right: 1px solid #474a57;
  border-radius: 8px;
  justify-content: center;
  align-items: stretch;
  min-width: 545px;
  min-height: 600px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 1px 20px #00000014;
}

.btn__wrap {
  justify-content: center;
  align-items: center;
  width: 163px;
  height: 54px;
  margin-left: 0;
  padding: 0;
  display: flex;
}

.btn__wrap.is--nav {
  width: 130px;
}

.summit__count-down {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--chocolate);
  color: #f6f6f6;
  letter-spacing: .8px;
  text-transform: uppercase;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  min-width: 50%;
  max-width: 452px;
  margin-top: -32px;
  margin-bottom: 60px;
  padding: 18px;
  font-size: 16px;
  font-weight: 300;
  display: grid;
}

.nav__wrap {
  width: 100%;
  max-width: 1300px;
  height: 72px;
  padding-left: 30px;
  padding-right: 30px;
}

.nav__wrap.is--summit {
  max-width: none;
  padding-left: 4%;
  padding-right: 4%;
}

.summit__sub-form {
  flex-direction: column;
  max-width: 400px;
  display: flex;
}

.summit__event-info {
  color: var(--slate-grey);
}

.text-span-8 {
  color: var(--sandy-brown-2);
}

.summit__arrow-img {
  width: 24px;
  height: 24px;
}

.summit__arrow-img.is--left {
  inset: auto 0% 6% auto;
}

.summit__wc-right {
  background-color: #ffaf6e85;
  width: 45%;
  max-width: 446.703px;
  margin-bottom: 0;
  margin-left: 0%;
  padding-top: 10px;
  padding-right: 10px;
}

.summit__wc-left {
  width: 45%;
  margin-right: 5%;
}

.summit__company-grid {
  border-bottom: 1px solid #6e71913d;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  place-items: center;
  margin-bottom: 100px;
  padding-bottom: 40px;
}

.summit__wc-tick {
  flex: none;
  width: 20px;
  height: 20px;
}

.summit__nl-wrap {
  display: flex;
  position: relative;
}

.resp-iframe {
  background-color: #f6f6f6;
  border-radius: 8px;
  width: 100%;
  margin-right: 0;
  overflow: hidden;
}

.text-block-50 {
  text-align: center;
  max-width: 420px;
  margin: 18px auto 44px;
}

.summit__quoter {
  margin-top: 24px;
  display: flex;
}

.summit__quoter.is--promo {
  text-align: center;
  flex-direction: column;
  align-items: center;
  min-width: 40%;
  margin-top: 0;
}

.q-wrap {
  align-items: center;
  display: flex;
}

.summit__first-slider {
  background-color: #1d1e28;
  min-height: 378px;
  margin-bottom: -24px;
  margin-left: -24px;
}

.summit__wc-subhead {
  color: #7d7e90;
  width: 90%;
  margin-bottom: 28px;
}

.summit__speaker-card {
  background-color: var(--dark-slate-blue);
  color: #f6f6f6;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 11% 8%;
  display: flex;
}

.summit__wc-head {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 36px;
  line-height: 1.2;
}

.summit__wc-head.is-white {
  color: var(--white);
}

.summit__success {
  background-color: #0000;
  border: 2px solid #1d1e28;
}

.summit__right-arrow {
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  position: absolute;
  inset: auto 32px 18px auto;
}

.summit__promo-right {
  color: #f6f6f6db;
  width: 45%;
  max-width: 446.703px;
  margin-left: 0%;
  padding-right: 24px;
}

.marquee-horizontal {
  z-index: 200;
  background-color: var(--white);
  width: 100%;
  color: var(--chocolate);
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.marquee-horizontal.hide {
  display: none;
}

.summit-hero__img {
  object-fit: cover;
  width: 100%;
  min-width: 80%;
  max-width: none;
  margin-left: -16%;
}

.sec__title {
  text-align: center;
  width: 80%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3em;
}

.summit__footer-sub-head {
  color: #474a57;
  width: 100%;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 23px;
}

.con-sum {
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.con-sum.is--summit-wc {
  flex-direction: row;
  justify-content: space-around;
  padding: 120px 4%;
}

.con-sum.is--summit-hero-dark {
  background-color: var(--alice-blue);
  justify-content: center;
  align-items: flex-start;
  width: 70%;
  max-width: none;
  padding-left: 4%;
  padding-right: 0;
  position: relative;
}

.con-sum.is--summit-footer {
  border-bottom: 1px solid #7d7e90;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 4%;
  padding-left: 4%;
  padding-right: 4%;
}

.con-sum.is--summit {
  padding-left: 4%;
  padding-right: 4%;
}

.con-sum.is--tickets {
  flex-direction: row;
  justify-content: space-around;
  align-items: stretch;
  padding-left: 4%;
  padding-right: 4%;
}

.con-sum.is---summit-hero-white {
  justify-content: center;
  align-items: flex-start;
  max-width: none;
  padding-left: 4%;
  padding-right: 4%;
}

.con-sum.home-faq {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 100px;
  display: flex;
}

.con-sum.is--summit-promo {
  flex-direction: row;
  justify-content: space-around;
  align-items: stretch;
  padding-left: 4%;
  padding-right: 4%;
}

.summit__quotter {
  border-radius: 100px;
  flex: none;
  width: 60px;
  height: 60px;
  margin-right: 9px;
}

.summit__quotter.is--promo {
  width: 120px;
  height: 120px;
  margin-bottom: 8px;
}

.summit__hero-subhead {
  width: 90%;
  color: var(--slate-grey);
  margin-bottom: 28px;
}

.summit__event-title {
  color: var(--dark-slate-blue);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2em;
}

.summit__cd-title {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 4px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1em;
}

.summit__slider-quote {
  font-weight: 300;
}

.summit__slider-nav {
  justify-content: center;
  align-items: center;
  font-size: 11px;
  display: flex;
  bottom: 24px;
}

.summit-cos-logo {
  width: 153px;
}

.summit__promo-slider {
  background-color: #1d1e28;
  max-width: 750px;
  min-height: 349px;
  margin-top: 80px;
}

.nav__link-2 {
  color: #fff;
  margin-left: 13px;
  margin-right: 13px;
  padding: 0;
  font-size: 16px;
  transition: color .2s ease-in-out;
}

.nav__link-2:hover {
  color: #ffe59fd1;
}

.nav__link-2.w--current {
  color: #fff;
  text-decoration: none;
}

.summit__speakers-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-bottom: 32px;
}

.track-horizontal {
  justify-content: center;
  align-items: center;
  display: flex;
}

.summit__speaker-name {
  color: #fff;
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 400;
}

.summit__company-logo {
  object-fit: scale-down;
  max-height: 50px;
}

.summit__footer-feet-link {
  color: #51536a;
}

.summit__footer-feet-link:hover {
  color: #1d1e28;
}

.summit-hero__head {
  max-width: 425.563px;
  margin-bottom: 20px;
  line-height: 1;
}

.btn-4 {
  color: #1d1e28;
  text-align: center;
  background-color: #ffe59f;
  border-radius: 1000px;
  align-self: auto;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 40px 12px;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  transition: all .15s;
  display: block;
}

.btn-4:hover {
  margin-bottom: 0;
  padding-top: 17px;
  padding-bottom: 14px;
}

.btn-4.is--summint-hero {
  margin-left: 0;
  margin-right: 0;
  padding: 14px 29px 13px;
}

.btn-4.is--summint-hero:hover {
  padding-left: 25px;
  padding-right: 25px;
}

.btn-4.is--summint-join {
  margin-left: 0;
  margin-right: 0;
  padding: 14px 22px 13px;
}

.btn-4.is--summint-join:hover {
  padding-left: 25px;
  padding-right: 25px;
}

.summit__event-card {
  color: #51536a;
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 7% 8%;
  display: flex;
}

.summit__hero-aside {
  color: #fff;
  flex-direction: column;
  margin-right: 18px;
  line-height: .6em;
  text-decoration: none;
  display: flex;
}

.summit__hero-aside.is--hor {
  flex-direction: row;
  align-items: center;
}

.summit__footer-feet {
  color: #51536a;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 4%;
  display: flex;
}

.summit__light-head {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
}

.link-10 {
  color: #7d7e90;
  text-decoration: none;
}

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

.summit__promo-left {
  flex-flow: column wrap;
  width: 45%;
  margin-right: 5%;
}

.powered-text {
  color: #ffe59f;
  margin-top: 0;
  margin-bottom: 11px;
  margin-right: 20px;
  font-size: 18px;
  text-decoration: none;
}

.powered-text.is--dark {
  color: #7d7e90;
  margin-bottom: 0;
}

.summit__footer-link-wrap {
  flex-direction: column;
  display: flex;
}

.summit__footer-logo {
  max-width: 169px;
}

.summit__submit-button {
  background-color: #0000;
  background-image: url('../images/Arrow-2.svg'), none;
  background-position: 50%, 50%;
  background-repeat: no-repeat, no-repeat;
  background-size: 40px 40px, 40px 40px;
  min-width: 100px;
  transition: opacity .2s, background-color .2s;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.summit__submit-button:hover {
  background-color: #1d1e28;
  background-image: none;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 40px 40px;
}

.q-container {
  text-align: left;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #1d1e2829;
  border-radius: 8px;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 24px;
  padding: 14px 32px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.q-container:hover {
  background-color: #ffe59f17;
  border-color: #ffe59f;
}

.q-container.is--summit {
  background-color: var(--alice-blue);
  border-color: #474a5700;
  border-radius: 0;
  padding-top: 4px;
  padding-bottom: 4px;
  transition: border-color .2s cubic-bezier(.39, .575, .565, 1), background-color .2s cubic-bezier(.39, .575, .565, 1);
}

.q-container.is--summit:hover {
  background-color: #e7eaf3;
  border-color: #1d1e28;
}

.q-acc {
  width: 20px;
  height: 24px;
}

.summit__spearker-img {
  border: 1px solid var(--chocolate);
  object-fit: cover;
  border-radius: 1000px;
  flex: none;
  width: 160px;
  height: 160px;
}

.join-btn {
  color: #1d1e28;
  background-color: #ffe59f;
  border-radius: 1000px;
  margin-bottom: 0;
  margin-left: 0;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  transition: all .15s;
}

.join-btn:hover {
  padding: 14px 22px;
}

.join-btn.w--current {
  color: #f6f6f6;
  background-color: #0000;
  border: 2px solid #f6f6f6;
}

.summit__quoter-about {
  font-size: 14px;
  font-weight: 300;
}

.summit__tickets-head {
  text-align: center;
  margin-top: 0;
  margin-bottom: 48px;
  font-size: 36px;
}

.summit__promo-mask {
  background-color: #51536a;
}

.nav-2 {
  z-index: 999;
  background-color: #1d1e28;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-2.is--summit {
  background-color: #0000;
  flex-direction: column;
}

.nav__menu-2 {
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
}

.nav__menu-2.is--summit {
  max-width: 50%;
}

.summit__first-mask {
  background-color: var(--dark-slate-blue);
}

.summit__footer-link {
  color: #474a57;
  margin-bottom: 10px;
  text-decoration: none;
}

.summit__event-icon {
  max-width: 48%;
  max-height: 48px;
  margin-bottom: 20px;
}

.summit__hero-dates {
  color: #fff;
  flex-direction: row;
  align-items: center;
  line-height: .6em;
  text-decoration: none;
  display: none;
  position: absolute;
  inset: auto auto 6% 9%;
}

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

.summit-hero__date {
  border: 1px solid var(--dark-slate-blue);
  color: var(--dark-slate-blue);
  letter-spacing: .8px;
  background-color: #ffaf6e85;
  border-radius: 20px;
  margin-top: 80px;
  margin-bottom: 0;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
}

.home__info-wrap {
  align-items: center;
  min-height: 19.6px;
  display: flex;
}

.home__info-wrap.is--blogs {
  min-height: 5px;
}

.home__hero-left, .home__hero-right {
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.test-nav {
  justify-content: center;
  align-items: center;
  font-size: 10px;
  display: flex;
}

.test-name {
  color: var(--chocolate);
  margin-top: 16px;
  font-weight: 700;
}

.arrow {
  justify-content: center;
  align-items: center;
  display: flex;
}

.arrow.is--right {
  justify-content: flex-end;
  margin-right: -80px;
}

.arrow.is--left {
  justify-content: flex-start;
  margin-left: -80px;
}

.test-text {
  letter-spacing: -.2px;
  margin-top: 16px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.test-logo-wrap {
  background-color: #fff;
  border: 1px solid #54545421;
  border-radius: 1000px;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
  position: absolute;
  inset: auto -25px -25px auto;
  overflow: hidden;
}

.test-about {
  color: var(--slate-grey);
  font-size: 14px;
  font-weight: 400;
}

.test-slide {
  width: 100%;
  max-width: 720px;
}

.test-logo {
  object-fit: scale-down;
  width: 100%;
  height: 100%;
}

.test-mask {
  width: 100%;
  max-width: 720px;
  padding-top: 0;
  padding-bottom: 0;
}

.test-slider {
  background-color: #0000;
  justify-content: center;
  max-width: 1000px;
  min-height: 56vh;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.test-wrap {
  align-items: center;
  height: 100%;
  display: flex;
}

.test-img-wrap {
  flex: none;
  max-width: 225px;
  margin-right: 48px;
  position: relative;
}

.test-headshot {
  border-radius: 12px;
}

.arrow-icon {
  border: 1px solid #f36d0024;
  border-radius: 1000px;
}

.arrow-icon:hover {
  border-color: #e8664f;
}

.home__hero-img {
  z-index: 0;
  object-fit: contain;
  object-position: 100% 100%;
  width: 74%;
  height: 100%;
  display: block;
  position: absolute;
  inset: auto 0% 0% auto;
}

.home__hero-img.is--tab, .home__hero-img.is--mob {
  display: none;
}

.heom__hero-form-field {
  height: 48px;
  color: var(--white);
  background-color: #0000;
  border: 1px solid #ffffffa1;
  border-radius: 100px;
  margin-bottom: 0;
  margin-right: 10px;
  padding-left: 24px;
  transition: all .18s cubic-bezier(.39, .575, .565, 1);
}

.heom__hero-form-field:hover {
  border-color: var(--white);
  color: var(--white);
}

.heom__hero-form-field:focus {
  background-color: var(--white);
  color: var(--dark-slate-blue);
  border: 1px solid #2b2d42;
}

.heom__hero-form-field::placeholder {
  color: #ffffffa3;
}

.home__hero-nl {
  z-index: 1;
  max-width: 375px;
  position: relative;
}

.home__hero-btn-wrap {
  text-align: left;
  margin-top: 30px;
  margin-bottom: 60px;
}

.con-copy {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 4%;
  transition: transform .18s cubic-bezier(.39, .575, .565, 1);
}

.con-copy.is--home-hero {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  padding-top: 140px;
  display: block;
  position: relative;
}

.access-head {
  color: var(--white);
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.2;
}

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

.btn-5 {
  color: #fff;
  text-align: center;
  background-color: #e8664f;
  border-radius: 1000px;
  flex: none;
  padding: 10px 24px;
  font-size: 16px;
  transition: all .18s cubic-bezier(.39, .575, .565, 1);
}

.btn-5:hover {
  background-color: #d35c47;
  border-color: #d35c47;
}

.btn-5.is--home-hero {
  text-align: center;
  margin-right: 20px;
}

.btn-5.is--sec {
  color: #e8664f;
  background-color: #0000;
}

.btn-5.is--sec:hover {
  color: #fff;
  background-color: #d35c47;
}

.btn-5.is--sec.is--hero {
  margin-right: 0;
}

.btn-5.is--submit {
  background-color: var(--pale-goldenrod);
  width: 48px;
  height: 48px;
  color: var(--dark-slate-blue);
  text-align: center;
  padding: 0 9px;
  font-size: 21px;
}

.btn-5.is--submit:hover {
  background-color: var(--alice-blue);
  padding-left: 17px;
}

.success {
  color: var(--pale-goldenrod);
  background-color: #0000;
  border-radius: 9px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-weight: 600;
}

.home__hero-subhead {
  max-width: 500px;
  margin-top: 10px;
  font-size: 1.3vw;
  font-weight: 400;
  line-height: 1.4;
}

.home__hero-form {
  flex-wrap: wrap;
  align-items: stretch;
  display: flex;
}

.home__hero-wrap {
  z-index: 1;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 80px;
  display: flex;
  position: relative;
}

.home__hero-nl-text {
  color: var(--pale-goldenrod);
  margin-bottom: 20px;
}

.fail {
  color: #fff;
  background-color: #e8664f;
  border-radius: 8px;
  font-size: 12px;
}

.blog-thumbnail {
  object-fit: cover;
  width: 100%;
  min-height: 200px;
  max-height: 200px;
  transition: transform .18s cubic-bezier(.39, .575, .565, 1), box-shadow .18s cubic-bezier(.39, .575, .565, 1);
  display: block;
}

.blog-thumbnail:hover {
  transform: translate(0, -2px);
  box-shadow: 0 19px 30px #0f3d7626;
}

.text-orange {
  color: var(--chocolate);
}

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

.slack__response-relative {
  z-index: 99999;
  margin-top: 100px;
  position: relative;
}

.slack__response-relative.is--welcome {
  margin-top: 60px;
}

.tf-wrap {
  background-color: #1d1e28;
  height: 100vh;
  padding-top: 0;
}

.tf-wrap.is--summit {
  color: #474a57;
  text-align: center;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 13%;
  display: flex;
}

.close-thread {
  z-index: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  inset: -37px -49px auto auto;
}

.slack__response {
  background-color: #fff;
  border: 1px solid #0000002e;
  border-radius: 12px;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  height: 100%;
  max-height: 80vh;
  padding: 24px;
  display: flex;
  overflow: auto;
}

.slack__response.is--summit {
  border-radius: 20px;
  min-width: 400px;
  max-width: 535px;
  max-height: none;
  padding: 0;
  overflow: hidden;
}

.summit__modal-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 42px;
  line-height: 1.2em;
}

.thread-bg {
  z-index: 9999;
  cursor: pointer;
  position: absolute;
  inset: 0%;
}

.slack__response-modal {
  z-index: 9999999;
  background-color: #1d1e28ad;
  justify-content: center;
  align-items: flex-start;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.slack__response-modal.is--summit {
  align-items: center;
  display: none;
}

.text-blue {
  color: var(--dark-slate-blue);
}

.nav_new-tag {
  background-color: var(--pale-goldenrod);
  color: var(--dark-slate-blue);
  border-radius: 20px;
  padding: 4px;
  font-size: 12px;
  display: inline-block;
}

.image-62 {
  position: absolute;
  inset: 15% 4% auto auto;
}

.survey_embed-wrap {
  background-color: var(--dark-slate-blue);
  height: 100vh;
  display: flex;
  position: relative;
}

.survey_content-wrap {
  grid-column-gap: 31px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: start;
  max-width: 685px;
  margin-left: auto;
  margin-right: auto;
  padding: 5% 8%;
  font-size: 18px;
  line-height: 1.5;
  display: grid;
  position: relative;
  overflow: auto;
}

.survey_embed {
  background-color: var(--dark-slate-blue);
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}

.survey_logo {
  width: 176px;
}

.survey_content-sections {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.survey_nav {
  z-index: 9999;
  justify-content: space-between;
  align-items: center;
  padding-left: 4%;
  padding-right: 4%;
  display: flex;
  position: absolute;
  inset: 4% 0% auto;
}

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

.survey_heading {
  border-bottom: 1px solid var(--sandy-brown-2);
  color: var(--black);
  padding-bottom: 13px;
  font-family: Messina Sans;
  font-size: 24px;
  line-height: 1.3;
}

.survey-rte h4 {
  color: var(--dark-slate-blue);
}

.survey-code {
  border: 1px dashed var(--chocolate);
  color: var(--green-yellow);
  letter-spacing: .3px;
  cursor: pointer;
  margin-top: 20px;
  padding: 1%;
  font-size: 15px;
}

.survey_btn--wrap {
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.image-63 {
  width: 100%;
}

.fs-copyclip_button {
  color: #fff;
  text-align: center;
  background-color: #5c2aff;
  border-radius: 500px;
  padding: .6rem 2rem .65rem;
}

.fs-copyclip_button:hover {
  background-color: #6739ff;
}

.bootcamp-video {
  border: 1px solid #0f3d761a;
  width: 100%;
  margin-bottom: 20px;
}

.bootcamp-rec-link {
  border-bottom: 1px solid var(--chocolate);
  color: var(--dark-slate-blue);
  margin-top: auto;
  font-weight: 700;
  text-decoration: none;
}

.max-360 {
  width: 100%;
  max-width: 340px;
}

.max-360.is-centerd {
  text-align: center;
  margin-bottom: 20px;
}

.bootcamp-hairline {
  color: var(--chocolate);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 12px;
}

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

.image-64 {
  margin-top: 100px;
}

.section_bootcamp-login {
  background-color: var(--dark-slate-blue);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 70vh;
  display: flex;
  position: relative;
}

.section_bootcamp-login.is--auto {
  justify-content: flex-start;
  height: auto;
  padding-top: 120px;
}

.section_bootcamp-login.is--light {
  background-color: var(--white);
  justify-content: flex-start;
  height: auto;
  padding-top: 140px;
}

.section_bootcamp-login.is--height-auto {
  height: auto;
  padding-top: 18vh;
  padding-bottom: 18vh;
}

.section_bootcamp-login.is--survey-ty {
  height: auto;
  min-height: 10vh;
  padding-top: 14vh;
  padding-bottom: 7vh;
}

.all-blogs {
  border: 1px solid var(--dark-slate-blue);
  color: var(--dark-slate-blue);
  text-align: center;
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px 23px;
  font-family: Messina Sans;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: color .18s cubic-bezier(.39, .575, .565, 1), background-color .18s cubic-bezier(.39, .575, .565, 1);
}

.all-blogs:hover {
  background-color: var(--dark-slate-blue);
  color: var(--white);
}

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

.text-center.is-directory {
  margin-bottom: 20px;
}

.text-color-light {
  color: var(--slate-grey);
}

.cc-rte {
  width: 100%;
  max-width: 700px;
  color: var(--cc-purple);
  letter-spacing: .2px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cc-rte h2 {
  color: var(--black);
  margin-top: 32px;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.cc-rte h3 {
  color: var(--black);
  margin-top: 32px;
  margin-bottom: 20px;
  font-family: Abhaya Libre, Georgia, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.cc-rte h4 {
  color: var(--black);
  margin-top: 32px;
  margin-bottom: 16px;
  font-family: Abhaya Libre, Georgia, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

.cc-rte p {
  letter-spacing: 0;
  margin-bottom: 20px;
}

.cc-rte h5 {
  color: var(--black);
  margin-top: 24px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.cc-rte h6 {
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.cc-rte blockquote {
  border-left-width: 5px;
  border-left-color: var(--dark-slate-blue);
  background-color: #0f3d761f;
  background-image: url('../images/Quote.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 18px 36px;
  line-height: 1.4;
}

.cc-rte a {
  border-bottom: 1px solid var(--dark-slate-blue);
  color: #0f3d76e6;
  text-decoration: none;
}

.cc-rte a:hover {
  color: var(--dark-slate-blue);
  border-bottom-color: #0f3d76cc;
}

.cc-rte li {
  margin-bottom: 10px;
}

.cc-rte figcaption {
  color: #0f3d76cc;
  font-family: Messina Sans;
  font-size: 18px;
  font-weight: 400;
}

.cc-rte figure {
  margin-top: 20px;
}

.cc-rte img {
  max-width: none;
  margin-top: 24px;
  margin-bottom: 24px;
}

.cc-heading {
  color: var(--cc-purple);
  text-shadow: 0 1px 6px #f89f5b80;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 64px;
  line-height: 1.2;
}

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

.legal_logo-wrapper-2 {
  z-index: 99;
  background-color: var(--dark-slate-blue);
  width: 100%;
  color: var(--dark-slate-blue);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: flex;
  position: sticky;
  top: 0;
}

.logo_logo-2 {
  width: 10rem;
  margin-left: auto;
  margin-right: auto;
}

.legal_logo-image {
  object-fit: contain;
  width: 100%;
  height: 100%;
  font-size: 26px;
  font-weight: 400;
  line-height: 0;
}

.legal_link-wrapper {
  color: #474a57;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
}

.legal_link-wrapper.is-home {
  margin-top: 3rem;
}

.legal_rich-text {
  color: #1d1e28;
  font-size: 1rem;
  font-weight: 400;
}

.legal_rich-text.is--privacy_policy {
  font-size: 1rem;
}

.legal_link {
  color: #0c3c60;
  background-color: #fee2bf00;
  border-bottom: 1px solid #6e6e6e26;
  width: 100%;
  padding: .5rem 1rem;
  font-size: .9rem;
  text-decoration: none;
}

.legal_link:hover {
  background-color: #fee2bf6e;
}

.legal_link.w--current {
  background-color: #fee2bf6e;
  font-weight: 600;
  box-shadow: inset 0 -1px #f59d2c;
}

.legal_link.is-home, .legal_link.is-last {
  border-bottom-style: none;
}

.legal_aside {
  border: 1px solid #096ad033;
  border-radius: .5rem;
  max-height: 36rem;
  padding-top: 1rem;
  position: sticky;
  top: 6rem;
  overflow: auto;
}

.legal_page-title {
  text-align: center;
  margin-top: -1.1rem;
}

.sec-2 {
  width: 100%;
}

.sec-2.is-grey {
  background-color: #f5f5f5;
  padding-top: 60px;
  padding-bottom: 60px;
}

.legal_main {
  grid-row-gap: 2rem;
  text-align: left;
  cursor: auto;
  background-color: #fff;
  flex-direction: column;
  width: 100%;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.full-width {
  width: 100%;
}

.legal_container {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: minmax(10rem, 17.5rem) 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 100%;
  max-width: 1280px;
  max-height: 47%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
  display: grid;
  position: relative;
}

.legal_rich-text-wrap {
  text-align: left;
  background-color: #fff;
  border: 1px solid #096ad033;
  border-radius: 8px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 2rem;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.legal_aside-2 {
  border: 1px solid #096ad033;
  border-left-color: #1d1e2833;
  border-radius: .5rem;
  max-height: 36rem;
  padding-top: 1rem;
  position: sticky;
  top: 6rem;
  overflow: auto;
}

.legal_rich-text-wrap-2 {
  text-align: left;
  background-color: #fff;
  border: 1px solid #096ad033;
  border-left-color: #1d1e2833;
  border-radius: 8px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 2rem;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.legal_link-2 {
  color: #1d1e28;
  background-color: #fee2bf00;
  border-bottom: 1px solid #6e6e6e26;
  width: 100%;
  padding: .5rem 1rem;
  font-size: .9rem;
  text-decoration: none;
}

.legal_link-2:hover {
  background-color: #ffe59f6e;
}

.legal_link-2.w--current {
  background-color: #ffe59f6e;
  font-weight: 600;
  box-shadow: inset 0 -1px #ff634b;
}

.legal_page-title-2 {
  text-align: center;
  margin-top: 2rem;
  font-weight: 500;
}

.legal_rich-text-2 {
  color: #1d1e28;
  font-size: 1rem;
  font-weight: 500;
}

.body, .body-2 {
  font-family: Inter Variablefont Opsz Wght, Arial, sans-serif;
}

@media screen and (max-width: 991px) {
  .sec.hero, .sec.video-hero {
    padding-top: 40px;
  }

  .sec.blog-cat {
    padding-top: 140px;
  }

  .blog__tag {
    margin-top: 100px;
  }

  .blog__title {
    margin-top: 0;
    font-size: 54px;
  }

  .blog-rte {
    max-width: none;
  }

  .share-buttons {
    padding-right: 20px;
  }

  .join-us---track {
    margin-bottom: -20px;
  }

  .spec-grid {
    grid-column-gap: 23px;
    grid-row-gap: 30px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .spec-grid.is--mem {
    width: 100%;
  }

  .spec-grid.is-cc {
    grid-template-columns: 1fr 1fr;
  }

  .join-button {
    margin-left: auto;
    margin-right: auto;
    padding: 12px 32px 10px;
  }

  .join-button:hover {
    padding: 12px 25px 9px;
  }

  .join-button.w--current {
    color: #1d1e28;
    background-color: #0000;
    border-color: #1d1e28;
  }

  .bg__modal2 {
    width: 100%;
    height: 100%;
  }

  .subheading {
    font-size: 20px;
  }

  .subheading.joining {
    width: 75%;
  }

  .nav__menu {
    z-index: 1;
    background-color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    height: 100vh;
    padding-top: 60px;
    box-shadow: -20px 0 20px #0f3d760a;
  }

  .button__hero:hover {
    margin-bottom: 0;
    padding: 15px 40px 12px;
    font-size: 24px;
  }

  .nav_contain {
    height: 60px;
  }

  .icon {
    color: #fff;
    display: none;
  }

  .chapter-dropdown {
    text-align: center;
  }

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

  .home_adv-list {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 20px;
  }

  .nav__link {
    color: var(--dark-slate-blue);
    text-align: center;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    padding: 11px 22px;
    font-size: 18px;
    font-weight: 500;
    display: block;
  }

  .nav__link:hover, .nav__link.w--current {
    color: #1d1e28;
  }

  .nav__link.mob-nav {
    display: block;
  }

  .nav__link.is--new {
    margin-left: 12px;
    margin-right: 12px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .nav__link.is--survey, .nav__link.is--survey_home {
    margin-left: 12px;
    margin-right: 12px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 13px;
  }

  .faq-wrap.is--summit {
    margin-top: 0;
  }

  .testimonial-new {
    padding-top: 20px;
  }

  .chapter-dropdown-toggle {
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav {
    z-index: 1000;
  }

  .ham {
    width: 28px;
    height: 28px;
  }

  .title__hero {
    font-size: 3.6rem;
  }

  .title__hero.welcome {
    margin-top: 40px;
  }

  .dropdown-list-2.w--open {
    text-align: center;
  }

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

  .con.home-adv, .con.pad100, .con.home-faq, .con.bp100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .con.blog-content {
    flex-direction: column;
    align-items: stretch;
  }

  .con.is--home-hero {
    padding-top: 100px;
  }

  .con.is--hero-nl {
    padding-top: 40px;
  }

  .con.is--blog {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .con.is--survey-thanks {
    grid-template-columns: 1fr;
  }

  .con.is-cc {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .join-condition {
    width: 70%;
    padding-left: 5%;
  }

  .close {
    width: 28px;
    height: 28px;
    display: none;
  }

  .title__sec {
    width: 80%;
    margin-bottom: 40px;
    font-size: 40px;
    line-height: 1.1em;
  }

  .footer-logo {
    height: 20px;
  }

  .lite-upgrade-navlink {
    color: #1d1e28;
    text-align: center;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 11px 22px;
    font-size: 20px;
    font-weight: 500;
  }

  .lite-upgrade-navlink:hover, .lite-upgrade-navlink.w--current {
    color: #1d1e28;
  }

  .section__hero {
    padding-bottom: 60px;
  }

  .section__hero.is--home {
    height: auto;
    padding-bottom: 0;
  }

  .profile-dd {
    color: #1d1e28;
    text-align: center;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 11px 22px;
    font-size: 20px;
    font-weight: 500;
  }

  .profile-dd:hover, .profile-dd.w--current {
    color: #1d1e28;
  }

  .div-block-150 {
    margin-top: 6px;
    margin-left: auto;
    margin-right: auto;
  }

  .update-link {
    align-items: center;
  }

  .nav-button {
    margin-left: auto;
    margin-right: auto;
    padding: 12px 32px 10px;
  }

  .nav-button:hover {
    padding: 12px 25px 9px;
  }

  .nav-button.w--current {
    color: #1d1e28;
    background-color: #0000;
    border-color: #1d1e28;
  }

  .heading-7 {
    width: 94%;
    margin-top: 0;
  }

  .profile-link {
    align-items: center;
  }

  .footer-link-wrap {
    margin-bottom: 5px;
  }

  .subtitle__hero {
    width: 64%;
    font-size: 22px;
    font-weight: 400;
  }

  .white-card.popup {
    margin-left: 0;
    margin-right: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .nav_logo {
    margin-left: 0;
  }

  .nav_logo.w--current {
    width: auto;
  }

  .menu {
    background-color: #0000;
    padding-top: 9px;
  }

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

  .close__modal2 {
    width: 24px;
    height: 24px;
  }

  .grid-4 {
    width: 64%;
  }

  .div-block-148 {
    display: none;
  }

  .img__hero {
    height: 100%;
  }

  .profile-drop-down {
    justify-content: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  .btn {
    font-size: 22px;
  }

  .btn.membership {
    box-shadow: 0 3px 20px #0000001a;
  }

  .btn.membership:hover {
    margin-bottom: 0;
    font-size: 16px;
  }

  .btn.subscribe-nl {
    margin-top: 16px;
  }

  .btn.memberships {
    padding-left: 30px;
    padding-right: 30px;
  }

  .btn.is--bc-hero {
    margin-left: auto;
    margin-right: auto;
  }

  .logout-link, .account-link {
    align-items: center;
  }

  .button-wrapper.no-width {
    width: 240px;
    height: 80px;
    margin-top: 32px;
  }

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

  .testimonial-cards {
    width: 40%;
    min-width: 40%;
  }

  .home_blog-grid {
    grid-column-gap: 2em;
  }

  .home_blog-image {
    width: 294px;
    height: 161px;
  }

  .footer__logo-wrap {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .footerlink {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 11px 17px;
    font-size: 15px;
  }

  .footerlink-wrapper {
    flex-wrap: wrap;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
  }

  .form {
    flex-direction: column;
  }

  .form.is-nl {
    margin-top: 0;
  }

  .simple-input {
    margin-right: 20px;
  }

  .simple-input.is--nl {
    text-align: center;
    margin-bottom: 18px;
    margin-right: 0;
  }

  .error-message {
    background-color: #ff2828;
  }

  .form-block {
    width: 100%;
    max-width: 400px;
  }

  .share-btns {
    align-items: flex-start;
    bottom: 0;
  }

  .div-block-179 {
    flex-direction: column;
  }

  .ad-wrap {
    margin-left: auto;
    margin-right: auto;
    position: static;
  }

  .ad-block {
    min-width: 225px;
    margin-left: auto;
    margin-right: auto;
  }

  .ad-btn {
    font-size: 22px;
  }

  .ad-btn.membership {
    box-shadow: 0 3px 20px #0000001a;
  }

  .ad-btn.membership:hover {
    margin-bottom: 0;
    font-size: 16px;
  }

  .blog-content-wrap {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .search-text-field {
    width: 100%;
  }

  .search-text-field.jetboost-list-search-input-5m45 {
    min-width: auto;
  }

  .reset-btn {
    margin-left: auto;
    margin-right: auto;
    padding: 12px 32px 10px;
  }

  .reset-btn:hover {
    padding: 12px 25px 9px;
  }

  .reset-btn.w--current {
    color: #1d1e28;
    background-color: #0000;
    border-color: #1d1e28;
  }

  .page-title {
    line-height: 1.2em;
  }

  .search-wrap {
    height: 50px;
  }

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

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

  .reset-wrap {
    text-align: center;
    width: auto;
    margin-top: 6px;
    margin-left: auto;
    margin-right: auto;
  }

  .mems__img-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .mems__img {
    margin: auto;
  }

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

  .filter-wrap-2 {
    width: 301px;
  }

  .search-text-field-2 {
    width: 100%;
    min-height: 50px;
    max-height: 50px;
  }

  .reset-wrap-2 {
    text-align: center;
    width: auto;
    margin-left: auto;
  }

  .stacks-grid {
    grid-column-gap: 23px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .nav__dd {
    color: var(--dark-slate-blue);
    justify-content: center;
    font-size: 20px;
    display: flex;
  }

  .nav__dd-list.w--open {
    left: auto;
  }

  .nav__dd-icon {
    margin-right: 21px;
  }

  .dropdown-4 {
    width: 100%;
  }

  .perks__img {
    width: 160px;
    height: 160px;
  }

  .perks-grid {
    grid-column-gap: 23px;
    grid-row-gap: 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .perks__subhead {
    font-size: 17px;
  }

  .blog-ad {
    width: 100%;
    position: static;
  }

  .marquee-text {
    text-align: center;
    flex: 0 auto;
  }

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

  .nav__brand.w--current {
    height: 60px;
  }

  .summit__industry-name {
    font-size: 16px;
  }

  .sec-sum.is--summit-hero {
    flex-direction: column-reverse;
    height: auto;
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .btn__wrap {
    margin-top: 6px;
    margin-left: auto;
    margin-right: auto;
  }

  .nav__wrap {
    height: 60px;
  }

  .ham-2 {
    width: 28px;
    height: 28px;
  }

  .summit__first-slider {
    min-height: 450px;
  }

  .nav__menu-btn, .nav__menu-btn.w--open {
    background-color: #0000;
  }

  .summit__promo-right {
    padding-right: 0;
  }

  .marquee-horizontal {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .summit-hero__img {
    margin-left: 0%;
  }

  .sec__title {
    width: 80%;
    margin-bottom: 40px;
    font-size: 36px;
    line-height: 1.1em;
  }

  .con-sum {
    padding-left: 25px;
    padding-right: 25px;
  }

  .con-sum.is--summit-hero-dark {
    align-items: center;
    padding-left: 0%;
  }

  .con-sum.is--summit-footer {
    flex-direction: column;
  }

  .con-sum.is---summit-hero-white {
    text-align: center;
    align-items: center;
  }

  .con-sum.home-faq {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .nav__link-2 {
    color: #1d1e28;
    text-align: center;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 16px 22px;
    font-size: 18px;
    font-weight: 500;
  }

  .nav__link-2:hover, .nav__link-2.w--current {
    color: #1d1e28;
  }

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

  .track-horizontal {
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    overflow: auto;
  }

  .summit-hero__head {
    font-size: 48px;
  }

  .btn-4 {
    font-size: 18px;
  }

  .btn-4:hover {
    margin-bottom: 0;
    padding: 17px 42px 14px;
  }

  .link-10 {
    white-space: nowrap;
  }

  .summit__promo-left {
    margin-right: 0%;
  }

  .summit__footer-logo {
    margin-bottom: 40px;
  }

  .summit__spearker-img {
    width: 160px;
    height: 160px;
  }

  .join-btn {
    margin-left: auto;
    margin-right: auto;
    padding: 12px 32px 10px;
  }

  .join-btn:hover {
    padding: 12px 25px 9px;
  }

  .join-btn.w--current {
    color: #1d1e28;
    background-color: #0000;
    border-color: #1d1e28;
  }

  .nav-2 {
    z-index: 1000;
  }

  .nav__menu-2 {
    z-index: 1;
    background-color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding-top: 20px;
  }

  .nav__menu-2.is--summit {
    max-width: none;
  }

  .summit__nl-form, .summit-hero__date {
    margin-top: 40px;
  }

  .test-text {
    font-size: 18px;
  }

  .test-mask {
    margin-left: 36px;
    margin-right: 36px;
  }

  .test-img-wrap {
    max-width: 180px;
    margin-left: 20px;
  }

  .arrow-icon {
    width: 40px;
    height: 40px;
  }

  .test-content {
    margin-right: 20px;
  }

  .home__hero-img {
    display: none;
  }

  .home__hero-img.is--tab {
    object-position: 50% 100%;
    width: 100%;
    max-width: none;
    max-height: 342px;
    display: block;
  }

  .home__hero-img.is--mob {
    object-position: 50% 100%;
    width: 100%;
    max-width: none;
    max-height: 342px;
    display: none;
  }

  .home__hero-nl {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .home__hero-btn-wrap {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
  }

  .con-copy {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .con-copy.is--home-hero {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    padding-top: 80px;
    display: flex;
  }

  .access-head {
    font-size: 40px;
  }

  .home__hero-subhead {
    max-width: 525px;
    margin-bottom: 0;
    font-size: 15px;
  }

  .home__hero-form {
    margin-top: 60px;
  }

  .home__hero-wrap {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 100px auto 321px;
    display: flex;
  }

  .home__hero-nl-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
  }

  .tf-wrap.is--summit {
    padding: 7%;
  }

  .slack__response.is--summit {
    max-width: 80vw;
  }

  .summit__modal-title {
    font-size: 36px;
  }

  .div-block-191 {
    display: flex;
  }

  .section_bootcamp-login {
    padding-bottom: 60px;
  }

  .section_bootcamp-login.is--home {
    height: auto;
    padding-bottom: 0;
  }

  .all-blogs {
    margin-top: 100px;
  }

  .cc-rte {
    max-width: none;
  }

  .legal_container {
    grid-column-gap: 2rem;
    grid-template-columns: 12.5rem 1fr;
  }

  .legal_rich-text-wrap, .legal_rich-text-wrap-2 {
    padding: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .sec.hero, .sec.video-hero {
    padding-top: 40px;
  }

  .sec.is--survey {
    grid-template-columns: 1fr;
    width: 100%;
    height: auto;
  }

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

  .blog__tag {
    margin-top: 100px;
    font-size: 13px;
    font-weight: 400;
  }

  .blog__cover-img {
    margin-bottom: 20px;
  }

  .blog-rte {
    font-size: 18px;
  }

  .blog-rte h2 {
    margin-top: 24px;
    margin-bottom: 16px;
    font-size: 32px;
  }

  .blog-rte h3 {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .blog-rte h4 {
    font-size: 24px;
  }

  .authour-wra {
    grid-column-gap: 0rem;
    justify-content: space-around;
  }

  .blog__author-img {
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
  }

  .join-us---track {
    height: 60px;
  }

  .spec-grid {
    grid-row-gap: 23px;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .spec-grid.is--home, .spec-grid.is--mem {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }

  .join-button {
    padding: 14px 32px 12px;
  }

  .subheading {
    width: 80%;
    font-size: 17px;
  }

  .subheading.joining {
    margin-top: 0;
  }

  .nav__menu {
    box-shadow: 0 0 46px #00000017;
  }

  .button__hero {
    margin-top: 0;
    padding-left: 32px;
    padding-right: 32px;
    font-size: 18px;
  }

  .button__hero:hover {
    padding-left: 32px;
    padding-right: 32px;
    font-size: 20px;
  }

  .up-col {
    align-items: center;
  }

  .nav_contain {
    align-items: center;
    height: 56px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .column-14 {
    margin-top: 10px;
  }

  .section-2 {
    height: 100%;
  }

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

  .home_adv-list {
    grid-column-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .nav__link {
    font-size: 18px;
  }

  .nav__link.is--survey {
    margin-bottom: 0;
  }

  .nav__link.is--survey_home {
    margin-bottom: 0;
    display: none;
  }

  .faq-wrap {
    margin-top: 20px;
  }

  .faq-wrap.is--summit {
    grid-column-gap: 16px;
  }

  .text-span-3 {
    font-size: 12px;
  }

  .dropdown-3 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .home__track-subtitle {
    font-size: 15px;
  }

  .copyright-text {
    font-size: 12px;
  }

  .copyright-text.mob {
    display: flex;
  }

  .ham {
    width: 28px;
    height: 28px;
  }

  .title__hero {
    width: 90%;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1;
  }

  .title__hero.welcome, .title__hero.small {
    font-size: 48px;
  }

  .title__hero.is--newsletter {
    margin-top: 100px;
    font-size: 48px;
  }

  .title__hero.is--dark {
    font-size: 48px;
  }

  .dropdown-list-2 {
    position: static;
  }

  .con {
    padding-left: 24px;
    padding-right: 24px;
  }

  .con.hero, .con.home {
    padding-left: 20px;
    padding-right: 20px;
  }

  .con.pad100 {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .con.pad100.quote {
    padding-top: 39px;
    padding-bottom: 39px;
  }

  .con.pad100.is--lightbg {
    margin-bottom: 0;
    padding-top: 39px;
    padding-bottom: 39px;
  }

  .con.bp100, .con.is--blog {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .con.is-cc {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .con.is-cc.quote {
    padding-top: 39px;
    padding-bottom: 39px;
  }

  .con.is-cc.is--lightbg {
    margin-bottom: 0;
    padding-top: 39px;
    padding-bottom: 39px;
  }

  .column-13 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .contact-text {
    margin-right: 10px;
    font-size: 16px;
  }

  .image-11 {
    width: 40%;
    display: block;
  }

  .join-condition {
    width: 80%;
  }

  .btn-wrap__hero {
    width: 100%;
  }

  .collection-list-wrapper-4 {
    width: 90%;
  }

  .title__sec {
    width: auto;
    margin-bottom: 30px;
    font-size: 36px;
    line-height: 1.1em;
  }

  .title__sec.home-adv {
    margin-bottom: 40px;
  }

  .title__sec.is--blog, .title__sec.is--blog-cat {
    margin-bottom: 0;
    font-size: 40px;
  }

  .column-12 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .footer-logo {
    height: 22px;
  }

  .home__quoter-about {
    font-size: 14px;
  }

  .lite-upgrade-navlink {
    font-size: 19px;
  }

  .section__hero.is--home {
    height: auto;
    padding-top: 80px;
  }

  .profile-dd {
    font-size: 19px;
  }

  .symbol {
    width: 32px;
    height: 32px;
  }

  .adv__home {
    margin-bottom: 20px;
  }

  .join-us {
    height: 60px;
  }

  .update-link {
    flex-direction: row;
  }

  .nav-button {
    padding: 14px 32px 12px;
  }

  .pro-popup {
    width: 90vw;
  }

  .subtitle__sec {
    font-size: 14px;
  }

  .spec__text {
    font-size: 16px;
  }

  .div-block-156 {
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .heading-7 {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .spec__title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 21px;
    font-weight: 600;
  }

  .profile-link {
    flex-direction: row;
  }

  .footer-link-wrap {
    text-align: center;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .image-9 {
    height: 15px;
  }

  .social-link-wrap {
    margin-bottom: 20px;
  }

  .subtitle__hero {
    letter-spacing: .1px;
    width: 86%;
  }

  .white-card {
    flex-direction: row;
  }

  .white-card.popup {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }

  .white-card.member {
    justify-content: space-between;
    padding-bottom: 0;
  }

  .white-card.job-filter, .white-card.industry {
    flex-direction: column;
  }

  .white-card.search {
    width: 100%;
  }

  .nav_logo {
    width: 300px;
    height: 30px;
    padding-left: 0;
  }

  .nav_logo.w--current {
    width: auto;
    padding-top: 0;
  }

  .apply-condition {
    margin-right: 10px;
    font-size: 16px;
  }

  .menu {
    z-index: 10;
  }

  .icon-7 {
    color: #1d1e28;
  }

  .link-with-arrow {
    margin-top: 20px;
  }

  .home__track-title {
    font-size: 20px;
  }

  .spec__title-wrap {
    align-items: center;
    margin-bottom: 10px;
  }

  .grid-4 {
    grid-row-gap: 51px;
    width: 75%;
    margin-bottom: 40px;
  }

  .div-block-148 {
    display: none;
  }

  .profile-drop-down {
    padding-top: 0;
    padding-bottom: 0;
  }

  .profile-drop-down.w--open {
    margin-left: auto;
    margin-right: auto;
  }

  .spec-wrap {
    padding-top: 5%;
    padding-bottom: 6%;
  }

  .btn.membership {
    padding: 14px 36px 12px;
    box-shadow: 0 3px 20px #0000001a;
  }

  .btn.membership:hover {
    padding: 12px 36px 10px;
    font-size: 16px;
  }

  .btn.subscribe-nl {
    margin-top: 40px;
  }

  .btn.is--bc-hero {
    margin-left: auto;
    margin-right: auto;
  }

  .btn.is--hero__home {
    font-size: 16px;
  }

  .footer-link {
    line-height: 1.4rem;
  }

  .logout-link, .account-link {
    flex-direction: row;
  }

  .button-wrapper {
    width: 100%;
  }

  .button-wrapper.no-width {
    margin-top: 20px;
  }

  .copyright-wrap {
    flex-direction: column;
    grid-template-columns: .5fr;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .card__home-adv {
    flex-direction: row;
    padding-left: 20px;
    padding-right: 20px;
  }

  .home__quoter-name {
    font-size: 17px;
  }

  .nav__logo {
    width: 280px;
    min-width: auto;
  }

  .home__quote {
    width: 80%;
    font-size: 24px;
    font-weight: 600;
  }

  .grid__home-adv {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }

  .testimonial-cards {
    width: 60%;
    min-width: 60%;
  }

  .home_adv-name {
    font-size: 17px;
  }

  .home_blog-grid {
    grid-column-gap: 26px;
    grid-row-gap: 2.5em;
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
  }

  .home_blog-image {
    height: 160px;
  }

  .home_blog-title {
    font-size: 22px;
    line-height: 1.2;
  }

  .footer__logo-wrap {
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footerlink {
    padding-top: 0;
    padding-bottom: 0;
  }

  .blog-grid {
    grid-column-gap: 20px;
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-top: 20px;
  }

  .welcome-rte {
    font-size: 22px;
  }

  .welcome-rte h2 {
    font-size: 36px;
  }

  .welcome-rte h3 {
    font-size: 30px;
  }

  .welcome-rte h4 {
    font-size: 24px;
  }

  .welcome-rte p, .welcome-rte li {
    font-size: 18px;
  }

  .form {
    flex-direction: column;
  }

  .simple-input {
    margin-bottom: 40px;
    margin-right: 0;
  }

  .simple-input::placeholder {
    text-align: center;
  }

  .btn-2 {
    margin-top: 0;
    padding-left: 32px;
    padding-right: 32px;
    font-size: 18px;
  }

  .btn-2:hover {
    padding-left: 32px;
    padding-right: 32px;
  }

  .btn-2.is--white {
    margin-top: 20px;
  }

  .form-block {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    display: flex;
  }

  .mem_btn--wrap {
    width: 360px;
  }

  .subtitle {
    max-width: 400px;
    font-size: 16px;
  }

  .newsletter-wrap {
    align-items: stretch;
  }

  .container-2 {
    padding: 60px 20px;
  }

  .container-2.hero {
    padding-bottom: 40px;
  }

  .success_1 {
    font-size: 14px;
  }

  .nl-bg {
    inset: auto 4% 3% auto;
  }

  .nl-bg_1 {
    inset: auto auto 16% 3%;
  }

  .from-wrap {
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .share-btns {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: static;
  }

  .div-block-179 {
    margin-bottom: 20px;
  }

  .ad-btn.membership {
    padding: 14px 36px 12px;
    box-shadow: 0 3px 20px #0000001a;
  }

  .ad-btn.membership:hover {
    padding: 12px 36px 10px;
    font-size: 16px;
  }

  .ad-btn.subscribe-nl {
    margin-top: 40px;
  }

  .zero-margin {
    margin-right: 20px;
  }

  .reset-btn {
    padding: 10px 20px 8px;
  }

  .reset-btn.jetboost-filter-none-vwyl.jetboost-filter-none-5dgw.jetboost-filter-none-5m45:hover {
    padding: 12px 22px 10px;
  }

  .sect {
    height: 100%;
  }

  .filter-wrap {
    justify-content: space-between;
    width: 100%;
  }

  .page-title {
    margin-top: 100px;
    line-height: 1em;
  }

  .search-wrap {
    flex-flow: column-reverse wrap;
    justify-content: center;
    align-items: stretch;
    margin-top: 40px;
  }

  .member-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }

  .cont {
    padding-left: 24px;
    padding-right: 24px;
  }

  .reset-wrap {
    width: 106px;
    margin-top: 0;
  }

  .mems__img-wrap {
    height: 180px;
  }

  .mems__img {
    height: 100%;
    display: block;
  }

  .mems__link {
    margin-bottom: 0;
  }

  .mems__contact {
    justify-content: space-between;
    width: 67px;
    margin-right: 10px;
    display: flex;
  }

  .mems__name {
    text-align: left;
    margin-top: 0;
  }

  .mems__contact-link {
    width: 24px;
    height: 24px;
    margin: 8px 0;
  }

  .mems__title {
    text-align: left;
    margin-left: 0;
  }

  .mems__contact-logo {
    width: 100%;
    height: 100%;
  }

  .mems__city {
    text-align: left;
    margin-left: 0;
  }

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

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

  .mems__card.industry {
    flex-direction: column;
  }

  .blog__share-wrap {
    justify-content: flex-end;
  }

  .mems__dd-wrap {
    flex-direction: row;
    align-items: flex-start;
  }

  .filter-wrap-2 {
    justify-content: center;
    width: auto;
  }

  .btn-3 {
    margin-top: 0;
    padding-left: 32px;
    padding-right: 32px;
    font-size: 18px;
    line-height: 1.4;
  }

  .btn-3:hover {
    padding-left: 32px;
    padding-right: 32px;
  }

  .btn-3.is--reset {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .reset-wrap-2 {
    min-height: 48px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .mems__dd-toggle {
    min-width: 157px;
  }

  .mems__search-input, .mems__search-input.jetboost-list-search-input-5ol5 {
    min-width: auto;
  }

  .mems__search-form {
    width: 100%;
    min-width: auto;
  }

  .blog-cat__title-wrap {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .perk-wrap {
    grid-template-columns: 1fr;
    padding-top: 5%;
    padding-bottom: 6%;
  }

  .perk-link {
    font-size: 16px;
  }

  .stacks-grid {
    grid-row-gap: 23px;
    grid-template-columns: 1fr;
    margin-top: 20px;
    margin-bottom: 60px;
  }

  .stack-wrap {
    padding-top: 5%;
    padding-bottom: 6%;
  }

  .nav__dd-icon {
    margin-right: 32px;
  }

  .perk-code {
    font-size: 16px;
  }

  .perks__title {
    margin-top: 0;
    margin-bottom: 7px;
  }

  .perks-grid {
    grid-row-gap: 23px;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .summit__company-title {
    margin-top: 60px;
  }

  .q-rte {
    font-size: 16px;
  }

  .summit__promo-head {
    text-align: center;
  }

  .summit__promo-btn-wrap {
    display: none;
  }

  .summit__promo-btn-wrap.is--mob {
    display: flex;
  }

  .div-block-190 {
    flex-direction: column-reverse;
  }

  .summit__btn-wrap {
    justify-content: center;
  }

  .summit__events-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .q-text {
    margin-top: 8px;
    margin-right: 10px;
    font-size: 18px;
  }

  .nav__brand {
    width: 120px;
    padding-left: 0;
  }

  .nav__brand.w--current {
    width: 120px;
    padding-top: 0;
  }

  .sec-sum {
    height: 100%;
  }

  .sec-sum.is--summit-dark {
    padding-bottom: 100px;
  }

  .sec-sum.is--summit-hero {
    padding-top: 220px;
  }

  .sec-sum.is--summit-embed {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .sec-sum.is--summit-footer, .sec-sum.is--summit-events {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .sec-sum.is--summit-promo {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .sec-sum.is--summit-recordings {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .summit__speaker-about {
    font-size: 16px;
  }

  .summit__slide {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hopin-embed {
    min-width: 100%;
    min-height: 540px;
  }

  .summit__count-down {
    font-size: 14px;
  }

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

  .summit__event-info {
    font-size: 16px;
  }

  .summit__wc-right {
    width: auto;
    margin-bottom: 0;
  }

  .summit__wc-left {
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: auto;
    margin-bottom: 60px;
    margin-right: 0%;
    display: flex;
  }

  .summit__company-grid {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    margin-bottom: 80px;
    padding-bottom: 20px;
    display: flex;
  }

  .ham-2 {
    width: 28px;
    height: 28px;
  }

  .ham-2.is--dark {
    color: #1d1e28;
  }

  .summit__quoter {
    justify-content: center;
  }

  .summit__quoter.is--promo {
    margin-left: auto;
    margin-right: auto;
  }

  .summit__first-slider {
    min-height: 400px;
  }

  .summit__wc-head {
    text-align: center;
    font-size: 30px;
  }

  .summit__promo-right {
    width: auto;
    margin-top: 38px;
  }

  .summit-hero__img {
    margin-top: -62px;
    margin-bottom: 10px;
    margin-left: 0%;
  }

  .sec__title {
    width: auto;
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 1.1em;
  }

  .con-sum {
    padding-left: 24px;
    padding-right: 24px;
  }

  .con-sum.is--summit-wc {
    flex-direction: column;
    padding-top: 100px;
  }

  .con-sum.is--tickets, .con-sum.is--summit-promo {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .summit__cd-title {
    font-size: 36px;
  }

  .summit__slider-quote {
    text-align: center;
    margin-bottom: 32px;
  }

  .summit__promo-slider {
    min-height: 485px;
  }

  .nav__link-2 {
    font-size: 19px;
  }

  .summit__speaker-name {
    font-size: 20px;
  }

  .summit__company-logo {
    margin-left: 32px;
    margin-right: 32px;
  }

  .summit__footer-feet-link {
    color: #1d1e28;
  }

  .summit-hero__head {
    font-size: 36px;
  }

  .btn-4 {
    margin-top: 0;
    padding-left: 32px;
    padding-right: 32px;
    font-size: 18px;
  }

  .btn-4:hover {
    padding-left: 32px;
    padding-right: 32px;
    font-size: 20px;
  }

  .btn-4.is--summint-hero:hover, .btn-4.is--summint-join:hover {
    padding-left: 31px;
    padding-right: 31px;
    font-size: 18px;
  }

  .summit__hero-aside {
    text-align: center;
    position: static;
  }

  .summit__hero-aside.is--hor {
    margin-bottom: 22px;
  }

  .summit__footer-feet {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 7%;
  }

  .summit__light-head {
    margin-top: 0;
  }

  .link-10 {
    margin-left: 18px;
  }

  .summit__promo-left {
    align-items: center;
    width: auto;
    display: flex;
  }

  .q-container {
    margin-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .q-container.is--summit {
    padding-left: 21px;
    padding-right: 10px;
  }

  .q-acc {
    width: 20px;
    height: 20px;
  }

  .join-btn {
    padding: 14px 32px 12px;
  }

  .summit__tickets-head {
    margin-top: 0;
    font-size: 30px;
  }

  .summit__event-icon {
    height: 60px;
    margin-bottom: 18px;
  }

  .summit__hero-dates {
    text-align: center;
    position: static;
  }

  .summit-hero__date {
    font-size: 14px;
  }

  .test-text {
    font-size: 18px;
  }

  .test-slide {
    max-width: none;
  }

  .test-mask {
    padding-top: 36px;
    padding-bottom: 55px;
  }

  .test-slider {
    height: 100%;
    min-height: auto;
  }

  .test-wrap {
    text-align: center;
    flex-direction: column;
  }

  .test-img-wrap {
    margin-bottom: 40px;
    margin-left: 40px;
  }

  .arrow-icon {
    width: 32px;
    height: 32px;
  }

  .test-content {
    margin-right: 0;
  }

  .home__hero-btn-wrap {
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .con-copy {
    padding: 60px 20px;
  }

  .access-head {
    line-height: 1.1;
  }

  .btn-5 {
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .btn-5.is--home-hero {
    text-align: center;
    margin-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .success {
    font-size: 14px;
  }

  .home__hero-wrap {
    margin-top: 60px;
    margin-bottom: 249px;
  }

  .home__hero-nl-text {
    text-align: left;
  }

  .slack__response {
    max-width: 460px;
  }

  .survey_embed-wrap {
    min-height: 80vh;
  }

  .survey_content-wrap {
    grid-template-columns: 1fr;
    padding-top: 6%;
    padding-bottom: 6%;
    position: static;
  }

  .survey_nav {
    padding-left: 23px;
    padding-right: 23px;
    position: absolute;
  }

  .survey-code {
    font-size: 16px;
  }

  .survey_btn--wrap {
    width: 360px;
  }

  .section_bootcamp-login.is--home {
    height: auto;
    padding-top: 80px;
  }

  .all-blogs {
    margin-top: 100px;
    font-size: 13px;
    font-weight: 400;
  }

  .cc-rte {
    font-size: 18px;
  }

  .cc-rte h2 {
    margin-top: 24px;
    margin-bottom: 16px;
    font-size: 32px;
  }

  .cc-rte h3 {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .cc-rte h4 {
    font-size: 24px;
  }

  .cc-heading {
    font-size: 48px;
  }

  .legal_rich-text {
    font-size: 18px;
  }

  .legal_aside {
    max-height: 15rem;
    margin-bottom: 0;
    position: static;
    top: 0;
  }

  .sec-2 {
    height: 100%;
  }

  .sec-2.is-grey {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .legal_main {
    grid-row-gap: 1.5rem;
  }

  .legal_container {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
    display: flex;
  }

  .legal_rich-text-wrap {
    margin-bottom: 16px;
  }

  .legal_aside-2 {
    max-height: 15rem;
    margin-bottom: 0;
    position: static;
    top: 0;
  }

  .legal_rich-text-wrap-2 {
    margin-bottom: 16px;
  }

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

@media screen and (max-width: 479px) {
  .sec.footer {
    margin-top: 40px;
  }

  .sec.hero, .sec.video-hero {
    padding-top: 40px;
  }

  .sec.blog-cat {
    padding-top: 100px;
  }

  .blog__tag {
    margin-top: 20px;
    padding: 6px 16px;
  }

  .blog__title {
    font-size: 36px;
    font-weight: 500;
  }

  .blog-rte {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .blog-rte h2 {
    margin-top: 0;
    font-size: 30px;
  }

  .blog-rte h3, .blog-rte h4 {
    margin-top: 30px;
  }

  .blog-rte h5 {
    font-size: 20px;
  }

  .blog-rte h6 {
    font-size: 18px;
  }

  .authour-wra {
    flex-direction: column;
    margin-top: 10px;
    margin-bottom: 40px;
  }

  .blog__author-wrap {
    margin-right: 0;
  }

  .fb {
    margin-left: 0;
  }

  .share-buttons {
    display: none;
  }

  .join-us---track {
    margin-top: 14px;
    margin-bottom: 5px;
  }

  .spec-grid {
    width: auto;
    margin-top: 0;
  }

  .spec-grid.is--mem {
    margin-top: 20px;
  }

  .spec-grid.is-cc {
    grid-template-columns: 1fr;
  }

  .join-button {
    border-radius: 1000px;
    margin-top: 20px;
    padding: 14px 32px 12px;
  }

  .subheading {
    width: 95%;
    margin-bottom: auto;
    font-size: 16px;
    font-weight: 400;
  }

  .subheading.joining {
    width: 100%;
    margin-top: 5px;
    font-size: 18px;
    font-weight: 500;
  }

  .membership-detail-wrap {
    align-items: flex-start;
  }

  .button__hero {
    border-radius: 1000px;
    margin-left: 10px;
    margin-right: 20px;
    padding: 12px 35px 10px;
    font-size: 18px;
  }

  .button__hero:hover {
    padding: 12px 35px 10px;
    font-size: 18px;
  }

  .nav_contain {
    height: 48px;
    padding-right: 10px;
  }

  .membership-benefit {
    float: left;
    clear: left;
    text-align: left;
    margin-left: 0;
  }

  .column-14 {
    margin-top: 10px;
  }

  .italic-text {
    font-size: 15px;
  }

  .section-2.darkbg {
    padding-bottom: 54px;
  }

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

  .nav__link {
    margin-bottom: 0;
    padding: 20px;
    font-size: 18px;
  }

  .nav__link.is--survey, .nav__link.is--survey_home {
    margin-left: 2px;
    margin-right: 2px;
    font-size: 14px;
  }

  .faq-wrap.is--summit {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }

  .image-48 {
    width: 20px;
    height: 20px;
    margin-top: 1px;
    margin-right: 0;
  }

  .home__track-subtitle {
    font-size: 16px;
  }

  .copyright-text {
    margin-top: 20px;
    font-size: 12px;
  }

  .ham {
    width: 24px;
    height: 24px;
    color: var(--dark-slate-blue);
  }

  .title__hero {
    width: 100%;
    font-size: 3rem;
  }

  .title__hero.welcome {
    font-size: 36px;
    font-weight: 600;
  }

  .title__hero.small {
    font-size: 36px;
  }

  .title__hero.is--newsletter {
    margin-top: 0;
    font-size: 36px;
  }

  .title__hero.is--dark {
    font-size: 36px;
  }

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

  .con.hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .con.home-adv {
    padding: 40px 16px;
  }

  .con.home {
    padding-left: 20px;
    padding-right: 20px;
  }

  .con.pad100 {
    padding-top: 60px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .con.pad100.quote {
    margin-bottom: 40px;
  }

  .con.pad100.is--lightbg {
    margin-bottom: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .con.home-faq {
    padding: 40px 16px;
  }

  .con.bp100 {
    padding-bottom: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .con.is--dashboard {
    text-align: center;
    padding-top: 100px;
  }

  .con.is--home-hero {
    flex-direction: column;
    padding-top: 0;
  }

  .con.is--hero-nl {
    padding-top: 60px;
  }

  .con.is--blog {
    padding: 120px 16px 40px;
  }

  .con.is--survey-thanks {
    grid-row-gap: 38px;
  }

  .con.is-cc {
    padding-left: 16px;
    padding-right: 16px;
  }

  .con.is-cc.quote {
    margin-bottom: 40px;
  }

  .con.is-cc.is--lightbg {
    margin-bottom: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .con.is-nl {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-text {
    margin-right: 10px;
    font-size: 15px;
    line-height: 1.2em;
  }

  .image-11 {
    width: 60%;
  }

  .join-condition {
    width: 95%;
    margin-top: 20px;
    padding-left: 0%;
  }

  .btn-wrap__hero {
    width: 100%;
  }

  .close {
    width: 22px;
    height: 22px;
  }

  .title__sec {
    width: 100%;
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 1.2em;
  }

  .title__sec.is--blog, .title__sec.is--blog-cat, .title__sec.is--blog-cat {
    font-size: 40px;
  }

  .footer-logo {
    height: 17px;
  }

  .home__quoter-about {
    font-size: 13px;
  }

  .lite-upgrade-navlink {
    margin-bottom: 0;
    padding: 20px;
    font-size: 18px;
  }

  .section__hero {
    padding-bottom: 0;
  }

  .section__hero.is--auto {
    padding-top: 60px;
  }

  .section__hero.is--light {
    padding-top: 100px;
  }

  .section__hero.is--height-auto {
    padding-top: 180px;
    padding-bottom: 80px;
  }

  .section__hero.is--survey-ty {
    padding-top: 12vh;
  }

  .home__track-subhead {
    margin-top: 0;
    margin-bottom: 0;
  }

  .profile-dd {
    margin-bottom: 0;
    padding: 20px;
    font-size: 18px;
  }

  .apply-condition-italic {
    font-size: 16px;
    line-height: 1rem;
  }

  .symbol {
    width: 30px;
    height: 30px;
  }

  .join-us {
    margin-top: 14px;
    margin-bottom: 5px;
  }

  .nav-button {
    border-radius: 1000px;
    margin-top: 20px;
    padding: 14px 32px 12px;
  }

  .pro-popup {
    height: auto;
  }

  .subtitle__sec {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 13px;
  }

  .spec__text {
    margin-left: 48px;
    font-size: 16px;
  }

  .div-block-156 {
    align-items: stretch;
    margin-top: 10px;
  }

  .spec__title {
    font-size: 18px;
  }

  .footer-link-wrap {
    align-items: center;
    font-size: 14px;
  }

  .home_adv-item {
    width: auto;
  }

  .image-9 {
    height: 12px;
  }

  .social-link-wrap {
    margin-top: 20px;
  }

  .subtitle__hero {
    letter-spacing: 0;
    width: 100%;
    margin-top: 16px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
  }

  .white-card.popup {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .white-card.job-filter, .white-card.industry {
    margin-left: auto;
    margin-right: auto;
  }

  .white-card.search {
    width: 100%;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .white-card.filter {
    justify-content: space-between;
    width: 100%;
    margin: 10px auto;
  }

  .nav_logo {
    align-items: flex-start;
  }

  .nav_logo.w--current {
    width: 100px;
  }

  .apply-condition {
    margin-right: 10px;
    font-size: 16px;
    line-height: 1.2em;
  }

  .menu {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .menu.w--open {
    color: var(--dark-slate-blue);
  }

  .correct-icon {
    height: 12px;
    margin-right: 16px;
  }

  .link-with-arrow {
    align-items: center;
    margin-top: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .home__track-title {
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: 19px;
  }

  .close__modal2 {
    z-index: 1000000;
    top: 3%;
  }

  .grid-4 {
    width: 90%;
  }

  .img__hero {
    height: auto;
    margin-bottom: 0;
  }

  .spec-wrap {
    padding: 6% 5%;
  }

  .text-block-47 {
    font-size: 15px;
  }

  .btn {
    z-index: 1;
    position: relative;
  }

  .btn.membership {
    margin-top: 0;
    margin-right: 10px;
    padding-top: 14px;
    padding-bottom: 12px;
    font-size: 16px;
    box-shadow: 0 3px 20px #0000001a;
  }

  .btn.membership:hover {
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .btn.is--white {
    padding-left: 30px;
    padding-right: 30px;
  }

  .btn.is--white.is--survey-ty {
    margin-left: auto;
    margin-right: auto;
  }

  .btn.memberships {
    margin-left: 48px;
    font-size: 18px;
  }

  .btn.memberships.is--small {
    width: 100%;
    margin-top: 19px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn.is--mem {
    margin-top: 20px;
    padding: 17px 32px;
    font-size: 20px;
    line-height: 1.4;
  }

  .btn.is--bc-hero {
    margin-left: auto;
    margin-right: auto;
  }

  .btn.is--hero__home {
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .tick-wrap {
    width: 20px;
    height: 20px;
  }

  .button-wrapper {
    text-align: left;
    justify-content: flex-start;
    width: 100%;
  }

  .button-wrapper.no-width {
    width: 258px;
    height: auto;
    margin-top: 20px;
  }

  .card-title {
    margin-bottom: 20px;
  }

  .copyright-wrap {
    flex-direction: column;
    justify-content: center;
  }

  .home__quoter-name {
    font-size: 15px;
  }

  .nav__logo {
    width: 180px;
    min-width: auto;
    max-width: none;
    height: 25px;
  }

  .home__quote {
    width: 100%;
    font-size: 22px;
    font-weight: 700;
  }

  .grid__home-adv {
    grid-row-gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-cards {
    width: 90%;
    min-width: 90%;
  }

  .home-adv-img {
    height: 148px;
  }

  .home_adv-name {
    font-size: 16px;
  }

  .home__blog-tag {
    margin-top: 0;
    margin-bottom: 0;
  }

  .home_blog-grid {
    grid-column-gap: 20px;
    grid-row-gap: 2em;
    grid-template-columns: 1fr;
    justify-items: start;
    width: 100%;
    margin-top: 48px;
    margin-left: auto;
    margin-right: auto;
  }

  .home_blog-item {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 110px 1fr;
    grid-auto-columns: 1fr;
    align-items: flex-start;
    width: auto;
    display: grid;
  }

  .home_blog-image {
    width: 180px;
    height: auto;
  }

  .home__tag-wrap {
    margin-top: 0;
  }

  .home__tag-wrap.is--blogs {
    margin-top: 16px;
    margin-bottom: 10px;
  }

  .footer__logo-wrap {
    margin-bottom: 0;
  }

  .footerlink {
    text-align: left;
    margin-bottom: 0;
    padding: 10px 0;
    font-size: 16px;
  }

  .home__blog-date {
    font-size: 12px;
  }

  .home_adv-about {
    font-size: 14px;
  }

  .footerlink-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    margin-top: 10px;
    display: grid;
  }

  .blog-grid {
    grid-column-gap: 20px;
    grid-template-columns: 1fr;
    justify-items: start;
    width: 100%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-item {
    width: auto;
  }

  .blog-image {
    height: 209px;
    min-height: 200px;
  }

  .welcome-rte h2 {
    margin-top: 0;
    font-size: 32px;
  }

  .welcome-rte h3 {
    margin-top: 30px;
    font-size: 28px;
  }

  .welcome-rte h4 {
    margin-top: 30px;
  }

  .welcome-rte p {
    font-size: 16px;
  }

  .welcome-rte li {
    margin-bottom: 16px;
    font-size: 16px;
  }

  .form {
    flex-direction: column;
    width: 100%;
    min-width: 280px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .simple-input {
    margin-left: auto;
    margin-right: auto;
  }

  .btn-2.is--white {
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 16px;
  }

  .mem_btn--wrap {
    width: 344px;
    margin-top: 20px;
  }

  .subtitle {
    margin-top: 0;
  }

  .newsletter-wrap {
    padding: 28px 0;
  }

  .nl-title {
    font-size: 32px;
  }

  .container-2.hero {
    padding-top: 20px;
  }

  .nl-text {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

  .success_1 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .nl-bg_1 {
    inset: 0% auto auto 0%;
  }

  .from-wrap {
    width: 100%;
    min-width: auto;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .share-btns {
    z-index: 1000;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 10px 10px 0;
  }

  .ad-block {
    min-width: 175px;
    min-height: 295px;
    font-size: 14px;
  }

  .heading-9 {
    font-size: 22px;
  }

  .ad-btn {
    font-size: 16px;
  }

  .ad-btn.membership {
    margin-top: 0;
    margin-right: 10px;
    padding-top: 14px;
    padding-bottom: 12px;
    font-size: 16px;
    box-shadow: 0 3px 20px #0000001a;
  }

  .ad-btn.membership:hover {
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .ad-btn.memberships {
    margin-left: 48px;
    font-size: 18px;
  }

  .ad-btn.premium-member {
    padding: 17px 32px;
    font-size: 20px;
    line-height: 1.4;
  }

  .become-member-pop {
    line-height: 1.2;
  }

  .zero-margin {
    width: 100%;
    margin-bottom: 0;
    margin-right: 0;
  }

  .search-text-field {
    min-width: 275px;
  }

  .search-text-field.jetboost-list-search-input-5m45 {
    min-width: 290px;
  }

  .form-2 {
    width: 100%;
  }

  .reset-btn {
    border-radius: 1000px;
    margin-top: 20px;
    padding: 14px 32px 12px;
  }

  .checkbox-label {
    text-align: left;
  }

  .filter-wrap {
    flex-wrap: wrap;
  }

  .page-title {
    font-size: 48px;
    line-height: 1.1em;
  }

  .search-wrap {
    flex-direction: row;
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .text-block-43 {
    margin-right: auto;
  }

  .member-grid {
    grid-row-gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-left: auto;
    margin-right: auto;
  }

  .dropdown-toggle {
    justify-content: space-around;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 8px;
    padding-left: 24px;
    display: flex;
  }

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

  .dropdown {
    text-align: center;
    width: 100%;
  }

  .mems__img-wrap {
    height: 320px;
    margin-top: 0;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .mems__img {
    object-fit: cover;
    max-height: 300px;
  }

  .mems__detail {
    margin-top: 0;
    margin-bottom: 0;
  }

  .mems__contact {
    justify-content: flex-start;
    width: 126px;
    margin-top: 0;
    padding-bottom: 16px;
  }

  .mems__name {
    margin-bottom: 6px;
  }

  .mems__contact-link {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 16px;
  }

  .mems__title {
    white-space: pre-wrap;
    font-size: 14px;
  }

  .mems__city {
    font-size: 12px;
  }

  .mems__grid {
    grid-row-gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: start;
    margin-left: auto;
    margin-right: auto;
  }

  .mems__card.industry {
    margin-left: auto;
    margin-right: auto;
  }

  .blog__share-wrap {
    z-index: 1001;
    background-color: var(--white);
    margin-left: 0;
    padding-left: 10px;
    position: fixed;
    inset: auto 0% 0%;
    box-shadow: 0 -1px 20px #0000005c;
  }

  .mems__search-form-block {
    width: 100%;
    min-height: 45px;
  }

  .mems__dd-wrap {
    max-width: 360px;
  }

  .filter-wrap-2 {
    flex-wrap: wrap;
    width: 100%;
    margin-top: 20px;
  }

  .search-text-field-2 {
    min-width: 275px;
  }

  .search-text-field-2.jetboost-list-search-input-5ol5 {
    min-width: auto;
  }

  .btn-3.is--reset {
    min-height: auto;
    padding: 18px 20px;
    font-size: 14px;
  }

  .reset-wrap-2 {
    width: auto;
    min-height: 100%;
  }

  .mems__dd-toggle {
    justify-content: space-around;
    width: 100%;
    margin-left: 0;
    padding-top: 10px;
    padding-bottom: 8px;
    padding-left: 24px;
    display: flex;
  }

  .mems__dd {
    text-align: center;
    width: 100%;
  }

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

  .prev-btn, .nxt-btn {
    margin-left: 10px;
    margin-right: 10px;
  }

  .mems__subhead {
    font-size: 14px;
  }

  .location__icon, .newsletter__icon, .latest-writing__icon {
    width: 20px;
    height: 20px;
  }

  .blog-cat__title-wrap {
    margin-bottom: 20px;
  }

  .div-block-181 {
    justify-content: flex-start;
  }

  .perk-wrap {
    padding: 6%;
    box-shadow: 0 4px 9px #1f66be4d;
  }

  .perk-link {
    margin-left: 48px;
    font-size: 16px;
  }

  .stacks-grid {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .stack-wrap {
    padding: 6% 5%;
  }

  .perk-code {
    margin-top: 10px;
    margin-left: 48px;
    font-size: 14px;
  }

  .perks__title {
    font-size: 24px;
  }

  .perks__img {
    width: 120px;
    height: 120px;
  }

  .perks-grid {
    grid-row-gap: 31px;
    max-width: none;
    margin-top: 0;
    margin-bottom: 60px;
  }

  .perks__text {
    flex-direction: column;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    justify-items: start;
    display: flex;
  }

  .summit__company-title {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 32px;
    font-size: 18px;
  }

  .marquee-text {
    text-align: center;
    flex: 0 auto;
    font-size: 14px;
  }

  .summit__cd-text {
    font-size: 13px;
  }

  .q-rte {
    width: auto;
  }

  .summit__promo-head {
    width: 100%;
    margin-bottom: 0;
    font-size: 32px;
    line-height: 1.3;
  }

  .summit__promo-btn-wrap {
    flex-direction: column;
  }

  .slider__quote-icon {
    width: 60px;
  }

  .summit__events-grid, .summit__events-grid.is--two {
    grid-template-columns: 1fr;
  }

  .q-text {
    margin: 0 10px 8px 0;
    line-height: 1.2em;
  }

  .nav__brand, .nav__brand.w--current {
    width: 100px;
    margin-right: auto;
  }

  .nav__brand.is--summit {
    width: 120px;
    margin-right: auto;
  }

  .sec-sum.is--summit-hero {
    justify-content: flex-start;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .sec-sum.is--summit-embed {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .sec-sum.is--summit-footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .sec-sum.is--summit-promo {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .sec-sum.is--summit-recordings {
    padding-bottom: 20px;
  }

  .summit__speaker-about {
    font-size: 15px;
    line-height: 1.4;
  }

  .summit-logo.is--dark, .summit-logo.is--light {
    width: 120px;
  }

  .summit__slide {
    padding-left: 6%;
    padding-right: 6%;
  }

  .hopin-embed {
    min-height: 620px;
  }

  .btn__wrap.is--nav {
    text-align: center;
    width: 100%;
  }

  .summit__count-down {
    min-width: auto;
    max-width: none;
    padding-left: 29px;
    padding-right: 29px;
  }

  .nav__wrap {
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 10px;
    display: flex;
  }

  .nav__wrap.is--summit {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .summit__event-info {
    line-height: 1.5;
  }

  .summit__wc-right {
    margin-left: 4%;
    padding-top: 9px;
    padding-right: 7px;
  }

  .ham-2 {
    width: 24px;
    height: 24px;
  }

  .summit__quoter {
    justify-content: center;
  }

  .summit__quoter.is--promo {
    margin-left: auto;
    margin-right: auto;
  }

  .q-wrap {
    align-items: flex-start;
  }

  .summit__first-slider {
    width: 100%;
    min-height: 480px;
    margin-top: 10px;
    margin-bottom: -23px;
    margin-left: -16px;
  }

  .summit__wc-subhead {
    margin-bottom: 0;
    font-size: 16px;
  }

  .summit__speaker-card {
    text-align: left;
    flex-direction: row;
    padding: 5%;
  }

  .nav__menu-btn {
    padding-top: 0;
    padding-bottom: 4px;
  }

  .summit__promo-right {
    margin-top: 24px;
    margin-bottom: 32px;
    font-size: 16px;
  }

  .marquee-horizontal {
    height: auto;
    min-height: 48px;
  }

  .sec__title {
    width: 100%;
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 1.2em;
  }

  .summit__footer-sub-head {
    font-size: 18px;
  }

  .con-sum {
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
  }

  .con-sum.is--summit-wc {
    padding-top: 60px;
    padding-left: 7%;
    padding-right: 7%;
  }

  .con-sum.is--summit-hero-dark {
    padding-bottom: 29px;
  }

  .con-sum.is--summit-footer {
    padding-left: 7%;
    padding-right: 7%;
  }

  .con-sum.is--summit {
    align-items: center;
    padding-left: 7%;
    padding-right: 7%;
  }

  .con-sum.is--tickets {
    padding-left: 7%;
    padding-right: 7%;
  }

  .con-sum.is---summit-hero-white {
    padding-top: 60px;
    padding-left: 7%;
    padding-right: 7%;
  }

  .con-sum.home-faq {
    padding: 40px 16px;
  }

  .con-sum.is--summit-promo {
    padding-left: 7%;
    padding-right: 7%;
  }

  .summit__quotter.is--promo {
    width: 100px;
    height: 100px;
  }

  .summit__hero-subhead {
    width: auto;
    font-size: 16px;
    line-height: 1.5;
  }

  .summit__cd-title {
    font-size: 32px;
  }

  .summit__slider-quote {
    margin-top: 32px;
    margin-bottom: 21px;
    font-size: 16px;
  }

  .summit__promo-slider {
    min-height: 587px;
  }

  .nav__link-2 {
    width: 100%;
    margin-bottom: 0;
    padding: 12px 20px;
    font-size: 16px;
  }

  .summit__speakers-grid {
    grid-row-gap: 17px;
    grid-template-columns: 1fr;
  }

  .track-horizontal {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
    overflow: visible;
  }

  .summit__speaker-name {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
  }

  .summit__company-logo {
    object-fit: scale-down;
    max-width: 76px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .btn-4 {
    border-radius: 1000px;
    margin-left: 10px;
    margin-right: 20px;
    padding: 12px 35px 10px;
    font-size: 18px;
  }

  .btn-4:hover {
    padding: 12px 35px 10px;
    font-size: 18px;
  }

  .summit__event-card {
    padding: 6%;
  }

  .link-10 {
    margin-top: 22px;
  }

  .powered-text {
    margin-right: 0;
    font-size: 16px;
  }

  .powered-text.is--dark {
    margin-right: 14px;
  }

  .summit__footer-link-wrap {
    width: 100%;
  }

  .q-container {
    padding: 17px 17px 8px;
  }

  .q-container.is--summit {
    padding-top: 16px;
  }

  .q-acc {
    width: 16px;
    height: 16px;
  }

  .summit__spearker-img {
    width: 100px;
    height: 100px;
    margin-right: 16px;
  }

  .join-btn {
    border-radius: 1000px;
    margin-top: 20px;
    padding: 14px 32px 12px;
  }

  .join-btn.is--nav {
    margin-top: 0;
  }

  .nav__menu-2 {
    height: 90vh;
    padding-bottom: 60px;
    overflow: auto;
  }

  .nav__menu-2.w--open {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: 0 11px 41px #1d1e2854;
  }

  .summit__nl-form {
    width: 100%;
  }

  .summit__hero-dates {
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 8px;
    padding-top: 0;
  }

  .summit__indutry-grid {
    grid-column-gap: 16px;
  }

  .summit-hero__date {
    margin-top: 40px;
    margin-bottom: 0;
    font-size: 12px;
  }

  .home__info-wrap {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .home__info-wrap.is--blogs {
    margin-top: 16px;
  }

  .test-nav {
    align-items: flex-start;
  }

  .test-name {
    margin-top: 16px;
  }

  .arrow.is--right {
    margin-right: -10px;
    padding-bottom: 40px;
  }

  .arrow.is--left {
    margin-left: -10px;
    padding-bottom: 40px;
  }

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

  .test-logo-wrap {
    width: 60px;
    height: 60px;
    padding: 4px;
    bottom: -20px;
    right: -21px;
  }

  .test-slide {
    height: auto;
  }

  .test-logo {
    max-width: 90%;
  }

  .test-mask {
    height: 100%;
    padding-top: 20px;
  }

  .test-wrap {
    flex-direction: column;
    height: auto;
  }

  .test-img-wrap {
    max-width: 160px;
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: 0;
  }

  .test-content {
    text-align: center;
  }

  .home__hero-img.is--tab {
    display: none;
  }

  .home__hero-img.is--mob {
    max-height: none;
    margin-bottom: 57px;
    display: block;
    position: static;
  }

  .home__hero-nl {
    margin-top: 16px;
    margin-bottom: 24px;
  }

  .home__hero-btn-wrap {
    flex-flow: column wrap;
    justify-content: center;
    align-items: stretch;
    width: 100%;
  }

  .con-copy.is--home-hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .access-head {
    margin-top: 24px;
    margin-bottom: 0;
    line-height: 1.1;
  }

  .btn-5 {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
  }

  .btn-5.is--home-hero {
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0%;
    margin-right: 0;
    padding-left: 21px;
    padding-right: 21px;
    font-size: 16px;
  }

  .btn-5.is--sec.is--hero {
    margin-bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .success {
    padding-left: 8px;
    padding-right: 8px;
  }

  .home__hero-subhead {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.4;
  }

  .home__hero-form {
    margin-top: 20px;
  }

  .home__hero-wrap {
    margin-top: 40px;
    margin-bottom: 0;
  }

  .home__hero-nl-text {
    text-align: center;
    font-size: 14px;
  }

  .blog-thumbnail {
    height: 209px;
    min-height: 200px;
  }

  .close-thread {
    top: -54px;
    right: 0;
  }

  .slack__response {
    max-width: 89vw;
  }

  .slack__response.is--summit {
    border-radius: 11px;
    min-width: 300px;
  }

  .summit__modal-title {
    font-size: 28px;
  }

  .slack__response-modal.is--summit {
    display: none;
  }

  .survey_content-wrap {
    font-size: 16px;
  }

  .survey_logo {
    width: 150px;
  }

  .survey_content-sections {
    margin-bottom: 10px;
  }

  .survey_nav {
    padding-left: 15px;
    padding-right: 15px;
    top: 3%;
  }

  .survey_heading {
    margin-bottom: 13px;
    padding-bottom: 7px;
    font-size: 22px;
  }

  .survey-rte p {
    margin-bottom: 0;
  }

  .survey-code {
    margin-top: 10px;
    font-size: 14px;
  }

  .survey_btn--wrap {
    width: 344px;
    margin-top: 20px;
  }

  .div-block-192 {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .bootcamp-rec-link {
    margin-top: 20px;
    font-size: 15px;
  }

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

  .image-64 {
    margin-top: 0;
  }

  .section_bootcamp-login {
    padding-bottom: 0;
  }

  .section_bootcamp-login.is--auto {
    padding-top: 60px;
  }

  .section_bootcamp-login.is--light {
    padding-top: 100px;
  }

  .section_bootcamp-login.is--height-auto {
    padding-top: 180px;
    padding-bottom: 80px;
  }

  .section_bootcamp-login.is--survey-ty {
    padding-top: 12vh;
  }

  .all-blogs {
    margin-top: 80px;
    padding: 6px 16px;
  }

  .cc-rte {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .cc-rte h2 {
    margin-top: 0;
    font-size: 30px;
  }

  .cc-rte h3, .cc-rte h4 {
    margin-top: 30px;
  }

  .cc-rte h5 {
    font-size: 20px;
  }

  .cc-rte h6 {
    font-size: 18px;
  }

  .legal_link {
    padding-top: .4rem;
    padding-bottom: .4rem;
  }

  .legal_page-title {
    margin-bottom: 0;
  }

  .sec-2.is-grey {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .legal_container {
    grid-row-gap: 2rem;
  }

  .legal_rich-text-wrap, .legal_rich-text-wrap-2 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .legal_link-2 {
    padding-top: .4rem;
    padding-bottom: .4rem;
  }

  .legal_page-title-2 {
    margin-bottom: 0;
  }
}

#w-node-_4f9de68d-b52e-f7d8-30f6-a7c99aebb299-395a7114 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4b485226-8370-3774-9be4-658183e7fa3f-e04ef623, #w-node-cf41ff3a-cf61-11bc-2e14-a385fee6e8c6-e04ef623, #w-node-_6a121bc8-09f8-ebbb-8145-509e1989c063-e04ef623, #w-node-cbc4f4ba-47b7-1ab4-860a-05da657dc5ee-e04ef623, #w-node-f759035b-6f54-ca01-7e56-6ff3fcf248d0-e04ef623, #w-node-fd5ab21a-02a7-eea0-e046-a46df57ba8dc-e04ef623 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-abe72fda-a714-ba90-bafa-bc92695104b4-4280a3b2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_49571f04-5a7a-2192-b9b9-bc2062fbd75c-c62d150e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_49571f04-5a7a-2192-b9b9-bc2062fbd75f-c62d150e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5594a15a-142b-a515-d5c2-2918d3bb4383-9a617f5d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_5594a15a-142b-a515-d5c2-2918d3bb4385-9a617f5d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-cb0626a6-b83e-df93-c0ac-f574fde4812e-e04ef623 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-d4c3efef-a7ce-a644-cbb3-713330f894bb-b3a8563c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-ab459fd3-b762-63a8-3e09-a1e609904188-e04ef623, #w-node-_4946e211-344d-b329-b429-f94adefd9b49-e04ef623 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Abhaya Libre';
  src: url('../fonts/AbhayaLibre-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Variablefont Opsz Wght';
  src: url('../images/') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}