.sdm-hero {
  padding-top: 4px;
  padding-bottom: 32px;
}
.sdm-hero__title {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 38px;
  line-height: 52px;
  text-transform: uppercase;
  color: var(--text);
}
@media (max-width: 767px) {
  .sdm-hero__title {
    font-size: 24px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .sdm-hero {
    padding-bottom: 19px;
  }
}

.sdm-text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: var(--text);
}
.sdm-text--expanded .sdm-text__short {
  display: none;
}
.sdm-text--expanded .sdm-text__full {
  display: inline;
}
.sdm-text__full {
  display: none;
}
.sdm-text__part {
  display: block;
}
.sdm-text__part--tail {
  display: inline;
}
.sdm-text__subtitle {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.sdm-text__dots {
  color: var(--text2);
  white-space: pre;
}
.sdm-text__more {
  color: var(--text2);
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .sdm-text {
    font-size: 16px;
    line-height: 30px;
  }
  .sdm-text .sdm-text__short .sdm-text__part--mobile-tail {
    display: inline;
  }
  .sdm-text .sdm-text__short .sdm-text__part--extra {
    display: none;
  }
}

.sdm-gallery {
  position: relative;
  margin: 0 -20px 60px;
  container-type: inline-size;
}
.sdm-gallery__slider {
  position: relative;
}
.sdm-gallery__slide {
  height: 100%;
  pointer-events: none;
  --sdm-step-0: 0;
  --sdm-step-1: 0;
  --sdm-step-2: 1;
  --sdm-side: 1;
}
.sdm-gallery__slide--active {
  z-index: 1;
}
.sdm-gallery__frame {
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  pointer-events: auto;
  cursor: pointer;
  background: #d9d9d9;
  transition: width var(--sdm-duration, 0ms) ease, height var(--sdm-duration, 0ms) ease, transform var(--sdm-duration, 0ms) ease, opacity var(--sdm-duration, 0ms) ease;
}
.sdm-gallery__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sdm-gallery__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  height: 10px;
  margin-top: 30px;
}
.sdm-gallery__dot {
  flex: none;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 60px;
  background: rgba(242, 242, 242, 0.6);
  cursor: pointer;
  transition: width 0.3s ease, background-color 0.3s ease;
}
.sdm-gallery__dot--active {
  width: 52px;
  background: var(--red, #c16565);
}

.sdm-gallery__slider {
  height: 25.1041666667cqw;
}
.sdm-gallery__slide {
  width: 10cqw;
}
.sdm-gallery__frame {
  width: calc(var(--sdm-step-0) * 50.8333333333cqw + var(--sdm-step-1) * 8.3333333333cqw + var(--sdm-step-2) * 8.3333333333cqw);
  height: calc(var(--sdm-step-0) * 25.1041666667cqw + var(--sdm-step-1) * 21.875cqw + var(--sdm-step-2) * 21.875cqw);
  transform: translate(-50%, -50%) translateX(calc(var(--sdm-side) * (var(--sdm-step-1) * 21.25cqw + var(--sdm-step-2) * 21.25cqw)));
  opacity: calc(var(--sdm-step-0) * 1 + var(--sdm-step-1) * 1 + var(--sdm-step-2) * (0.6 + var(--sdm-side) * 0.1));
}

@container (min-width: 1920px) {
  .sdm-gallery__slider {
    height: 482px;
  }
  .sdm-gallery__slide {
    width: 192px;
  }
  .sdm-gallery__frame {
    width: calc(var(--sdm-step-0) * 976px + var(--sdm-step-1) * 160px + var(--sdm-step-2) * 160px);
    height: calc(var(--sdm-step-0) * 482px + var(--sdm-step-1) * 420px + var(--sdm-step-2) * 420px);
    transform: translate(-50%, -50%) translateX(calc(var(--sdm-side) * (var(--sdm-step-1) * 408px + var(--sdm-step-2) * 408px)));
    opacity: calc(var(--sdm-step-0) * 1 + var(--sdm-step-1) * 1 + var(--sdm-step-2) * (0.6 + var(--sdm-side) * 0.1));
  }
}
@media (max-width: 767px) {
  .sdm-gallery {
    margin-bottom: 42px;
  }
  .sdm-gallery__slider {
    height: auto;
    margin: 0 14px 0 13px;
    aspect-ratio: 385/311;
  }
  .sdm-gallery__slide {
    width: 100%;
  }
  .sdm-gallery__frame {
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  .sdm-gallery__pagination {
    margin-top: 16px;
  }
}
.sdm-person {
  --sdm-person-title-gap: 24px;
  --sdm-person-name-shift: 5px;
  --sdm-person-text-gap: 6px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  grid-template-areas: "title title" "photo name" "photo text";
  column-gap: 31px;
  align-items: start;
}
.sdm-person--capsule {
  --sdm-person-title-gap: 36px;
  --sdm-person-name-shift: 0px;
  --sdm-person-text-gap: 10px;
}
.sdm-person__title {
  grid-area: title;
  margin: 0 0 var(--sdm-person-title-gap);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 32px;
  line-height: 52px;
  text-transform: uppercase;
  color: var(--text);
}
.sdm-person__photo {
  grid-area: photo;
  width: 180px;
  height: 200px;
  background: #d9d9d9;
  overflow: hidden;
}
.sdm-person__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sdm-person__name {
  grid-area: name;
  margin: calc(-1 * var(--sdm-person-name-shift)) 0 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: 1.4px;
  color: #141414;
}
.sdm-person__text {
  grid-area: text;
  margin-top: var(--sdm-person-text-gap);
}
@media (max-width: 767px) {
  .sdm-person {
    grid-template-columns: 123px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    grid-template-areas: "title title" "photo name" "text text";
    column-gap: 21px;
  }
  .sdm-person, .sdm-person--capsule {
    --sdm-person-title-gap: 4px;
    --sdm-person-name-shift: 0px;
    --sdm-person-text-gap: 14px;
  }
  .sdm-person__title {
    font-size: 20px;
  }
  .sdm-person__photo {
    width: 123px;
    height: 123px;
  }
  .sdm-person__name {
    max-width: 213px;
    font-size: 16px;
    letter-spacing: 1.12px;
  }
  .sdm-person__text {
    font-size: 16px;
    line-height: 30px;
  }
}
.sdm-person--continued {
  margin-top: 40px;
  grid-template-rows: auto 1fr;
  grid-template-areas: "photo name" "photo text";
}
@media (max-width: 767px) {
  .sdm-person--continued {
    margin-top: 33px;
    grid-template-rows: auto auto;
    grid-template-areas: "photo name" "text text";
  }
}

.sdm-showcase {
  padding: 60px 0;
}
.sdm-showcase__title {
  margin: 0 0 24px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 32px;
  line-height: 52px;
  text-transform: uppercase;
  color: var(--text);
}
@media (max-width: 767px) {
  .sdm-showcase__title {
    font-size: 20px;
    margin-bottom: 4px;
  }
}
.sdm-showcase__gallery {
  display: flex;
  align-items: center;
  container-type: inline-size;
}
.sdm-showcase__photo {
  flex: 0 1 930px;
  min-width: 0;
  margin: 0 0 0 5px;
  aspect-ratio: 930/600;
  background: #ededed;
}
.sdm-showcase__photo-slide {
  height: 100%;
}
.sdm-showcase__photo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
}
.sdm-showcase__thumbs {
  flex: none;
  margin: 0 0 0 30px;
}
.sdm-showcase__thumb {
  pointer-events: none;
  --sdm-step-0: 0;
  --sdm-step-1: 0;
  --sdm-step-2: 1;
  --sdm-side: 1;
}
.sdm-showcase__thumb--active {
  z-index: 1;
}
.sdm-showcase__thumb-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  pointer-events: auto;
  cursor: pointer;
  background: #d9d9d9;
  transition: width var(--sdm-duration, 0ms) ease, height var(--sdm-duration, 0ms) ease, transform var(--sdm-duration, 0ms) ease, opacity var(--sdm-duration, 0ms) ease;
}
.sdm-showcase__thumb-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .sdm-showcase {
    padding: 42px 0;
  }
}
.sdm-showcase--plain {
  padding: 70px 0 72px;
}
@media (max-width: 767px) {
  .sdm-showcase--plain {
    padding: 42px 0;
  }
}

.sdm-showcase__thumbs {
  width: 212px;
  height: 464px;
}
.sdm-showcase__thumb {
  width: 100%;
  height: 78px;
}
.sdm-showcase__thumb-frame {
  width: calc(var(--sdm-step-0) * 212px + var(--sdm-step-1) * 154px + var(--sdm-step-2) * 126px);
  height: calc(var(--sdm-step-0) * 124px + var(--sdm-step-1) * 79px + var(--sdm-step-2) * 65px);
  transform: translate(-50%, -50%) translateY(calc(var(--sdm-side) * (var(--sdm-step-1) * 36.5px + var(--sdm-step-2) * 43.5px)));
  opacity: calc(var(--sdm-step-0) * 1 + var(--sdm-step-1) * 0.7 + var(--sdm-step-2) * (0.4 + var(--sdm-side) * 0.1));
}

@media (max-width: 1023px) {
  .sdm-showcase__gallery {
    flex-direction: column;
    align-items: stretch;
  }
  .sdm-showcase__photo {
    flex: none;
    margin: 0;
  }
  .sdm-showcase__thumbs {
    flex: none;
    margin: 16px 0 0;
  }
  .sdm-showcase__thumbs {
    width: 100%;
    height: 58px;
  }
  .sdm-showcase__thumb {
    width: 66px;
    height: 100%;
  }
  .sdm-showcase__thumb-frame {
    width: calc(var(--sdm-step-0) * 99px + var(--sdm-step-1) * 72px + var(--sdm-step-2) * 60px);
    height: calc(var(--sdm-step-0) * 58px + var(--sdm-step-1) * 37px + var(--sdm-step-2) * 31px);
    transform: translate(-50%, -50%) translateX(calc(var(--sdm-side) * (var(--sdm-step-1) * 25.5px + var(--sdm-step-2) * 31.5px)));
    opacity: calc(var(--sdm-step-0) * 1 + var(--sdm-step-1) * 0.7 + var(--sdm-step-2) * (0.4 + var(--sdm-side) * 0.1));
  }
}
@media (max-width: 427px) {
  .sdm-showcase__thumbs {
    width: 100%;
    height: 14.9484536082cqw;
  }
  .sdm-showcase__thumb {
    width: 17.0103092784cqw;
    height: 100%;
  }
  .sdm-showcase__thumb-frame {
    width: calc(var(--sdm-step-0) * 25.5154639175cqw + var(--sdm-step-1) * 18.5567010309cqw + var(--sdm-step-2) * 15.4639175258cqw);
    height: calc(var(--sdm-step-0) * 14.9484536082cqw + var(--sdm-step-1) * 9.5360824742cqw + var(--sdm-step-2) * 7.9896907216cqw);
    transform: translate(-50%, -50%) translateX(calc(var(--sdm-side) * (var(--sdm-step-1) * 6.5721649485cqw + var(--sdm-step-2) * 8.118556701cqw)));
    opacity: calc(var(--sdm-step-0) * 1 + var(--sdm-step-1) * 0.7 + var(--sdm-step-2) * (0.4 + var(--sdm-side) * 0.1));
  }
}
@media (max-width: 767px) {
  .sdm-showcase__photo {
    aspect-ratio: 383/189;
  }
  .sdm-showcase__thumbs {
    margin-top: 6px;
  }
}
.sdm-concept {
  padding: 59px 0 40px;
}
@media (min-width: 1025px) {
  .sdm-concept {
    padding-bottom: 30px;
  }
}
.sdm-concept_inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.sdm-concept__main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sdm-concept__title {
  margin: 0 0 24px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 32px;
  line-height: 52px;
  text-transform: uppercase;
  color: var(--text);
}
.sdm-concept__media {
  flex: 0 0 40%;
  max-width: 488px;
  aspect-ratio: 488/321;
  background: #d9d9d9;
  overflow: hidden;
}
.sdm-concept__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .sdm-concept_inner {
    flex-direction: column;
  }
  .sdm-concept__media {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .sdm-concept {
    padding: 39px 0 0;
  }
  .sdm-concept_inner {
    gap: 10px;
  }
  .sdm-concept__main {
    order: 1;
  }
  .sdm-concept__title {
    font-size: 20px;
    line-height: 52px;
    margin-bottom: 4px;
  }
}
.sdm-concept--plain {
  padding: 60px 0 0;
}
@media (min-width: 1025px) {
  .sdm-concept--plain {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .sdm-concept--plain {
    padding-top: 39px;
  }
}

.sdm-video {
  padding: 40px 0;
}
@media (min-width: 1025px) {
  .sdm-video {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
.sdm-video__title {
  margin: 0 0 24px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 32px;
  line-height: 52px;
  text-transform: uppercase;
  color: var(--text);
}
.sdm-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1216/600;
  background: #000;
  overflow: hidden;
}
.sdm-video__el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sdm-video__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 106px;
  height: 106px;
  cursor: pointer;
  z-index: 1;
  background: url("data:image/svg+xml,%3Csvg width='155' height='155' viewBox='0 0 155 155' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 77.5C12 113.675 41.3253 143 77.5 143C113.675 143 143 113.675 143 77.5C143 41.3253 113.675 12 77.5 12C41.3253 12 12 41.3253 12 77.5ZM0 77.5C0 120.302 34.6979 155 77.5 155C120.302 155 155 120.302 155 77.5C155 34.6979 120.302 0 77.5 0C34.6979 0 0 34.6979 0 77.5ZM65.5 102.115L103 77L65.5 51.8853V102.115Z' fill='white' fill-opacity='0.85' /%3E%3C/svg%3E") 50% no-repeat;
  background-size: contain;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.sdm-video__play--playing {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .sdm-video {
    padding: 30px 0 10px;
  }
  .sdm-video__title {
    font-size: 20px;
    line-height: 52px;
    margin-bottom: 8px;
  }
  .sdm-video__play {
    width: 64px;
    height: 64px;
  }
}
.sdm-video--plain {
  padding: 60px 0 40px;
}
@media (min-width: 1025px) {
  .sdm-video--plain {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .sdm-video--plain {
    padding: 45px 0 10px;
  }
}

.sdm-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(20, 20, 20, 0.55);
}
.sdm-modal--open {
  display: flex;
}
.sdm-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 898px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  box-shadow: 4px -6px 18px 0 rgba(0, 0, 0, 0.25);
  padding: 31px 35px 50px 45px;
}
.sdm-modal__close {
  position: absolute;
  top: 24px;
  right: 25px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}
.sdm-modal__close img {
  width: 100%;
  height: 100%;
  display: block;
  transform: rotate(45deg);
}
.sdm-modal__title {
  margin: 0 0 19px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 32px;
  line-height: 52px;
  text-transform: uppercase;
  color: var(--text);
}
.sdm-modal__text, .sdm-modal__aside {
  margin: 0;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 30px;
  color: #000;
}
.sdm-modal__row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-top: 29px;
}
.sdm-modal__aside {
  flex: 1 1 auto;
  max-width: 422px;
}
.sdm-modal__subtitle {
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
}
.sdm-modal__paragraph {
  margin: 0;
}
.sdm-modal__list {
  margin: 0;
  padding: 0 0 0 24px;
  list-style: disc;
}
.sdm-modal__item {
  margin: 0;
  padding: 0;
}
.sdm-modal__media {
  flex: 0 0 368px;
  max-width: 368px;
  aspect-ratio: 368/242;
  background: #d9d9d9;
  overflow: hidden;
}
.sdm-modal__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .sdm-modal__title {
    font-size: 20px;
    line-height: 1.3;
  }
  .sdm-modal__dialog {
    padding: 40px 20px 24px;
  }
  .sdm-modal__row {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
  .sdm-modal__media {
    flex-basis: auto;
    width: 100%;
    max-width: 100%;
  }
  .sdm-modal__aside {
    max-width: none;
  }
}

body[data-modal-open] {
  overflow: hidden;
}

.sdm-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(10, 10, 10, 0.85);
}
.sdm-lightbox--open {
  display: flex;
}
.sdm-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  cursor: zoom-out;
}
.sdm-lightbox__close {
  position: absolute;
  top: 24px;
  right: 25px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}
.sdm-lightbox__close img {
  width: 100%;
  height: 100%;
  display: block;
  transform: rotate(45deg);
  filter: invert(1);
}
@media (max-width: 767px) {
  .sdm-lightbox {
    padding: 16px;
  }
  .sdm-lightbox__close {
    top: 14px;
    right: 14px;
  }
}

.sdm-gallery__image,
.sdm-concept__media img {
  cursor: zoom-in;
}
