#product .row {
    max-width: 90vw;
    margin: 5rem auto 0;
    width: 100%;
    position: relative;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
#product .row .gallery{
    width: 40%;
}
#product .row .gallery .photo{
    aspect-ratio: 16/16;
    width: 100%;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    -moz-background-size: cover;
      -o-background-size: cover;
         background-size: cover;
}
#product .row .info{
    width: 60%;
    padding-left: 5%;
}
#product .row .info h2{
    font-size: 1.375rem;
    line-height: 1.625rem;
}
#product .row .info h2 span{
    color: #CED4DA;
    text-decoration: line-through;
    margin-right: 1rem;
}
#product .row .info button{
    margin: 1rem 0 2rem;
    text-transform: uppercase;
}
#product .row .info button i{
    font-style: normal;
    font-size: 1.25rem;
    margin-right: .5rem;
    vertical-align: middle;
}
#product .row .text {
    width: 100%;
    margin-top: 3rem;
    border-bottom: 1px solid #CED4DA;
    padding-bottom: 2rem;
    margin-bottom: 3rem;
}
#products{
    width: 100%;
    margin-bottom: 5rem;
}
#products .row{
    max-width: 90vw;
    margin: 0 auto;
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: end;
       -moz-box-align: end;
        -ms-flex-align: end;
                -ms-grid-row-align: end;
            align-items: end;
}
#products .row h4 {
    width: 100%;
    margin: 1rem 0 3rem;
    text-align: center;
}
#products .card{
    width: 33%;
    padding: 0 2rem 2rem;
    text-align: center;
}
#products .card a{
    border: 0;
    padding: 0;
    margin: 0;
}
#products .card a img{
    max-width: 70%;
}
#products .card a h6{
    margin: 1rem 0;
}
#products .card a p{
    color: #CED4DA;
}
#products .card button{
    background-color: #CED4DA;
    border: 1px solid #CED4DA;
    color: #333333;
    margin-top: 1rem;
    width: 100%;
    text-transform: uppercase;
}
#products .card button i{
    font-style: normal;
    font-size: 1.25rem;
    margin-right: .5rem;
    vertical-align: middle;
}
@media screen and (max-width: 980px){
    #products .card {
        width: 50%;
    }
    #products .card:nth-child(3){
        display: none;
    }
    #product .row {
        max-width: 92vw;
        margin: 2rem auto 0;
    }
    #product .row .gallery {
        width: 100%;
        padding: 0 2rem 2rem;
    }
    #product .row .info, #product .row .text {
        width: 100%;
        padding-left: 5%;
    }
}
@media screen and (max-width: 720px){
    #products .card {
        width: 100%;
        padding: 0 0rem 2rem;
    }
    #products {
        margin-bottom: 1rem;
      }
}