/* Color pallette */
/* cubic-bezier timing functions */
/* Header */
.home-banner {
  position: relative;
  height: 675px;
  width: 100%;
  background-color: transparent;
  max-height: 100vh;
}
.home-banner .swiper {
  display: flex;
  justify-content: center;
}
.home-banner .swiper__slide {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home-banner .swiper-pagination {
  display: flex;
  max-width: 1128px;
  width: 100%;
  left: unset !important;
  bottom: 100px;
  overflow: visible;
}
.home-banner .swiper-pagination-bullet {
  position: relative;
  left: 0 !important;
  width: calc(100% - 21px);
  min-width: 185px;
  margin: 0 21px 0 0 !important;
  background-color: rgba(255, 255, 255, 0.3);
  transform: none !important;
  transition: none !important;
}
.home-banner .swiper-pagination-bullet:last-child {
  margin: 0 !important;
}
.home-banner .swiper-pagination-bullet:last-child::after {
  content: none;
}
.home-banner .swiper-pagination-bullet:after {
  content: "";
  position: absolute;
  right: -21px;
  top: -8px;
  width: 21px;
  height: 17px;
  background-image: url("../../assets/svg/brand-minimal-logo-gray.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.home-banner .swiper-pagination-bullet-active:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  background-color: #f58220;
  animation: progressBarAnimation 9s linear 0.5s forwards;
}
.home-banner .swiper-pagination-bullet-active:after {
  background-image: url("../../assets/svg/brand-minimal-logo.svg");
}
.home-banner .swiper-pagination-bullet-active-next {
  transform: none !important;
}
.home-banner .swiper-pagination-bullet-active-next-next {
  transform: none !important;
}
.home-banner .swiper-pagination-bullet.-prev {
  background-color: #f58220;
}
.home-banner .swiper-pagination-bullet.-prev:after {
  background-image: url("../../assets/svg/brand-minimal-logo.svg");
}
.home-banner .swiper-pagination-title {
  z-index: 1;
  position: absolute;
  bottom: 110px;
  left: unset;
  display: flex;
  align-items: flex-end;
  max-width: 1128px;
  width: 100%;
}
.home-banner .swiper-pagination-title-item {
  width: calc(100% - 21px);
  min-width: 185px;
  margin: 0 21px 0 0;
  padding: 0 0 0 20px;
  color: hsl(0, 0%, 100%);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 30px;
  line-height: 1.875rem;
  cursor: pointer;
}
.home-banner .swiper-pagination-title-item:last-child {
  margin: 0;
}
.home-banner .container {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.home-banner__content {
  position: relative;
  top: -8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.home-banner__content__title h2 {
  color: hsl(0, 0%, 100%);
  text-align: center;
}
.home-banner__content__button {
  display: flex;
  justify-content: center;
  padding: 16px 30px;
  color: hsl(0, 0%, 100%);
  font-size: 16px;
  font-size: 1rem;
  line-height: 25.6px;
  line-height: 1.6rem;
  min-width: 150px;
}
.home-banner__image {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #212121;
  mix-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  object-fit: cover;
  filter: grayscale(1);
}
.home-banner__image img {
  object-fit: cover;
}
.home-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-banner__bg::after {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  background: rgba(33, 33, 33, 0.76);
  mix-blend-mode: multiply;
}
.home-banner__video {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
}

@keyframes progressBarAnimation {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .home-banner {
    max-height: unset;
    height: calc(100vh + 70px);
  }
  .home-banner .swiper-pagination {
    bottom: 17%;
  }
  .home-banner .swiper-pagination-bullet {
    width: calc(100% - 35px);
    margin: 0 35px 0 0 !important;
  }
  .home-banner .swiper-pagination-bullet:after {
    right: -35px;
    top: -13px;
    width: 35px;
    height: 29px;
  }
  .home-banner .swiper-pagination-title {
    align-items: flex-start;
    bottom: calc(17% - 40px);
  }
  .home-banner .swiper-pagination-title-item {
    width: calc(100% - 35px);
    margin: 0 35px 0 0;
    font-size: 16px;
    font-size: 1rem;
    line-height: 30px;
    line-height: 1.875rem;
  }
  .home-banner .swiper-pagination-title-item:first-child {
    padding: 0;
  }
  .home-banner__content {
    top: -5%;
    gap: 30px;
  }
  .home-banner__image {
    height: 100%;
  }
}
/* Color pallette */
/* cubic-bezier timing functions */
/* Header */
.investor-relations {
  position: relative;
  width: 100%;
  padding: 55px 0 70px;
  background-color: hsl(0, 0%, 0%);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.investor-relations .container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  gap: 40px;
}
.investor-relations__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 10px;
}
.investor-relations__box {
  display: flex;
  flex-wrap: wrap;
  padding: 16px 16px 10px 16px;
  width: 100%;
  max-width: 300px;
  color: hsl(0, 0%, 0%);
  background-color: hsl(0, 0%, 100%);
  justify-content: space-between;
}
.investor-relations__box.bg-orange {
  color: hsl(0, 0%, 100%);
  background-color: #f58220;
}
.investor-relations__box__text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 90px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-weight: 600;
  letter-spacing: -1.04px;
}
.investor-relations__box__value {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 60%;
  font-size: 42px;
  font-size: 2.625rem;
  line-height: 51px;
  line-height: 3.1875rem;
  font-weight: 600;
  letter-spacing: -3.52px;
}
.investor-relations__box__value span {
  padding: 0 0 0 5px;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 30px;
  line-height: 1.875rem;
  font-weight: 600;
  letter-spacing: -1.52px;
}
.investor-relations__box__bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.investor-relations__box__date {
  color: inherit;
  margin: 10px 0 0 0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 16px;
  line-height: 1rem;
}
.investor-relations__box__date.-right {
  margin-left: auto;
}
.investor-relations__button {
  color: hsl(0, 0%, 100%);
  font-size: 16px;
  font-size: 1rem;
  line-height: 25.6px;
  line-height: 1.6rem;
  border: 1px solid hsl(0, 0%, 100%);
}
@media screen and (min-width: 768px) {
  .investor-relations {
    padding: 100px 0;
    height: 100vh;
  }
  .investor-relations__content {
    flex-direction: row;
    gap: 30px;
  }
  .investor-relations__box {
    padding: 40px 40px 24px 40px;
    width: 50%;
    max-width: unset;
  }
  .investor-relations__box__text {
    max-width: 100px;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 26px;
    line-height: 1.625rem;
  }
  .investor-relations__box__value span {
    font-size: 38px;
    font-size: 2.375rem;
    line-height: 60px;
    line-height: 3.75rem;
  }
  .investor-relations__box__date {
    margin: 30px 0 0 0;
    font-size: 16px;
    font-size: 1rem;
    line-height: 18px;
    line-height: 1.125rem;
  }
}
@media screen and (min-width: 992px) {
  .investor-relations__box__text {
    max-width: 150px;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 26px;
    line-height: 1.625rem;
  }
  .investor-relations__box__value {
    font-size: 70px;
    font-size: 4.375rem;
    line-height: 90px;
    line-height: 5.625rem;
  }
}
/* Color pallette */
/* cubic-bezier timing functions */
/* Header */
.news {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 100px 0;
  background-color: #fafafa;
  gap: 40px;
}
.news .container {
  position: relative;
  gap: 60px;
}
.news .swiper {
  display: flex;
  justify-content: center;
}
.news .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}
.news .swiper-slide__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 262px;
  height: 100%;
  gap: 16px;
}
.news .swiper-slide__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.news .swiper-slide__image img {
  object-fit: cover;
}
.news .swiper-slide__title {
  margin: 0 0 auto 0;
  color: hsl(0, 0%, 0%);
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.375rem;
  font-weight: 600;
  letter-spacing: -4%;
  text-align: center;
}
.news .swiper-slide__date {
  margin: 0;
  color: hsl(0, 0%, 0%);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 28px;
  line-height: 1.75rem;
  letter-spacing: -4%;
  text-align: center;
}
.news .swiper-slide__detail {
  filter: brightness(0);
  cursor: pointer;
}
.news .swiper-slide__detail:hover {
  filter: brightness(1);
}
.news .swiper__buttons {
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  gap: 10px;
  width: 100%;
  height: 60px;
}
.news .swiper-button {
  position: relative !important;
  border: 1px solid #c3c3c3;
  top: 0;
  width: 60px;
  height: 60px;
}
.news .swiper-button::after {
  content: none;
}
.news .swiper-button-prev {
  left: 0;
}
.news .swiper-button-next {
  right: 0;
}
@media screen and (min-width: 768px) {
  .news {
    padding: 100px 0 0;
  }
  .news .swiper {
    border-left: 0.4px solid #b6b6b6;
    border-right: 0.4px solid #b6b6b6;
  }
  .news .swiper-slide {
    padding: 0 0 100px 0;
    border-left: 0.4px solid #b6b6b6;
  }
  .news .swiper-slide-active {
    border-left: none;
  }
  .news .swiper-slide::after {
    content: "";
    position: absolute;
    top: calc(50% - 20px);
    left: -15px;
    width: 30px;
    height: 40px;
    background-color: #fafafa;
    background-image: url("/assets/svg/brand-minimal-logo.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .news .swiper-slide__content {
    align-items: flex-start;
  }
  .news .swiper-slide__title {
    text-align: start;
  }
  .news .swiper-slide__date {
    text-align: start;
  }
  .news .swiper__buttons {
    position: absolute;
    top: calc(50% - 30px);
    left: 0;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1200px) {
  .news .swiper-button-prev {
    left: -30px;
  }
  .news .swiper-button-next {
    right: -30px;
  }
}
/* Color pallette */
/* cubic-bezier timing functions */
/* Header */
.sector {
  top: -50px;
}
@media screen and (min-width: 768px) {
  .sector {
    top: -70px;
  }
}
/* Color pallette */
/* cubic-bezier timing functions */
/* Header */
.sustainability {
  z-index: 1;
  position: relative;
  margin: 200px 0 450px;
  padding: 200px 0 250px;
  text-align: center;
}
.sustainability__cta {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}
.sustainability__assets {
  z-index: -1;
  pointer-events: none;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.sustainability__assets-group {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 50%;
}
.sustainability__assets-group .image-container {
  z-index: 1;
  position: relative;
}
.sustainability__assets-group img {
  max-width: 150px;
}
.sustainability__assets-group:nth-child(1) .image-container:nth-child(1) {
  z-index: -2;
  transform: translate(10px, -75%);
}
.sustainability__assets-group:nth-child(1) .image-container:nth-child(2) {
  transform: translate(-10px, -50%);
}
.sustainability__assets-group:nth-child(2) {
  align-items: flex-end;
}
.sustainability__assets-group:nth-child(2) .image-container:nth-child(1) {
  z-index: -2;
  order: 2;
  transform: translate(-150%, calc(-60% + 130%));
}
.sustainability__assets-group:nth-child(2) .image-container:nth-child(2) {
  order: 1;
  transform: translate(0, calc(-60% + -40px));
}
.sustainability__assets-group:nth-child(2) .image-container:nth-child(3) {
  z-index: -2;
  order: 3;
  transform: translate(0, calc(-60% + 5%));
  margin: 0 0 0 -100%;
}
.sustainability__wire {
  z-index: -1;
  position: absolute;
  width: 200vw;
  height: 7px;
  background-image: url("../svg/wire.svg");
  background-repeat: repeat;
  background-size: contain;
  background-repeat: repeat-x;
  pointer-events: none;
  transform: translateX(-50%);
}
.sustainability__wire:nth-of-type(2) {
  transform: translate(-50%, 375px);
}
.sustainability__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: auto;
}
.sustainability__title {
  white-space: nowrap;
  font-weight: 500;
}
.sustainability__title span {
  display: block;
}
.sustainability__title [style] {
  color: #f58220 !important;
}
.sustainability p {
  max-width: 400px;
}
@media screen and (min-width: 576px) {
  .sustainability__assets-group:nth-child(1) .image-container:nth-child(1) {
    transform: translate(30px, -75%);
  }
  .sustainability__assets-group:nth-child(1) .image-container:nth-child(2) {
    transform: translate(-30px, -50%);
  }
  .sustainability__assets-group:nth-child(2) .image-container:nth-child(1) {
    transform: translate(-80%, calc(-60% + 130%));
  }
  .sustainability__assets-group:nth-child(2) .image-container:nth-child(2) {
    transform: translate(0, calc(-60% + 33%));
  }
  .sustainability__assets-group:nth-child(2) .image-container:nth-child(3) {
    transform: translate(0, calc(-60% + 5%));
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .sustainability__assets-group img {
    max-width: 200px;
  }
}
@media screen and (min-width: 992px) {
  .sustainability {
    margin: 350px 0 450px;
    padding: 100px 0;
  }
  .sustainability__assets-group img {
    max-width: unset;
  }
  .sustainability__assets-group:nth-child(1) .image-container:nth-child(1) {
    transform: translate(30px, calc(-60% + 60px));
  }
  .sustainability__assets-group:nth-child(1) .image-container:nth-child(2) {
    transform: translate(-30px, calc(-60% + -60px));
  }
  .sustainability__assets-group:nth-child(2) .image-container:nth-child(1) {
    transform: translate(-50%, calc(-60% + 115%));
  }
  .sustainability__assets-group:nth-child(2) .image-container:nth-child(2) {
    transform: translate(0, calc(-60% + 33%));
  }
  .sustainability__assets-group:nth-child(2) .image-container:nth-child(3) {
    transform: translate(0, calc(-60% + 5%));
  }
  .sustainability__wire:nth-of-type(2) {
    transform: translate(-50%, 300px);
  }
  .sustainability p {
    max-width: 600px;
  }
}
/* Color pallette */
/* cubic-bezier timing functions */
/* Header */
.tooltip {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 0;
  padding: 20px 40px 20px 20px;
  height: auto;
  width: 75%;
  text-align: left;
  text-decoration: none;
  background-color: hsl(0, 0%, 100%);
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55), left 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.tooltip-close {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #f58220;
  cursor: pointer;
  transition: background-color 0.3s;
}
.tooltip-close img {
  width: 22px;
  height: 22px;
}
.tooltip-link {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tooltip-image {
  display: none;
}
.tooltip-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 0;
  width: 100%;
}
.tooltip__title {
  margin: 0 0 5px 0;
  color: #f58220;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  line-height: 20px;
  line-height: 1.25rem;
}
.tooltip__description {
  margin: 0 0;
  color: #f58220;
  width: 100%;
  word-break: break-word;
}
.tooltip__description p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 18px;
  line-height: 1.125rem;
  color: hsl(0, 0%, 0%);
}
.tooltip__description a {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 18px;
  line-height: 1.125rem;
  color: hsl(0, 0%, 0%);
  text-decoration: underline;
}
.tooltip.-off {
  left: 0;
  transform: translateX(-101%);
}
@media screen and (min-width: 768px) {
  .tooltip {
    padding: 0;
    width: auto;
    height: 165px;
  }
  .tooltip-image {
    display: flex;
    width: 200px;
    height: 150px;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    margin: 0;
    background-color: hsl(0, 0%, 100%);
  }
  .tooltip-content {
    padding: 25px 30px 25px 0;
    width: 400px;
  }
}