@import 'ui-kit.css';
@import 'ui-blocks.css';
@import 'hovers.css';
@import 'lib/scroll-animations.css';

/* Index | .main */

.main {
  width: 100%;
  height: 100vh;

  background: var(--gradient);
}

.main .container {
  position: relative;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
  padding-top: 86px;

  overflow: hidden;
}

.main__slider {
  position: relative;
  bottom: 0;
  z-index: 1;

  display: block;
  width: 100%;
  height: calc(100vh - 86px);
  user-select: none;
}

.main__slider .swiper-slide {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-height: 100%;
  height: 100%;
  padding-bottom: 100px;
  opacity: 0 !important;
}

.main__slider .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}

.main__slider .swiper-slide>picture,
.main__slider .swiper-slide>img,
.main__slider .swiper-slide>picture>img {
  position: absolute;
  bottom: 0;
  z-index: -1;
  display: block;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: bottom;
}

.main__slider .swiper-slide #canvas {
  position: absolute;
  bottom: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 1.8s;
}

.main__slider .swiper-slide .img-container {
  position: absolute;
  bottom: 0;
  z-index: -1;
  display: block;
  height: 100%;
  width: 100%;
}

.main__slider .swiper-slide .img-container img {
  width: 100%;
  height: 100%;
  display: none;
}

.anchor-link,
.swiper-pagination {
  position: relative;
  z-index: 2;
}

.main__text-container {
  max-width: 895px;
  transition: 0.9s;
}

.main__aside-container {
  position: absolute;
  right: 80px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 337px;
  height: 100%;
  padding: 60px 15px 114px 0;
}

.main__aside-container-text {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 337px;
  padding: 60px 15px 14px 0;
  color: var(--dark-grey);
}

.main__aside-container-text strong {
  display: block;
  margin-bottom: 8px;

  font-size: 15px;
  line-height: 24px;
  color: var(--dark);
}

.main .swiper-pagination {
  position: absolute;
  top: 50%;
  right: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateY(-50%);
}

.main .swiper-pagination .swiper-pagination-bullet svg {
  content: '';
  position: absolute;

  display: block;
  left: -4px;
  top: -4px;
  right: -4px;
  bottom: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  opacity: 0;
  transition: opacity 0.4s;
  transform: rotate(270deg);
}

.main .swiper-pagination .swiper-pagination-bullet.-active svg {
  opacity: 1;
}

.main .swiper-pagination .swiper-pagination-bullet circle {
  stroke-dasharray: 0, 43.698883056640625;
  transition-delay: 0.9s;
}

.main .swiper-pagination .swiper-pagination-bullet.-first.-active circle {
  transition: stroke-dasharray 6s linear;
}

.main .swiper-pagination .swiper-pagination-bullet.-active circle {
  stroke-dasharray: 43.698883056640625, 43.698883056640625;
  transition: stroke-dasharray 6.9s linear;
}

.main .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  border: 1px solid var(--dark);
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
  position: relative;

  transition: background 0.4s;
}

.main .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--dark);
}

.main .swiper-pagination .swiper-pagination-bullet:not(:first-child) {
  margin-top: 16px;
}

/* index | about-us */

.about-us {
  margin: 140px 0 160px 0;
}

.about-us .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-us .text {
  max-width: 1200px;
  text-align: center;
}

.about-us .small-title {
  margin-bottom: 40px;
  color: var(--dark-grey);
}

.about-us .description-1,
.about-us .description-1 *:not(a) {
  line-height: 170%;
}

.about-us .description-1 a {
  display: inline-block;
  margin: 10px 25px;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  line-height: 100%;
}

.about-us .description-1 a:not([data-animate]) {
  transition: border 0.4s;
  border-bottom: 2px solid var(--light);
}

.about-us .description-1 a * {
  line-height: 100%;
}

.about-us .description-1 a .company-name {
  /* background: linear-gradient(0deg, var(--dark) 0%, var(--dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  pointer-events: none;
  line-height: inherit;
}

.about-us a {
  position: relative;
  z-index: 1;
}

.about-us .description-1 a.-hover {
  z-index: 10;
}

.about-us .description-1 a.-hover .hover-reveal {
  opacity: 1;
}

.about-us a.-dot-before:before {
  content: '';
  position: absolute;
  top: 50%;
  left: -25px;
  z-index: -2;

  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--light);

  transform: translate(-100%, -50%);
  pointer-events: none;
}

/* about us animation */

.hover-reveal {
  position: fixed;
  top: -300.5px;
  left: -300.5px;
  pointer-events: none;
  opacity: 0;
  width: 601px;
  height: 601px;
  transition: opacity 0.4s;
  /* background: pink; */
}

.about-us a.-hover .hover-reveal {
  transition: opacity 0.4s;
}


.hover-reveal__inner,
.hover-reveal__img {
  width: 100%;
  height: 100%;
  position: relative;
}

.hover-reveal__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 600px;
  clip-path: ellipse(50% 50% at 50% 50%);
  background: var(--gradient);
  transform: translate(-50%, -50%) rotate(45deg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hover-reveal__img {
  transform: rotate(-45deg);
}

.hover-reveal__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* transform: rotate(-45deg); */
}

.about-us .hover-reveal__img .white-hover {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
  color: #fff;
  line-height: 100%;
  /* transition: transform 0.02s ease-out; */
  /* transition-delay: transform 0.02s; */
  /* transform: rotate(-45deg) translate(-209px, 114px); */
}


/* index | products-section */

.products-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.products-section .container {
  position: relative;
}

.products-section .before-slider-card {
  min-height: auto;
  display: none;
}

.products-section .on-slider-card {
  position: absolute;
  left: 10px;
  top: 0;
  z-index: 5;
  background: #fff;
  max-width: 398px;
  padding: 0 30px;
}


.products-section .on-slider-card.-position-1 {
  left: 50px;
}

.products-section .on-slider-card.-position-2 {
  left: 418px;
}

.products-section .on-slider-card.-position-3 {
  left: 786px;
}



.brand-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 416px;
  max-width: 338px;
  width: 100%;
}

.products-section__navigation {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100%;
}

.products-section__navigation div {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;

  width: calc((100vw - 1440px) / 2 - (var(--scrollbar-width) / 2));
  height: 100%;
}

.products-section__navigation div.prev {
  left: 0;
  cursor: url(../images/icons/cursor-prev.svg) 0 31, pointer;
}

.products-section__navigation div.next {
  right: 0;
  cursor: url(../images/icons/cursor-next.svg) 62 31, pointer;
}

.navigation-wrapper {
  position: relative;
  height: 100%;
}

.products-section__slider {
  transition: height 0.4s;
}

.products-section__slider .swiper-slide {
  user-select: none;
}

.products-section .container>.button {
  display: none;
}

.products-section__slider .swiper-slide.brand-card {
  height: 416px;
  min-height: auto;
}

/* seminar-section */

.seminar-section {
  padding: 140px 0 100px 0;
  background: var(--gradient);
  overflow: hidden;
}

.seminar-section__col-left {
  position: relative;
  max-width: 66.761%;
  width: 950px;
}

.seminar-section .container>.title {
  line-height: 87%;
}

.seminar-section__col-left .spa-sticker {
  position: absolute;
  left: -13.2%;
  bottom: 14%;

  display: flex;
  justify-content: center;
  align-items: center;

  width: 160px;
  height: 160px;

  border-radius: 50%;
  background: var(--dark-gradient);
  color: #fff;
}

.seminar-section__col-left .spa-sticker span {
  letter-spacing: -1px;
  color: #fff;
}

.circle-label-svg {
  position: absolute;
  left: 0;
  top: 0;

  display: block;
  width: 100%;
  height: 100%;

  animation: 15s linear 0s normal none infinite running rotate;
  -webkit-animation: 15s linear 0s normal none infinite running rotate;
}

@keyframes rotate {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes rotateReverse {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.check_size {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 11.47px;
  font-weight: 900;
  line-height: 14px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.circle-label-svg * {
  font-size: 11.47px;
  font-weight: 900;
  line-height: 14px;
  color: #FFFFFF;
}

tspan:after {
  content: '';
  display: block;
  margin: 10px;
  width: 5px;
  height: 5px;
  background: #fff;
}

.seminar-section__col-left .default-list li:not(:last-child) {
  margin-bottom: 7px;
}

.seminar-section__col-left .default-list li {
  padding-left: 17px;
}

.seminar-section__col-left .default-list li:before {
  top: 8px;
  width: 4px;
  height: 4px;
  background: var(--dark);
}

.seminar-section__col-left .text {
  margin-bottom: 10px;
}

.seminar-section__mask-container {
  position: relative;
  width: 49.25vw;
  margin-left: 6.316%;
  min-height: 37.25vw;
}

.seminar-section__mask-container .hover-mask {
  opacity: 0;
  position: absolute;
  pointer-events: none;
  width: 100%;
}

.svg-text.svg-text-mobile {
  display: none;
}

.svg-text {
  position: absolute;
  top: -1.5vw;
  left: -1.374vw;
  transform: none;
  width: 39.5vw;
}

.svg-text * {
  letter-spacing: -0.1px;
}

.svg-text text {
  fill: var(--dark-grey);
}

.seminar-section__mask-img {
  width: 49.25vw;
  height: 49.25vw;
  clip-path: ellipse(24.7% 46.2% at 50% 50%);
  transform: rotate(45deg);
  position: absolute;
  top: -6.3125vw;
  left: -6.3125vw;
}

.seminar-section__mask-img img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(-45deg);
}

.seminar-section__photo-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;

  margin-top: 24px;
}

.seminar-section__photo-list .list {
  margin-top: 59px;
  max-width: 185px;
  min-width: 185px;
}

.seminar-section__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.seminar-section__col-right {
  position: relative;
  max-width: 31.1%;
  min-width: 376px;
  margin: 85px 0 0 30px;
}

.seminar-section__col-right .text {
  margin-top: 20px;
  color: var(--dark-grey);
}

.seminar-section__col-right .button {
  margin-top: 40px;
  background: #27A4E4;
  border-color: #27A4E4;
  color: #FFFFFF;
}

.seminar-section__col-right .button svg {
  margin-right: 10px;
}

body.apple .seminar-section__col-right .button svg {
  margin-bottom: -3px;
}

.seminar-section__col-right .button {
  padding: 0 40px 0 42px;
}


/* reviews */

.reviews {
  position: relative;
  margin: 140px 0 160px 0;
  overflow: hidden;
}

.reviews .title em {
  position: relative;
}

.reviews .title sup {
  position: absolute;
  top: 24px;
  right: -28px;
  font-family: NAMU, sans-serif;
  letter-spacing: normal;
}

.reviews .title sup * {
  font-family: NAMU, sans-serif;
  letter-spacing: normal;
}

.reviews__slider {
  margin-top: 73px;
  transition: height 0.4s;
}

.reviews__navigation div {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 5;

  height: 100%;
  width: calc((100vw - 1440px) / 2 - (var(--scrollbar-width) / 2));
  transition: opacity 0.3s;
}

.reviews__navigation div.prev {
  left: 0;
  cursor: url(../images/icons/cursor-prev.svg) 0 31, pointer;
  /* background: linear-gradient(270deg, rgba(255, 255, 255, 0) 21.35%, #fff 100%); */
  background: none;
}

.reviews__navigation div.next {
  right: 0;
  cursor: url(../images/icons/cursor-next.svg) 62 31, pointer;
  background: linear-gradient(270deg, #FFFFFF 21.35%, rgba(255, 255, 255, 0) 100%);
  width: calc((100vw - 906px) / 2 - (var(--scrollbar-width) / 2));
}

.reviews__navigation div.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

/* 404 */

.error-section {
  position: relative;
  background: var(--gradient);
}

.error-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 100vh;
  padding-top: 86px;
  padding-bottom: 100px;
}

.error-block .title-box {
  width: 100%;
  max-width: 491px;
}

.error-block .text {
  margin-top: 20px;
  color: var(--grey-blue);
}

.error-block .button {
  margin-top: 40px;
}

.error-block .error {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /*height: 275px;*/
  height: 17.1875vw;
}

.error-block .error img {
  display: block;
  width: auto;
  height: 100%;
}

.error-block .error .error-circle {
  position: absolute;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: -1;
}


/* single | main-single */

.main.main-single {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  min-height: 100vh;
  height: auto;
  padding-top: 86px;
  background: none;
}

.main.main-single .container {
  align-items: flex-start;
  justify-content: flex-start;
  width: 50%;
  height: auto;
  padding-bottom: 0;
  padding-top: 0;
  padding-left: 80px;
}

.main-single__slider {
  width: 100%;
  height: 100%;
}

.main-single__slider-container {
  position: relative;
  height: calc(100vh - 78px);
  width: 50%;
  background: var(--gradient);
  overflow: hidden;
}

.main-single__slider-container .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  max-height: 100%;
  max-width: 100%;
  height: auto;
  min-height: 100%;
  opacity: 0 !important;
}

.main-single__slider-container .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}

.main-single__slider-container .swiper-slide picture,
.main-single__slider-container .swiper-slide img {
  display: block;
  max-height: 100%;
  max-width: 100%;
}

.main.main-single .swiper-pagination {
  right: 40px;
}

.main.main-single .slider-label {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;

  width: 90px;
  height: 90px;

  border-radius: 50%;
  background: #fff;
}

.main.main-single .slider-label svg {
  position: absolute;
  left: 2px;
  top: 2px;
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}

.main.main-single .slider-label .circle-label-svg * {
  font-size: 11px;
  line-height: 100%;
}

.slider-label .center-img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 26px;

  transform: translate(-50%, -50%);
}

.slider-label .center-img img {
  width: 100%;
  height: 100%;
}

.main.main-single .check_size {
  font-size: 11px;
  line-height: 100%;
}

.main-single__info {
  display: block;
  height: 100%;
  width: 100%;
  max-width: none;
  padding: 70px 0;
}

.main-single__info.brand-card .title:after {
  right: -10px;
  width: 10px;
  height: 10px;
}

.brand-card .title {
  width: fit-content;
}

.main-single__info.brand-card .title {
  width: fit-content;
  margin-bottom: 60px;
}

.main-single__info .description {
  margin: 20px 0;
}

.main-single__info .text {
  margin-top: 20px;
  color: var(--dark-grey);
}

.main-single__info .button-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;

  margin-top: 40px;
}

.main-single__info .button-container .button {
  width: fit-content;
  margin-top: 0;
}

.main-single__info .button-container .button:first-child {
  margin-right: 10px;
}


/* single-product-section */

.single-product-section {
  margin: 80px 0 140px 0;
}

.single-product-section .container>.title {
  position: relative;
  width: fit-content;
}

.single-product-section .title sup {
  position: absolute;
  right: -26px;
  top: 10px;
}

.single-product-section__wrapper.-loading {
  opacity: 0.5;
}

.single-product-section__wrapper {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 30px;
  row-gap: 60px;
  transition: opacity 0.4s;
}

.single-product-section__wrapper .brand-card {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  height: 416px;
  grid-column: span 1;
  overflow: hidden;
}

.single-product-section__wrapper .brand-card .single-title {
  margin: 0 0 auto 0;
}

.single-product-section__wrapper .product-card {
  min-height: 416px;
  grid-column: span 1;
}

.single-product-section__wrapper .brand-card .brand-card__bottom {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.single-product-section__wrapper .brand-card .brand-card__bottom .expert-icon {
  width: 70px;
  min-width: 70px;
  height: 70px;
  margin-right: 16px;
  border-radius: 50%;
  overflow: hidden;
}

.single-product-section__wrapper .brand-card .brand-card__bottom .expert-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-product-section__wrapper .brand-card .brand-card__bottom .expert-text .text {
  color: var(--dark-grey);
  margin-top: 1px;
}

.expert-text .description-2 {
  line-height: 28px;
}

.single-product-section__wrapper .brand-card .button {
  margin-top: 18px;
}

.single-product-section .container>.button {
  width: 100%;
  margin-top: 60px;
}

.load-more.-loading svg {
  animation: 1s linear 0s normal none infinite running rotateReverse;
  -webkit-animation: 1s linear 0s normal none infinite running rotateReverse;
}

.single-product-section__wrapper .brand-card .hide-on-pc {
  display: none;
}