.about-section {
    padding: 1px;
}
.about-section .container {
    text-align: left;
}
.job {
    display: flex;
    align-items: flex-start;
    min-height: 300px;
    margin: 50px 0;
    gap: 50px;
}
.job .description {
    margin-bottom: 24px;
}
.job .image {
    width: 50%;
}
.job img {
    width: 100%;
    margin-bottom: 24px;
    max-height: 400px;
    object-fit: cover;
}
.job .content {
    width: 50%;
    padding: 20px 0;
}
.job .link {
    width: 150px;
    background: #83ba40;
    color: white;
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.job .link:hover {
    background-color: #749f41;
}
.job-empty {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.job-empty img {
    width: 250px;
    height: auto;
}
.pagination {
    align-items: center;
    justify-content: center;
}
.page-link {
    color: #83ba40;
}
.page-item.active .page-link {
    background-color: #83ba40;
    border-color: #83ba40;
}
.container-top .top-image {
    margin-bottom: 50px;
}
.container {
    padding: 0;
}
.right .image {
    margin-left: 30px;
}
@media only screen and (max-width: 1024px) {
    .about-section .container {
        max-width: 90%;
        width: 100%;
    }
}
@media only screen and (max-width: 768px) {
    .about-section .container {
        max-width: 90%;
    }
    .top-image {
        height: 200px;
    }
    .job {
        flex-direction: column;
        padding-bottom: 0;
        margin-bottom: 40px;
        gap: 0;
    }
    .right {
        flex-direction: column-reverse;
    }
    .job .image,
    .job .content {
        width: 100%;
    }
    .job img {
        max-height: 450px;
    }
    .job-wrapper {
        padding: 0;
    }
    .right .image {
        margin-left: 0;
    }
    .footer {
        position: relative;
    }
    .main-content {
        padding-bottom: 0;
    }
}
@media only screen and (max-width: 576px) {
    .job {
        margin-bottom: 24px;
    }
    .job img {
        margin-bottom: 0;
    }
    .job:not(:first-child) {
        margin-top: 0;
    }
}
