.thumbnail {
    margin: 2.5rem 5rem;
    height: 346px;
    position: relative;
    margin-bottom: 1rem
}

.thumbnail img {
    width: 100%;
    height: 100%;
    z-index: -11;
    border-radius: 5px;
}

.thumbnail::after {
    position: absolute;
    content: "ABOUT US";
    color: #fff;
    z-index: 100;
    top: 50%;
    left: 50%;
    font-weight: 600;
    font-size: 64px;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transform: translate(-50%, -50%);
}

.container-box .header {
    font-weight: 600;
    font-size: 34px;
    line-height: 51px;
    text-transform: capitalize;
    color: #222222;
    margin-bottom: 1rem
}

.container-box .description {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    text-align: justify;
    color: #494646;
}

/* Values */

.values .flex{
    justify-content: space-around;
}

.values .box {
    width: 550px;
    height: 297px;
    background: #FFFFFF;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 2rem;
    padding: 2rem;
    overflow: hidden;
}

.values .box h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 36px;
    color: #BF6A4B;
    margin: 0.5rem 0;
}

.values .box p {
    font-weight: 500;
    font-size: 15px;
    text-align: justify;
    color: #111111;
    letter-spacing: -0.4px;
    line-height: 24px;
    height: 120px;
    overflow: hidden;
}



@media (max-width: 1200px) {
    .thumbnail {
        margin: 2.5rem 3rem;
        height: 300px;
    }

    .thumbnail img {
        object-fit: cover;
    }

    .thumbnail::after {
        font-size: 55px;
    }

    .container .header {
        font-size: 30px;
    }

    /* Values */

    .values .box:nth-of-type(odd) {
        margin-right: auto;
    }

    .values .box:nth-of-type(even) {
        margin-left: auto;
    }

}


@media (max-width: 698px) {
    .thumbnail {
        margin: 1.5rem 1rem;
        height: 150px;
    }

    .thumbnail::after {
        font-size: 30px;
    }

    .container .header{
        margin-bottom: 0.5rem;
    }

    .container .description {
        font-size: 14px;
    }

    /* Values */

    .values .box:nth-of-type(odd) {
        margin-right: inherit;
    }

    .values .box:nth-of-type(even) {
        margin-left: inherit;
    }

}