/* Bootstrap carousel */
.carousel-mt {
    margin-top: 88px;
}
.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: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.carousel-caption-custom .content {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.carousel-caption-custom .content .main-text,
.carousel-caption-custom .content .secondary-text,
.carousel-caption-custom .content .last-text {    
    font-family: var(--font-bold);
    font-weight: bold;
}
.carousel-caption-custom .content .main-text {
    font-size: 2rem;
    color: var(--dp-yellow);
}
.carousel-caption-custom .content .secondary-text {
    font-size: 1rem;
    color: var(--dp-white);
}
.carousel-caption-custom .content .last-text {
    font-size: 0.75rem;
    color: var(--dp-white);
}
@media (min-width: 576px) {
    .carousel-caption-custom .content .main-text {
        font-size: 2.5rem;
    }
    .carousel-caption-custom .content .secondary-text {
        font-size: 1.5rem;
    }
    .carousel-caption-custom .content .last-text {
        font-size: 0.8rem;
    }
}
@media (min-width: 992px) {
    .carousel-caption-custom .content .main-text {
        font-size: 3rem;
    }
    .carousel-caption-custom .content .secondary-text {
        font-size: 2rem;
    }
    .carousel-caption-custom .content .last-text {
        font-size: 1rem;
    }
}
.carousel-indicators {
    bottom: 80px;
    z-index: 3;
}
.dp-carousel-control-icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  background-color: #14A538;
  align-items: center;
  justify-content: center;
}
.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: #14A538;
    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 {
    background-color: #F8BC00;
    opacity: 1;
}
.carousel-last-text {
    margin-top: -10px;
}
.inner-content {
    height: 450px;
    top: 200px;
}
@media (max-width: 575.98px) {
    .carousel-content{
        padding-top: 81px;
    }
    .carousel-inner {
        background-color: var(--dp-primary);
        height: calc(100vh - 81px);
    }
    .carousel-indicators {
        top: 250px;
    }
}
@media (min-width: 576px) {
    .carousel-item picture {
        height: 100vh;
    }
    .carousel-last-text {
        margin-top: -15px;
    }
}
@media (min-width: 768px) {
    .carousel-content{
        padding-top: 0;
        display: none;
    }
    .carousel-indicators {
        bottom: 40px;
    }
}
@media (min-width: 992px) {
    .carousel-indicators {
        bottom: 50px;
    }
}
.carousel-control-prev, .carousel-control-next {
    background: transparent;
    border: 0;
}
@media (max-width: 575.98px) {
    .carousel-control-next, .carousel-control-prev {  
        top: -400px;
    }
}