.text {
    color: #4B0082;
    font-size: 1.875em;
    font-weight: bold;
    line-height: 200%;
}

.text-footer {
    color: #4B0082;
    /* font-size: 1.875em; */
    font-weight: bold;
    line-height: 200%;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    /* Remove underline */
}

.logo-img {
    width: 100px;
    /* Adjust size as needed */
    height: auto;
    margin-right: auto;
    /* Space between logo and text */
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4B0082;
}

.buttons {
   
    background-color: #4B0082;
    border: none;
    border-radius: 15px;
    color: white;
    padding: 10px 18px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.buttons:hover {
    background-color: #9D91A2;
    color: white;
}

/*
* Partiticipating institution part
*/

.part-title {
    color: #4B0082;
    text-align: center;
}

/*
*  carousel
*/

#slider {
    position: relative;
    width: 100%;
    height: 265px;

    overflow: hidden;
    box-shadow: 0 0 10px #4B0082;
    border-radius: 8px;
}

#slider ul {
    position: relative;
    list-style: none;
    height: 100%;
    width: 10000%;
    padding: 0;
    margin: 0;
    transition: all 750ms ease;
    left: 0;
}

#slider ul li {
    position: relative;
    height: 100%;

    float: left;
}

#slider ul li img {
    width: 500px;
    height: 265px;
}

#slider #prev,
#slider #next {
    width: 50px;
    line-height: 50px;
    text-align: center;
    color: white;
    text-decoration: none;
    position: absolute;
    top: 50%;
    border-radius: 50%;
    font-size: 2rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    transform: translateY(-50%);
    transition: all 150ms ease;
}

#slider #prev {
    left: 10px;
}

#slider #next {
    right: 10px;
}

#slider #prev:hover,
#slider #next:hover {
    background-color: #4B0082;
    text-shadow: 0;
}