.section {
    margin-bottom: 80px;
}

.overview-content--intro img {
    width: 200px;
    padding: 10px;
    float: right;
}

.application--cards {
    display: grid;
    gap: 40px;
    justify-content: center;
    grid-template-columns: repeat(3, minmax(100px, 300px));
}

.app--card-img img {
    max-height: 170px;
    height: 100%;
    width: 100%;
}

.app--card-title {
    margin-top: 10px;
    text-align: center;
}

.app--card-description {
    text-align: center;
}

.portfolio--boxes {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
}

.portfolio-box {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portfolio-box img {
    width: 100%;
    max-width: 300px;
    display: flex;
    margin: auto;
    max-height: 170px;
    margin-bottom: 15px;
}

.portfolio-box h3 {
    margin-top: 10px;
}

.portfolio-box a {
    color: #03234b;
    background: #ffd200;
    display: flex;
    width: auto;
    text-align: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 10px 0;
    font-weight: bold;
    margin: auto;
}

.benefits-box {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: 30px;
    background: #03234b;
    padding: 50px;
}

.benefits-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
}

.benefits-col img {
    height: 100px;
    margin: 0 auto 20px;
    filter: brightness(0) invert(1);
}

.benefits-col h4 {
    color: #fff;
}

.benefits-box {
    margin-bottom: 50px;
}

.benefits-box:last-child {
    margin-bottom: 0;
}

.section h2 {
    margin-bottom: 30px;
}

@media (max-width: 640px){
    .application--cards {
        grid-template-columns: repeat(1, minmax(100px, 360px));
    }

    .portfolio--boxes {
        flex-direction: column;
        align-items: center;
    }

    .benefits-box {
        grid-template-columns: repeat(1, minmax(150px, 1fr));
    }

    .portfolio-box {
        width: 100%;
    }

    .overview-content--intro img {
        width: 140px;
        padding-right: 0px;
    }
}