.block-banner{
  position: relative;
}
.banner{
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  &:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(174, 4, 109, .7) 0%, transparent 60%);
    bottom: 0;
    left: 0;
    z-index: 1;
  }
  &:after{
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .8) 0%, transparent 100%);
    z-index: 2;
  }
  &__home{
    height: 950/1920*100vw;
  }
  &__page{
    height: 735px;
  }
}
.page-title{
  font: 90px $font-poppinsBold;
  &:first-letter, span{
    color: $col-rose;
  }
}
.banner-text{
  position: relative;
  z-index: 5;
  padding: 0 15px;
}
.banner-title{
  position: relative;
  font: 120/1920*100vw $font-poppinsBold;
  line-height: 1;
  margin-bottom: 30px;
  span{
    color: $col-rose;
  }
  i{
    position: absolute;
    font: 62/1920*100vw $font-vegan;
    color: $col-rose;
    top: -25/1920*100vw;
    right: 97%;
    z-index: 3;
  }
}
.banner-desc{
  text-align: center;
  font-size: 24/1920*100vw;
}
.banner-slider{
  .slick-dots{
    position: absolute;
    top: 50%;
    left: 315/1920*100vw;
    transform: translateY(-50%);
    li{
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: $col-white;
      position: relative;
      margin-bottom: 40px;
      cursor: pointer;
      &:last-child{
        margin-bottom: 0;
      }
      &.slick-active:before{
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 52px;
        height: 52px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, .3);
      }
    }
    button{
      display: none;
    }
  }
  .slick-arrow{
    position: absolute;
    z-index: 2;
    font-size: 0;
    padding: 5px;
    border: solid $col-white;
    border-width: 0 2px 2px 0;
    background: transparent;
    left: 313/1920*100vw;
    cursor: pointer;
    outline: none;
    &.slick-prev{
      transform: rotate(-135deg);
    }
    &.slick-next{
      transform: rotate(45deg);
    }
  }
}
@media only screen and (max-width: 991px){
  .banner-text{
    padding: 0 15px 0 60px;
  }
  .banner{
    &__home{
      height: 500px;
    }
    &__page{
      height: 500px;
    }
  }
  .page-title{
    font-size: 42px;
  }
  .banner-title{
    font-size: 42px;
    margin-bottom: 5px;
    i{
      top: 0;
      font-size: 16px;
    }
  }
  .banner-desc{
    font-size: 16px;
  }
  .banner-slider{
    .slick-arrow{
      left: 27px;
    }
    .slick-dots{
      left: 30px;
      li.slick-active:before{
        width: 30px;
        height: 30px;
      }
    }
  }
}