/* ============================================
   H2 Products CTA Section Styles
   ============================================ */

/* Header Section */
.h2-products-cta-header {
    background: linear-gradient(180deg, #e5f2f3 55%, #d9edf3 100%);
}

.h2-products-cta-title {
    max-width: 80%;
    padding: 3rem 0;
    margin: auto;
    font-size: 3rem;
    font-weight: 700;
    color: #306379;
    line-height: 1.15;
    text-transform: uppercase;
    text-align: center;
}

.h2-products-cta-title .thin {
    display: block;
    font-weight: 400;
}

.h2-products-cta-intro {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 30rem;
}

.h2-products-cta-intro-col {
    width: 37rem;
    max-width: 90%;
    padding: 0 1rem;
}

.h2-products-cta-intro-col p {
    color: #306379;
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.h2-products-cta-intro-col p strong {
    font-weight: 600;
}

/* Products Grid */
.h2-products-cta-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin-top: -27rem;
}

/* Product Card */
.h2-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 37rem;
    max-width: 90%;
    margin: 0 1rem;
    justify-content: flex-start;
}

.h2-product-link {
    text-decoration: none;
    color: inherit;
    background: #FFFFFF;
    display: block;
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .15);
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.h2-product-introduction p {
    padding: 5%;
    background: #0a4d71;
    color: #fff;
    margin: 0;
    display: block;
    text-align: center;
    font-size: .9rem;
    transition: all 0.3s ease;
}

/* Product Image Wrapper */

.h2-product-image-wrapper {
    overflow: hidden;
}

.h2-product-image-wrapper img {
    width: 100%;
    transition: all 0.3s ease;
}

/* Product Badge */
.h2-product-badge {
    color: #a81705;
    text-transform: uppercase;
    display: block;
    text-align: center;
    margin-top: 2.5rem;
    font-weight: 600;
    font-size: 1.15rem;
}

/* Product Name */
.h2-product-name {
    display: flex;
    font-size: 1.5rem;
    font-weight: 700;
    background: #a81705;
    text-align: center;
    margin: -2.25rem auto;
    position: relative;
    width: 17rem;
    line-height: 1.15;
    max-width: 80%;
    padding: 2rem;
    border-radius: 3rem;
    border: .35rem solid #fff;
    color: #fff;
    transition: all .3s ease;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.h2-product-hover-hide,
.h2-product-hover-text {
    position: absolute;
}

.h2-product-hover-text {
    opacity: 0;
    font-weight: 500;
    font-size: 1.1rem;
}

.h2-product-link:hover .h2-product-hover-hide {
    opacity: 0;
    transition: all 0.3s ease;
}

.h2-product-link:hover .h2-product-hover-text {
    opacity: 1;
    transition: all 0.3s ease;
}

.h2-product-link:hover .h2-product-image-wrapper img {
    transform: scale(1.055);
    transition: all 0.3s ease;
}

.h2-product-link:hover {
    transform: scale(0.98);
    transition: all 0.3s ease;
}

.h2-product-link:hover .h2-product-introduction p {
    background: #a81705;
    padding: 2rem 1rem 2.5rem 1rem;
    transition: all 0.3s ease;
}

.h2-product-link:hover .h2-product-name {
    background: #0d5379;
    transition: all 0.3s ease;
}

.h2-product-icon {
    filter: hue-rotate(190deg) brightness(1.2) saturate(0.7);
}

.h2-product-link:hover .h2-product-icon {
    filter: hue-rotate(0deg) brightness(1) saturate(1);
}


/* Product Features */
.h2-product-features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 25rem;
    align-items: flex-start;
    margin: 0 auto 2.5rem auto;
    max-width: 80%;
}

.h2-product-feature {
    text-align: center;
    width: calc((100% / 3) - .25rem);
}

.h2-product-feature-text {
    font-size: .8rem;
    line-height: 1.15;
    color: #33375a;
}

.h2-product-feature-text strong {
    font-weight: 700;
}

/* Product Description */

.h2-product-description {
    padding: 3rem 5%;
}

.h2-product-description p {
    color: #314066;
    font-size: .85rem;
}

.h2-product-description p strong {
    font-weight: 600;
}

.h2-product-cert {
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.h2-product-cert-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.h2-product-cert-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: .5rem;
    color: #314066;
    font-size: .85rem;
    line-height: 1.25;
}

.h2-product-cert-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00aa66;
    font-weight: 700;
    font-size: 16px;
}

/* Product Button */
.h2-product-btn {
    display: inline-block;
    color: #0d5379;
    padding: 1rem 2.5rem;
    margin: 2rem auto 0 auto;
    border-radius: 2.5rem;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #0d5379;
    opacity: 1 !important;
}

.h2-product-btn:hover {
    background: #0d5379;
    color: #fff;
    border-color: #fff;
    opacity: 1 !important;
}