/* input(3,40): run-time error CSS1038: Expected hex color, found '#0000'
input(3,65): run-time error CSS1038: Expected hex color, found '#0000'
input(3,98): run-time error CSS1038: Expected hex color, found '#0000'
input(3,122): run-time error CSS1038: Expected hex color, found '#0000'
input(3,155): run-time error CSS1038: Expected hex color, found '#0000'
input(3,180): run-time error CSS1038: Expected hex color, found '#0000'
input(3,239): run-time error CSS1038: Expected hex color, found '#0000'
input(3,263): run-time error CSS1038: Expected hex color, found '#0000' */
#groupCerts {
    color: white;
    background: linear-gradient(-45deg,#0000 1.3%,#015280 0 32%,#0000 0), linear-gradient( 45deg,#0000 48%,#015885 0 52%,#0000 0), linear-gradient( 45deg,#0000 1.3%,#015280 0 32%,#0000 0) calc(88px/2) calc(88px/2), linear-gradient(-45deg,#0000 48%,#015885 0 52%,#0000 0) #015280;
    background-size: calc(2*88px) 88px,88px 88px;
}

.group-certs {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 6rem;
}

.group-certs > .card img {
    aspect-ratio: 5/7;
    max-width: 100%;
    margin-bottom:1rem;
}
.group-certs > .card {
    transition: all .3s linear;
}
.group-certs > .card:hover {
    transform: scale(1.1);
}
.group-certs > .card > h4 {
    margin: 0;
}
@media screen and (max-width:992px){
    .group-certs {
        grid-template-columns: repeat(2,1fr);
        gap: 3rem;
    }
}
.group-banner {
    position:relative;
    display: flex;
    flex-direction: row;
    background-color: var(--logo-light);
}

.group-banner > .image {
    width: 75%;
    align-self: flex-start;
    margin-left: auto;
    margin-right: initial;
    max-width:1200px;
}
.group-banner > .image img{
    display:block;
    object-fit:cover;
    object-position:center;
    max-height:685px;
}

.group-banner > .content {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 500px;
}
.group-banner > .content > .pad {
    background-color: rgba(255, 255, 255, .9);
    padding: 3rem;
    box-shadow: 3px 3px 7px -1px rgba(1, 82, 128, .8);
    color:black;
}
@media screen and (max-width:992px) {
    .group-banner {
        position: initial;
        display: block;
        padding-bottom: 1rem;
    }
    .group-banner > .content {
        position: initial;
        max-width: 100%;
        transform:none;
    }
    .group-banner > .image {
        width: 100%;
    }
    .group-banner > .content > .pad {
        padding: 0;
        box-shadow:none;
        padding-left:.75rem;
        padding-right:.75rem;
        background-color:transparent;        
    }
}
.productsGrid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 3rem;
}

.productsGrid picture > img {
    object-fit: cover;
    aspect-ratio: 1/1;
    max-width: 100%;
    max-height: 100%;
    filter: brightness(97%);
}

.productsCard > a {
    display: block;
}

.pictureBox > picture:last-child {
    display: none;
}

.pictureBox:hover > picture:first-child {
    display: none;
}

.pictureBox:hover > picture:last-child {
    display: initial;
}

.productsGrid .single {
    overflow: hidden;
}

.productsGrid .single img {
    transition: all .4s linear;
}

.productsGrid .single:hover img {
    transform: scale(1.1);
}

.productsCard > .content > h3 {
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}
.productsCard > .content a{
    text-decoration:none;
    color:black;
}
.productsCard > .content > small {
    font-weight: 400;
    letter-spacing: -.2px;
}
@media screen and (max-width:992px){
    .productsGrid {
        grid-template-columns: 1fr;
    }

}
