.container-page-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 80px;
}
.card {
    width: 18rem;
}
.icon-card {
    font-size: 60pt;
    text-align: center;
    border-bottom: 1px solid #808080;
    margin: 0px 20px 10px 20px;
}
.carousel-item {
    background-color: #b6b7b9;
    height: 440px;
}
.carousel-control-next-icon, 
.carousel-control-prev-icon {
    border-radius: 50%;
    border: 2px solid #808080;
    background-color: #808080;
}
.carousel-item > a > img {
    width: 100%;
}
.slide-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.slide-content > img {

    max-width: auto;
}
.slide-content > .slide-content-text {

    width: 100%;
    background-color: #b6b7b9;
    padding-right: 250px;
    padding-bottom: 150px;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
}
.carousel-indicators,
.carousel-caption{
    background-color:rgb(128, 128, 128, 0.8);
    max-width: 100%;
}
.carousel-indicators {
    background-color:rgb(128, 128, 128, 0);
}
.card {
    margin-top: 10px;
    margin-bottom: 10px;
}
/*Aplica os estilos até 375 pixels*/
@media (max-width: 768px) {
    .container-page {
        margin: 0;
        padding: 0;
    }
    .container-page-section {
        padding: 0px;
        background-color: #3CB371;
    }
    .card {
        width: 100%;
    }
    .icon-card {
        font-size: 30pt;
        margin: 0px 10px;
    }
    .card-title,
    .card-text {
        font-size: 11pt;
    }
    .carousel-item {
        background-color: #b6b7b9;
        height: auto;
    }
    .carousel-indicators {
        display: none;
    }
}