:root {
  --cerulean: #009cf8;
  --ice: #f2faff;
  --white: white;
  --night: #101921;
  --blue-black: #1f2e3d;
  --midnight-blue: #0a2540;
  --gray: #415668;
  --royal-blue: #405f97;
  --lipstick: #e74444;
  --mouse-blue: #7c97c6;
  --mist: #d0e5ff;
  --rose: #ffdfe0;
  --serenity: #b6c6ff;
  --lavender: #e4eaff;
  --polo-blue: #8dafce;
  --alice-blue: #d9f1ff;
  --alice-grey: #edf2f7;
  --golden-yellow: #ffce00;
  --plum: #d5b5ff;
  --dark-slate-blue: #40516b;
  --yellow: #ffe14c;
  --light-pink: #ffbaba;
  --light-steel-blue: #d0e5ff;
}

.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-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

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

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #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: #111;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

p {
  color: #000;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

a {
  color: var(--cerulean);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
}

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

li {
  padding-bottom: 8px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

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

strong {
  font-weight: 700;
}

em {
  color: #5e5e5e;
  font-style: italic;
}

blockquote {
  width: 89%;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 31px 37px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}

figure {
  margin-bottom: 10px;
}

.container {
  background-color: #192733;
  justify-content: center;
  align-items: center;
  padding: 150px 4% 120px;
  display: block;
  position: relative;
}

.container.is--iceblue {
  background-color: var(--ice);
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

.container.is--iceblue.is--testimonialsection {
  padding-bottom: 184px;
  overflow: hidden;
}

.container.is--iceblue.section-class {
  background-color: var(--white);
  padding-bottom: 0;
}

.container.is--iceblue.section-class.hiw-apply-now {
  background-color: #fafafa;
}

.container.is--black {
  background-color: var(--night);
  flex-direction: column;
  display: flex;
  position: relative;
}

.container.is--icebluegradient {
  background-image: linear-gradient(to bottom, white, var(--ice) 65%);
  display: block;
}

.container.is--blue-black {
  background-color: var(--blue-black);
}

.container.is--white {
  background-color: #fff;
}

.container.curriculum {
  background-color: var(--midnight-blue);
  padding-top: 120px;
}

.navbar {
  background-color: #083232;
  justify-content: center;
  align-items: center;
  min-height: 90px;
  padding-left: 2%;
  padding-right: 2%;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar.white {
  background-color: #fff;
  justify-content: center;
  padding-left: 4%;
  padding-right: 4%;
}

.navbar.transpraent {
  background-color: #0000;
}

.nav {
  z-index: 1;
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-self: center;
  align-items: center;
  width: auto;
  max-width: 1200px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  position: relative;
}

.nav.flex {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav.minus {
  margin-top: -103px;
}

.nav__menu-link {
  color: var(--night);
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-right: 32px;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 17px;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.nav__menu-link:hover {
  color: var(--gray);
}

.nav__menu-link.w--current {
  color: var(--royal-blue);
}

.nav__menu-link.dropdown {
  padding-right: 30px;
}

.nav__menu-link.white {
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

.nav__menu-link.white:hover {
  color: #ffffffd1;
}

.nav__menu-link.last {
  margin-right: 0;
}

.nav__logo {
  order: -1;
  align-self: center;
}

.nav__menu {
  order: 0;
  align-items: center;
  display: flex;
}

.arrow-icon {
  color: var(--lipstick);
  margin-right: 10px;
  font-size: 12px;
  font-weight: 900;
  top: 1px;
  transform: rotate(0);
}

.dropdown-list {
  background-color: #fff;
  box-shadow: 0 11px 12px #2c2d360d;
}

.dropdown-list.w--open {
  border-radius: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-list.mega-menu.w--open {
  min-width: 350px;
  display: flex;
}

.dropdown-link {
  color: #1111119c;
  padding: 7px 30px;
  font-size: 16px;
  font-weight: 700;
}

.dropdown-link:hover {
  opacity: .9;
  color: var(--royal-blue);
}

.dropdown-link.w--current {
  color: #1111119c;
}

.dropdown-link.w--current:hover {
  color: var(--royal-blue);
}

.mega-shrink {
  flex: 1;
}

.nav-tag {
  background-color: var(--lipstick);
  color: #fff;
  border-radius: 3px;
  margin-left: 6px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  position: relative;
  top: -1px;
}

.nav-tag.hot {
  background-color: #f64d52;
}

.menu-button {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 50px;
  padding: 0;
}

.nav__button-enroll {
  background-color: var(--lipstick);
  color: var(--white);
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: block;
  box-shadow: 6px 6px 48px #ffe3e4, 3px 3px 4px #ffe3e4;
}

.nav__button-enroll:hover {
  background-color: #db2c2c;
  box-shadow: 6px 6px 48px #ffe3e4, 3px 3px 4px #ffe3e4;
}

.nav__button-enroll.orange {
  background-color: #f64d52;
}

.nav__button-enroll.orange:hover {
  background-color: #f76a6e;
}

.nav__button-enroll.subscribe {
  height: 55px;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}

.nav__button-enroll.subscribe.orange:hover {
  background-color: #f8696e;
}

.line-1 {
  background-color: #111;
  border-radius: 20%;
  width: 25px;
  height: 3px;
  position: absolute;
  top: 20px;
}

.line-1.whiter {
  background-color: #fff;
}

.nav__button {
  margin-left: 0;
}

.section {
  padding: 120px 5%;
  position: relative;
}

.section.bg-gray {
  background-color: #e4edef;
  padding-top: 60px;
  padding-bottom: 69px;
}

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

.hero__wrapper {
  grid-column-gap: 72px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.hero__wrapper.margin-bottom-120px {
  max-width: 1296px;
}

.scribble-1 {
  z-index: 20;
  position: absolute;
  inset: auto 86px -28px auto;
}

.h1 {
  color: var(--night);
  letter-spacing: -1.25px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 110%;
}

.h1._50px {
  font-size: 46px;
  line-height: 55px;
}

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

.h1.margin-bottom-24px {
  letter-spacing: -1.15px;
  max-width: 500px;
  font-size: 40px;
  line-height: 140%;
}

.h1.margin-bottom-24px.main--title, .h1.margin-bottom-24px.font-xxl {
  font-size: 56px;
}

.enrollbutton {
  align-items: center;
  display: flex;
}

.enrollbutton:hover {
  background-color: #0000;
}

.enrollbutton.is--centered {
  justify-content: center;
}

.enrollbutton.is--upfront {
  margin-top: 1.7rem;
}

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

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

.cookies-wrapper {
  z-index: 999;
  background-color: #fff;
  border-radius: 5px;
  align-items: center;
  padding: 16px 25px;
  display: flex;
  position: fixed;
  inset: auto auto 15px 50%;
  transform: translate(-50%);
  box-shadow: 0 11px 12px #2c2d360d;
}

.cookies-font {
  margin-bottom: 0;
}

.cookies-font.check {
  margin-left: 13px;
  font-size: 16px;
}

.remove-icon {
  cursor: pointer;
  background-color: #e4edef;
  background-image: url('../images/icons8-multiply-500.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 19px;
  border-radius: 100%;
  width: 25px;
  height: 25px;
  margin-left: 15px;
}

.align-center {
  color: #fff;
  text-align: center;
}

.line-divider {
  background-color: #ececec;
  width: 100%;
  height: 1px;
  margin-top: 100px;
  margin-bottom: 50px;
}

.line-divider.blog-single {
  background-color: #e1e1e1;
  margin-top: 50px;
}

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

.form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.text-field {
  color: #222;
  border: 1px #000;
  border-radius: 5px;
  height: 55px;
  margin-bottom: 0;
}

.text-field::placeholder {
  color: #111;
}

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

.checkbox {
  background-color: #fff;
  border-style: none;
  flex: none;
  width: 14px;
  height: 14px;
  margin-top: 0;
}

.checkbox.w--redirected-checked {
  background-color: #2e856e;
  background-size: 8px;
}

.checkbox-label {
  font-size: 14px;
  font-weight: 700;
  display: none;
}

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

.social-wrapper {
  border-right: 1px solid #e1e1e1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-wrapper.left {
  border-right-style: none;
  justify-content: flex-start;
}

.or-line {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 1px;
  margin: 50px auto 30px;
  display: flex;
}

.or-block {
  background-color: #e4edef;
  padding-left: 20px;
  padding-right: 20px;
}

.social-icon {
  background-color: #2e856e;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  margin-left: 5px;
  margin-right: 5px;
  display: flex;
}

.social-icon:hover {
  background-color: #226d59;
}

.social-icon.only-left {
  margin-left: 0;
  margin-right: 10px;
}

.section-description {
  color: var(--gray);
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.section-description.is--serenity {
  color: var(--mouse-blue);
  font-weight: 700;
}

.section-description.is--mouseblue {
  max-width: 960px;
  color: var(--mouse-blue);
  text-align: center;
  line-height: 160%;
}

.section-description.is--mouseblue.is--width350px {
  line-height: 160%;
}

.section-description.is--mouseblue.recruit-description, .section-description.is--mouseblue.is--left {
  text-align: left;
}

.section-description.is--medium {
  font-weight: 500;
}

.section-description.is--medium.is--night {
  width: 313px;
  max-width: 313px;
  color: var(--night);
  font-size: 16px;
}

.section-description.is--medium.is--night.margin-bottom-40px {
  width: 313px;
  max-width: 313px;
  margin-top: 0;
  margin-bottom: 40px;
}

.section-description.margin-bottom-24px {
  width: 400px;
  max-width: 500px;
  font-size: 16px;
  line-height: 160%;
}

.section-description.margin-bottom-24px.width-auto {
  width: auto;
}

.section-description.margin-bottom-24px.width-auto.is--royal-blue.is--bold {
  font-weight: 700;
}

.section-description.margin-bottom-24px.width-auto.is--royal-blue.is--bold.font--large {
  font-size: 24px;
}

.section-description.is--centered.margin-top-32px {
  margin-top: 24px;
  font-weight: 700;
}

.section-description.margin-top-24px {
  color: var(--white);
  text-align: center;
  margin-top: 24px;
  line-height: 160%;
}

.section-description.margin-top-24px.is--night {
  max-width: 720px;
  color: var(--night);
}

.section-description.margin-top-24px.is--night.content--dark {
  max-width: 720px;
  color: var(--white);
  margin-bottom: 24px;
}

.section-description.margin-top-24px.is--night {
  color: var(--night);
}

.section-description.is--white.font-large {
  font-size: 24px;
  font-weight: 700;
}

.loader {
  z-index: 9999;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.loading-image {
  display: none;
}

.hero-title-center {
  text-align: center;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.hero-title-center.flex-inner {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.paragraph-white {
  color: #fff;
}

.tag-text {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #f64d52;
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 11px;
  font-weight: 700;
}

.tag-text.for-blog {
  background-color: #fff;
}

.toggle-wrapper {
  border-bottom: 1px solid #d3dee0;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.success-message {
  color: #fff;
  background-color: #2e856e;
  border-radius: 10px;
  font-size: 17px;
}

.error-message {
  color: #fff;
  text-align: center;
  background-color: #f64d52;
  border-radius: 10px;
  width: 100%;
}

.hero__right {
  position: relative;
}

.line-2 {
  background-color: #111;
  border-radius: 20%;
  width: 25px;
  height: 3px;
  position: absolute;
  top: 27px;
}

.line-2.whiter {
  background-color: #fff;
}

.line-3 {
  background-color: #111;
  border-radius: 20%;
  width: 25px;
  height: 3px;
  position: absolute;
  top: 34px;
}

.line-3.whiter {
  background-color: #fff;
}

.utility-page-wrap {
  background-color: #e4edef;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

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

.margin-bottom-24px {
  margin-top: 0;
  margin-bottom: 24px;
}

.blog-wrapper {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.blog-content {
  color: #111;
  border-radius: 10px;
  width: 96%;
  margin-bottom: 30px;
  text-decoration: none;
  transition: all .3s;
  overflow: hidden;
}

.blog-content:hover {
  color: #2e856e;
}

.blog-content.flex {
  display: flex;
}

.blog-content._100 {
  width: 100%;
}

.blog-white-bg {
  background-color: #fff;
  padding: 40px 40px 30px;
}

.blog-white-bg.center-flex {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
}

.blog-white-bg._0-left {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 139px;
}

.blog-photo {
  flex-direction: column;
  transition: all .3s;
  display: flex;
  position: relative;
}

.blog-photo.normal {
  flex: 0 50%;
  display: block;
}

.blog-title {
  margin-top: 5px;
  margin-bottom: 15px;
  font-size: 30px;
  line-height: 35px;
}

.blog-tags {
  align-items: center;
  display: flex;
  position: absolute;
  inset: 10px 10px auto auto;
}

.features-sign {
  background-color: #2e856e;
  border-radius: 15px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-left: 7px;
  display: flex;
}

.data {
  color: #111;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 13px;
  font-weight: 700;
}

.flex-tag {
  flex-direction: row;
  display: flex;
}

.blog-body {
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}

.rounded-image {
  border-radius: 10px;
}

.footer {
  background-color: #083232;
  justify-content: center;
  align-items: center;
  padding: 80px 5% 30px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.footer.white-bg {
  background-color: #fff;
}

.footer-gird {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-title {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  align-items: center;
  height: 30px;
  margin-top: 0;
  font-size: 14px;
  display: flex;
}

.footer-title.dark-title {
  color: #000;
}

.footer-logo {
  height: 30px;
}

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

.footer-divider {
  background-color: #e4edef0f;
  width: 100%;
  height: 1px;
  margin-top: 50px;
  margin-bottom: 20px;
}

.footer-divider.white-bg {
  background-color: #ededed;
}

.copyright {
  color: #fff;
  margin-bottom: 0;
  font-size: 16px;
}

.copyright.gray {
  color: #999;
}

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

.copyright-dot {
  background-color: #2e856e;
  border-radius: 100%;
  width: 6px;
  height: 6px;
  margin-left: 10px;
  margin-right: 10px;
}

.utility-icon {
  margin-left: auto;
  margin-right: auto;
}

.sub-hero-section {
  background-color: var(--mist);
  padding: 160px 5% 110px;
  position: relative;
}

.sub-hero-section.in-blog-page {
  padding-bottom: 172px;
}

.gray-section {
  background-color: #e4edef;
  padding: 120px 5%;
  position: relative;
}

.scribble-2 {
  width: 60px;
  position: absolute;
  inset: 122px auto auto 23px;
}

.scribble-3 {
  z-index: 20;
  position: absolute;
  bottom: -24px;
  left: 50px;
}

.scribble-4 {
  width: 400px;
  position: absolute;
  inset: auto -2% -2% auto;
}

.scribble-footer {
  position: absolute;
  inset: 31% -1% 0% auto;
}

.footer-link {
  color: #fff;
  margin-bottom: 10px;
  padding-right: 10px;
  font-size: 17px;
  text-decoration: none;
  display: block;
}

.footer-link:hover {
  color: #ffffffd1;
}

.footer-link.black {
  color: #000;
}

.footer-link.black:hover {
  color: #000000b3;
}

.nav__logo-image {
  width: auto;
  height: 32px;
}

.hero__img {
  z-index: 2;
  border-radius: 18px;
  width: auto;
  display: block;
  position: relative;
}

.div-block {
  flex: 0 auto;
  order: 1;
}

.boldtext {
  color: var(--royal-blue);
}

.boldtext.is--pink {
  color: var(--rose);
}

.boldtext.is--night {
  color: var(--night);
}

.h3 {
  color: var(--royal-blue);
  letter-spacing: normal;
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 500;
  line-height: 110%;
}

.h3.is--white {
  color: var(--white);
  text-align: center;
  margin-top: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 140%;
}

.h3.is--white.is--biggerpie, .h3.is--white.is--smallerpie {
  z-index: 1;
  text-align: center;
  position: relative;
  inset: auto;
}

.h3.is--white.no-padding {
  width: 500px;
  max-width: 500px;
  margin-bottom: 0;
}

.h3.is--white.recruit-talent, .h3.is--white.is--left {
  text-align: left;
}

.h3.margin-bottom-24px {
  margin-top: 0;
  margin-bottom: 24px;
}

.hero__dots {
  z-index: auto;
  width: 192px;
  height: auto;
  position: absolute;
  inset: 216px 280px auto auto;
}

.h2 {
  max-width: 1200px;
  color: var(--white);
  text-align: center;
  margin: 0 auto;
  font-size: 40px;
  line-height: 110%;
}

.h2.is--night {
  color: var(--night);
  text-align: left;
}

.h2.is--night.margin-bottom-72px {
  text-align: left;
  margin-bottom: 72px;
}

.h2.is--night.margin-bottom-72px.is-center {
  text-align: center;
}

.h2.is--night.margin-bottom-24px {
  margin-bottom: 24px;
}

.h2.margin-bottom-72px {
  margin-left: auto;
  margin-right: auto;
}

.h2.margin-bottom-24px {
  display: block;
}

.h2.margin-bottom-24px.is--night.is--centered {
  text-align: center;
}

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

.overline {
  color: var(--serenity);
  text-align: center;
  letter-spacing: 2px;
  font-weight: 700;
  line-height: 140%;
}

.overline.is--royalblue {
  color: var(--royal-blue);
}

.overline.is--royalblue.margin-bottom-8px {
  margin-top: 0;
  margin-bottom: 8px;
}

.overline.margin-bottom-8px {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.overline.margin-bottom-8px.is-center {
  text-align: center;
}

.text-span-2 {
  background-image: url('../images/underline-blue-scribble.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

.howitworks__number {
  background-color: var(--night);
}

.div-block-4 {
  border: 2px solid var(--blue-black);
  background-color: var(--night);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  display: flex;
  position: relative;
}

.howitworks__left {
  text-align: left;
  justify-content: center;
  align-items: center;
  display: flex;
}

.margin-bottom-8px {
  margin-top: 0;
  margin-bottom: 8px;
}

.margin-right-24px {
  max-width: 336px;
  margin-left: 0;
  margin-right: 24px;
}

.div-block-6 {
  grid-column-gap: 0px;
  grid-row-gap: 240px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  max-width: 1296px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.howitworks__image {
  z-index: 1;
  border: 0 solid #0000;
  width: 100%;
  max-width: none;
  display: block;
  position: relative;
}

.howitworks__image.is--noshadow {
  box-shadow: none;
  margin-left: auto;
  margin-right: auto;
}

.howitworks__image.is--noshadow.is--partnercompanies {
  width: 90%;
}

.margin-bottom-120px {
  margin-bottom: 120px;
}

.howitworks__zigzag {
  width: 170px;
  display: block;
  position: absolute;
  inset: -27% -8% auto auto;
}

.howitworks-right {
  width: 100%;
  position: relative;
}

.howitworks__applyspeechbubble {
  z-index: 2;
  width: 320px;
  display: block;
  position: absolute;
  inset: 60% auto auto -16%;
}

.howitworks__honespeechbubble {
  z-index: 2;
  width: 320px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.howitworks__honespeechbubble.is--purple {
  background-color: #0000;
  top: -30%;
  left: 7%;
}

.howitworks__honespeechbubble.is--pink {
  top: 33%;
  left: 30%;
}

.howitworks__honespeechbubble.is--blue {
  background-color: #0000;
  width: 280px;
  top: 69%;
  left: -18%;
}

.howitworks__3lines {
  z-index: 3;
  width: 56px;
  position: relative;
  inset: -55px auto auto;
}

.howitworks__logo {
  z-index: 1;
  background-color: var(--white);
  border-radius: 18px;
  justify-content: center;
  align-items: stretch;
  padding: 16px 20px;
  display: flex;
  position: absolute;
  inset: 61% auto auto 36%;
  box-shadow: 3px 3px 8px #0b131a, 6px 6px 48px #0b131a;
}

.howitworks__logo.is--skilledd {
  padding: 14px 20px;
  top: 58%;
  left: -4%;
  box-shadow: 3px 3px 8px #0b131a;
}

.howitworks__logo.is--filta {
  padding: 14px 20px;
  top: 63%;
  left: 80%;
  box-shadow: 3px 3px 8px #0b131a;
}

.howitworks__logo.is--pulley {
  padding: 14px 20px;
  top: -1%;
  left: 71%;
  box-shadow: 3px 3px 8px #0b131a;
}

.howitworks__logo.is--paymongo {
  padding: 14px 20px;
  top: 29%;
  left: -2%;
}

.howitworks__logo.is--mashupgarage {
  top: 19%;
  left: 40%;
  box-shadow: 3px 3px 8px #0b131a;
}

.howitworks__logo.is--xpanse {
  top: -7%;
  left: 39%;
  box-shadow: 3px 3px 8px #0b131a;
}

.howitworks__logo.is--canva {
  padding: 14px 20px;
  top: 29%;
  left: 81%;
  box-shadow: 3px 3px 8px #0b131a;
}

.howitworks__logo.is--madeats {
  top: 46%;
  left: 53%;
  box-shadow: 3px 3px 8px #0b131a;
}

.howitworks__logo.is-lawadvisor {
  top: 89%;
  left: 49%;
  box-shadow: 3px 3px 8px #0b131a;
}

.howitworks__logo.is--marti {
  left: 25%;
  box-shadow: 3px 3px 8px #0b131a;
}

.howitworks__logo.is--xendit {
  top: 2%;
  left: 10%;
  box-shadow: 3px 3px 8px #0b131a;
}

.howitworks__logo.is--pickaroo {
  top: 89%;
  left: 7%;
  box-shadow: 3px 3px 8px #0b131a;
}

.howitworks__logo-image {
  flex: 0 auto;
  height: 20px;
}

.howitworks__logo-image.is--smaller {
  height: 16px;
}

.howitworks__logo-image.is--bigger {
  height: 40px;
}

.body2 {
  max-width: none;
  color: var(--gray);
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  position: static;
  inset: auto 40px 40px;
  overflow: hidden;
}

.body2.is--biggerpie {
  z-index: 1;
  color: #99b9f2;
  text-align: center;
  font-size: 14px;
  position: relative;
  inset: auto;
}

.body2.is--smallerpie {
  z-index: 1;
  color: #fff;
  text-align: center;
  font-size: 14px;
  position: relative;
  inset: auto;
}

.body2.is--pinnedbottom {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  overflow: visible;
}

.body2.is--dropdown {
  object-fit: fill;
  width: auto;
  max-width: none;
  display: block;
  position: static;
  overflow: visible;
}

.body2.is--night {
  color: var(--night);
}

.body2.margin-bottom-40px.is--centered {
  width: 284px;
}

.testimonial__card {
  background-color: var(--white);
  border-radius: 18px;
  width: auto;
  max-width: 392px;
  height: auto;
  margin-right: 24px;
  padding: 64px 32px 32px;
  position: relative;
  box-shadow: 3px 3px 8px #d4e7f2, 6px 6px 48px #d4e7f2;
}

.testimonial__card.is--bottom {
  max-width: 392px;
  height: auto;
  margin-top: 0;
  position: relative;
  top: 64px;
}

.testimonial__card.hide {
  display: none;
}

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

.image {
  border-radius: 100%;
  width: 80px;
  height: 80px;
  position: absolute;
  inset: -9% auto auto 40px;
  box-shadow: 6px 6px 12px #d4e7f2bf;
}

.is--lavender {
  background-color: var(--lavender);
}

.testimonial__container {
  display: flex;
  position: relative;
  overflow: visible;
}

.is--rose {
  background-color: var(--rose);
}

.is--blue {
  background-color: var(--mist);
}

.underline-blue-scribble-highlight {
  background-image: url('../images/underline-blue-scribble.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

.margin-bottom-72px {
  margin-bottom: 72px;
}

.dropdown__circle {
  background-color: var(--lipstick);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.dropdown__circle.margin-right-16px {
  width: 32px;
  max-width: 32px;
  height: 32px;
  max-height: 32px;
}

.accordion__lessontitle {
  object-fit: contain;
  width: 278px;
  max-width: 500px;
}

.div-block-9 {
  flex: 0 auto;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.margin-right-16px {
  margin-right: 16px;
}

.icon {
  flex: 0 auto;
  margin: 0;
  position: static;
}

.div-block-10 {
  border: 2px solid var(--serenity);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 40px;
  max-width: 40px;
  height: 40px;
  max-height: 40px;
  display: flex;
  position: static;
  inset: auto 32px auto auto;
}

.accordion__container {
  background-color: var(--white);
  border-radius: 18px;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-bottom: 16px;
  padding: 32px;
  display: block;
}

.accordion__container.is--maxwidth696px {
  width: 696px;
  max-width: 696px;
  margin-left: auto;
  margin-right: auto;
}

.accordion__container.is--maxwidth696px.margin-bottom-16px.is--iceblueshadow {
  max-width: 993px;
}

.accordion__item-trigger {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.margin-bottom-16px {
  margin-bottom: 16px;
}

.divider {
  border: 1px dashed var(--serenity);
}

.divider.margin-bottom-32px {
  width: 100%;
}

.margin-bottom-32px {
  width: auto;
  height: auto;
  margin-bottom: 32px;
}

.accordion__lesson {
  align-items: center;
  display: flex;
}

.accordion__check.margin-right-16px {
  width: 32px;
  height: 32px;
}

.accordion__listlessons {
  overflow: hidden;
}

.accordion__groupcontainer {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  max-width: 1296px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.caption {
  font-weight: 400;
  line-height: 120%;
}

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

.caption.is--royalblue {
  color: var(--royal-blue);
}

.schedule__wrapper {
  background-color: var(--white);
  border-radius: 18px;
  max-width: 992px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px 40px;
  box-shadow: 3px 3px 8px #d4e7f2, 6px 6px 48px #d4e7f2;
}

.h4 {
  color: var(--night);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 110%;
}

.h4.margin-bottom-16px {
  margin-top: 0;
  margin-bottom: 16px;
}

.h4.is--royalblue {
  color: var(--royal-blue);
}

.h4.is--royalblue.margin-bottom-24px {
  text-align: center;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
}

.h4.is--centered {
  color: var(--royal-blue);
}

.h4.is--centered.is--socialproof {
  margin-bottom: 24px;
  font-weight: 500;
}

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

.schedule__row.margin-bottom-32px {
  width: auto;
}

.howitworks__zigzaglavender {
  z-index: 1;
  width: 160px;
  position: relative;
  top: 75px;
  left: -26px;
}

.text-span-6 {
  background-image: url('../images/underline-mouseblue-scribble.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

.tuitionoptions__card {
  background-color: var(--white);
  border-radius: 18px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 340px;
  height: 100%;
  padding: 64px 40px;
  display: flex;
  box-shadow: 3px 3px 4px #01071c80, 6px 6px 48px #01071c80;
}

.margin-bottom-40px {
  margin-bottom: 40px;
}

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

.div-block-16 {
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  display: flex;
}

.margin-right-12px {
  margin-right: 12px;
}

.tuitionoptions__wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.bluearrow {
  width: 88px;
  position: static;
  top: -100px;
  left: 195px;
}

.bluearrow.is--flipped {
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.arrowwrapper {
  text-align: center;
  justify-content: space-between;
  width: 560px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.arrowwrapper.margin-bottom-16px {
  align-items: flex-start;
  display: none;
}

.accordion__faqs {
  overflow: hidden;
}

.is--iceblueshadow {
  box-shadow: 3px 3px 8px #d4e7f2, 6px 6px 48px #d4e7f2;
}

.socialproof__logo {
  height: 32px;
  display: block;
}

.socialproof__logo.margin-right-24px {
  height: 28px;
}

.socialproof__logo.margin-right-24px.is--smaller {
  height: 24px;
}

.socialproof__logo.margin-right-24px.margin-bottom-32px {
  width: auto;
  margin: 12px;
}

.socialproof__logo.margin-bottom-24px {
  flex: 0 auto;
  align-self: auto;
}

.socialproof__logo.margin-bottom-32px {
  width: auto;
  margin: 12px;
}

.socialproof__logo.margin-bottom-32px.is--kalibrr {
  position: relative;
  top: -3px;
}

.partner_logos-container {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 900px;
  max-width: 1296px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.socialproof__code {
  z-index: 1;
  width: 144px;
  position: relative;
  top: 38px;
  left: -25px;
}

.howitworks__code {
  width: 144px;
  position: relative;
  top: 26px;
  left: 25px;
  transform: rotate(-24deg);
}

.curriculum__waves {
  z-index: 1;
  width: 200px;
  display: block;
  position: relative;
  top: 55px;
  left: -19px;
}

.howitworks__wrapper {
  grid-column-gap: 64px;
  grid-row-gap: 0px;
  grid-template: ". Area"
  / 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 40px;
  display: grid;
}

.howitworks__wrapper.margin-bottom-120px {
  grid-column-gap: 64px;
  margin-top: 0;
  margin-bottom: 120px;
}

.socialproof__code-wrapper {
  position: absolute;
  inset: auto 0% 0% auto;
}

.howitworks__zigzag-wrapper {
  z-index: 10;
  position: absolute;
  inset: auto auto 0% 0%;
}

.div-block-18 {
  z-index: 1;
  position: absolute;
  inset: auto 0% 0% auto;
}

.curriculum__waves-wrapper {
  position: absolute;
  inset: auto 0% 0% auto;
}

.tuitionoptions__dots-wrapper {
  z-index: 1;
  position: absolute;
  inset: auto auto 0% 0%;
}

.schedule__dots-wrapper {
  z-index: 1;
  position: absolute;
  inset: 0% 0% auto auto;
}

.div-block-19 {
  z-index: 3;
  position: absolute;
  inset: 0% 0% auto auto;
}

.piechart__textwrapperright {
  z-index: 1;
  position: absolute;
  inset: 37% 17% auto auto;
}

.piechart__textwrapperleft {
  z-index: 1;
  position: absolute;
  inset: auto auto 30% 13%;
}

.howitworks__text-wrapper {
  max-width: 500px;
}

.static-image, .staticpiechart.margin-bottom-32px {
  display: none;
}

.h5 {
  font-size: 20px;
  line-height: 140%;
}

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

.lottie-animation {
  width: 120px;
  max-width: 120px;
  height: 120px;
  display: none;
}

.curriculum__verticalstack {
  flex-direction: column;
  align-items: center;
  display: none;
}

.curriculum__roundscribble {
  z-index: 1;
  position: absolute;
  inset: auto auto 0% 0%;
}

.image-4 {
  z-index: 1;
  width: 64px;
  position: relative;
  top: 24px;
  left: 25px;
}

.hero__waves {
  z-index: 3;
  width: 176px;
  position: absolute;
  inset: auto -9% -13% auto;
}

.avion-footer {
  padding-top: 40px;
  padding-bottom: 40px;
}

.div-block-21 {
  position: absolute;
  inset: 0% 0% auto auto;
}

.curriculum__code {
  width: 104px;
  position: relative;
  top: -30px;
  left: -25px;
}

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

.socialicon__link {
  margin-right: 12px;
}

.socialicon__link.last {
  margin-right: 0;
}

.tuitionoptions__wrapper-copy {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: start center;
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.terms-and-privacy-policy-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.footer__privacy-policy-link {
  color: #111;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  text-decoration: none;
  display: flex;
}

.text-block__paragraph {
  margin-top: 16px;
  margin-bottom: 40px;
}

.paragraph {
  font-weight: 400;
}

.paragraph.indent {
  margin-left: 40px;
}

.list-item, .list-item-2, .list-item-3, .list-item-4 {
  font-weight: 400;
}

.list {
  margin-left: 120px;
}

.section-header.margin-bottom-120px {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.section-header.margin-bottom-80px {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
  display: flex;
}

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

.social--links {
  margin-top: 16px;
}

.social--link {
  color: var(--mouse-blue);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.curriculum--container {
  background-color: var(--blue-black);
  color: var(--white);
  text-align: center;
  border-radius: 24px;
  padding: 24px;
  display: flex;
}

.heading {
  font-size: 24px;
}

.heading.curriculum--heading {
  margin-top: 16px;
  margin-bottom: 16px;
  padding-left: 16px;
  font-size: 16px;
  font-weight: 700;
}

.curriculum-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 24px;
}

.curriculum-grid.grid--react {
  grid-template-columns: 1fr 1fr;
}

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

.social--icon {
  margin-top: 0;
  margin-right: 0;
}

.social-links--container {
  margin-top: 24px;
}

.link-block {
  margin-left: 12px;
  margin-right: 12px;
  padding-left: 0;
  padding-right: 0;
}

.text-span-11 {
  color: var(--royal-blue);
  font-weight: 700;
}

.how-it-works.list-item {
  color: var(--white);
  margin-top: 16px;
}

.career--step {
  border: 1px solid var(--gray);
  border-radius: 32px;
  justify-content: center;
  align-items: center;
  width: 52px;
  max-width: 56px;
  height: 52px;
  max-height: 56px;
  margin-right: 24px;
  font-size: 18px;
  display: flex;
}

.text-block {
  color: var(--mouse-blue);
}

.div-block-25 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.career-partners {
  width: 520px;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
}

.skills-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  place-content: stretch;
  place-items: center;
  max-width: 1024px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.skill {
  color: var(--white);
  margin-bottom: 0;
  margin-left: 8px;
  font-weight: 400;
}

.recruitment-skill {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.top-engineers-description {
  max-width: 960px;
  color: var(--white);
  text-align: center;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}

.recruit-skills {
  margin-bottom: 0;
}

.grid-2 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 960px;
  margin-top: 40px;
}

.engineer-benefits {
  justify-content: center;
  display: flex;
}

.hiw-step {
  margin-bottom: 40px;
  padding-bottom: 0;
  display: flex;
}

.mc__hero--subheading {
  color: var(--polo-blue);
}

.is--night {
  color: var(--gray);
}

.is--night.margin-bottom-72px {
  text-align: center;
}

.is--night.margin-bottom-72px.is--centered {
  font-weight: 400;
  line-height: 160%;
}

.is--night.is--centered {
  color: var(--night);
}

.is--royal-blue {
  color: var(--royal-blue);
}

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

.payment-details {
  grid-template-columns: 1fr 1fr 1fr;
}

.payment-details.margin-top-32px {
  grid-template-columns: 1fr;
  max-width: 800px;
}

.payment-description {
  color: var(--polo-blue);
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}

.payment-icon {
  max-width: 80px;
}

.bukas-logo {
  max-height: 40px;
}

.link-text {
  color: var(--cerulean);
  text-decoration: none;
}

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

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

.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;
}

.regular-heading {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1em;
}

.line-4 {
  background-color: #111;
  border-radius: 20%;
  width: 25px;
  height: 3px;
  position: absolute;
  top: 34px;
}

.line-4.whiter {
  background-color: #fff;
}

.medium {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1em;
}

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

.content-container {
  z-index: 1;
  flex: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.content-container.flex {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

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

.navigation {
  background-color: #083232;
  justify-content: center;
  align-items: center;
  min-height: 90px;
  padding-left: 2%;
  padding-right: 2%;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navigation.no-color {
  background-color: #fff;
  padding-left: 4%;
  padding-right: 4%;
}

.brand {
  order: -1;
}

.brand.left-margin {
  margin-right: 15px;
}

.hero-title {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 63px;
  line-height: 70px;
}

.hero-title.color-white {
  color: #fff;
}

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

.add-scribble-below {
  background-image: url('../images/scribbles-4.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 1px;
  display: inline-block;
}

.button-wrapper {
  margin-left: 25px;
}

.caption-2 {
  color: #ffffff8c;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.caption-2.margined {
  color: #555;
  margin-top: 10px;
}

.type-column {
  background-color: #e4edef;
  border-radius: 5px;
  width: 33.3333%;
  margin-right: 20px;
  padding: 10px;
  display: flex;
}

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

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

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

.line-5 {
  background-color: #111;
  border-radius: 20%;
  width: 25px;
  height: 3px;
  position: absolute;
  top: 20px;
}

.line-5.whiter {
  background-color: #fff;
}

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

.heading-4 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1em;
}

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

.nav-link {
  color: var(--night);
  padding-right: 10px;
  font-size: 16px;
  line-height: 17px;
  transition: opacity .2s;
}

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

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

.nav-link.dropdown {
  padding-right: 30px;
  font-weight: 700;
}

.nav-link.dropdown:hover {
  color: var(--royal-blue);
}

.nav-link.white {
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

.nav-link.white:hover {
  color: #ffffffd1;
}

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

.button {
  color: #fff;
  background-color: #be4137;
  border-radius: 5px;
  padding: 20px 28px;
  font-size: 16px;
  font-weight: 700;
}

.button:hover {
  background-color: #439e86;
}

.button.orange {
  background-color: #f64d52;
}

.button.orange:hover {
  background-color: #f76a6e;
}

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

.light-block-second {
  background-color: #e4edef;
  width: 100%;
  padding: 20px 20px 40px 45px;
}

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

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

.nav-menu {
  order: 1;
  align-items: center;
  display: flex;
}

.line-6 {
  background-color: #111;
  border-radius: 20%;
  width: 25px;
  height: 3px;
  position: absolute;
  top: 27px;
}

.line-6.whiter {
  background-color: #fff;
}

.menu-button-2 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 50px;
  padding: 0;
}

.color-block {
  background-color: #083232;
  border-radius: 4px;
  width: 100%;
  height: 85px;
  padding: 10px;
  display: flex;
}

.color-block.secondary {
  background-color: #f64d52;
}

.color-block.primary-lighy {
  background-color: #2e856e;
}

.margin-xhuge {
  margin: 8rem;
}

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

.icon-height-small {
  height: 1rem;
}

.background-color-dark-blue {
  background-color: var(--midnight-blue);
  color: #f5f5f5;
  position: relative;
}

.heading-style-h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.form_message-error {
  margin-top: .75rem;
  padding: .75rem;
}

.align-center-2 {
  margin-left: auto;
  margin-right: auto;
}

.text-size-small {
  font-size: .875rem;
}

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

.margin-0 {
  margin: 0;
}

.text-weight-xbold {
  font-weight: 700;
}

.page-wrapper.curriculum {
  display: none;
}

.fs-styleguide_header-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

.text-weight-normal {
  font-weight: 400;
}

.padding-0 {
  padding: 0;
}

.text-size-tiny {
  font-size: .75rem;
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

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

.icon-1x1-small {
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
}

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

.text-size-large {
  font-size: 1.5rem;
  line-height: 1.4;
}

.fs-styleguide_item-header {
  border-bottom: 1px solid #0000001a;
  width: 100%;
  padding-bottom: 2rem;
}

.overflow-visible {
  overflow: visible;
}

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

.fs-styleguide_background {
  border: 1px solid #0000001a;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.form_checkbox-icon {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-checked {
  background-size: 90%;
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-focus {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.fs-styleguide_2-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.fs-styleguide_2-col.is-align-start {
  align-items: start;
}

.icon-height-large {
  height: 3rem;
}

.fs-styleguide_classes {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.fs-styleguide_4-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.fs-styleguide_background-space {
  width: 1px;
  height: 1px;
  margin: 5rem;
}

.padding-custom1 {
  padding: 1.5rem;
}

.fs-styleguide_section-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid #000;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-bottom: 3rem;
  line-height: 1.4;
  display: grid;
}

.margin-small {
  margin: 1rem;
}

.text-size-regular {
  font-size: 1rem;
  line-height: 1.5;
}

.padding-xsmall {
  padding: .5rem;
}

.padding-xhuge {
  padding: 8rem;
}

.icon-height-medium {
  height: 2rem;
}

.form_radio-icon {
  width: .875rem;
  height: .875rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.form_radio-icon.w--redirected-checked {
  border-width: .25rem;
  width: .875rem;
  height: .875rem;
}

.form_radio-icon.w--redirected-focus {
  width: .875rem;
  height: .875rem;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.padding-custom3 {
  padding: 3.5rem;
}

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

.container-large.max-width-large.cta {
  max-width: 40rem;
}

.margin-xxhuge {
  margin: 12rem;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 12rem;
}

.margin-huge {
  margin: 6rem;
}

.fs-styleguide_section {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.fs-styleguide_section.is-vertical {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-columns: 1fr;
}

.fs-styleguide_heading-large {
  font-size: 6rem;
}

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

.fs-styleguide_item {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  border-bottom: 1px solid #0000001a;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 3rem;
  display: grid;
  position: relative;
}

.fs-styleguide_item.is-stretch {
  justify-items: stretch;
}

.margin-medium {
  margin: 2rem;
}

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

.fs-styleguide_spacing {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-image: linear-gradient(to top, #0073e61a, #fff0);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start stretch;
  display: grid;
  position: relative;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-horizontal {
  margin-top: 0;
  margin-bottom: 0;
}

.text-weight-semibold {
  font-weight: 500;
}

.padding-small {
  padding: 1rem;
}

.text-color-black {
  color: var(--night);
}

.text-color-grey {
  color: gray;
}

.heading-style-h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

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

.padding-bottom.padding-medium {
  padding-top: 0;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

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

.text-align-center.text-color-ice-blue {
  color: var(--alice-blue);
}

.text-style-link {
  border-bottom: 2px solid var(--cerulean);
  color: var(--cerulean);
  font-weight: 500;
  text-decoration: none;
  display: none;
}

.margin-xsmall {
  margin: .5rem;
}

.heading-style-h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.fs-styleguide_label {
  color: #fff;
  background-color: #0073e6;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .75rem;
  font-weight: 600;
  line-height: 1.4;
  display: flex;
}

.fs-styleguide_label.is-tag {
  background-color: #be4aa5;
}

.fs-styleguide_label.is-hex {
  color: #000;
  background-color: #f5f5f5;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.text-style-quote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.text-style-italic {
  font-style: italic;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

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

.fs-styleguide_3-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  display: grid;
}

.fs-styleguide_3-col.is-align-start {
  align-items: start;
}

.z-index-1 {
  z-index: 1;
  position: relative;
}

.text-size-medium {
  font-size: 1.125rem;
  line-height: 1.4;
}

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

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

.overflow-hidden {
  overflow: hidden;
}

.overflow-scroll {
  overflow: scroll;
}

.max-width-xsmall {
  width: 100%;
  max-width: 16rem;
}

.margin-custom2 {
  margin: 2.5rem;
}

.margin-custom3 {
  margin: 3.5rem;
}

.overflow-auto {
  overflow: auto;
}

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

.margin-xxsmall {
  margin: .25rem;
}

.padding-custom2 {
  padding: 2.5rem;
}

.icon-1x1-medium {
  width: 2rem;
  height: 2rem;
}

.icon-1x1-large {
  width: 3rem;
  height: 3rem;
}

.icon-1x1-large.author {
  object-fit: cover;
  border-radius: 20px;
}

.padding-xlarge {
  padding: 4rem;
}

.fs-styleguide_item-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.max-width-medium {
  width: 100%;
  max-width: 32rem;
}

.form_component {
  margin-bottom: 0;
}

.fs-styleguide_row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.form_input {
  background-color: #0000;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
}

.form_input.is-text-area {
  min-height: 8rem;
  padding-top: .75rem;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.margin-tiny {
  margin: .125rem;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.padding-global.hiw {
  padding-left: 0;
}

.padding-large {
  padding: 3rem;
}

.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

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

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

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

.fs-styleguide_version {
  z-index: 5;
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

.text-weight-light {
  font-weight: 400;
}

.padding-horizontal {
  padding-top: 0;
  padding-bottom: 0;
}

.z-index-2 {
  z-index: 2;
  position: relative;
}

.form_checkbox {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.padding-xxsmall {
  padding: .25rem;
}

.text-style-nowrap {
  white-space: nowrap;
}

.fs-styleguide_heading-medium {
  font-size: 4rem;
}

.max-width-small {
  width: 100%;
  max-width: 20rem;
}

.padding-xxhuge {
  padding: 12rem;
}

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

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

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

.text-style-muted {
  opacity: .6;
}

.heading-style-h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.padding-medium {
  padding: 2rem;
}

.padding-section-large {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.padding-section-large.hiw {
  padding-top: 0;
  padding-bottom: 0;
}

.fs-styleguide_header {
  background-color: #0000000d;
}

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

.fs-styleguide_1-col {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.heading-style-h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.form_message-success {
  padding: 1.25rem;
}

.fs-styleguide_empty-box {
  z-index: -1;
  background-color: #0073e61a;
  border: 1px dashed #0073e6;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.padding-huge {
  padding: 6rem;
}

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

.fs-styleguide_color.is-golden-yellow {
  background-color: var(--golden-yellow);
}

.fs-styleguide_color.is-red {
  background-color: var(--lipstick);
}

.fs-styleguide_color.is-cerulean {
  background-color: var(--cerulean);
}

.fs-styleguide_color.is-cloud {
  background-color: #d0e5ff;
}

.fs-styleguide_color.is-purple {
  background-color: var(--plum);
}

.button-2 {
  color: #fff;
  text-align: center;
  background-color: #000;
  padding: .75rem 1.5rem;
  font-weight: 600;
}

.button-2.is-secondary {
  color: #000;
  background-color: #0000;
  border: 2px solid #000;
  border-bottom-width: .125rem;
}

.button-2.is-text {
  color: #000;
  background-color: #0000;
  border: 2px solid #0000;
}

.button-2.is-icon {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.button-2.is-large {
  padding: 1rem 2rem;
}

.button-2.is-small {
  padding: .5rem 1.25rem;
}

.margin-custom1 {
  margin: 1.5rem;
}

.form_radio {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.margin-large {
  margin: 3rem;
}

.padding-tiny {
  padding: .125rem;
}

.fs-styleguide_spacing-all {
  display: none;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.heading-style-h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.hide {
  display: none;
}

.text-style-allcaps {
  text-transform: uppercase;
}

.background-color-ice-blue {
  background-color: var(--ice);
}

.text-color-serenity {
  color: #b5c5ff;
}

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

.text-color-blue-grey {
  color: var(--polo-blue);
}

.section_tuition-header {
  overflow: hidden;
}

.padding-header {
  padding-top: 8.5rem;
  padding-bottom: 7.5rem;
}

.hero-header_component {
  grid-template-rows: auto;
  place-items: center stretch;
}

.hero-header_image-wrapper {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.hero-header_image {
  z-index: 2;
  border-radius: 18px;
  position: relative;
}

.hero_blue_dots {
  z-index: auto;
  width: 192px;
  height: auto;
  position: absolute;
  inset: 240px 310px auto auto;
}

.hero_blue_waves {
  z-index: 3;
  width: 176px;
  position: absolute;
  inset: auto -16% 8% auto;
}

.section_tuition-options.section-style-dark {
  background-color: var(--midnight-blue);
}

.payment-options_component {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  justify-content: center;
  justify-items: center;
}

.tuition_options-card {
  background-color: var(--white);
  border-radius: 18px;
  align-items: center;
  width: 100%;
  max-width: 1020px;
  height: 100%;
}

.tuition_content-wrapper {
  justify-content: center;
  align-items: stretch;
  margin-top: 0;
  padding: 2rem 1.5rem;
  display: flex;
}

.tuition_options-content {
  grid-template-rows: auto;
  grid-template-columns: .25fr 2fr;
}

.tuition_three_grid-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: .25fr .75fr 1.25fr;
  place-items: center start;
}

.tuition_yellow-tag {
  background-color: var(--golden-yellow);
  border-radius: 8px;
  padding: .5rem;
}

.tuition_two_grid-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1.25fr;
  place-items: center start;
}

.section_tuition-why-us {
  position: relative;
}

.tuition-2grid_component {
  grid-template-rows: auto;
  align-items: center;
}

.benefits_item {
  background-color: var(--white);
  border-radius: 18px;
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding: 32px;
  position: relative;
  box-shadow: 3px 3px 8px #d4e7f2, 6px 6px 48px #d4e7f2;
}

.benefits_item.is--bottom {
  max-width: 392px;
  height: auto;
  margin-top: 0;
  position: relative;
  top: 64px;
}

.benefits_item.hide {
  display: none;
}

.benefits_icon-image {
  width: 100%;
  max-width: 32%;
}

.section_global-cta.section-style-dark {
  background-color: var(--midnight-blue);
  position: relative;
  overflow: hidden;
}

.nav__button-dark-enroll {
  background-color: var(--lipstick);
  color: var(--white);
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: block;
}

.nav__button-dark-enroll:hover {
  background-color: #db2c2c;
  box-shadow: 6px 6px 48px #ffe3e4, 3px 3px 4px #ffe3e4;
}

.nav__button-dark-enroll.orange {
  background-color: #f64d52;
}

.nav__button-dark-enroll.orange:hover {
  background-color: #f76a6e;
}

.nav__button-dark-enroll.subscribe {
  height: 55px;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}

.nav__button-dark-enroll.subscribe.orange:hover {
  background-color: #f8696e;
}

.tuition_pricing-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

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

.background_code-wrapper {
  position: absolute;
  inset: auto auto -229% 0%;
}

.tuition_code-asset {
  z-index: 1;
  width: 144px;
  position: relative;
}

.section_program-how-it-works.section-style-dark {
  background-color: var(--midnight-blue);
  position: relative;
}

.section_program-header {
  overflow: hidden;
}

.section_program-benefits.section-style-dark {
  background-color: var(--midnight-blue);
  position: relative;
  overflow: hidden;
}

.hiw-component {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  place-items: center stretch;
}

.text-color-red {
  color: var(--lipstick);
}

.talent_image-wrapper {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.job_offer-graphic {
  z-index: 3;
  width: 10rem;
  height: 10rem;
  position: absolute;
  inset: -12% -6% auto auto;
}

.benefits_image {
  z-index: 2;
  position: relative;
}

.avion_logo-card {
  z-index: 3;
  width: 8rem;
  height: 8rem;
  position: absolute;
  inset: 20% auto 0% -4%;
}

.section_program-curriculum.section-style-dark {
  background-color: var(--midnight-blue);
  position: relative;
}

.curriculum__container {
  background-color: var(--white);
  border-radius: 18px;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  height: auto;
  padding: 24px;
  display: block;
}

.curriculum__container.is--maxwidth696px {
  width: 696px;
  max-width: 696px;
  margin-left: auto;
  margin-right: auto;
}

.curriculum__container.is--maxwidth696px.margin-bottom-16px.is--iceblueshadow {
  max-width: 993px;
}

.accordion-dropdown {
  border: 2px solid var(--serenity);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 40px;
  max-width: 40px;
  height: 40px;
  max-height: 40px;
  display: flex;
  position: static;
  inset: auto 32px auto auto;
}

.accordion_heading {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  align-items: center;
  display: flex;
}

.curriculum-card-component {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
}

.curriculum_image {
  z-index: 2;
  position: relative;
}

.curriculum_image-wrapper {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.curriculum-component {
  grid-template-rows: auto;
  align-items: center;
}

.section_partners-header {
  position: relative;
}

.partner_talent-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.avion_logo-small-card {
  z-index: 3;
  width: 6rem;
  max-width: 100%;
  height: 6rem;
  position: absolute;
  left: -40px;
}

.partner-talent-component {
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

.section_partner-benefits {
  position: relative;
}

.section_partner-benefits.section-style-dark, .section_partner-cta.section-style-dark {
  background-color: var(--midnight-blue);
}

.image-6 {
  z-index: auto;
  width: 192px;
  height: auto;
  position: absolute;
  top: 360px;
  left: 310px;
}

.partners_rose-dots {
  z-index: auto;
  width: 192px;
  height: auto;
  position: absolute;
  top: 68%;
  left: 70%;
}

.partner_cta-card {
  background-color: var(--white);
  border-radius: 8px;
  width: 100%;
  max-width: 100%;
  padding: 32px;
}

.section_partner-skills {
  position: relative;
}

.recruitment_skill-item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.checkmark-image {
  width: 24px;
  height: 24px;
}

.skills-component {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  place-content: center stretch;
  place-items: center stretch;
  max-width: 1024px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.recruit-skills-col {
  margin-bottom: 0;
}

.section_partner-talent.section-style-dark {
  background-color: var(--midnight-blue);
}

.talent-component {
  grid-template-rows: auto;
  place-items: center stretch;
}

.benefits_image-wrapper {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.talent_image {
  z-index: 2;
  width: 100%;
  position: relative;
}

.partner-hiw-component {
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

.section_partner-hiw.section-style-dark {
  background-color: var(--midnight-blue);
  position: relative;
}

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

.hiw_card-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--white);
  border-radius: 8px;
  width: 100%;
  max-width: 100%;
  padding: 24px;
  display: flex;
}

.hiw_card-item.is-golden-yellow {
  background-color: var(--golden-yellow);
}

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

.benefits-component {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.partner_benefits-item {
  background-color: var(--white);
  border-radius: 18px;
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding: 32px;
  position: relative;
  box-shadow: 3px 3px 8px #d4e7f2, 6px 6px 48px #d4e7f2;
}

.partner_benefits-item.is--bottom {
  max-width: 392px;
  height: auto;
  margin-top: 0;
  position: relative;
  top: 64px;
}

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

.icon-1x1-xlarge {
  width: 4rem;
  height: 4rem;
}

.icon-1x1-huge {
  width: 5rem;
  height: 5rem;
}

.program-hiw-component {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  place-items: stretch stretch;
}

.hiw_coding-image {
  width: 48vw;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.hiw-program-component {
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

.program-list-item {
  padding-bottom: 8px;
}

.program-list {
  padding-left: 20px;
}

.html_logo-card {
  z-index: 2;
  width: 8rem;
  height: 8rem;
  position: absolute;
  top: 20%;
  right: -15%;
}

.ruby_logo-card {
  z-index: 2;
  width: 8rem;
  height: 8rem;
  position: absolute;
  top: 68%;
  right: -15%;
}

.react_logo-card {
  z-index: 2;
  width: 8rem;
  height: 8rem;
  position: absolute;
  top: 60%;
  right: 85%;
}

.hiw-dots {
  z-index: auto;
  width: 12rem;
  position: absolute;
  inset: auto -16% -12% auto;
}

.benefits-edu-component {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  place-items: center stretch;
}

.edu_image-wrapper {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.benefits_edu-image {
  z-index: 2;
  position: relative;
}

.program-curriculum-roundscribble {
  z-index: 1;
  position: absolute;
  inset: -5% auto auto 0%;
}

.program_code-wrapper {
  position: absolute;
  inset: auto 0% 0% auto;
}

.partner_code-graphic {
  z-index: 1;
  width: 120px;
  position: relative;
  top: 20px;
  left: -25px;
}

.benefits_code-wrapper {
  position: absolute;
  inset: -8% auto auto 5%;
}

.section_tuition-testimonials {
  position: relative;
}

.tuition_waves-wrapper {
  position: absolute;
  inset: auto 0% 0% auto;
}

.tuition_waves {
  z-index: 1;
  width: 140px;
  display: block;
  position: relative;
  top: 55px;
  left: -19px;
}

.underline-red-scribble-highlight {
  background-image: url('../images/pink-line.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

.is--yellow {
  background-color: var(--yellow);
}

.is--dark-rose {
  background-color: var(--light-pink);
}

.is--purple {
  background-color: var(--plum);
}

.program_waves-wrapper {
  position: absolute;
  inset: auto 0% 0% auto;
}

.section_student-testimonials {
  position: relative;
}

.icon-1x1-xxlarge {
  width: 6rem;
  height: 6rem;
}

.partner_waves-wrapper {
  position: absolute;
  top: -10%;
  left: 5%;
}

.partners_waves {
  z-index: 1;
  width: 144px;
  position: relative;
  top: 38px;
  left: -25px;
}

.partner_code-wrapper {
  position: absolute;
  inset: auto 0% 0% auto;
}

.round-ring-graphic {
  z-index: 1;
  width: 80px;
  position: relative;
  top: 38px;
  left: -25px;
}

.round-ring-wrapper {
  position: absolute;
  inset: auto 0% 0% auto;
}

.text-color-ice-blue {
  color: var(--alice-blue);
}

.cta_bubble-01 {
  perspective: 1000px;
  width: 5rem;
  height: 5rem;
  position: absolute;
  inset: 6% auto auto 10%;
}

.cta_bubble-02 {
  width: 4rem;
  height: 4rem;
  position: absolute;
  inset: 25% auto auto 18%;
}

.padding-section-huge {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.cta_bubble-03 {
  width: 4rem;
  height: 4rem;
  position: absolute;
  inset: 65% auto auto 5%;
}

.cta_red_dot {
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  inset: 40% auto auto 5%;
}

.cta_blue_dot {
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  inset: 75% auto auto 28%;
}

.cta_bubble-04 {
  width: 4rem;
  height: 4rem;
  position: absolute;
  inset: 75% auto auto 62%;
}

.cta_bubble-05 {
  width: 5rem;
  height: 5rem;
  position: absolute;
  top: auto;
  bottom: 25%;
  right: 15%;
}

.cta_yellow_dot {
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  bottom: 10%;
  right: 15%;
}

.cta_bubble-06 {
  width: 4rem;
  height: 4rem;
  position: absolute;
  inset: 18% auto auto 68%;
}

.cta_bubble-07 {
  width: 5rem;
  height: 5rem;
  position: absolute;
  inset: auto 15% 50% auto;
}

.cta_purple_dot {
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  bottom: 80%;
  right: 15%;
}

.hero_partner-blue-dots {
  width: 192px;
  position: absolute;
  inset: auto auto -3% -7%;
}

.section_curriculum-testimonials, .section_curriculum-schedule {
  position: relative;
}

.benefits_list-item {
  padding-bottom: 8px;
}

.cod_bar-graphic {
  z-index: 2;
  position: absolute;
  inset: 10% -16% 0% auto;
}

.image-sample {
  background-image: url('../images/girl-excited.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

.section_curriculum-benefits {
  position: relative;
}

.section_curriculum-list.section-style-dark {
  background-color: var(--midnight-blue);
  position: relative;
}

.professor_curriculum {
  z-index: 3;
  width: 24%;
  position: absolute;
  inset: -10% -5% auto auto;
}

.curriculum_hero-dots {
  width: 192px;
  height: auto;
  position: absolute;
  inset: auto auto -4% -6%;
}

.curriculum_hero-code {
  z-index: 2;
  width: 95px;
  height: auto;
  position: absolute;
  inset: auto -3% 10% auto;
}

.section_html-overview.section-style-dark {
  background-color: var(--midnight-blue);
  position: relative;
}

.section_html-learn {
  position: relative;
}

.html_component, .html-info-component {
  grid-template-rows: auto;
  align-items: center;
}

.course-speech-bubble, .css-speech-bubble {
  width: 20%;
}

.course_overview-component {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
}

.boy-working-image {
  object-fit: cover;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  width: 100%;
  height: 30rem;
}

.html_content-wrapper {
  background-color: var(--white);
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  height: 30rem;
  padding: 2rem;
}

.section_html-courses {
  position: relative;
}

.section_html-courses.section-style-contrast {
  background-color: var(--midnight-blue);
  position: relative;
}

.background-color-cloud {
  background-color: var(--alice-blue);
  height: 25vh;
  position: absolute;
  inset: 0% 0% auto;
}

.courses_list-component {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.course_item-link {
  background-color: var(--white);
  border-radius: 16px;
  height: 100%;
  transition: transform .35s;
  overflow: hidden;
}

.course_item-link:hover {
  transform: translate(0, -6px);
}

.course_image-wrapper {
  margin-bottom: 0;
  position: relative;
}

.course_content-wrapper {
  padding: .25rem 1rem;
}

.course_waves-wrapper {
  position: absolute;
  top: -10%;
  left: 5%;
}

.html_image-wrapper {
  height: 30rem;
  min-height: 100%;
}

.js-content-wrapper {
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
}

.section_js-overview.section-style-dark {
  background-color: var(--midnight-blue);
  position: relative;
}

.section_js-learn, .section_js-courses {
  position: relative;
}

.section_js-courses.section-style-contrast {
  background-color: var(--midnight-blue);
  position: relative;
}

.js_skill-component {
  grid-template-rows: auto auto auto;
}

.course_skill-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--dark-slate-blue);
  border-radius: 8px;
  align-items: center;
  padding: 1rem .5rem;
  display: flex;
}

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

.section_js-cta.section-style-dark, .section_html-cta.section-style-dark {
  background-color: var(--midnight-blue);
  position: relative;
  overflow: hidden;
}

.text-color-orange {
  color: #fc6f33;
}

.react_skill-component {
  grid-template-rows: auto auto;
}

.react-content-wrapper {
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  align-items: center;
}

.section_react-overview.section-style-dark {
  background-color: var(--midnight-blue);
  position: relative;
}

.text-color-sea {
  color: #00d8ff;
}

.ruby-info-component {
  grid-template-rows: auto;
  align-items: center;
}

.section_ruby-overview.section-style-dark {
  background-color: var(--midnight-blue);
  position: relative;
}

.ruby_component {
  grid-template-rows: auto;
  align-items: center;
}

.section_ruby-learn, .section_ruby-courses {
  position: relative;
}

.section_ruby-courses.section-style-contrast {
  background-color: var(--midnight-blue);
  position: relative;
}

.section_ruby-cta.section-style-dark {
  background-color: var(--midnight-blue);
  position: relative;
  overflow: hidden;
}

.react-info-component {
  grid-template-rows: auto;
  align-items: center;
}

.section_react-learn {
  position: relative;
}

.react_component {
  align-items: center;
}

.section_react-courses {
  position: relative;
}

.section_react-courses.section-style-contrast, .section_react-cta.section-style-dark {
  background-color: var(--midnight-blue);
  position: relative;
}

.curriculum_hero_dots {
  width: 192px;
  position: absolute;
  inset: auto auto -15% -10%;
}

.curriculum_list-component {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

.curriculum_tag {
  background-color: var(--white);
  border-radius: 8px;
  padding: 6px 10px;
  position: absolute;
  inset: 6% auto auto 4%;
}

.curriculum_content-wrapper {
  padding: .25rem 1rem 1.5rem;
}

.curriculum_link-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

.tuition_grid-component {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.tuition_code-graphic, .curriculum_code-graphic {
  z-index: 1;
  width: 120px;
  position: relative;
  top: 20px;
  left: -25px;
}

.curriculum_waves {
  z-index: 1;
  width: 144px;
  position: relative;
  top: 38px;
  left: -25px;
}

.html_purple_dot {
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  bottom: 10%;
  right: 5%;
}

.course_bubble-01 {
  perspective: 1000px;
  width: 5rem;
  height: 5rem;
  position: absolute;
  inset: 15% auto auto 10%;
}

.html_bubble-02 {
  width: 4rem;
  height: 4rem;
  position: absolute;
  inset: 65% auto auto 5%;
}

.html_red_dot {
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  inset: 40% auto auto 5%;
}

.html_blue_dot {
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  bottom: 80%;
  right: 15%;
}

.html_bubble-03 {
  width: 5rem;
  height: 5rem;
  position: absolute;
  top: auto;
  bottom: 25%;
  right: 15%;
}

.html_bubble-04 {
  width: 4rem;
  height: 4rem;
  position: absolute;
  inset: auto 15% 50% auto;
}

.html_yellow_dot {
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  inset: 80% auto 0% 25%;
}

.curriculum_hero-header_image {
  z-index: 2;
  position: relative;
}

.blog_header-component {
  grid-template-rows: auto;
  grid-template-columns: .75fr 1.5fr .75fr;
  align-items: center;
}

.blog_featured-content {
  grid-template-rows: auto;
  align-items: center;
}

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

.blog_category-tag {
  background-color: var(--lipstick);
  border-radius: 20px;
  padding: 8px 16px;
  display: inline-block;
}

.blog_image-wrapper {
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.blog_content-wrapper {
  margin-bottom: 32px;
  padding-top: 32px;
}

.blog_image-thumbnail {
  object-fit: cover;
  border-radius: 18px;
  width: 100%;
  height: 32vh;
  transition: filter .2s, transform .2s;
  position: relative;
}

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

.blog_featured-item {
  align-items: center;
}

.blog_featured-image {
  border-radius: 18px;
  width: 100%;
  transition: filter .2s, transform .2s;
  position: relative;
}

.blog_featured-image:hover {
  transform: scale(1.1);
}

.grid-3 {
  grid-template-rows: auto;
}

.collection-item {
  padding-left: 0;
  padding-right: 16px;
}

.blog-pagination {
  align-items: center;
  display: flex;
}

.blog-pagination:hover {
  background-color: #0000;
}

.blog-pagination.is--centered {
  justify-content: center;
}

.padding_blog-header {
  padding-top: 12rem;
  padding-bottom: 6.5rem;
}

.blog_featured_lightbox {
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.blog_featured_lightbox:hover {
  border-radius: 18px;
}

.paginate-button {
  background-color: var(--lipstick);
  border-radius: 12px;
  padding: 16px 24px;
}

.paginate-button:hover {
  background-color: #db2c2c;
  box-shadow: 6px 6px 48px #ffe3e4, 3px 3px 4px #ffe3e4;
}

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

.blog_pagination-wrapper {
  padding-top: 4rem;
}

.section_post-header {
  position: relative;
}

.blog_post-header {
  height: 80vh;
  position: absolute;
  inset: 0% 0% auto;
}

.blog_post-header.background-color-cloud {
  height: 80vh;
}

.blog_post-main-image {
  object-fit: cover;
  border-radius: 18px;
  width: 100%;
  height: 80vh;
}

.post_header-wrapper {
  position: relative;
}

.post_header-meta {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.post_date-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

.author-details {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
}

.post_rich-text-wrapper img {
  border-radius: 18px;
}

.blog_post-divider {
  background-color: var(--gray);
  opacity: .65;
  width: 100%;
  height: 1px;
  margin-top: 2rem;
}

.blog_post-divider.blog-single {
  background-color: #e1e1e1;
  margin-top: 50px;
}

.hiw_number {
  border: 2px solid var(--serenity);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  display: flex;
  position: relative;
}

.section_home-testimonials {
  position: relative;
}

.post_author_image {
  border-radius: 40px;
  width: 3rem;
  height: 3rem;
}

.nav-container {
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.nav-container.grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr .25fr;
  grid-auto-columns: 1fr;
  width: auto;
  max-width: 1200px;
  display: grid;
}

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

.nav_menu-link {
  color: var(--night);
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 20px 30px 20px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 17px;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.nav_menu-link:hover, .nav_menu-link.w--current {
  color: var(--royal-blue);
}

.nav_menu-link.dropdown {
  padding-right: 30px;
}

.nav_menu-link.white {
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

.nav_menu-link.white:hover {
  color: #ffffffd1;
}

.nav_menu-link.last {
  margin-right: 0;
}

.nav_container-wrapper {
  z-index: 1;
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-self: center;
  align-items: center;
  width: auto;
  max-width: 1200px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  position: relative;
}

.nav_container-wrapper.flex {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav_container-wrapper.minus {
  margin-top: -103px;
}

.link {
  font-weight: 700;
}

@media screen and (min-width: 1280px) {
  body {
    font-size: 1rem;
    line-height: 1.2;
  }

  h1 {
    font-size: 3.5rem;
    line-height: 1.1;
  }

  .container, .navbar.white {
    padding-left: 6%;
    padding-right: 6%;
  }

  .section-description {
    font-size: 18px;
  }

  .section-description.is--mouseblue.is--width350px {
    width: 350px;
  }

  .section-description.is--mouseblue.margin-top-16px {
    width: 560px;
  }

  .section-description.is--medium.is--night, .section-description.margin-bottom-24px {
    font-size: 18px;
  }

  .h3 {
    font-size: 32px;
  }

  .hero__dots {
    inset: auto auto -11% -9%;
  }

  .div-block-6 {
    grid-row-gap: 240px;
    grid-template-columns: 1fr;
  }

  .howitworks__applyspeechbubble {
    width: 360px;
    top: 62%;
    left: -13%;
  }

  .howitworks__honespeechbubble.is--purple {
    width: 360px;
    top: -24%;
  }

  .howitworks__honespeechbubble.is--pink {
    width: 360px;
    left: 45%;
  }

  .howitworks__honespeechbubble.is--blue {
    width: 360px;
    top: 72%;
    left: -13%;
  }

  .howitworks__logo.is--skilledd {
    left: -2%;
  }

  .howitworks__logo.is--filta {
    left: 83%;
  }

  .howitworks__logo.is--pulley {
    top: 3%;
    left: 74%;
  }

  .howitworks__logo.is--paymongo {
    left: 3%;
  }

  .howitworks__logo.is--mashupgarage {
    top: 20%;
    left: 38%;
  }

  .howitworks__logo.is--xpanse {
    top: -4%;
    left: 46%;
  }

  .howitworks__logo.is--canva {
    left: 84%;
  }

  .howitworks__logo.is-lawadvisor {
    left: 55%;
  }

  .howitworks__logo.is--marti {
    left: 28%;
  }

  .howitworks__logo.is--xendit {
    top: 5%;
    left: 16%;
  }

  .howitworks__logo.is--pickaroo {
    left: 15%;
  }

  .accordion__lessontitle {
    width: 376px;
  }

  .accordion__container.is--maxwidth696px.margin-bottom-16px.is--iceblueshadow {
    width: 993px;
  }

  .accordion__container.is--maxwidth696px.is--iceblueshadow {
    width: 993px;
    max-width: 993px;
  }

  .partner_logos-container {
    width: 900px;
  }

  .howitworks__wrapper.margin-bottom-120px {
    margin-top: 120px;
  }

  .piechart__textwrapperright {
    right: 22%;
  }

  .piechart__textwrapperleft {
    left: 15%;
  }

  .howitworks__text-wrapper {
    width: auto;
  }

  .h5 {
    width: auto;
    max-width: 800px;
  }

  .how-it-works.list-item {
    width: 560px;
    margin-left: -16px;
  }

  .hero_blue_dots {
    inset: auto auto -11% -9%;
  }

  .tuition-2grid_component {
    grid-template-rows: auto;
  }

  .curriculum__container.is--maxwidth696px.margin-bottom-16px.is--iceblueshadow {
    width: 993px;
  }

  .curriculum__container.is--maxwidth696px.is--iceblueshadow {
    width: 993px;
    max-width: 993px;
  }

  .partners_rose-dots {
    top: 76%;
    left: 80%;
  }

  .cta_bubble-01 {
    width: 6rem;
    height: 6rem;
    left: 12%;
  }

  .cta_bubble-02 {
    width: 5rem;
    height: 5rem;
    left: 22%;
  }

  .cta_bubble-03 {
    width: 5rem;
    height: 5rem;
    left: 14%;
  }

  .cta_red_dot {
    left: 15%;
  }

  .cta_blue_dot {
    left: 35%;
  }

  .cta_bubble-04 {
    width: 5rem;
    height: 5rem;
    left: 60%;
  }

  .cta_bubble-05 {
    width: 6rem;
    height: 6rem;
    bottom: 20%;
    right: 20%;
  }

  .cta_yellow_dot {
    right: 14%;
  }

  .cta_bubble-06 {
    width: 5rem;
    height: 5rem;
    left: 72%;
  }

  .cta_bubble-07 {
    width: 6rem;
    height: 6rem;
    bottom: 45%;
    right: 12%;
  }

  .cta_purple_dot {
    bottom: 86%;
    right: 14%;
  }

  .hero_partner-blue-dots {
    z-index: auto;
  }

  .html_component {
    grid-template-rows: auto;
  }

  .boy-working-image, .html_content-wrapper, .html_image-wrapper {
    height: 25rem;
  }

  .html_purple_dot {
    right: 14%;
  }

  .course_bubble-01 {
    width: 6rem;
    height: 6rem;
    top: 10%;
    left: 15%;
  }

  .html_bubble-02 {
    width: 5rem;
    height: 5rem;
    left: 14%;
  }

  .html_red_dot {
    left: 15%;
  }

  .html_blue_dot {
    bottom: 80%;
    right: 20%;
  }

  .html_bubble-03 {
    width: 6rem;
    height: 6rem;
    bottom: 20%;
    right: 25%;
  }

  .html_bubble-04 {
    width: 5rem;
    height: 5rem;
    bottom: 45%;
    right: 15%;
  }

  .html_yellow_dot {
    left: 30%;
  }

  .blog_post-main-image {
    height: 70vh;
  }
}

@media screen and (min-width: 1440px) {
  .container {
    padding-left: 8%;
    padding-right: 8%;
  }

  .container.is--iceblue.section-class {
    background-color: var(--white);
  }

  .h1 {
    font-size: 64px;
    line-height: 100%;
  }

  .h1.margin-bottom-24px {
    max-width: 560px;
  }

  .h2.is--night.margin-bottom-72px, .overline.margin-bottom-8px {
    text-align: center;
  }

  .howitworks__left {
    flex-direction: row;
  }

  .div-block-6 {
    grid-row-gap: 200px;
  }

  .howitworks__zigzag {
    top: -20%;
  }

  .howitworks__applyspeechbubble {
    width: 400px;
    top: 66%;
  }

  .howitworks__honespeechbubble.is--purple {
    width: 400px;
  }

  .howitworks__honespeechbubble.is--pink {
    width: 400px;
    left: 45%;
  }

  .howitworks__honespeechbubble.is--blue {
    width: 400px;
  }

  .howitworks__logo.is--skilledd {
    left: 1%;
  }

  .howitworks__logo.is--pulley {
    left: 74%;
  }

  .howitworks__logo.is--paymongo {
    left: 6%;
  }

  .howitworks__logo.is--mashupgarage {
    top: 19%;
    left: 39%;
  }

  .howitworks__logo.is--canva {
    left: 84%;
  }

  .howitworks__logo.is--madeats {
    left: 59%;
  }

  .howitworks__logo.is-lawadvisor {
    left: 58%;
  }

  .howitworks__logo.is--marti {
    left: 29%;
  }

  .howitworks__logo.is--xendit {
    left: 18%;
  }

  .bluearrow.is--flipped {
    height: 88px;
  }

  .piechart__textwrapperright {
    right: 23%;
  }

  .piechart__textwrapperleft {
    left: 15%;
  }

  .cta_bubble-01 {
    left: 18%;
  }

  .cta_bubble-02 {
    left: 25%;
  }

  .cta_bubble-03 {
    left: 22%;
  }

  .cta_red_dot {
    left: 18%;
  }

  .cta_bubble-04 {
    left: 58%;
  }

  .cta_bubble-05 {
    right: 24%;
  }

  .cta_yellow_dot {
    right: 16%;
  }

  .cta_bubble-06 {
    left: 68%;
  }

  .cta_bubble-07, .cta_purple_dot {
    right: 18%;
  }

  .html_purple_dot {
    right: 16%;
  }

  .course_bubble-01 {
    left: 18%;
  }

  .html_bubble-02 {
    left: 22%;
  }

  .html_red_dot {
    left: 18%;
  }

  .html_blue_dot {
    right: 18%;
  }

  .html_bubble-03 {
    right: 24%;
  }

  .html_bubble-04 {
    right: 18%;
  }

  .html_yellow_dot {
    top: 85%;
    left: 35%;
  }

  .blog_header-component {
    grid-template-columns: .5fr 1.5fr .5fr;
  }
}

@media screen and (min-width: 1920px) {
  .container {
    padding-left: 10%;
    padding-right: 10%;
  }

  .hero__wrapper {
    margin-left: auto;
    margin-right: auto;
  }

  .h1.margin-bottom-24px {
    max-width: 560px;
  }

  .overline.margin-bottom-8px, .overline.margin-bottom-8px.is--royalblue {
    max-width: 1200px;
  }

  .howitworks__zigzag {
    top: -19%;
  }

  .howitworks__honespeechbubble.is--pink {
    left: 60%;
  }

  .howitworks__honespeechbubble.is--blue {
    top: 78%;
  }

  .howitworks__logo.is--skilledd {
    left: -3%;
  }

  .howitworks__logo.is--filta {
    top: 65%;
    left: 85%;
  }

  .howitworks__logo.is--pulley {
    left: 75%;
  }

  .howitworks__logo.is--paymongo {
    left: 5%;
  }

  .howitworks__logo.is--mashupgarage {
    top: 20%;
    left: 42%;
  }

  .howitworks__logo.is--xpanse {
    top: -6%;
    left: 47%;
  }

  .howitworks__logo.is--marti {
    left: 30%;
  }

  .howitworks__logo.is--xendit, .howitworks__logo.is--pickaroo {
    left: 19%;
  }

  .partner_logos-container {
    width: 1100px;
  }

  .piechart__textwrapperright {
    right: 25%;
  }

  .piechart__textwrapperleft {
    left: 15%;
  }

  .section_partner-hiw.section-style-dark {
    position: relative;
  }

  .cta_bubble-01 {
    left: 25%;
  }

  .cta_bubble-02 {
    left: 31%;
  }

  .cta_bubble-03, .cta_red_dot {
    left: 26%;
  }

  .cta_blue_dot {
    left: 40%;
  }

  .cta_bubble-05 {
    right: 28%;
  }

  .cta_yellow_dot {
    right: 22%;
  }

  .cta_bubble-06 {
    left: 65%;
  }

  .cta_bubble-07, .cta_purple_dot {
    right: 25%;
  }

  .html_purple_dot {
    right: 22%;
  }

  .course_bubble-01 {
    left: 25%;
  }

  .html_bubble-02, .html_red_dot {
    left: 26%;
  }

  .html_blue_dot {
    right: 25%;
  }

  .html_bubble-03 {
    right: 28%;
  }

  .html_bubble-04 {
    right: 25%;
  }

  .html_yellow_dot {
    top: 85%;
    left: 40%;
  }
}

@media screen and (max-width: 991px) {
  h3 {
    font-size: 2rem;
    line-height: 1.2;
  }

  img {
    width: 100%;
  }

  .container.is--iceblue {
    padding-left: 6%;
    padding-right: 6%;
  }

  .container.is--iceblue.is--testimonialsection {
    overflow: hidden;
  }

  .container.is--black {
    padding-left: 6%;
    padding-right: 6%;
    position: relative;
  }

  .container.is--icebluegradient {
    padding-left: 6%;
    padding-right: 6%;
  }

  .navbar {
    min-height: 70px;
  }

  .navbar.white {
    padding-top: 2%;
    padding-bottom: 2%;
    position: absolute;
  }

  .navbar.transpraent {
    position: absolute;
  }

  .nav {
    align-self: auto;
  }

  .nav__menu-link {
    width: 100%;
    margin-bottom: 24px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav__menu-link.dropdown {
    width: 100%;
  }

  .nav__menu-link.white {
    color: #111;
  }

  .nav__menu-link.white:hover {
    color: #888;
  }

  .nav__menu-link.last {
    margin-bottom: 0;
  }

  .nav__logo {
    padding-left: 0;
  }

  .nav__menu {
    background-color: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 3px 3px 8px #d4e7f2, 6px 6px 48px #d4e7f2;
  }

  .dropdown-list.w--open {
    position: relative;
  }

  .dropdown-link {
    padding-left: 40px;
  }

  .menu-button {
    order: 1;
    align-self: auto;
    height: 18px;
    margin-bottom: 0;
    margin-left: 32px;
  }

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

  .nav__button-enroll {
    align-self: auto;
  }

  .line-1 {
    background-color: var(--gray);
    inset: 0%;
  }

  .nav__button {
    flex: 0 auto;
    align-self: center;
    align-items: center;
    margin-top: 0;
    margin-left: 20px;
    display: flex;
  }

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

  .hero__wrapper.margin-bottom-120px {
    grid-row-gap: 64px;
    grid-template-rows: auto auto;
  }

  .scribble-1 {
    width: 80px;
  }

  .h1 {
    font-size: 48px;
    line-height: 110%;
  }

  .enrollbutton {
    margin-left: auto;
    margin-right: auto;
  }

  .enrollbutton.in-blog-item {
    margin-top: 20px;
  }

  .cookies-wrapper {
    min-width: 560px;
  }

  .cookies-font {
    flex: 1;
  }

  .remove-icon {
    flex: none;
  }

  .form {
    width: 100%;
  }

  .section-description.is--medium.is--night, .section-description.is--medium.is--night.margin-bottom-40px {
    width: 256px;
    max-width: 256px;
  }

  .hero-title-center {
    width: 90%;
  }

  .tag-text {
    flex: none;
  }

  .hero__right {
    width: 100%;
    margin: 0;
  }

  .line-2 {
    background-color: var(--gray);
    top: 7px;
  }

  .line-3 {
    background-color: var(--gray);
    top: 14px;
  }

  .utility-page-wrap {
    height: 600px;
  }

  .blog-content {
    width: 100%;
  }

  .blog-content.flex {
    flex-direction: column;
  }

  .blog-white-bg.center-flex {
    padding-left: 36px;
    padding-right: 36px;
  }

  .blog-body {
    width: 100%;
  }

  .footer {
    padding-top: 60px;
    padding-bottom: 40px;
  }

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

  .sub-hero-section {
    padding-top: 99px;
    padding-bottom: 69px;
  }

  .scribble-2 {
    width: 40px;
    top: 91px;
  }

  .scribble-3 {
    width: 80px;
  }

  .scribble-4 {
    width: 200px;
  }

  .hero__img {
    text-align: left;
    width: auto;
  }

  .div-block {
    flex: 0 auto;
    align-self: center;
    align-items: center;
    display: flex;
  }

  .hero__dots {
    width: 240px;
    inset: auto -6% -12% auto;
  }

  .h2.margin-bottom-120px {
    margin-bottom: 72px;
  }

  .howitworks__left {
    justify-content: flex-start;
    align-self: center;
    width: 90%;
  }

  .div-block-6 {
    grid-row-gap: 112px;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .howitworks__image {
    display: block;
  }

  .howitworks__image.is--noshadow {
    display: none;
  }

  .howitworks__zigzag {
    display: block;
  }

  .howitworks-right {
    align-self: center;
    width: 80%;
    margin-bottom: 72px;
    display: none;
  }

  .howitworks__applyspeechbubble {
    display: block;
    top: 72%;
    left: -14%;
  }

  .howitworks__honespeechbubble.is--purple, .howitworks__honespeechbubble.is--pink {
    display: block;
  }

  .howitworks__honespeechbubble.is--blue, .howitworks__logo.is--skilledd, .howitworks__logo.is--filta, .howitworks__logo.is--pulley, .howitworks__logo.is--paymongo, .howitworks__logo.is--mashupgarage, .howitworks__logo.is--xpanse, .howitworks__logo.is--canva, .howitworks__logo.is--madeats, .howitworks__logo.is-lawadvisor, .howitworks__logo.is--marti, .howitworks__logo.is--xendit, .howitworks__logo.is--pickaroo {
    display: none;
  }

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

  .testimonial__card {
    width: 320px;
    height: 416px;
  }

  .accordion__lessontitle {
    width: 100%;
  }

  .accordion__groupcontainer {
    grid-template-columns: 1fr;
    display: none;
  }

  .schedule__row {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    justify-items: center;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }

  .schedule__row.margin-bottom-32px {
    grid-template-rows: auto auto 1fr auto;
    grid-template-columns: 1fr;
    justify-items: center;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }

  .howitworks__zigzaglavender {
    display: block;
  }

  .tuitionoptions__card {
    width: 100%;
    max-width: 80%;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .tuitionoptions__wrapper {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .arrowwrapper.margin-bottom-16px {
    display: none;
  }

  .socialproof__logo.margin-right-24px.margin-bottom-32px, .socialproof__logo.margin-bottom-32px {
    width: auto;
  }

  .partner_logos-container {
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }

  .socialproof__code {
    display: block;
  }

  .howitworks__code {
    width: 96px;
    display: block;
  }

  .curriculum__waves {
    display: block;
  }

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

  .div-block-19, .piechart__textwrapperright, .piechart__textwrapperleft {
    display: none;
  }

  .static-image {
    align-self: center;
    width: 90%;
    display: block;
  }

  .staticpiechart {
    align-self: center;
    width: 64%;
  }

  .staticpiechart.margin-bottom-32px {
    width: 80%;
    display: block;
  }

  .h5 {
    width: 536px;
  }

  .curriculum__verticalstack {
    display: block;
  }

  .hero__waves {
    bottom: -6%;
    right: -2%;
  }

  .curriculum__code {
    width: 88px;
  }

  .tuitionoptions__wrapper-copy {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .paragraph.indent {
    margin-left: 40px;
  }

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

  .curriculum--icon {
    width: 64px;
  }

  .career--step {
    width: 56px;
    max-width: 80px;
    height: 48px;
  }

  .div-block-25 {
    justify-content: flex-start;
  }

  .career-partners.hiw-header {
    width: 100%;
  }

  .light-gray-2, .light-gray-3 {
    width: 33.3333%;
  }

  .navigation {
    min-height: 70px;
  }

  .navigation.no-color {
    position: absolute;
  }

  .brand {
    padding-left: 0;
  }

  .hero-title {
    font-size: 60px;
    line-height: 60px;
  }

  .button-wrapper {
    margin-top: 15px;
    margin-left: 20px;
    display: flex;
  }

  .button-wrapper.version-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 20px;
  }

  .light-gray {
    width: 33.3333%;
  }

  .nav-link {
    width: 100%;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav-link.dropdown {
    width: 100%;
  }

  .nav-link.white {
    color: #111;
  }

  .nav-link.white:hover {
    color: #888;
  }

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

  .text-highlight {
    padding: 20px;
  }

  .nav-menu {
    background-color: #fff;
    padding-bottom: 20px;
  }

  .menu-button-2 {
    order: 1;
    height: 59px;
  }

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

  .margin-xhuge {
    margin: 6rem;
  }

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

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .fs-styleguide_2-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

  .fs-styleguide_4-col {
    grid-template-columns: 1fr;
  }

  .hide-tablet {
    display: none;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .fs-styleguide_section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

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

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .margin-xlarge {
    margin: 3rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .fs-styleguide_3-col {
    grid-template-columns: 1fr;
  }

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

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

  .padding-xlarge {
    padding: 3rem;
  }

  .max-width-medium.max-width-full-tablet.hiw {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .padding-global.hiw {
    padding-right: 0;
  }

  .padding-large {
    padding: 2.5rem;
  }

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

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

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

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .fs-styleguide_heading-medium {
    font-size: 3rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

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

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .padding-section-large.hiw {
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .fs-styleguide_1-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .max-width-xlarge.max-width-full-tablet.hiw {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

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

  .hero-header_image-wrapper {
    justify-content: flex-start;
  }

  .hero_blue_dots {
    width: 180px;
    inset: auto 81% -8% auto;
  }

  .hero_blue_waves {
    bottom: -5%;
    right: -8%;
  }

  .tuition_three_grid-wrapper {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-columns: .25fr .5fr 1fr;
  }

  .tuition_two_grid-wrapper {
    grid-template-columns: .25fr .5fr;
  }

  .tuition-2grid_component {
    grid-template-columns: 1fr;
  }

  .benefits_item {
    height: 200px;
  }

  .benefits_icon-image {
    max-width: 24%;
  }

  .nav__button-dark-enroll {
    align-self: auto;
  }

  .tuition_code-asset {
    display: block;
  }

  .hiw-component {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .talent_image-wrapper, .curriculum_image-wrapper {
    justify-content: flex-start;
  }

  .curriculum-component {
    grid-template-columns: 1fr;
  }

  .partners_rose-dots {
    top: 70%;
    left: 80%;
  }

  .skills-component {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .talent-component {
    grid-template-columns: 1fr;
  }

  .benefits_image-wrapper, .hiw_image-wrapper {
    justify-content: flex-start;
  }

  .program-hiw-component {
    grid-template-rows: auto auto;
  }

  .hiw_coding-image {
    inset: 0%;
  }

  .benefits-edu-component {
    grid-template-columns: 1fr;
  }

  .edu_image-wrapper {
    justify-content: flex-start;
  }

  .program-curriculum-roundscribble {
    top: -3%;
  }

  .partner_code-graphic, .tuition_waves, .partners_waves, .round-ring-graphic {
    display: block;
  }

  .cta_bubble-01 {
    width: 4.8rem;
    height: 4.8rem;
    top: 10%;
    left: 5%;
  }

  .cta_bubble-02 {
    width: 3.5rem;
    height: 3.5rem;
    top: 10%;
    left: 25%;
  }

  .padding-section-huge {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .cta_bubble-03 {
    width: 3.5rem;
    height: 3.5rem;
  }

  .cta_red_dot {
    width: 2rem;
    height: 2rem;
  }

  .cta_blue_dot {
    width: 2rem;
    height: 2rem;
    left: 25%;
  }

  .cta_bubble-04 {
    width: 3.5rem;
    height: 3.5rem;
    top: 80%;
    left: 64%;
  }

  .cta_bubble-05 {
    width: 4.8rem;
    height: 4.8rem;
    bottom: 15%;
    right: 14%;
  }

  .cta_yellow_dot {
    width: 2rem;
    height: 2rem;
    right: 7%;
  }

  .cta_bubble-06 {
    width: 3.5rem;
    height: 3.5rem;
    top: 10%;
    left: 75%;
  }

  .cta_bubble-07 {
    width: 4.8rem;
    height: 4.8rem;
    right: 5%;
  }

  .cta_purple_dot {
    width: 2rem;
    height: 2rem;
    bottom: 85%;
    right: 5%;
  }

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

  .boy-working-image, .html_content-wrapper, .html_image-wrapper {
    height: 100%;
  }

  .js-content-wrapper, .react-content-wrapper {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .tuition_code-graphic, .curriculum_code-graphic, .curriculum_waves {
    display: block;
  }

  .html_purple_dot {
    width: 2rem;
    height: 2rem;
    right: 7%;
  }

  .course_bubble-01 {
    width: 4.8rem;
    height: 4.8rem;
    top: 10%;
    left: 5%;
  }

  .html_bubble-02 {
    width: 3.5rem;
    height: 3.5rem;
  }

  .html_red_dot {
    width: 2rem;
    height: 2rem;
  }

  .html_blue_dot {
    width: 2rem;
    height: 2rem;
    bottom: 85%;
    right: 5%;
  }

  .html_bubble-03 {
    width: 4.8rem;
    height: 4.8rem;
    bottom: 15%;
    right: 14%;
  }

  .html_bubble-04 {
    width: 4.8rem;
    height: 4.8rem;
    right: 5%;
  }

  .blog_header-component {
    grid-template-columns: .5fr 1.5fr .5fr;
  }

  .blog-pagination {
    margin-left: auto;
    margin-right: auto;
  }

  .blog-pagination.in-blog-item {
    margin-top: 20px;
  }

  .nav-container.grid {
    flex: 1;
    grid-template-columns: 1fr .75fr;
    align-self: center;
  }

  .nav_menu-link {
    justify-content: flex-start;
    width: 100%;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav_menu-link.dropdown {
    width: 100%;
  }

  .nav_menu-link.white {
    color: #111;
  }

  .nav_menu-link.white:hover {
    color: #888;
  }

  .nav_menu-link.last {
    margin-bottom: 0;
  }

  .nav_container-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
  }
}

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

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  .container.is--iceblue {
    padding-top: 88px;
    padding-bottom: 152px;
  }

  .container.is--iceblue.is--testimonialsection {
    padding-bottom: 152px;
  }

  .container.is--black {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .navbar {
    padding-left: 3%;
    padding-right: 3%;
  }

  .nav {
    align-self: center;
  }

  .dropdown-list.mega-menu.w--open {
    flex-direction: column;
  }

  .nav__button-enroll {
    align-self: center;
  }

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

  .h1 {
    font-size: 40px;
    line-height: 110%;
  }

  .cookies-wrapper {
    min-width: 400px;
  }

  .hero-title-center {
    width: 100%;
  }

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

  .scribble-4 {
    width: 100px;
  }

  .scribble-footer {
    width: 50px;
  }

  .hero__img {
    width: 100%;
  }

  .h3.is--white {
    font-size: 24px;
  }

  .h3.is--white.no-padding {
    text-align: left;
    width: auto;
  }

  .hero__dots {
    bottom: -16%;
    right: -6%;
  }

  .h2 {
    font-size: 36px;
  }

  .h2.margin-bottom-72px {
    width: 400px;
  }

  .h2.margin-bottom-120px {
    margin-bottom: 32px;
  }

  .overline {
    font-size: 12px;
  }

  .div-block-6 {
    grid-row-gap: 96px;
  }

  .howitworks__applyspeechbubble {
    top: 56%;
    left: -18%;
  }

  .accordion__lessontitle {
    width: 300px;
  }

  .accordion__container.is--maxwidth696px.margin-bottom-16px.is--iceblueshadow, .accordion__container.is--maxwidth696px.is--iceblueshadow {
    width: 100%;
  }

  .h4 {
    line-height: 120%;
  }

  .h4.is--centered.is--socialproof {
    width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .schedule__row, .schedule__row.margin-bottom-32px {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    width: 75%;
  }

  .tuitionoptions__card {
    width: 100%;
    max-width: 100%;
  }

  .tuitionoptions__wrapper {
    margin-top: 64px;
  }

  .partner_logos-container {
    width: 100%;
  }

  .socialproof__code {
    width: 104px;
    top: 25px;
  }

  .curriculum__waves {
    width: 120px;
    top: 41px;
  }

  .div-block-18 {
    display: none;
  }

  .static-image.margin-bottom-24px {
    width: 100%;
  }

  .staticpiechart.margin-bottom-32px {
    display: block;
  }

  .h5 {
    width: 384px;
  }

  .lottie-animation {
    width: 112px;
    height: 112px;
  }

  .image-4 {
    width: 56px;
  }

  .hero__waves {
    display: none;
  }

  .tuitionoptions__wrapper-copy {
    margin-top: 64px;
  }

  .paragraph.indent {
    margin-left: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    margin-left: 24px;
    margin-right: 24px;
  }

  .heading.curriculum--heading {
    line-height: 160%;
  }

  .curriculum-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .curriculum--icon {
    width: 80px;
  }

  .career--step {
    width: 56px;
    height: 64px;
  }

  .div-block-25 {
    flex-wrap: nowrap;
  }

  .career-partners.hiw-header {
    width: auto;
    margin-top: 24px;
  }

  .hiw-step {
    flex-direction: column;
  }

  .navigation {
    padding-left: 3%;
    padding-right: 3%;
  }

  .hero-title {
    font-size: 50px;
    line-height: 55px;
  }

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

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

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

  .margin-xhuge {
    margin: 4rem;
  }

  .heading-style-h4 {
    font-size: 1rem;
  }

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

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .text-size-large {
    font-size: 1.25rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .fs-styleguide_section-header {
    font-size: .875rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .fs-styleguide_heading-large {
    font-size: 3rem;
  }

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

  .hide-mobile-landscape {
    display: none;
  }

  .margin-medium {
    margin: 1.25rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-xlarge {
    margin: 2rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .heading-style-h2 {
    font-size: 2rem;
  }

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

  .heading-style-h3 {
    font-size: 1.5rem;
  }

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

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

  .padding-xlarge {
    padding: 2rem;
  }

  .max-width-medium.max-width-full-tablet.hiw, .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .padding-large {
    padding: 1.5rem;
  }

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

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

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

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

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

  .fs-styleguide_version {
    font-size: .875rem;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .fs-styleguide_heading-medium {
    font-size: 2rem;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

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

  .heading-style-h6 {
    font-size: .75rem;
  }

  .padding-medium {
    padding: 1.25rem;
  }

  .padding-section-large {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

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

  .heading-style-h5 {
    font-size: .875rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .margin-large {
    margin: 1.5rem;
  }

  .max-width-xlarge.max-width-full-tablet.hiw {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .hero-header_image {
    max-width: 100%;
  }

  .hero_blue_dots {
    width: 140px;
    bottom: -8%;
    right: 80%;
  }

  .hero_blue_waves {
    display: none;
  }

  .tuition_options-content {
    grid-template-rows: auto auto;
    grid-template-columns: 2fr;
  }

  .tuition_three_grid-wrapper {
    grid-template-rows: auto;
    grid-template-columns: .25fr 1fr 1fr;
  }

  .tuition_two_grid-wrapper {
    grid-template-columns: .5fr 1fr;
  }

  .tuition_icon-image {
    max-width: 20%;
  }

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

  .benefits_icon-image {
    max-width: 18%;
  }

  .nav__button-dark-enroll {
    align-self: center;
  }

  .tuition_pricing-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .tuition_code-asset {
    width: 104px;
    top: 25px;
  }

  .hiw-component {
    grid-template-columns: 1fr;
  }

  .job_offer-graphic {
    width: 8rem;
    height: 8rem;
    right: 10%;
  }

  .avion_logo-card {
    left: -3%;
  }

  .curriculum__container.is--maxwidth696px.margin-bottom-16px.is--iceblueshadow, .curriculum__container.is--maxwidth696px.is--iceblueshadow {
    width: 100%;
  }

  .curriculum-component {
    grid-template-columns: 1fr;
  }

  .partner_talent-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .avion_logo-small-card {
    width: 4rem;
    height: 4rem;
    left: -20px;
  }

  .partner-talent-component {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .partners_rose-dots {
    display: none;
  }

  .skills-component {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .talent-component, .benefits-component, .program-hiw-component {
    grid-template-columns: 1fr;
  }

  .html_logo-card, .ruby_logo-card {
    width: 6rem;
    height: 6rem;
    right: -8%;
  }

  .react_logo-card {
    width: 6rem;
    height: 6rem;
    right: 88%;
  }

  .hiw-dots {
    display: none;
  }

  .benefits-edu-component {
    grid-template-columns: 1fr;
  }

  .program-curriculum-roundscribble, .program_code-wrapper {
    display: none;
  }

  .partner_code-graphic {
    width: 104px;
    top: 100px;
  }

  .benefits_code-wrapper, .tuition_waves-wrapper {
    display: none;
  }

  .tuition_waves {
    width: 120px;
    top: 41px;
  }

  .program_waves-wrapper, .partner_waves-wrapper {
    display: none;
  }

  .partners_waves {
    width: 104px;
    top: 100px;
  }

  .partner_code-wrapper {
    display: none;
  }

  .round-ring-graphic {
    width: 104px;
    top: 100px;
  }

  .round-ring-wrapper, .cta_bubble-01 {
    display: none;
  }

  .cta_bubble-02 {
    display: none;
    top: 6%;
    left: 3%;
  }

  .padding-section-huge {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .cta_bubble-03, .cta_red_dot, .cta_blue_dot, .cta_bubble-04, .cta_bubble-05, .cta_yellow_dot {
    display: none;
  }

  .cta_bubble-06 {
    display: none;
    top: 6%;
    left: 3%;
  }

  .cta_bubble-07, .cta_purple_dot {
    display: none;
  }

  .html_component, .html-info-component {
    grid-template-columns: 1fr;
  }

  .course_overview-component {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .boy-working-image {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0;
  }

  .html_content-wrapper {
    border-top-right-radius: 0;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    height: 22rem;
    padding: 1.25rem;
  }

  .courses_list-component {
    grid-template-columns: 1fr;
  }

  .course_waves-wrapper {
    display: none;
  }

  .ruby-info-component, .ruby_component, .react-info-component {
    grid-template-columns: 1fr;
  }

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

  .curriculum_list-component {
    grid-template-columns: 1fr;
  }

  .tuition_code-graphic, .curriculum_code-graphic, .curriculum_waves {
    width: 104px;
    top: 100px;
  }

  .html_purple_dot, .course_bubble-01, .html_bubble-02, .html_red_dot, .html_blue_dot, .html_bubble-03, .html_bubble-04, .html_yellow_dot {
    display: none;
  }

  .curriculum_hero-header_image {
    max-width: 100%;
  }

  .blog_header-component {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .blog_featured-content {
    grid-template-columns: 1fr;
  }

  .collection-item {
    padding-right: 0;
  }

  .padding_blog-header {
    padding-bottom: 4rem;
  }

  .blog_left-image, .blog_right-image {
    display: none;
  }

  .blog_post-main-image {
    height: 100%;
  }

  .nav-container.grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav_menu-link {
    justify-content: flex-start;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav_container-wrapper {
    align-self: center;
  }
}

@media screen and (max-width: 479px) {
  .container {
    padding-top: 99px;
  }

  .container.is--iceblue {
    padding-bottom: 88px;
  }

  .container.is--iceblue.section-class {
    background-color: var(--white);
  }

  .navbar.white {
    padding-left: 6%;
    padding-right: 6%;
    display: flex;
  }

  .nav__logo {
    padding-left: 0;
  }

  .menu-button {
    padding-top: 0;
  }

  .nav__button-enroll {
    align-self: flex-start;
    display: block;
  }

  .nav__button.is--navbar {
    display: none;
  }

  .hero__wrapper.margin-bottom-120px {
    grid-row-gap: 48px;
    margin-bottom: 72px;
  }

  .scribble-1 {
    width: 80px;
  }

  .h1 {
    font-size: 40px;
    line-height: 110%;
  }

  .h1._50px {
    font-size: 32px;
    line-height: 40px;
  }

  .h1.margin-bottom-24px {
    width: 100%;
    line-height: 120%;
  }

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

  .enrollbutton.is--centered.margin-top-32px {
    flex-direction: row;
    align-items: center;
  }

  .cookies-wrapper {
    min-width: 300px;
  }

  .form {
    grid-column-gap: 15px;
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

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

  .checkbox {
    flex: none;
  }

  .checkbox-field {
    margin-top: 10px;
  }

  .section-description {
    margin-top: 24px;
  }

  .section-description.margin-bottom-24px {
    width: 100%;
  }

  .hero-title-center {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero__right, .blog-wrapper {
    width: 100%;
  }

  .blog-white-bg {
    padding: 20px 23px 10px;
  }

  .blog-white-bg.center-flex {
    padding-bottom: 20px;
    padding-left: 19px;
    padding-right: 19px;
  }

  .blog-white-bg._0-left {
    padding-right: 0;
  }

  .blog-title {
    font-size: 23px;
    line-height: 30px;
  }

  .footer-gird {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .copyright {
    margin-bottom: 5px;
  }

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

  .copyright-dot {
    display: none;
  }

  .sub-hero-section {
    padding-top: 105px;
    padding-bottom: 54px;
  }

  .sub-hero-section.in-blog-page {
    padding-bottom: 136px;
  }

  .scribble-2 {
    display: none;
  }

  .scribble-3 {
    left: 19px;
  }

  .nav__logo-image {
    height: 28px;
  }

  .hero__img {
    width: 100%;
  }

  .div-block {
    align-self: center;
  }

  .h3, .h3.is--white {
    font-size: 20px;
  }

  .h3.is--white.no-padding {
    width: auto;
    margin-top: 16px;
  }

  .hero__dots {
    width: 120px;
    bottom: -12%;
  }

  .h2 {
    font-size: 28px;
  }

  .h2.margin-bottom-72px {
    width: 240px;
  }

  .overline.margin-bottom-8px {
    text-align: center;
  }

  .howitworks__number.margin-right-24px {
    display: none;
  }

  .div-block-4 {
    display: block;
  }

  .div-block-6 {
    grid-row-gap: 72px;
  }

  .howitworks__image {
    width: 100%;
  }

  .howitworks__zigzag, .howitworks__applyspeechbubble, .howitworks__honespeechbubble.is--purple, .howitworks__honespeechbubble.is--pink, .howitworks__honespeechbubble.is--blue {
    display: none;
  }

  .body2 {
    line-height: 160%;
  }

  .body2.is--dropdown, .body2.margin-bottom-40px.is--centered {
    width: 100%;
  }

  .dropdown__circle.margin-right-16px {
    margin-bottom: 8px;
  }

  .accordion__lessontitle {
    width: 100%;
  }

  .div-block-9 {
    width: 200px;
    display: block;
  }

  .accordion__container {
    padding: 24px;
  }

  .divider.margin-bottom-16px.margin-top-32px {
    margin-top: 24px;
  }

  .h4 {
    font-size: 20px;
  }

  .h4.is--centered.is--socialproof {
    width: 280px;
  }

  .schedule__row, .schedule__row.margin-bottom-32px {
    width: 100%;
  }

  .socialproof__logo.margin-right-24px.margin-bottom-32px {
    margin-left: auto;
    margin-right: auto;
  }

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

  .socialproof__code {
    width: 72px;
    top: 19px;
  }

  .howitworks__wrapper {
    align-items: center;
  }

  .div-block-18 {
    display: none;
  }

  .h5 {
    width: 192px;
    line-height: 120%;
  }

  .curriculum__roundscribble {
    display: none;
  }

  .curriculum__code {
    width: 64px;
    top: -20px;
  }

  .list {
    margin-left: 40px;
  }

  .footer-grid {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    margin-left: 24px;
    margin-right: 24px;
  }

  .social--links {
    text-align: left;
  }

  .curriculum--container {
    padding-bottom: 16px;
  }

  .curriculum-grid, .curriculum-grid.grid--react {
    grid-template-columns: 1fr;
  }

  .curriculum--icon {
    width: 32%;
  }

  .social--icon {
    flex: 0 auto;
    align-self: center;
    width: 24px;
  }

  .social-links--container {
    text-align: left;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-3 {
    text-align: left;
  }

  .div-block-25 {
    flex-direction: column;
    align-items: flex-start;
  }

  .div-block-26, .div-block-27 {
    width: 100%;
  }

  .career-partners.hiw-header {
    width: auto;
    margin-top: 16px;
    line-height: 160%;
  }

  .skills {
    text-align: center;
    justify-content: center;
    display: flex;
  }

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

  .skill {
    align-items: center;
    display: flex;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    width: auto;
  }

  .image-5, .image-check {
    width: 24px;
    max-width: 24%;
  }

  .hiw-step {
    flex-direction: column;
  }

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

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

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

  .brand {
    padding-left: 0;
  }

  .hero-title {
    font-size: 40px;
    line-height: 45px;
  }

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

  .button-wrapper.version-2 {
    display: none;
  }

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

  .typography-flex {
    width: 68%;
  }

  .grayscale-parent {
    height: 55px;
  }

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

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

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

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

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

  .hide-mobile-portrait {
    display: none;
  }

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

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

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

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

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

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

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

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

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

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

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

  .hero_blue_dots {
    width: 120px;
    bottom: -12%;
  }

  .nav__button-dark-enroll {
    align-self: flex-start;
    display: block;
  }

  .tuition_code-asset {
    width: 72px;
    top: 19px;
  }

  .job_offer-graphic, .avion_logo-card {
    width: 6rem;
    height: 6rem;
  }

  .curriculum__container {
    padding: 24px;
  }

  .partner-talent-component {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .skills-component {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .hiw_card-item {
    flex-direction: column;
  }

  .html_logo-card, .ruby_logo-card {
    right: -12%;
  }

  .react_logo-card {
    right: 77%;
  }

  .program-curriculum-roundscribble {
    display: none;
  }

  .partner_code-graphic, .partners_waves, .round-ring-graphic {
    width: 72px;
    top: 130px;
    left: -10px;
  }

  .html_content-wrapper {
    height: 100%;
  }

  .js_skill-component, .react_skill-component {
    grid-template-columns: 1fr;
  }

  .tuition_code-graphic, .curriculum_code-graphic, .curriculum_waves {
    width: 72px;
    top: 130px;
    left: -10px;
  }

  .blog-pagination {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-pagination.is--centered.margin-top-32px {
    flex-direction: row;
    align-items: center;
  }

  .padding_blog-header {
    padding-bottom: 2rem;
  }

  .post_header-meta {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hiw_number {
    display: block;
  }

  .hwi_number-wrapper.margin-right-24px {
    display: none;
  }
}

#w-node-d5cb6d33-b96f-b081-cc95-d2c5c76051e7-c76051e4, #w-node-d5cb6d33-b96f-b081-cc95-d2c5c76051e8-c76051e4, #w-node-d5cb6d33-b96f-b081-cc95-d2c5c76051f1-c76051e4, #w-node-d5cb6d33-b96f-b081-cc95-d2c5c76051f2-c76051e4, #w-node-d5cb6d33-b96f-b081-cc95-d2c5c76051f6-c76051e4, #w-node-d5cb6d33-b96f-b081-cc95-d2c5c7605204-c76051e4, #w-node-d5cb6d33-b96f-b081-cc95-d2c5c7605205-c76051e4, #w-node-d5cb6d33-b96f-b081-cc95-d2c5c7605209-c76051e4, #w-node-d5cb6d33-b96f-b081-cc95-d2c5c760520c-c76051e4, #w-node-d5cb6d33-b96f-b081-cc95-d2c5c760520e-c76051e4, #w-node-d5cb6d33-b96f-b081-cc95-d2c5c760520f-c76051e4, #w-node-d5cb6d33-b96f-b081-cc95-d2c5c7605213-c76051e4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9eebbefb-f971-35c6-dde0-5038eeef659c-68a88ed4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_015d37e3-ff07-f164-ba31-85d086f0a133-68a88ed4 {
  align-self: center;
}

#w-node-_0609248e-d729-371a-35b9-f8594d1c46db-68a88ed4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c026a85e-22ad-0604-6b23-97cf947db555-68a88ed4 {
  grid-area: Area;
}

#w-node-c17505d7-5853-f172-1928-d329197d2179-68a88ed4, #w-node-_40c38e6b-dfb9-e8dc-ec01-210049842d23-68a88ed4 {
  justify-self: stretch;
}

#w-node-_0c1d7e31-4401-d87b-bd5a-9bdd482d71c7-68a88ed4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_0c1d7e31-4401-d87b-bd5a-9bdd482d71d5-68a88ed4 {
  align-self: center;
}

#w-node-_9d833c3e-c0ae-0198-cec9-5d762954c430-68a88ed4, #w-node-_9d833c3e-c0ae-0198-cec9-5d762954c48b-68a88ed4 {
  justify-self: stretch;
}

#w-node-a889ff92-d7e2-1db0-db3a-3941a059d829-a059d818, #w-node-a889ff92-d7e2-1db0-db3a-3941a059d859-a059d818 {
  align-self: center;
}

#w-node-f5e7a89d-b3dd-f6ab-a13d-88c9a91109d9-a91109c7, #w-node-f5e7a89d-b3dd-f6ab-a13d-88c9a91109e4-a91109c7 {
  justify-self: end;
}

#w-node-ee93dc0a-8981-8975-456c-c7827354be72-2a265153, #w-node-ee93dc0a-8981-8975-456c-c7827354be81-2a265153, #w-node-_2b4faabd-218a-c6e7-36a8-f3c952323df4-2a265153, #w-node-db9fd884-dece-cc07-077a-2fa5c9043211-2a265153, #w-node-f35ebb1f-226c-4df3-6b7f-5af589fb4d28-2a265153, #w-node-f35ebb1f-226c-4df3-6b7f-5af589fb4d2a-2a265153 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2c1f1ce9-1d6c-8277-59a5-2ac6ea882730-2a265153 {
  justify-self: start;
}

#w-node-_169c6e22-ea9e-366a-f34a-b15f89989498-2a265153, #w-node-_5005ce6f-6bd3-793e-2abe-073f689c5fc8-2a265153 {
  justify-self: end;
}

#w-node-e2e2d1ec-ea9f-25a6-dd31-20458bbb19e3-2a265153, #w-node-ebc7ad77-addd-3f04-2949-6db540be9a22-2a265153, #w-node-a1bafa69-0603-7270-cd87-57627da91928-2a265153 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9eebbefb-f971-35c6-dde0-5038eeef659c-2a265153 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_015d37e3-ff07-f164-ba31-85d086f0a133-2a265153 {
  align-self: center;
}

#w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca10330-67180df6, #w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca10340-67180df6, #w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca1034a-67180df6, #w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca10355-67180df6, #w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca10357-67180df6, #w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca1035d-67180df6, #w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca10363-67180df6, #w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca10369-67180df6, #w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca1037e-67180df6, #w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca10380-67180df6, #w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca1038a-67180df6, #w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca1038c-67180df6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca1039b-67180df6 {
  justify-self: start;
}

#w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca103bc-67180df6 {
  justify-self: end;
}

#w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca103c7-67180df6, #w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca103cd-67180df6, #w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca103d3-67180df6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_463dc3b6-371d-a4aa-cfad-033a04d0a665-67180df6 {
  justify-self: end;
}

#w-node-_9eebbefb-f971-35c6-dde0-5038eeef659c-67180df6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_015d37e3-ff07-f164-ba31-85d086f0a133-67180df6 {
  align-self: center;
}

#w-node-_9516471f-9038-eb1d-826b-71ede05c05af-67180df6, #w-node-_9516471f-9038-eb1d-826b-71ede05c05b7-67180df6, #w-node-_9516471f-9038-eb1d-826b-71ede05c05b3-67180df6, #w-node-_9516471f-9038-eb1d-826b-71ede05c05bb-67180df6, #w-node-cf823ff8-68f7-cd56-ecad-8156cd6f9a6a-cd6f9a67, #w-node-cf823ff8-68f7-cd56-ecad-8156cd6f9a6b-cd6f9a67, #w-node-cf823ff8-68f7-cd56-ecad-8156cd6f9a6f-cd6f9a67, #w-node-_19af35ec-1609-fe59-c9ca-8108cffb49fb-cd6f9a67, #w-node-_19af35ec-1609-fe59-c9ca-8108cffb49fc-cd6f9a67, #w-node-_19af35ec-1609-fe59-c9ca-8108cffb4a00-cd6f9a67, #w-node-_80649b76-2a01-e77f-adba-13741bb64b7b-b85d3cf0, #w-node-_80649b76-2a01-e77f-adba-13741bb64b8b-b85d3cf0, #w-node-bfb5f4c7-9e11-d955-1841-b457cb2736c5-b85d3cf0, #w-node-_945f4c5c-d7b9-4d2d-259a-1343904c71d9-b85d3cf0, #w-node-_77a19df6-b517-8aad-4ba2-fce38e188854-b85d3cf0, #w-node-_5c5b1a0f-5564-1cf4-0c89-ce87ed2a40fc-b85d3cf0, #w-node-_023a983e-78f7-b4c8-c4ac-bb0e7a28522b-b85d3cf0, #w-node-_1b90e440-823b-bbf3-7180-0e4719bf19fa-b85d3cf0, #w-node-_083291d8-59db-e095-39af-a591ac722853-b85d3cf0, #w-node-_39ae606d-9e84-9069-968e-c59618555572-b85d3cf0, #w-node-_80649b76-2a01-e77f-adba-13741bb64ba0-b85d3cf0, #w-node-_80649b76-2a01-e77f-adba-13741bb64ba2-b85d3cf0, #w-node-_80649b76-2a01-e77f-adba-13741bb64bac-b85d3cf0, #w-node-_80649b76-2a01-e77f-adba-13741bb64bae-b85d3cf0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_80649b76-2a01-e77f-adba-13741bb64bbd-b85d3cf0 {
  justify-self: start;
}

#w-node-_80649b76-2a01-e77f-adba-13741bb64bf2-b85d3cf0 {
  justify-self: end;
}

#w-node-_80649b76-2a01-e77f-adba-13741bb64bfd-b85d3cf0, #w-node-_80649b76-2a01-e77f-adba-13741bb64c03-b85d3cf0, #w-node-_80649b76-2a01-e77f-adba-13741bb64c09-b85d3cf0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_463dc3b6-371d-a4aa-cfad-033a04d0a665-b85d3cf0 {
  justify-self: end;
}

#w-node-_9eebbefb-f971-35c6-dde0-5038eeef659c-b85d3cf0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_015d37e3-ff07-f164-ba31-85d086f0a133-b85d3cf0 {
  align-self: center;
}

#w-node-_966c6e38-b70f-0797-e07f-71b62f16b20f-b85d3cf0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_357d8c03-4695-011c-aee3-7bea04f70203-b85d3cf0, #w-node-_899ec339-8c72-9ead-7a59-1104bf0344bf-b85d3cf0, #w-node-_21244c80-f03a-000b-6516-d2a020694252-b85d3cf0, #w-node-_7f0c94f1-c34b-8d1a-d2be-237d028923d7-b85d3cf0, #w-node-_9368737e-1f15-6281-0179-6d039031b22b-b85d3cf0, #w-node-faff14fb-4fd9-5c84-d23f-a071c14cfb0e-269b6a2e, #w-node-faff14fb-4fd9-5c84-d23f-a071c14cfb1e-269b6a2e, #w-node-faff14fb-4fd9-5c84-d23f-a071c14cfb33-269b6a2e, #w-node-faff14fb-4fd9-5c84-d23f-a071c14cfb35-269b6a2e, #w-node-faff14fb-4fd9-5c84-d23f-a071c14cfb3f-269b6a2e, #w-node-faff14fb-4fd9-5c84-d23f-a071c14cfb41-269b6a2e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-faff14fb-4fd9-5c84-d23f-a071c14cfb50-269b6a2e {
  justify-self: start;
}

#w-node-faff14fb-4fd9-5c84-d23f-a071c14cfb85-269b6a2e {
  justify-self: end;
}

#w-node-faff14fb-4fd9-5c84-d23f-a071c14cfb90-269b6a2e, #w-node-faff14fb-4fd9-5c84-d23f-a071c14cfb96-269b6a2e, #w-node-faff14fb-4fd9-5c84-d23f-a071c14cfb9c-269b6a2e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_463dc3b6-371d-a4aa-cfad-033a04d0a665-269b6a2e {
  justify-self: end;
}

#w-node-_9eebbefb-f971-35c6-dde0-5038eeef659c-269b6a2e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_015d37e3-ff07-f164-ba31-85d086f0a133-269b6a2e {
  align-self: center;
}

#w-node-e83eaca8-3034-9d70-e0cc-04479716a260-b42bab1a, #w-node-e83eaca8-3034-9d70-e0cc-04479716a270-b42bab1a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8d9ab1f5-d309-8569-3e4e-94c9bf62cc73-b42bab1a {
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
}

#w-node-_0c1e5b20-e961-3500-a383-142c4c4fd7bf-b42bab1a, #w-node-_5e3e010c-b0b5-7455-c06a-85bfba47fd9e-b42bab1a, #w-node-_5e3e010c-b0b5-7455-c06a-85bfba47fda7-b42bab1a, #w-node-_5e3e010c-b0b5-7455-c06a-85bfba47fdb0-b42bab1a, #w-node-de67c99e-b72d-f547-2458-a096c6648d3a-b42bab1a, #w-node-b06b6fb8-a025-74b2-6699-85bfccc9467f-b42bab1a, #w-node-f6c8bdea-0d9b-1479-446c-7c2121442442-b42bab1a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2a32a47-442b-d870-6eb7-5c8b7eef9713-b42bab1a {
  justify-self: end;
}

#w-node-_9eebbefb-f971-35c6-dde0-5038eeef659c-b42bab1a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_015d37e3-ff07-f164-ba31-85d086f0a133-b42bab1a {
  align-self: center;
}

#w-node-_34017782-1af4-d00d-a6fe-1ebb791f746e-9beea4c7, #w-node-_34017782-1af4-d00d-a6fe-1ebb791f747b-9beea4c7, #w-node-db8ef304-6c6f-b8a6-1490-b134f678c411-9beea4c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2d65cd66-cc38-d143-0e5e-bfe3b3f23915-9beea4c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_67b067e3-3659-26b5-c698-399046d297e6-9beea4c7, #w-node-eb44b8f5-cc13-76d9-6bcb-9e6705fa98e8-9beea4c7, #w-node-_2eb0452c-9e25-8690-1f80-8452da4c6bad-9beea4c7, #w-node-ccc94f63-4652-7273-5fae-d63ae83c40ce-9beea4c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_34017782-1af4-d00d-a6fe-1ebb791f749a-9beea4c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_40c2c95b-1abc-317a-fb89-ecd827476742-9beea4c7, #w-node-_40c2c95b-1abc-317a-fb89-ecd827476753-9beea4c7, #w-node-_40c2c95b-1abc-317a-fb89-ecd827476764-9beea4c7, #w-node-_40c2c95b-1abc-317a-fb89-ecd827476775-9beea4c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9eebbefb-f971-35c6-dde0-5038eeef659c-9beea4c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_015d37e3-ff07-f164-ba31-85d086f0a133-9beea4c7, #w-node-f36d3ac0-1c11-88e9-283d-fcd11dcb5097-9beea4c7 {
  align-self: center;
}

#w-node-_928e7dd8-be05-4325-cb7e-887619da378e-9beea4c7, #w-node-c8a1d567-ad5a-b612-83f3-95018a5f801f-9beea4c7, #w-node-b04d022a-f501-3245-2635-c9b98747f714-9beea4c7, #w-node-bbcaade4-6393-34ce-8b2c-2102f25f91a4-9beea4c7, #w-node-_8f5bd63d-8918-71b9-7213-31322005d9a9-9beea4c7, #w-node-_5ae69e59-d1fd-2e7b-98be-6cae187c396c-9beea4c7, #w-node-_1d74b0da-c931-9996-4c7a-f4655e2743f0-9beea4c7, #w-node-_4eb3e9de-1246-6067-fe5b-0650a4b5caac-20886dc1, #w-node-_4eb3e9de-1246-6067-fe5b-0650a4b5cab9-20886dc1, #w-node-_91c69632-cb3d-7f82-66f5-29d4b849a116-20886dc1, #w-node-_91c69632-cb3d-7f82-66f5-29d4b849a10a-20886dc1, #w-node-_91c69632-cb3d-7f82-66f5-29d4b849a110-20886dc1, #w-node-eb8b9aac-42f6-0acd-359b-62e61d0394e1-20886dc1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0d16c037-a277-4e17-2f51-5bbc018a5060-20886dc1, #w-node-_0d16c037-a277-4e17-2f51-5bbc018a5090-20886dc1 {
  align-self: center;
}

#w-node-_633c9557-ef5a-e6f5-4e0d-ff3729361ae3-20886dc1, #w-node-_633c9557-ef5a-e6f5-4e0d-ff3729361aee-20886dc1, #w-node-_463dc3b6-371d-a4aa-cfad-033a04d0a665-20886dc1 {
  justify-self: end;
}

#w-node-_9eebbefb-f971-35c6-dde0-5038eeef659c-20886dc1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_015d37e3-ff07-f164-ba31-85d086f0a133-20886dc1 {
  align-self: center;
}

#w-node-_599e9f23-7d2c-6e5c-b6dd-6e1f50572794-20886dc1, #w-node-_599e9f23-7d2c-6e5c-b6dd-6e1f5057279f-20886dc1 {
  justify-self: end;
}

#w-node-cce9edbd-dafc-0df9-ceb4-06b07d8d73d5-6b2778e4, #w-node-cf0e2036-3b94-388a-b05a-12f2a36b6898-6b2778e4, #w-node-e79e352c-4450-90e9-f34f-9f64b10a6a5f-6b2778e4, #w-node-_0f815b2d-2a91-e152-f103-977bf0b23b95-6b2778e4, #w-node-b4b7cd74-9848-7882-c9de-e0d70b03430d-6b2778e4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9eebbefb-f971-35c6-dde0-5038eeef659c-6b2778e4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_015d37e3-ff07-f164-ba31-85d086f0a133-6b2778e4, #w-node-fe87fd4d-0b01-2caf-328a-03c4897fde22-6b2778e4, #w-node-fe87fd4d-0b01-2caf-328a-03c4897fde52-6b2778e4 {
  align-self: center;
}

#w-node-e915eb24-1fc9-191a-531b-0fa61ab31d75-6b2778e4, #w-node-e915eb24-1fc9-191a-531b-0fa61ab31d76-6b2778e4, #w-node-e239a975-cf15-ac58-4c80-3a45bfa81887-6b2778e4, #w-node-_69c27c6d-83ef-29ef-cfee-9e9915b2f505-6b2778e4, #w-node-bdfc0206-3a70-5b3a-3a5f-0de8a355417b-6b2778e4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-efeb5f34-5bad-7f44-8816-7a0575d89061-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d89066-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d8906b-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d89070-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d89076-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d8907c-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d89082-11a19ed9 {
  justify-self: start;
}

#w-node-efeb5f34-5bad-7f44-8816-7a0575d8918f-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d891a8-11a19ed9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-efeb5f34-5bad-7f44-8816-7a0575d891ab-11a19ed9 {
  justify-self: start;
}

#w-node-efeb5f34-5bad-7f44-8816-7a0575d891ad-11a19ed9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-efeb5f34-5bad-7f44-8816-7a0575d891b0-11a19ed9 {
  justify-self: start;
}

#w-node-efeb5f34-5bad-7f44-8816-7a0575d89219-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d89223-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d89224-11a19ed9, #w-node-d641ed51-61b6-faf1-48e1-cd6febb1a21f-11a19ed9, #w-node-d641ed51-61b6-faf1-48e1-cd6febb1a220-11a19ed9, #w-node-fda11fd8-1a50-f0a0-db34-bf2697784835-11a19ed9, #w-node-_29964046-f071-a750-a5a4-cf19784c7783-11a19ed9, #w-node-_91c085ea-62ec-bb77-e40e-c6c6cc7c42d5-11a19ed9, #w-node-_23d6b02e-4258-922f-2fab-3f99025b84f9-11a19ed9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-efeb5f34-5bad-7f44-8816-7a0575d89292-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d89297-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d8929c-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d892a1-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d892a6-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d892ab-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d892b5-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d892ba-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d892bf-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d892c4-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d892c9-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d892ce-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d892d3-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d892d8-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d892dd-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d892e2-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d892e7-11a19ed9 {
  justify-self: start;
}

#w-node-efeb5f34-5bad-7f44-8816-7a0575d892eb-11a19ed9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-efeb5f34-5bad-7f44-8816-7a0575d892ec-11a19ed9 {
  justify-self: start;
}

#w-node-efeb5f34-5bad-7f44-8816-7a0575d892ee-11a19ed9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-efeb5f34-5bad-7f44-8816-7a0575d892f1-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d892f6-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d892fb-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d89310-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d89315-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d8931a-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d8931f-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d89324-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d89329-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d89333-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d89338-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d8933d-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d89342-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d89347-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d8934c-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d89351-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d89356-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d8935b-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d89360-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d89365-11a19ed9 {
  justify-self: start;
}

#w-node-efeb5f34-5bad-7f44-8816-7a0575d89369-11a19ed9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-efeb5f34-5bad-7f44-8816-7a0575d8936a-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d8936f-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d89374-11a19ed9, #w-node-efeb5f34-5bad-7f44-8816-7a0575d89379-11a19ed9 {
  justify-self: start;
}

#w-node-efeb5f34-5bad-7f44-8816-7a0575d893ff-11a19ed9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-efeb5f34-5bad-7f44-8816-7a0575d8945b-11a19ed9 {
  justify-self: start;
}

#w-node-_2980ebea-c8d5-b712-fc9e-f6ae1399ded9-61e59c81, #w-node-_537fac61-f7bf-a48d-5f44-34d1bcdcf99c-61e59c81, #w-node-_2e3d9838-ca15-ff02-4d47-e78b463dc770-61e59c81, #w-node-be30ff2c-6fb8-60b9-5f8a-32e6faf6bc69-61e59c81, #w-node-ea36f332-360c-ed07-1c59-d996c1e87b3d-61e59c81 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9eebbefb-f971-35c6-dde0-5038eeef659c-1820f486 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_015d37e3-ff07-f164-ba31-85d086f0a133-1820f486 {
  align-self: center;
}

#w-node-_0c1d7e31-4401-d87b-bd5a-9bdd482d71c7-1820f486 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_0c1d7e31-4401-d87b-bd5a-9bdd482d71d5-1820f486 {
  align-self: center;
}

#w-node-_9d833c3e-c0ae-0198-cec9-5d762954c430-1820f486, #w-node-_9d833c3e-c0ae-0198-cec9-5d762954c48b-1820f486 {
  justify-self: stretch;
}

@media screen and (min-width: 1920px) {
  #w-node-_169c6e22-ea9e-366a-f34a-b15f8998949a-2a265153, #w-node-_5e3e010c-b0b5-7455-c06a-85bfba47fd9e-b42bab1a {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (min-width: 1280px) {
  #w-node-ee93dc0a-8981-8975-456c-c7827354be72-2a265153, #w-node-_2c1f1ce9-1d6c-8277-59a5-2ac6ea882730-2a265153, #w-node-_2c1f1ce9-1d6c-8277-59a5-2ac6ea882721-2a265153, #w-node-_169c6e22-ea9e-366a-f34a-b15f8998949a-2a265153, #w-node-_169c6e22-ea9e-366a-f34a-b15f89989498-2a265153, #w-node-_5005ce6f-6bd3-793e-2abe-073f689c5fb8-2a265153, #w-node-_5005ce6f-6bd3-793e-2abe-073f689c5fc8-2a265153, #w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca10330-67180df6, #w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca1039b-67180df6, #w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca1039d-67180df6, #w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca103ac-67180df6, #w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca103bc-67180df6, #w-node-_80649b76-2a01-e77f-adba-13741bb64b7b-b85d3cf0, #w-node-_80649b76-2a01-e77f-adba-13741bb64bbd-b85d3cf0, #w-node-_80649b76-2a01-e77f-adba-13741bb64bbf-b85d3cf0, #w-node-_80649b76-2a01-e77f-adba-13741bb64be2-b85d3cf0, #w-node-_80649b76-2a01-e77f-adba-13741bb64bf2-b85d3cf0, #w-node-faff14fb-4fd9-5c84-d23f-a071c14cfb0e-269b6a2e, #w-node-faff14fb-4fd9-5c84-d23f-a071c14cfb50-269b6a2e, #w-node-faff14fb-4fd9-5c84-d23f-a071c14cfb52-269b6a2e, #w-node-faff14fb-4fd9-5c84-d23f-a071c14cfb75-269b6a2e, #w-node-faff14fb-4fd9-5c84-d23f-a071c14cfb85-269b6a2e, #w-node-e83eaca8-3034-9d70-e0cc-04479716a260-b42bab1a, #w-node-fc7b9652-562c-1546-96e7-3f573583b0ca-b42bab1a, #w-node-fc7b9652-562c-1546-96e7-3f573583b0d6-b42bab1a, #w-node-fc7b9652-562c-1546-96e7-3f573583b0d8-b42bab1a, #w-node-fc7b9652-562c-1546-96e7-3f573583b0de-b42bab1a, #w-node-fc7b9652-562c-1546-96e7-3f573583b0e4-b42bab1a, #w-node-fc7b9652-562c-1546-96e7-3f573583b0ea-b42bab1a, #w-node-b06b6fb8-a025-74b2-6699-85bfccc9467f-b42bab1a, #w-node-_34017782-1af4-d00d-a6fe-1ebb791f746e-9beea4c7, #w-node-_2d65cd66-cc38-d143-0e5e-bfe3b3f23915-9beea4c7, #w-node-_99aaeb30-3efd-5c58-30fb-31e00e024917-9beea4c7, #w-node-b7295812-b8dd-ec8f-583a-9d7e0ab8ff75-9beea4c7, #w-node-_035cba75-90a6-201b-fe1b-6beebb06a906-9beea4c7, #w-node-_34017782-1af4-d00d-a6fe-1ebb791f749a-9beea4c7, #w-node-_4eb3e9de-1246-6067-fe5b-0650a4b5caac-20886dc1, #w-node-_4eb3e9de-1246-6067-fe5b-0650a4b5cb09-20886dc1, #w-node-_4eb3e9de-1246-6067-fe5b-0650a4b5cb15-20886dc1, #w-node-_4eb3e9de-1246-6067-fe5b-0650a4b5cb17-20886dc1, #w-node-_4eb3e9de-1246-6067-fe5b-0650a4b5cb1d-20886dc1, #w-node-_4eb3e9de-1246-6067-fe5b-0650a4b5cb23-20886dc1, #w-node-_4eb3e9de-1246-6067-fe5b-0650a4b5cb29-20886dc1, #w-node-_55fbc00f-feb4-294f-4b1f-2b7c51fc2350-6b2778e4, #w-node-d1482620-d173-6ef8-a591-53847d58bc7a-6b2778e4, #w-node-b978c046-0fcc-2353-31e0-c38b97d1e7e5-6b2778e4, #w-node-_81eafc03-485f-66ed-397d-eb7c077dcbd1-6b2778e4, #w-node-_6ad8ba97-6c84-92fd-79ed-786ac82699b0-6b2778e4, #w-node-d49e6f47-f01f-b6b8-bd35-172e03f828d8-6b2778e4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_015d37e3-ff07-f164-ba31-85d086f0a133-68a88ed4 {
    align-self: start;
  }

  #w-node-_0609248e-d729-371a-35b9-f8594d1c4686-68a88ed4 {
    align-self: auto;
  }

  #w-node-_0c1d7e31-4401-d87b-bd5a-9bdd482d71d5-68a88ed4 {
    align-self: start;
  }

  #w-node-fa93fd38-0bcc-c1b0-9864-b5b2df3a4934-68a88ed4 {
    align-self: auto;
  }

  #w-node-f5e7a89d-b3dd-f6ab-a13d-88c9a91109d9-a91109c7 {
    justify-self: center;
  }

  #w-node-f5e7a89d-b3dd-f6ab-a13d-88c9a91109e4-a91109c7 {
    justify-self: auto;
  }

  #w-node-_015d37e3-ff07-f164-ba31-85d086f0a133-2a265153 {
    align-self: start;
  }

  #w-node-fa93fd38-0bcc-c1b0-9864-b5b2df3a4934-2a265153 {
    align-self: auto;
  }

  #w-node-_015d37e3-ff07-f164-ba31-85d086f0a133-67180df6 {
    align-self: start;
  }

  #w-node-fa93fd38-0bcc-c1b0-9864-b5b2df3a4934-67180df6 {
    align-self: auto;
  }

  #w-node-_015d37e3-ff07-f164-ba31-85d086f0a133-b85d3cf0 {
    align-self: start;
  }

  #w-node-fa93fd38-0bcc-c1b0-9864-b5b2df3a4934-b85d3cf0 {
    align-self: auto;
  }

  #w-node-_015d37e3-ff07-f164-ba31-85d086f0a133-269b6a2e {
    align-self: start;
  }

  #w-node-fa93fd38-0bcc-c1b0-9864-b5b2df3a4934-269b6a2e {
    align-self: auto;
  }

  #w-node-_8d9ab1f5-d309-8569-3e4e-94c9bf62cc73-b42bab1a {
    grid-area: 1 / 1 / 2 / 3;
    justify-self: start;
  }

  #w-node-_0c1e5b20-e961-3500-a383-142c4c4fd7bf-b42bab1a {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-de67c99e-b72d-f547-2458-a096c6648d3a-b42bab1a, #w-node-b06b6fb8-a025-74b2-6699-85bfccc9467f-b42bab1a {
    order: -9999;
  }

  #w-node-_015d37e3-ff07-f164-ba31-85d086f0a133-b42bab1a {
    align-self: start;
  }

  #w-node-d9724828-ed4e-8f33-fbce-0563d207fa79-b42bab1a, #w-node-f36d3ac0-1c11-88e9-283d-fcd11dcb5096-b42bab1a, #w-node-fa93fd38-0bcc-c1b0-9864-b5b2df3a4934-b42bab1a {
    align-self: auto;
  }

  #w-node-ccc94f63-4652-7273-5fae-d63ae83c40ce-9beea4c7, #w-node-_34017782-1af4-d00d-a6fe-1ebb791f749a-9beea4c7 {
    order: -9999;
  }

  #w-node-_015d37e3-ff07-f164-ba31-85d086f0a133-9beea4c7 {
    align-self: start;
  }

  #w-node-f36d3ac0-1c11-88e9-283d-fcd11dcb5096-9beea4c7, #w-node-fa93fd38-0bcc-c1b0-9864-b5b2df3a4934-9beea4c7, #w-node-de6ada49-291d-e52e-6d46-0aac61c51f41-9beea4c7 {
    align-self: auto;
  }

  #w-node-_633c9557-ef5a-e6f5-4e0d-ff3729361ae3-20886dc1 {
    justify-self: center;
  }

  #w-node-_633c9557-ef5a-e6f5-4e0d-ff3729361aee-20886dc1 {
    justify-self: auto;
  }

  #w-node-_015d37e3-ff07-f164-ba31-85d086f0a133-20886dc1 {
    align-self: start;
  }

  #w-node-d9724828-ed4e-8f33-fbce-0563d207fa79-20886dc1, #w-node-_68a41584-d2de-604f-d078-4342d98aac90-20886dc1, #w-node-_04ecf1d2-fcb6-bf71-0a73-a71a5b6b4466-20886dc1 {
    align-self: auto;
  }

  #w-node-_599e9f23-7d2c-6e5c-b6dd-6e1f50572794-20886dc1 {
    justify-self: center;
  }

  #w-node-_599e9f23-7d2c-6e5c-b6dd-6e1f5057279f-20886dc1 {
    justify-self: auto;
  }

  #w-node-_015d37e3-ff07-f164-ba31-85d086f0a133-6b2778e4, #w-node-_015d37e3-ff07-f164-ba31-85d086f0a133-1820f486, #w-node-_0c1d7e31-4401-d87b-bd5a-9bdd482d71d5-1820f486 {
    align-self: start;
  }

  #w-node-fa93fd38-0bcc-c1b0-9864-b5b2df3a4934-1820f486 {
    align-self: auto;
  }
}

@media screen and (max-width: 767px) {
  #w-node-f5e7a89d-b3dd-f6ab-a13d-88c9a91109d9-a91109c7 {
    justify-self: center;
  }

  #w-node-f5e7a89d-b3dd-f6ab-a13d-88c9a91109e4-a91109c7 {
    justify-self: start;
  }

  #w-node-_2c1f1ce9-1d6c-8277-59a5-2ac6ea882730-2a265153, #w-node-_169c6e22-ea9e-366a-f34a-b15f89989498-2a265153, #w-node-_5005ce6f-6bd3-793e-2abe-073f689c5fc8-2a265153, #w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca1039b-67180df6, #w-node-d6a3a2ad-680d-8191-03d7-ccdb5ca103bc-67180df6, #w-node-_80649b76-2a01-e77f-adba-13741bb64bbd-b85d3cf0, #w-node-_80649b76-2a01-e77f-adba-13741bb64bf2-b85d3cf0, #w-node-faff14fb-4fd9-5c84-d23f-a071c14cfb50-269b6a2e, #w-node-faff14fb-4fd9-5c84-d23f-a071c14cfb85-269b6a2e, #w-node-_34017782-1af4-d00d-a6fe-1ebb791f749a-9beea4c7 {
    order: -9999;
  }

  #w-node-_40c2c95b-1abc-317a-fb89-ecd827476742-9beea4c7, #w-node-_40c2c95b-1abc-317a-fb89-ecd827476753-9beea4c7 {
    justify-self: start;
  }

  #w-node-_40c2c95b-1abc-317a-fb89-ecd827476764-9beea4c7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_40c2c95b-1abc-317a-fb89-ecd827476775-9beea4c7 {
    justify-self: start;
  }

  #w-node-_633c9557-ef5a-e6f5-4e0d-ff3729361ae3-20886dc1 {
    justify-self: center;
  }

  #w-node-_633c9557-ef5a-e6f5-4e0d-ff3729361aee-20886dc1 {
    justify-self: start;
  }

  #w-node-_599e9f23-7d2c-6e5c-b6dd-6e1f50572794-20886dc1 {
    justify-self: center;
  }

  #w-node-_599e9f23-7d2c-6e5c-b6dd-6e1f5057279f-20886dc1 {
    justify-self: start;
  }

  #w-node-_537fac61-f7bf-a48d-5f44-34d1bcdcf99c-61e59c81 {
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-d5cb6d33-b96f-b081-cc95-d2c5c76051f1-c76051e4, #w-node-d5cb6d33-b96f-b081-cc95-d2c5c7605204-c76051e4, #w-node-d5cb6d33-b96f-b081-cc95-d2c5c760520e-c76051e4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9eebbefb-f971-35c6-dde0-5038eeef659c-68a88ed4, #w-node-_0c1d7e31-4401-d87b-bd5a-9bdd482d71c7-68a88ed4, #w-node-_9eebbefb-f971-35c6-dde0-5038eeef659c-2a265153, #w-node-_9eebbefb-f971-35c6-dde0-5038eeef659c-67180df6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
  }

  #w-node-_19af35ec-1609-fe59-c9ca-8108cffb49fb-cd6f9a67 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9eebbefb-f971-35c6-dde0-5038eeef659c-b85d3cf0, #w-node-_9eebbefb-f971-35c6-dde0-5038eeef659c-269b6a2e, #w-node-_9eebbefb-f971-35c6-dde0-5038eeef659c-b42bab1a {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
  }

  #w-node-_40c2c95b-1abc-317a-fb89-ecd827476742-9beea4c7 {
    justify-self: start;
  }

  #w-node-_40c2c95b-1abc-317a-fb89-ecd827476753-9beea4c7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_40c2c95b-1abc-317a-fb89-ecd827476764-9beea4c7, #w-node-_40c2c95b-1abc-317a-fb89-ecd827476775-9beea4c7 {
    justify-self: start;
  }

  #w-node-_9eebbefb-f971-35c6-dde0-5038eeef659c-9beea4c7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
  }

  #w-node-_928e7dd8-be05-4325-cb7e-887619da378e-9beea4c7 {
    justify-self: start;
  }

  #w-node-c8a1d567-ad5a-b612-83f3-95018a5f801f-9beea4c7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-b04d022a-f501-3245-2635-c9b98747f714-9beea4c7, #w-node-bbcaade4-6393-34ce-8b2c-2102f25f91a4-9beea4c7 {
    justify-self: start;
  }

  #w-node-_9eebbefb-f971-35c6-dde0-5038eeef659c-20886dc1, #w-node-_9eebbefb-f971-35c6-dde0-5038eeef659c-6b2778e4, #w-node-_9eebbefb-f971-35c6-dde0-5038eeef659c-1820f486, #w-node-_0c1d7e31-4401-d87b-bd5a-9bdd482d71c7-1820f486 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
  }
}


