:root {
  --size--h1: 3.25rem;
  --line-height--h1: 3.875rem;
  --size--h2: 2.625rem;
  --line-height--h2: 3.25rem;
  --size--h3: 2rem;
  --line-height--h3: 2.375rem;
  --size--h4: 1.5rem;
  --line-height--h4: 2.125rem;
  --size--h5: 1.25rem;
  --line-height--h5: 1.875rem;
  --size--h6: 1.125rem;
  --line-height--h6: 1.75rem;
  --size--content: 1rem;
  --line-height--subcontent: 1.375rem;
  --text--primary: #282828;
  --accent: #03c0d5;
  --primary-dark: #214568;
  --size--subcontent: .875rem;
  --primary-light: #e7f3fe;
  --secondary: #e9538a;
  --primary: #326da4;
  --line-height--content: 1.625rem;
  --text--white: white;
  --secondary-dark: #a73d64;
  --accent-hover: #0496a7;
  --font-family--heading: Montserrat, sans-serif;
  --font-family--body: Raleway, sans-serif;
  --size--small: .75rem;
  --size--root: 16px;
  --line-height--small: 1.25rem;
}

.accordion {
  background-color: var(--primary);
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  margin-bottom: 18px;
  border-radius: 8px;
  font-weight: 500;
}

.active {
  margin-bottom: 0;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: var(--primary-dark);
}

.accordion::after {
  color: white;
  content: "\002B"; /* Unicode character for "plus" sign (+) */
  font-size: 32px;
  float: right;
  margin-left: 16px;
}

.active::after {
  content: "\2212"; /* Unicode character for "minus" sign (-) */
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 18px;
  background-color: var(--primary-light);
  display: none;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.faqs
{
  background-image: linear-gradient(white 0%, var(--primary-light) 100%);
}

.faqs-list
{
  padding: 24px 0;
}

.price-meta
{
  font-family: Raleway, sans-serif;
  font-size: 18px;
}

.badge {
  background-color: var(--primary-dark);
  color: white;
  padding: 4px 8px;
  text-align: center;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
}

.callout
{
  background-color: var(--primary-light);
  border-radius: 10px;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  text-align: center;
  color: var(--primary-dark);
  border: 1px solid var(--primary-dark);
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.column-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

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

h1 {
  font-family: Montserrat, sans-serif;
  font-size: var(--size--h1);
  line-height: var(--line-height--h1);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
}

h2 {
  font-family: Montserrat, sans-serif;
  font-size: var(--size--h2);
  line-height: var(--line-height--h2);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
}

h3 {
  font-family: Montserrat, sans-serif;
  font-size: var(--size--h3);
  line-height: var(--size--h3);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
}

h4 {
  font-family: Montserrat, sans-serif;
  font-size: var(--size--h4);
  line-height: var(--line-height--h4);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
}

h5 {
  font-family: Montserrat, sans-serif;
  font-size: var(--size--h5);
  line-height: var(--line-height--h5);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
}

h6 {
  font-size: var(--size--h6);
  line-height: var(--line-height--h6);
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 700;
}

p {
  margin-bottom: 10px;
}

a {
  color: var(--text--primary);
  text-decoration: underline;
}

.whatsapp-block {
  z-index: 15;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: -64px;
  display: flex;
  position: fixed;
  inset: auto 0% 0% auto;
}

.send-us-a-message {
  z-index: 1;
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  background-color: var(--accent);
  color: var(--text--primary);
  border: 1px #000;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  width: auto;
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 10px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  position: relative;
  inset: auto 0% 0% auto;
}

.paragraph-16 {
  color: var(--primary-dark);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 18px;
}

.logo-row {
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 35px;
  padding: 25px 0 15px;
  display: flex;
}

.gray-4 {
  background-color: #bebebe;
  width: 16.6667%;
  height: 100%;
  padding: 10px;
  display: flex;
}

.white {
  background-color: #fff;
  width: 16.6667%;
  height: 100%;
  padding: 10px;
  display: flex;
}

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

.color---text-primary.caption.text-wrap {
  background-color: #c9d7fcbf;
  border-radius: 4px;
  height: 30px;
  margin-bottom: 0;
  padding: 4px 6px;
}

.raleway {
  font-family: Raleway, sans-serif;
  font-weight: 400;
}

.raleway.medium {
  font-weight: 500;
}

.raleway.bold {
  font-weight: 700;
}

.typography-flex {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 58%;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
}

.logo-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 160px;
  height: auto;
  text-decoration: none;
  display: flex;
}

.logo-block.circle {
  width: 120px;
  height: 120px;
}

.container {
  z-index: 1;
  max-width: 1192px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 16px;
  line-height: 26px;
  text-decoration: none;
  position: relative;
}

.caption {
  color: #ffffff8c;
  font-size: var(--size--subcontent);
  line-height: var(--line-height--subcontent);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.caption.margined {
  color: #686868;
  margin-top: 10px;
  font-weight: 600;
}

.light-block-second {
  background-color: var(--primary-light);
  width: 100%;
  padding: 20px 20px 40px 45px;
}

.light-block-second.rounded-bottom {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-bottom: 30px;
}

.type-row {
  justify-content: space-between;
  width: 100%;
  margin-bottom: 35px;
  padding: 25px 0 15px;
  display: flex;
}

.content-row {
  clear: left;
  width: 100%;
  margin-top: 45px;
  position: relative;
}

.grayscale-parent {
  clear: left;
  border-radius: 4px;
  width: 100%;
  height: 85px;
  margin-right: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.gray-3 {
  background-color: #969696;
  border-radius: 0;
  width: 16.6667%;
  height: 100%;
  padding: 10px;
  display: flex;
}

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

.text-highlight {
  background-color: #fff;
  border-radius: 5px;
  width: 42%;
  padding: 40px;
}

.montserrat {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.montserrat.medium {
  font-weight: 500;
}

.montserrat.bold {
  font-weight: 700;
}

.color---text-alt {
  color: #969696;
}

.color---text-alt.caption.text-wrap {
  background-color: #c9d7fc;
  border-radius: 4px;
  height: 30px;
  margin-bottom: 0;
  padding: 4px 6px;
}

.color-row {
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 35px;
  padding: 25px 0 15px;
  display: flex;
}

.color-row.grey {
  margin-bottom: 25px;
  padding-bottom: 0;
}

.white-text {
  color: #fff;
  text-decoration: none;
}

.type-column {
  background-color: var(--primary-light);
  border-radius: 5px;
  width: 33.3333%;
  margin-right: 20px;
  padding: 10px;
  display: flex;
}

.type-column.right {
  margin-right: 0;
}

.color-block-parent {
  width: 20%;
  margin-right: 20px;
}

.margin-60px {
  margin-top: 60px;
}

.line-bar {
  background-color: var(--secondary);
  width: 100%;
  max-width: 249px;
  height: 6px;
  margin-top: 20px;
}

.black-link {
  color: #000;
  margin-top: 5px;
  margin-bottom: 5px;
  text-decoration: underline;
}

.gray-2 {
  background-color: #2e2e2e;
  border-radius: 0;
  width: 16.6667%;
  height: 100%;
  padding: 10px;
  display: flex;
}

.banner {
  background-color: var(--primary);
  justify-content: center;
  align-items: center;
  padding-top: 82px;
  padding-bottom: 82px;
  display: flex;
}

.color---text-white {
  color: #fff;
}

.color---text-white.caption.text-wrap {
  background-color: #262f5a;
  border-radius: 4px;
  height: 30px;
  margin-bottom: 0;
  padding: 4px 6px;
}

.light-block {
  background-color: #f0f8ff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  width: 100%;
  padding: 20px 20px 40px 45px;
}

.gray {
  background-color: #191919;
  border-radius: 4px 0 0 4px;
  width: 16.6667%;
  height: 100%;
  padding: 10px;
  display: flex;
}

.color---text-secondary {
  color: #2e2e2e;
}

.color---text-secondary.caption.text-wrap {
  background-color: #c9d7fc;
  border-radius: 4px;
  height: 30px;
  margin-bottom: 0;
  padding: 4px 6px;
}

.color---text-label-primary {
  color: #bebebe;
}

.color---text-label-primary.caption.text-wrap {
  background-color: #262f5a;
  border-radius: 4px;
  height: 30px;
  margin-bottom: 0;
  padding: 4px 6px;
}

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

.white-block {
  background-color: #fff;
  width: 100%;
  padding: 20px 20px 40px 45px;
}

.color-block {
  color: #0a2b49;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 85px;
  padding: 10px;
  display: flex;
}

.color-block.secondary {
  background-color: var(--secondary);
}

.color-block.tertiary {
  background-color: var(--accent);
}

.color-block.primary {
  background-color: var(--primary);
}

.color-block.circle-logo {
  border-radius: 100%;
  width: 160px;
  height: 160px;
}

.p-content {
  font-size: 18px;
  line-height: 28px;
}

.rich-text-block {
  width: 70%;
}

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

.section.footer {
  z-index: 5;
  padding-top: 0;
  padding-bottom: 32px;
  display: block;
}

.section.hero-banner {
  background-image: url('../images/createcamp-bg_1.avif');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 280px;
}

.section.hero-overshoot {
  margin-top: -155px;
  padding-top: 0;
  padding-bottom: 72px;
}

.section.why-choose-us {
  z-index: 1;
  background-color: var(--primary-light);
  padding-top: 112px;
  padding-bottom: 80px;
  position: relative;
}

.section.our-learning-approach {
  z-index: 1;
  background-image: url('../images/bg-1.svg'), url('../images/bg.svg');
  background-position: 0 100%, 100% 0;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
  padding-top: 112px;
  padding-bottom: 80px;
  position: relative;
}

.section.whos-it-for {
  z-index: 1;
  background-color: var(--primary-light);
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.section.upcoming-webinar {
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section.cta {
  z-index: 1;
  background-color: var(--primary);
  background-image: url('../images/cc-cta.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.nav-menu {
  flex: 1;
  justify-content: space-between;
  display: flex;
}

.nav-link {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  font-size: var(--size--subcontent);
  line-height: var(--line-height--subcontent);
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
}

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

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

.nav-link.block {
  font-size: var(--size--content);
  line-height: var(--line-height--content);
  padding-left: 24px;
  padding-right: 24px;
  font-weight: 700;
  text-decoration: none;
}

.vectors-wrapper-19 {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 10px;
  text-decoration: none;
  display: flex;
}

.stack {
  text-decoration: none;
  display: flex;
}

.stack.combo---navbar {
  grid-column-gap: 8%;
  grid-row-gap: 8%;
  justify-content: space-between;
}

.stack.combo---footer {
  font-size: var(--size--subcontent);
  line-height: var(--line-height--subcontent);
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.stack.column {
  flex-flow: column;
}

.stack.column.combo---second-line-hero {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 900px;
}

.stack.column.combo---hero-content {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: flex-start;
  align-items: center;
}

.stack.column.combo---register-group-heading {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  /*max-width: 800px;*/
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 100%;
}

.stack.column.combo---wit {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 488px;
  position: relative;
}

.stack.column.combo---upcoming-webinar {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.stack.column.combo---cta-block {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--text--white);
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 488px;
  position: relative;
}

.stack.combo---hero-title {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #262f5a;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.stack.combo---wcu {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: wrap;
  width: 100%;
}

.stack.combo---ola {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: row;
  justify-content: center;
  align-items: flex-end;
}

.stack.combo---card-stack {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  align-items: center;
  flex: 1;
  width: 100%;
}

.stack.combo---uw {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: wrap;
  width: 100%;
}

.brand {
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-icon-button {
  grid-column-gap: 10px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.text-39 {
  color: #262f5a;
  text-align: center;
  letter-spacing: -.25px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: PT Sans, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
}

.block-fw {
  background-color: #b4b4b4;
  width: 100%;
  height: 1px;
}

.social-icons {
  grid-column-gap: 16px;
  flex: 0 auto;
  justify-content: center;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.heading {
  font-size: var(--size--h2);
  line-height: var(--line-height--h2);
}

.brand-logo {
  object-fit: cover;
  height: 34px;
}

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

.no-margin {
  margin: 0;
}

.outline-button {
  grid-column-gap: 10px;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  font-size: var(--size--content);
  line-height: var(--line-height--content);
  border-radius: 50px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 15px 25px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.outline-button:hover {
  background-color: var(--secondary-dark);
  color: var(--text--white);
}

.secondary-button {
  grid-column-gap: 10px;
  background-color: var(--secondary);
  color: var(--text--white);
  font-size: var(--size--content);
  line-height: var(--line-height--content);
  border-radius: 50px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 15px 25px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

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

.h1-hero {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#ee608f 0%, #262f5a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 120px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.hero---illustration {
  object-fit: contain;
  object-position: 50% 0%;
  width: 100%;
  margin-left: -24px;
  margin-right: -24px;
  text-decoration: none;
  display: block;
}

.content-wrapper.hero {
  justify-content: flex-start;
  align-items: center;
  height: auto;
}

.content-wrapper.card {
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 35px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  position: relative;
}

.content-wrapper.combo---wcu {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.content-wrapper.combo---wit {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  height: 460px;
  display: flex;
  position: relative;
}

.content-wrapper.combo---cta {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.text-xlarge {
  font-size: var(--size--h5);
  line-height: var(--line-height--h5);
}

.h1-logo {
  height: 96px;
  margin-bottom: 32px;
}

.text-content {
  font-size: var(--size--content);
  line-height: var(--line-height--content);
}

.container-2 {
  z-index: 1;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 16px;
  line-height: 26px;
  text-decoration: none;
  position: relative;
}

.card-overshoot {
  z-index: 2;
  grid-row-gap: 40px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 546px;
  padding: 50px;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
}

.card-title {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.text-large {
  font-size: 20px;
  line-height: 30px;
}

.text-xlarge-2 {
  font-size: 24px;
  line-height: 34px;
}

.image---wwd {
  z-index: 1;
  border-radius: 16px;
  max-width: 949px;
  position: relative;
  overflow: hidden;
}

.secondary-button-2 {
  grid-column-gap: 10px;
  color: #fff;
  background-color: #ee608f;
  border-radius: 50px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  text-decoration: none;
  display: flex;
}

.button-text {
  color: #fff;
  letter-spacing: -.29px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: PT Sans, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  text-decoration: none;
}

.container-3 {
  z-index: 1;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 16px;
  line-height: 26px;
  text-decoration: none;
  position: relative;
}

.card---register {
  grid-row-gap: 16px;
  border: 8px solid #000;
  border-width: 2px 8px 8px 2px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 556px;
  padding: 32px;
  font-size: 20px;
  line-height: 30px;
  text-decoration: none;
  display: flex;
}

.color---primary {
  color: #262f5a;
}

.color---secondary {
  color: #ee608f;
}

.stretch-row {
  flex: 1;
}

.stretch-row.mt-8px {
  margin-top: 8px;
}

.card-block {
  grid-row-gap: 16px;
  text-align: left;
  border: 1px solid #d0d0d0;
  border-radius: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%; 
  max-width: 556px;
  padding: 32px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.card-block:hover {
  background-color: var(--text--white);
  box-shadow: 0 20px 80px #00000026;
}

.card-block.first {
  background-color: var(--text--white);
  align-items: stretch;
  /*margin-bottom: 126px;*/
}

.card-block.second {
  background-color: var(--text--white);
  align-items: stretch;
  /*margin-bottom: 86px;*/
}

.card-block.third {
  background-color: var(--text--white);
  align-items: stretch;
  
}

.card-block.text-only {
  grid-row-gap: 24px;
  border-style: none;
  border-width: 0;
  padding: 0 16px 0 0;
  width: 100%;
  max-width: 750px;
}

.card-block.text-only:hover {
  box-shadow: none;
  background-color: #0000;
}

.card-block.fw {
  /*width: 100%;
  max-width: none;*/
  display: flex;
  flex-direction: row;
  column-gap: 24px;
  align-items: center;
}

.card-block.fw img{
  max-height: 300px;
  width: auto;
  object-fit: cover;
  border-radius: 4px;
}

.card-block.first
{
  align-self: flex-start;
}

.card-block.third
{
  align-self: flex-end;
}

.mt-80px {
  margin-top: 80px;
}

.mt-8px {
  margin-top: 8px;
}

.mt-16px {
  margin-top: 16px;
}

.image {
  height: 100%;
  position: relative;
}

.form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.text-field {
  border-radius: 8px;
  width: 340px;
  height: 48px;
  margin-bottom: 0;
}

.utility-page-wrap {
  background-color: var(--primary-light);
  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;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-2 {
  width: 700px;
}

.mt-24px {
  margin-top: 24px;
}

.success-message {
  color: var(--text--primary);
  background-color: #ddd;
}

.error-message {
  color: var(--text--primary);
}

@media screen and (max-width: 991px) {
  .whatsapp-block {
    z-index: 15;
  }

  .container.no-padding-mobile {
    padding-left: 0;
    padding-right: 0;
  }

  .gray-3 {
    width: 33.3333%;
  }

  .text-highlight {
    padding: 20px;
  }

  .color-block-parent, .gray-2 {
    width: 33.3333%;
  }

  .banner {
    padding: 70px 5% 99px;
  }

  .gray {
    width: 33.3333%;
  }

  .section.hero-overshoot {
    padding-bottom: 36px;
  }

  .section.why-choose-us, .section.whos-it-for, .section.upcoming-webinar {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.cta {
    background-image: linear-gradient(#326da4d9, #326da4d9), url('../images/cc-cta.svg');
    background-position: 0 0, 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .nav-menu {
    background-color: #fff;
    background-image: url('../images/createcamp-bg_1.avif');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: auto;
    flex-flow: column;
    width: 100vw;
    height: calc(100vh - 48px);
    top: 48px;
    left: 0;
  }

  .nav-link {
    color: #191919;
    font-size: var(--size--content);
    line-height: var(--line-height--content);
    width: 100%;
    height: 60px;
    transition: all .2s;
  }

  .nav-link:hover {
    font-weight: 700;
  }

  .nav-link.block {
    flex: 1;
  }

  .menu-button {
    color: #262f5a;
  }

  .menu-button:hover {
    color: #151e48;
  }

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

  .stack.combo---nav-menu {
    flex-flow: column;
    flex: 1;
  }

  .stack.combo---navbar {
    display: block;
    position: relative;
    top: 10px;
  }

  .stack.combo---wcu, .stack.combo---uw {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    justify-content: center;
    align-items: stretch;
  }

  .hero---illustration {
    width: auto;
    height: auto;
  }

  .content-wrapper.card {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .content-wrapper.combo---wcu {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    flex-flow: column;
  }

  .content-wrapper.combo---wit, .content-wrapper.combo---cta {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    flex-flow: column;
    height: auto;
  }

  .card-overshoot {
    padding: 32px;
    position: relative;
    top: -19px;
  }

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

  .card-block {
    width: calc(50% - 32px);
    max-width: none;
  }

  .image {
    height: auto;
  }
}

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

  h2 {
    font-size: var(--size--h3);
    line-height: var(--line-height--h3);
  }

  h3 {
    font-size: var(--size--h4);
    line-height: var(--line-height--h4);
  }

  h4 {
    font-size: var(--size--h5);
    line-height: var(--line-height--h5);
  }

  h5 {
    font-size: var(--size--h6);
    line-height: var(--line-height--h6);
  }

  h6 {
    font-size: var(--size--content);
    line-height: var(--line-height--subcontent);
  }

  .container.no-padding-mobile {
    padding-left: 0;
    padding-right: 0;
  }

  .type-row {
    flex-direction: column;
  }

  .text-highlight {
    padding: 26px 9px;
  }

  .white-text:visited {
    color: #fff;
    text-decoration: none;
  }

  .type-column {
    width: 100%;
    margin-bottom: 20px;
  }

  .body-content {
    background-size: 200px;
    padding-left: 0;
    padding-right: 0;
  }

  .line-bar {
    max-width: 64px;
    margin-top: 16px;
  }

  .banner {
    padding: 32px 24px;
  }

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

  .section.hero-banner {
    padding-top: 64px;
    padding-bottom: 240px;
  }

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

  .stack.combo---footer {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    margin-top: 24px;
  }

  .stack.column.combo---hero-content {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
  }

  .stack.column.combo---wit {
    min-width: 0;
  }

  .stack.column.combo---cta-block {
    text-align: center;
    justify-content: flex-start;
    align-items: stretch;
    min-width: 0;
  }

  .stack.combo---hero-title {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .stack.combo---wcu {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .stack.combo---ola {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .stack.combo---uw {
    flex-flow: column;
  }

  .h1-hero {
    font-size: 64px;
    line-height: 72px;
  }

  .hero---illustration {
    object-fit: contain;
    flex: 1;
  }

  .content-wrapper.combo---wcu, .content-wrapper.combo---wit, .content-wrapper.combo---cta {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .text-xlarge {
    font-size: 20px;
    line-height: 30px;
  }

  .h1-logo {
    width: 90%;
    height: auto;
  }

  .card-overshoot {
    grid-row-gap: 32px;
    width: 80%;
    min-width: 320px;
    max-width: none;
    padding: 40px;
  }

  .text-large {
    font-size: 18px;
    line-height: 28px;
  }

  .text-xlarge-2 {
    font-size: 20px;
    line-height: 30px;
  }

  .stretch-row.text-xlarge {
    font-size: var(--size--content);
    line-height: var(--line-height--content);
  }

  .card-block {
    width: 80%;
    max-width: none;
    padding: 24px;
  }

  .card-block.first, .card-block.second {
    margin-bottom: 0;
  }

  .card-block.text-only {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-right: 0;
  }

  .mt-80px {
    margin-top: 40px;
  }

  .mt-16px.text-xlarge {
    font-size: var(--size--h6);
    line-height: var(--line-height--h6);
  }

  .form {
    flex-flow: column;
  }

  .text-field {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .send-us-a-message {
    width: 50px;
  }

  .paragraph-16 {
    display: none;
  }

  .logo-row {
    flex-direction: column;
  }

  .typography-flex {
    width: 68%;
  }

  .type-row {
    flex-direction: column;
  }

  .grayscale-parent {
    height: 55px;
  }

  .gray-3 {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .text-highlight {
    width: 32%;
    padding: 20px 10px;
  }

  .color-row {
    flex-direction: column;
  }

  .type-column {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .color-block-parent {
    width: 100%;
    margin-right: 3%;
  }

  .gray-2 {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .banner {
    padding-top: 50px;
    padding-bottom: 45px;
  }

  .gray {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .margin-50px {
    margin-top: 30px;
  }

  .color-block {
    width: 100%;
    height: 55px;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .section.hero-banner {
    padding-bottom: 230px;
  }

  .section.hero-overshoot {
    margin-top: -172px;
  }

  .no-margin {
    display: none;
  }

  .content-wrapper.card {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .content-wrapper.combo---wcu, .content-wrapper.combo---wit, .content-wrapper.combo---cta {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .card-overshoot {
    grid-row-gap: 16px;
    width: 100%;
    min-width: 0;
    margin-top: 32px;
    padding: 24px;
    top: 0;
  }

  .card-block {
    width: auto;
  }

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

  .card-block.fw {
    flex-direction: column;
  }

  .card-block.fw img {
    width: 100%;
  }

}


