/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */ 
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 480px) {
    .our-knowledge {
        display: block !important;
    }
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .cart-summary {
        width: 100% !important;
        float: right !important;
        position: relative !important;
    }
    
    .form-cart {
        float: left !important;
        position: relative !important;
        width: 100% !important;
        margin-bottom: 40px !important;    }
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .cart-summary {
        width: 23% !important;
        float: right !important;
        position: relative !important;
    }
    
    .form-cart {
        float: left !important;
        position: relative !important;
        width: 73% !important;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}



/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
   
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    
    .our-knowledge {
        margin-left: 0px;
        margin-right: 0px;    
        width: 100%
    }
    .our-knowledge .savoir-faire {
        margin: 30px 0 0 0;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    
    .bottom-right-corner {
        bottom: -4px !important;
    }
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {

}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {

}