/**
 * Author: Hong Wang
 * Github: https://github.com/H0NGWANG

 Colors:
 - #447d81 for buttons and sub-titles -> 447d81
 - #64b2b6 for titles and btn hober   -> 529699

**/
body {
    font-family: 'Noto Sans', sans-serif;
    padding: 40px 0px;
    color: #3d3d3f;
}

@media print {
    body {
        padding: 0px 0px;
    }
}

main {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
}

a, a:hover {
    color: #529699;
}

h2 {
    font-size: 20px;
    font-weight: 500;
    color: #529699;
}

.left-side {
    padding: 25px;
}

.profile {
    text-align: center;
    padding-bottom: 15px;
}

.profile h1 {
    padding-top: 20px;
    text-transform: uppercase;
}

.picture {
    background-repeat: no-repeat;
    background-size: cover;
}

.picture img {
    max-width: 100%;
}
@media print{

    .picture img {
        max-width: 20%;
    }
}

.btn-cv {
    padding: 10px;
    color: white;
    background-color: #447d81;
    width: 100%;
    border-radius: 0px;
}

.btn-cv:hover {
    color: #fff;
    background-color: #529699;
}

.btn:focus, .btn:active {
    outline: none !important;
    box-shadow: none;
    color: white;
}

.social {
    padding: 0;
    list-style-type: none;
}

.social i {
    width: 20px;
}

.right-side {
    padding: 0px;
}

section {
    padding: 30px;
    border-bottom: 1px solid #ddd;
}
@media print{
    section {
        padding: 8px;
        border-bottom: 1px solid #ddd;
    }
}

.section-title {
    text-transform: uppercase;
    margin-left: -5px;
}

.upper-row {
    position: relative;
}

.company, .school-name{
    color: #447d81;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0px;
}

.time {
    font-size: 15px;
    font-weight: 500;
    color: #447d81;
}

.job-title, .school-title {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 5px;
}

.job li, section {
    font-size: 15px;
}

.honors h3{
    color: #447d81;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0px;
}

.contact-form {
    padding-top: 5px;
}

.form-group input, .form-group textarea {
    border-radius: 0px;
    border-color: #ddd;
}

.form-control:focus {
    box-shadow: none;
    border-radius: 0px;
    border-color: #ddd;
}

footer {
    text-align: center;
    padding: 30px;
}

@media (max-width: 991.98px) {
    .right-side {
        border-top: 1px solid #ddd;
    }
}

@media (min-width: 992px) {
    .left-side {
        border-right: 1px solid #ddd;
    }

    .time {
        position: absolute;
        right: 0;
        top: 0;
    }

    header {
        /* fixed sidebar */
        position: -webkit-sticky;
        position: sticky;
        top: 25px;
    }
}
