.section-carousel {
    width: 100%;
    height: 100%;
}

.banner {
    position: relative;
}

.img-banner {
    position: relative;
    width: 100%;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background-color: #f1ffe7;
}

.img-banner::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

.container-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item .container {
    display: flex;
    align-items: center;
    height: 100%;
}

.container-header-carousel {
    width: 370px;
    z-index: 9;
    position: relative
}

.container-header-carousel .actions .btn {
    border: 1px solid #fff;
    border-radius: 50px;
}

.container-header-carousel .actions .btn:hover {
    color: #fff;
}

@media only screen and (max-width: 768px) {
    .container-header-carousel {
        width: 100%;
    }

    .container-header-carousel .text-h4 {
        font-size: 2rem !important;
    }

    .img-banner {
        height: 55vh;
    }

    .img-banner img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .otorrinolaringologia {
        display: none;
    }
}







/*===================================*
	08. SLICK 
*===================================*/

.slick-arrow {
    position: absolute;
    width: 60px;
    height: 40px;
    z-index: 1;
    display: flex !important;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    cursor: pointer;
    bottom: 55px;
}

.slick-prev.slick-arrow {
    right: 300px;
}

.slick-next.slick-arrow {
    right: 200px;
}

.slick-dots {
    position: absolute;
    display: flex !important;
    align-items: center;
    justify-content: center;
    bottom: 0;
    width: 100%;
}

.slick-dots li {
    margin: 0 3px;
    list-style: none;
}

.slick-dots li.slick-active {
    border: 2px solid #fff;
    border-radius: 50%;
}

.slick-dots li button {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    width: 13px;
    height: 13px;
    padding: 0;
    font-size: 0;
    color: #0000;
    background: #a5598a;
    cursor: pointer;
}

.slick-dots li button:focus {
    border: none;
    outline: none;
}

@media only screen and (max-width: 767px) {
    .slick-arrow {
        display: none !important;
    }
}