 

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient( to bottom, transparentize(#0E1D33, 0.2) , transparentize(#0E1D33, 0.8) );
}

.hero-slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;

  .carousel-cell {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    .inner {
      position: absolute;
      top: 60%;
      transform: translateY(-50%);
      color: white;
      text-align: center;

      .subtitle { 
        font-size: 2.2rem;
        line-height: 1.2em;
        font-weight: 700;
        letter-spacing: 3px;
        color: rgb(9 7 97);
        margin-bottom: 5px;
        text-align: left;
        padding: 0 0 0 4rem;
      }

      .title { 
        font-size: 3rem;
        line-height: 1.2em;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 40px;
        width: 70%;
        padding: 0 0 0 4rem;
      }
      .btn{
        border: 1px solid #fff;
        padding: 14px 18px;
        text-transform: uppercase; 
        font-size: 0.8rem;
        letter-spacing: 3px;
        color: #fff;
        text-decoration: none;
        transition: all .2s ease;
        background: #090761;
        font-weight: 700;
        float: left;
        margin: 0px 0 0 4rem;
        &:hover{
          background: #fff;
          color: #000;
        }
      }
    }
  }

  .flickity-button {
    border: 1px solid gray; 
    margin: 0 1rem 0rem 1rem;
  }
  .flickity-prev-next-button {
    width: 50px;
    height: 50px;
    background: transparent;
    &:hover{
      background: transparent;
    }
    .arrow{
      fill: white;
    }
  }
  .flickity-page-dots {
    bottom: 30px;
    .dot{
      width: 30px;
      height: 4px;
      opacity: 1;
      background: rgba(255,255,255,0.5);
      border: 1px solid white;
      border-radius: 0;
      &.is-selected{
        background: #ff0000;
        border: 0 solid #ff0000; 
      }
    }
  }
}