// hero
.section {
  &-hero {
    position: relative;
    height: 65vh;
    overflow: hidden;
    @include media-breakpoint-down(lg) {
      padding: 3rem 0;
      height: auto;
    }
  }
}

.sideicons {
  &-wrapper {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 9;
    transform: translateY(-50%) translateX(calc(100% - 3rem));
    @include media-breakpoint-down(md) {
      display: none;
    }
    li {
      background-color: white;
      padding: 0.75rem;
      width: 3rem;
      max-height: 3rem;
      overflow: hidden;
      border-radius: 8px 0px 0px 8px;
      filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.16));
      cursor: pointer;
      transform-origin: 100% 100%;
      [class^="ic-"],
      [class*=" ic-"] {
        color: $primary;
        @include rfs(26);
      }

      > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      @include hover {
        background-color: $primary;
        width: 100%;
        transition: width 0.5s $time-func-1;
        transform: translateX(calc(-100% + 3rem));
        .title {
          color: white;
          transform: translateX(0);
          transition: transform 0.5s $time-func-1, opacity 1s $time-func-1;
          opacity: 1;
        }
        [class^="ic-"],
        [class*=" ic-"] {
          color: white;
        }
      }
      &:not(:last-child) {
        margin-bottom: 0.25rem;
      }
    }
    .title {
      margin-left: 0.75rem;
      transform: translateX(-190%);
      opacity: 0;
      white-space: nowrap;
    }
  }
}

.scroll {
  &-section {
    &:not(:first-child) {
      @include media-breakpoint-up(lg) {
        // @include flex(center, center, column);
        // padding-top: 7rem;
      }
      @include media-breakpoint-down(md) {
        height: auto !important;
      }
    }
  }
}

//News
.news {
  &-ticker {
    display: flex;
    align-items: center;
    padding-right: 1rem;

    @include media-breakpoint-up(md) {
      border-right: 1px solid white;
    }
  }

  &-marquee {
    overflow: hidden;
    max-width: 500px;
    @include media-breakpoint-down(md) {
      max-width: 400px;
    }
    @include media-breakpoint-down(sm) {
      max-width: unset;
    }
    p {
      display: inline-block;
      position: relative;
      margin-right: 1rem;
      padding-right: 1.5rem;
      color: $white;
      &:after {
        content: "";
        height: 0.5rem;
        width: 0.5rem;
        background-color: $white;
        border-radius: 50%;
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
      }
    }
  }

  &-title {
    color: white;
  }
}
