.hardware-banner {
    height: 15rem;
}

.hardware-banner .banner-title {
    font-size: 1.25rem;
}

.hardware-banner .banner-description {
    font-size: 0.75rem;
}

.hardware {
    max-width: 1300px;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 3rem;
}

.hardware-item {
    margin-bottom: 2rem;
}

.hardware-item-image-container {
    border: gray 0.5px solid;
    border-radius: 5px 5px 0 0;
}

.hardware-item-image {
    width: 100%;
}

.hardware-item-details {
    border: gray 0.5px solid;
    border-radius: 0 0 5px 5px;
    padding: 1rem;
}

.hardware-item-title {
    margin: 0;
    color: #28af60;
}

.hardware-lists {
    padding-left: 2rem;
}

.hardware-location {
    max-width: 1300px;
    margin-right: 1rem;
    margin-left: 1rem;
}

.hardware-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;
}

/* Tablet design */

@media(min-width: 768px) {
    .hardware-banner {
        height: 15rem;
    }

    .hardware-banner .banner-title {
        font-size: 1.25rem;
    }
    
    .hardware-banner .banner-description {
        font-size: 0.75rem;
    }

    .hardware {
        display: grid;
        grid-template-columns: auto auto;
        column-gap: 1rem;
    }

    .hardware-item-image {
        height: 15rem;
    }

    .how-to-get-here {
        display: grid;
        grid-template-columns: auto auto;
        grid-column-gap: 2rem;
    }
}

/* Desktop design */

@media(min-width: 992px) {
    .hardware-banner {
        height: 24rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hardware-banner .banner-title {
        font-size: 1.5rem;
    }
    
    .hardware-banner .banner-description {
        font-size: 1rem;
    }

    .hardware {
        grid-template-columns: auto auto auto;
        grid-column-gap: 3rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hardware-item {
        display: block;
        width: 100%;
    }

    .hardware-location {
        display: grid;
        grid-template-columns: auto auto;
        grid-column-gap: 2rem;
        margin-left: auto;
        margin-right: auto;
    }

    .how-to-get-here {
        display: block;
    }
}