section.features {
    padding: 0 var(--generalMarginLeft);
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;
}

.featuresTitle {
    text-align: center;
    width: 45%;
    font-size: 30px;
    font-weight: bold;
    margin-top: 40px;
    /* margin-top: calc(var(--upBarHeight) + 18px); */
    margin-bottom: 40px;
}

.featuresList {
    width: 100vw;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.featuresCard {
    margin: 0 15px;
    border-radius: 10px;
    width: 200px;
    height: 200px;
    background-color: white;
    /* filter: var(--shadowColor); */
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.featuresCard:hover {
    color: white;
    background-color: var(--emeraldColor);
    transform: translateY(-5px);
}

.featuresCardIcon {
    margin: 15px 15px 8px;
    width: 65px;
    height: 65px;
    border-radius: 5px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: left;
    background-size: 75%;
}

.featuresCardTitle,
.featuresCardDetail {
    font-size: 12px;
    margin-bottom: 8px;
    margin: 0 15px 8px;
}

.featuresCardTitle {
    font-weight: bold;
    text-align: left;
}

.featuresCardDetail {
    height: 60%;
    text-align: left;
    font-weight: 500;
    overflow: auto;
}

.recruitNow {
    margin-top: 25px;
}