#main9_content {
    text-align: center;
    max-width: 100%;
    margin-bottom: 10rem;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    margin: auto;
}

.main9_middle {
    display: flex;
    justify-content: space-between;
    text-align: center;
    font-family: 'RobotoRegular',sans-serif;
    color: var(--GRIS);
}

.slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    max-width: 80%;
    margin: auto;
    min-width: 50rem;
    background-color: #e6f5f5;
    padding: 4rem 0;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    flex-direction: row;
    position: relative;
    justify-content: space-around;
}

.slide img {
    border-radius: 50%;
    width: 22rem;
    height: 22rem;
}

.slide-content {
    max-width: 70%;
    text-align: left;
    position: relative;
    z-index: 1;
}

.slide-content h3 {
    color: #008080;
    margin: 0;
}

.slide-content h4 {
    margin: 2rem 0;
    font-weight: normal;
    color: #333;
}

.slide-content p {
    text-align: justify;
    margin: 0;
    font-size: 2rem;
    color: #333;
    font-weight: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    max-height: 6em;
    position: relative;
}

.expand-icon {
    position: absolute;
    font-size: 3rem;
    cursor: pointer;
    right: 0px;
    bottom: -25px;
    transform: translateY(50%);
}

.expand-icon {
    transform: rotate(90deg);
}

.dots {
    text-align: center;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 3px;
    align-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.dots span {
    height: 8px;
    width: 8px;
    margin: 0 1px;
    background-color: #e5f5f5;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    background-color: #c0f5f5;
}

.dots .active {
    background-color: #008080;
    height: 10px;
    width: 10px;
}

@media (max-width: 600px) {
    .slide {
        flex-direction: column;
        text-align: center;
    }

    .slide img {
        margin: 0 0 3px 0;
    }

    .slide-content {
        flex: none;
        max-width: 95%;
    }

    .slide img {
        border-radius: 50%;
        width: 39rem;
        height: 39rem;
    }

    .slide-content p,
    .slide-content h4 {
        text-align: start;
        font-size: 4rem;
    }

    .slide-content h3 {
        font-size: 5rem;
    }

    .slide {
        gap: 2rem;
    }

    .slider {
        max-width: 100%;
        padding: 8rem 0;
    }

    .dots {
        margin-top: 5rem;
    }
}


#arrowleft {
    /* height: 8px; */
    /* width: 8px; */
    /* margin: 0 1px; */
    /* background-color: #e5f5f5; */
    /* border-radius: 50%; */
    display: inline-block;
    cursor: pointer;
    /* background-color: #c0f5f5; */


    width: 3rem;
    height: 3rem;
    border-right: 0.55rem solid rgb(18, 114, 125);
    border-bottom: 0.55rem solid rgb(18, 114, 125);
    /* Arrow color */
    transform: rotate(-45deg);
    /* Rotate to create the arrow shape */
    margin: 0 4rem;
    /* Space between arrow and box */
    transform: rotate(135deg);
    /* Rotate for left arrow */
    border-radius: 6px;
}

#arrowright {
    /* height: 8px; */
    /* width: 8px; */
    /* margin: 0 1px; */
    /* background-color: #e5f5f5; */
    /* border-radius: 50%; */
    display: inline-block;
    cursor: pointer;
    /* background-color: #c0f5f5; */


    width: 3rem;
    height: 3rem;
    border-right: 0.55rem solid rgb(18, 114, 125);
    border-bottom: 0.55rem solid rgb(18, 114, 125);
    /* Arrow color */
    transform: rotate(-45deg);
    /* Rotate to create the arrow shape */
    margin: 0 4rem;
    /* Space between arrow and box */
    transform: rotate(-45deg);
    /* Rotate for right arrow */
    border-radius: 6px;
}

@media(max-width:641px) {
    #arrowright {
        display: none;
    }

    #arrowleft {
        display: none;
    }
}