body {
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
}


#carouselFirstPage {
    position: relative;
    display: block;
    overflow: hidden;
}

.banner-container img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}

.banner-container:hover img {
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    -o-transform: scale3d(1.1, 1.1, 1.1);
    -moz-transform: scale3d(1.1, 1.1, 1.1);
}

.carousel-caption {
    display: flex;
    transition: all 0.5s;
    -webkit-transition: opacity 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0%!important;
    padding: 5%;
    height: 100%;
    width: inherit;
    box-sizing: border-box;
    justify-content: center;
    opacity: 0;
    width: 100%;
}

.banner-container:hover .carousel-caption {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 40%;
    left: 0%;
    padding: 5%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    height: inherit;
    width: inherit;
    box-sizing: border-box;
    justify-content: center;
    opacity: 1;
    width: 100%;
}

#carouselFirstPage:hover .carousel-item img {
    filter: brightness(0.8);
}

.banner-title {
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 2%;
    color: #fff;
}

.banner-desc {
    font-size: 14px;
    text-align: justify;
    padding-bottom: 5%;
}

.banner-button a {
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-sizing: border-box;
    border: 2px solid #dc3545;
}

.banner-button a:hover {
    background-color: transparent;
    border: 2px solid #dc3545;
    transition: 0.3s;
    box-sizing: border-box;
}