:root {
  --white: white;
  --text-primary: #475569;
  --text-black: #0f172a;
  --text-blue: #4f46e5;
  --text-grey: #64748b;
  --dark-grey: #333;
  --black: black;
  --light-grey: #999;
}

.body {
  background-color: var(--white);
  color: var(--text-primary);
  font-family: Inter, sans-serif;
  font-size: 1.1111vw;
  font-weight: 400;
  line-height: 100%;
}

.hero {
  justify-content: center;
  align-items: center;
  padding: 12em 1.5em 8em;
  display: flex;
}

.container {
  width: 100%;
  max-width: 72em;
}

.hero-flex {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.hero-img-box {
  z-index: 1;
  width: 16em;
  height: 16em;
  margin-top: 1em;
  position: relative;
}

.hero-img {
  z-index: 2;
  filter: contrast(120%) grayscale() saturate(20%);
  object-fit: cover;
  border-radius: 1.5em;
  width: 16em;
  height: 16em;
  transition: all .5s;
  position: relative;
}

.hero-img:hover {
  filter: contrast() grayscale(0%) saturate();
}

.hero-bg {
  background-color: #c7d2fe;
  border-radius: 1.5em;
  width: 16em;
  height: 16em;
  position: absolute;
  inset: 0%;
  transform: rotate(6deg);
}

.hero-text {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 42em;
  display: flex;
}

.hero-heading {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.h1 {
  color: var(--text-black);
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.75em;
  font-weight: 500;
  line-height: 100%;
}

.text-24 {
  font-size: 1.5em;
  line-height: 120%;
}

.text-24.md {
  font-weight: 500;
}

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

.hero-links {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  display: flex;
}

.hero-link {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  color: var(--text-black);
  border-radius: 1em;
  justify-content: flex-start;
  align-items: center;
  padding: .5em 1em;
  text-decoration: none;
  display: flex;
  box-shadow: 0 1px 3px #0000001a;
}

.hero-icon-svg {
  color: var(--text-blue);
  width: 1em;
  height: 1em;
}

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

.text-14 {
  font-size: .88em;
  line-height: 140%;
}

.text-14.sb {
  font-weight: 600;
}

.text-14.md {
  font-weight: 500;
}

.text-18 {
  font-size: 1.13em;
  font-weight: 500;
  line-height: 140%;
}

.text-18.md {
  font-weight: 600;
}

.header {
  z-index: 1000;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: #fffc;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 4.75em;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.header-container {
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80em;
  display: flex;
  position: relative;
}

.logo {
  color: var(--text-blue);
  font-size: 1.25em;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
}

.header-btn {
  background-color: var(--text-blue);
  color: var(--white);
  border-radius: 2em;
  justify-content: center;
  align-items: center;
  padding: .5em 1.25em;
  font-size: .88em;
  font-weight: 600;
  line-height: 140%;
  text-decoration: none;
  display: flex;
  box-shadow: 0 7px 20px #4f46e540;
}

.facts {
  background-color: #0f172a;
  justify-content: center;
  align-items: center;
  padding: 3em 1.5em;
  display: flex;
}

.header-shadow {
  z-index: 1;
  width: 100%;
  position: absolute;
  inset: 0%;
  box-shadow: 0 2px 3px #0000001a;
}

.core {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 6em 1.5em;
  display: flex;
}

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

.fact {
  grid-column-gap: .25em;
  grid-row-gap: .25em;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 16.5em;
  line-height: 120%;
  display: flex;
}

.text-30 {
  font-size: 1.88em;
  line-height: 120%;
}

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

.core-wrap {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.core-sticky {
  z-index: 2;
  width: 22.69em;
  position: sticky;
  top: 6em;
}

.h2 {
  color: var(--text-black);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.88em;
  line-height: 120%;
}

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

.core-divider {
  background-color: var(--text-blue);
  width: 4em;
  height: .25em;
  margin-top: 1em;
}

.core-sticky-desc {
  margin-top: 1.5em;
}

.text-16 {
  font-size: 1em;
  line-height: 140%;
}

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

.core-cards {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 45.31em;
  display: grid;
}

.core-card {
  background-color: #f8fafc;
  border-radius: 1.5em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1.5em;
  display: flex;
}

.core-card-icon {
  background-color: var(--white);
  border-radius: .5em;
  justify-content: center;
  align-items: center;
  width: 2.75em;
  height: 2.75em;
  margin-bottom: 1em;
  display: flex;
  box-shadow: 0 1px 3px #0000001a;
}

.core-card-icon-svg {
  color: var(--text-black);
  width: 1.25em;
  height: 1.25em;
}

.core-card-heading {
  color: var(--text-black);
  margin-bottom: .75em;
}

.core-card-list {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.core-card-item {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.core-card-item-arrow {
  color: #a5b4fc;
  justify-content: center;
  align-items: center;
  width: .75em;
  height: .75em;
  display: flex;
}

.hero-badge {
  z-index: 3;
  grid-column-gap: .25em;
  grid-row-gap: .25em;
  background-color: var(--white);
  color: var(--text-black);
  border-radius: .75em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: .75em;
  font-weight: 700;
  display: flex;
  position: absolute;
  inset: auto -1.5em -1.5em auto;
  box-shadow: 0 7px 25px #00000026;
}

.text-12 {
  font-size: .75em;
  line-height: 120%;
}

.text-12.up {
  text-transform: uppercase;
}

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

.text-12.bold.up {
  text-transform: uppercase;
}

.journey {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 6em 1.5em;
  display: flex;
}

.journey-flex {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.journey-heading {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  color: var(--text-grey);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.journey-cards {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.journey-card {
  background-color: var(--white);
  border-radius: 1.5em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 2em;
  display: flex;
  box-shadow: 0 1px 3px #0000001a;
}

.journey-card-date {
  color: var(--text-blue);
  background-color: #e0e7ff;
  border-radius: 5em;
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
  padding: .25em .75em;
  font-weight: 600;
  display: flex;
}

.journey-card-heading {
  margin-bottom: 1em;
  font-weight: 600;
}

.text-20 {
  font-size: 1.25em;
  line-height: 140%;
}

.journey-card-list {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.journey-card-item {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.journey-card-point {
  background-color: #cbd5e1;
  border-radius: 100%;
  width: .38em;
  min-width: .38em;
  height: .38em;
  min-height: .38em;
  margin-top: .5em;
}

.projects {
  background-color: #f8fafc;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 6em 1.5em;
  display: flex;
}

.projects-flex {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.projects-heading {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46.88em;
  display: flex;
}

.projects-list {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.project {
  color: var(--text-primary);
  border-radius: 1.5em;
  flex-flow: column;
  text-decoration: none;
  transition: all .5s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px #0000001a;
}

.project:hover {
  box-shadow: 0 5px 25px #4f46e533;
}

.project-img-box {
  width: 100%;
  height: 12.7em;
  overflow: hidden;
}

.project-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.project-about {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 18em;
  padding: 2em;
  display: flex;
}

.project-heading {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.h3 {
  color: var(--text-black);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.13em;
  font-weight: 700;
  line-height: 120%;
}

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

.project-bottom {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.project-bottom-list {
  grid-column-gap: 1em;
  grid-row-gap: .5em;
  color: var(--text-grey);
  text-transform: uppercase;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
  display: flex;
}

.text-10 {
  font-size: .63em;
  line-height: 120%;
}

.project-bottom-link {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  color: var(--text-blue);
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
  display: flex;
}

.project-icon {
  width: .75em;
}

.project-badge {
  z-index: 2;
  background-color: var(--white);
  color: var(--text-black);
  text-transform: uppercase;
  border-radius: 2em;
  padding: .25em .75em;
  font-weight: 500;
  position: absolute;
  inset: 1em 1em auto auto;
}

.profile {
  background-color: #0f172a;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 6em 1.5em;
  display: flex;
}

.profile-flex {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.profile-left {
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.profile-right {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  color: var(--white);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.profile-heading {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.profile-heading-icon {
  color: #a5b4fc;
  width: 1.5em;
  height: 1.5em;
}

.profile-about {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  color: var(--text-grey);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.profile-right-top {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.profile-right-languages {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.profile-right-language {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.profile-right-language-icon {
  color: var(--white);
  background-color: #1e293b;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3em;
  height: 3em;
  font-weight: 700;
  display: flex;
}

.profile-right-language-name {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 19.69em;
  display: flex;
}

.profile-right-language-progress {
  background-color: #1e293b;
  border-radius: .25em;
  width: 8em;
  height: .25em;
  margin-left: auto;
  overflow: hidden;
}

.profile-right-language-progress-line {
  background-color: #6366f1;
  border-radius: .25em;
  width: 100%;
  height: 100%;
}

.profile-right-language-progress-line._40 {
  width: 40%;
}

.profile-right-bottom {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  background-color: var(--text-blue);
  border-radius: 1.5em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 2em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.profile-right-bottom-h {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.profile-right-bottom-btns {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  display: flex;
}

.white-btn {
  background-color: var(--white);
  color: var(--text-blue);
  border-radius: 2em;
  justify-content: center;
  align-items: center;
  padding: .5em 1.25em;
  font-size: .88em;
  font-weight: 600;
  line-height: 140%;
  text-decoration: none;
  display: flex;
  box-shadow: 0 7px 20px #4f46e540;
}

.blue-btn {
  color: var(--white);
  background-color: #5b21b6;
  border-radius: 2em;
  justify-content: center;
  align-items: center;
  padding: .5em 1.25em;
  font-size: .88em;
  font-weight: 600;
  line-height: 140%;
  text-decoration: none;
  display: flex;
  box-shadow: 0 7px 20px #4f46e540;
}

.profile-right-bottom-decor {
  background-color: #ffffff1a;
  border-radius: 100%;
  width: 8.13em;
  height: 8.13em;
  position: absolute;
  inset: -4em -4em auto auto;
}

.footer {
  color: #94a3b8;
  justify-content: space-between;
  align-items: center;
  padding: 3em 5em;
  display: flex;
}

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

.footer-links {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  display: flex;
}

.footer-link {
  color: #94a3b8;
  width: 1.25em;
  height: 1.25em;
}

.nav {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  justify-content: center;
  align-items: center;
  display: flex;
}

.link-text-14 {
  color: var(--text-black);
  font-size: .88em;
  font-weight: 500;
  line-height: 140%;
  text-decoration: none;
}

.link-text-14.sb {
  font-weight: 600;
}

.link-text-14.md {
  font-weight: 500;
}

.profile-right-language-text {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.header-btns {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  display: flex;
  position: relative;
}

.lang {
  color: var(--text-blue);
  background-color: #e1e7fd;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 0% -3em 0% auto;
}

@media screen and (max-width: 991px) {
  .body {
    font-size: 1.61vw;
  }

  .hero-img-box {
    min-width: 16em;
  }

  .header {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .facts-flex {
    grid-column-gap: 1em;
    grid-row-gap: 1.5em;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    justify-items: center;
    display: grid;
  }

  .core-wrap {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    flex-flow: column;
  }

  .core-sticky {
    width: 100%;
    position: static;
  }

  .core-cards {
    width: 100%;
  }

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

  .profile-flex {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
    flex-flow: column;
  }

  .profile-right-language-progress {
    width: 15em;
  }

  .footer {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .header-btns {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .lang {
    position: static;
  }
}

@media screen and (max-width: 767px) {
  .body {
    font-size: 2.2vw;
  }

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

  .hero-text {
    justify-content: flex-start;
    align-items: center;
  }

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

  .journey-cards {
    flex-flow: column;
    display: flex;
  }

  .projects-list {
    width: 100vw;
    margin-left: -1.5em;
    padding-left: 1.5em;
    padding-right: 1.5em;
    display: flex;
    overflow: auto;
  }

  .project {
    min-width: 20em;
  }
}

@media screen and (max-width: 479px) {
  .body {
    font-size: 4.27vw;
  }

  .hero {
    padding-top: 8em;
    padding-bottom: 5em;
  }

  .hero-img {
    filter: none;
    transition: none;
  }

  .hero-img:hover {
    filter: none;
  }

  .hero-text {
    justify-content: flex-start;
    align-items: stretch;
  }

  .hero-heading {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .h1 {
    font-size: 3em;
  }

  .hero-links {
    flex-flow: column;
  }

  .hero-link {
    justify-content: center;
    align-items: center;
  }

  .text-18 {
    font-size: 1em;
  }

  .header {
    padding-left: 1em;
    padding-right: 1em;
    position: absolute;
  }

  .facts {
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .header-shadow {
    display: none;
  }

  .core {
    padding-top: 3em;
    padding-bottom: 3em;
  }

  .facts-flex {
    grid-row-gap: 1em;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .fact {
    border-bottom: 1px solid #4755694d;
    padding-bottom: 1em;
  }

  .core-sticky {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .h2 {
    font-size: 1.5em;
  }

  .text-16 {
    font-size: .88em;
  }

  .core-cards {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-flow: column;
    display: flex;
  }

  .journey {
    padding-top: 3em;
    padding-bottom: 3em;
  }

  .journey-flex {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

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

  .journey-cards {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .projects {
    padding-top: 3em;
    padding-bottom: 2em;
  }

  .projects-flex {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .projects-list {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    padding-bottom: 1em;
  }

  .project {
    min-width: 19em;
  }

  .project-about {
    min-height: 16em;
    padding: 1em;
  }

  .profile {
    padding-top: 3em;
    padding-bottom: 3em;
  }

  .profile-left {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .profile-right {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .profile-right-language {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .profile-right-language-icon {
    min-width: 3em;
  }

  .profile-right-language-progress {
    width: 100%;
  }

  .profile-right-bottom {
    padding: 1.5em;
  }

  .footer {
    padding: 2em 1em;
  }

  .nav {
    display: none;
  }

  .profile-right-language-text {
    justify-content: flex-start;
    align-items: flex-start;
  }
}


