body {
    font-size: 0.8rem;
}

.font-header {
    font-size: 1rem;
}

.header {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.nav-link.active {
    color: #333333;
    /*font-weight: bold;*/
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}


.previous-jobs .year {
    width: 7em;
}

.previous-jobs td {
    padding: 2px 0 0 0;
}

.my-list li {
    list-style-type: square;
}
.my-list {
    padding-left: 1rem;
}

.my-work {
    color: #333333;
}

.link-black {
    /*color: #000;*/
    color: #333333;

}



/*
*
* ==========================================
* Image hover
* ==========================================
*
*/

/* DEMO GENERAL ============================== */
.hover {
    overflow: hidden;
    position: relative;
    padding-bottom: 60%;
}

.hover-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 90;
    transition: all 0.4s;
}

.hover img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
}

.hover-content {
    position: relative;
    z-index: 99;
}

/* DEMO 2 ============================== */
/*.hover-2 img {*/
/*    width: 105%;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: -5%;*/
/*    transition: all 0.3s;*/
/*}*/


/*.hover-2:hover img {*/
/*    left: 0;*/
/*}*/





.hover-2 .hover-overlay {
    /*background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));*/
}

.hover-2-title {
    position: absolute;
    top: 50%;
    left: 0;
    text-align: center;
    width: 100%;
    z-index: 99;
    transition: all 0.3s;
}

.hover-2-description {
    width: 100%;
    position: absolute;
    bottom: 0;
    opacity: 0;
    left: 0;
    text-align: center;
    z-index: 99;
    transition: all 0.3s;
}

.hover-2:hover .hover-2-title {
    transform: translateY(-1.5rem);
}

.hover-2:hover .hover-2-description {
    bottom: 0.5rem;
    opacity: 1;
}

.hover-2:hover .hover-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
}

