.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;
}

.breadcrumbs {
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.breadcrumbs__inner {
  width: 100%;
}

.breadcrumbs__nav {
  width: 100%;
}

.breadcrumbs__list {
  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;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs__item {
  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;
}

.breadcrumbs__link {
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.breadcrumbs__link:hover {
  opacity: 0.7;
}

.breadcrumbs__current {
  font-weight: 600;
}

.breadcrumbs__separator {
  margin: 0 4px;
}

.showcase_detail_preview {
  padding: 32px 0;
}

.showcase_detail_preview__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;
  gap: 32px;
}

.showcase_detail_preview__header {
  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: 24px;
}

.showcase_detail_preview__title {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 1080px;
  width: 100%;
}

.showcase_detail_preview__description {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 500px;
  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;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.showcase_detail_preview__meta {
  width: 100%;
}

.showcase_detail_preview__meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.showcase_detail_preview__meta-item {
  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: 8px;
}

.showcase_detail_preview__meta-tags {
  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_detail_preview__meta-tags span {
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 3px 16px;
  border-radius: 30px;
  background: transparent;
}

.showcase_detail_overview {
  padding: 0 0 36px;
}

.showcase_detail_overview__inner {
  width: 100%;
}

.showcase_detail_overview__image {
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
}

.showcase_detail_overview__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.showcase_detail_authors {
  overflow: hidden;
}

.showcase_detail_authors__inner {
  padding: 24px 0;
}

.showcase_detail_authors__wrapper {
  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;
  gap: 48px;
  width: 100%;
}

.showcase_detail_authors__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 12px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.showcase_detail_authors__nav-item {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.showcase_detail_authors__nav-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.showcase_detail_authors__nav-item.is-active {
  border-color: #1E47CA;
}

.showcase_detail_authors__nav-item:hover {
  opacity: 0.8;
}

.showcase_detail_authors__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  max-width: 840px;
}

.showcase_detail_authors__item {
  display: none;
}

.showcase_detail_authors__item.is-active {
  display: block;
}

.showcase_detail_images {
  padding: 32px 0;
}

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

.showcase_detail_images__item {
  display: block;
}

.showcase_detail_images__item--full {
  grid-column: 1/-1;
}

.showcase_detail_images__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;
}

.showcase_detail_images__card:hover {
  opacity: 0.956;
}

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

.showcase_detail_images__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_detail_images__card:hover .showcase_detail_images__img img {
  -webkit-transform: scale(1.4);
  -ms-transform: scale(1.4);
  transform: scale(1.4);
}

.showcase_detail_description {
  padding: 32px 0;
}

.showcase_detail_description__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.showcase_detail_description__content {
  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: 24px;
}

.showcase_detail_description__text {
  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: 16px;
}

.showcase_detail_description__text p {
  margin: 0;
}

.showcase_detail_description__share {
  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: 24px;
}

.showcase_detail_description__share-links {
  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: 12px;
}

.showcase_detail_description__share-link {
  text-decoration: none;
  display: inline-block;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.showcase_detail_description__share-link:hover {
  opacity: 0.7;
}

.showcase_detail_content {
  padding: 64px 0;
}

.showcase_detail_content__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;
  gap: 64px;
}

.showcase_detail_content__block {
  width: 100%;
}

.showcase_detail_content__image {
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
}

.showcase_detail_content__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.showcase_detail_content__text {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.showcase_detail_content__text p {
  margin: 0;
}

.showcase_detail_content__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.showcase_detail_content__split--right .showcase_detail_content__split-image {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.showcase_detail_content__split--right .showcase_detail_content__split-text {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.showcase_detail_content__split-image {
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
}

.showcase_detail_content__split-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.showcase_detail_content__split-text {
  max-width: 100%;
}

.showcase_detail_content__split-text p {
  margin: 0;
}

.showcase_detail_content__share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 32px;
}

.showcase_detail_cta {
  padding: 42px 0;
}

.showcase_detail_cta__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  gap: 32px;
}

.showcase_detail_cta__action {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.showcase_detail_next {
  padding: 0 0 32px;
}

.showcase_detail_next__inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
  min-height: 400px;
}

.showcase_detail_next__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.showcase_detail_next__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.showcase_detail_next__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 400px;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.6)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  padding: 64px 32px;
}

.showcase_detail_next__content {
  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-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 600px;
  width: 100%;
}

.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__content {
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (min-width: 1024px) {
  .showcase_detail_preview__header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .showcase_detail_description__share {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 45px;
  }
}

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

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

  .showcase_detail_preview__title .text {
    font-size: 92px;
  }

  .showcase_detail_preview__description {
    max-width: 360px;
  }

  .showcase_detail_preview__description .text {
    font-size: 20px;
  }

  .showcase_detail_authors__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .showcase_detail_cta__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .showcase_detail_cta__title {
    max-width: 800px;
    text-align: center;
  }

  .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__content {
    padding-left: 0;
    padding-right: 0;
  }
}

@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_detail_preview {
    padding: 24px 0;
  }

  .showcase_detail_preview__meta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .showcase_detail_overview {
    padding: 0 0 28px;
  }

  .showcase_detail_authors__inner {
    padding: 22px 0;
  }

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

  .showcase_detail_images {
    padding: 24px 0;
  }

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

  .showcase_detail_images__item--full {
    grid-column: 1;
  }

  .showcase_detail_description {
    padding: 24px 0;
  }

  .showcase_detail_description__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .showcase_detail_content {
    padding: 48px 0;
  }

  .showcase_detail_content__inner {
    gap: 48px;
  }

  .showcase_detail_content__split {
    gap: 32px;
  }

  .showcase_detail_cta {
    padding: 32px 0;
  }

  .showcase_detail_cta__inner {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
  }

  .showcase_detail_cta__title {
    text-align: left;
  }

  .showcase_detail_next {
    padding: 0 0 24px;
  }
}

@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;
  }

  .breadcrumbs {
    padding: 16px 0;
  }

  .showcase_detail_preview {
    padding: 20px 0;
  }

  .showcase_detail_preview__inner {
    gap: 24px;
  }

  .showcase_detail_preview__header {
    gap: 20px;
  }

  .showcase_detail_preview__title .text {
    font-size: 48px;
  }

  .showcase_detail_preview__description {
    max-width: 100%;
  }

  .showcase_detail_preview__meta-grid {
    gap: 16px;
  }

  .showcase_detail_overview {
    padding: 0 0 22px;
  }

  .showcase_detail_authors__inner {
    padding: 18px 0;
  }

  .showcase_detail_authors__wrapper {
    gap: 20px;
  }

  .showcase_detail_authors__content {
    width: 100%;
  }

  .showcase_detail_images {
    padding: 20px 0;
  }

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

  .showcase_detail_description {
    padding: 20px 0;
  }

  .showcase_detail_description__inner {
    gap: 24px;
  }

  .showcase_detail_description__content {
    gap: 16px;
  }

  .showcase_detail_description__share {
    gap: 20px;
  }

  .showcase_detail_description__share-links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
  }

  .showcase_detail_content {
    padding: 32px 0;
  }

  .showcase_detail_content__inner {
    gap: 32px;
  }

  .showcase_detail_content__split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .showcase_detail_content__split--right .showcase_detail_content__split-image {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .showcase_detail_content__split--right .showcase_detail_content__split-text {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }

  .showcase_detail_content__share {
    padding-top: 24px;
  }

  .showcase_detail_cta {
    padding: 26px 0;
  }

  .showcase_detail_cta__inner {
    gap: 24px;
  }

  .showcase_detail_cta__title .text {
    font-size: 36px;
  }

  .showcase_detail_next {
    padding: 0 0 16px;
  }

  .showcase_detail_next__inner {
    min-height: 300px;
  }

  .showcase_detail_next__overlay {
    min-height: 300px;
    padding: 48px 24px;
  }

  .showcase_detail_next__content {
    gap: 16px;
  }

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

  .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;
  }

  .showcase_detail_preview__title .text {
    font-size: 36px;
  }

  .showcase_detail_cta__title .text {
    font-size: 28px;
  }

  .showcase_detail_next__title .text {
    font-size: 20px;
  }
}