.projects-section {
    margin-top: 130px;
}
.hero-img-container {
    height: 200px;
    margin-bottom: 64px;
    position: relative;
}
.hero-img-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
    position: absolute;
}
h1 {
    font-family: "Raleway-SemiBold", sans-serif;
    font-size: 32px;
    color: #414141;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.description {
    font-family: "Raleway-Regular", sans-serif;
    color: #414141; 
    font-size: 20px;
}
.subtitle {
    margin-top: 98px;
    padding-bottom: 16px;
    margin-bottom: 40px;
    border-bottom: 1px solid #00A3C3;
    color: #00A3C3;
    font-family: "Raleway-SemiBold", sans-serif;
    font-size: 32px;
}
.title {
    font-family: "Raleway-SemiBold", sans-serif;
    color: #414141;
    font-size: 20px;
    margin-bottom: 0;
}
.legal {
    font-family: "Raleway-Italic", sans-serif;
    font-size: 20px;
}
.institution, .director, .director a {
    font-family: "Raleway-Regular", sans-serif;
    font-size: 18px;
    margin-bottom: 0;
    color: #414141;
}
.hover-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.project-link {
    transition: all 0.5s ease;
    background-color: #77BDA1;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Raleway-Regular", sans-serif;
    color: #FFFFFF;
    text-decoration: none;
    height: 100%;
    font-size: 40px;
    max-height: 147px;
    width: 100%;
}
.project-link:hover, .project-link:focus {
    color: #FFFFFF;
}
a.project-link:hover {
    transform: scale(0.97);
    -webkit-transform: scale(0.97);
        -ms-transform: scale(0.97);
}
main .row {
    margin-bottom: 16px;    
}
main .old-project:not(:last-of-type) .col-lg-9,
main .current-project:not(.last-project-container) .col-lg-9
 {
    border-bottom: 1px solid #77BDA1;
    padding-bottom: 16px;
}
.logos-container {
    margin-top: 56px;
}
.logos-container .col-6 {
    margin-bottom: 16px;
}
.institutional-logo {
    position: relative;
    padding: 16px;
    border: 1px solid #cbcbcb;
    max-width: 200px;
    margin: 0 auto;
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
    -webkit-transition: -webkit-filter 0.2s ease;
    transition: -webkit-filter 0.2s ease;
    -o-transition: filter 0.2s ease;
    transition: filter 0.2s ease;
    transition: filter 0.2s ease, -webkit-filter 0.2s ease;
}
.institutional-logo:hover {
    -webkit-filter: unset;
    filter: unset;
}
.institutional-logo:hover + .logo-text {
    color: rgb(0, 163, 195, 1);
}
.institutional-logo a {
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.logo-text {
    text-align: center;
    font-size: 12px;
    font-family: 'Raleway-Regular', sans-serif;
    max-width: 200px;
    margin: 8px auto;
    transition: all 0.2s ease;
}
@media only screen and (max-width: 991px) {
    .hero-img-container {
        margin-bottom: 56px;
        height: 100px;
    }
    h1 {
        margin-bottom: 16px;
    }
    .description {
        font-size: 16px;
    }
    .subtitle {
        margin-top: 64px;
        margin-bottom: 24px;
    }
    main .row .col-lg-3 {
        order: 2;
    }
    main .row .col-lg-9 {
        order: 1;
        margin-bottom: 0;
        padding-bottom: 16px;
        border-bottom: 0 !important;
    }
    .project-link {
        font-size: 24px;
    }
    main .row.old-project,
    main .row.current-project {
        border-bottom: 1px solid #77BDA1;
        padding-bottom: 32px;
    }
}