.div-box {
    padding: var(--div-padding);
    height: max-content;
}

.content-box {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.feature-box {
    justify-content: space-around;
    transform: translateY(-30%);
}

.info-box {
    justify-content: space-between;
    background-color: var(--primary-light);
}

.info-box .content {
    flex: 1;
}

.info-box img {
    border-radius: var(--radius);
    box-shadow: var(--shadows);
    height: 400px;
    object-fit: cover;
    object-position: center;
    flex: 1;
}

.info-box a {
    color: var(--primary-dark);
    font-weight: bold;
}

.card-box {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 30px;
}

.whats-new-box {
    background-color: var(--primary-light);
}

.contact-box {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;

    padding: 10px 0 30px 0;
}

.people-box {
    flex-direction: column;
    width: 100%;
}

/* RESPONSIVE PART */

/* Mobile devices */
@media screen and (max-width: 480px) {
    .content-box {
        flex-direction: column;
    }

    .feature-box {
        transform: translateY(0);
        gap: 1rem;
    }

    .info-box .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-box img {
        width: 100%;
    }
}

/* Mobiles, tablets Tablets */
@media screen and (min-width: 481px) and (max-width: 1024px) {
    .content-box {
        flex-direction: column;
    }
    
    .feature-box {
        transform: translateY(0);
        gap: 1rem;
    }

    .info-box .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-box img {
        width: 100%;
    }
}

/* Small laptops / large tablets */
@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .content-box {
        flex-direction: column;
    }
    
    .feature-box {
        transform: translateY(0);
        gap: 1rem;
    }
    
    .info-box .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-box img {
        width: 100%;
    }
}

/* Desktops */
@media screen and (min-width: 1367px) and (max-width: 1920px) {
    /* Desktop styles */
}

/* Large screens / TVs */
@media screen and (min-width: 1921px) {
    /* Ultra-wide or large display styles */
}

