/*!*************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/sass/components/_home.sass ***!
  \*************************************************************************************************************************/
.header {
  background-color: var(--color3);
}

.home {
  padding-top: var(--fixed-header-space);
  box-sizing: border-box;
  background-color: var(--color3);
  height: auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
/*!************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/sass/components/_emotions_slider.sass ***!
  \************************************************************************************************************************************/
.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide--rtl {
  direction: rtl;
}

.emotions__link {
  height: auto;
  display: block;
  border-radius: 50%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}
.emotions__image {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.emotions__title {
  text-align: center;
  text-transform: uppercase;
  color: var(--color1);
  font-size: var(--fs-xxxl);
  font-weight: 900;
  font-family: var(--ff1);
  font-style: normal;
  line-height: var(--fs-xxxl);
  letter-spacing: calc(var(--fs-xxxl) * -0.03);
}
.emotions__text {
  color: var(--color1);
  margin: auto;
  text-align: center;
  font-size: var(--fs-regular);
  font-weight: 400;
  font-family: var(--ff1);
  font-style: normal;
  line-height: var(--fs-regular);
  letter-spacing: calc(var(--fs-regular) * -0.03);
}
.emotions.glide__slide--active .emotions__text, .emotions.glide__slide--active .emotions__title {
  display: block;
}
.emotions.glide__slide--active .emotions__link {
  border-radius: 5vw;
}
.emotions__see-more {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--color5);
  border-radius: 50%;
  width: 10vw;
  height: 10vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-small);
  font-weight: 800;
  font-family: var(--ff1);
  font-style: normal;
  line-height: var(--fs-small);
  letter-spacing: calc(var(--fs-small) * -0.03);
  display: none;
  margin-left: -5vw;
  margin-top: -5vw;
}

.h-slider__count {
  display: flex;
  align-items: center;
  color: var(--color1);
  font-size: var(--fs-regular);
  font-weight: 400;
  font-family: var(--ff1);
  font-style: normal;
  line-height: var(--fs-regular);
  letter-spacing: calc(var(--fs-regular) * -0.03);
  margin: 0 2vw;
}
.h-slider__count span {
  display: inline-flex;
  margin: auto 1vw;
}
.h-slider__count .h-slider-total {
  color: var(--color2);
}

.glide__arrows {
  display: flex;
  align-items: center;
  justify-content: center;
}
.glide__arrow {
  border: none;
  background-color: transparent;
  color: var(--color1);
  padding: 0;
  cursor: pointer;
  display: block;
}
.glide__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media all and (pointer: fine) {
  .emotions__link:hover .emotions__see-more {
    display: flex;
  }
}
@media all and (orientation: landscape) {
  .emotions__link {
    width: 75%;
    margin: auto;
  }
  .emotions__title {
    margin: 2vw auto 1vw auto;
    line-height: 4.5vw;
  }
  .glide__arrows {
    margin-top: 3vw;
  }
  .glide__arrow {
    width: 3vw;
    height: 3vw;
  }
}
@media all and (orientation: portrait) {
  .emotions__link {
    width: 90%;
    margin: auto auto 5vw auto;
  }
  .emotions__title {
    margin: 6vw auto;
  }
  .glide__arrows {
    margin-top: 10vw;
  }
  .glide__arrow {
    width: 10vw;
    height: 10vw;
  }
}
