.hero {
  padding: 12px;
  padding-top: 0;
}

.hero-wrapper {
  overflow: hidden;
  position: relative;
  border-radius: 30px;
}

.hero__img {
  position: absolute;
  inset: 0;
}

.hero__img img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  height: 100%;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.hero__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
  height: calc(100vh - 90px);
  max-height: 100%;
  position: relative;
  padding: 64px 0;
  margin: -12px;
}

.hero__inner .container--fluid:first-child {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.hero__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-left: 80px;
  padding-right: 80px;
}

.hero__title {
  max-width: 850px;
  width: 100%;
}

.hero__description {
  max-width: 560px;
  width: 100%;
  margin-left: auto;
}

.showcase_projects__navigation {
  position: -webkit-sticky;
  position: sticky;
  top: var(--header-h, 90px);
  z-index: 99;
  background: rgb(255, 255, 255);
}

.showcase_projects__tabs-wrapper {
  padding: 12px 0 0;
}

.showcase_projects__slider {
  overflow: hidden;
}

.showcase_projects__tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.showcase_projects__tab {
  outline: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 12px 22px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: auto;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.showcase_projects__tab .text {
  color: #4D4953;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  white-space: nowrap;
}

.showcase_projects__tab--multiline .text {
  white-space: normal;
  line-height: 1.4;
  max-width: 120px;
  display: inline-block;
}

.showcase_projects__tab:hover .text {
  color: #1E47CA;
}

.showcase_projects__tab.is-active {
  background: #F8F6F6;
  border-radius: 30px;
}

.showcase_projects__tab.is-active .text {
  color: #1E47CA;
  font-size: 14px;
}

.showcase_projects__divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1019607843);
  margin: 12px 0;
}

.showcase_projects__list-wrapper {
  padding-top: 10px;
  padding-bottom: 64px;
}

.showcase_projects__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.showcase_projects__item {
  display: block;
}

.showcase_projects__item:not(.is-visible) {
  display: none;
}

.showcase_projects__card {
  padding: 32px;
  padding-top: 200px;
  border-radius: 22px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  gap: 32px;
  background: black;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
  height: 50vh;
  text-decoration: none;
  color: inherit;
}

.showcase_projects__card:hover {
  opacity: 0.956;
}

.showcase_projects__card--light .showcase_projects__chip {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.3019607843);
}

.showcase_projects__card--light .showcase_projects__chip .text {
  color: #808080;
}

.showcase_projects__card--light .showcase_projects__title .text {
  color: #120227;
}

.showcase_projects__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.showcase_projects__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  -webkit-transition: 7s;
  -o-transition: 7s;
  transition: 7s;
}

.showcase_projects__card:hover .showcase_projects__img img {
  -webkit-transform: scale(1.4);
  -ms-transform: scale(1.4);
  transform: scale(1.4);
}

.showcase_projects__content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.showcase_projects__chips {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.showcase_projects__chip {
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 3px 16px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.0509803922);
}

.showcase_projects__chip .text {
  color: #FFFFFF;
  white-space: normal;
  line-height: 1.4;
  display: inline-block;
  max-width: 150px;
}

.showcase_projects__title .text {
  color: #FFFFFF;
  white-space: normal;
  line-height: 1.4;
  display: inline-block;
  max-width: 100%;
  min-height: 2.8em;
}

.showcase_projects__loader {
  text-align: center;
  padding: 32px 0;
}

.showcase_projects__loader[hidden] {
  display: none;
}

.showcase_projects__loader .text {
  color: #4D4953;
}

.lets_talk {
  padding: 12px;
  padding-top: 0;
}

.lets_talk-wrapper {
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 30px;
}

.lets_talk__img {
  position: absolute;
  inset: 0;
}

.lets_talk__img img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  height: 100%;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.lets_talk__inner {
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
  max-height: 100%;
  height: 720px;
  padding: 96px 0;
  margin: -12px;
}

.lets_talk__inner .container--fluid {
  height: 100%;
  padding-left: 80px;
  padding-right: 80px;
}

.lets_talk__content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.lets_talk__content-title {
  max-width: 490px;
  width: 100%;
}

.lets_talk__content-bottom {
  max-width: 320px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
}

.hero-code-block {
  background: rgba(77, 73, 83, 0.7);
  border-radius: 8px;
  -webkit-backdrop-filter: blur(128px);
  backdrop-filter: blur(128px);
  padding: 24px;
  position: relative;
}

.hero-code-block__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.hero-code-block__lang {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Instrument Sans";
}

.hero-code-block__copy-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  font-family: "Instrument Sans";
  padding: 0;
  -webkit-transition: color 300ms ease;
  -o-transition: color 300ms ease;
  transition: color 300ms ease;
}

.hero-code-block__copy-btn:hover {
  color: #FFFFFF;
}

.hero-code-block__copy-btn svg {
  width: 16px;
  height: 16px;
}

.hero-code-block__copy-text,
.hero-code-block__copied-text {
  display: inline-block;
}

.hero-code-block__copied-text {
  display: none;
}

.hero-code-block__copy-btn.copied .hero-code-block__copy-text {
  display: none;
}

.hero-code-block__copy-btn.copied .hero-code-block__copied-text {
  display: inline-block;
}

.hero-code-block__content {
  overflow: hidden;
}

.hero-code-block__code {
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
  line-height: 1.6;
  color: #FFFFFF;
  white-space: pre;
  overflow: hidden;
}

.hero-code-block__code code {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

@media screen and (max-width: 1280px) {
  .hero__content {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero__title .text {
    font-size: 110px;
  }

  .showcase_projects__list-wrapper {
    padding: 0 0 48px;
  }

  .showcase_projects__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .showcase_projects__card {
    height: 80vh;
  }

  .lets_talk__inner {
    padding: 32px 0;
    height: 480px;
  }

  .lets_talk__content {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .lets_talk__content-title {
    max-width: 480px;
  }

  .lets_talk__content-title .text {
    font-size: 32px;
  }

  .lets_talk__content-bottom {
    margin-top: auto;
    max-width: 100%;
    gap: 22px;
  }

  .lets_talk__content-description .text {
    font-size: 20px;
  }

  .hero-code-block {
    display: none;
  }

  .hero__description {
    display: none;
  }

  .hero__title {
    max-width: 100%;
  }

  .hero__content {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 991px) {
  .hero__inner {
    padding: 50px 0;
    height: calc(100vh - 90px);
  }

  .hero__content {
    padding-left: 60px;
    padding-right: 60px;
    padding: 0 12px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__title .text {
    font-size: 100px;
  }

  .hero__description {
    margin-left: 0;
  }

  .showcase_projects__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media screen and (max-width: 767px) {
  .hero__inner {
    padding: 36px 0;
    height: calc(100vh - 74px);
  }

  .hero__inner {
    padding: 24px 0;
    height: calc(100vh - 74px);
  }

  .hero__content {
    padding-left: 0;
    padding-right: 0;
    gap: 36px;
  }

  .hero__title .text {
    font-size: 72px;
  }

  .hero__description .text {
    font-size: 24px;
  }

  .showcase_projects__tab {
    padding: 6px 12px;
  }

  .showcase_projects__list-wrapper {
    padding: 0 0 32px;
  }

  .showcase_projects__card {
    padding: 24px;
    padding-top: 150px;
  }

  .lets_talk__inner .container--fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 575px) {
  .hero__title .text {
    font-size: 56px;
  }

  .hero__description .text {
    font-size: 16px;
  }
}