:root {
  --white-var: #fcfcfc;
  --paragraph-font: Montserrat, sans-serif;
  --black-var: #272727;
  --heading-font: Ubuntu, Helvetica, sans-serif;
  --grey-text: #818383;
  --almost-white: #eaf2ef;
  --brand-colour: #003179;
  --section-spacing: 60px;
  --dark-white: #f2f5f4;
  --border-width: 1px;
  --corner-rounding: 3px;
  --bright-accent: #33a1fd;
  --transparent: transparent;
  --light-grey: #d1d4d4;
  --big-corners: 10px;
  --almost-brand: #0f3a79;
  --contrast: var(--bright-accent);
  --header-text-width: 500px;
  --white: white;
  --black: black;
}

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

.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-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

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

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

body {
  background-color: var(--white-var);
  font-family: var(--paragraph-font);
  color: var(--black-var);
  font-size: 14px;
  line-height: 20px;
}

h1 {
  font-family: var(--heading-font);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  font-family: var(--heading-font);
  font-size: 3.2em;
  font-weight: 300;
  line-height: 1.2;
}

h3 {
  font-family: var(--heading-font);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.85em;
  font-weight: 300;
  line-height: 1.5;
}

h4 {
  font-family: var(--heading-font);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

p {
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

a {
  text-align: center;
  text-decoration: underline;
}

a:active {
  color: var(--grey-text);
}

ul {
  color: var(--grey-text);
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 20px;
  list-style-type: disc;
}

.logo {
  max-height: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.navbar {
  border: 1px solid var(--almost-white);
  background-color: var(--white-var);
  height: 66px;
  position: fixed;
  inset: 0% 0% auto;
}

.section {
  padding-top: var(--section-spacing);
  padding-bottom: var(--section-spacing);
  min-height: 80px;
  display: block;
  position: relative;
}

.section.cc-light-neutral {
  z-index: 2;
  padding-top: var(--section-spacing);
  padding-bottom: var(--section-spacing);
  background-color: var(--dark-white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: block;
  position: relative;
}

.section.cc-light-neutral.ccprojects-page {
  padding-top: 40px;
  padding-bottom: 40px;
  position: sticky;
  top: 60px;
  box-shadow: 0 1px 5px #0000001a;
}

.section.cc-light-neutral.cc-cta {
  height: 50vh;
  display: flex;
}

.section.banner {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70vh;
  min-height: 800px;
  max-height: 1600px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.section.banner.cc-model {
  justify-content: center;
  height: 70vh;
  min-height: 600px;
  margin-bottom: -100px;
}

.section.cc-cloud {
  align-items: center;
  min-height: 1100px;
  display: flex;
  position: relative;
}

.section.cc-main-page-students {
  padding-top: 0;
  display: none;
}

.section.cc-altairix-advantage {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section.cc-page-banner {
  justify-content: center;
  align-items: center;
  height: 70vh;
  min-height: 400px;
  display: flex;
}

.section.cc-page-banner.cc-projects {
  height: 75vh;
}

.section.cc-portfolio-section {
  flex-direction: column;
  justify-content: center;
  min-height: 1500px;
  display: flex;
}

.section.cc-where-are-they-now {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50vh;
  min-height: 550px;
  display: flex;
}

.section.cc-brand-colour {
  background-color: var(--brand-colour);
  color: var(--dark-white);
  height: 60vh;
}

.section.cc-brand-colour.cc-cta {
  justify-content: center;
  align-items: center;
  height: 50vh;
  min-height: 600px;
  display: flex;
}

.section.cc-contact {
  padding-bottom: 150px;
}

.nav-div {
  margin-left: 20px;
  margin-right: 20px;
}

.button {
  border: var(--border-width) solid var(--black-var);
  border-radius: var(--corner-rounding);
  background-color: var(--brand-colour);
  color: var(--white-var);
  padding: 13px 25px;
  font-weight: 500;
}

.button:hover {
  border-color: var(--white-var);
  background-color: var(--bright-accent);
}

.button.cc-white {
  border: 1px solid var(--white-var);
  background-color: var(--transparent);
}

.button.cc-white:hover {
  background-color: var(--white-var);
  color: var(--black-var);
}

.button.cc-white.cc-fake-code {
  letter-spacing: .2em;
}

.button.cc-empty {
  border-style: solid;
  border-color: var(--brand-colour);
  background-color: var(--transparent);
  color: var(--brand-colour);
}

.button.cc-empty:hover {
  background-color: var(--brand-colour);
  color: var(--white-var);
}

.button.cc-submit-button {
  margin-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
}

.button.cc-little-left-space {
  margin-left: 5px;
}

.footer-light {
  border-style: none;
  border-width: 3px;
  border-color: var(--brand-colour) black black var(--brand-colour);
  padding: 100px 30px 40px;
  position: relative;
}

.container {
  z-index: 3;
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.footer-wrapper-two {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-divider-two {
  background-color: var(--almost-white);
  width: 100%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-copyright {
  color: #3a4554;
  text-align: center;
  text-decoration: none;
}

.footer-social-block-two {
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-left: -12px;
  display: flex;
}

.footer-social-link {
  margin-left: 12px;
}

.body {
  flex-direction: column;
  padding-top: 66px;
  font-size: 16px;
  line-height: 24px;
  display: flex;
}

.process-step {
  flex-direction: column;
  align-self: stretch;
  width: 30%;
  max-width: 300px;
  display: flex;
}

.process-image {
  border: 1px solid var(--light-grey);
  border-radius: var(--big-corners);
  object-fit: contain;
  height: 100px;
  margin-bottom: 0;
}

.team-cards {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: space-between;
  margin-top: 40px;
}

.cloud-image {
  z-index: 0;
  object-fit: contain;
  object-position: 0% 50%;
  max-width: none;
  height: 500px;
  display: block;
  position: absolute;
  bottom: 30%;
  left: -300px;
}

.form-label {
  text-align: left;
  margin-bottom: 15px;
  font-weight: 500;
}

.email {
  color: var(--black-var);
  font-weight: 400;
  line-height: 30px;
}

.divider-section {
  margin-top: 10px;
  margin-bottom: 10px;
}

.heading---enormous-decor {
  opacity: .3;
  color: var(--almost-brand);
  font-size: 190px;
  font-weight: 300;
  line-height: 1.3em;
}

.heading---enormous-decor.bright {
  opacity: 1;
  color: var(--brand-colour);
}

.heading---enormous-decor.cc-brighter {
  opacity: .6;
}

.div---young-devs {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40vh;
  min-height: 450px;
  display: flex;
}

.paragraph---challenge-section {
  color: var(--grey-text);
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}

.students-logo {
  object-fit: contain;
  height: 60px;
}

.student-logo-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  place-items: center;
  width: 100%;
}

.small-cloud {
  z-index: 1;
  opacity: .5;
  object-fit: contain;
  width: 45%;
  max-height: 400px;
  position: absolute;
  top: -100px;
  right: -15%;
}

.small-cloud.cc-lower {
  z-index: 4;
  opacity: .3;
  height: 250px;
  top: auto;
  bottom: 80px;
  right: 0;
}

.baby-cloud {
  position: absolute;
  top: 60%;
  left: 60%;
}

.cloud-text {
  z-index: 3;
  width: 50%;
  margin-right: 10px;
  position: relative;
}

.success-message, .error-message {
  background-color: var(--contrast);
}

.banner-subheading {
  color: var(--grey-text);
  width: 85%;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
}

.banner-subheading.cc-page {
  font-size: 1.4em;
  font-weight: 300;
  line-height: 1.6;
}

.banner-heading {
  color: var(--brand-colour);
  margin-bottom: 40px;
  font-size: 60px;
  line-height: 60px;
}

.banner-heading.cc-main {
  margin-bottom: 20px;
  font-size: 4.7em;
  font-weight: 400;
  line-height: 1.25;
}

.banner-container-2 {
  z-index: 2;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 850px;
  display: flex;
  position: relative;
}

.banner-container-2.cc-main {
  width: 850px;
  max-width: none;
}

.container-90vw {
  z-index: 2;
  width: 90vw;
  max-width: 1200px;
  position: relative;
}

.container-90vw.cc-where-are-they-now {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.advantages-section-heading {
  width: 60%;
  margin-bottom: 40px;
}

.div---hero-buttons {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  margin-top: 40px;
  display: flex;
}

.image-11 {
  height: 40px;
  display: none;
}

.service-div {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--grey-text);
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 16px;
  display: flex;
}

.horizontal-flex {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.horizontal-flex.cc-left {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  margin-bottom: 50px;
}

.horizontal-flex.cc-spread {
  justify-content: space-between;
  align-items: flex-start;
}

.horizontal-flex.cc-spread.cc-model-step {
  align-items: center;
  height: 50vh;
}

.horizontal-flex.cc-spread.cc-vertical-on-tablet {
  align-items: stretch;
}

.horizontal-flex.cc-portfolio-first-block {
  margin-bottom: 100px;
}

.horizontal-flex.cc-team-cards {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 20px;
}

.horizontal-flex.cc-close-columns {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.div-block-10 {
  border-right: 1px solid #d1d4d4;
  align-self: center;
  height: 80px;
}

.container-80vw {
  width: 80vw;
  max-width: 1200px;
}

.main-half-width-div {
  flex-direction: column;
  justify-content: center;
  width: 50%;
  margin-bottom: 40px;
}

.main-half-width-div.cc-title {
  min-width: 550px;
  margin-bottom: 50px;
}

.main-page-photo {
  border: 1px solid var(--grey-text);
  border-radius: var(--big-corners) 0px;
  object-fit: cover;
  object-position: 75% 50%;
  width: 100%;
  height: 100%;
}

.software-feature-oval {
  border-left: 1px solid var(--light-grey);
  color: var(--grey-text);
  padding: 0 0 0 20px;
  font-size: 1.25em;
  line-height: 1.5;
}

.main-page-features-list {
  margin-bottom: 40px;
  padding-left: 30px;
  line-height: 35px;
}

.main-info-image {
  border-radius: var(--big-corners);
  background-color: var(--brand-colour);
  width: 45%;
  min-width: 450px;
  padding-top: 40px;
  padding-left: 40px;
  position: relative;
}

.divider-div {
  border-bottom: 1px solid var(--light-grey);
}

.div---divider {
  border-bottom: 1px solid var(--light-grey);
  width: 100%;
  height: 1px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.div---45-width {
  width: 45%;
}

.div---45-width.cc-extra-space {
  margin-right: 60px;
}

.contrast-bubble {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-radius: var(--big-corners);
  background-color: var(--brand-colour);
  color: var(--white-var);
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  display: flex;
}

.student-bubble-image {
  aspect-ratio: 1;
  border-radius: var(--big-corners);
  background-color: var(--dark-white);
  object-fit: contain;
  height: 160px;
  padding: 20px;
}

.h3-small {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 30px;
  display: block;
}

.view-projects {
  color: var(--grey-text);
  font-size: 14px;
  text-decoration: none;
}

.view-projects:hover {
  color: var(--black-var);
}

.project-logos-grey {
  object-fit: contain;
  height: 75px;
}

.projects-page-logo {
  object-fit: contain;
  height: 220px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-first-text {
  width: 50%;
}

.portfolio-facts-column {
  border-radius: var(--corner-rounding);
  background-color: var(--almost-white);
  width: 300px;
  box-shadow: 4px 4px 10px #0000001a;
}

.portfolio-info-label {
  margin-bottom: 10px;
  font-weight: 600;
}

.portfolio-info-item {
  border-bottom: 1px solid var(--light-grey);
  width: 100%;
  padding: 30px;
}

.div-block-12 {
  flex: 1;
}

.h2-smaller {
  font-size: 40px;
  line-height: 60px;
}

.h2-smaller.cc-portfolio-heading {
  margin-bottom: 30px;
}

.portfolio-second-text {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.portfolio-list {
  color: var(--grey-text);
  width: 90%;
  margin-bottom: 60px;
  margin-left: 5px;
  font-weight: 300;
  line-height: 28px;
}

.portfolio-list-item {
  margin-bottom: 10px;
}

.black-text {
  color: var(--black-var);
  font-weight: 400;
}

.paragraph---extra-space, .space-below {
  margin-bottom: 60px;
}

.centred {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.decorative-number {
  color: var(--dark-white);
  font-size: 250px;
  line-height: 250px;
  position: static;
  inset: auto;
}

.model-decoration-div {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45%;
  display: flex;
  position: relative;
}

.model-step-label {
  z-index: 2;
  font-family: var(--heading-font);
  color: var(--black-var);
  font-size: 45px;
  font-weight: 300;
  line-height: 50px;
  position: absolute;
}

.cleaner-model-section {
  display: none;
}

.div---50-width {
  width: 50%;
}

.hipaa {
  aspect-ratio: 1;
  border: 1px solid var(--light-grey);
  border-radius: var(--corner-rounding);
  object-fit: contain;
  align-self: center;
  height: 200px;
  padding: 10px;
}

.div---60-width {
  width: 60%;
}

.div---little-logo-square {
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.little-logo-square {
  aspect-ratio: 1;
  border: 1px solid var(--light-grey);
  border-radius: var(--corner-rounding);
  object-fit: contain;
  height: 200px;
  padding: 20px;
}

.fake-code {
  color: var(--light-grey);
  text-align: left;
  letter-spacing: .2em;
  margin-bottom: 0;
  font-size: 22px;
  line-height: 45px;
}

.div-block-14 {
  background-color: var(--brand-colour);
  color: var(--almost-white);
  margin-bottom: 25px;
  padding: 20px;
  display: block;
}

.paragraph---off-white {
  color: var(--almost-white);
}

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

.h3-less-spaced {
  margin-bottom: 20px;
  line-height: 1.1;
}

.div---student-logos-heading {
  text-align: center;
  margin-bottom: 100px;
}

.about-name {
  margin-bottom: 0;
  line-height: 36px;
}

.form-div {
  background-color: var(--white-var);
  width: 70%;
  padding: 40px;
  box-shadow: 0 15px 20px #0000001a;
}

.div-block-16 {
  z-index: 1;
  background-color: var(--dark-white);
  width: 100%;
  height: 500px;
  position: absolute;
  inset: 0% 0% auto;
}

.contact-text {
  width: 30%;
}

.select-field {
  background-color: var(--white-var);
  font-weight: 400;
}

.select-field.form-field {
  color: var(--grey-text);
}

.form-field {
  border: 1px solid var(--grey-text);
  border-radius: var(--corner-rounding);
  height: 45px;
  margin-bottom: 35px;
  font-size: 18px;
  line-height: 30px;
}

.form-field::placeholder {
  color: var(--grey-text);
}

.form-field.cc-message {
  font-size: 16px;
}

.contact-heading {
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 300;
}

.only-on-mobile {
  display: none;
}

.main-page-list-item {
  margin-bottom: 10px;
  line-height: 1.6em;
}

.address {
  margin-top: 40px;
}

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

.section-7 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  margin-top: 80px;
  padding: 5%;
  display: flex;
}

.service-h1 {
  color: #fafafa;
  font-family: Montserrat, sans-serif;
  font-size: 3.9rem;
  font-weight: 600;
  line-height: 1;
}

.service-h1.dark-altarix {
  font-family: var(--heading-font);
  color: var(--black-var);
}

.effective-date {
  color: #fafafa;
  font-size: 16px;
  font-style: italic;
  font-weight: 100;
}

.legal-paragraph {
  color: #fafafa;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.legal-paragraph.dark-altairix {
  color: var(--black-var);
}

.legal-h2 {
  color: #fafafa;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.legal-h2.dark-altairix {
  font-family: var(--heading-font);
  color: var(--black-var);
}

.legal-list-item {
  color: #fafafa;
}

.legal-list-item.dark-altairix {
  color: var(--black-var);
}

.link-7 {
  color: #f7a504;
}

.altairix-pp {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  margin-top: 80px;
  padding: 5%;
  display: flex;
}

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

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

.div-block-17 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex: 1;
  justify-content: flex-end;
  margin-right: 1em;
  display: flex;
}

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

.heading-10 {
  font-size: 3.1em;
  line-height: 1.2;
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .icon {
    color: var(--brand-colour);
  }

  .section.cc-light-neutral.ccprojects-page {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section.cc-cloud {
    margin-bottom: 0;
  }

  .section.cc-where-are-they-now {
    min-height: 600px;
  }

  .button.cc-little-left-space {
    margin-left: 0;
  }

  .container {
    max-width: 728px;
  }

  .footer-wrapper-two {
    flex-wrap: wrap;
  }

  .body {
    font-size: 15px;
  }

  .process-step {
    align-self: stretch;
    width: 100%;
    max-width: 600px;
    padding-left: 7px;
    padding-right: 7px;
  }

  .team-cards {
    flex-direction: column;
    align-items: center;
  }

  .cloud-image {
    left: -450px;
  }

  .heading---enormous-decor {
    font-size: 145px;
  }

  .students-logo {
    height: 100px;
  }

  .banner-subheading.cc-page {
    font-size: 20px;
    line-height: 1.5em;
  }

  .banner-heading.cc-main {
    font-size: 60px;
  }

  .banner-container-2.cc-main {
    max-width: 95%;
  }

  .horizontal-flex.cc-left {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom: 25px;
  }

  .horizontal-flex.cc-spread.cc-vertical-on-tablet {
    flex-direction: column;
    align-items: center;
  }

  .horizontal-flex.cc-portfolio-first-block {
    margin-bottom: 80px;
  }

  .horizontal-flex.cc-wrap-on-mobile.cc-ctudents-page {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .container-80vw.cc-wider-on-tablet {
    width: 90vw;
  }

  .main-half-width-div {
    width: 100%;
  }

  .main-half-width-div.cc-title {
    width: 70%;
    min-width: auto;
  }

  .main-half-width-div.cc-text {
    margin-top: 20px;
  }

  .software-feature-oval {
    padding: 10px 20px;
    font-size: 16px;
  }

  .main-info-image {
    width: 100%;
    min-width: auto;
  }

  .portfolio-facts-column {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 250px 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row dense;
    width: 100%;
    display: grid;
  }

  .portfolio-info-item {
    border: 1px solid var(--light-grey);
    padding: 20px;
  }

  .h2-smaller.cc-portfolio-heading {
    font-size: 35px;
    line-height: 1.5em;
  }

  .portfolio-second-text {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column;
  }

  .h3-less-spaced {
    font-size: 24px;
    line-height: 1.25em;
  }

  .form-div {
    width: 90%;
  }

  .div-block-16 {
    height: 600px;
  }

  .contact-text {
    text-align: center;
    width: 60%;
  }

  .form-field, .form-field::placeholder {
    font-size: 16px;
  }

  .heading-9 {
    font-size: 24px;
    line-height: 1.5em;
  }

  .service-h1 {
    margin-bottom: 0;
    font-size: 3rem;
    line-height: 1.2;
  }
}

@media screen and (max-width: 767px) {
  .section.banner {
    text-align: center;
  }

  .section.cc-where-are-they-now {
    height: auto;
    min-height: auto;
  }

  .footer-light {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-copyright {
    text-align: left;
    line-height: 20px;
  }

  .footer-social-block-two {
    margin-top: 20px;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .body {
    font-size: 14px;
  }

  .process-step {
    align-self: auto;
    max-width: 400px;
    margin-bottom: 40px;
  }

  .process-image {
    margin-bottom: 20px;
  }

  .team-cards {
    flex-direction: column;
    align-items: center;
  }

  .cloud-image {
    bottom: 50%;
  }

  .divider-section {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .heading---enormous-decor {
    font-size: 100px;
  }

  .div---young-devs {
    min-height: 400px;
  }

  .paragraph---challenge-section {
    width: 70%;
    font-size: 16px;
    line-height: 1.25em;
  }

  .student-logo-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .cloud-text {
    width: 100%;
    margin-right: 0;
  }

  .banner-container-2 {
    width: auto;
  }

  .advantages-section-heading {
    width: 100%;
  }

  .service-div {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 14px;
  }

  .horizontal-flex {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: nowrap;
  }

  .horizontal-flex.cc-left {
    flex-wrap: wrap;
  }

  .horizontal-flex.cc-left.grid-on-mobile {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .horizontal-flex.cc-spread.cc-model-step {
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    margin-bottom: 150px;
  }

  .horizontal-flex.cc-spread.cc-vertical-on-tablet {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .horizontal-flex.cc-spread.cc-vertical-on-mobile {
    flex-direction: column;
  }

  .horizontal-flex.cc-portfolio-first-block {
    flex-direction: column;
    margin-bottom: 60px;
  }

  .horizontal-flex.cc-wrap-on-mobile {
    flex-wrap: wrap;
  }

  .div-block-10 {
    height: 40px;
  }

  .main-half-width-div.cc-title {
    width: 80%;
  }

  .software-feature-oval {
    padding-top: 0;
    padding-bottom: 0;
  }

  .projects-page-logo {
    order: -1;
  }

  .portfolio-first-text {
    width: 100%;
  }

  .portfolio-facts-column {
    grid-template-columns: 150px 1fr;
  }

  .h2-smaller.cc-portfolio-heading {
    font-size: 30px;
    line-height: 1.25em;
  }

  .model-step-label {
    font-size: 36px;
  }

  .hipaa {
    height: 150px;
  }

  .div---60-width {
    width: 90%;
  }

  .div---little-logo-square {
    order: -1;
    justify-content: flex-start;
  }

  .little-logo-square {
    height: 150px;
  }

  .gone-on-mobile {
    display: none;
  }

  .only-on-mobile {
    display: block;
  }

  .service-h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 479px) {
  p {
    font-size: 14px;
    line-height: 24px;
  }

  .section {
    text-align: left;
  }

  .section.cc-light-neutral.cc-cta {
    min-height: 600px;
  }

  .section.banner {
    height: 90vh;
    min-height: auto;
  }

  .section.cc-page-banner.cc-projects {
    max-height: 800px;
  }

  .section.cc-contact {
    padding-bottom: 100px;
  }

  .container {
    max-width: none;
  }

  .footer-wrapper-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .footer-social-block-two {
    margin-top: 20px;
  }

  .body {
    font-size: 12px;
  }

  .process-step {
    max-width: none;
  }

  .process-image {
    margin-bottom: 0;
  }

  .team-cards {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
    align-items: center;
  }

  .cloud-image {
    display: none;
  }

  .form-label {
    margin-bottom: 5px;
  }

  .heading---enormous-decor {
    font-size: 17vw;
  }

  .students-logo {
    height: 50px;
  }

  .student-logo-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  .small-cloud.cc-lower {
    right: -20px;
  }

  .banner-subheading {
    font-size: 16px;
    line-height: 24px;
  }

  .banner-subheading.cc-page {
    font-size: 18px;
  }

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

  .banner-heading.cc-main {
    width: 95%;
    font-size: 50px;
  }

  .div---hero-buttons {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-wrap: wrap;
  }

  .horizontal-flex {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .horizontal-flex.cc-left {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .horizontal-flex.cc-left.grid-on-mobile {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
  }

  .horizontal-flex.cc-spread.cc-vertical-on-tablet {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .horizontal-flex.cc-portfolio-first-block {
    margin-bottom: 40px;
  }

  .horizontal-flex.cc-close-columns {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
  }

  .horizontal-flex.cc-wrap-on-mobile, .horizontal-flex.cc-wrap-on-mobile.cc-ctudents-page {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .main-half-width-div.cc-title {
    width: 100%;
  }

  .main-page-features-list {
    line-height: 24px;
  }

  .main-info-image {
    margin-bottom: 20px;
  }

  .projects-page-logo {
    height: 150px;
    margin-left: 0;
  }

  .portfolio-facts-column {
    grid-template-columns: 1fr;
  }

  .div---50-width.cc-100-on-mobile {
    width: 100%;
  }

  .fake-code {
    font-size: 16px;
    line-height: 2em;
  }

  .div---student-logos-heading {
    margin-bottom: 60px;
  }

  .form-div {
    width: 100%;
    padding: 20px;
  }

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

  .form-field {
    margin-bottom: 25px;
  }

  .main-page-list-item {
    margin-bottom: 10px;
  }

  .cta-heading-model {
    width: 85%;
    font-size: 36px;
    line-height: 1.25em;
  }

  .div-block-17 {
    justify-content: flex-start;
  }
}

#w-node-_8f41af5e-2994-48d3-de10-470ef1591a0e-88cd7a6c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_76899bd9-a29a-94a3-40ac-fceb92f3dd9d-88cd7a6c {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_8fa7078a-31e8-3974-6bf8-5f42b4891c80-723a331e, #w-node-_8fa7078a-31e8-3974-6bf8-5f42b4891c81-723a331e, #w-node-_8fa7078a-31e8-3974-6bf8-5f42b4891c82-723a331e, #w-node-_8fa7078a-31e8-3974-6bf8-5f42b4891c83-723a331e, #w-node-_8fa7078a-31e8-3974-6bf8-5f42b4891c84-723a331e, #w-node-_8fa7078a-31e8-3974-6bf8-5f42b4891c85-723a331e, #w-node-_8fa7078a-31e8-3974-6bf8-5f42b4891c86-723a331e, #w-node-_8fa7078a-31e8-3974-6bf8-5f42b4891c87-723a331e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


