.home-carousel-image {
    width: 100vw;
    height: 100vh !important;
    object-fit: cover;
    filter: brightness(25%) saturate(25%);
}

.home-carousel .carousel-caption {
    position: absolute;
    border: solid #575757 1px;
    border-radius: 2em;
    top: 30%;
    left: 3vw;
    right: 30vw;
    width: 67vw;
    height: 55%;
    bottom: auto;
    text-align: left;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    padding-left: 5%;
}

.home-carousel .carousel-caption h3 {
    font-size: 2.5em;
    padding-bottom: 0.5em;
    font-weight: 400;
}

.home-carousel .carousel-caption p {
    font-size: 1em;
    padding-bottom: 2em;
    color: #575757;
}

.home-carousel .carousel-caption .btn {
    font-size: 0.7em;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.5em;
    background-color: #13131394;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    color: #FFF;
    border-color: #575757;
    border-radius: 50em 50em 50em 50em;
    padding: 15px 30px;
    width: 150px;
}

.home-carousel .carousel-controls {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 20%;
    right: 5vw;
    bottom: auto;
    z-index: 2;
    width: 17vw;
    height: 70%;
}

.home-carousel .indicator-control {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1em;
    padding-bottom: 1em;
    position: relative;
    font-size: 1.1em;
}

.home-carousel .carousel-controls .carousel-indicators .incidicator-links {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: transparent solid 15px;
    background-color: #575757;
}

.home-carousel .carousel-controls .carousel-indicators .incidicator-links.active {
    outline: #575757 solid 1px;
    background-color: #FFC600;
}

.home-carousel .carousel-controls .carousel-indicators .incidicator-links.active+span {
    color: #FFF;
    font-size: 1.3em;
}

.home-carousel .carousel-controls .carousel-indicators span {
    color: #575757;
    width: 200px;
    text-align: center;
    transition: font-size 250ms ease-in;
}

.home-carousel .carousel-control-next,
.home-carousel .carousel-control-prev {
    position: initial;
    margin-left: 10%;
    color: #575757;
    fill: #575757;
    border: #575757 solid 1px;
    border-radius: 100%;
    padding: 7.5px;
    width: auto;
    height: auto;
}

.home-carousel .carousel-control-next,
.home-carousel .carousel-control-prev,
.home-carousel .carousel-control-next:hover,
.home-carousel .carousel-control-prev:hover,
.home-carousel .carousel-control-next:focus,
.home-carousel .carousel-control-prev:focus {
    background-color: transparent;
}

.home-carousel .carousel-controls .carousel-indicators {
    display: flex;
    flex-direction: column;
    left: auto;
    position: initial;
    margin-bottom: 5%;
    padding-top: 20%;
    padding-bottom: 20%;
}

.index-indicators {
    position: absolute;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
    color: #FFF;
    top: 31%;
    left: 3vw;
    right: 30vw;
    width: 67vw;
    height: 50%;
    bottom: auto;
    pointer-events: none;
}

.index-indicator {
    display: flex;
    align-items: center;
    margin-bottom: 2.4em;
    visibility: hidden;
    filter: opacity(0);
    transition: filter 250ms ease-in;
}

.index-indicator.active {
    visibility: visible;
    filter: opacity(1);
}

.index-indicator hr {
    opacity: 1;
    margin-left: .1em;
    width: 50px;
    border-color: #FFC600;
}

@media only screen and (max-width: 992px) {

    .home-carousel .carousel-caption,
    .index-indicators {
        top: 30%;
        left: 3vw;
        right: 30vw;
        width: 57vw;
        height: 60%;
    }

    .home-carousel .carousel-controls {
        top: 36%;
        right: 10vw;
        bottom: auto;
        z-index: 2;
        width: 17vw;
        height: 50%;
    }
}

@media only screen and (max-width: 768px) {

    .home-carousel-image {
        width: 100vw;
        height: 250vh !important;
        object-fit: cover;
    }

    .home-carousel .carousel-caption,
    .index-indicators {
        top: 30%;
        left: 5vw;
        right: 5vw;
        width: 90vw;
        height: 30%;
    }

    .home-carousel .carousel-caption {
        padding-right: 5em;
    }

    .home-carousel .carousel-controls {
        top: auto;
        bottom: 0;
        left: 3vw;
        right: 3vw;
        width: 95vw;
        height: 40%;
    }

    .home-carousel .carousel-controls .carousel-indicators {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .home-carousel .carousel-controls .carousel-indicators .indicator-control {
        flex-grow: 1;
        flex-shrink: 0;
        flex-basis: 0%;
    }
}