body {
    max-width: 100vw;
    min-height: 100vh;
    width: 100%;
    height: 100%;
    background-color: rgba(196, 196, 196, .1);
    font-size: 24px !important;
    overflow: hidden;
    scroll-behavior: smooth;

}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
    border-radius: 5px;
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

a {
    color: #000;
    text-decoration: none !important;
}

ul {
    list-style: url(../media/icon/check-solid.svg);
}

/* ----------------------------- */

.content-wrapper {
    height: 80vh;
    overflow: hidden;
    padding: 30px;
    border-radius: 22px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, .5);
}

.content-wrapper::before {
    content: "";
    background: linear-gradient(141deg, rgb(60, 209, 219), rgb(195, 226, 55));
    opacity: .3;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    right: 0;
    bottom: 0;
}

.middle {
    display: block;
    margin: auto;
}

.personal-info {
    border-right: 2px solid rgba(196, 196, 196, 1);
}

.profile-picture {
    width: 50%;
    border-radius: 50%;
    margin: auto;
    border: 5px solid #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, .5);
}

.name {
    margin: auto;
    font-size: 1em;
    color: #00166e;
}

.icon {
    width: .8em;
    margin-right: 10px;
}

.row-info {
    margin-bottom: 3%;
    padding-left: 10%;
}

.info {
    margin-bottom: 0;
    font-size: 0.7em;
}

.social-links {
    margin: auto;
    width: 40px;
    height: 40px;
    display: block;
}

.social-links-icon {
    width: 100%;
    height: 100%;
    transition: all 0.1s;
    -moz-transition: all 0.1s;
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
}

.social-links-icon:hover {
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

[class|="button"] {
    width: 100%;
    background: linear-gradient(141deg, rgb(153, 248, 255), rgb(230, 236, 136));
    font-size: 1.2em;
    box-sizing: border;
    font-weight: bold;
    color: #000;
    border: 2px solid #fff;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    border-radius: 8px;
    cursor: pointer;
}

.button:hover {
    border-color: transparent;
    background: transparent;
}

[class|="button"]::after {
    content: "";
    width: 70%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0) scale(0);
    -moz-transform: translate(-50%, 0) scale(0);
    -webkit-transform: translate(-50%, 0) scale(0);
    -ms-transform: translate(-50%, 0) scale(0);
    -o-transform: translate(-50%, 0) scale(0);
    transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    -webkit-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    -o-transform-origin: 0 100%;
    background: #000;
    transition: all 0.75s;
    -moz-transition: all 0.75s;
    -webkit-transition: all 0.75s;
    -o-transition: all 0.75s;
}

.button:hover::after {
    transform: translate(-50%, 0) scale(1);
    -moz-transform: translate(-50%, 0) scale(1);
    -webkit-transform: translate(-50%, 0) scale(1);
    -ms-transform: translate(-50%, 0) scale(1);
    -o-transform: translate(-50%, 0) scale(1);
}

.button-active {
    color: #fff;
    border-color: #fff;
    background: transparent;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.button-active::after {
    content: "";
    width: 20px;
    height: 18px;
    position: absolute;
    left: 50%;
    bottom: 0;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: #fff;
    transform: translate(-50%, 100%) scale(1);
    -moz-transform: translate(-50%, 100%) scale(1);
    -o-transform: translate(-50%, 100%) scale(1);
    -webkit-transform: translate(-50%, 100%) scale(1);
    -ms-transform: translate(-50%, 100%) scale(1);
}

.section-wrapper {
    height: 85%;
    overflow-y: auto;
    border-top: 2px solid #fff;
    padding: 10px 10px;
}

.section {
    position: absolute;
    margin-right: 0 !important;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
}

.section-hidden {
    transform: scale(0);
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
}

.title {
    font-size: 1.2em;
    font-weight: 500;
    color: #1b3bbc;
}

.checked {
    color: rgb(255, 166, 0);
}

.image-box {
    width: 100%;
    position: relative;
    padding-top: 25%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    transition: all 0.25s;
    -moz-transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
}

.image-box:hover {
    opacity: 0.7;
}

.personal-image {
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.post {
    width: 100%;
    margin-bottom: 20px;
}

.post-title {
    background: rgba(204, 141, 6, 0.8);
    border-radius: 4px;
    margin: 0 0 5px 0 !important;
    color: #fff;
    font-size: 1.1em;
    display: flex;
    padding: 0 10px;
    cursor: pointer;
}

.post-title div:first-child {
    padding: 0 !important;
    margin: auto 0 !important;
    word-break: break-all;
}

.post-title div:last-child {
    float: right;
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    margin: auto;
}

.post-content {
    font-size: 0.85em;
    text-align: justify;
    padding: 0 20px;
    font-weight: 400;
}

.post-content p {
    margin-bottom: 0.5em;
    ;
    line-height: 1.2em;
}

.post-img {
    width: 100%;
    margin: 15px 0;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 70vw;
    height: 90vh;
    background-position: center;
    background-size: contain;
    background-color: transparent !important;
    background-repeat: no-repeat;
}

.modal-content {
    animation-name: zoom;
    animation-duration: 0.5s;
}

.modal-close {
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    top: 20px;
    right: 35px;
    cursor: pointer;
    z-index: 1;
}

.close {
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    border-radius: 1px;
    background-color: #fff;
    opacity: 1 !important;
    transition: 0.3s;
}

#modalClose:hover .close,
#modalClose:focus .close {
    text-decoration: none;
    cursor: pointer;
}

/* --------------------------- */
#particles-js {
    width: 100vw;
    z-index: 0 !important;
    top: 0;
    left: 0;
    position: absolute;
    height: 100vh;
}