/*@import url('https://fonts.googleapis.com/css2?family=DM+Sans&family=Dancing+Script:wght@700&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Aclonica&family=DM+Sans:wght@400;700&family=Dancing+Script:wght@700&family=Open+Sans:wght@800&display=swap');

.cv-head {
    overflow: hidden;
    position: relative;
}
body {
    font-size: 14px;
}
* {
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease-in-out;
}
.cv-head .person-name {
    font-family: 'Dancing Script', cursive;
}
.cv-head .cv-head-background {
    width: 100%;
    opacity: 0.05;
    position: absolute;
    height: auto;
}
.cv-head .cv-head-container {
    background: white;
    padding: 50px;
}
.cv-person-image {
    height: 150px;
    flex-basis: 150px;
    flex-grow: 0;
    flex-shrink: 0;
    background: url("./assets/person.jpg") no-repeat center center;
    box-shadow: 0 0 25px rgba(100,100,100,1);
    background-size: cover;
    border-radius: 5px 30px;
    border: 3px solid white;
    overflow: hidden;
}
.cv-bar {
    background: rgba(0, 0, 0, 0.6);
}
.info-block {
    display: flex;
    justify-content: center;
    align-items: center;
}
.info-block .title {
    color: whitesmoke;
}
.info-block .svg-icon {
    width: 30px;
    max-height: 30px;
    margin-top: -5px;
}
.info-block .svg-icon img {
    width: 20px;
    height: 20px;
    filter: invert(1) sepia(1) saturate(25) hue-rotate(173deg) opacity(0.6);
}
.bar-link {
    text-decoration: none;
    color: inherit;
}
.bar-link:hover {
    color: inherit;
}
.main-content {

}

.aside-wrapper {
    position: relative;
}
.border-right-splitter {
    position: absolute;
    background-color: #9ab4c6;
    height: calc(100% - 15px);
    width: 2px;
    top: 0;
    right: 0;
}
@media screen and (max-width: 769px) {
    .border-right-splitter {
        display: none;
    }
}
.border-right-splitter .top,
.border-right-splitter .bottom {
    width: 16px;
    height: 16px;
    margin-left: -8px;
    left: 50%;
    background-size: 16px 16px;
    position: absolute;
}
.border-right-splitter .top {
    top: -15px;
}
.border-right-splitter .bottom {
    bottom: -15px;
}
.cv-section {
    font-family: 'DM Sans', sans-serif;
    margin-right: 20px;
    margin-left: 20px;
}
.cv-section .mega-title {
    font-size: 24px;
    font-weight: bolder;
    color: #9ab4c6;
    border-bottom: 2px solid #9ab4c6;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.cv-section .skill {
    color: white;
    background: #9ab4c6;
    border-radius: 5px;
    padding: 5px 15px;
    display: inline-block;
    margin-bottom: 5px;
}
.cv-section .mega-title .before {
    width: 30px;
    height: 30px;
    margin-top: -5px;
    /*filter: sepia(1) saturate(4) hue-rotate(173deg) opacity(0.6);*/
}

.cv-section .cv-section-content .title {
    font-weight: bolder;
    font-size: 120%;
}
.cv-section-content .highlight {
    background: #deeaf1;
    padding: 0 4px;
    border-radius: 3px;
}
.cv-section-content a.highlight {
    font-weight: bold;
    text-decoration: none;
    padding: 2px 7px;
    color: #5083a6;
}
a.inline {
    text-decoration: none;
    margin-right: 3px;
    color: #5083a6;
    font-weight: bold;
}

.cv-section .title a:not(.external) {
    text-decoration: none;
    font-family: 'Aclonica', sans-serif;
    color: #5083a6;
}
.cv-section .title a:not(.external):hover {
    color: #75aada;
}
a.external {
    margin-left: 10px;
    display: inline-block;
    background: url("./assets/icons/arrow-up-right-from-square.svg") no-repeat center center;
    width: 13px;
    height: 13px;
}
.cv-section-content.experience + .cv-section-content.experience {
    margin-top: 30px;
}
.cv-section-content.experience .title {
    margin-bottom: -4px;
    font-family: 'Aclonica', sans-serif;
    font-size: 130%;
}
.experience .sub-title {
    font-style: italic;
}
.experience .position {
    font-weight: bolder;
    font-family: 'Open Sans', sans-serif;
}
.experience .date-in {
    margin-top: -3px;
}
.experience .description {
    margin-top: 3px;
}
.experience .description:before {
    content: "";
    background: url("./assets/icons/feather-pointed.svg") no-repeat center center;
    background-size: contain;
    display: inline-block;
    width: 15px;
    height: 15px;
    position: relative;
    top: 4px;
    margin-right: 8px;
}

.experience ul.experience  {
    list-style: none;
    margin-top: 3px;
    padding-left: 0;
    position: relative;
}
.experience:not(.not-brackets) ul.experience:before,
.experience:not(.not-brackets) ul.experience:after  {
    content: "";
    border: 2px solid #adbeca;
    width: 8px;
    position: absolute;
    top: -1px;
    height: calc(100% + 5px);
}
.experience:not(.not-brackets) ul.experience:before {
    border-right: none;
    left: -15px;
}
.experience:not(.not-brackets) ul.experience:after  {
    border-left: none;
    right: -5px;
}
ul.experience li {
    display: flex;
}
ul.experience li span.experience-list-icon:before {
    content: "";
    background: url("./assets/icons/list-dot.svg") no-repeat center center;
    background-size: contain;
    display: inline-block;
    width: 15px;
    height: 15px;
    position: relative;
    top: 4px;
    margin-right: 8px;
}

.page-divider {
    height: 3px;
    margin-top: 35px;
    background: #adbeca;
}

.second-section {
    margin-bottom: 50px;
}
.a-contents {
    display: contents;
    color: #5083a6;
}
.rating-block {
    display: flex;
    align-items: center;
}
.rating-block + .rating-block {
    border-top: 1px solid rgba(192, 209, 221, 0.63);
    margin-top: 2px;
    padding-top: 2px;
}
.rating {
    flex-shrink: 0;
    margin-right: 5px;
    width: 20px;
    height: 20px;
}
.rating.signal {
    background: url("./assets/icons/signals/signal.svg") no-repeat center center;
}
.rating.signal-strong {
    background: url("./assets/icons/signals/signal-strong.svg") no-repeat center center;
}
.rating.signal-good {
    background: url("./assets/icons/signals/signal-good.svg") no-repeat center center;
}
.rating.signal-fair {
    background: url("./assets/icons/signals/signal-fair.svg") no-repeat center center;
}
.rating.signal-weak {
    background: url("./assets/icons/signals/signal-weak.svg") no-repeat center center;
}

.online-review-button {
    text-align: center;
    width: 100%;
    margin: 10px 0 0 0;
}
.online-review-button a {
    display: block;
    margin: 20px 15px 0 10px;
    padding: 10px 10px;
    border-radius: 5px;
    border: 1px solid;
    font-size: 110%;
    text-decoration: none;
    background: #e6eff4;
    color: #083f65;
    line-height: 1.3;
}
.online-review-button a:hover {
    border-radius: 5px;
    background: #c7dfea;
    color: #021e33;
}
.online-review-button .date {
    font-weight: bold;
}
.online-review-button .message.pdf {
    display: none;
}


@media only screen and (max-width: 768px) {

}

@media only screen and (max-width: 720px) {
    .cv-head .cv-head-background {
        width: 300%;
        opacity: 0.05;
        right: 0;
        position: absolute;
        height: auto;
    }
}

@media print {
    body {
        font-size: 12px;
    }
    * {
        font-family: 'DM Sans', sans-serif;
        font-size: 12px;
    }
    .cv-head .cv-head-container {
        padding: 20px 40px;
    }
    .cv-bar {
        padding: 8px 30px !important;
    }
    .cv-section .mega-title {
        /*padding-bottom: 5px;*/
    }
    .cv-section .mega-title .before {
        width: 20px;
        height: 20px
    }
    .cv-section {
        margin-right: 12px;
        margin-left: 12px;
    }
    .border-right-splitter {
        height: calc(100% - 9px);
        top: 10px;
    }
    .experience:not(.not-brackets) ul.experience:before {
        left: -10px;
    }
    .cv-section .skill {
        display: unset;
        padding: 0 !important;
        background: transparent;
        color: black;
        margin-left: 0;
    }
    .cv-section .skill:after {
        content: ", ";
    }
    .cv-section .skill:last-child:after {
        content: "";
    }
    .cv-section.mt-4 {
        margin-top: 10px;
    }
    .cv-section-content.experience + .cv-section-content.experience {
        margin-top: 10px;
    }
    .info-block {
        width: 24%;
    }
    .info-block .svg-icon {
        margin-top: 0;
        margin-right: -5px;
    }
    .info-block .svg-icon img {
        width: 15px;
        height: 15px;
        filter: invert(1) sepia(1) saturate(25) hue-rotate(173deg) opacity(0.6);
    }
    .first-section, .page-break {
        page-break-after: always;
    }
    .page-break-before {
        page-break-before: always;
    }
    .aside-wrapper {
        width: 33%;
    }
    .first-section .main-wrapper {
        width: 67%;
    }
    .experience ul.experience {
        margin-top: 10px !important;
    }
    .experience ul.experience:before,
    .experience ul.experience:after {
        margin-top: -3px;
    }
    ul.experience li span.experience-list-icon:before {
        margin-right: 4px;
        width: 12px;
        height: 12px;
        top: 0;
    }
    ul.experience li {
        line-height: 1.3;
    }
    .main-content .mega-title {
        font-size: 16px;
    }
    .cv-section .skill {
        padding: 3px 7px;
    }
    .page-divider {
        display: none;
    }

    .online-review-button a {
        display: block;
        margin: 15px 15px 0 10px !important;
        padding: 5px 5px;
        border-radius: 500px;
    }
    .online-review-button .message.website {
        display: none;
    }
    .online-review-button .message.pdf {
        display: inline;
    }
    .second-section .cv-section .two-column {
        padding: 5px;
        column-count: 2;
        column-gap: 40px;
        column-rule: 1px solid lightgrey;
    }

}

/*font-family: 'Aclonica', sans-serif;*/
/*font-family: 'Dancing Script', cursive;*/
/*font-family: 'DM Sans', sans-serif;*/
/*font-family: 'Josefin Sans', sans-serif;*/
/*font-family: 'Satisfy', cursive;*/