#products1 {
    background: radial-gradient(#FFF, #BBB);
    padding: 5vh 5vw;
    border: 2px solid #999;
    box-shadow: 0 0 10px #555;
    min-height: 100vh;
    box-sizing: border-box;
    position: relative;
}
#products1 * {
    z-index: 1;
}
#products1 #background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
}
#products1 #background img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
#products1 h1 {
    padding: 5vh 0;
    margin: 0;
    text-align: center;
    position: relative;
}
#products1 > p {
    padding: 5vh 10%;
    margin: 0;
    text-align: center;
}
#products1 #product-row {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-around;
    position: relative;
}
#products1 #product-row .product {
    width: 80%;
    box-sizing: border-box;
    text-align: left;
    display: -webkit-box;
    display: flex;
    margin: 2vh 10%;
    z-index: 1;
    position: unset;
}
#products1 #product-row .product .img {
    -webkit-box-flex: 20%;
    flex: 20%;
    flex-grow: 0;
    flex-shrink: 0;
    align-self: center;
    padding: 10px;
    -o-object-fit: contain;
    object-fit: contain;
}
#products1 #product-row .product .img img {
    width: 20vw;
    height: 20vw;
    border-radius: 50%;
    border: 2px inset #be1f24;
    box-sizing: border-box;
}
#products1 #product-row .product .content {
    -webkit-box-flex: 80%;
    flex: 80%;
    flex-grow: 0;
    flex-shrink: 0;
    align-self: center;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}
#products1 #product-row .product .expanded {
    transform: scale(0);
    transition: 1s;
    position: absolute;
    left: 0;
    width: 100%;
    background: #FFF;
    box-shadow: 0 0 5px 2px inset #222;
    box-sizing: border-box;
    text-align: left;
    opacity: 1;
    display: -webkit-box;
    display: flex;
}
#products1 #product-row .product:hover {
    z-index: 100;
}
#products1 #product-row .product:hover .expanded {
    transform: scale(1);
}
#products1 #product-row .product .expanded .img {
    -webkit-box-flex: 20%;
    flex: 20%;
    flex-grow: 0;
    flex-shrink: 0;
    align-self: center;
    padding: 10px;
    -o-object-fit: contain;
    object-fit: contain;
}
#products1 #product-row .product .expanded .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    border: 5px outset #be1f24;
    border-radius: 0;
}
#products1 #product-row .product .expanded .content {
    -webkit-box-flex: 80%;
    flex: 80%;
    flex-grow: 0;
    flex-shrink: 0;
    align-self: center;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}
@media screen and (min-width: 768px) {
    #products1 #product-row .product {
        width: 40%;
        margin: 2vh 5%;
    }
    #products1 #product-row .product .img img {
        width: 10vw;
        height: 10vw;
    }
}
@media screen and (min-width: 992px) {
    #products1 > p {
        padding: 5vh 20%;
    }
    #products1 #product-row {
        padding: 5vh 5vw;
    }
    #products1 #product-row .product {
        width: 25%;
        margin: 2vh 4%;
    }
    #products1 #product-row .product .img img {
        width: 5vw;
        height: 5vw;
    }
}