@charset "UTF-8";
/* CSS Document */

/* Three Keys Styles */
   
/* Product Support */
#threeKeysWrapper {
    width: 95%;
    min-height: 85vh;
    margin: 60px auto;
    box-sizing: border-box;
}
    
#ThreeKeysInnerWrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
    
#videoWrapTop {
    flex: 0 0 auto;
    width: 80%;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
}
#videoWrapTop p {
    padding: 25px;
}
    
.prodHolderWrap {
    flex: 0 0 auto;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: nowrap;
}
    
.prodHolder {
    flex: 1 1 auto;
    width: 30%;
    margin: 5px auto;
    padding: 10px 20px;
}
    
.prodHolder p {
    font-size: 1em;
    font-weight: 100;
}
    
.prodHolder img {
    height: 100px;
}
/* End of Product Support */
    
@media screen and (max-width: 768px) {    
#videoWrapTop {
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

}
    
@media screen and (max-width: 650px) {  
    
.prodHolderWrap {
    flex-wrap: wrap;
}
    
.prodHolder {
    width: 90%;
    margin: 5px 2% 5px 2%;
}
   
}