body {
    /* font-family: 'Inconsolata'; */
    font-family: 'Poppins';
    font-size: 12px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px;
}

h1 {
    font-size: 64px;
    font-weight: 900;
    margin: 5px 0;
}

h2 {
    margin: 5px 0;
}

h3 {
    margin: 5px 0;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
}
h4 {
    margin: 0;
    margin-top: 10px;
}
h5 {
    margin: 5px 0;
    text-transform: uppercase;
    float: left;
}
p {
    font-size: 14px;
    text-align: justify;
    margin: 6px 0;
}

.row {
    display: flex;
    padding: 5px 5px;
}
@media (max-width: 1050px) {
    .row {
        flex-direction: column;
    }
}
.col {
    padding: 10px 10px;
}

.col1 {
    flex: 1
}
.col2 {
    flex: 2
}
.col3 {
    flex: 3
}
.col4 {
    flex: 4
}
.col5 {
    flex: 5
}
.col6 {
    flex: 6
}

.avatar {
    width: 130px;
    height: 130px;
    display: inline-block;
    background-image: url(../img/avatar.jpeg);
    background-size: 120px;
    border-radius: 65px;
    background-position: 50%;
}
.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.title {
    min-height: 150px;
}

.group {
    margin-bottom: 20px;
}

.experience {
    margin-top: 40px;
}

.experience-item {
    border-left: 4px solid rgba(128, 128, 128, 0.3);
    padding: 10px;
    position: relative;
    margin-top: 26px;
    padding-left: 20px;
    /*height: 150px;*/
}
.experience-item:before {
    content: "";
    position: absolute;
    top: -13px;
    left: -16px;
    transform:translate(50%,-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: gray;
}
.experience-item-content {
    padding: 1px 15px 15px 15px;
    position: relative;
    top: -43px;
    width: 100%;
    margin-bottom: -27px;
    transition: .5s;
}
.experience-item-content:hover {
    background-color: whitesmoke;
}
.experience-item-company {
    min-height: 55px;
}

.years {
    float: right;
    font-size: 16px;
}
.no-margin {
    margin: 0;
}
.margin5 {
    margin: 5px 0;
}
ul {
    font-size: 14px;
}

a {
    color: black;
    transition: .5s;
}
a:visited {
    color: darkgray;
}
.company-name {
    margin: 5px 0;
    text-transform: uppercase;
    float: left;
}
.company-logo {
    float: left;
    max-height: 50px;
    margin-right: 15px;
    filter: grayscale(100%);
    transition: .3s;
    border-radius: 25px;
    background: black;
}

.experience-item-content:hover .company-logo {
    filter: grayscale(0%);
}

a.skill {
    font-size: 13px;
    text-decoration: unset;
    color: black;
}
a.skill:hover {
    text-decoration: underline;
}
.projects-button {
    width: 100%;
    border: none;
    transition: .5s;
    margin-top: 10px;
}
.projects-button:hover {
    background-color: black;
    color: white;
    cursor: pointer;
}
table {
    width: 100%;
    border: 2px solid rgb(237, 237, 237);
}
tr:nth-child(even) {
    background-color: rgb(237, 237, 237);
}
.project-column {
    width: 60%;
    text-align: justify;
    padding: 5px;
}
.images-column {
    width: 40%;
    text-align: center;
}
.image-preview {
    max-height: 100px;
    margin-right: 5px;
    cursor: pointer;
    filter: grayscale(100%);
    transition: .5s;
}
.image-preview:hover {
    filter: grayscale(0%);
}
.vgs__container {
    height: 90vh !important;
    background-color: transparent !important;
}
.projects-table {
}
.top-button {
    float: right;
    width: 40px;
    height: 30px;
    border: 1px solid rgb(237, 237, 237);
    text-align: center;
    padding-top: 12px;
    color: black;
}
.top-button:hover {
    background: rgb(237, 237, 237);
}
.hide {
  display: none;
}

@media print
{
    .no-print, .no-print *
    {
        display: none !important;
    }

    .print-margin {
      margin-top: 150px
    }
    .print-margin-x2 {
      margin-top: 400px
    }
    .print {
      display: block !important
    }
    
    .print-page-break {
        page-break-before: always;
        break-before: page;
    }

    .experience-item {
        page-break-inside: avoid;
        break-inside: avoid;
        margin-top: -30px;
        margin-left: -30px;
        border-left: none;
    }
    
    .experience-item-content {
        position: static;
        top: auto;
        margin-bottom: 0;
        margin-top: 0;
        padding: 15px;
        margin-left: 0;
    }
    h1 {
        font-size: 32px;
    }
}

p.responsibilities {
  font-size: 16px
}
