.who-makes {
    background-color: var(--second-background-lo);
    height: 700px;
    align-items: center;
    justify-content: space-around;
}

.who-makes-card {
    display: flex;
    flex-direction: column;
}

.who-makes-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--third-gray);
    width: 290px;
    height: 385px;
    border-radius: 50px;
}

.who-makes-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}

.who-makes-card-name {
    font-family: 'Montserrat';
    color: var(--main-background);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-width: 270px;
    height: 170px;
    background-color: var(--third-gray);
    border-radius: 40px;
    position: relative;
    left: 50px;
    bottom: 80px;
    box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
}

.who-makes-card-name h2 {
    font-size: 22.5px;
    font-weight: 900;
}

.who-makes-card-name p {
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 980px) {
    .who-makes {
        padding: 70px 70px 0;
        height: auto;
        flex-direction: column;    
    }

    .who-makes-card {
        align-items: center;
    }

    .who-makes-card-name {
        width: 100px;
        left: 0;
    }
}