/* Start Home */
.home {
    background-image: url(../../../../images/icon.png);
    background-color: var(--yellow);
    background-position: top;
    background-size: cover;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 50px;
}

.home .title h3 {
    font-weight: 400;
}

.home .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 80px;
}

.home .container .box {
    position: relative;
    min-height: 390px;
    width: 330px;
    border-radius: 10px;
    text-align: left;
    padding: 26px;
    overflow: hidden;
}

.home .container .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255, 111, 34);
    opacity: 41%;
}

.home .box .content {
    position: relative;
}

.home .job_title {
    margin-bottom: 30px;
}

.home .heading {
    color: var(--purple);
    font-size: 24px;
    line-height: 24px;
}
.home .job_title h4 {
    font-weight: 200;
}

.home .box .career {
    font-weight: bold;
    margin: 10px 0;
}

.home .box ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 1px;
}

.home .box ul li::before {
    content: "-";
    margin-right: 20px;
    position: absolute;
    left: 0;
}

.home .read_more {
    display: block;
    width: 100%;
    text-align: right;
    color: var(--white);
    text-decoration: underline;
    transition: 0.2s all;
}

.home .read_more:hover {
    color: var(--pink);
}

.home .box .btn {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}
/* End Home */


@media (max-width: 991px) {
    .home {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
/* End Responsive */