@import url('https://fonts.googleapis.com/css?family=Josefin+Sans|Lato&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #000;
    scroll-behavior: smooth;
}

p {
    margin-top: .5rem;
}

hr {
    border: 1px dashed #7D7D7D;
    margin: 2em 0;
}

h1, h2, h3, h4, h5, h6 {
    color: #008080;
    font-family: 'Josefin Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6,
ul, ol, p {
    margin: revert;
    padding: revert;
}

code {
    display: inline;
    background: #ededed;
    padding: 0 5px;
    width: 100%;
}

pre {
    max-width: 790px;
}

pre > code {
    display: block;
    padding: 6px;
    overflow: auto;
}

blockquote{
    border-left: 5px solid #ededed;
    padding-left: 10px;
    color: #7D7D7D;
}

.sub-script {
    color: #555;
    font-size: 0.8em;
    display: block;
}

.skip-nav-link {
    background: #008080;
    color: white;
    padding: .5rem 1.5rem;
    border-radius: 0 0 0.25rem 0.25rem;
    left: 0.5rem;
    position: absolute;
    transform: translateY(-120%);
}

.skip-nav-link:focus {
    transform: translateY(0);
}

.post-snippet .row-footer .sub-script {
    color: #008080;
}

.row-title .sub-script {
    margin-top: -16px;
}

.block-link, .block-link:hover, .block-link:active {
    display: block;
    text-decoration: none;
    color: #000;
    margin: 24px 0;
}

.block-link:hover {
    display: block;
    text-decoration: none;
    color: #000;
    background: #eee;
    border-left: 8px solid #aaa;
    margin: 24px 0 24px -8px;
}

a, a:active, a:hover {
    color: #812173;
    cursor: pointer;
    text-decoration: none;
}

a:hover {
    color: #540f73;
    text-decoration: underline;
}

td {
    padding: 2px 6px;
    border-bottom: 1px solid #efefef;
}

.background-photo {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 250px;
    width: 100%;
    background: url('/images/background.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1;
    opacity: 0.6;
}

.doc-root {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    max-width: 1080px;
}

.sidebar {
    flex: 0 1 340px;
    padding: 20px;
    padding-top: 100px;
}

.sidebar .profile {
    -webkit-box-shadow: 3px 3px 15px -6px rgba(92,92,92,1);
    -moz-box-shadow: 3px 3px 15px -6px rgba(92,92,92,1);
    box-shadow: 3px 3px 15px -6px rgba(92,92,92,1);
}

.sidebar .header {
    text-align: center;
    margin-top: -25px;
    text-decoration: none;
    font-weight: bolder;
    color: #000;
    font-size: 0.7em;
    font-family: 'Josefin Sans', sans-serif;
    text-transform: uppercase;
}

.sidebar .menu {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
}

.sidebar .link.first {
    border: 0;
}

.sidebar .link {
    border-top: 1px solid #dcdcdc;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 900;
}

.sidebar .link a {
    padding: 12px 0 8px 0;
    display: flex;
    flex-direction: row;
    text-decoration: none;
    color: #008080;
}

.sidebar .link a:hover {
    background: #efefef;
}

.sidebar .link .icon {
    flex: 0 1 48px;
    text-align: right;
    padding-right: 12px;
}

.sidebar .link .icon i {
    margin: auto;
}

.sidebar .link .text {
    flex: 1 1 auto;
}

.sidebar .about {
    padding: 0 24px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12px;
    color: #555;
}

.sidebar .social {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar .social div {
    padding: 12px;
}

.sidebar .social i {
    color: #008080;
}

.sidebar .share-support {
    position: sticky;
    top: 200px;
    margin-top: 32px;
    padding: 24px;
}

.main {
    flex: 1 1 1000px;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.row {
    flex: 0 0 auto;
    margin: 5px 0 5px 0;
}

.row.post-snippet .row-title h2 {
    color: #812173;
}

.row.post-snippet .row-content p {
    margin: 0
}

.row.post-snippet .row-footer {
    padding: 5px;
}

.row-title {
    margin: 35px 0 0px 0;
}

.row.header {
    height: 230px;
    margin: 0 0 5px 0;
}

.row.header .row-content {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    font-weight: bolder;
    color: #fff;
}

.quote {
    display: block;
    margin: 8px;
    padding: 4px;
    background: #008080;
    -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.2);
}

.row-content {
    margin: 0 auto;
    padding: 6px;
    max-width: 1140px;
}

.columns-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 50px;
    gap: 50px;
}

.resume-position {
    display: flex;
}

.resume-position div {
    flex-direction: column;
    padding: 5px;
}

.resume-position .position {
    width: 270px;
}

.resume-position .position span.position-title {
    color: #812173;
    font-weight: 800;
}

.resume-position .position span.position-sub {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12px;
    color: #555;
}

.resume-position .summary {
    width: 70%;
}

.contacts {
    text-align: center;
    padding: 20px 0;
}

.contacts .fas, .contacts .fab {
    margin: auto 0.7rem;
    color: #812173;
}

.contacts .fas:hover, .contacts .fab:hover {
    color: #540f73;
    cursor: pointer;
}

.footer {
    text-align: center;
    flex: 0 0 auto;
    padding: 0 0 50px 0;
}

#profile-logo {
    height: 100px;
    margin-bottom: 20px;
}

.content-box {
    -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.2);
    border-radius: 3px;
}

.content-box:hover {
    -webkit-box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.2);
}

.link-box a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: unset;
}

.link-box h3 {
    margin: 8px 0;
}

.link-box img {
    width: 100%;
}

.content-box-content {
    padding: 8px;
}

.work-crop-box {
    height: 150px;
    overflow: hidden;
}


.share-buttons {
    display: inline-block;
    vertical-align: middle;
}

.share-buttons:after {
    content: "";
    display: block;
    clear: both;
}

.share-buttons>div {
    position: relative;
    text-align: left;
    height: 36px;
    width: 32px;
    float: left;
    text-align: center;
}

.share-buttons>div>a>svg {
    height: 16px;
    fill: #d5d5d5;
    margin-top: 10px;
}

.share-buttons>div:hover {
    cursor: pointer;
}

.share-buttons>div.facebook:hover>a>svg {
    fill: #3B5998;
}

.share-buttons>div.twitter:hover>a>svg {
    fill: #55ACEE;
}

.share-buttons>div.linkedin:hover>a>svg {
    fill: #0077b5;
}

.share-buttons>div.pinterest:hover>a>svg {
    fill: #CB2027;
}

.share-buttons>div.gplus:hover>a>svg {
    fill: #dd4b39;
}

.share-buttons>div.mail:hover>a>svg {
    fill: #7D7D7D;
}

.share-buttons>div.instagram:hover>a>svg {
    fill: #C73B92;
}

.share-buttons>div.facebook>a>svg {
    height: 18px;
    margin-top: 9px;
}

.share-buttons>div.twitter>a>svg {
    height: 20px;
    margin-top: 8px;
}

.share-buttons>div.linkedin>a>svg {
    height: 19px;
    margin-top: 7px;
}

.share-buttons>div.pinterest>a>svg {
    height: 20px;
    margin-top: 9px;
}

.share-buttons>div.gplus>a>svg {
    height: 17px;
    margin-top: 9px;
    position: relative;
    left: 1px;
}

.share-buttons>div.mail>a>svg {
    height: 14px;
    margin-top: 11px;
}

@media (max-width: 767px) {

    html, body {
        font-size: 18px;
    }

    .doc-root {
        display: block;
        width: 100%;
    }

    .sidebar {
        margin-top: 95px;
        padding: 20px;
    }

    .sidebar .profile {
        box-shadow: none;
    }

    .sidebar .about, .sidebar .social, .sidebar .header, .sidebar .head-bg, .sidebar .share-support {
        display: none;
    }

    .sidebar .menu .link {
        background-color: #fff;
        border: 0;
    }

    .sidebar .menu .link .text {
        font-size: 18px;
    }

    .sidebar .menu .link a {
        padding-right: 12px;
    }

    .sidebar .menu {
        margin: 0;
        flex-direction: row;
    }

    .main {
        width: 100%;
    }

    .main .header {
        display: none;
    }

    .columns-3 {
        grid-template-columns: 1fr;
    }

    .background-photo {
        height: 140px;
    }
    
}

template {
    display: none;
}

#form-sh {
    border-top: 2px solid #812173;
    padding: 8px 12px;
}

input, textarea {
    border: 1px solid #000;
    margin: 8px 0;
    padding: 5px;
}

textarea {
    width: 100%;
    height: 150px;
    resize: vertical;
}

input[type=submit] {
    padding: 8px;
    font-weight: 800;
    color: white;
    background-color: #008080;
    border: 0px;
}

label[for=privacy] {
    font-size: 12px;
}

.comment {
    padding: 8px 12px;
}

.comment > div {
    margin: 8px;
}

.comment-timestamp {
    font-size: 12px;
    color: #7D7D7D;
}

.comments-sh-submit-box {
    display: flex;
    flex-direction: row;
}

.comments-sh-submit-box > div {
    flex: 1 1 auto;
}