.general-header.scrolled {
  background: var(--color-gray-150);
}

.header-menu--wrap .menu-item {
  position: relative;
}

.header-menu--wrap--desc .sub-menu {
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.header-menu--wrap--desc ul {
  margin: 0;
  list-style: none;
}

.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transition: all 0.3s ease-in-out;
}

.custom-logo-link {
  display: block;
}

/* parent menu items that have children */
.menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}

.header-menu--wrap--mobile .menu-item-has-children > a {
  font-weight: 300;
  padding: 0;
}

.menu-item-has-children > a::after {
  content: "";
  display: block;
  width: 14px;
  height: 8px;
  background: url(./icons/menu-arrow--bottom.svg) no-repeat center;
  background-size: contain;
}

@font-face {
  font-family: "Almoni";
  src: url("./fonts/almoni-light-aaa.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Almoni";
  src: url("./fonts/almoni-regular-aaa.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Almoni";
  src: url("./fonts/almoni-bold-aaa.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
.general-header {
  transition: all 0.3s ease-in-out;
}
.general-header.scrolled {
  transition: all 0.3s ease-in-out;
}

.corner {
  position: absolute;
  color: #fff;
  pointer-events: none;
  display: block;
}

.corner--tr {
  top: 100%;
  right: 20px;
}

.corner--tl {
  top: 100%;
  left: 20px;
}

.corner--bl {
  transform: rotate(-90deg);
  position: fixed;
  bottom: 0;
  left: 20px;
  z-index: 99;
}

.corner--br {
  position: fixed;
  bottom: 0;
  right: 20px;
  transform: rotate(90deg);
  z-index: 99;
}

body {
  font-family: "Almoni", sans-serif;
}

.large-slider--button-icon {
  width: 24px;
  height: 24px;
  background: url("./icons/pause.svg") no-repeat center;
  display: block;
  cursor: pointer;
}
.large-slider--button-icon.stop-now--icon {
  background: url("./icons/play.svg") no-repeat center;
}

.js-welcome-hero {
  position: relative;
  overflow: hidden;
}
.js-welcome-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 63.72%, rgba(0, 0, 0, 0.7) 91.51%);
  pointer-events: none;
}
.js-welcome-hero .js-welcome-hero--bg1 {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: scale(1.1);
}
.js-welcome-hero .slick-active .js-welcome-hero--bg1 {
  transition: all 0.3s ease-in-out;
  opacity: 1;
  transform: scale(1);
}

.button--with-link {
  position: relative;
  width: max-content;
}
.button--with-link:after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("./icons/button-arrow--right.svg") no-repeat center;
}

.green-divider--bottom:before {
  content: "";
  bottom: 0;
  left: 50%;
  margin-left: -25px;
  width: 50px;
  height: 2px;
  background: var(--color-brand-green);
  position: absolute;
}

.site-button--link {
  position: relative;
  padding-right: 32px;
  transition: all 0.3s ease;
}
.site-button--link:hover span {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: uppercase;
}
.site-button--link.have-arrow {
  position: relative;
  width: max-content;
  overflow: hidden;
  transition: all 0.3s ease;
}
.site-button--link.have-arrow:hover {
  padding-right: 0;
  padding-left: 32px;
}
.site-button--link.have-arrow:hover:after {
  right: -24px;
  transition: all 0.3s ease;
}
.site-button--link.have-arrow:hover:before {
  left: 0;
}
.site-button--link.have-arrow:after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("./icons/button-arrow--right--red.svg") no-repeat center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.site-button--link.have-arrow:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("./icons/button-arrow--right--red-hover.svg") no-repeat center;
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.3s ease;
}

.site-button.button--with-link {
  position: relative;
  padding-right: 64px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.site-button.button--with-link:hover {
  padding-right: 32px;
  padding-left: 64px;
  transition: all 0.3s ease;
}
.site-button.button--with-link:hover:after {
  right: -24px;
  transition: all 0.3s ease;
}
.site-button.button--with-link:hover:before {
  left: 32px;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.3s ease;
}
.site-button.button--with-link:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 32px;
  transition: all 0.3s ease;
}
.site-button.button--with-link:before {
  content: "";
  display: block;
  width: 18px;
  height: 13px;
  background: url("./icons/button-arrow--right--white-hover.svg") no-repeat center;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.3s ease;
}

.site-button--icon {
  width: 50px;
  height: 50px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
.site-button--icon:hover:after {
  left: 100%;
  transform: translate(0, -50%);
  transition: all 0.3s ease;
}
.site-button--icon:hover:before {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.site-button--icon:after {
  content: "";
  display: block;
  width: 22px;
  height: 18px;
  background: url("./icons/button-arrow--right--red.svg") no-repeat center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.site-button--icon:before {
  content: "";
  display: block;
  width: 18px;
  height: 13px;
  background: url("./icons/button-arrow--right--red-hover.svg") no-repeat center;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.3s ease;
}

.tase-video,
.tase-video--inner {
  position: relative;
}
.tase-video.go-tase-video:before, .tase-video.go-tase-video--inner:before,
.tase-video--inner.go-tase-video:before,
.tase-video--inner.go-tase-video--inner:before {
  content: "";
  display: block;
  width: 58px;
  height: 58px;
  position: absolute;
  left: 50%;
  margin-left: -29px;
  top: 50%;
  margin-top: -29px;
  background: url("./icons/play--large--red-icon.svg") no-repeat center;
  background-size: cover;
}

.portfolio-section--wrap {
  position: relative;
  overflow: hidden;
}
.portfolio-section--wrap:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.custom-logo {
  height: 38px;
}

@media (width >= 80rem) {
  .tase-video.go-tase-video:before {
    width: 120px;
    height: 120px;
    margin-left: -60px;
    margin-top: -60px;
  }
  .custom-logo {
    height: 65px;
  }
}
.company-section--hidden {
  max-width: 0;
  max-height: 0;
  opacity: 0;
  transition: opacity 0s ease 0s, max-width 0.1s ease 0.1s, max-height 0.1s ease 0.1s;
}

.company-section--item {
  transition: all 0.3s ease;
}

.company-section--item--visual-image {
  left: 50%;
  transform: translateX(-50%);
}

.company-section--item-active .company-section--show {
  max-width: 0;
  max-height: 0;
  opacity: 0;
  transition: opacity 0s ease 0s, max-width 4s ease 3s, max-height 4s ease 3s;
}
.company-section--item-active .company-section--hidden {
  opacity: 1;
  max-width: max-content;
  max-height: none;
  transition: max-width 0.4s ease 0.2s, max-height 0.4s ease 0.2s, opacity 0.4s ease 0.4s;
}
.company-section--item-active .company-section--item--visual-image {
  left: auto;
  right: 40px;
  transform: none;
}

.timeline-year {
  position: relative;
  width: 50px;
  height: 170px;
  cursor: pointer;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.timeline-year * {
  transition: all 0.3s ease;
}
.timeline-year.active {
  transform: scale3d(1.5, 1.5, 1);
  transition: all 0.3s ease;
}
.timeline-year.active:before {
  height: 72px;
}
.timeline-year.active .timeline-year--value {
  top: 60px;
}
.timeline-year .timeline-year--value {
  position: absolute;
  -webkit-transform: var(--transform, scale3d(1, 1, 1)) rotate(-90deg);
  transform: var(--transform, scale3d(1, 1, 1)) rotate(-90deg);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  top: 70px;
  left: 25px;
}
.timeline-year:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 52px;
  background: var(--Green, #50B690);
  left: 50%;
  transform: translateX(-50%);
}

.company-mob-section--hidden {
  display: none;
}

.company-mob-section--item-active .company-mob-section--hidden {
  display: block;
}
.company-mob-section--item-active .company-mob-section--show {
  display: none;
}

.company-mob-section--item-icon {
  transform: var(--transform, scale3d(1, 1, 1)) rotate(-180deg);
  transition: all 0.3s ease;
}
.company-mob-section--item-icon.rotate-icon {
  transform: var(--transform, scale3d(1, 1, 1)) rotate(0deg);
  transition: all 0.3s ease;
}

@media (max-width: 1444px) {
  .legend-name span {
    font-size: 16px;
  }
  .site-button.button--with-link {
    position: relative;
  }
}
@media (max-width: 1480px) {
  body .properties-section {
    padding: 20px;
  }
}
@media (max-width: 1280px) {
  .site-button--icon {
    width: 32px;
    height: 32px;
  }
}
.timeline-mob .slick-slide,
.timeline-slider .slick-slide {
  margin: 0 10px;
}

.company-section--item {
  transition: flex-grow 0.35s ease;
  will-change: flex-grow;
}

.company-section--item-active {
  flex-grow: 2.2;
}

.company-section--item:hover {
  flex-grow: 2.2;
}

@media (prefers-reduced-motion: reduce) {
  .company-section--item {
    transition: none;
  }
}
.general-header {
  background: var(--color-gray-150);
}

.general-header.is-visible {
  transform: translateY(0);
}

.general-header.is-hidden {
  transform: translateY(calc(-100% - env(safe-area-inset-top, 0px)));
}

.esg-mob-section--item-active .esg-mob-section--show {
  display: block;
}

.esg-mob-section--show {
  display: none;
}

html, body {
  overscroll-behavior-y: none;
}

/*# sourceMappingURL=main.css.map */
