/* ================================ LITERACY PAGE ================================ */

.section-one {
    div {
        margin: 3rem;
        padding-top: 3rem;
    }
}

.section-two {
    padding-bottom: 60px;
}

.ps-custom {
    padding-left: 3rem;

    .carousel-indicators {
        display: flex;
        align-items: end;
        justify-content: end;
    }
}

.carousel-image-placeholder,
.carousel-section h2, 
.carousel-section p {
    transition: opacity 0.3s ease-in-out;
}

.carousel-image-placeholder {
    width: 100%;
    height: 400px;
    
    background-color: #d9d9d9;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel-btn-danger {
    background-color: #A12124;
    color: white;

    font-size: 18px;
    font-style: bold;
    font-weight: 700;

    padding: 8px 35px;

    border: 2px solid #A12124;
}

.carousel-btn-danger:hover {
    background-color: white;
    color: #A12124;

    border: 2px solid #A12124;
    transition: 0.3s ease;
}

.circle-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border: 2px solid #625F5F;
    border-radius: 50%;
    background-color: #ffffff;
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;

    i {
        color: #a12124;
        font-size: 22px;
        transition: color 0.3s ease-in-out;
    }
} 

.circle-button:hover {
    background-color: #a12124;
    border-color: #a12124;

    i {
        color: #ffffff;
    }
}

.carousel-footer {
    position: absolute;
    bottom: 0;
    left: 20;
    right: 10;
}

.carousel-indicators {
    display: flex;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: #625F5F;
    margin: 0 5px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.carousel-indicators button.active {
    opacity: 1;
}