.row {
    width: 100%;
}

.row > * {
    float: left;
}
.row:after {
    content: "";
    display: block;
    clear: left;
}

.col-4 {
    width: calc(33.33% - 10px);
    margin-right: 10px;
}

.col-8 {
    width: calc(66.66% - 10px);
    margin-left: 10px;
}

#main {
    text-align: left;
}

/* ---------------------- */

.profile-image-container {
    display: flex;
    width: 100%;
}

.profile-image-container > div:first-child {
    display: flex;
    padding-left: 20px;
    align-items: center;
    background-color: #7588ac;
    width: 80%;
}

.profile-image-container h1 {
    color: #f5f5f5;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 5px !important;
    font-size: 1.5rem;
}

.profile-image-container h2 {
    color: #f5f5f5;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.profile-image-container a {
    color: #f5f5f5 !important;
    text-decoration: underline;
    font-size: 1.05rem;
}

.profile-image-container > div:last-child {
    max-width: 20%;
}

.profile-image-container > div:last-child > img {
    width: 100%;
    border-radius: 0 !important;
}

.separator {
    height: 10px;
    background-color: #7588ac;
    margin: 20px 0;
}

.section-title {
    text-transform: uppercase;
    display: block;
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

li {
    list-style-position: inside;
    list-style: none;
}

section br {margin-bottom: 10px;}

@media (min-width: 960px) {
    h1 {font-size: 2rem;}
    h2 {font-size: 1.5rem;}
}

@media (max-width: 600px) {
    .profile-image-container h1 {
        font-size: 1rem !important;
    }

    .profile-image-container h2 {
        font-size: 0.8rem !important;
    }

    .profile-image-container {
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
    }

    .profile-image-container > div:first-child {
        width: 100%;
        align-items: center;
        text-align:center;
    }
    
    .profile-image-container > div:first-child  {
        padding-left: 0;
       justify-content: center;
    }
    
    .profile-image-container > div:last-child {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        display: flex;
        align-items: center;
    }
    
    .profile-image-container > div:last-child > img {
        max-width: 200px;
        margin: 0 auto;
        display: inline-block;
    }
    }
}

