/*
====================================================================
1.0 HERO SECTION
====================================================================
 */
#home-hero {
    background-color: #00295b;
    padding: 160px 0 80px 0;
    background-size: cover;
    background-position: center center;
}

h1 {
    font-weight: 300;
}

h1 strong {
    font-weight: 700;
}

.hero-column {
    width: 33.33%;
    flex-basis: 33.33%;
    flex: 33.33%;
    padding: 10px 2px;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.hero-column a {
    height: 100%;
    width: 100%;
}

.hero-column-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.hero-column-image {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 400px;
    padding: 20px 20px 0 20px;
}

#hero-columns-row {
    margin-top: 50px;
}

.hero-column-image img {
    width: auto;
    height: auto;
    max-width: 100%;
}

.hero-column-text {
    padding: 30px 10px;
    margin-top: auto;
}

.hero-column-text p {
    margin-bottom: 0;
}

.hero-column a:hover {
    text-decoration-line: none;
}

.hero-column a:hover .hero-column-inner {
    margin-top: -10px;
}

.hero-column a:hover p {
    color: var(--blue);
}

@media (max-width: 1199.9px) {
    .hero-column-image {
        height: auto;

    }

    .hero-column-image img {
        max-height: 300px;
    }
}

@media (max-width: 767.8px) {
    .hero-column {
        width: 100%;
        flex-basis: 100%;
        padding: 10px 15px;
    }

    
}

@media (max-width: 575.8px) {
    .product-loop-inner {
        width: 320px;
        flex-basis: 320px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}