.garments {
    max-width: 1300px;
    margin: 0 1rem;
    margin-top: 2rem;
}

.garments-item {
    margin-bottom: 3rem;
}

.garments-item-image-container {
    border: gray 0.5px solid;
    border-radius: 5px 5px 0 0;
}

.garments-item-image {
    width: 100%;
    height: 12rem;
}

.garments-item-details {
    border-left: gray 0.5px solid;
    border-right: gray 0.5px solid;
    border-bottom: gray 0.5px solid;
    border-radius: 0 0 5px 5px;
    padding: 1rem;
}

.garments-item-title {
    margin: 0;
    color: #28af60;
    text-align: left;
}

.garments-item-description {
    margin: 0;
}

.garments-location {
    max-width: 1300px;
    margin-right: 1rem;
    margin-left: 1rem;
}

.garments-map-image {
    width: 100%;
}

.how-to-get-here-title {
    color: #28af60;
    margin: 0;
}

.directions {
    text-align: justify;
}

.contact-us-title {
    color: #28af60;
    margin: 0;
}

.phone-icon,
.website-icon,
.email-icon,
.facebook-icon {
    background-color: #015333;
    color: white;
    border-radius: 50%;
    padding: 0.25rem;
}

/* Mobile design landscape */

@media(min-width: 576px) {
    .garments-item-image {
        width: 100%;
        height: 16rem;
    }
}

/* Tablet Design */

@media(min-width: 768px) {
    .garments {
        display: grid;
        grid-template-columns: auto auto;
        column-gap: 1rem;
    }

    .how-to-get-here {
        display: grid;
        grid-template-columns: auto auto;
        grid-column-gap: 2rem;
    }
}

/* Desktop design */

@media(min-width: 992px) {
    .garments {
        grid-template-columns: auto auto auto auto;
        margin-left: auto;
        margin-right: auto;
    }

    .garments-item-details {
        height: 8rem;
    }

    .garments-location {
        display: grid;
        grid-template-columns: auto auto;
        grid-column-gap: 2rem;
        margin-left: auto;
        margin-right: auto;
    }

    .how-to-get-here {
        display: block;
    }
}
