@import url('https://fonts.googleapis.com/css2?family=Agbalumo&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Start Global View */
:root {
    --color-0: #F3F3F3;
    --color-1: #EEEEEE;
    --color-2: #393E46;
    --color-3: #222831;
    --color-4: #7BC74D;
    --color-5: #D0D4CA;
    --color-6: #5BB318;
    --color-7: #E9E8E8;
    --color-8: #E0E0E0;
}

body {
    background-color: var(--color-0);
    color: var(--color-2);
    font-family: 'Roboto', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.font-title {
    font-size: 2.25rem;
    font-weight: 700;
}

.font-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
}

.font-item {
    font-size: 1.125rem;
    font-weight: 500;
}

.bold {
    font-weight: 500;
}

.lighter {
    font-weight: 300;
}

/* End Global View */
/* Start Header */
header {
    color: var(--color-1);
    width: 100%;
    position: fixed;
    z-index: 1000;
    background-color: var(--color-3);
}

header .header-container {
    max-width: 1200px;
    min-height: 75px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* brand */
.header-container .logo {
    cursor: pointer;
}

.header-container .logo img {
    margin-right: 5px;
    height: 35px;
}

.header-container .logo .logo-content a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.logo .logo-content .logo-text {
    text-align: left;
}

.logo-content .logo-text .text-title {
    font-size: 25px;
    font-family: 'Agbalumo', sans-serif;
    font-weight: 500;
    color: var(--color-1);
}

.logo-content .logo-text .text-subtitle {
    margin-top: 2px;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    color: var(--color-5);
}

/* End Header */
/* Start  Main */
/* Start Breadcrumbs Section */
#breadcrumbs-section {
    padding: 90px 0 15px;
}

.container .breadcrumbs-wrapper {
    background-color: var(--color-1);
    box-shadow: 0 0 3px var(--color-5);
    padding: 10px 36px;
}

.breadcrumbs .breadcrumbs-item {
    font-size: 13px;
}

.breadcrumbs .breadcrumbs-item li {
    display: inline;
    line-height: 1.4;
}

.breadcrumbs .breadcrumbs-item li a {
    text-decoration: none;
    color: var(--color-2);
}

.breadcrumbs .breadcrumbs-item li a:hover {
    color: var(--color-6);
}

.breadcrumbs .breadcrumbs-item li .fa-solid.fa-angles-right {
    margin: 0 2px;
    font-size: 8px;
}

.breadcrumbs .breadcrumbs-item li span {
    color: var(--color-6);
}

/* End Breadcrumbs Section */

/* Start Activity Section */
#activity-section {
    padding: 0 0 60px;
}

/* activity wrapper */
.container .activity-wrapper {
    background-color: var(--color-1);
    box-shadow: 0 0 3px var(--color-5);
    padding: 30px;
}

/* activity title */
.activity-wrapper .activity-title {
    background-color: var(--color-3);
    padding: 30px 36px;
    margin: 0 0 10px;
    color: var(--color-1);
    border-bottom: 4px solid var(--color-4);
    border-radius: 5px;
}

.activity-wrapper .activity-title h1 {
    line-height: 1.4;
    margin-bottom: 6px;
}

.activity-title .activity-profile-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.activity-title .activity-profile-container .activity-profile-img img {
    max-width: 100%;
    margin-right: 12px;
}

.activity-title .activity-profile-container .activity-profile-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.activity-title .activity-profile-container .activity-profile-text .activity-author {
    color: var(--color-4);
    font-weight: bold;
}

.activity-title .activity-profile-container .activity-profile-text .activity-author a {
    text-decoration: none;
    color: inherit;
}

.activity-title .activity-profile-container .activity-profile-text .activity-calendar {
    font-size: 14px;
    color: var(--color-8);
}

/* job description */
.activity-wrapper .job-desc {
    margin: 20px 0;
    box-shadow: 0 0 8px var(--color-5);
    border-radius: 0 0 5px 5px;
}

.activity-wrapper .job-desc .job-desc-title {
    background-color: var(--color-6);
    color: var(--color-0);
    padding: 5px;
    border-radius: 5px 5px 0 0;
    margin-top: 25px;
}

.activity-wrapper .job-desc .job-desc-title h3 {
    margin: 0 8px;
}

/* job data */
.activity-wrapper .job-desc .job-data {
    padding: 20px 30px;
}

/* job table */
.activity-wrapper .job-desc .job-data .job-table table {
    width: 100%;
    border-collapse: collapse;
}

.job-data .job-table table td {
    padding: 5px;
    line-height: 1.4;
}

.job-data .job-table table td:first-child {
    font-weight: 500;
    width: 20%;
}

.job-data .job-table table td:nth-child(2) {
    width: 1%;
}

.job-data .job-table table td:nth-child(3) {
    width: 79%;
}

/* activity text */
.activity-wrapper .activity-text {
    margin: 20px 0;
    box-shadow: 0 0 8px var(--color-5);
    border-radius: 0 0 5px 5px;
}

/* text title */
.activity-wrapper .activity-text .text-title {
    background-color: var(--color-6);
    color: var(--color-0);
    padding: 5px;
    border-radius: 5px 5px 0 0;
    margin-top: 25px;
}

.activity-wrapper .activity-text .text-title h3 {
    margin: 0 8px;
}

.activity-wrapper .activity-text .text-data {
    padding: 25px 38px;
}

.activity-wrapper .activity-text .text-data h2 {
    text-align: center;
    margin-bottom: 22px;
    line-height: 1.4;
}

.activity-wrapper .activity-text .text-data p {
    margin: 10px 0;
    line-height: 1.4;
}

/* spec database */
.text-data .spec-database {
    margin-bottom: 15px;
}

/* spec table */
.text-data .spec-database .spec-table table {
    width: 90%;
    margin: 0 auto;
}

.spec-database .spec-table table th,
.spec-database .spec-table table td {
    padding: 8px;
    line-height: 1.4;
    cursor: pointer;
}

.spec-database .spec-table table th {
    background-color: var(--color-8);
    border: 1px solid var(--color-5);
    color: var(--color-3);
}

.spec-database .spec-table table td {
    background-color: var(--color-7);
    color: var(--color-2);
    font-size: 15px;
    border: 1px solid var(--color-5);
    text-align: center;
    vertical-align: middle;
}

.spec-database .spec-table table tr:hover td {
    background-color: var(--color-6);
    border-left: 1px solid var(--color-6);
    border-right: 1px solid var(--color-6);
    color: var(--color-1);
}

.spec-database .spec-table table td ul li {
    margin: 4px 0;
    line-height: 1.4;
}

/* activity image */
.activity-wrapper .activity-image {
    margin: 20px 0 0;
    box-shadow: 0 0 8px var(--color-5);
    border-radius: 0 0 5px 5px;
}

/* image title */
.activity-wrapper .activity-image .image-title {
    background-color: var(--color-6);
    color: var(--color-0);
    padding: 5px;
    border-radius: 5px 5px 0 0;
    margin: 25px 0 20px;
}

.activity-wrapper .activity-image .image-title h3 {
    margin: 0 8px;
}

.activity-image .image-data {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 5px 0 30px;
}

.activity-image .image-data .image-card {
    display: flex;
    flex-direction: column;
    width: 250px;
    background-color: var(--color-1);
    border: 1px solid var(--color-5);
    border-radius: 3px;
    margin: 10px;
}

/* post image */
.image-data .image-card .post-img img {
    max-width: 100%;
    border-radius: 3px;
}

.image-data .image-card .post-img img:hover {
    cursor: zoom-in;
    opacity: .8;
}

/* post content */
.image-data .image-card .post-content {
    padding: 0 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-data .image-card .post-content .post-date {
    font-size: 14px;
    position: relative;
    background: var(--color-1);
    padding: 8px;
    top: -18px;
    display: inline;
    width: 80%;
    border: 1px solid var(--color-5);
    box-shadow: 0px 0px 3px var(--color-5);
    border-radius: 3px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.image-card .post-content .post-date .post-date-calendar {
    padding-right: 5px;
}

.image-card .post-content .post-date .post-date-image {
    padding-left: 5px;
}

/* explaination */
.image-data .image-card .post-content .post-explaination {
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    font-weight: 500;
}

/* modal container */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #292929;
    z-index: 1500;
    overflow: auto;
}

/* modal content */
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1px;
    max-width: 1200px;
    width: 85%;
    overflow-y: auto;
}

.modal-content img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.modal-content img:hover {
    cursor: zoom-out;
}

/* End Activity Section */
/* End  Main */

/* Start Footer */
footer a {
    text-decoration: none;
    color: var(--color-1);
}

footer a:hover {
    text-decoration: none;
    color: var(--color-4);
}

/* Start Bottom Area */
footer .footer-bottom-area {
    background-color: var(--color-3);
    color: var(--color-1);
    text-align: center;
    padding: 20px;
}

footer .footer-bottom-area .bottom-area-wrapper .footer-copyright p {
    font-size: 14px;
}

/* End Bottom Area */
/* End Footer */

/* Start Button To Top */
#scroll-to-top {
    display: none;
    position: fixed;
    bottom: 58px;
    right: 20px;
    background-color: var(--color-4);
    color: var(--color-0);
    border: none;
    border-radius: 50%;
    padding: 14px;
    font-size: 16px;
    cursor: pointer;
}

#scroll-to-top:hover {
    background-color: var(--color-6);
}

/* End Button To Top */

/*  responsive for 1200px  */
@media (max-width: 1200px) {

    /* Start Header */
    header .header-container {
        width: 95%;
    }

    /* End Header */

    /* Start Breadcrumbs Section */
    .breadcrumbs-section .container {
        width: 95%;
    }

    /* End Breadcrumbs Section */

    /* Start Activity Section */
    /* activity wrapper */
    .activity-section .container {
        width: 95%;
    }

    /* End Activity Section */

}

/* responsive for 992px */
@media (max-width: 992px) {

    /* Start Global View */
    .font-title {
        font-size: 2.125rem;
        font-weight: 500;
    }

    /* End Global View */

    /* Start Activity Section */
    /* job description */
    .job-data .job-table table td:first-child {
        width: 27%;
    }

    .job-data .job-table table td:nth-child(3) {
        width: 72%;
    }

    /* End Activity Section */
}

/* responsive for 767px */
@media (max-width: 767px) {

    /* Start Activity Section */
    /* job description */
    .job-data .job-table table td:first-child {
        width: 30%;
    }

    .job-data .job-table table td:nth-child(3) {
        width: 69%;
    }

    /* End Activity Section */
}

/* responsive for 600px */
@media (max-width: 600px) {

    /* Start Global View */
    .font-title {
        font-size: 2rem;
        font-weight: 500;
    }

    /* End Global View */
}

/* responsive for 500px */
@media (max-width: 500px) {

    /* Start Global View */
    .font-title {
        font-size: 1.875rem;
        font-weight: 500;
    }

    /* End Global View */

    /* Start Activity Section */
    /* activity text */
    .spec-database .spec-table table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
        border-top: none;
    }

    /* End Activity Section */

    /* Start Footer */
    /* Start Bottom Area */
    footer .footer-bottom-area {
        line-height: 1.4;
    }

    /* End Bottom Area */

    /* End Footer */
}