@import '../variables.scss';
@import '../libs/include-media.scss';

.bannersSlider {
  display: block;
  height: 600px;
  margin-top: 95px;

  @include media('<=phone') {
    height: 450px;
    margin-top: 60px;
  }

  .bannerItem {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    @include media('<=phone') {
      border-bottom-right-radius: 50px;
      overflow: hidden;
    }

    .contentBox {
      max-width: 1600px;
      height: 100%;
      margin: 0 auto;
      padding: 16px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;

      @include media('<=phone') {
        justify-content: flex-start;
        margin-top: 120px;
        padding: 16px 48px;
      }

      img {
        max-width: 295px;

        @include media('<=phone') {
          max-width: 128px;
        }
      }
      h2 {
        color: $purple;
        font-size: 100px;
        font-weight: 700;
        line-height: 0.9;
        letter-spacing: 1.36px;
        width: 600px;
        margin: 16px 0 0 0;
        text-shadow: 2px 2px 2px black;

        @include media('<desktop') {
          font-size: 70px;
        }
        @include media('<=phone') {
          font-size: 37px;
          font-weight: bold;
          width: 300px;
        }
      }
    }
  }
}
