#hero {
      width: 100%;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.8);
      overflow: hidden;
      position: relative;
    }
    
    #hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
    }
    
    #hero .carousel-container {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      position: absolute;
      bottom: 60px;
      top: 70px;
      left: 55px;
      right: 55px;
    }
    
    #hero .carousel-content {
      background: rgba(4, 4, 4, 0.7);
      padding: 20px;
      color: #fff;
      border-top: 5px solid #a00c0c;
    }
    
    #hero .carousel-content h2 {
      color: #fff;
      margin-bottom: 20px;
      font-size: 28px;
      font-weight: 700;
    }
    
    #hero .btn-get-started {
      font-family: "Roboto", sans-serif;
      font-weight: 500;
      font-size: 14px;
      letter-spacing: 1px;
      display: inline-block;
      padding: 12px 32px;
      border-radius: 4px;
      transition: 0.5s;
      line-height: 1;
      margin: 10px;
      color: #fff;
      -webkit-animation-delay: 0.8s;
      animation-delay: 0.8s;
      border: 2px solid #a00c0c;
    }
    
    #hero .btn-get-started:hover {
      background: #a00c0c;
      color: #fff;
      text-decoration: none;
    }
    
    #hero .carousel-inner .carousel-item {
      transition-property: opacity;
      background-position: center top;
    }
    
    #hero .carousel-inner .carousel-item,
    #hero .carousel-inner .active.carousel-item-start,
    #hero .carousel-inner .active.carousel-item-end {
      opacity: 0;
    }
    
    #hero .carousel-inner .active,
    #hero .carousel-inner .carousel-item-next.carousel-item-start,
    #hero .carousel-inner .carousel-item-prev.carousel-item-end {
      opacity: 1;
      transition: 0.5s;
    }
    
    #hero .carousel-inner .carousel-item-next,
    #hero .carousel-inner .carousel-item-prev,
    #hero .carousel-inner .active.carousel-item-start,
    #hero .carousel-inner .active.carousel-item-end {
      left: 0;
      transform: translate3d(0, 0, 0);
    }
    
    #hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
      background: none;
      font-size: 30px;
      line-height: 0;
      width: auto;
      height: auto;
      background: rgba(255, 255, 255, 0.4);
      border-radius: 50px;
      transition: 0.3s;
      color: rgba(255, 255, 255, 0.6);
      width: 54px;
      height: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    #hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
      background: rgba(255, 255, 255, 0.6);
      color: rgba(255, 255, 255, 0.8);
    }
    
    #hero .carousel-indicators li {
      cursor: pointer;
      background: #fff;
      overflow: hidden;
      border: 0;
      width: 12px;
      height: 12px;
      border-radius: 50px;
      opacity: .6;
      transition: 0.3s;
    }
    
    #hero .carousel-indicators li.active {
      opacity: 1;
      background: #a00c0c;
    }
    
    @media (min-width: 1024px) {
      #hero .carousel-content {
        width: 60%;
      }
      #hero .carousel-control-prev, #hero .carousel-control-next {
        width: 5%;
      }
    }
    
    @media (max-width: 992px) {
      #hero .carousel-container {
        top: 58px;
      }
      #hero .carousel-content h2 {
        margin-bottom: 15px;
        font-size: 22px;
      }
      #hero .carousel-content p {
        font-size: 15px;
      }
    }
    
    @media (max-height: 500px) {
      #hero {
        height: 120vh;
      }
    }
    