*{
    padding: 0;
    margin: 0;
}

.location-Holder {
    margin-top: 3rem;
}

.location-Holder img {
    width: 50px;
    height: 40px;
}

.location-wrapper img {
    width: 60px;
    height: 60px;
}

.location-Holder .company-name {
    padding-bottom: 1rem;
}

.location-Holder .company-name span {
    font-size: 25px;
    color: grey;
}

.location-wrapper {
    gap: 1rem;
    display: grid;
    margin-top: 1rem;
    grid-template-columns: repeat(4, 1fr);
}

.location-card {
    padding: 1rem 0.5rem;
    display: flex;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    border: solid lightgrey 4px;
}

.location-card span {
    color: grey;
    font-weight: 600;
}

@media (max-width: 840px) {

    .location-Holder {
        margin-top: 2.5rem;
    }
    
    .location-Holder img {
        width: 50px;
        height: 40px;
    }
    
    .location-wrapper img {
        width: 55px;
        height: 55px;
    }

    .location-wrapper {
        gap: 2rem;
        display: grid;
        margin-top: 1rem;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .location-card {
        padding: 1rem;
        display: flex;
        border-radius: 20px;
        align-items: center;
        justify-content: center;
    }    
    
}

@media (max-width: 768px) {

    .location-Holder {
        margin-top: 2rem;
    }
    
    .location-Holder img {
        width: 40px;
        height: 30px;
    }
    
    .location-wrapper img {
        width: 45px;
        height: 45px;
    }


    .location-Holder .company-name span {
        font-size: 20px;
        color: grey;
    }


    .location-wrapper {
        gap: 1.5rem;
        display: grid;
        margin-top: 1rem;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-card {
        padding: 1rem;
        display: flex;
        border-radius: 20px;
        align-items: center;
        justify-content: center;
    }    
    
}

@media (max-width: 500px) {

    .location-Holder {
        margin-top: 2rem;
    }
    
    .location-Holder img {
        width: 40px;
        height: 30px;
    }
    
    .location-wrapper img {
        width: 50px;
        height: 50px;
    }


    .location-Holder .company-name span {
        font-size: 15px;
        color: grey;
    }

    .location-Holder p {
        font-size: 13px;
    }


    .location-wrapper {
        gap: 1.5rem;
        display: grid;
        margin-top: 1rem;
        grid-template-columns: repeat(1, 1fr);
    }
    
    .location-card {
        padding: 1rem;
        display: flex;
        border-radius: 20px;
        align-items: center;
        justify-content: center;
    }    
    
}