/* Bootstrap carousel */
.carousel-item picture {
    display: block;
    width: 100vw;
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-bg {
    position: absolute;
    content: "";
    background: rgba(12, 20, 38, 0.4);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.carousel-caption-custom {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 200px;
    left: 5%;   
    z-index: 2;
}
.carousel-caption-custom .banner-content {
    height: 450px;
}
.carousel-caption-custom .content h2 {
    color: #fff;
    font-weight: 600;
    font-style: normal;
    letter-spacing: -1px;
    margin-bottom: 35px;
}
.carousel-caption-custom .content p {
    color: #fff;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    opacity: 0.8;
}
.carousel-caption-custom .inner-btn {
    border: 1px solid #fff;
    max-width: 350px;
    width: max-content;
}
.carousel-caption-custom .inner-btn p,
.carousel-caption-custom .inner-btn i {
    color: var(--white) !important;
}
.carousel-caption-custom .inner-btn i {
    transition: transform 0.3s ease;
}
.carousel-caption-custom .inner-btn:hover i {
    transform: translateX(5px);
}
.carousel-caption-custom .inner-btn:hover p,
.carousel-caption-custom .inner-btn:hover i {
    cursor: pointer;
}
.carousel-indicators {
    bottom: 80px;
    z-index: 3;
}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
      border-top-width: 0px;
      border-top-style: none;
      border-top-color: currentcolor;
      border-bottom-width: 0px;
      border-bottom-style: none;
      border-bottom-color: currentcolor;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}
.carousel-indicators .active {
    opacity: 1;
}
@media (max-width: 575.98px) {
    .carousel-content{
        padding-top: 87px;
    }
    .carousel-indicators {
        top: 240px;
    }
    .carousel-inner {
        background-color: var(--red);
        height: calc(100vh - 87px);
    }
    .carousel-caption-custom {
        top: 280px;
    }
    .carousel-caption-custom .content h2 {
        margin-top: 35px;
    }
}
@media (min-width: 576px) {
    .carousel-item picture {
        height: 100vh;
    }
    .carousel-caption-custom .banner-content {
        height: 450px;
    }
}
@media (min-width: 768px) {
    .carousel-content{
        padding-top: 0;
        display: none;
    }
    .carousel-caption-custom {
        top: 190px;
    }
    .carousel-caption-custom .banner-content {
        height: 490px;
    }
    .carousel-caption-custom .content p {
      font-size: 20px;
      line-height: 30px;
    }
    .carousel-caption-custom .inner-btn {
        max-width: 400px;
    }
    .carousel-indicators {
        bottom: 40px;
    }
}
@media (min-width: 992px) {
    .carousel-caption-custom {
        top: 230px;
        left: 15%;
    }
    .carousel-caption-custom .banner-content {
        height: 550px;
    }
    .carousel-caption-custom .content h2 {
        font-size: 3rem;
        line-height: 3.5rem;
    }
    .carousel-caption-custom .inner-btn {
        max-width: 500px;
    }
    .carousel-indicators {
        bottom: 50px;
    }
}