/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 60vh;
  position: relative;
  background: url('../img/hero-carousel/1.jpg') no-repeat;
  background-size: cover;
  padding: 0;

  .hero-content {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;

    h2 {
      color: $secondary;
      margin-bottom: 30px;
      font-size: 64px;
      font-weight: 700;

      span {
        color: $primary;
        text-decoration: underline;
      }

      @media (max-width: 767px) {
        font-size: 34px;
      }
    }

    .btn-get-started, .btn-projects {
      font-family: $font-primary;
      font-size: 15px;
      font-weight: bold;
      letter-spacing: 1px;
      display: inline-block;
      padding: 10px 32px;
      border-radius: 2px;
      transition: 0.5s;
      margin: 10px;
      color: #fff;
    }

    .btn-get-started {
      background: $secondary;
      border: 2px solid $secondary;
      &:hover {
        background: none;
        color: $secondary;
      }
    }

    .btn-projects {
      background: $primary;
      border: 2px solid $primary;
      &:hover {
        background: none;
        color: $primary;
      }
    }

  }

  .hero-slider {
    z-index: 8;
    height: 60vh;
    &::before {
      content: '';
      background-color: rgba(255, 255, 255, 0.7);
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0;
      right:0;
      left: 0;
      bottom: 0;
      z-index: 7;
    }
 
    .swiper-slide {
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      transition-property: opacity;
    }
  
  }
  
}
