:root {
  --green: #a1d420;
  --orange: #ec5c13;
  --white: white;
  --black: black;
}

* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  scrollbar-width: none; /* For Firefox */
}

*::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, and Opera */
}

.cursor-wrap {
  pointer-events: none;
}

html, body, * {
  cursor: none !important;
}

.inputB {
  color: #000;
  background-color: #fff;
  border: 1px solid #5e5e60;
  border-radius: 100px;
  min-height: 72px;
  margin-bottom: 24px;
  padding: 16px 24px;
  font-size: 18px;
  line-height: 1.111em;
  transition: box-shadow .3s, color .3s, border-color .3s;
  box-shadow: 0 2px 12px rgba(6, 6, 6, .5);
}

.inputB:hover {
  border-color: var(--orange);
  box-shadow: 0 2px 20px -4px var(--orange);
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #fff;
  background-color: #000;
  font-family: Inter, sans-serif;
  font-size: 1.2rem;
  line-height: 1.3;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  line-height: 1.1;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

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

p {
  margin-bottom: 0;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: .25rem;
}

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

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

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

figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.utility-page_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility-page_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 20rem;
  display: flex;
}

.utility-page_form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

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

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

.padding-xlarge {
  padding: 4rem;
}

.padding-small {
  padding: 1rem;
}

.padding-medium {
  padding: 2rem;
}

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

.heading-style-h1 {
  letter-spacing: -1px;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  font-size: 7em;
  line-height: 1;
}

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

.form_input {
  color: #fff;
  background-color: #0000;
  border: 0 solid #000;
  border-bottom: 1px solid #fff;
  min-height: 3rem;
  margin-bottom: 0;
  padding-bottom: 16px;
  padding-left: 0;
  padding-right: 0;
  font-size: 1.25rem;
}

.form_input:focus {
  border-bottom-color: #a1d420;
}

.form_input::placeholder {
  color: #fff;
}

.heading-style-h2 {
  font-size: 4.25rem;
  font-weight: 400;
  line-height: 1;
}

.page-wrapper {
  background-color: #000;
}

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

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

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

.bottom-shadow {
  z-index: 4;
  background-image: linear-gradient(#0000, #000 93%);
  width: 100%;
  height: 100vh;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
  -webkit-mask-image: linear-gradient(to top, #000 10%, #0000 50%);
  mask-image: linear-gradient(to top, #000 10%, #0000 50%);
}

.button-primary {
  background-color: var(--green);
  color: #000;
  border-radius: 200px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 4rem;
  padding: 32px 40px;
  font-weight: 500;
  display: flex;
}

.section {
  position: relative;
  overflow: hidden;
}

.col {
  flex: 1;
  position: relative;
}

.full-image_photo-height {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.container-content {
  z-index: 2;
  justify-content: space-between;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 4.5rem 5rem;
  position: relative;
}

.container-content.is-full-image {
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100vh;
  display: flex;
}

.full-image_photo-wrap {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
}

.full-image_photo {
  object-fit: cover;
  width: 100%;
}

.full-image_photo.desktop {
  height: 100%;
  border-radius: 25px;
}

.full-image_photo.mobile {
  border-radius: 35px;
  display: none;
}

.hero_content-wrapper {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.text-wrapper {
  overflow: hidden;
}

.text-style-subheading {
  padding-bottom: 28px;
  padding-right: 28px;
  font-family: Meow Script, sans-serif;
  font-size: 5em;
  font-weight: 400;
  line-height: .9;
  overflow: visible;
}

.body {
  background-color: #000;
}

.home-hero {
  z-index: 10;
  position: relative;
  overflow: visible;
}

.hero-rotate-image {
  z-index: 25;
  perspective: 200vw;
  border-radius: .875rem;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0%;
  display: flex;
  position: relative;
  overflow: visible;
  transform: perspective(200vw);
}

.image-fill {
  object-fit: cover;
  width: 100%;
  min-width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hero-rotate-item {
  z-index: 25;
  flex-direction: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-rotate-height {
  padding-top: 130%;
}

.grid-large {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(2rem, 1fr) minmax(auto, 96rem) minmax(2rem, 1fr);
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.hero-rotate-base {
  z-index: 50;
  perspective: 200vw;
  width: 22.5%;
  max-width: 40vh;
  height: 100%;
  position: absolute;
}

.home-hero-intro {
  z-index: 1;
  grid-column-gap: 0vw;
  grid-row-gap: 0vw;
  white-space: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.clip {
  color: #e6e6e6;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.letter-1 {
  z-index: 1;
  display: inline-block;
  position: relative;
}

.padding-horizontal-2 {
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.padding-horizontal-2.padding-medium, .padding-horizontal-2.padding-small {
  padding-left: 0;
  padding-right: 0;
}

.heading-style-huge {
  letter-spacing: -.5vw;
  text-transform: uppercase;
  padding-top: 2vw;
  padding-left: 1vw;
  padding-right: 1vw;
  font-size: 13vw;
  font-weight: 400;
  line-height: .75;
}

.heading-style-huge.text-color-white.text-align-center {
  letter-spacing: .5vw;
  white-space: pre-line;
  padding-top: 0;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  line-height: 1;
}

.home-hero-block {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 94vh;
  padding-top: 0;
  padding-bottom: 9rem;
  display: flex;
  position: relative;
}

.icon {
  color: #0b0c0f;
  justify-content: center;
  align-items: center;
  width: .7rem;
  height: .7rem;
  display: flex;
  overflow: hidden;
}

.home-about {
  z-index: 25;
  max-width: 1200px;
  margin-left: 60px;
  margin-right: 60px;
  position: relative;
}

.swiper-pagination {
  margin-top: 10px;
  margin-bottom: -10px;
  transform: translate(0, 32px);
}

.row-title-clip {
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  position: relative;
}

.button-2 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px solid #2e313a;
  border-radius: 100rem;
  padding: .75rem 1.05rem .75rem 1.15rem;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
}

.button-2.is-light {
  color: #fff;
  background-color: #000;
  border-color: #e7eeee;
}

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

.row-title-block {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.home-about-intro {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.curve-block-center {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .9fr;
  grid-auto-columns: 1fr;
  place-content: end center;
  align-items: flex-end;
  height: 0;
  display: flex;
  position: absolute;
  inset: .5px 0% auto;
}

.row-title-bottom {
  margin-bottom: 19px;
  padding-bottom: .7rem;
}

.row-title-text {
  letter-spacing: -.35vw;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 13.5vw;
  font-weight: 400;
  line-height: .89;
}

.row-title-text.text-align-center {
  color: var(--orange);
  text-align: center;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  font-size: 200px;
}

.slide-img {
  z-index: 0;
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
}

.curve-link {
  color: #fff;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: -1px;
  padding: 0;
  display: flex;
  position: relative;
}

.curve-arrow {
  border: 1px solid #e7eeee;
  border-radius: 100rem;
  justify-content: center;
  align-items: center;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  position: absolute;
  top: .5rem;
}

.hover-arrow.top {
  position: absolute;
  inset: -100% 0% auto;
}

.text-size-xlarge {
  font-size: 3.2rem;
  line-height: 1.3;
}

.text-size-xlarge.text-align-center {
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  font-size: 5rem;
}

.home-about-block {
  background-color: #fff;
  border-radius: 40px;
  flex-direction: column;
  justify-content: space-between;
  min-height: 20rem;
  display: flex;
  position: relative;
}

.row-title {
  width: 100%;
}

.slide {
  aspect-ratio: 1;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.hover-text.bottom-hover-text {
  position: absolute;
  inset: auto 0% -100%;
}

.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper.cover-swiper {
  max-width: 1200px;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

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

.padding-vertical-2.padding-xlarge {
  padding-top: 0;
  padding-bottom: 0;
}

.swiper-slide {
  object-fit: cover;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
  box-shadow: 0 0 20px 5px #0003;
}

.slider {
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}

.text-size-xsmall {
  font-size: .8rem;
}

.clip-3 {
  position: relative;
  overflow: hidden;
}

.card-section {
  background-color: #000;
  justify-content: center;
  align-items: center;
  margin-top: -147px;
  display: flex;
  position: relative;
}

.card-section.books {
  margin-top: 30px;
}

.card-section.story {
  flex-flow: column;
  margin-top: 30px;
  margin-bottom: 50px;
}

.letter-11 {
  display: inline-block;
}

.card-link-image-right---image-right {
  object-fit: contain;
  justify-content: center;
  align-items: center;
  width: 50%;
  max-width: 50%;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  transform: translate(0);
}

.grid-2-columns {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.grid-2-columns._1fr---1-42fr {
  grid-template-columns: 1fr 1.42fr;
}

.grid-2-columns._1fr---1-42fr.gap-row-36px, .grid-2-columns.features-small-cards---grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.card-link-title.display-3.mg-bottom-12px {
  color: #000;
}

.card-link-title.display-3.mg-bottom-12px.yalko {
  font-size: 5rem;
}

.card-link-title.display-3.mg-bottom-24px {
  color: #000;
  text-align: center;
}

.card-link-title.display-3.mg-bottom-24px.cert {
  margin-right: 0;
  font-size: 3rem;
}

.inner-container._264px {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.card-link-image---wrapper {
  justify-content: center;
  align-items: center;
  min-width: 100%;
  display: flex;
  overflow: visible;
  transform: translate(0);
}

.pd-62px---40px---54px {
  text-align: center;
  padding: 43px 40px 54px;
}

.container-default {
  color: #fff;
  max-width: 1200px;
  margin-left: 60px;
  margin-right: 60px;
  padding-left: 0;
  padding-right: 0;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  display: block;
}

.card-link-image {
  object-fit: cover;
  width: 90%;
  overflow: visible;
}

.card-link-image.transform-origin-right {
  transform-origin: 100%;
}

.card-link-image.transform-origin-right.cert {
  width: auto;
  max-width: none;
  max-height: 100%;
}

.card-link-image.mg-bottom-16px {
  margin-top: 15px;
  margin-bottom: 15px;
}

.card {
  background-color: #fff;
  border: 1px solid #212123;
  border-radius: 40px;
}

.card.card-link-image-right {
  z-index: 1;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  align-items: center;
  padding: 80px 40px;
  text-decoration: none;
  transition-property: box-shadow;
  display: grid;
  position: relative;
  overflow: hidden;
}

.card.card-link-image-top {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  text-decoration: none;
  transition-property: box-shadow;
  display: flex;
  overflow: hidden;
}

.card.card-link-image-top.features---card-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}

.card.card-link-image-top.features---card-small.uofm {
  display: none;
}

.cursor-wrap {
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  transition: opacity .5s;
  display: flex;
  position: fixed;
  inset: 0%;
}

.cursor-wrap.light-shadow {
  display: flex;
}

.cursor-wrap.circle {
  z-index: 10001;
  display: flex;
}

.cursor {
  background-color: #ec5c13;
  border-radius: 20px;
  width: 19px;
  height: 19px;
}

.cursor.light {
  width: 0;
  height: 0;
  box-shadow: 0 0 25px 25px #ffffffa1;
}

.mg-bottom-24px {
  margin-bottom: 24px;
}

.checkbox {
  color: #fff;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 4px;
  width: auto;
  min-width: 20px;
  height: auto;
  min-height: 20px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 10px;
  transition: border-color .3s, background-color .3s;
}

.checkbox:hover {
  border-color: #212123;
}

.checkbox.w--redirected-checked {
  background-color: #fff;
  background-image: url(/../images/checkbox-icon-darkweb-webflow-ecommerce-template.svg);
  background-size: auto;
  border-color: #000;
  margin-top: 0;
  margin-left: 0;
}

.checkbox.w--redirected-focus {
  box-shadow: none;
}

.input {
  color: #000;
  background-color: #fff;
  border: 1px solid #5e5e60;
  border-radius: 100px;
  min-height: 72px;
  margin-bottom: 0;
  padding: 16px 24px;
  font-size: 18px;
  line-height: 1.111em;
  transition: box-shadow .3s, color .3s, border-color .3s;
  box-shadow: 0 2px 12px #06060680;
}

.input:hover {
  border-color: var(--orange);
  box-shadow: 0 2px 20px -4px var(--orange);
}

.input:focus {
  border-color: var(--orange);
  box-shadow: 0 2px 20px 0 var(--orange);
}

.input::placeholder {
  color: #797979;
  font-size: 18px;
}

.text-200 {
  font-size: 18px;
  line-height: 1.111em;
}

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

.mg-bottom-32px {
  color: #000;
  margin-bottom: 0;
}

.full-page-section {
  z-index: 99;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.full-page-section.pd-84px---104px {
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  display: flex;
}

.color-neutral-100 {
  color: #000;
}

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

.container-default-2 {
  max-width: 1316px;
  padding-left: 24px;
  padding-right: 24px;
}

.success-message {
  color: #fff;
  background-color: #0000;
  padding: 0;
}

.flex {
  display: flex;
}

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

.flex.align-center.mg-bottom-12px {
  margin-bottom: 7px;
}

.error-message {
  color: #ff5a65;
  text-align: center;
  background-color: #ffeff0;
  border-radius: 16px;
  width: 100%;
  margin-top: 20px;
  padding: 20px 24px;
}

.card-2 {
  background-color: #fff;
  border: 1px solid #212123;
  border-radius: 40px;
}

.card-2.sign-in-card {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 350px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
  display: flex;
}

.checkbox-field-wrapper {
  align-items: center;
  margin-bottom: 24px;
  padding-left: 0;
  display: flex;
}

.checkbox-field-wrapper.mg-bottom-0 {
  margin-bottom: 0;
}

.display-3 {
  color: #000;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.182em;
}

.display-3.text-center.mg-bottom-40px {
  margin-top: -1.3rem;
  margin-bottom: 1.2rem;
}

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

.text-decoration-none {
  color: #000;
  text-decoration: underline;
  transition: color .3s;
}

.text-decoration-none:hover {
  color: var(--orange);
}

.btn-primary {
  color: #fff;
  text-align: center;
  background-color: #000;
  border: 1px solid #fff;
  border-radius: 96px;
  justify-content: center;
  padding: 26px 38px;
  font-weight: 700;
  line-height: 1.111em;
  text-decoration: none;
}

.btn-primary.width-100 {
  min-width: 100%;
  transition: color .3s;
}

.btn-primary.width-100:hover {
  color: var(--orange);
}

.btn-primary.add {
  color: #000;
  background-color: #fff;
  margin-bottom: 30px;
}

.skills-heading {
  text-align: center;
  margin-top: 4.4rem;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
}

.container {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
}

.skills-container {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  padding: 30px;
  display: flex;
}

.skills-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: #fff;
  border-radius: 40px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-areas: ".";
  margin-bottom: 30px;
  padding: 30px;
}

.skill-image {
  aspect-ratio: 1;
  object-fit: cover;
  background-color: #fff;
  border-radius: 40px;
  width: 100%;
  box-shadow: 0 2px 14px 8px #0003;
}

.skill-card {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.arrow-icon {
  color: #000;
  margin-top: 407px;
  margin-bottom: 0;
  display: none;
}

.slider-mask {
  overflow: visible;
}

.project-desc {
  text-indent: -.4em;
  margin-top: -.2em;
  margin-bottom: 0;
  font-size: 1.8rem;
}

.project-desc.cc-small {
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  font-size: 1.6rem;
}

.slider-container {
  background-color: #0000;
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin-left: 0;
  margin-right: 0;
}

.project-video {
  object-fit: cover;
  border-radius: 40px;
  width: 100%;
  height: 700px;
  max-height: 50vh;
  display: block;
  box-shadow: 0 2px 20px 7px #0009;
}

.project-video.desktop {
  z-index: 1;
  border: 1px solid #fdd700;
  height: 750px;
  min-height: 700px;
  max-height: 70vh;
}

.project-video.mobile {
  min-height: 650px;
}

.project {
  color: #000;
  object-fit: scale-down;
  border-radius: 40px;
  margin-right: 30px;
}

.projects-slider {
  justify-content: center;
  align-items: center;
  margin-left: 30px;
  margin-right: 30px;
  padding-top: 0;
  display: flex;
}

.projects-slider.mobile {
  display: none;
}

.projects-slider.desktop {
  margin-left: 60px;
  margin-right: 60px;
  display: none;
}

.main-container {
  border-radius: 40px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.project-content {
  padding: 30px;
}

.project-content.desktop {
  z-index: 3;
  position: absolute;
  inset: auto 0% 0%;
}

.projects-section {
  margin-top: 30px;
  overflow: hidden;
}

.arrow-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 1200px;
  margin-right: -30px;
  font-size: 2rem;
  display: none;
  top: 0;
  left: 0;
  right: 100%;
}

.arrow-wrapper.cc-right {
  width: 1200px;
  margin-left: -30px;
  left: 100%;
  right: 0%;
}

.project-details {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.project-details.cc-enterprise {
  grid-template-columns: .5fr 1fr;
  padding-bottom: 6px;
}

.slider-nav-bar {
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  background-color: #97979740;
  border-radius: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  min-width: 40px;
  min-height: 200px;
  padding-left: 10px;
  padding-right: 10px;
  transition: all .3s;
  display: none;
  inset: 0% auto 0% -2%;
  box-shadow: inset 0 0 25px 1px #00000063;
}

.slider-nav-bar:hover {
  border-radius: 20px;
  min-width: 200px;
  transform: scale(1.15);
}

.project-title {
  font-family: Meow Script, sans-serif;
  font-size: 4rem;
}

.footer-section {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  padding-bottom: 50px;
  display: flex;
}

.text-span {
  font-family: Meow Script, sans-serif;
  font-size: 2rem;
}

.text-block {
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
}

.project-shadow {
  z-index: 2;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-image: linear-gradient(0deg, #fdd700 25%, #fff0);
  border-radius: 0 0 40px 40px;
  width: 100%;
  height: 50%;
  position: absolute;
  inset: auto 0% 0%;
  -webkit-mask-image: linear-gradient(to top, #000 30%, #0000 100%);
  mask-image: linear-gradient(to top, #000 30%, #0000 100%);
}

.pop-up-container {
  z-index: 70;
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  background-color: #0000009e;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.pop-up-card {
  background-color: #fff;
  border-radius: 40px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 700px;
  height: 700px;
  margin-left: 30px;
  margin-right: 30px;
  padding: 30px;
  display: flex;
  overflow: scroll;
  box-shadow: 0 0 20px 16px #0003;
}

.pop-up-logo {
  width: 100px;
}

.pop-up-desc {
  width: 100%;
  height: 100%;
  padding-bottom: 30px;
  overflow: scroll;
}

.pop-up-heading {
  color: #000;
  text-align: center;
  margin-top: 1rem;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  font-size: 2rem;
}

.pop-up-text {
  color: #000;
  text-align: center;
  margin-top: 20px;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  font-size: 1.2rem;
}

.project-tab {
  color: #000;
  width: 100%;
}

.project-tabs {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 1200px;
  max-width: 1200px;
  margin-left: 60px;
  margin-right: 60px;
  display: flex;
}

.projects-nav-bar {
  z-index: 5;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  outline-offset: 0px;
  background-color: #4242428a;
  border-radius: 35px;
  outline: 1px solid #ffffff52;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 70px;
  padding: 10px;
  font-size: 0;
  transition: transform .3s, font-size .3s, max-width .3s;
  display: flex;
  position: absolute;
  left: -2.5%;
}

.projects-nav-bar:hover {
  border-radius: 35px;
  max-width: 100%;
  font-size: 1.3rem;
  line-height: 1.3;
  transform: scale(1.05);
}

.project-tab-title {
  color: #fff;
  letter-spacing: 1px;
  background-color: #0000;
  border-radius: 30px;
  justify-content: flex-start;
  align-items: center;
  min-width: 100%;
  padding: 2.5px 15px 2.5px 2.5px;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  transition: background-color .3s;
  display: flex;
}

.project-tab-title:hover {
  background-color: #686868b3;
}

.project-tab-title.w--current {
  background-color: var(--orange);
  border-radius: 30px;
}

.project-tab-title.w--current:hover {
  background-color: var(--orange);
}

.project-nav-logo {
  object-fit: cover;
  border-radius: 100px;
  width: 45px;
  height: 45px;
  min-height: 45px;
  min-width: 45px;
  margin-right: 15px;
  overflow: hidden;
}

.projects-tab-container {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.image {
  align-self: center;
  width: 75%;
  padding-bottom: 20px;
}

@media screen and (min-width: 1280px) {
  .projects-slider.desktop, .arrow-wrapper {
    display: flex;
  }

  .projects-tab-container {
    display: none;
  }
}

@media screen and (min-width: 1440px) {
  .heading-style-h1 {
    font-size: 11em;
  }

  .bottom-shadow {
    background-image: linear-gradient(#0000, #0000 0%, #00000091 41%, #000);
  }

  .text-style-subheading {
    font-size: 8em;
  }

  .row-title-text.text-align-center {
    font-size: 250px;
  }

  .card-link-image-right---image-right {
    width: 50%;
  }
}

@media screen and (min-width: 1920px) {
  .heading-style-h1 {
    font-size: 11em;
  }

  .bottom-shadow {
    background-image: linear-gradient(#0000, #000000b8 62%, #000);
    height: 35rem;
  }

  .text-style-subheading {
    font-size: 9em;
  }

  .row-title-text.text-align-center {
    font-size: 250px;
  }
}

@media screen and (max-width: 991px) {
  .padding-xlarge {
    padding: 3rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .heading-style-h1 {
    color: #000;
    font-size: 8.5em;
  }

  .form_input {
    font-size: 1.2rem;
  }

  .bottom-shadow {
    background-image: linear-gradient(#0000 62%, #000 94%);
  }

  .full-image_photo-height {
    max-height: 90vh;
    margin-top: 0;
  }

  .container-content {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .container-content.is-full-image {
    height: 95vh;
    padding-top: 8rem;
  }

  .full-image_photo-wrap {
    height: 93vh;
  }

  .full-image_photo.desktop {
    display: none;
  }

  .full-image_photo.mobile {
    max-height: 90vh;
    display: block;
  }

  .hero_content-wrapper {
    text-align: right;
    justify-content: flex-start;
    width: 100%;
    position: absolute;
    inset: 5% 3% auto auto;
  }

  .text-style-subheading {
    color: #000;
    padding-bottom: 14px;
    padding-right: 10px;
  }

  .home-hero {
    margin-top: -109px;
  }

  .image-fill {
    min-height: 100%;
  }

  .hero-rotate-item.radius-regular {
    margin-top: 295px;
  }

  .grid-large {
    grid-template-columns: minmax(1rem, 1fr) minmax(auto, 104rem) minmax(1rem, 1fr);
  }

  .hero-rotate-base {
    width: 30%;
  }

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

  .home-hero-block {
    min-height: 80vw;
    padding-top: 0;
    padding-bottom: 8rem;
  }

  .home-about {
    margin-left: 15px;
    margin-right: 15px;
  }

  .swiper-wrapper {
    height: 360px;
  }

  .swiper-wrapper.swiper-height {
    height: auto;
  }

  .button-2.is-light {
    background-color: #000;
    margin-top: -15px;
  }

  .home-about-intro {
    color: #000;
    max-width: 35rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .row-title-bottom {
    padding-bottom: 3rem;
  }

  .row-title-text.text-align-center {
    color: #ec5c13;
    font-size: 150px;
  }

  .slide-img {
    border-radius: 35px;
  }

  .text-size-xlarge.text-align-center {
    color: #000;
    font-size: 5rem;
  }

  .home-about-block {
    border-radius: 35px;
  }

  .swiper.cover-swiper {
    max-width: 760px;
  }

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

  .swiper-slide {
    border-radius: 35px;
    width: 280px;
    height: 280px;
  }

  .slider {
    margin-top: -31px;
    display: flex;
  }

  .clip-3 {
    color: #fff;
  }

  .card-section {
    margin-top: 0;
    margin-bottom: 0;
  }

  .grid-2-columns.features-small-cards---grid {
    grid-column-gap: 20px;
  }

  .card-link-title.display-3.mg-bottom-12px.yalko {
    overflow-wrap: break-word;
    font-size: 4rem;
  }

  .card-link-title.display-3.mg-bottom-24px.cert {
    font-size: 2rem;
  }

  .pd-62px---40px---54px {
    padding-left: 32px;
    padding-right: 32px;
  }

  .container-default {
    margin-left: 15px;
    margin-right: 15px;
  }

  .card-link-image {
    object-fit: contain;
  }

  .card-link-image.transform-origin-right.cert {
    padding-left: 0;
    padding-right: 0;
  }

  .card.card-link-image-right {
    border-radius: 35px;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .card.card-link-image-top.features---card-small {
    border-radius: 24px;
  }

  .cursor-wrap {
    display: none;
  }

  .full-page-section {
    min-height: 80vh;
  }

  .card-2.sign-in-card {
    border-radius: 35px;
  }

  .display-3 {
    font-size: 32px;
  }

  .btn-primary {
    padding-left: 32px;
    padding-right: 32px;
  }

  .skills-grid {
    border-radius: 35px;
    grid-template-columns: 1fr 1fr;
  }

  .arrow-icon {
    justify-content: flex-start;
    align-items: center;
    margin-top: 450px;
    margin-right: 0;
    display: flex;
  }

  .arrow-icon.cc-right {
    justify-content: flex-start;
    align-items: center;
    margin-left: 0;
    display: flex;
  }

  .project-desc.cc-small {
    text-align: center;
  }

  .slider-container {
    max-width: 100vw;
  }

  .project-video {
    border-radius: 35px;
    height: 350px;
  }

  .project-video.mobile {
    box-shadow: none;
    border: 3px solid #fdd700;
    border-bottom-style: none;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    min-height: auto;
  }

  .project {
    border-radius: 35px;
    max-width: 100%;
    min-height: auto;
    padding: 30px;
  }

  .project.mobile {
    background-color: #fdd700;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .projects-slider {
    margin-left: 15px;
    margin-right: 15px;
  }

  .projects-slider.mobile {
    display: block;
  }

  .projects-slider.desktop {
    display: none;
  }

  .project-content.mobile {
    padding: 0 30px;
  }

  .arrow-wrapper {
    margin-right: -50px;
    display: flex;
  }

  .arrow-wrapper.cc-right {
    margin-left: -50px;
  }

  .project-details.cc-enterprise {
    grid-template-columns: 1fr;
    justify-content: center;
  }

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

  .project-text {
    width: 100%;
    margin-top: -30px;
  }

  .project-logo-title {
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    display: flex;
  }

  .projects-tab-container {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: .875rem;
  }

  .padding-xlarge {
    padding: 2rem;
  }

  .padding-medium {
    padding: 1.25rem;
  }

  .heading-style-h3 {
    font-size: 1.75rem;
  }

  .form_input {
    padding-bottom: 12px;
    font-size: .95rem;
  }

  .heading-style-h2 {
    font-size: 2.5rem;
  }

  .text-size-medium {
    font-size: .95rem;
  }

  .button-primary {
    height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 1rem;
  }

  .col {
    margin-bottom: 48px;
  }

  .text-style-subheading {
    font-size: 3.7em;
  }

  .hero-rotate-base {
    width: 40%;
  }

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

  .home-hero-block {
    min-height: 120vw;
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .swiper-wrapper {
    height: 300px;
  }

  .swiper-wrapper.swiper-height {
    height: auto;
  }

  .letter-animation {
    width: 100%;
    overflow: hidden;
  }

  .home-about-intro {
    max-width: 28rem;
  }

  .row-title-bottom {
    padding-bottom: 3rem;
  }

  .row-title-text.text-align-center {
    font-size: 100px;
  }

  .swiper.cover-swiper {
    max-width: 480px;
  }

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

  .swiper-slide {
    width: 240px;
    height: 240px;
  }

  .card-section.story {
    margin-top: 30px;
  }

  .grid-2-columns, .grid-2-columns._1fr---1-42fr {
    grid-template-columns: 1fr;
  }

  .grid-2-columns._1fr---1-42fr.gap-row-36px {
    grid-row-gap: 37px;
  }

  .grid-2-columns.features-small-cards---grid {
    grid-column-gap: 32px;
    grid-template-columns: 1fr;
  }

  .grid-2-columns._2-col-mbl {
    grid-template-columns: 1fr 1fr;
  }

  .card-link-title.display-3.mg-bottom-12px.yalko {
    font-size: 4rem;
  }

  .card-link-title.display-3.mg-bottom-24px {
    margin-top: .8rem;
    font-size: 3rem;
  }

  .font-size-20px-mbp {
    font-size: 3rem;
  }

  .pd-62px---40px---54px {
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .container-default {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .card-link-image {
    max-width: 250px;
    height: 100%;
  }

  .card-link-image.transform-origin-right.cert {
    padding-left: 12px;
    padding-right: 15px;
  }

  .card-link-image.mg-bottom-16px {
    height: 75%;
  }

  .card {
    border-radius: 24px;
  }

  .card.card-link-image-right {
    padding-left: 32px;
    padding-right: 32px;
  }

  .card.card-link-image-top {
    border-radius: 35px;
    max-height: 500px;
  }

  .card.card-link-image-top.features---card-small {
    border-radius: 35px;
    padding: 32px 24px 77px;
  }

  .mg-bottom-24px {
    margin-bottom: 18px;
  }

  .input {
    min-height: 60px;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 16px;
  }

  .input::placeholder, .text-200 {
    font-size: 16px;
  }

  .mg-bottom-32px {
    margin-bottom: 28px;
  }

  .full-page-section.pd-84px---104px {
    padding-top: 64px;
    padding-bottom: 80px;
  }

  .container-default-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .card-2 {
    border-radius: 24px;
  }

  .display-3 {
    font-size: 26px;
  }

  .btn-primary {
    padding: 20px 32px;
  }

  .arrow-icon {
    margin-top: 349px;
  }

  .slider-container {
    max-width: 100vw;
  }

  .project-video {
    height: 250px;
    max-height: 40vh;
  }

  .pop-up-container {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media screen and (max-width: 479px) {
  .heading-style-h1 {
    font-size: 6.5rem;
    line-height: 1.05;
  }

  .form_input {
    border-radius: 0;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

  .button-primary {
    height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 1rem;
  }

  .hero-rotate-item.radius-regular {
    overflow: visible;
  }

  .hero-rotate-base {
    width: 45%;
  }

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

  .heading-style-huge.text-color-white.text-align-center {
    font-size: 15vw;
  }

  .home-hero-block {
    min-height: 110vw;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .swiper-wrapper {
    height: 240px;
  }

  .swiper-wrapper.swiper-height {
    height: auto;
  }

  .home-about-intro {
    padding: 0;
  }

  .row-title-text.text-align-center {
    font-size: 20vw;
  }

  .text-size-xlarge.text-align-center {
    font-size: 3rem;
  }

  .swiper.cover-swiper {
    max-width: 240px;
  }

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

  .swiper-slide {
    width: 180px;
    height: 180px;
    overflow: visible;
  }

  .card-section.story {
    margin-top: -25px;
  }

  .grid-2-columns._1fr---1-42fr.gap-row-36px {
    grid-row-gap: 24px;
  }

  .grid-2-columns.features-small-cards---grid {
    grid-column-gap: 20px;
    grid-row-gap: 28px;
    grid-template-columns: 1fr;
  }

  .card-link-title.display-3.mg-bottom-12px.yalko {
    font-size: 3rem;
  }

  .card-link-title.display-3.mg-bottom-24px, .font-size-20px-mbp {
    font-size: 2rem;
  }

  .pd-62px---40px---54px {
    padding: 0 24px;
  }

  .container-default {
    margin-top: 48px;
    padding-left: 0;
    padding-right: 0;
  }

  .card-link-image {
    max-width: 300px;
  }

  .card-link-image.transform-origin-right.cert {
    object-fit: contain;
    height: 100%;
    margin-right: -16px;
    padding-left: 0;
    padding-right: 0;
  }

  .card {
    border-radius: 20px;
  }

  .card.card-link-image-right {
    padding-left: 20px;
    padding-right: 20px;
  }

  .card.card-link-image-top {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding-top: 0;
  }

  .card.card-link-image-top.features---card-small {
    border-radius: 35px;
    padding-bottom: 32px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .input::placeholder {
    font-size: 16px;
  }

  .full-page-section.pd-84px---104px {
    justify-content: center;
    align-items: center;
    margin-top: 9vh;
    padding: 48px 30px 72px;
    display: block;
  }

  .container-default-2 {
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .card-2 {
    border-radius: 20px;
  }

  .display-3 {
    font-size: 24px;
  }

  .btn-primary {
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .arrow-icon {
    margin-top: 305px;
  }

  .project-desc.cc-small {
    margin-top: -2.5em;
    font-size: 1.3rem;
  }

  .project-video.mobile {
    min-height: auto;
    max-height: 30vh;
  }

  .project-content {
    padding-top: 30px;
  }

  .arrow-wrapper {
    display: flex;
  }

  .project-title {
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 4rem;
  }

  .project-text {
    margin-top: 0;
  }

  .pop-up-container {
    justify-content: center;
    align-items: flex-start;
  }

  .pop-up-card {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    width: 100vw;
    height: 100vh;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 0;
  }

  .pop-up-text {
    text-align: center;
    margin-bottom: 20px;
  }
}

#w-node-_0b654e6b-29d7-4fc6-4e9b-89078710f8b7-76878bf1 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_0b654e6b-29d7-4fc6-4e9b-89078710f8bd-76878bf1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#intro.w-node-_61feb8ec-ac6a-a6c8-14fa-a849ad6b06a8-76878bf1 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_76fa0a30-ca17-745f-c417-806ee303cbf3-76878bf1 {
  grid-area: span 2 / span 1 / span 2 / span 1;
  align-self: stretch;
}

#w-node-_76fa0a30-ca17-745f-c417-806ee303cbfb-76878bf1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-_76fa0a30-ca17-745f-c417-806ee303cc02-76878bf1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_76fa0a30-ca17-745f-c417-806ee303cc04-76878bf1, #w-node-_76fa0a30-ca17-745f-c417-806ee303cc05-76878bf1, #w-node-_76fa0a30-ca17-745f-c417-806ee303cc0d-76878bf1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

@media screen and (max-width: 767px) {
  #w-node-_76fa0a30-ca17-745f-c417-806ee303cc05-76878bf1, #w-node-_76fa0a30-ca17-745f-c417-806ee303cc0d-76878bf1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: stretch;
  }
}
