*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Mark", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1;
  color: #0a1f41;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body.lock-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

img {
  user-select: none;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
}

::selection {
  color: #ffffff;
  background: #5c9dff;
}

h1, h2, h3, h4, h5, h6, p, span, div {
  letter-spacing: 0;
  font-family: "Mark", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1;
}
h1 ::-moz-selection, h2 ::-moz-selection, h3 ::-moz-selection, h4 ::-moz-selection, h5 ::-moz-selection, h6 ::-moz-selection, p ::-moz-selection, span ::-moz-selection, div ::-moz-selection {
  background: #746e6e;
}
h1 ::selection, h2 ::selection, h3 ::selection, h4 ::selection, h5 ::selection, h6 ::selection, p ::selection, span ::selection, div ::selection {
  background: #746e6e;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

h1 {
  font-size: 36px;
}
@media screen and (min-width: 992px) {
  h1 {
    font-size: 54px;
  }
}

h2 {
  font-size: 30px;
}
@media screen and (min-width: 992px) {
  h2 {
    font-size: 40px;
  }
}

p {
  font-size: 20px;
}
@media screen and (min-width: 992px) {
  p {
    font-size: 24px;
  }
}

.font-heavy {
  font-weight: 800;
}

.d-none {
  display: none !important;
}

.pointer {
  cursor: pointer;
}

.p-relative {
  position: relative;
}

.App {
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.container {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  min-height: 100vh;
  overflow: inherit;
  justify-content: space-between;
}

.view {
  display: flex;
  flex-direction: column;
}

.icon-logo {
  user-select: none !important;
}

.inner-view {
  padding-right: 0;
  max-width: 1174px;
  margin: 0 auto;
  box-sizing: border-box;
}
.inner-view.contact {
  min-height: 70vh;
}
.inner-view:not(.no-padding) {
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .portfolio-container .inner-view {
    padding: 0;
  }
}

@media screen and (max-width: 1000px) {
  .portfolio-items-container .inner-view {
    padding: 0;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes enterFromRight {
  0% {
    transform: translate(100%, 100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes fade-in {
  0%, 50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0%, 50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.header {
  width: 100vw;
  position: fixed;
  top: 0;
  z-index: 999;
  transition: all 0.1s ease-in-out;
}
.header > div {
  height: 70px;
  display: grid;
  padding: 13px 20px;
  width: 100%;
  grid-template-columns: min-content 0 1fr;
  align-content: center;
}
@media screen and (min-width: 768px) {
  .header > div {
    grid-template-columns: min-content 1fr 0;
    padding: 0 60px;
  }
}
@media screen and (min-width: 1200px) {
  .header > div {
    grid-template-columns: min-content 1fr 0;
    padding: 0 120px;
  }
}
.header div > * {
  display: flex;
  align-self: center;
  overflow: hidden;
}
.header .icon-logo {
  font-size: 33px;
  color: #ffffff;
  transition: all 0.1s ease-in-out;
}
.header .nav-link-alternative {
  color: #0c5ed7 !important;
}
.header .nav-link-alternative:hover {
  color: #fc6865 !important;
}
.header:not(.header-scrolled) .icon-logo.logo {
  opacity: 0;
}
.header:not(.header-scrolled) .nav-link:hover {
  color: #ffcc33;
}
.header:not(.header-scrolled) .nav-link:hover::after {
  background-color: #ffcc33;
}
.header:not(.header-scrolled) .nav-link-alternative:hover {
  color: #fc6865;
}
.header:not(.header-scrolled) .nav-link-alternative.nav-link-selected {
  text-decoration: none;
}
.header:not(.header-scrolled) .nav-link-alternative.nav-link-selected::after {
  background-color: #ffffff !important;
}
.header:not(.header-scrolled) .nav-link-alternative.nav-link-selected:hover::after {
  background-color: #fc6865 !important;
}
.header.header-scrolled {
  background: #ffffff;
  opacity: 95%;
}
.header.header-scrolled .icon-logo, .header.header-scrolled .nav-link, .header.header-scrolled .icon-menu {
  color: #0c5ed7;
}
.header.header-scrolled .nav-link:hover {
  color: #fc6865;
}
.header.header-scrolled .nav-link:hover::after {
  background-color: #fc6865;
}
.header.header-scrolled .nav-link-alternative.nav-link-selected {
  text-decoration: none;
}
.header.header-scrolled .nav-link-alternative.nav-link-selected::after {
  background-color: #ffcc33 !important;
}
.header.header-scrolled .nav-link-alternative.nav-link-selected:hover::after {
  background-color: #fc6865 !important;
}
.header.drawer-open {
  opacity: 0;
}
.header .header-links {
  display: flex;
  justify-content: flex-end;
}
.header .header-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.header .header-links ul > :not(:last-child) {
  margin-right: 30px;
}
.header .nav-link {
  font-size: 14px;
  letter-spacing: 2.24px;
  line-height: 31px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 800;
  position: relative;
  transition: all 0.1s ease-in-out;
}
.header .nav-link::after {
  content: "";
  position: absolute;
  width: calc(100% - 2.24px);
  height: 4px;
  transition: all 0.1s ease-in-out;
  bottom: -4px;
  left: 0;
}
.header .nav-link.nav-link-selected {
  text-decoration: none;
}
.header .nav-link.nav-link-selected::after {
  background-color: #ffcc33;
}
.header .nav-link.nav-link-selected.nav-link-alternative::after {
  background-color: #fc6865;
}
.header .nav-link:hover::after {
  background-color: #fc6865;
}
.header .drawer-opener {
  display: flex;
  justify-content: flex-end;
}
.header .drawer-opener span {
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
}

.mobile .nav-link-alternative {
  color: #0c5ed7 !important;
}
.mobile.nav-link-selected {
  text-decoration: none;
}
.mobile.nav-link-selected::after {
  background-color: #ffcc33;
}

.mobileDrawer {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  overflow: hidden;
  background-color: rgba(1, 18, 90, 0.6);
  opacity: 0;
  pointer-events: none;
  display: flex;
  transition: display 0.2s linear, opacity 0.1s ease-in-out;
  z-index: 999;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mobileDrawer::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100vh;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  z-index: 9;
}
.mobileDrawer.open {
  opacity: 1;
  pointer-events: auto;
}
.mobileDrawer .content {
  z-index: 10;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-rows: min-content 1fr;
}
.mobileDrawer .content .top-container {
  padding: 0 20px;
  height: 70px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobileDrawer .content .top-container .icon-logo {
  font-size: 33px;
  color: #ffffff;
}
.mobileDrawer .content .top-container .icon-clear {
  cursor: pointer;
  font-size: 18px;
  color: #ffffff;
}
.mobileDrawer .content .links-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 66px;
  padding-top: 10vh;
}
@media (orientation: landscape) and (max-width: 769px) {
  .mobileDrawer .content .links-container {
    overflow: auto;
  }
}
.mobileDrawer .content .links-container .links {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobileDrawer .content .links-container .links > *:not(:last-child) {
  margin-bottom: 64px;
}
.mobileDrawer .content .links-container .links .pointer {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 3.84px;
  line-height: 31px;
  transition: all 0.1s ease-in-out;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
}
.mobileDrawer .content .links-container .links .pointer:hover {
  color: #ffcc33;
}
.mobileDrawer .content .links-container .links .pointer::after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 7px;
  transition: all 0.1s ease-in-out;
}
.mobileDrawer .content .links-container .links .pointer.selected-link::after {
  background-color: #ffcc33;
}

footer.contact-footer {
  width: 100%;
  bottom: 0;
  margin-top: 50px;
}
footer.contact-footer .circle-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
footer.contact-footer .circle-wrapper .visible-circle {
  position: absolute;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  will-change: transform;
  animation: 2s;
  transition: all 1s ease-in-out;
  z-index: 2;
  opacity: 1;
}
footer.contact-footer .circle-wrapper .visible-circle .background {
  position: absolute;
}
footer.contact-footer .circle-wrapper.submitted .visible-circle {
  transform: scale(4);
  transform-origin: bottom;
}
footer.contact-footer .child-content {
  position: relative;
  width: 100%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
}
@media screen and (min-width: 992px) {
  footer.contact-footer .left-container {
    top: -50px;
    position: relative;
  }
}
footer .footer-content {
  display: grid;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  position: relative;
  align-items: self-end;
  z-index: 2;
}
footer .footer-content.isContact .left-container {
  padding-top: 50px;
  align-items: flex-end;
}
@media screen and (min-width: 992px) {
  footer .footer-content.isContact .left-container {
    padding-top: 250px;
    margin-bottom: -50px;
  }
}
@media screen and (min-width: 992px) {
  footer .footer-content {
    grid-template-columns: 1fr min-content;
    max-width: 1270px;
  }
}
footer .footer-content .contact-padding {
  padding-left: 24px !important;
  padding-right: 24px !important;
  padding-top: 150px;
}
footer .footer-content .left-container {
  justify-content: center;
  color: #0c5ed7;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  footer .footer-content .left-container {
    padding: 0 20px;
  }
  footer .footer-content .left-container a {
    display: flex;
    width: 100%;
  }
  footer .footer-content .left-container a .contact-link {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-content .left-container {
    padding-left: 0;
  }
}
footer .footer-content .left-container .contact-details .contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 42px;
}
footer .footer-content .left-container .contact-details .contact-item .contact-icon {
  color: #01125a;
  font-size: 30px;
  margin-bottom: 12px;
}
footer .footer-content .left-container .contact-details .contact-item .contact-text {
  color: #ffffff;
  font: 600 18px/20px "Mark", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
footer .footer-content .left-container h2 {
  font-size: 50px;
  font-weight: 600;
}
footer .footer-content .left-container .get-in-touch {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  footer .footer-content .left-container .get-in-touch {
    margin-top: 58px;
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 1100px) {
  footer .footer-content .left-container .get-in-touch {
    margin-left: 150px;
  }
}
footer .footer-content .left-container .get-in-touch:hover .ready-to-launch .icon-arrow-forward {
  color: #ffcc33;
  transform: translateX(12px);
}
footer .footer-content .left-container .get-in-touch .ready-to-launch {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}
footer .footer-content .left-container .get-in-touch .ready-to-launch .contact-link {
  margin-top: -7px;
}
@media screen and (min-width: 992px) {
  footer .footer-content .left-container .get-in-touch .ready-to-launch {
    flex-direction: column;
  }
}
footer .footer-content .left-container .get-in-touch .ready-to-launch p {
  font-size: 30px;
  line-height: 31px;
  display: flex;
  max-width: 215px;
}
footer .footer-content .left-container .get-in-touch .ready-to-launch .icon-arrow-forward {
  font-size: 40px;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
  position: relative;
  display: inline-flex;
}
@media screen and (max-width: 768px) {
  footer .footer-content .left-container .get-in-touch {
    margin-left: unset;
  }
}
footer .footer-content .vanity-circle-container {
  height: 342px;
  width: 100vw;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 586px) {
  footer .footer-content .vanity-circle-container {
    width: 600px;
  }
}
footer .footer-content .vanity-circle-container .vanity-circle {
  border-radius: 50%;
  background-color: #fc6865;
  width: 140vw;
  height: 140vw;
  left: -20vw;
  position: absolute;
}
@media screen and (min-width: 586px) {
  footer .footer-content .vanity-circle-container .vanity-circle {
    position: relative;
    width: 524px;
    height: 524px;
    left: 13px;
  }
}
footer .footer-content .vanity-circle-container .vanity-circle .circle-content {
  width: 100%;
  max-width: 100vw;
  position: relative;
  margin: 0 auto;
}
footer .footer-content .vanity-circle-container .vanity-circle .circle-content .tagline {
  display: inline-flex;
  white-space: nowrap;
  position: absolute;
  transform: translateX(-50%) rotate(-90deg);
  color: #ffffff;
  left: 50%;
  font-size: 20px;
  top: 170px;
}
footer .footer-content .vanity-circle-container .vanity-circle .circle-content .icon-logo {
  position: absolute;
  color: #ffffff;
  font-size: 64px;
  top: 233px;
  right: 20px;
}
@media screen and (min-width: 586px) {
  footer .footer-content .vanity-circle-container .vanity-circle .circle-content .icon-logo {
    right: 93px;
  }
}

.floatingArrow {
  display: flex;
  font-size: 40px;
  width: 100%;
  justify-content: center;
  z-index: 99;
}
.floatingArrow .containerArrow {
  cursor: pointer;
  color: #0c5ed7;
  transition: all 0.1s ease-in-out;
  height: 40px;
  width: 16px;
  position: relative;
}
.floatingArrow .containerArrow span {
  position: absolute;
  transition: all 0.1s ease-in-out;
}
.floatingArrow .containerArrow:hover span {
  color: #ffcc33;
  transform: translateY(12px);
}

.arrow-link > div {
  display: inline-flex;
  position: relative;
  align-items: center;
  gap: 18px;
}
.arrow-link > div:hover .icon-arrow-forward {
  transform: translateX(10px);
}
.arrow-link > div:hover.onlyArrow .spanForward {
  color: #ffcc33;
}
.arrow-link > div:hover.onlyArrow .icon-arrow-forward {
  color: #ffcc33;
}
.arrow-link > div:hover:not(.onlyArrow) * {
  color: #ffcc33;
}
.arrow-link > div span {
  transition: all 0.1s ease-in-out;
  color: inherit;
}
.arrow-link > div span:first-child {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  line-height: 31px;
  font-size: 14px;
}
.arrow-link > div span.icon-arrow-forward {
  font-size: 40px;
  position: relative;
}

.textHighlight, .text-highlight {
  margin-left: -5px;
  font-size: 30px;
  color: #ffffff;
}
.textHighlight .bold, .text-highlight .bold {
  font-weight: 800;
}
.textHighlight.forceNewLine, .forceNewLine.text-highlight {
  display: flex;
  flex-direction: column;
}
.textHighlight:not(.dontEnlargeMobileBold) .bold, .text-highlight:not(.dontEnlargeMobileBold) .bold {
  font-size: 54px;
  display: flex;
  line-height: 52px;
}
.textHighlight .boldContainer, .text-highlight .boldContainer {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .textHighlight, .text-highlight {
    line-height: 42px;
    font-size: 40px;
  }
  .textHighlight .normal, .text-highlight .normal {
    font-weight: 300;
    margin-top: 32px;
    font-size: 41px;
  }
  .textHighlight:not(.dontEnlargeDesktopBold) .bold, .text-highlight:not(.dontEnlargeDesktopBold) .bold {
    font-size: 60px;
    line-height: 62px;
  }
}

.underlinedList {
  padding: 0px 30px 0px 20px;
}
.underlinedList .heading {
  margin-left: 40px;
  color: #ffcc33;
  font-size: 27px;
  font-weight: 800;
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.underlinedList ul {
  padding: 0;
  margin: 0;
}
.underlinedList ul li {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .underlinedList ul li {
    width: calc(100% - 100px);
  }
}
.underlinedList ul li {
  display: flex;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .underlinedList ul li {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .underlinedList ul li {
    margin-bottom: 12px;
  }
}
.underlinedList ul li .bullet {
  color: #01125a;
  font-size: 14px;
  display: flex;
  align-items: center;
  width: 32px;
}
.underlinedList ul li > div {
  position: relative;
  display: flex;
  width: 100%;
}
.underlinedList ul li > div > a > .itemLabel {
  color: #ffffff;
  font-weight: 800;
  font-size: 30px;
  line-height: 36px;
  position: relative;
  padding-left: 8px;
}
@media screen and (min-width: 992px) {
  .underlinedList ul li > div > a > .itemLabel {
    font-size: 40px;
  }
}
.underlinedList ul li > div > .itemUnderline {
  display: flex;
  height: 3px;
  background-color: #01125a;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 3px;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .underlinedList ul li > div > .itemUnderline {
    bottom: 3px;
  }
}

.highlightCard-wrapper:hover .title {
  color: #0c5ed7 !important;
}
.highlightCard-wrapper:hover .icon-add {
  color: #0c5ed7 !important;
}
.highlightCard-wrapper:hover .imageContainer img {
  transform: scale(1.05) translateY(-2.3%);
}
.highlightCard-wrapper .highlightCard {
  display: grid;
  grid-template-rows: 1fr min-content;
  width: 100%;
  position: relative;
  height: 100%;
}
.highlightCard-wrapper .highlightCard.pullUp {
  margin-top: -30px;
}
.highlightCard-wrapper .highlightCard.extraBottomPadding .cardContent {
  padding-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .highlightCard-wrapper .highlightCard.horizontalOnLgScreens {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .highlightCard-wrapper .highlightCard.horizontalOnLgScreens.reverse > *:first-child {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .highlightCard-wrapper .highlightCard.horizontalOnLgScreens.reverse > *:last-child {
    grid-column: 1/2;
  }
  .highlightCard-wrapper .highlightCard.horizontalOnLgScreens .cardContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  .highlightCard-wrapper .highlightCard.horizontalOnLgScreens .topBar {
    margin-top: 120px;
    max-width: 336px;
    width: 100%;
    padding-right: 10px;
  }
}
.highlightCard-wrapper .highlightCard .imageContainer {
  position: relative;
  user-select: none;
}
.highlightCard-wrapper .highlightCard .imageContainer div {
  position: absolute;
  height: calc(100% - 30px);
  width: 100%;
  bottom: 0;
  z-index: 0;
}
.highlightCard-wrapper .highlightCard .imageContainer picture {
  display: block;
  height: 100%;
}
.highlightCard-wrapper .highlightCard .imageContainer img {
  transition: all 0.2s ease;
  width: 90%;
  display: block;
  height: 100%;
  margin: auto;
  position: relative;
  object-fit: cover;
}
.highlightCard-wrapper .highlightCard .cardContent {
  padding: 16px 20px;
  min-height: 200px;
}
.highlightCard-wrapper .highlightCard .cardContent .topBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.highlightCard-wrapper .highlightCard .cardContent .topBar > * {
  transition: all 0.1s ease-in-out;
}
.highlightCard-wrapper .highlightCard .cardContent .topBar .title {
  font-weight: 700;
  font-size: 28px;
  line-height: 31px;
  color: #0a1f41;
}
.highlightCard-wrapper .highlightCard .cardContent .topBar .icon-add {
  transition: all 0.1s ease-in-out;
  color: #fc6865;
  font-size: 18px;
  position: relative;
  top: 1px;
  left: -6px;
}
.highlightCard-wrapper .highlightCard .cardContent .description {
  font-size: 18px;
  display: flex;
  line-height: 20px;
  color: #0a1f41;
  max-width: 336px;
}

li.detailedListItem, li.detailed-list-item {
  display: flex;
  flex-direction: column;
}
li.detailedListItem .iconContainer, li.detailed-list-item .iconContainer {
  background-color: #01125A;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 12px;
}
li.detailedListItem .iconContainer > span, li.detailed-list-item .iconContainer > span {
  color: #ffffff;
  font-size: 46px;
}
@media screen and (min-width: 768px) {
  li.detailedListItem .iconContainer, li.detailed-list-item .iconContainer {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  li.detailedListItem, li.detailed-list-item {
    flex-direction: row;
  }
}
li.detailedListItem .textContainer, li.detailed-list-item .textContainer {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  li.detailedListItem .textContainer, li.detailed-list-item .textContainer {
    margin-left: 17px;
  }
}
li.detailedListItem .textContainer .itemLabel, li.detailed-list-item .textContainer .itemLabel {
  color: #ffffff;
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  position: relative;
  padding-left: 0px;
  letter-spacing: 0.04em;
  margin-top: 10px;
  width: auto;
}
@media screen and (min-width: 768px) {
  li.detailedListItem .textContainer .itemLabel, li.detailed-list-item .textContainer .itemLabel {
    font-size: 30px;
  }
}
li.detailedListItem .textContainer .itemDetail, li.detailed-list-item .textContainer .itemDetail {
  margin-top: 10px;
  color: #ffffff;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  width: 100%;
  position: relative;
  padding-left: 0px;
  max-width: 360px;
}

.inputRoot {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.input::placeholder {
  color: rgba(24, 101, 217, 0.6901960784) !important;
}

.input:focus::placeholder {
  color: transparent !important;
}

.inputContainer {
  padding-top: 16px;
  box-sizing: border-box;
  background-color: #edeff5;
  display: flex;
  flex-direction: column;
}
.inputContainer textarea {
  resize: none;
}

.input {
  border: 0;
  padding: 10px;
  padding-left: 20px;
  outline: 0;
  background: transparent;
  font: 500 18px/20px "Mark", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0c5ed7;
  z-index: 1;
  transition: all 0.1s ease-in-out;
  position: relative;
  border-bottom: 2px solid transparent;
}

.inputPushed {
  border-bottom: 2px solid #1866D9;
}

.label {
  font: 500 18px/20px "Mark", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #01125a;
  position: relative;
  transition: all 0.1s ease-in-out;
  z-index: 0;
  top: 27px;
  padding-left: 20px;
}

.labelPushed {
  top: -2px;
  font-size: 16px;
}

.spaced {
  color: transparent !important;
  height: 28px;
  margin-left: 10px;
  margin-bottom: 15px;
  transition: all 0.2s;
  user-select: none;
}
.spaced.showError {
  display: none;
}

.error {
  height: 28px;
  overflow: hidden;
  display: none;
  color: transparent;
  align-items: flex-end;
  color: #fc6865;
  font: 700 14px/20px "Mark", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin-bottom: 15px;
}
.error.showError {
  height: 28px;
  display: flex;
}
.error.showError.multipleCheckbox {
  margin-top: 18px;
  padding-left: 5px;
}

.thanks-message {
  transition: all 0.5s ease;
  font-family: "Mark", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: white;
  position: absolute;
  left: 200px;
  top: 150%;
  width: 100%;
  transition: all 0.5s ease;
}

.grecaptcha-badge {
  opacity: 0 !important;
}

.hero-content {
  position: absolute;
  top: 0;
  left: calc(50% + 8px);
  transform: translateX(-50%);
  display: flex;
  z-index: 2;
  padding: 70px 24px 24px;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  align-items: center;
  justify-content: space-between;
  max-width: 1185px !important;
}
@media screen and (max-width: 769px) {
  .hero-content {
    justify-content: center;
    min-height: auto;
    gap: 0vh;
  }
}
@media screen and (min-width: 1720px) and (min-aspect-ratio: 23/10) {
  .hero-content {
    min-height: 1000px;
  }
}
@media screen and (min-width: 768px) {
  .hero-content {
    min-height: 100vh;
    flex-direction: row-reverse;
  }
  .hero-content > * {
    width: 50%;
    flex-shrink: 0;
  }
}
.hero-content .astronaut-container {
  box-sizing: border-box;
  position: relative;
  height: 320px;
}
@media screen and (max-width: 768px) {
  .hero-content .astronaut-container {
    width: 40%;
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .hero-content .astronaut-container {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .hero-content .astronaut-container {
    height: 640px;
  }
}
.hero-content .astronaut-container .constellation {
  position: absolute;
  height: 76% !important;
  left: 275px !important;
  top: 10px !important;
  animation: float 12s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .hero-content .astronaut-container .constellation {
    width: 15vh !important;
    left: 52% !important;
    top: -39% !important;
  }
}
.hero-content .astronaut-container picture.astronaut {
  display: contents;
}
@media screen and (max-width: 768px) {
  .hero-content .astronaut-container picture.astronaut {
    display: block;
    height: 100%;
    position: relative;
    top: -50px;
    margin: 0 auto;
  }
}
.hero-content .astronaut-container img.astronaut {
  animation: float 6s ease-in-out infinite;
  height: 570px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  z-index: 10;
  position: absolute;
}
@media screen and (min-width: 1720px) and (min-aspect-ratio: 23/10) {
  .hero-content .astronaut-container img.astronaut {
    right: 235px;
  }
}
.hero-content .astronaut-container img.astronaut {
  bottom: -35px;
}
@media screen and (min-width: 1720px) and (min-aspect-ratio: 23/10) {
  .hero-content .astronaut-container img.astronaut {
    height: 64vh;
    top: 30%;
    left: -29%;
    right: 10%;
    bottom: -10%;
    min-height: 600px;
  }
}
@media screen and (max-width: 768px) {
  .hero-content .astronaut-container img.astronaut {
    position: relative;
    right: unset;
    height: 100%;
    width: unset;
    left: 0;
    bottom: unset;
    margin: 0 auto;
    top: -50px;
  }
}
.hero-content .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  .hero-content .info {
    position: relative;
    top: -102px;
    right: 15px;
  }
}
@media screen and (min-width: 768px) {
  .hero-content .info {
    flex-direction: column;
    justify-content: initial;
    align-items: initial;
    position: relative;
    top: 58px;
  }
}
@media screen and (min-width: 1720px) and (min-aspect-ratio: 23/10) {
  .hero-content .info {
    position: relative;
    bottom: 140px;
    width: 50%;
  }
}
.hero-content .info .logo-container {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content .info .logo-container .icon-logo {
  font-size: 72px;
  line-height: 84px;
  display: flex;
  color: transparent;
  margin-bottom: 0px;
}
.hero-content .info .logo-container .icon-logo:before {
  color: white;
}
@media screen and (min-width: 768px) {
  .hero-content .info .logo-container .icon-logo {
    font-size: 84px;
    width: 142px;
  }
}
@media screen and (max-width: 768px) {
  .hero-content .info .logo-container .icon-logo {
    font-size: 66px;
    width: 112px;
  }
}
@media screen and (min-width: 768px) {
  .hero-content .info .logo-container {
    align-items: flex-start;
    justify-content: unset;
    margin-bottom: 36px;
    margin-top: -160px;
  }
}
.hero-content .info .logo-container .floatingArrow {
  position: absolute;
  bottom: 32px;
  z-index: 9999999;
}
@media screen and (min-width: 395px) {
  .hero-content .info .logo-container .floatingArrow {
    bottom: 0px;
  }
}
@media screen and (min-width: 768px) {
  .hero-content .info .logo-container .floatingArrow {
    display: none;
  }
}
.hero-content .info span:not(.icon-arrow-downward),
.hero-content .info p:not(.icon-arrow-downward) {
  font-size: 24px;
  color: #ffffff;
  line-height: 25px;
}
@media screen and (min-width: 768px) {
  .hero-content .info span:not(.icon-arrow-downward),
  .hero-content .info p:not(.icon-arrow-downward) {
    font-size: 40px;
    line-height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .hero-content .info span:not(.icon-arrow-downward),
  .hero-content .info p:not(.icon-arrow-downward) {
    max-width: 230px;
  }
}
@media screen and (max-width: 768px) {
  .hero-content .info .logo-container > .floatingArrow {
    bottom: -65%;
  }
}
.hero-content > .floatingArrow {
  display: none;
}
@media screen and (min-width: 768px) {
  .hero-content > .floatingArrow {
    display: flex;
    position: absolute;
    left: 15px;
    width: calc(100% - 15px) !important;
    bottom: -50px;
  }
}
@media screen and (min-width: 768px) {
  .hero-content > .floatingArrow {
    bottom: 10px;
  }
}
@media screen and (min-width: 992px) {
  .hero-content > .floatingArrow {
    bottom: 70px;
  }
}

.circle {
  max-width: 2500px;
  border-radius: 100%;
  margin: auto;
  background-color: #fc6865;
  position: absolute;
  bottom: -61px;
  width: 186%;
  right: -36%;
  left: -37%;
  z-index: 1;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 586px) {
  .circle {
    bottom: unset;
    right: unset;
    left: unset;
    width: 98vh;
  }
}

@media screen and (width: 768px) {
  .hero-content .info span:not(.icon-arrow-downward),
  .hero-content .info p:not(.icon-arrow-downward) {
    max-width: 100% !important;
  }
  .hero-content .astronaut-container {
    max-height: 70vh;
    height: 70vh;
  }
}
@media screen and (max-width: 768px) {
  .hero-content {
    position: absolute;
    bottom: 0px;
    display: flex;
    justify-content: flex-end;
  }
  .hero-content .astronaut-container {
    max-height: 40vh;
    top: -60px;
  }
}
@media (orientation: landscape) and (max-device-width: 992px) {
  .Main .hero-container {
    min-height: 700px !important;
  }
}
@media (orientation: landscape) and (max-width: 768px) {
  .Main .hero-container {
    min-height: 500px !important;
  }
  .Main img.astronaut {
    height: 180px !important;
    margin-top: -70px !important;
  }
}
@media (orientation: landscape) and (max-width: 769px) {
  .hero-container .circle {
    top: initial;
    width: 186%;
  }
  .hero-content .info {
    min-height: 50vh;
    position: relative;
    top: -143px;
    right: 15px;
  }
  .hero-content .info span:not(.icon-arrow-downward),
  .hero-content .info p:not(.icon-arrow-downward) {
    margin-top: 10px;
    font-size: 18px;
    color: #ffffff;
    line-height: 18px;
  }
  .hero-content .info .logo-container .icon-logo {
    font-size: 44px;
  }
  .hero-content .info .logo-container .floatingArrow {
    bottom: -30px;
    font-size: 28px;
  }
  .hero-content .astronaut-container img.astronaut {
    position: relative;
    right: unset;
    height: 48%;
    left: -100px;
    bottom: unset;
    margin: 0 auto;
    top: 30px;
  }
  #expertise {
    padding-top: 20px !important;
  }
}
.blue-circle-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  position: relative;
}
.blue-circle-container .top-circle {
  width: 593px;
  aspect-ratio: 1/1;
  background-color: #0c5ed7;
  border-radius: 100%;
  position: absolute;
  margin: auto;
  display: flex;
  right: -33px;
  top: -327px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .blue-circle-container .top-circle {
    right: -50%;
    left: -50%;
    width: 470px;
    top: -290px;
  }
}

.desktop {
  position: absolute;
  bottom: 44px;
  width: calc(100% - 16px);
  left: unset;
}
.desktop .icon-arrow-downward {
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .desktop {
    display: none;
  }
}

.section-dark {
  background-color: #0c5ed7;
  color: #ffffff;
}

.section-light {
  background-color: #ffffff;
  color: #0a1f41;
}

.section-red {
  background-color: #fc6865;
  color: #ffffff;
}

.Main {
  display: flex;
}
.Main .hero-container {
  background-color: #0c5ed7;
  min-height: 100vh;
  position: relative;
  margin-bottom: -3px;
  display: flex;
  justify-content: center;
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  .Main .hero-container {
    overflow: hidden;
  }
}
@media screen and (min-width: 1720px) and (min-aspect-ratio: 23/10) {
  .Main .hero-container {
    min-height: 1000px;
  }
}
.Main #expertise {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .Main #expertise {
    padding: 0;
  }
}
.Main .pullouts-container {
  position: relative;
  background-color: #0c5ed7;
  padding-bottom: 60px;
}
.Main .pullouts-container .pullouts {
  margin-top: 103px;
}
@media screen and (max-width: 768px) {
  .Main .pullouts-container .pullouts {
    margin-top: unset;
  }
}
.Main .pullouts-container .pullouts .expertise {
  display: grid;
  box-sizing: border-box;
  row-gap: 60px;
}
@media screen and (min-width: 768px) {
  .Main .pullouts-container .pullouts .expertise {
    column-gap: 110px;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .Main .pullouts-container .pullouts .expertise {
    column-gap: 1vw;
  }
}
.Main .pullouts-container .pullouts .expertise .asterisk-helmet-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
}
.Main .pullouts-container .pullouts .expertise .asterisk-helmet-container .asterisk-container {
  color: #ffcc33;
  font-size: 450px;
  display: none;
  justify-content: center;
  margin-top: 20px;
  position: relative;
  width: 100%;
  justify-content: flex-end;
}
.Main .pullouts-container .pullouts .expertise .asterisk-helmet-container .asterisk-container .icon-asterisk {
  width: 475px;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .Main .pullouts-container .pullouts .expertise .asterisk-helmet-container .asterisk-container {
    display: flex;
    position: relative;
    top: 20px;
    right: -52px;
  }
}
@media screen and (min-width: 768px) and (width: 768px) {
  .Main .pullouts-container .pullouts .expertise .asterisk-helmet-container .asterisk-container {
    right: 0px;
  }
}
.Main .pullouts-container .pullouts .expertise .asterisk-helmet-container .asterisk-container .astronaut {
  position: absolute;
  width: 322px;
  bottom: -96px;
  left: -20px;
}
.Main .pullouts-container .pullouts .expertise .list-container {
  display: flex;
  flex-direction: column;
  margin-left: 63px;
}
@media screen and (max-width: 768px) {
  .Main .pullouts-container .pullouts .expertise .list-container {
    margin-left: unset;
  }
}
@media screen and (min-width: 768px) {
  .Main .pullouts-container .pullouts .expertise .list-container > div:nth-child(1) .heading {
    margin-bottom: 23px;
  }
  .Main .pullouts-container .pullouts .expertise .list-container > div:nth-child(2) {
    margin-top: 30px;
    margin-left: -10px;
  }
  .Main .pullouts-container .pullouts .expertise .list-container > div:nth-child(2) .heading {
    margin-bottom: 23px;
  }
  .Main .pullouts-container .pullouts .expertise .list-container > div:nth-child(3) .heading {
    margin-bottom: 25px;
  }
  .Main .pullouts-container .pullouts .expertise .list-container > div:nth-child(3) {
    margin-top: 33px;
    margin-left: -10px;
  }
}
.Main .pullouts-container .pullouts .arrow-link-wrapper {
  justify-content: flex-end;
  display: flex;
  margin-top: 38px;
}
@media screen and (max-width: 768px) {
  .Main .pullouts-container .pullouts .arrow-link-wrapper {
    margin-top: 10%;
    margin-right: 6px;
  }
}
@media screen and (min-width: 768px) {
  .Main .pullouts-container .pullouts .arrow-link-wrapper {
    align-items: flex-end;
  }
}
.Main .pullouts-container .pullouts .arrow-link {
  margin-left: auto;
}
.Main .pullouts-container .pullouts .culture-highlight {
  display: flex;
  flex-direction: column;
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .Main .pullouts-container .pullouts .culture-highlight {
    padding-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .Main .pullouts-container .pullouts .culture-highlight {
    margin-bottom: 40px;
  }
}
.Main .pullouts-container .pullouts .culture-highlight .asterisk-container {
  justify-content: center;
  display: flex;
  color: #ffcc33;
  font-size: 95vw;
  padding-bottom: 36px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .Main .pullouts-container .pullouts .culture-highlight .asterisk-container {
    display: none;
  }
}
.Main .pullouts-container .pullouts .culture-highlight .asterisk-container .icon-asterisk {
  width: 100%;
}
.Main .pullouts-container .pullouts .culture-highlight .asterisk-container .astronaut {
  position: absolute;
  width: 70vw;
  bottom: 24px;
  left: 5vw;
}
@media screen and (max-width: 768px) {
  .Main .pullouts-container .pullouts .culture-highlight .asterisk-container .astronaut {
    width: 50vw;
    max-width: 250px;
    bottom: 5px;
    height: unset;
  }
}
.Main .portfolio-container {
  position: relative;
  margin-bottom: 80px;
}
.Main .portfolio-container::after {
  content: "";
  position: absolute;
  background-color: #0c5ed7;
  height: 32px;
  width: 100%;
  top: -2px;
  left: 0;
  z-index: 0;
}
.Main .portfolio-container .portfolio {
  position: relative;
  z-index: 1;
}
.Main .portfolio-container .portfolio .highlight-cards {
  display: grid;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .Main .portfolio-container .portfolio .highlight-cards {
    grid-template-columns: 5fr 3fr;
    grid-template-rows: 1fr 1fr;
    position: relative;
  }
  .Main .portfolio-container .portfolio .highlight-cards > *:first-child {
    grid-row: 1/3;
  }
}
.Main .portfolio-container .portfolio .arrow-link {
  margin-left: auto;
  justify-content: flex-end;
  display: flex;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .Main .portfolio-container .portfolio .arrow-link {
    margin-right: 24px;
  }
}

.title-and-link {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .title-and-link {
    flex-direction: column;
    align-items: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .title-and-link .arrow-link-wrapper {
    margin-top: 164px !important;
  }
}

.Expertise .hero-container {
  background-color: #ffcc33;
  overflow-x: clip;
  position: relative;
}
@media screen and (max-width: 768px) {
  .Expertise .hero-container {
    padding-top: 14vh;
  }
  .Expertise .hero-container .hero {
    grid-template-rows: 1fr 2fr !important;
    align-items: flex-start !important;
  }
  .Expertise .hero-container .hero-claim {
    padding-top: 0px !important;
  }
}
@media (orientation: landscape) and (max-width: 769px) {
  .Expertise .hero-container {
    padding-bottom: 10px;
  }
}
.Expertise .hero-container .floatingArrow {
  bottom: 30px;
  position: absolute;
  z-index: 99;
  width: 100vw;
}
.Expertise .hero-container .floatingArrow .containerArrow span {
  color: #0c5ed7;
}
.Expertise .hero-container .floatingArrow .containerArrow:hover span {
  color: white;
}
@media screen and (min-width: 992px) {
  .Expertise .hero-container .floatingArrow span {
    color: #0c5ed7;
  }
  .Expertise .hero-container .floatingArrow span:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 992px) {
  .Expertise .hero-container .floatingArrow {
    bottom: 130px;
  }
}
.Expertise .hero-container .hero {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  align-items: center;
  min-height: 787px;
}
@media screen and (max-width: 1200px) {
  .Expertise .hero-container .hero {
    display: grid;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    margin-bottom: 30px;
    justify-items: center;
    justify-content: center;
    min-height: auto;
  }
}
@media screen and (min-width: 1720px) and (min-aspect-ratio: 23/10) {
  .Expertise .hero-container .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3%;
    min-height: 1000px;
  }
}
.Expertise .hero-container .hero .hero-claim {
  color: #01125a;
  padding-left: 20px;
  width: 500px;
  display: flex;
  flex-direction: column;
  margin-top: -10px;
}
@media screen and (max-width: 768px) {
  .Expertise .hero-container .hero .hero-claim {
    width: 100vw;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 100px;
  }
}
@media screen and (min-width: 1720px) and (min-aspect-ratio: 23/10) {
  .Expertise .hero-container .hero .hero-claim {
    margin-top: 50px;
    width: 100%;
  }
}
.Expertise .hero-container .hero .hero-claim h1 {
  font-size: 54px;
  font-weight: 800;
  max-width: 320px;
  margin: 0;
  margin-bottom: 10px;
}
@media screen and (min-width: 1720px) and (min-aspect-ratio: 23/10) {
  .Expertise .hero-container .hero .hero-claim h1 {
    font-size: 74px;
    max-width: 430px;
  }
}
@media screen and (min-width: 1720px) and (min-aspect-ratio: 23/10) {
  .Expertise .hero-container .hero .hero-claim h1 {
    max-width: 800px;
  }
}
@media (orientation: landscape) and (max-width: 769px) {
  .Expertise .hero-container .hero .hero-claim h1 {
    font-size: 48px;
    max-width: 100%;
    margin-top: 30px;
  }
}
.Expertise .hero-container .hero .hero-claim span {
  font-size: 40px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .Expertise .hero-container .hero .hero-claim span {
    white-space: normal;
  }
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .Expertise .hero-container .hero .astronaut-container {
    width: 80% !important;
  }
  .Expertise .hero-container .hero .astronaut-container .asterisk {
    width: 100% !important;
  }
}
.Expertise .hero-container .hero .astronaut-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .Expertise .hero-container .hero .astronaut-container {
    height: 50vh;
    aspect-ratio: 1/1;
    margin-top: 100px;
  }
}
.Expertise .hero-container .hero .astronaut-container > div {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 140px;
  right: 50px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1200px) {
  .Expertise .hero-container .hero .astronaut-container > div {
    width: 100%;
    bottom: unset;
    left: unset;
    top: unset;
    right: unset;
  }
}
.Expertise .hero-container .hero .astronaut-container > div > img {
  position: absolute;
  aspect-ratio: 1/1;
}
.Expertise .hero-container .hero .astronaut-container > div > .asterisk {
  position: relative;
}
.Expertise .hero-container .hero .astronaut-container .constellation {
  width: 480px;
  bottom: 130px;
  right: -321px;
}
@media screen and (max-width: 768px) {
  .Expertise .hero-container .hero .astronaut-container .constellation {
    display: none;
  }
}
@media screen and (min-width: 1720px) and (min-aspect-ratio: 23/10) {
  .Expertise .hero-container .hero .astronaut-container .constellation {
    width: 60%;
    bottom: 26%;
    right: -4%;
  }
}
.Expertise .hero-container .hero .astronaut-container .asterisk {
  bottom: 30px;
  left: 135px;
  width: 527px;
}
@media screen and (max-width: 768px) {
  .Expertise .hero-container .hero .astronaut-container .asterisk {
    bottom: unset;
    width: 100%;
  }
}
@media screen and (min-width: 1720px) and (min-aspect-ratio: 23/10) {
  .Expertise .hero-container .hero .astronaut-container .asterisk {
    width: 53vh;
    bottom: -20%;
    left: 7%;
  }
}
@media screen and (max-width: 1200px) {
  .Expertise .hero-container .hero .astronaut-container .asterisk {
    left: unset;
  }
}
.Expertise .hero-container .hero .astronaut-container .astronaut {
  width: 401px;
  bottom: 120px;
  left: 94px;
  position: absolute;
  animation: float 5s infinite;
  object-fit: none;
}
@media screen and (max-width: 1200px) {
  .Expertise .hero-container .hero .astronaut-container .astronaut {
    width: 88%;
    bottom: 43%;
    object-fit: cover;
    margin: auto;
    left: 0;
    right: 0;
  }
}
@media screen and (min-width: 1720px) and (min-aspect-ratio: 23/10) {
  .Expertise .hero-container .hero .astronaut-container > div {
    right: 0px;
  }
  .Expertise .hero-container .hero .astronaut-container .astronaut {
    width: 41vh;
    bottom: 25%;
    left: 0px;
    right: 0px;
    margin: auto;
    object-fit: cover;
  }
  .Expertise .hero-container .hero .astronaut-container .asterisk {
    left: 0px;
    right: 0px;
    margin: auto;
  }
}
@media screen and (min-width: 1720px) and (min-aspect-ratio: 23/10) {
  .Expertise .floatingArrow {
    position: absolute;
    left: 0px !important;
    right: 0px !important;
    margin: auto;
  }
}
.Expertise .center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-content: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .Expertise .center-container .center-container {
    margin-bottom: -50vh;
  }
}
.Expertise .center-container .circle-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.Expertise .center-container .visible-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  will-change: transform;
}
.Expertise .center-container .visible-circle .background {
  position: absolute;
  background-color: #01125a;
  border-radius: 100%;
  width: 2455px;
  height: 1640px;
}
@media screen and (max-width: 992px) {
  .Expertise .center-container .visible-circle .background {
    width: 3500px;
    height: 3500px;
  }
}
.Expertise .center-container .child-content {
  position: relative;
  width: 100%;
}
.Expertise .outer-space-container {
  display: flex;
  position: relative;
  justify-content: center;
  background: rgb(255, 204, 51);
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .Expertise .outer-space-container {
    background: rgb(255, 204, 51);
    background: linear-gradient(180deg, rgb(255, 204, 51) 50%, rgb(255, 255, 255) 50%);
  }
}
.Expertise .outer-space-container .red-background {
  background-color: #fc6865;
  width: 0px;
  height: 0px;
  display: flex;
  position: absolute;
  margin: auto;
  aspect-ratio: 1/1;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  overflow: hidden;
}
.Expertise .outer-space-container .top-half-circle,
.Expertise .outer-space-container .bottom-half-circle {
  display: flex;
  position: relative;
  height: 20vw;
}
@media screen and (min-width: 992px) {
  .Expertise .outer-space-container .top-half-circle,
  .Expertise .outer-space-container .bottom-half-circle {
    height: 20vw;
  }
  .Expertise .outer-space-container .top-half-circle::before,
  .Expertise .outer-space-container .bottom-half-circle::before {
    height: 20vw !important;
  }
}
.Expertise .outer-space-container .top-half-circle.top-half-circle::before,
.Expertise .outer-space-container .bottom-half-circle.top-half-circle::before {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.Expertise .outer-space-container .top-half-circle.top-half-circle::after,
.Expertise .outer-space-container .bottom-half-circle.top-half-circle::after {
  background-color: #ffcc33;
}
.Expertise .outer-space-container .top-half-circle.bottom-half-circle,
.Expertise .outer-space-container .bottom-half-circle.bottom-half-circle {
  display: none;
}
.Expertise .outer-space-container .top-half-circle.bottom-half-circle::before,
.Expertise .outer-space-container .bottom-half-circle.bottom-half-circle::before {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
@media screen and (min-width: 992px) {
  .Expertise .outer-space-container .top-half-circle.bottom-half-circle,
  .Expertise .outer-space-container .bottom-half-circle.bottom-half-circle {
    display: initial;
  }
}
.Expertise .outer-space-container .top-half-circle::before,
.Expertise .outer-space-container .bottom-half-circle::before {
  background-color: #fc6865;
  position: absolute;
  height: 20vw;
  width: 120vw;
  border-radius: 50%/100%;
  content: "";
  left: -10vw;
  bottom: -3vw;
}
.Expertise .outer-space-container .top-half-circle::after,
.Expertise .outer-space-container .bottom-half-circle::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: -1px;
  z-index: -1;
}
.Expertise .outer-space-container .outer-space {
  width: 100%;
  display: grid;
  row-gap: 70px;
  padding-top: 280px;
  z-index: 1;
  position: relative;
  padding-left: 0;
  padding-right: 0;
}
.Expertise .outer-space-container .outer-space .firstHighlightContainer {
  max-width: 100%;
}
.Expertise .outer-space-container .outer-space .firstHighlightContainer .bold {
  font-size: 20px;
  letter-spacing: 5px;
  font-weight: 900;
}
.Expertise .outer-space-container .outer-space .firstHighlightContainer .normal {
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 0px;
  font-weight: 800;
  margin-top: 20px;
}
@media screen and (max-width: 1200px) {
  .Expertise .outer-space-container .outer-space {
    padding-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .Expertise .outer-space-container .outer-space {
    row-gap: 10px;
  }
}
.Expertise .outer-space-container .outer-space > *:not(.blueCircleContainer) {
  padding: 20px;
}
@media screen and (min-width: 992px) {
  .Expertise .outer-space-container .outer-space > *:not(.blueCircleContainer) {
    padding-bottom: 24px;
  }
}
@media screen and (min-width: 769px) {
  .Expertise .outer-space-container .outer-space {
    top: 0px;
  }
}
@media screen and (min-width: 1200px) {
  .Expertise .outer-space-container .outer-space {
    top: -80px;
  }
}
@media screen and (min-width: 992px) {
  .Expertise .outer-space-container .outer-space {
    grid-template-columns: 1fr 2fr;
  }
}
.Expertise .outer-space-container .outer-space .secondHighlightContainer .constellation-container {
  display: none;
}
.Expertise .outer-space-container .outer-space .secondHighlightContainer .textHighlight, .Expertise .outer-space-container .outer-space .secondHighlightContainer .text-highlight {
  margin-left: 0;
}
.Expertise .outer-space-container .outer-space .secondHighlightContainer .textHighlight .bold, .Expertise .outer-space-container .outer-space .secondHighlightContainer .text-highlight .bold {
  font-size: 30px;
  font-weight: 900;
}
.Expertise .outer-space-container .outer-space .secondHighlightContainer .textHighlight .normal, .Expertise .outer-space-container .outer-space .secondHighlightContainer .text-highlight .normal {
  font-size: 30px;
  font-weight: 300;
}
@media screen and (min-width: 767px) {
  .Expertise .outer-space-container .outer-space .secondHighlightContainer .textHighlight .bold, .Expertise .outer-space-container .outer-space .secondHighlightContainer .text-highlight .bold {
    font-size: 60px;
  }
  .Expertise .outer-space-container .outer-space .secondHighlightContainer .textHighlight .normal, .Expertise .outer-space-container .outer-space .secondHighlightContainer .text-highlight .normal {
    font-size: 42px;
  }
}
.Expertise .outer-space-container .outer-space .connectedItemsContainer {
  width: 100%;
  padding-bottom: 9px;
}
.Expertise .outer-space-container .outer-space .connectedItemsContainer .detailedListItem, .Expertise .outer-space-container .outer-space .connectedItemsContainer li.detailed-list-item {
  margin-bottom: 35px;
  flex-direction: row;
}
.Expertise .outer-space-container .outer-space .connectedItemsContainer .detailedListItem .iconContainer, .Expertise .outer-space-container .outer-space .connectedItemsContainer li.detailed-list-item .iconContainer {
  margin-top: 6px;
  justify-content: flex-start;
  width: max-content;
  height: max-content;
}
.Expertise .outer-space-container .outer-space .connectedItemsContainer .detailedListItem .iconContainer .icon-asterisk, .Expertise .outer-space-container .outer-space .connectedItemsContainer li.detailed-list-item .iconContainer .icon-asterisk {
  font-size: 14px;
  color: #fc6865;
}
.Expertise .outer-space-container .outer-space .connectedItemsContainer .detailedListItem .textContainer, .Expertise .outer-space-container .outer-space .connectedItemsContainer li.detailed-list-item .textContainer {
  margin-left: 22px;
}
.Expertise .outer-space-container .outer-space .connectedItemsContainer .detailedListItem .textContainer .content-link, .Expertise .outer-space-container .outer-space .connectedItemsContainer li.detailed-list-item .textContainer .content-link {
  display: flex;
}
.Expertise .outer-space-container .outer-space .connectedItemsContainer .detailedListItem .textContainer .content-link .itemLabel, .Expertise .outer-space-container .outer-space .connectedItemsContainer li.detailed-list-item .textContainer .content-link .itemLabel {
  font-size: 24px;
  line-height: 25px;
  color: #fc6865;
  margin-top: 0;
  transition: all 0.3s ease-in-out;
}
.Expertise .outer-space-container .outer-space .connectedItemsContainer .detailedListItem .textContainer .content-link a.itemLink, .Expertise .outer-space-container .outer-space .connectedItemsContainer li.detailed-list-item .textContainer .content-link a.itemLink {
  display: flex;
}
.Expertise .outer-space-container .outer-space .connectedItemsContainer .detailedListItem .textContainer .content-link a.itemLink i, .Expertise .outer-space-container .outer-space .connectedItemsContainer li.detailed-list-item .textContainer .content-link a.itemLink i {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  background-color: #0c5ed7;
  width: max-content;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-left: 12px;
  padding-left: 2px;
}
.Expertise .outer-space-container .outer-space .connectedItemsContainer .detailedListItem .textContainer .content-link a.itemLink:hover .itemLabel, .Expertise .outer-space-container .outer-space .connectedItemsContainer li.detailed-list-item .textContainer .content-link a.itemLink:hover .itemLabel {
  color: #ffffff !important;
}
.Expertise .outer-space-container .outer-space .connectedItemsContainer .detailedListItem .textContainer .content-link a.itemLink:hover i, .Expertise .outer-space-container .outer-space .connectedItemsContainer li.detailed-list-item .textContainer .content-link a.itemLink:hover i {
  color: #0c5ed7;
  background-color: white;
}
.Expertise .outer-space-container .outer-space .connectedItemsContainer .detailedListItem .textContainer .content-link a.itemLink i, .Expertise .outer-space-container .outer-space .connectedItemsContainer li.detailed-list-item .textContainer .content-link a.itemLink i {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .Expertise .outer-space-container .outer-space .connectedItemsContainer .detailedListItem .textContainer .content-link a.itemLink, .Expertise .outer-space-container .outer-space .connectedItemsContainer li.detailed-list-item .textContainer .content-link a.itemLink {
    margin-left: 8px;
  }
}
.Expertise .outer-space-container .outer-space .connectedItemsContainer .detailedListItem .textContainer .itemDetail, .Expertise .outer-space-container .outer-space .connectedItemsContainer li.detailed-list-item .textContainer .itemDetail {
  font-size: 18px;
  line-height: 20px;
  max-width: 540px;
  margin-top: 20px;
}
.Expertise .outer-space-container .outer-space .connectedItemsContainer .arrow-link-wrapper {
  width: max-content;
  margin-left: auto;
}
.Expertise .outer-space-container .outer-space .connectedItemsContainer .arrow-link-wrapper .arrow-link {
  display: flex;
  margin-top: 90px;
  justify-content: flex-end;
}
.Expertise .outer-space-container .outer-space .blueCircleContainer {
  width: 100vw;
  position: relative;
  display: flex;
  margin-top: 0;
  z-index: 1;
  justify-content: center;
  user-select: none;
}
@media screen and (max-width: 768px) {
  .Expertise .outer-space-container .outer-space .blueCircleContainer {
    overflow: hidden;
    background: linear-gradient(180deg, transparent 52%, #fff 52%);
    padding-top: 50px;
    padding-bottom: 20px;
  }
}
.Expertise .outer-space-container .outer-space .blueCircleContainer .blueCircle-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  flex-direction: column;
  position: relative;
  width: 100%;
}
.Expertise .outer-space-container .outer-space .blueCircleContainer .blueCircle-wrapper .astronaut {
  width: 84.5%;
  height: unset;
  z-index: 1;
  position: relative;
  top: 20px;
  left: 20px;
}
@media screen and (max-width: 768px) {
  .Expertise .outer-space-container .outer-space .blueCircleContainer .blueCircle-wrapper .astronaut {
    margin-bottom: 36px;
    width: 89%;
    left: 5px;
    top: -20px;
  }
}
@media screen and (max-width: 992px) and (min-width: 544px) {
  .Expertise .outer-space-container .outer-space .blueCircleContainer .blueCircle-wrapper {
    background: #01125a;
    background: linear-gradient(0deg, transparent 52%, #01125a 52%);
    padding-top: 36px;
    width: max-content;
    overflow: hidden;
  }
  .Expertise .outer-space-container .outer-space .blueCircleContainer .blueCircle-wrapper .astronaut {
    top: 0;
    width: 87.5%;
  }
}
.Expertise .outer-space-container .outer-space .blueCircleContainer .blueCircle-wrapper .blueCircle {
  position: absolute;
  width: 100%;
  border-radius: 50%;
  background-color: #fc6865;
  display: flex;
  justify-content: center;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .Expertise .outer-space-container .outer-space .blueCircleContainer .blueCircle-wrapper .blueCircle {
    position: absolute;
    width: 120vw;
    left: unset;
    top: unset;
    border-radius: 50%;
    background-color: #fc6865;
    display: flex;
    justify-content: center;
    aspect-ratio: 1/1;
    margin-bottom: 30px;
  }
}
.Expertise .outer-space-container .outer-space .blueCircleContainer .blueCircle-wrapper .blueCircle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  bottom: -150px;
}
.Expertise .outer-space-container .outer-space .blueCircleContainer .blueCircle-wrapper .blueCircle .astronaut {
  position: relative;
  top: -140px;
  flex-grow: 0;
  flex-shrink: 0;
}
@media screen and (min-width: 992px) {
  .Expertise .outer-space-container .outer-space {
    padding-bottom: 100px;
    row-gap: 30px;
  }
  .Expertise .outer-space-container .outer-space .firstHighlightContainer {
    max-width: 540px;
  }
  .Expertise .outer-space-container .outer-space .connectedItemsContainer {
    grid-row: 1/4;
    grid-column: 2/3;
    padding-bottom: 24px;
  }
  .Expertise .outer-space-container .outer-space .connectedItemsContainer .detailedListItem .textContainer, .Expertise .outer-space-container .outer-space .connectedItemsContainer li.detailed-list-item .textContainer {
    margin-left: 17px;
  }
  .Expertise .outer-space-container .outer-space .connectedItemsContainer .detailedListItem .textContainer .itemLabel, .Expertise .outer-space-container .outer-space .connectedItemsContainer li.detailed-list-item .textContainer .itemLabel {
    font-size: 30px !important;
    line-height: 27px !important;
    color: #fc6865 !important;
    margin-top: 0 !important;
  }
  .Expertise .outer-space-container .outer-space .connectedItemsContainer .arrow-link {
    margin-top: 100px;
  }
  .Expertise .outer-space-container .outer-space .blueCircleContainer {
    grid-column: 1/2;
    grid-row: 2/4;
    width: 583px;
    height: 583px;
    top: 30px;
    left: -91px;
    margin-right: -30px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .Expertise .outer-space-container .outer-space .blueCircleContainer {
    width: 55vw;
    height: 55vw;
  }
}
@media screen and (min-width: 992px) {
  .Expertise .outer-space-container .outer-space .blueCircleContainer .blueCircle {
    aspect-ratio: 1/1;
  }
  .Expertise .outer-space-container .outer-space .blueCircleContainer .blueCircle::after {
    display: none;
  }
  .Expertise .outer-space-container .outer-space .blueCircleContainer .blueCircle .astronaut {
    top: 52px;
    left: -11px;
    user-select: none;
    height: 100%;
  }
  .Expertise .outer-space-container .outer-space .secondHighlightContainer {
    grid-column: 1/3;
    margin: 106px auto 0;
    max-width: 790px;
    z-index: 1;
    position: relative;
  }
  .Expertise .outer-space-container .outer-space .secondHighlightContainer .constellation-container {
    display: flex;
  }
  .Expertise .outer-space-container .outer-space .secondHighlightContainer .constellation-container .constellation {
    position: absolute;
    left: -330px;
    top: -250px;
  }
  .Expertise .outer-space-container .outer-space .secondHighlightContainer .textHighlight .bold, .Expertise .outer-space-container .outer-space .secondHighlightContainer .text-highlight .bold {
    font-size: 74px;
  }
  .Expertise .outer-space-container .outer-space .secondHighlightContainer .textHighlight .normal, .Expertise .outer-space-container .outer-space .secondHighlightContainer .text-highlight .normal {
    font-size: 40px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 992px) {
  .Expertise .portfolio-container {
    display: flex;
    margin-bottom: 46px;
  }
  .Expertise .portfolio-container .portfolio .highlight-cards {
    margin-top: 100px;
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.Expertise .portfolio-container .arrow-link-wrapper a {
  display: flex;
  width: max-content;
  margin-left: auto;
}
.Expertise .portfolio-container .arrow-link-wrapper a .arrow-link {
  margin-left: auto;
  justify-content: flex-end;
  display: flex;
  margin-top: 0px;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .Expertise .portfolio-container .arrow-link-wrapper a .arrow-link {
    margin-bottom: 66px;
    padding-right: 20px;
  }
}
.Expertise .portfolio-container .arrow-link-wrapper a:hover .arrow-link .spanForward {
  color: #0c5ed7;
}

.Portfolio {
  display: flex;
  margin-bottom: 100px;
}
.Portfolio .hero-container {
  background-color: #0c5ed7;
  display: flex;
  justify-content: center;
}
.Portfolio .hero-container .hero-title {
  height: 235px;
  align-items: center;
  justify-content: flex-start;
  display: flex;
  flex-direction: row;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .Portfolio .hero-container .hero-title {
    height: 300px;
  }
}
.Portfolio .hero-container .hero-title h3 {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 800;
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 4.5px;
  line-height: 36px;
}
@media screen and (min-width: 768px) {
  .Portfolio .hero-container .hero-title h3 {
    margin-top: 0;
  }
}

.PortfolioItem {
  overflow-x: hidden;
}
.PortfolioItem .OverTheFold {
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.PortfolioItem .OverTheFold.otf-desktop {
  position: relative;
}
@media screen and (max-width: 768px) {
  .PortfolioItem .OverTheFold.otf-desktop {
    display: none;
  }
}
@media screen and (max-height: 700px) {
  .PortfolioItem .OverTheFold.otf-desktop {
    min-height: 655px;
  }
}
.PortfolioItem .OverTheFold.otf-desktop .otf-top .inner-view {
  margin-top: 70px;
}
.PortfolioItem .OverTheFold.otf-desktop .otf-top {
  height: 50vh;
}
.PortfolioItem .OverTheFold.otf-desktop .otf-bottom {
  height: 50vh;
}
.PortfolioItem .OverTheFold.otf-desktop .otf-bottom .inner-view {
  display: flex;
  align-items: flex-end;
  height: 100%;
  width: 100%;
}
.PortfolioItem .OverTheFold.otf-desktop .OTFTitle {
  max-width: 50%;
}
.PortfolioItem .OverTheFold.otf-desktop .OTFTitle h1 {
  height: 192px;
}
.PortfolioItem .OverTheFold.otf-desktop .OTFDescription {
  width: 45%;
  padding-bottom: 50px;
}
.PortfolioItem .OverTheFold.otf-desktop .OTFDescription .top {
  margin-bottom: 3vh;
}
.PortfolioItem .OverTheFold.otf-desktop .OTFDescription .bot {
  margin-bottom: 2vh;
}
.PortfolioItem .OverTheFold.otf-desktop .OTFImage {
  width: 57%;
  max-height: 80vh;
  aspect-ratio: 1/1;
  position: absolute;
  right: 0px;
  bottom: 0px;
  user-select: none;
}
.PortfolioItem .OverTheFold.otf-desktop .OTFImage img {
  margin: auto;
  width: 95%;
}
@media screen and (max-width: 992px) {
  .PortfolioItem .OverTheFold.otf-desktop .OTFImage img {
    max-height: 100%;
  }
}
@media screen and (min-width: 768px) and (max-height: 768px) {
  .PortfolioItem .OverTheFold.otf-desktop .OTFTitle h1 {
    font-size: 46px;
  }
  .PortfolioItem .OverTheFold.otf-desktop .OTFDescription .top .summary-text {
    font-size: 14px;
  }
  .PortfolioItem .OverTheFold.otf-desktop .OTFDescription {
    padding-bottom: 50px;
  }
}
.PortfolioItem .OverTheFold.otf-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .PortfolioItem .OverTheFold.otf-mobile {
    display: flex;
  }
}
.PortfolioItem .OverTheFold.otf-mobile .OTFDescription {
  margin-top: 36px;
}
.PortfolioItem .OverTheFold.otf-mobile .OTFDescription .bot {
  flex-direction: column;
}
.PortfolioItem .OverTheFold.otf-mobile .OTFDescription .summary-text {
  color: #0a1f41 !important;
}
.PortfolioItem .OverTheFold.otf-mobile .OTFDescription .bot .summary-icons, .PortfolioItem .OverTheFold.otf-mobile .OTFDescription .bot .summary-title {
  color: #fc6865 !important;
}
.PortfolioItem .OverTheFold.otf-mobile .OTFDescription {
  width: 100%;
  padding-bottom: 30px;
}
.PortfolioItem .OverTheFold.otf-mobile .otf-top .inner-view {
  margin-top: 100px;
  margin-bottom: 60px;
}
.PortfolioItem .OverTheFold.otf-mobile .otf-top .OTFTitle {
  height: 258px;
}
.PortfolioItem .OverTheFold.otf-mobile .otf-top .OTFTitle p {
  font-size: 26px;
}
.PortfolioItem .OverTheFold.otf-mobile .otf-top .OTFTitle h1 {
  font-size: 44px;
}
.PortfolioItem .OverTheFold.otf-mobile .OTFImage {
  position: relative;
  width: 100%;
  max-height: 80vh;
  aspect-ratio: 1/1;
  right: 0px;
  margin: auto;
  left: 0px;
}
.PortfolioItem .OverTheFold.otf-mobile .OTFImage img {
  margin: auto;
  width: 100%;
  height: 100%;
}
.PortfolioItem .OverTheFold.otf-wide {
  position: relative;
}
.PortfolioItem .OverTheFold.otf-wide .otf-top {
  height: 50vh;
}
.PortfolioItem .OverTheFold.otf-wide .otf-bottom {
  height: 50vh;
}
.PortfolioItem .OverTheFold.otf-wide .otf-bottom .inner-view {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.PortfolioItem .OverTheFold.otf-wide .OTFTitle {
  max-width: 50%;
}
.PortfolioItem .OverTheFold.otf-wide .OTFTitle h1 {
  height: 258px;
}
.PortfolioItem .OverTheFold.otf-wide .OTFDescription {
  padding-left: 16px;
}
.PortfolioItem .OverTheFold.otf-wide .OTFDescription .summary-text {
  color: #0a1f41 !important;
}
.PortfolioItem .OverTheFold.otf-wide .OTFDescription .bot .summary-icons, .PortfolioItem .OverTheFold.otf-wide .OTFDescription .bot .summary-title {
  color: #fc6865 !important;
}
.PortfolioItem .OverTheFold.otf-wide .OTFDescription {
  width: 50%;
  padding-bottom: 30px;
}
.PortfolioItem .OverTheFold.otf-wide .OTFImage {
  width: 100%;
  max-height: 80vh;
  aspect-ratio: 1/1;
  position: absolute;
  right: 0px;
  bottom: 0px;
  margin: auto;
  left: 0px;
}
.PortfolioItem .OverTheFold.otf-wide .OTFImage img {
  margin: auto;
  width: 100%;
  height: 100%;
}
.PortfolioItem .OverTheFold .circle-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 50vh;
  flex: 1;
}
.PortfolioItem .OverTheFold .circle-wrapper .visible-circle {
  position: absolute;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  will-change: transform;
}
.PortfolioItem .OverTheFold .circle-wrapper .visible-circle .background {
  position: absolute;
}
.PortfolioItem .OverTheFold .circle-wrapper .child-content {
  position: relative;
  width: 100%;
  z-index: 1;
  flex: 1;
}
.PortfolioItem .OverTheFold .otf-bottom > .inner-view {
  position: relative;
}
.PortfolioItem .OverTheFold .otf-top > .inner-view {
  height: 100%;
  display: flex;
  align-items: center;
}
.PortfolioItem .OverTheFold .OTFTitle p {
  color: #0c5ed7;
  font-size: 26px;
  font-family: "Mark";
  font-weight: 700;
  margin-left: 6px;
}
.PortfolioItem .OverTheFold .OTFTitle h1 {
  color: #0a1f41;
  font-size: 58px;
  font-family: "Mark";
  font-weight: 300;
}
.PortfolioItem .OverTheFold .OTFDescription .top .summary-text {
  font-size: 18px;
}
.PortfolioItem .OverTheFold .OTFDescription .bot {
  margin-top: 9px;
  display: flex;
  gap: 30px;
}
.PortfolioItem .OverTheFold .OTFDescription .bot .visit-website {
  text-decoration: none;
  transition: color 0.2s;
}
.PortfolioItem .OverTheFold .OTFDescription .bot .visit-website:hover {
  color: var(--hover-color) !important;
}
.PortfolioItem .OverTheFold .OTFDescription .bot .summary-title {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3.5px;
  font-family: "Mark";
  text-transform: uppercase;
}
.PortfolioItem .OverTheFold .OTFDescription .bot .summary-icons {
  display: flex;
  font-size: 30px;
  gap: 43px;
  margin-top: 10px;
}
.PortfolioItem .OverTheFold .OTFDescription .bot .summary-icons a {
  text-decoration: none;
  transition: color 0.2s;
}
.PortfolioItem .OverTheFold .OTFDescription .bot .summary-icons a:hover {
  color: var(--hover-color);
}
.PortfolioItem .OTFImage {
  overflow: hidden;
}
.PortfolioItem .OTFImage picture {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: flex-end;
}
.PortfolioItem .OTFImage img {
  width: 100%;
  object-fit: contain;
  object-position: bottom;
}
.PortfolioItem.hero-cut .OTFImage {
  overflow: hidden;
}
.PortfolioItem.hero-cut .OTFImage picture {
  display: block;
  height: 100%;
}
.PortfolioItem.hero-cut .OTFImage img {
  margin: 0;
  padding: 0;
  object-fit: cover;
  object-position: top;
  display: block;
  height: 100%;
  width: 100%;
}
.PortfolioItem.the-carbox .otf-mobile .OTFImage, .PortfolioItem.creators .otf-mobile .OTFImage, .PortfolioItem.labbi .otf-mobile .OTFImage, .PortfolioItem.alto .otf-mobile .OTFImage {
  max-height: 66vh;
}
.PortfolioItem.the-carbox .otf-wide .OTFImage, .PortfolioItem.creators .otf-wide .OTFImage, .PortfolioItem.labbi .otf-wide .OTFImage, .PortfolioItem.alto .otf-wide .OTFImage {
  max-height: 66vh;
}
.PortfolioItem.aptuno .otf-wide .OTFImage {
  max-height: 66vh;
}
.PortfolioItem.aptuno .highlight-image-container .img-hightlight {
  height: 600px !important;
  max-width: 600px !important;
  left: 8%;
}
.PortfolioItem.ventas-pop .otf-desktop .OTFImage {
  max-height: 100vh;
}
.PortfolioItem.ventas-pop .otf-wide .OTFImage {
  bottom: -20%;
}
.PortfolioItem.ventas-pop .otf-mobile .OTFImage {
  bottom: -7vh;
}
.PortfolioItem.pulip .otf-desktop .OTFImage {
  max-height: 100vh;
}
.PortfolioItem.pulip .otf-wide .OTFImage {
  bottom: -20%;
}
.PortfolioItem.pulip .otf-mobile .OTFImage {
  bottom: -7vh;
}
.PortfolioItem.pulip .highlight-image-container .img-hightlight {
  height: 600px !important;
  max-width: 600px !important;
  left: 8%;
  margin-top: -20px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .PortfolioItem.the-carbox .hero-container .hero .hero-image-container .img-hightlight {
    object-position: bottom;
    max-width: 100%;
    object-fit: contain;
  }
}
.PortfolioItem .mobile-summary {
  display: inline-block;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .PortfolioItem .mobile-summary {
    display: none;
  }
}
.PortfolioItem .mobile-summary h4 {
  color: #0a1f41;
  font-size: 30px;
  letter-spacing: 0.9px;
  line-height: 31px;
  margin-bottom: 28px;
}
.PortfolioItem .mobile-summary .summary-text {
  color: #0a1f41;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0;
}
.PortfolioItem .mobile-summary .arrow-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 38px;
  margin-bottom: 28px;
}
.PortfolioItem .bullets-container {
  position: relative;
  z-index: 1;
  background: white;
}
.PortfolioItem .bullets-container .bullets {
  display: grid;
  gap: 32px;
  margin-bottom: 76px;
}
.PortfolioItem .bullets-container .bullets .bullet-container {
  padding-left: 67px;
}
@media screen and (max-width: 768px) {
  .PortfolioItem .bullets-container .bullets .bullet-container {
    padding: unset;
  }
}
@media screen and (min-width: 768px) {
  .PortfolioItem .bullets-container .bullets {
    grid-template-columns: 1fr 1fr;
    margin-top: 67px;
  }
}
.PortfolioItem .story-container {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.PortfolioItem .story-container .story-backgrounds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}
.PortfolioItem .story-container .story-backgrounds .story-bg-left, .PortfolioItem .story-container .story-backgrounds .story-bg-right {
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .PortfolioItem .story-container .story-backgrounds {
    flex-direction: column;
  }
  .PortfolioItem .story-container .story-backgrounds .story-bg-left, .PortfolioItem .story-container .story-backgrounds .story-bg-right {
    width: 100%;
    height: 50%;
  }
}
.PortfolioItem .story-container .semi-circle {
  width: 100%;
}
.PortfolioItem .story-container .semi-circle .circle-top {
  height: 320px !important;
}
.PortfolioItem .story-container .semi-circle.left-semi-circle .circle-top {
  border-radius: 100% 100% 0 0;
  width: 120%;
  left: -10%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .PortfolioItem .story-container .semi-circle.left-semi-circle .circle-top {
    border-radius: 100% 0 0 0;
    left: -10%;
    height: 150px;
    width: 110%;
    position: relative;
  }
}
.PortfolioItem .story-container .semi-circle.left-semi-circle .circle-body {
  margin-top: -44px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .PortfolioItem .story-container .semi-circle.left-semi-circle .circle-body {
    margin-top: 0;
    height: 100%;
  }
}
.PortfolioItem .story-container .semi-circle.right-semi-circle .circle-top {
  border-radius: 0 100% 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .PortfolioItem .story-container .semi-circle.right-semi-circle .circle-top {
    border-radius: 0;
  }
}
.PortfolioItem .story-container .semi-circle.right-semi-circle .circle-body {
  padding: 60px 20px 90px;
}
@media screen and (max-width: 768px) {
  .PortfolioItem .story-container .semi-circle.right-semi-circle .circle-body {
    padding: unset;
    display: none !important;
  }
}
.PortfolioItem .story-container > div .circle-body {
  color: #ffffff;
  display: inline-block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .PortfolioItem .story-container > div .circle-body {
    padding: 0 0 100px !important;
  }
}
.PortfolioItem .story-container > div .circle-body .circle-content {
  box-sizing: content-box;
}
@media screen and (min-width: 768px) {
  .PortfolioItem .story-container > div .circle-body .circle-content {
    max-width: 358px;
  }
}
.PortfolioItem .circle-body {
  display: flex !important;
  justify-content: center;
  height: 180px;
}
.PortfolioItem .mobile-circle-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 30px;
}
.PortfolioItem .circle-texts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-direction: row;
  gap: 32px;
  width: 100%;
  position: relative;
  z-index: 47;
}
@media screen and (max-width: 767px) {
  .PortfolioItem .circle-texts {
    display: flex;
    flex-direction: column;
    gap: 150px;
    padding: 0 20px;
  }
  .PortfolioItem .circle-texts.first-circle {
    padding-top: 180px;
    padding-bottom: 50px;
  }
  .PortfolioItem .circle-texts.second-circle {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #fc6865;
  }
}
.PortfolioItem .circle-texts .text {
  display: flex;
  max-width: 500px;
  flex-direction: column;
  padding-left: 97px;
  color: #ffffff;
  margin-top: -17px;
}
@media screen and (max-width: 768px) {
  .PortfolioItem .circle-texts .text {
    max-width: unset;
    padding-left: 0;
  }
}
.PortfolioItem .circle-texts .text .story-text {
  font-size: 24px;
  line-height: 2rem;
}
@media screen and (min-width: 768px) {
  .PortfolioItem .circle-texts .text .story-text {
    font-size: 30px;
    line-height: 2.5rem;
    letter-spacing: 0.5px;
  }
}
.PortfolioItem .circle-texts .text h3 {
  font-size: 14px;
  letter-spacing: 3.5px;
  line-height: 36px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .PortfolioItem .circle-texts .text h3 {
    font-size: 20px;
    letter-spacing: 4px;
    line-height: 3rem;
  }
}
.PortfolioItem .carousel-container {
  position: relative;
  margin: 0 auto;
  padding: 24px 0 24px;
  width: 100vw;
  height: 680px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.PortfolioItem .carousel-container img {
  width: auto;
  height: 600px;
  object-fit: contain;
  object-position: center;
}
.PortfolioItem .carousel-container .glide {
  overflow: unset;
  max-width: 2000px;
  width: 100%;
}
.PortfolioItem .carousel-container .glide .glide__track {
  overflow: unset;
}
.PortfolioItem .carousel-container .glide .glide__slide img {
  border-radius: 8px;
  width: auto;
  height: 600px;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .PortfolioItem .carousel-container .glide .glide__slide img {
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .PortfolioItem .carousel-container .glide .glide__slide img {
    height: 300px;
  }
}
.PortfolioItem .carousel-container .glide-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  width: fit-content;
  margin: 16px auto 0;
}
.PortfolioItem .carousel-container .glide__arrow {
  border: none;
  background: transparent;
  color: white;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  padding: 0 10px;
  transition: all 0.2s;
}
.PortfolioItem .carousel-container .glide__arrow:hover {
  color: #ffcc33;
}
.PortfolioItem .carousel-container .glide__bullets {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0 10px;
}
.PortfolioItem .carousel-container .glide__bullets .glide__bullet {
  background-color: transparent;
  border: 2px solid white;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 4px;
  padding: 0;
  cursor: pointer;
  box-shadow: none;
}
.PortfolioItem .carousel-container .glide__bullets .glide__bullet--active {
  background-color: white;
}
@media screen and (max-width: 1200px) {
  .PortfolioItem .carousel-container {
    padding: 0px;
    height: 450px;
  }
  .PortfolioItem .carousel-container img {
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .PortfolioItem .carousel-container {
    padding: 24px 0 24px;
    height: 375px;
  }
  .PortfolioItem .carousel-container img {
    height: 300px;
  }
}
.PortfolioItem .highlights-container {
  position: relative;
}
.PortfolioItem .highlights-background {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
  display: grid;
}
@media screen and (min-width: 768px) {
  .PortfolioItem .highlights-background {
    grid-template-columns: 1fr 1fr;
  }
}
.PortfolioItem .highlights-background > * {
  height: 100%;
}
.PortfolioItem .highlights-background .gray-background {
  background-color: #edeff5;
}
@media screen and (max-width: 768px) {
  .PortfolioItem .highlights-background > *:not(.gray-background) {
    display: none;
  }
}
.PortfolioItem .highlights-container > .inner-view {
  display: grid;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .PortfolioItem .highlights-container > .inner-view {
    height: 360px;
    grid-template-columns: 1fr 1fr;
  }
}
.PortfolioItem .highlights-container > .inner-view .highlights {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 15px;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .PortfolioItem .highlights-container > .inner-view .highlights {
    margin-right: auto;
    padding-left: 70px;
  }
}
@media screen and (max-width: 768px) {
  .PortfolioItem .highlights-container > .inner-view .highlights {
    width: 100%;
    padding: 48px 20px;
  }
}
.PortfolioItem .highlights-container > .inner-view .highlights .content {
  margin-right: auto;
}
.PortfolioItem .highlights-container > .inner-view .highlights .stat {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  margin-left: 28px;
}
.PortfolioItem .highlights-container > .inner-view .highlights .stat .stat-top {
  font-size: 44px;
  line-height: 46px;
  font-weight: 300;
  color: #01125a;
}
.PortfolioItem .highlights-container > .inner-view .highlights .stat .stat-bottom {
  text-align: left;
  font: 800 14px/36px "Mark", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 2.8px;
  color: #fc6865;
  text-transform: uppercase;
}
.PortfolioItem .highlights-container > .inner-view .highlight-image-container {
  user-select: none;
  display: none;
  max-height: 370px;
}
@media screen and (min-width: 768px) {
  .PortfolioItem .highlights-container > .inner-view .highlight-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
  }
  .PortfolioItem .highlights-container > .inner-view .highlight-image-container picture {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .PortfolioItem .highlights-container > .inner-view .highlight-image-container .img-hightlight {
    z-index: 2;
    height: 500px;
    object-fit: contain;
    max-width: 350px;
  }
}
.PortfolioItem .quotes2-container {
  background-color: #0c5ed7;
}
.PortfolioItem .quotes2-container .quote-container .top-bar .info > .name,
.PortfolioItem .quotes2-container .quote-text {
  color: #ffffff;
}
.PortfolioItem .quotes2-container .quote-container .top-bar .info > .position {
  color: #ffcc33;
}
.PortfolioItem .portfolio-container {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .PortfolioItem .portfolio-container .portfolio {
    padding: 0;
  }
  .PortfolioItem .portfolio-container .portfolio .moreProjects {
    margin-left: 20px;
  }
  .PortfolioItem .portfolio-container .portfolio .highlightCard {
    margin-top: 20px;
  }
}
.PortfolioItem .portfolio-container h3 {
  font-size: 14px;
  line-height: 36px;
  letter-spacing: 2.8px;
  color: #fc6865;
  font-weight: 800;
  padding: 24px;
  display: flex;
  text-transform: uppercase;
  margin-top: 36px;
}
@media screen and (min-width: 992px) {
  .PortfolioItem .portfolio-container {
    display: flex;
  }
  .PortfolioItem .portfolio-container .portfolio h3 {
    margin-bottom: 0;
  }
  .PortfolioItem .portfolio-container .portfolio .highlight-cards {
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.PortfolioItem .portfolio-container .arrow-link {
  margin-left: auto;
  justify-content: flex-end;
  display: flex;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .PortfolioItem .portfolio-container .arrow-link {
    padding: 0 24px;
  }
}

.bullet-container {
  display: grid;
  grid-template-columns: min-content 1fr;
}
.bullet-container .icon-asterisk {
  margin-right: 14px;
  grid-row: 1/3;
  color: #fc6865;
  line-height: 36px;
}
.bullet-container .heading {
  font-size: 14px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fc6865;
  line-height: 36px;
}
.bullet-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bullet-container ul li {
  color: #0a1f41;
  font-size: 18px;
  line-height: 20px;
}

.quotes-container {
  padding: 64px 0;
}
@media screen and (min-width: 992px) {
  .quotes-container {
    padding: 100px 0;
  }
}
.quotes-container.quotes1-container .glide__track {
  overflow: hidden;
}
.quotes-container.quotes1-container *[data-glide-el=controls] {
  margin-top: 30px;
}
.quotes-container.quotes1-container *[data-glide-el=controls] * {
  color: #0c5ed7;
}
.quotes-container.quotes1-container *[data-glide-el=controls] * .glide__bullet {
  border-color: #0c5ed7;
}
.quotes-container.quotes1-container *[data-glide-el=controls] * .glide__bullet.glide__bullet--active {
  background-color: #0c5ed7;
}

.quote-container {
  display: grid;
}
@media screen and (min-width: 992px) {
  .quote-container {
    grid-template-columns: 2fr 5fr;
    padding-left: 97px;
  }
}
.quote-container .top-bar {
  display: flex;
  margin-bottom: 24px;
  align-items: flex-start;
}
.quote-container .top-bar .avatar {
  background-color: transparent;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-right: 24px;
  border: none;
}
.quote-container .top-bar .info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.quote-container .top-bar .info .name {
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  color: #01125a;
}
.quote-container .top-bar .info .position {
  margin-top: 8px;
  color: #fc6865;
  font-size: 14px;
  font-weight: 800;
}
.quote-container .quote-text {
  font-size: 26px;
  color: #01125a;
  line-height: 28px;
  max-width: 550px;
  margin-left: 9px;
}
.quote-container .glide {
  max-width: 1270px !important;
}

.Culture .inner-space-container {
  background-color: #0c5ed7;
}
.Culture {
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  .Culture {
    overflow-x: hidden;
  }
}
@media screen and (min-width: 586px) {
  .Culture #outer {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding-top: 120px;
  }
}
.Culture .section-title {
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 800;
}
.Culture span::-moz-selection {
  background: #746e6e;
}
.Culture span::selection {
  background: #746e6e;
}
.Culture .hero-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-content: center;
  padding-top: 10%;
  background-color: #0c5ed7;
  height: 550px;
  min-height: 550px;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .Culture .hero-container {
    padding-bottom: unset;
    padding-top: 25%;
    height: 390px;
    min-height: 390px;
  }
}
.Culture .hero-container .hero {
  display: grid;
  align-items: center;
  width: 100%;
  justify-items: flex-start;
}
.Culture .hero-container .hero .hero-claim {
  color: #ffffff;
}
.Culture .hero-container .hero .hero-claim h1 {
  font-size: 54px;
  font-weight: 800;
  max-width: 750px;
}
@media screen and (min-width: 1720px) and (min-aspect-ratio: 23/10) {
  .Culture .hero-container .hero .hero-claim h1 {
    font-size: 74px;
  }
}
@media screen and (max-width: 768px) {
  .Culture .hero-container .hero .hero-claim h1 {
    font-size: 38px;
  }
}
.Culture .hero-container .hero .hero-claim span {
  font-size: 34px;
}
@media screen and (min-width: 768px) {
  .Culture .hero-container .hero .hero-claim span {
    font-size: 40px;
  }
}
.Culture .ship-constellation-container {
  max-width: 1270px;
  flex-direction: row;
  position: relative;
  margin: 0 auto;
  z-index: 10;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  bottom: 18vh;
  animation: float 6s ease-in-out infinite;
}
.Culture .ship-constellation-container > div > .spaceship {
  width: 100%;
  right: -70px;
  top: -40px;
}
@media screen and (min-width: 992px) {
  .Culture .ship-constellation-container {
    left: unset;
    width: 80%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    bottom: 23vh;
    left: 17%;
  }
}
@media screen and (min-width: 400px) {
  .Culture .ship-constellation-container > div > .spaceship {
    top: 70px;
  }
}
.Culture .ship-constellation-container > div {
  width: 100%;
  display: flex;
  justify-content: center;
}
.Culture .ship-constellation-container .constellation {
  transform: rotate(-90deg) !important;
  z-index: 1 !important;
  position: absolute;
  top: 31%;
  right: 73%;
  width: 187px;
  height: 368px;
}
@media screen and (max-width: 768px) {
  .Culture .ship-constellation-container .constellation {
    display: none;
  }
}
.Culture .ship-constellation-container .spaceship {
  height: 100%;
  z-index: 10 !important;
  max-width: 370px;
}
@media screen and (min-width: 992px) {
  .Culture .ship-constellation-container .spaceship {
    max-width: 593px;
  }
}
.Culture .ship-constellation-container .spaceship {
  width: 100%;
  aspect-ratio: 17/10;
  position: relative;
  transition: all 1s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  width: 100%;
  left: 10%;
}
.Culture .ship-constellation-container picture.spaceship {
  display: inline-block;
}
.Culture .ship-constellation-container picture.spaceship img {
  width: 100%;
  height: auto;
}
.Culture .ship-constellation-container .testEffect .spaceship {
  right: -4.5%;
  top: -40px;
}
.Culture .guitar-constellation-container {
  display: flex !important;
  flex-direction: row;
  margin: 0 auto;
  z-index: 10;
  align-items: center;
  bottom: 0;
}
.Culture .guitar-constellation-container .astronaut-guitar {
  width: 367px;
  flex-shrink: 0;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}
.Culture .guitar-constellation-container picture.astronaut-guitar {
  display: inline-block;
}
.Culture .guitar-constellation-container picture.astronaut-guitar img {
  width: 100%;
  height: auto;
}
.Culture .guitar-constellation-container .constellation {
  z-index: 1 !important;
  width: 236px;
  left: -116px;
  position: relative;
  bottom: -22px;
}
@media screen and (max-width: 768px) {
  .Culture .guitar-constellation-container {
    bottom: -150px;
    position: absolute;
    left: 0;
    right: -110px;
    margin: 0 auto;
    justify-content: center;
  }
  .Culture .guitar-constellation-container .constellation {
    top: -40px;
    width: 125px;
    height: 257px;
  }
  .Culture .guitar-constellation-container .astronaut-guitar {
    width: 280px;
    height: 335px;
    left: -93px;
  }
}
.Culture .center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
}
.Culture .center-container .circle-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.Culture .center-container .visible-circle {
  position: absolute;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  will-change: transform;
}
.Culture .center-container .visible-circle .background {
  position: absolute;
}
.Culture .center-container .topper {
  position: relative;
  max-height: 20vh;
}
@media screen and (max-width: 768px) {
  .Culture .center-container .topper {
    height: auto;
    max-height: 100%;
  }
}
.Culture .center-container .child-content {
  position: relative;
  width: 100%;
  padding-bottom: 0;
}
@media screen and (min-width: 586px) {
  .Culture .center-container .child-content {
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 769px) {
  .Culture .center-container .child-content {
    padding-bottom: 300px;
  }
}
@media screen and (min-width: 992px) {
  .Culture .center-container .child-content {
    padding-bottom: 200px;
  }
}
.Culture .center-container .child-content {
  overflow: inherit !important;
}
@media screen and (max-width: 400px) and (max-aspect-ratio: 2/1) {
  .Culture .center-container .child-content .ship-constellation-container {
    bottom: auto;
  }
}
@media screen and (min-width: 586px) {
  .Culture .center-container .child-content .ship-constellation-container {
    bottom: 225px;
  }
}
@media screen and (min-width: 768px) {
  .Culture .center-container .child-content .ship-constellation-container {
    bottom: 225px;
  }
}
@media screen and (min-width: 1720px) and (min-aspect-ratio: 23/10) {
  .Culture .center-container {
    margin-top: unset;
  }
}
.Culture .outer-space-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  background: #0c5ed7;
  position: relative;
  z-index: 1;
}
.Culture .outer-space-container .floatingArrow {
  position: absolute;
  top: 180px;
  z-index: 99;
  width: 100%;
}
.Culture .outer-space-container .floatingArrow .containerArrow span {
  color: #0c5ed7;
}
.Culture .outer-space-container .floatingArrow .containerArrow:hover span {
  color: #ffcc33;
}
@media screen and (min-width: 992px) {
  .Culture .outer-space-container .floatingArrow span {
    color: #0c5ed7;
  }
  .Culture .outer-space-container .floatingArrow span:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 768px) {
  .Culture .outer-space-container .floatingArrow {
    bottom: 190px;
  }
  .Culture .outer-space-container .floatingArrow .containerArrow span {
    color: #ffffff;
  }
  .Culture .outer-space-container .floatingArrow .containerArrow:hover span {
    color: #ffffff;
  }
}
.Culture .outer-space-container .red-background {
  background-color: #fc6865;
}
.Culture .outer-space-container .top-half-circle,
.Culture .outer-space-container .bottom-half-circle {
  display: flex;
  position: relative;
  height: 20vw;
}
@media screen and (min-width: 992px) {
  .Culture .outer-space-container .top-half-circle,
  .Culture .outer-space-container .bottom-half-circle {
    height: 12vw;
  }
  .Culture .outer-space-container .top-half-circle::before,
  .Culture .outer-space-container .bottom-half-circle::before {
    height: 12vw !important;
  }
}
.Culture .outer-space-container .top-half-circle.top-half-circle .constellation,
.Culture .outer-space-container .bottom-half-circle.top-half-circle .constellation {
  display: none;
}
@media screen and (min-width: 992px) {
  .Culture .outer-space-container .top-half-circle.top-half-circle .constellation,
  .Culture .outer-space-container .bottom-half-circle.top-half-circle .constellation {
    display: flex;
    position: absolute;
    transform: rotate(-90deg);
    right: 600px;
    top: -150px;
    z-index: 1;
  }
}
.Culture .outer-space-container .top-half-circle.top-half-circle .spaceship-container,
.Culture .outer-space-container .bottom-half-circle.top-half-circle .spaceship-container {
  position: absolute;
  right: -20px;
  top: -45px;
  z-index: 2;
}
.Culture .outer-space-container .top-half-circle.top-half-circle .spaceship-container img,
.Culture .outer-space-container .bottom-half-circle.top-half-circle .spaceship-container img {
  width: 279px;
  max-width: 60vw;
  animation: enterFromRight 800ms ease-in-out forwards;
}
@media screen and (min-width: 768px) {
  .Culture .outer-space-container .top-half-circle.top-half-circle .spaceship-container,
  .Culture .outer-space-container .bottom-half-circle.top-half-circle .spaceship-container {
    top: -100px;
  }
  .Culture .outer-space-container .top-half-circle.top-half-circle .spaceship-container img,
  .Culture .outer-space-container .bottom-half-circle.top-half-circle .spaceship-container img {
    width: 593px;
  }
}
.Culture .outer-space-container .top-half-circle.top-half-circle::before,
.Culture .outer-space-container .bottom-half-circle.top-half-circle::before {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.Culture .outer-space-container .top-half-circle.bottom-half-circle,
.Culture .outer-space-container .bottom-half-circle.bottom-half-circle {
  bottom: 2px;
}
.Culture .outer-space-container .top-half-circle.bottom-half-circle .astronaut-container,
.Culture .outer-space-container .bottom-half-circle.bottom-half-circle .astronaut-container {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  top: -120px;
}
@media screen and (min-width: 992px) {
  .Culture .outer-space-container .top-half-circle.bottom-half-circle .astronaut-container,
  .Culture .outer-space-container .bottom-half-circle.bottom-half-circle .astronaut-container {
    top: -250px;
  }
  .Culture .outer-space-container .top-half-circle.bottom-half-circle .astronaut-container .astronaut-div,
  .Culture .outer-space-container .bottom-half-circle.bottom-half-circle .astronaut-container .astronaut-div {
    max-width: 1270px;
    padding-left: 24px;
    width: 100%;
    margin: 0 auto;
  }
}
.Culture .outer-space-container .top-half-circle.bottom-half-circle .astronaut-container img,
.Culture .outer-space-container .bottom-half-circle.bottom-half-circle .astronaut-container img {
  position: relative;
  max-width: 280px;
}
@media screen and (min-width: 992px) {
  .Culture .outer-space-container .top-half-circle.bottom-half-circle .astronaut-container img,
  .Culture .outer-space-container .bottom-half-circle.bottom-half-circle .astronaut-container img {
    max-width: 460px;
  }
}
.Culture .outer-space-container .top-half-circle.bottom-half-circle .astronaut-container .constellation,
.Culture .outer-space-container .bottom-half-circle.bottom-half-circle .astronaut-container .constellation {
  z-index: 0;
  position: absolute;
  width: auto;
  left: 55%;
  max-width: 280px;
  height: 100%;
}
@media screen and (min-width: 992px) {
  .Culture .outer-space-container .top-half-circle.bottom-half-circle .astronaut-container .constellation,
  .Culture .outer-space-container .bottom-half-circle.bottom-half-circle .astronaut-container .constellation {
    top: -20%;
    left: 20%;
    height: 120%;
  }
}
.Culture .outer-space-container .top-half-circle.bottom-half-circle::before,
.Culture .outer-space-container .bottom-half-circle.bottom-half-circle::before {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.Culture .outer-space-container .top-half-circle::before,
.Culture .outer-space-container .bottom-half-circle::before {
  position: absolute;
  height: 20vw;
  width: 120vw;
  border-radius: 50%/100%;
  content: "";
  left: -10vw;
  bottom: -1px;
}
.Culture .outer-space-container .top-half-circle::after,
.Culture .outer-space-container .bottom-half-circle::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: -1px;
  z-index: -1;
}
@media screen and (max-width: 1400px) and (min-width: 768px) {
  .Culture .outer-space-container .spacer {
    height: 5vw;
  }
}
.Culture .outer-space-container .outer-space {
  width: 100%;
  z-index: 1;
}
.Culture .outer-space-container .outer-space .team-text {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .Culture .outer-space-container .outer-space .team-text {
    margin: 0 auto 80px;
    text-align: center;
    margin-top: auto;
  }
}
@media screen and (min-width: 992px) {
  .Culture .outer-space-container .outer-space .team-text {
    margin: 0;
    margin-left: auto;
    text-align: initial;
  }
}
.Culture .outer-space-container .outer-space .team-text p {
  color: #ffffff;
  font-size: 20px;
  line-height: 22px;
  flex-direction: column;
  font-weight: 300;
}
.Culture .outer-space-container .outer-space .team-text p b {
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .Culture .outer-space-container .outer-space .team-text p {
    display: flex;
    font-size: 40px;
    line-height: 42px;
    max-width: 531px;
  }
}
@media screen and (min-width: 768px) {
  .Culture .outer-space-container .outer-space .team-text h3 {
    display: block;
    max-width: 531px;
    width: 100%;
  }
}
.Culture .outer-space-container .outer-space .grid {
  width: 65%;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(100px, auto);
  margin-left: 11vw;
}
@media screen and (min-width: 992px) {
  .Culture .outer-space-container .outer-space .grid {
    margin-left: 4vw;
  }
}
.Culture .outer-space-container .outer-space .grid .grid-item {
  display: flex;
  flex-direction: column;
  width: 45px;
  border-radius: 5px;
  justify-self: flex-start;
  align-items: center;
}
.Culture .outer-space-container .outer-space .grid .grid-item.no-image {
  border-radius: 100%;
  aspect-ratio: 1/1;
  position: relative;
}
.Culture .outer-space-container .outer-space .grid .grid-item.no-image div {
  background: #ffcc33;
  position: relative;
  width: 86px;
  height: 86px;
  top: 21px;
}
.Culture .outer-space-container .outer-space .grid .grid-item.no-image p {
  width: 100%;
  display: block;
  text-align: center;
  position: absolute;
  bottom: 0px;
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  height: 20px;
  font-size: 20px;
  line-height: 20px;
}
@media screen and (max-width: 768px) {
  .Culture .outer-space-container .outer-space .grid .grid-item.no-image div {
    background: #ffcc33;
    position: relative;
    width: 55px;
    height: 55px;
    top: 10px;
  }
  .Culture .outer-space-container .outer-space .grid .grid-item.no-image p {
    font-size: 14px;
    height: 14px;
    line-height: 14px;
  }
}
.Culture .outer-space-container .outer-space .grid .grid-item .team-member-img {
  overflow: hidden;
  width: 60px;
  height: 60px;
  background-position: center;
  background-size: cover;
}
.Culture .outer-space-container .outer-space .grid .grid-item .team-member-img img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 395px) {
  .Culture .outer-space-container .outer-space .grid .grid-item .team-member-img {
    width: 76px;
    height: 76px;
  }
}
@media screen and (min-width: 992px) {
  .Culture .outer-space-container .outer-space .grid .grid-item .team-member-img {
    width: 115px;
    height: 115px;
  }
}
.Culture .outer-space-container .outer-space .grid .grid-item .team-member-img {
  border-radius: 50%;
}
.Culture .outer-space-container .outer-space .grid .grid-item p {
  color: #ffffff;
  font-size: 14px;
  line-height: 31px;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .Culture .outer-space-container .outer-space .grid .grid-item p {
    display: flex;
  }
}
.Culture .outer-space-container .outer-space .grid .grid-item:nth-child(-n+4) {
  justify-self: flex-end;
}
.Culture .outer-space-container .outer-space .grid .grid-item:nth-child(n+5):nth-child(-n+8) {
  justify-self: flex-start;
}
.Culture .outer-space-container .outer-space .grid .grid-item:nth-child(n+9):nth-child(-n+12) {
  justify-self: flex-end;
}
.Culture .outer-space-container .outer-space .grid .grid-item:nth-child(n+13):nth-child(-n+16) {
  justify-self: flex-start;
}
.Culture .outer-space-container .outer-space .grid .grid-item:nth-child(n+17):nth-child(-n+20) {
  justify-self: flex-end;
}
.Culture .outer-space-container .outer-space .grid .grid-item:nth-child(n+21):nth-child(-n+24) {
  justify-self: flex-start;
}
.Culture .pillars-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}
.Culture .pillars-container > .circle-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.Culture .pillars-container .visible-circle {
  position: absolute;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  will-change: transform;
}
.Culture .pillars-container .visible-circle .background {
  position: absolute;
}
.Culture .pillars-container > .circle-wrapper > .child-content {
  position: relative;
  width: 100%;
  padding-top: 83px;
  padding-bottom: 180px;
}
@media screen and (max-width: 768px) {
  .Culture .pillars-container > .circle-wrapper > .child-content {
    padding-top: 200px;
  }
}
.Culture .pillars-container .pillars {
  max-width: 700px;
}
@media screen and (min-width: 992px) {
  .Culture .pillars-container .pillars {
    max-width: 1270px;
  }
}
.Culture .pillars-container .section-title {
  margin-bottom: 50px;
}
.Culture .pillars-container .detailed-list {
  padding: 0;
  margin: 0;
}
.Culture .pillars-container .detailed-list li {
  margin-bottom: 58px;
}
@media screen and (min-width: 992px) {
  .Culture .pillars-container .detailed-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .Culture .pillars-container .detailed-list li:nth-child(3),
  .Culture .pillars-container .detailed-list li:nth-child(4) {
    padding-left: 110px;
  }
  .Culture .pillars-container .detailed-list li {
    margin-bottom: 0;
  }
}
.Culture .pillars-container .arrow-link {
  margin-left: auto;
  justify-content: flex-end;
  display: flex;
  margin-top: 48px;
}
.Culture .pillars-container .bottom-half-circle {
  display: flex;
  position: relative;
  height: 20vw;
}
.Culture .pillars-container .bottom-half-circle::before {
  background-color: #0c5ed7;
  position: absolute;
  height: 20vw;
  width: 120vw;
  border-radius: 50%/100%;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  content: "";
  left: -10vw;
  bottom: 1px;
}
@media screen and (min-width: 992px) {
  .Culture .pillars-container .bottom-half-circle {
    height: 12vw;
  }
  .Culture .pillars-container .bottom-half-circle::before {
    height: 12vw !important;
  }
}
.Culture .pillars-constellation > img {
  margin-left: 15%;
  width: 15% !important;
  transform: rotate(-25deg);
}
.Culture .previous-experience-container {
  margin-bottom: 200px;
  margin-top: 100px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .Culture .previous-experience-container {
    margin-top: unset;
    margin-bottom: 100px;
  }
}
.Culture .previous-experience-container .section-title {
  font-size: 20px;
  color: #0c5ed7;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 5px;
}
@media screen and (max-width: 768px) {
  .Culture .previous-experience-container .section-title {
    margin-bottom: 50px;
  }
}
.Culture .previous-experience-container .previous-experiences {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
  row-gap: 80px;
  column-gap: 35px;
}
.Culture .previous-experience-container .previous-experiences .experience-img {
  user-select: none;
}
.Culture .previous-experience-container .previous-experiences .experience-img {
  max-width: 100%;
  max-height: 138px;
  height: auto;
  width: auto;
}
@media screen and (max-width: 768px) {
  .Culture .previous-experience-container .previous-experiences {
    grid-template-columns: 1fr 1fr;
    margin-left: 0px;
  }
  .Culture .previous-experience-container .previous-experiences .experience-img {
    width: 100%;
  }
}

.icon-button .button-icon, .icon-button .button-icon-hidden, .icon-button .button-icon-disabled {
  display: flex;
  font-size: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #ffffff;
  align-items: center;
  justify-content: center;
  position: relative;
}

.Contact .formIconsWrapper {
  display: flex;
  justify-content: flex-end;
}
.Contact .wrapperContactIcons {
  display: grid;
  top: 0;
  width: 20%;
}
.Contact .wrapperContactIcons a {
  text-decoration: none;
}
.Contact .containerContactFormIcon {
  margin-bottom: 15px;
  display: flex;
  margin-top: 10px;
}
.Contact .contactFormIcon {
  background-color: #fc6865;
  border-radius: 100%;
  padding: 8px;
  font-size: 30px;
  color: #ffffff;
  transition: all 0.2s ease;
}
.Contact .contactFormIcon:hover {
  background-color: #0c5ed7;
}
.Contact .main-container {
  padding-top: 108px;
}
.Contact .main-container .main {
  position: relative;
  max-width: 1270px;
  padding: 0 120px;
}
.Contact .main-container .main h2 {
  font: 600 18px/20px "Mark", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #01125a;
  margin-bottom: 27px;
}
@media screen and (min-width: 768px) {
  .Contact .main-container .main h2 {
    font: 400 30px/30px "Mark", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }
}
@media screen and (max-width: 768px) {
  .Contact .main-container .main {
    padding: 0 24px;
  }
}
.Contact .main-container .main .thanks-message {
  position: absolute;
  top: 0;
  left: 0;
  animation: float 5s infinite;
  opacity: 0;
  z-index: 3;
  visibility: hidden;
  transition: all 0.7s ease-in-out;
  height: 40vh;
  margin-top: 5vh;
  display: flex;
}
.Contact .main-container .main .thanks-message h2 {
  color: white;
}
.Contact .main-container .main .thanks-message .constellation {
  position: absolute;
  right: 0;
  top: 0;
  animation: float 5s infinite;
  width: 15vw;
}
.Contact .main-container .main .thanks-message.submitted {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1000px) {
  .Contact .main-container .main .thanks-message {
    padding: 10px;
  }
  .Contact .main-container .main .thanks-message .constellation {
    position: absolute;
    top: auto;
    bottom: -100px;
    animation: float 5s infinite;
    width: 25vw;
  }
}
.Contact form {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (max-width: 768px) {
  .Contact form .inputRoot:nth-child(1) {
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 768px) {
  .Contact form {
    grid-template-columns: 1fr 1fr;
    column-gap: 9px;
  }
  .Contact form > .formIconsWrapper {
    grid-column: span 2;
  }
  .Contact form > .inputRoot-message {
    grid-column: span 2;
  }
}
.Contact form .inputRoot-message > .inputContainer {
  height: 165px;
}
.Contact form .inputRoot-message > .inputContainer .label {
  top: 0 !important;
}
.Contact form .inputRoot-message > .inputContainer .input::placeholder {
  color: #0c5ed7 !important;
}
@media screen and (max-width: 768px) {
  .Contact form .inputRoot-message > .inputContainer {
    height: 22vh;
  }
}
.Contact form button {
  margin-left: auto;
}
.Contact .other-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}

.icon-button {
  outline: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0;
}
.icon-button > * {
  transition: all 0.1s ease-in-out;
}
.icon-button .button-text {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3.5px;
  color: #0c5ed7;
}
.icon-button .button-text.disabled {
  color: #7B7575 !important;
}
.icon-button .button-icon-disabled {
  background: #7B7575;
}
.icon-button .button-icon-hidden {
  visibility: hidden;
  background: #7B7575;
}
.icon-button .icon-chevron-right {
  position: relative;
  left: 2px;
  font-size: 20px;
}
.icon-button .button-icon {
  background: #0c5ed7;
}
.icon-button:hover .button-text {
  color: #fc6865;
}
.icon-button:hover .button-text.loading {
  color: #0c5ed7 !important;
}
.icon-button:hover .button-text.disabled {
  color: #7B7575 !important;
}
.icon-button:hover .button-icon {
  background: #fc6865;
}
.icon-button:hover.disabled {
  color: #7B7575 !important;
}
.icon-button.reverse-colors .button-text {
  color: #fc6865;
}
.icon-button.reverse-colors .button-icon {
  background: #fc6865;
}
.icon-button.reverse-colors:hover .button-text {
  color: #0c5ed7;
}
.icon-button.reverse-colors:hover .button-icon {
  background: #0c5ed7;
}

.error-text {
  transition: all 0.1s ease-in-out;
  color: #fc6865;
  font: 700 14px/20px "Mark", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.Blockchain {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.Blockchain .hero-constellation {
  height: 193px;
}
.Blockchain .hero-constellation-desktop {
  height: 425px;
}
.Blockchain .tool-constellation {
  height: 170px;
}
.Blockchain .wide-constellation {
  height: 387px;
}
.Blockchain .blue-constellation {
  height: 238px;
}
.Blockchain picture {
  display: block;
}
.Blockchain .section-blue-background {
  background-color: #0c5ed7;
  width: 100vw;
  padding: 0 5vw;
}
@media screen and (min-width: 586px) {
  .Blockchain .section-blue-background {
    padding: 0 8vw;
  }
}
.Blockchain .hero-section {
  width: 100%;
  padding-top: 60px;
  height: 600px;
}
.Blockchain .hero-section .hero-svg-mobile {
  width: 100vw;
  height: 260px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .Blockchain .hero-section .hero-svg-mobile {
    height: 180px;
  }
}
.Blockchain .hero-section .hero-svg-mobile .white-cube {
  position: absolute;
  bottom: 5px;
  left: 55px;
  z-index: 4;
}
@media screen and (min-width: 586px) {
  .Blockchain .hero-section .hero-svg-mobile .white-cube {
    left: 125px;
  }
}
@media screen and (min-width: 768px) {
  .Blockchain .hero-section .hero-svg-mobile .white-cube {
    left: 330px;
    bottom: -100px;
  }
}
.Blockchain .hero-section .hero-svg-mobile .blue-cube {
  position: absolute;
  bottom: 60px;
  left: 150px;
  z-index: 3;
}
@media screen and (min-width: 586px) {
  .Blockchain .hero-section .hero-svg-mobile .blue-cube {
    left: 220px;
  }
}
@media screen and (min-width: 768px) {
  .Blockchain .hero-section .hero-svg-mobile .blue-cube {
    left: 430px;
    bottom: -40px;
  }
}
.Blockchain .hero-section .hero-svg-mobile .hero-constellation {
  position: absolute;
  z-index: 2;
  left: 110px;
  top: -50px;
}
@media screen and (min-width: 586px) {
  .Blockchain .hero-section .hero-svg-mobile .hero-constellation {
    left: 180px;
  }
}
@media screen and (min-width: 768px) {
  .Blockchain .hero-section .hero-svg-mobile .hero-constellation {
    top: -80px;
  }
}
.Blockchain .hero-section .white-cube-desktop {
  display: none;
}
.Blockchain .hero-section .blue-cube-desktop {
  display: none;
}
.Blockchain .hero-section .hero-constellation-desktop {
  display: none;
}
.Blockchain .hero-section .hero-texts {
  display: flex;
  flex-direction: column;
}
.Blockchain .hero-section .hero-texts h1 {
  font-weight: bold;
  font-size: 50px;
  line-height: 52px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: fit-content;
  margin-bottom: 0px;
}
.Blockchain .hero-section .hero-texts h1::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: #0c5ed7;
  bottom: 5px;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .Blockchain .hero-section .hero-texts h1 {
    font-size: 60px;
  }
}
.Blockchain .hero-section .hero-texts h2 {
  font-weight: bold;
  font-size: 30px;
  line-height: 32px;
  width: 233px;
  color: #ffffff;
  z-index: 1;
  position: relative;
}
.Blockchain .hero-section .hero-texts span {
  margin-top: 21px;
  font-size: 24px;
  line-height: 25px;
  color: #edeff5;
  z-index: 1;
  position: relative;
  height: 95px;
}
.Blockchain .hero-section .hero-red-circle {
  position: absolute;
  top: -920px;
  left: calc(50% - 750px);
  width: 1500px;
  height: 1600px;
  border-radius: 100%;
  z-index: 0;
  background: #fc6865 0% 0% no-repeat padding-box;
}
.Blockchain .hero-section .floatingArrow {
  position: relative;
}
.Blockchain .techStack-section {
  display: flex;
  flex-direction: column-reverse;
}
.Blockchain .techStack-section .astronaut-container {
  margin-top: 150px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Blockchain .techStack-section .astronaut-container .astronaut {
  position: relative;
  z-index: 1;
  width: 237px;
  height: 320px;
}
.Blockchain .techStack-section .astronaut-container .constellation {
  position: absolute;
  z-index: 0;
  right: 20px;
  bottom: -70px;
  width: 156px;
  height: 320px;
}
.Blockchain .techStack-section .highlights-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 100px;
  width: 85%;
  min-width: 335px;
}
@media screen and (min-width: 586px) {
  .Blockchain .techStack-section .highlights-container {
    width: 100%;
  }
}
.Blockchain .techStack-section .highlights-container .highlight {
  font-size: 30px;
  line-height: 1.1em;
  color: #ffffff;
}
.Blockchain .techStack-section .highlights-container .highlight .bold {
  font-weight: bold;
}
.Blockchain .techStack-section .highlights-container .highlight .regular {
  font-weight: 100;
}
.Blockchain .techStack-section .highlights-container .second-highlight {
  margin-top: 22px;
  width: 85%;
  min-width: 335px;
  height: 76px;
  font-size: 18px;
  line-height: 1.1em;
  color: #ffffff;
  font-weight: 100;
}
@media screen and (min-width: 586px) {
  .Blockchain .techStack-section .highlights-container .second-highlight {
    width: 100%;
  }
}
.Blockchain .techStack-section .highlights-container .techStack-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 85vw;
  min-width: 330px;
  margin-top: 189px;
}
@media screen and (min-width: 586px) {
  .Blockchain .techStack-section .highlights-container .techStack-container {
    width: 100%;
  }
}
.Blockchain .techStack-section .highlights-container .techStack-container .tech-title {
  height: 46px;
  font-weight: bold;
  font-size: 20px;
  line-height: 22px;
  color: #ffcc33;
  letter-spacing: 3.2px;
}
.Blockchain .techStack-section .highlights-container .techStack-container .tech-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}
.Blockchain .techStack-section .highlights-container .techStack-container .tech-wrapper .tech-description {
  padding-top: 5px;
  width: 100% !important;
  min-width: 335px !important;
  height: max-content;
  font-size: 18px;
  line-height: 20px;
  color: #ffffff;
  margin-right: 0;
  font-weight: 100;
}
@media screen and (min-width: 586px) {
  .Blockchain .techStack-section .highlights-container .techStack-container .tech-wrapper .tech-description {
    width: 100% !important;
  }
}
.Blockchain .techStack-section .highlights-container .techStack-container .tech-wrapper .icon-asterisk {
  position: absolute;
  bottom: 180px;
  right: 0px;
  width: 80px;
  height: 80px;
}
.Blockchain .techList-section {
  margin-top: 50px;
  margin-bottom: 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: min-content;
}
.Blockchain .techList-section ul {
  display: none;
}
.Blockchain .techList-section .icon-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
}
.Blockchain .techList-section .bullet-bold {
  width: 75vw;
  min-width: 295px;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 26px;
  font-weight: bold;
  color: #ffffff;
  margin-right: 20px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 586px) {
  .Blockchain .techList-section .bullet-bold {
    width: 450px;
  }
}
@media screen and (min-width: 768px) {
  .Blockchain .techList-section .bullet-bold {
    width: 550px;
  }
}
.Blockchain .techList-section .bullet-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: 74vw;
  min-width: 293px;
  border-bottom: 3px solid #01125a;
  margin-top: 21px;
  margin-left: auto;
  margin-right: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 586px) {
  .Blockchain .techList-section .bullet-wrapper {
    width: 448px;
  }
}
@media screen and (min-width: 768px) {
  .Blockchain .techList-section .bullet-wrapper {
    width: 548px;
    justify-content: flex-start;
  }
}
.Blockchain .techList-section .bullet-regular {
  max-width: 88vw;
  font-size: 18px;
  line-height: 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  font-weight: 100;
}
@media screen and (min-width: 586px) {
  .Blockchain .techList-section .bullet-regular {
    max-width: 600px;
  }
}
.Blockchain .tools-section {
  padding-bottom: 60px;
  position: relative;
  margin-top: 0px;
}
.Blockchain .tools-section .tool-red-circle {
  position: absolute;
  z-index: 0;
  top: 80px;
  left: calc(50% - 875px);
  border-radius: 100%;
  width: 1750px;
  height: 1960px;
  background: #fc6865 0% 0% no-repeat padding-box;
}
@media screen and (min-width: 586px) {
  .Blockchain .tools-section .tool-red-circle {
    height: 1975px;
  }
}
@media screen and (min-width: 768px) {
  .Blockchain .tools-section .tool-red-circle {
    height: 1550px;
  }
}
.Blockchain .tools-section .tool-constellation {
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 10px;
  width: 83px;
  height: 170px;
}
.Blockchain .tools-section .tools-description {
  display: flex;
  flex-direction: column;
  width: 725px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  margin-top: 0px;
}
.Blockchain .tools-section .tools-description .tool-bold {
  margin-top: 180px;
  font-weight: bold;
  font-size: 20px;
  line-height: 22px;
  color: #ffffff;
  letter-spacing: 5px;
  height: 46px;
  width: 195px;
  margin-bottom: 20px;
}
.Blockchain .tools-section .tools-description .tool-regular {
  font-size: 18px;
  line-height: 20px;
  color: #ffffff;
  width: 79vw;
  min-width: 311px;
  margin-bottom: 50px;
  font-weight: 100;
}
.Blockchain .tools-section .tool-circles {
  width: 90vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto-fill, minmax(100px, 1fr));
  grid-column-gap: 2px;
  grid-row-gap: 0px;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 586px) {
  .Blockchain .tools-section .tool-circles {
    width: 100%;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
}
.Blockchain .tools-section .tool-circles > :nth-child(2n+1) {
  margin-top: 40%;
}
.Blockchain .tools-section .tool {
  display: flex;
  flex-direction: column;
  justify-content: baseline;
  align-items: center;
  margin-left: 0;
}
.Blockchain .tools-section .tool p {
  text-align: center;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 4.5px;
  color: #ffffff;
  font-weight: bolder;
  margin-bottom: 0;
}
.Blockchain .tools-section .tool span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  border-radius: 100%;
  background-color: #ffffff;
  margin-bottom: 10px;
}
.Blockchain .tools-section .tool:nth-child(9) {
  margin-top: 0;
  grid-column: 2/span 1;
}
@media screen and (min-width: 768px) {
  .Blockchain .tools-section .tool-circles {
    width: 94vw;
    display: grid;
    max-width: none;
    grid-template-columns: repeat(16, 1fr);
    grid-template-rows: auto;
    grid-column-gap: 2px;
    grid-row-gap: 40px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
  }
  .Blockchain .tools-section .tool-circles .tool {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 50px;
    margin-top: 0px;
  }
  .Blockchain .tools-section .tool-circles .tool p {
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 5px;
    color: #ffffff;
    text-wrap: nowrap;
    font-weight: bolder;
  }
  .Blockchain .tools-section .tool-circles .tool span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 54px;
    height: 54px;
    border-radius: 100%;
    background-color: #ffffff;
    margin-bottom: 5px;
  }
  .Blockchain .tools-section .tool-circles .tool-circles > :nth-child(2n+1) {
    margin-top: 0px !important;
  }
  .Blockchain .tools-section .tool-circles .tool:nth-child(1) {
    grid-column: 3/span 4;
  }
  .Blockchain .tools-section .tool-circles .tool:nth-child(2) {
    grid-column: span 4;
  }
  .Blockchain .tools-section .tool-circles .tool:nth-child(3) {
    grid-column: span 4;
  }
  .Blockchain .tools-section .tool-circles .tool:nth-child(4) {
    grid-column: 1/span 4;
  }
  .Blockchain .tools-section .tool-circles .tool:nth-child(5) {
    grid-column: span 4;
  }
  .Blockchain .tools-section .tool-circles .tool:nth-child(6) {
    grid-column: span 4;
  }
  .Blockchain .tools-section .tool-circles .tool:nth-child(7) {
    grid-column: 3/span 4;
  }
  .Blockchain .tools-section .tool-circles .tool:nth-child(8) {
    grid-column: span 4;
  }
  .Blockchain .tools-section .tool-circles .tool:nth-child(9) {
    grid-column: span 4;
  }
}
.Blockchain .callToAction-section {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  height: 854px;
  gap: 65px;
}
@media screen and (min-width: 768px) {
  .Blockchain .callToAction-section {
    margin-top: 100px;
  }
}
.Blockchain .callToAction-section .cta-images {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Blockchain .callToAction-section .cta-images .asterisk-container {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
}
.Blockchain .callToAction-section .cta-images .asterisk-container .icon-asterisk {
  width: 279px;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .Blockchain .callToAction-section .cta-images .asterisk-container .icon-asterisk {
    width: 330px;
  }
}
.Blockchain .callToAction-section .cta-images .asterisk-container picture.astronaut {
  position: absolute;
  width: 190px;
  height: auto;
  bottom: -20px;
  left: 5vw;
}
.Blockchain .callToAction-section .cta-images .asterisk-container picture.astronaut img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .Blockchain .callToAction-section .cta-images .asterisk-container picture.astronaut {
    width: 224.5px;
    bottom: -30px;
  }
}
.Blockchain .callToAction-section .cta-images .constellation {
  position: absolute;
  z-index: 2;
  top: 31px;
  left: 190px;
  width: 105px;
  height: 216px;
}
@media screen and (min-width: 768px) {
  .Blockchain .callToAction-section .cta-images .constellation {
    width: 124px;
    height: 255px;
    left: 220px;
  }
}
.Blockchain .callToAction-section .text-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}
.Blockchain .callToAction-section .text-wrapper .cta-bold {
  width: 85vw;
  min-width: 335px;
  font-size: 50px;
  line-height: 52px;
  color: #ffffff;
  font-weight: bold;
  margin-top: 0px;
  margin-bottom: 45px;
}
.Blockchain .callToAction-section .text-wrapper .cta-regular {
  width: 85vw;
  font-size: 30px;
  line-height: 32px;
  color: #ffffff;
  font-weight: 100;
}
.Blockchain .callToAction-section .text-wrapper .wide-constellation {
  display: none;
}
.Blockchain .services-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 130px;
}
@media screen and (min-width: 540px) {
  .Blockchain .services-section {
    margin-top: 60px;
  }
}
.Blockchain .services-section .services-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
@media screen and (min-width: 586px) {
  .Blockchain .services-section .services-container {
    flex-direction: row;
  }
}
.Blockchain .services-section .service-circle {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background: #01125a 0% 0% no-repeat padding-box;
  margin-right: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.Blockchain .services-section .service-circle > span {
  color: #ffffff;
  font-size: 46px;
  line-height: 48px;
}
.Blockchain .services-section .services-wrapper {
  display: flex;
  flex-direction: column;
  width: min-content;
}
.Blockchain .services-section .services-wrapper .service-regular {
  width: 90.6vw;
  min-width: 358px;
  height: auto;
  color: #ffffff;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 0;
  font-weight: 100;
}
@media screen and (min-width: 586px) {
  .Blockchain .services-section .services-wrapper .service-regular {
    width: 70vw;
  }
}
.Blockchain .services-section .services-wrapper .service-bold {
  width: 90.6vw;
  min-width: 358px;
  color: #ffffff;
  font-size: 30px;
  line-height: 32px;
  font-weight: bold;
  margin-top: 16px;
  margin-bottom: 24px;
}
@media screen and (min-width: 586px) {
  .Blockchain .services-section .services-wrapper .service-bold {
    width: 70vw;
  }
}
.Blockchain .services-section .services-list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
  width: 85vw;
  max-width: 1040px;
}
.Blockchain .services-section .services-list-wrapper .service-list-left {
  position: relative;
}
.Blockchain .services-section .services-list-wrapper .service-list-left h1 {
  font-weight: bold;
  font-size: 20px;
  line-height: 22px;
  color: #ffffff;
  letter-spacing: 5px;
  height: 46px;
  position: static;
  margin-bottom: 16px;
}
.Blockchain .services-section .service-item {
  margin-bottom: 24px;
}
.Blockchain .services-section .service-item h3 {
  font-weight: bold;
  font-size: 24px;
  line-height: 26px;
  color: #ffffff;
  margin-bottom: 8px;
}
.Blockchain .services-section .service-item p {
  font-size: 18px;
  line-height: 20px;
  color: #ffffff;
  font-weight: 100;
}
.Blockchain .rocket-process-section {
  display: none;
}
@media screen and (min-width: 768px) {
  .Blockchain .rocket-process-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    height: 720px;
    position: relative;
    z-index: 1;
    margin-bottom: 300px;
    padding: 0 8vw;
  }
  .Blockchain .rocket-process-section .blue-cover {
    position: absolute;
    z-index: 0;
    top: -5px;
    width: 1350px;
    height: 755px;
    background-color: #0c5ed7;
    border-bottom-left-radius: 45%;
    border-bottom-right-radius: 50%;
  }
  .Blockchain .rocket-process-section .red-line {
    position: absolute;
    top: -58px;
    left: -48px;
    z-index: 1;
    width: 525px;
    height: 600px;
    border: 2px solid #fc6865;
    border-radius: 30px;
  }
  .Blockchain .rocket-process-section .thin-chevron-left {
    display: flex;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid #fc6865;
    border-left: 2px solid #fc6865;
    transform: rotate(45deg);
    position: absolute;
    z-index: 2;
    bottom: -11px;
    right: 90px;
    background-color: #0c5ed7;
  }
  .Blockchain .rocket-process-section .thin-chevron-right {
    display: flex;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid #fc6865;
    border-left: 2px solid #fc6865;
    transform: rotate(-135deg);
    position: absolute;
    z-index: 2;
    top: -11px;
    right: 90px;
    background-color: #0c5ed7;
  }
  .Blockchain .rocket-process-section .nave {
    position: absolute;
    z-index: 2;
    bottom: -128px;
    left: 80px;
    width: 385px;
    height: 227px;
  }
  .Blockchain .rocket-process-section .process-wrapper {
    position: relative;
    z-index: 2;
    width: 450px;
    height: 336px;
    color: #ffffff;
    font-size: 30px;
    line-height: 32px;
    font-weight: normal;
    margin-top: 120px;
  }
  .Blockchain .rocket-process-section .process-wrapper .bold {
    font-weight: bold;
  }
  .Blockchain .rocket-process-section .process-wrapper .regular {
    font-weight: 100;
  }
  .Blockchain .rocket-process-section .process-inner-container {
    margin-top: 140px;
  }
  .Blockchain .rocket-process-section .process-list-wrapper {
    position: relative;
    z-index: 2;
    letter-spacing: 3.2px;
    color: #ffffff;
    font-size: 18px;
    line-height: 20px;
    font-weight: bolder;
    margin-bottom: 22px;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .Blockchain .rocket-process-section .process-list-wrapper .list-index {
    margin-right: 27px;
    color: #ffcc33;
  }
  .Blockchain .rocket-process-section .process-list-wrapper .list-text {
    display: flex;
    align-items: center;
    height: 60px;
    width: 250px;
    background-color: #0c5ed7;
  }
  .Blockchain .rocket-process-section .process-list-wrapper:nth-child(2) {
    width: 235px;
  }
  .Blockchain .rocket-process-section .process-list-wrapper:nth-child(6) {
    width: 250px;
  }
}
.Blockchain .rocket-process-section-mobile {
  display: flex;
  flex-direction: column;
  margin-bottom: 300px;
  position: relative;
  padding: 0 5vw;
}
@media screen and (min-width: 768px) {
  .Blockchain .rocket-process-section-mobile {
    display: none;
  }
}
@media screen and (min-width: 586px) {
  .Blockchain .rocket-process-section-mobile {
    padding: 0 8vw;
  }
}
.Blockchain .rocket-process-section-mobile .process-inner-container {
  position: relative;
}
@media screen and (min-width: 586px) {
  .Blockchain .rocket-process-section-mobile .process-inner-container {
    margin-left: 15vw;
  }
}
@media screen and (min-width: 768px) {
  .Blockchain .rocket-process-section-mobile .process-inner-container {
    margin-top: 30px;
    margin-left: 18vw;
  }
}
.Blockchain .rocket-process-section-mobile .process-wrapper {
  position: relative;
  width: 80vw;
  z-index: 2;
  color: #ffffff;
  font-size: 30px;
  line-height: 32px;
  font-weight: normal;
  margin-top: 60px;
  margin-bottom: 100px;
}
.Blockchain .rocket-process-section-mobile .process-wrapper .bold {
  font-weight: bold;
}
.Blockchain .rocket-process-section-mobile .process-wrapper .regular {
  font-weight: 100;
}
.Blockchain .rocket-process-section-mobile .process-list-wrapper {
  position: relative;
  z-index: 2;
  letter-spacing: 3.2px;
  color: #ffffff;
  font-size: 18px;
  line-height: 20px;
  font-weight: bolder;
  margin-bottom: 22px;
  margin-left: 44px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.Blockchain .rocket-process-section-mobile .process-list-wrapper .list-index {
  margin-right: 8px;
  color: #ffcc33;
}
.Blockchain .rocket-process-section-mobile .process-list-wrapper .list-text {
  display: flex;
  align-items: center;
  height: 60px;
  width: 300px;
  background-color: #0c5ed7;
}
.Blockchain .rocket-process-section-mobile .process-list-wrapper:nth-child(2) {
  width: 235px;
}
.Blockchain .rocket-process-section-mobile .process-list-wrapper:nth-child(3) {
  width: 50px;
}
.Blockchain .rocket-process-section-mobile .process-list-wrapper:nth-child(4) {
  width: 100px;
}
.Blockchain .rocket-process-section-mobile .process-list-wrapper:nth-child(6) {
  width: 220px;
}
.Blockchain .rocket-process-section-mobile .red-line {
  position: absolute;
  z-index: 1;
  top: -50px;
  width: 130px;
  height: 570px;
  border: 2px solid #fc6865;
  border-radius: 30px;
}
.Blockchain .rocket-process-section-mobile .red-line .nave {
  position: absolute;
  z-index: 2;
  bottom: -100px;
  left: 18px;
  width: 285px;
  height: 168px;
}
.Blockchain .rocket-process-section-mobile .red-line .thin-chevron-left {
  display: flex;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid #fc6865;
  border-left: 2px solid #fc6865;
  transform: rotate(45deg);
  position: absolute;
  z-index: 2;
  bottom: -11px;
  right: 50px;
  background-color: #0c5ed7;
}
.Blockchain .rocket-process-section-mobile .red-line .thin-chevron-right {
  display: flex;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid #fc6865;
  border-left: 2px solid #fc6865;
  transform: rotate(-135deg);
  position: absolute;
  z-index: 2;
  top: -11px;
  right: 55px;
  background-color: #0c5ed7;
}
.Blockchain .rocket-process-section-mobile .blue-cover {
  position: absolute;
  z-index: 0;
  top: -5px;
  left: -260px;
  width: 1000px;
  height: 965px;
  background-color: #0c5ed7;
  border-bottom-left-radius: 45%;
  border-bottom-right-radius: 50%;
}
@media screen and (min-width: 586px) {
  .Blockchain .rocket-process-section-mobile .blue-cover {
    width: 1200px;
    height: 890px;
  }
}
.Blockchain .chooseUs-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 86px;
  position: relative;
  padding: 0 5vw;
}
@media screen and (min-width: 586px) {
  .Blockchain .chooseUs-section {
    padding: 0 8vw;
  }
}
.Blockchain .chooseUs-section .text-image-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  align-items: center;
}
.Blockchain .chooseUs-section .text-container {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 30px;
  line-height: 32px;
  color: #0c5ed7;
}
.Blockchain .chooseUs-section .text-container .bold {
  font-weight: bold;
}
.Blockchain .chooseUs-section .devtesting {
  border-radius: 14px;
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.Blockchain .chooseUs-section .highlights-container {
  display: flex;
  flex-direction: column;
  color: #01125a;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 60px;
  font-size: 20px;
  line-height: 22px;
  gap: 28px;
}
@media screen and (min-width: 586px) {
  .Blockchain .chooseUs-section .highlights-container {
    max-width: 597.5px;
  }
}
.Blockchain .chooseUs-section .beneficts-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 597.5px;
}
.Blockchain .chooseUs-section .benefict-title {
  font-size: 24px;
  line-height: 26px;
  font-weight: 900;
  color: #737680;
  height: 30px;
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.Blockchain .chooseUs-section .benefict-description {
  width: auto;
  max-width: auto;
  color: #01125a;
  font-size: 18px;
  line-height: 20px;
  margin-left: 55px;
  margin-top: 8px;
  margin-bottom: 12px;
}
.Blockchain .chooseUs-section .beneficts-container {
  margin-left: 0vw;
}
.Blockchain .chooseUs-section .guitarra {
  position: static;
  z-index: -1;
  margin-top: 30px;
}
.Blockchain .chooseUs-section .blue-constellation {
  position: absolute;
  z-index: 1;
  right: -20px;
  top: 450px;
}
@media screen and (min-width: 768px) {
  .Blockchain .chooseUs-section .blue-constellation {
    width: 102px;
    height: 309px;
    right: -15px;
    top: 350px;
  }
}
.Blockchain .contactUs-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 5vw;
  margin-bottom: 60px;
}
@media screen and (min-width: 586px) {
  .Blockchain .contactUs-section {
    padding: 0 8vw;
  }
}
@media screen and (min-width: 992px) {
  .Blockchain .contactUs-section {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 0 0;
  }
}
.Blockchain .contactUs-section .contactUS-highlight {
  font-size: 40px;
  line-height: 42px;
  color: #0c5ed7;
  width: 100%;
  margin-bottom: 66px;
}
.Blockchain .contactUs-section .contactUs-text-wrapper {
  font-size: 24px;
  line-height: 26px;
  color: #0c5ed7;
  width: 85vw;
  min-width: 334px;
  margin-bottom: 56px;
  align-self: self-start;
}
.Blockchain .contactUs-section .contactUs-text-wrapper .contactUs-bold {
  font-weight: bold;
}
.Blockchain .contactUs-section .contact-form {
  width: 100%;
  margin-bottom: 0px;
  position: relative;
}
.Blockchain .contactUs-section .contact-form .thanks-message {
  position: absolute;
  top: 0;
  left: 0;
  animation: float 5s infinite;
  opacity: 0;
  z-index: 3;
  visibility: hidden;
  transition: all 0.7s ease-in-out;
  height: 40vh;
  margin-top: 5vh;
  display: flex;
}
.Blockchain .contactUs-section .contact-form .thanks-message h2 {
  color: white;
}
.Blockchain .contactUs-section .contact-form .thanks-message .constellation {
  position: absolute;
  right: 0;
  top: 0;
  animation: float 5s infinite;
  width: 15vw;
}
.Blockchain .contactUs-section .contact-form .thanks-message.submitted {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1000px) {
  .Blockchain .contactUs-section .contact-form .thanks-message {
    padding: 10px;
  }
  .Blockchain .contactUs-section .contact-form .thanks-message .constellation {
    position: absolute;
    top: auto;
    bottom: -100px;
    animation: float 5s infinite;
    width: 25vw;
  }
}
.Blockchain .contactUs-section .contact-form textarea {
  padding-top: 35px;
}
.Blockchain .contactUs-section .contact-form .formIconsWrapper {
  display: flex;
  justify-content: flex-end;
}
.Blockchain .cta-wrapper {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  width: 100%;
}
.Blockchain .cta-hover-actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.Blockchain .cta-hover-actions:hover {
  cursor: pointer;
}
.Blockchain .cta-hover-actions:hover p {
  color: #ffcc33;
}
.Blockchain .cta-hover-actions:hover .button {
  color: #ffffff;
  background-color: #ffcc33;
}
.Blockchain .cta-hover-actions p {
  margin-bottom: 0;
  margin-right: 20px;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 3.5px;
  font-weight: bold;
  transition: all 0.7s ease-in-out;
  text-wrap: nowrap;
}
.Blockchain .cta-hover-actions .button {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 22px;
  transition: all 0.7s ease-in-out;
}
.Blockchain .callToAction-section .cta-hover-actions p {
  color: #ffffff;
}
.Blockchain .callToAction-section .cta-hover-actions .button {
  background-color: #ffffff;
  color: #0c5ed7;
}
.Blockchain .contactUs-section .cta-hover-actions p {
  color: #0c5ed7;
}
.Blockchain .contactUs-section .cta-hover-actions .button {
  background-color: #0c5ed7;
  color: #ffffff;
}

@media screen and (min-width: 992px) {
  .spacing-desktop {
    width: 50px;
    height: 80px;
  }
}

@media screen and (min-width: 992px) {
  .Blockchain {
    padding: 0;
  }
  .Blockchain .section-blue-background {
    background-color: #0c5ed7;
    width: 100vw;
    padding: 0;
  }
  .Blockchain .hero-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    height: 720px;
    position: relative;
  }
  .Blockchain .hero-section .hero-texts {
    margin-top: 108px;
    margin-right: 450px;
    width: 617px;
    position: relative;
  }
  .Blockchain .hero-section .hero-texts .white-cube-desktop {
    display: flex;
    position: relative;
    z-index: 4;
    top: -100px;
    right: -470px;
  }
  .Blockchain .hero-section .hero-texts .blue-cube-desktop {
    display: flex;
    position: relative;
    z-index: 3;
    top: -920px;
    right: -737px;
  }
  .Blockchain .hero-section .hero-texts .hero-constellation-desktop {
    position: absolute;
    display: flex;
    z-index: 2;
    top: -250px;
    right: -130px;
  }
  .Blockchain .hero-section .hero-texts h1 {
    font-weight: 800;
    font-size: 90px;
    line-height: 92px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: fit-content;
  }
  .Blockchain .hero-section .hero-texts h1::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 7px;
    background-color: #0c5ed7;
    bottom: 10px;
    left: 0;
    z-index: -1;
  }
  .Blockchain .hero-section .hero-texts h2 {
    font-weight: 900;
    font-size: 40px;
    line-height: 42px;
    color: #ffffff;
    z-index: 1;
    position: relative;
    width: auto;
  }
  .Blockchain .hero-section .hero-texts span {
    margin-top: 14px;
    font-size: 30px;
    line-height: 32px;
    color: #edeff5;
    z-index: 1;
    position: relative;
    height: auto;
  }
  .Blockchain .hero-section .hero-svg-mobile {
    display: none;
  }
  .Blockchain .hero-section .hero-red-circle {
    position: absolute;
    top: -1700px;
    left: -525px;
    width: 190vw;
    height: 2476px;
    border-radius: 100%;
    z-index: 0;
    background: #fc6865 0% 0% no-repeat padding-box;
  }
  .Blockchain .hero-section .floatingArrow {
    position: absolute;
    bottom: 0;
    right: -10px;
    z-index: 5;
  }
  .Blockchain .techStack-section {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: center;
    height: 720px;
  }
  .Blockchain .techStack-section .highlights-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 220px;
    width: min-content;
  }
  .Blockchain .techStack-section .highlights-container .highlight {
    width: 465px;
    font-size: 30px;
    color: #ffffff;
    margin-right: 12px;
  }
  .Blockchain .techStack-section .highlights-container .highlight .bold {
    font-weight: 800;
  }
  .Blockchain .techStack-section .highlights-container .highlight .regular {
    font-weight: 100;
  }
  .Blockchain .techStack-section .highlights-container .second-highlight {
    margin-top: 22px;
    width: 465px;
    height: 76px;
    font-size: 18px;
    color: #ffffff;
    font-weight: 100;
    margin-right: 12px;
  }
  .Blockchain .techStack-section .highlights-container .techStack-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 465px;
    margin-top: 188px;
    margin-right: 18px;
  }
  .Blockchain .techStack-section .highlights-container .techStack-container .tech-title {
    height: auto;
    font-weight: bold;
    font-size: 20px;
    line-height: 22px;
    color: #ffcc33;
    letter-spacing: 5px;
    margin-right: 127px;
    text-wrap: nowrap;
  }
  .Blockchain .techStack-section .highlights-container .techStack-container .tech-wrapper {
    display: flex;
    flex-direction: row;
    position: relative;
  }
  .Blockchain .techStack-section .highlights-container .techStack-container .tech-wrapper .tech-description {
    display: none;
    padding-top: 5px;
    width: 390px !important;
    height: 156px;
    font-size: 20px;
    line-height: 22px;
    color: #ffffff;
    margin-right: 37px;
    font-weight: 100;
  }
  .Blockchain .techStack-section .highlights-container .techStack-container .tech-wrapper .icon-asterisk {
    position: static;
  }
  .Blockchain .techStack-section .astronaut-container {
    margin-top: 80px;
    margin-right: min(10.3149606299%, 131px);
    position: relative;
  }
  .Blockchain .techStack-section .astronaut-container .astronaut {
    position: relative;
    z-index: 1;
    width: inherit;
    height: inherit;
  }
  .Blockchain .techStack-section .astronaut-container .constellation {
    position: absolute;
    z-index: 0;
    right: -80px;
    bottom: -170px;
    width: inherit;
    height: inherit;
  }
  .Blockchain .techList-section {
    margin-top: 100px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .Blockchain .techList-section .techList-container {
    display: none;
  }
  .Blockchain .techList-section ul {
    list-style: none;
    padding: 0;
    display: block;
  }
  .Blockchain .techList-section li {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .Blockchain .techList-section li span {
    margin-right: 30px;
    margin-bottom: 16px;
  }
  .Blockchain .techList-section .bullet-bold {
    width: 328px;
    font-size: 30px;
    line-height: 32px;
    font-weight: bold;
    color: #ffffff;
    margin-right: 65px;
    display: flex;
    align-items: center;
    margin-bottom: 0px;
  }
  .Blockchain .techList-section .bullet-wrapper {
    display: flex;
    flex-direction: row;
    border-bottom: 3px solid #01125a;
    margin-top: 0px;
    margin-bottom: 0;
    width: auto;
    padding: 20px 0px;
  }
  .Blockchain .techList-section .bullet-regular {
    max-width: 345px;
    font-size: 18px;
    line-height: 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    font-weight: 100;
    margin-bottom: 0px;
  }
  .Blockchain .tools-section {
    padding-bottom: 150px;
    position: relative;
    margin-top: 0;
  }
  .Blockchain .tools-section .tool-red-circle {
    position: absolute;
    z-index: 0;
    top: 100px;
    left: -250px;
    border-radius: 100%;
    width: 138vw;
    height: 1525px;
    background: #fc6865 0% 0% no-repeat padding-box;
  }
  .Blockchain .tools-section .tool-constellation {
    position: absolute;
    z-index: 1;
    top: -200px;
    left: -250px;
    width: 174px;
    height: 485px;
  }
  .Blockchain .tools-section .tools-description {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    width: 725px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
  }
  .Blockchain .tools-section .tools-description .tool-bold {
    margin-top: 220px;
    font-weight: bold;
    font-size: 20px;
    line-height: 22px;
    color: #ffffff;
    letter-spacing: 5px;
    height: 46px;
    width: auto;
    margin-bottom: 0;
  }
  .Blockchain .tools-section .tools-description .tool-regular {
    font-size: 20px;
    line-height: 22px;
    color: #ffffff;
    width: 390px;
    margin-bottom: 50px;
    font-weight: 100;
  }
  .Blockchain .tools-section .tool-circles {
    width: 1270px;
    display: grid;
    max-width: none;
  }
  .Blockchain .tools-section .tool-circles .tool-circles > :nth-child(2n+1) {
    margin-top: 0px !important;
  }
  .Blockchain .tools-section .tool-circles .tool:nth-child(1) {
    grid-column: 4/span 4;
  }
  .Blockchain .tools-section .tool-circles .tool:nth-child(2) {
    grid-column: span 4;
  }
  .Blockchain .tools-section .tool-circles .tool:nth-child(3) {
    grid-column: span 4;
  }
  .Blockchain .tools-section .tool-circles .tool:nth-child(4) {
    grid-column: 2/span 4;
  }
  .Blockchain .tools-section .tool-circles .tool:nth-child(5) {
    grid-column: span 4;
  }
  .Blockchain .tools-section .tool-circles .tool:nth-child(6) {
    grid-column: span 4;
  }
  .Blockchain .tools-section .tool-circles .tool:nth-child(7) {
    grid-column: 4/span 4;
  }
  .Blockchain .tools-section .tool-circles .tool:nth-child(8) {
    grid-column: span 4;
  }
  .Blockchain .tools-section .tool-circles .tool:nth-child(9) {
    grid-column: span 4;
  }
  .Blockchain .callToAction-section {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    height: 756px;
    gap: 65px;
    margin-top: 0px;
    width: 100%;
  }
  .Blockchain .callToAction-section .cta-images {
    width: 50%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
  }
  .Blockchain .callToAction-section .cta-images .asterisk-container {
    display: flex;
    position: relative;
    top: 0;
    right: 0;
    justify-content: flex-end;
    margin-top: 0;
  }
  .Blockchain .callToAction-section .cta-images .asterisk-container .icon-asterisk {
    width: 475px;
  }
  .Blockchain .callToAction-section .cta-images .asterisk-container .astronaut {
    width: 324px;
    bottom: auto;
    left: auto;
    right: 120px;
    top: 120px;
  }
  .Blockchain .callToAction-section .cta-images .constellation {
    position: absolute;
    z-index: 2;
    top: 31px;
    right: 31px;
    width: 179px;
    height: 368px;
  }
  .Blockchain .callToAction-section .text-wrapper {
    width: 50%;
    position: relative;
    z-index: 1;
  }
  .Blockchain .callToAction-section .text-wrapper .cta-bold {
    width: 461px;
    font-size: 60px;
    line-height: 62px;
    color: #ffffff;
    font-weight: bold;
    margin-top: 115px;
    margin-bottom: 45px;
  }
  .Blockchain .callToAction-section .text-wrapper .cta-regular {
    width: 440px;
    font-size: 30px;
    line-height: 32px;
    color: #ffffff;
    font-weight: 100;
  }
  .Blockchain .callToAction-section .text-wrapper .cta-wrapper {
    margin-top: 55px;
    margin-right: 6vw;
    max-width: 527px;
  }
  .Blockchain .callToAction-section .text-wrapper .cta-wrapper .wide-constellation {
    display: flex;
    position: absolute;
    z-index: 2;
    transform: matrix(0.71, -0.71, 0.71, 0.71, 0, 0);
    left: 0;
    bottom: -340px;
  }
  .Blockchain .services-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0px;
  }
  .Blockchain .services-section .services-container {
    display: flex;
    flex-direction: row;
    margin-bottom: 17px;
  }
  .Blockchain .services-section .service-circle {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background: #01125a 0% 0% no-repeat padding-box;
    margin-right: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .Blockchain .services-section .service-circle > span {
    color: #ffffff;
    font-size: 46px;
    line-height: 48px;
  }
  .Blockchain .services-section .services-wrapper {
    display: flex;
    flex-direction: column;
    width: min-content;
  }
  .Blockchain .services-section .services-wrapper .service-regular {
    width: 358px;
    height: 105px;
    color: #ffffff;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 0;
    font-weight: 100;
  }
  .Blockchain .services-section .services-wrapper .service-bold {
    width: 358px;
    color: #ffffff;
    font-size: 30px;
    line-height: 32px;
    font-weight: bold;
    margin-top: 4px;
    margin-bottom: 24px;
  }
  .Blockchain .services-section .services-list-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    width: 85vw;
    max-width: 1040px;
  }
  .Blockchain .services-section .services-list-wrapper .service-list-left {
    position: relative;
  }
  .Blockchain .services-section .services-list-wrapper .service-list-left h1 {
    font-weight: bold;
    font-size: 20px;
    line-height: 22px;
    color: #ffffff;
    letter-spacing: 5px;
    height: 46px;
    position: absolute;
    left: 0;
    top: -135px;
  }
  .Blockchain .services-section .services-list-wrapper .service-list-left > :nth-child(2) {
    margin-bottom: 19px;
  }
  .Blockchain .services-section .services-list-wrapper .service-list-left > :nth-child(3) {
    margin-bottom: 57px;
  }
  .Blockchain .services-section .services-list-wrapper .service-list-left > :nth-child(4) {
    margin-bottom: 59px;
  }
  .Blockchain .services-section .services-list-wrapper .service-list-left > :nth-child(5) {
    margin-bottom: 0px;
  }
  .Blockchain .services-section .services-list-wrapper .service-list-right > :nth-child(1) {
    margin-bottom: 19px;
  }
  .Blockchain .services-section .services-list-wrapper .service-list-right > :nth-child(2) {
    margin-bottom: 17px;
  }
  .Blockchain .services-section .services-list-wrapper .service-list-right > :nth-child(3) {
    margin-bottom: 19px;
  }
  .Blockchain .services-section .services-list-wrapper .service-list-right > :nth-child(4) {
    margin-bottom: 17px;
  }
  .Blockchain .services-section .services-list-wrapper .service-list-right > :nth-child(5) {
    margin-bottom: 0px;
  }
  .Blockchain .rocket-process-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 134px;
    height: 720px;
    position: relative;
    z-index: 1;
    margin-bottom: 250px;
  }
  .Blockchain .rocket-process-section .blue-cover {
    position: absolute;
    z-index: 0;
    top: -5px;
    width: 118vw;
    height: 805px;
    background-color: #0c5ed7;
    border-bottom-left-radius: 45%;
    border-bottom-right-radius: 50%;
  }
  .Blockchain .rocket-process-section .red-line {
    position: absolute;
    top: -58px;
    left: -48px;
    z-index: 1;
    width: 798px;
    height: 600px;
    border: 2px solid #fc6865;
    border-radius: 30px;
  }
  .Blockchain .rocket-process-section .thin-chevron-left {
    display: flex;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid #fc6865;
    border-left: 2px solid #fc6865;
    transform: rotate(45deg);
    position: absolute;
    z-index: 2;
    bottom: -11px;
    right: 90px;
    background-color: #0c5ed7;
  }
  .Blockchain .rocket-process-section .thin-chevron-right {
    display: flex;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid #fc6865;
    border-left: 2px solid #fc6865;
    transform: rotate(-135deg);
    position: absolute;
    z-index: 2;
    top: -11px;
    right: 90px;
    background-color: #0c5ed7;
  }
  .Blockchain .rocket-process-section .nave {
    position: absolute;
    z-index: 2;
    bottom: -148px;
    left: 80px;
    width: 593px;
    height: 350px;
  }
  .Blockchain .rocket-process-section .process-wrapper {
    position: relative;
    z-index: 2;
    width: 505px;
    height: 336px;
    color: #ffffff;
    font-size: 50px;
    line-height: 52px;
    font-weight: normal;
    margin-top: 120px;
  }
  .Blockchain .rocket-process-section .process-wrapper .bold {
    font-weight: bold;
  }
  .Blockchain .rocket-process-section .process-wrapper .regular {
    font-weight: 100;
  }
  .Blockchain .rocket-process-section .process-inner-container {
    margin-top: 140px;
  }
  .Blockchain .rocket-process-section .process-list-wrapper {
    position: relative;
    z-index: 2;
    letter-spacing: 3.2px;
    color: #ffffff;
    font-size: 20px;
    line-height: 22px;
    font-weight: bolder;
    margin-bottom: 22px;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .Blockchain .rocket-process-section .process-list-wrapper .list-index {
    margin-right: 27px;
    color: #ffcc33;
  }
  .Blockchain .rocket-process-section .process-list-wrapper .list-text {
    display: flex;
    align-items: center;
    height: 60px;
    width: 300px;
    background-color: #0c5ed7;
  }
  .Blockchain .rocket-process-section .process-list-wrapper:nth-child(2) {
    width: 235px;
  }
  .Blockchain .rocket-process-section .process-list-wrapper:nth-child(6) {
    width: 250px;
  }
  .Blockchain .rocket-process-section-mobile {
    display: none;
  }
  .Blockchain .chooseUs-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 86px;
    margin-top: 40px;
    position: relative;
  }
  .Blockchain .chooseUs-section .text-image-container {
    display: flex;
    flex-direction: row;
    gap: 65px;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 992px) and (max-width: 1160px) {
  .Blockchain .chooseUs-section .text-image-container {
    width: 942px;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 992px) {
  .Blockchain .chooseUs-section .text-container {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 50px;
    line-height: 52px;
    color: #0c5ed7;
    width: 518px;
  }
  .Blockchain .chooseUs-section .text-container .bold {
    font-weight: bold;
  }
  .Blockchain .chooseUs-section .devtesting {
    border-radius: 14px;
    width: 450px;
    height: 300px;
  }
}
@media screen and (min-width: 992px) and (min-width: 1160px) {
  .Blockchain .chooseUs-section .devtesting {
    width: 552px;
    height: 365px;
  }
}
@media screen and (min-width: 992px) {
  .Blockchain .chooseUs-section .highlights-container {
    display: flex;
    flex-direction: row;
    color: #01125a;
    font-weight: bold;
    margin-top: 90px;
    margin-bottom: 81px;
    font-size: 20px;
    line-height: 22px;
    gap: 28px;
    max-width: none;
  }
  .Blockchain .chooseUs-section .highlights-container span {
    width: 457px;
  }
  .Blockchain .chooseUs-section .beneficts-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: auto;
  }
  .Blockchain .chooseUs-section .benefict-title {
    font-size: 50px;
    line-height: 52px;
    font-weight: bold;
    color: #737680;
    height: 64px;
    margin-bottom: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .Blockchain .chooseUs-section .benefict-description {
    width: 427px;
    color: #01125a;
    font-size: 18px;
    line-height: 20px;
    margin-left: 228px;
    margin-top: 8px;
  }
  .Blockchain .chooseUs-section .beneficts-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .Blockchain .chooseUs-section .guitarra {
    position: absolute;
    z-index: -1;
    bottom: -20px;
    width: 368px;
    height: 439px;
    left: -185px;
  }
  .Blockchain .chooseUs-section .blue-constellation {
    width: 236px;
    height: 485px;
    top: -118px;
    right: -290px;
  }
  .Blockchain .contactUs-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    padding-top: 60px;
  }
  .Blockchain .contactUs-section .contactUS-highlight {
    font-size: 60px;
    line-height: 62px;
    color: #0c5ed7;
    width: 940px;
    margin-bottom: 79px;
  }
  .Blockchain .contactUs-section .contactUs-text-wrapper {
    font-size: 30px;
    line-height: 32px;
    color: #0c5ed7;
    width: 940px;
    margin-bottom: 52px;
    align-self: auto;
  }
  .Blockchain .contactUs-section .contactUs-text-wrapper .contactUs-bold {
    font-weight: bold;
  }
  .Blockchain .contactUs-section .contact-form {
    width: 940px;
    margin-bottom: 100px;
  }
  .Blockchain .contactUs-section .contact-form textarea {
    padding-top: 35px;
  }
  .Blockchain .contactUs-section .contact-form .formIconsWrapper {
    display: flex;
    justify-content: flex-end;
  }
}
.Blog .blog-hero {
  background-color: #0c5ed7;
  padding: 120px 0 60px;
}
.Blog .blog-hero h1 {
  color: #ffffff;
  text-align: center;
}
.Blog .blog-list {
  padding: 60px 0;
  display: grid;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .Blog .blog-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 992px) {
  .Blog .blog-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.Blog .blog-card {
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.Blog .blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.Blog .blog-card .card-body {
  padding: 24px;
}
.Blog .blog-card .card-body .blog-date {
  font-size: 13px;
  color: #737680;
  margin-bottom: 8px;
}
.Blog .blog-card .card-body h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}
.Blog .blog-card .card-body p {
  font-size: 15px;
  line-height: 1.6;
  color: #737680;
}
.Blog .blog-card .card-body .tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.Blog .blog-card .card-body .tags .tag {
  background: #edeff5;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #0c5ed7;
}

.BlogPost .post-header {
  background: #0c5ed7;
  padding: 120px 0 60px;
}
.BlogPost .post-header .post-meta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 16px;
}
.BlogPost .post-header .post-meta .reading-time {
  margin-left: 16px;
}
.BlogPost .post-header h1 {
  color: #ffffff;
  max-width: 800px;
  line-height: 1.1;
}
.BlogPost .post-header .post-tags {
  margin-top: 24px;
  display: flex;
  gap: 8px;
}
.BlogPost .post-header .post-tags .tag {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}
.BlogPost .post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  font-size: 18px;
  line-height: 1.8;
  color: #0a1f41;
}
.BlogPost .post-content h2, .BlogPost .post-content h3, .BlogPost .post-content h4 {
  margin-top: 40px;
  margin-bottom: 16px;
}
.BlogPost .post-content h2 {
  font-size: 30px;
}
.BlogPost .post-content h3 {
  font-size: 24px;
}
.BlogPost .post-content p {
  margin-bottom: 20px;
}
.BlogPost .post-content ul, .BlogPost .post-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}
.BlogPost .post-content ul li, .BlogPost .post-content ol li {
  margin-bottom: 8px;
}
.BlogPost .post-content blockquote {
  border-left: 4px solid #fc6865;
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: #737680;
}
.BlogPost .post-content code {
  background: #edeff5;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 16px;
}
.BlogPost .post-content pre {
  background: #0a1f41;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 24px 0;
}
.BlogPost .post-content pre code {
  background: none;
  padding: 0;
  color: #ffffff;
}
.BlogPost .post-content img {
  border-radius: 8px;
  margin: 24px 0;
}
.BlogPost .post-content a {
  color: #0c5ed7;
  font-weight: 600;
}
.BlogPost .post-content a:hover {
  color: #fc6865;
}

.grecaptcha-badge {
  right: initial;
  left: 0;
  width: 78px !important;
}

.expertiselogo {
  color: #ffffff;
}

.item-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fc6865;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 12px;
  transition: all 0.1s ease-in-out;
}
.item-link:hover {
  color: #ffcc33;
}
.item-link .icon-chevron-right {
  font-size: 14px;
}

.portfolio-items-content {
  display: grid;
  gap: 0;
  padding: 40px 0 80px;
}

.Culture .team-section .team-grid {
  width: 65%;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(100px, auto);
  margin-left: 11vw;
}
@media screen and (min-width: 992px) {
  .Culture .team-section .team-grid {
    margin-left: 4vw;
  }
}
.Culture .team-section .team-grid .grid-item {
  display: flex;
  flex-direction: column;
  width: 45px;
  border-radius: 5px;
  justify-self: flex-start;
  align-items: center;
}
.Culture .team-section .team-grid .grid-item .team-member-img {
  overflow: hidden;
  width: 60px;
  height: 60px;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
}
.Culture .team-section .team-grid .grid-item .team-member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 395px) {
  .Culture .team-section .team-grid .grid-item .team-member-img {
    width: 76px;
    height: 76px;
  }
}
@media screen and (min-width: 992px) {
  .Culture .team-section .team-grid .grid-item .team-member-img {
    width: 115px;
    height: 115px;
  }
}
.Culture .team-section .team-grid .grid-item .member-name {
  color: #ffffff;
  font-size: 14px;
  line-height: 31px;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .Culture .team-section .team-grid .grid-item .member-name {
    display: flex;
  }
}
.Culture .team-section .team-grid .grid-item:nth-child(-n+4) {
  justify-self: flex-end;
}
.Culture .team-section .team-grid .grid-item:nth-child(n+5):nth-child(-n+8) {
  justify-self: flex-start;
}
.Culture .team-section .team-grid .grid-item:nth-child(n+9):nth-child(-n+12) {
  justify-self: flex-end;
}
.Culture .team-section .team-grid .grid-item:nth-child(n+13):nth-child(-n+16) {
  justify-self: flex-start;
}
.Culture .team-section .team-grid .grid-item:nth-child(n+17):nth-child(-n+20) {
  justify-self: flex-end;
}
