.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.text-underline {
    text-decoration: underline;
}

.imageContainer img {
    width:  100px;
    height: 100px;
    object-fit: scale-down;
}

.competencesTitle {
    padding: 10px;
    border-radius: 5px;
    color: white;
}

.study-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.study-image-container > img {
    width: 100%;
    max-width: 75px;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .study-image-container > img {
        margin-bottom: 12px;
    }
}

.logo-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.logo-list > div {
    position: relative;
    width: 60px;
    height: 60px;
    margin-left: -10px;
    border-radius: 20px;
    background-color: #EFEFEF;
    border: 2px solid #0A81D1;
}

.logo-list > div > img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: contain;
}

.logo-list > div > div {
    display: none;
    background-color: white;
    padding: 12px;
    left: 0;
    width: 200px;
    position: absolute;
    margin-top: 10px;
    transition-duration: 200ms;
    border: 2px solid #0A81D1;
    transform: translateX(-70px);
    z-index: 10;
}

.logo-list > div > img:hover + div {
    display: block;
}

.logo-list > div > div > h5 {
    font-weight: bold;
}
