/* About Us Section */

.about-us {
    margin: 50px 0;
    padding: .5em 15%;
}

.about-us h1 {
    text-align: center;
    color: #00072d;
    margin-top: 1.5em;
    margin-bottom: .5em;
}

.about-us span {
    color: #FFBF00;
}

.seperator {
    width: 100px;
    height: 3px;
    background-color: #FFBF00;
    margin: .5em auto 1em auto;
}

@media (width < 800px) {
    .about-us {
        padding: 0 10%;
    }
}

/* Products */

.products {
    padding: 2em 10% 0 10%;
}

.product-card-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2em;
    width: 100%;
}

.product-card {
    width: 325px;
    overflow: hidden;
    margin: 1.25em;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 7, 45, .2);
}

.product-card img {
    width: 100%;
    height: auto;
}

.card-content {
    padding: 1em;
}

.card-content h3 {
    font-size: 1.6em;
    margin-bottom: .5em;
}

.card-content p {
    line-height: 1.3;
}

.card-content .btn {
    display: inline-block;
    padding: .5em 1em;
    background-color: #00072d;
    color: #fff;
    border-radius: 4px;
    margin-top: 1em;
}

.soon {
    display: inline-block;
    padding: .5em 1em;
    background-color: #00072d;
    color: #fff;
    border-radius: 4px;
    margin-top: 1em;
}

.products-title {
    text-align: center;
    color: #00072d;
}

/*  Contact Us */

.contact-us {
    padding: 2em 10% 4em 10%;
    width: 100%;
    background-color: #00072d;
}

.wrapper {
    width: 95%;
    max-width: 600px;
    margin: 0 auto;
}

.contact-us h1 {
    text-align: center;
    margin: 2em 0 1em 0;
    color: #fff;
}

.info-wrapper {
    margin-top: 2em;
}

.contact-info {
    color: #fff;
    padding: 5px 0;
    line-height: 2;
    font-weight: bold;
}

.contact-info span {
    color: #FFBF00;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}