.product-section .inner-container{
    display: flex;
    justify-content: space-between;
}
.product-section .inner-container .img-container{
    width: 43%;
    padding: 10px
}
.product-section .inner-container .img-container .img{
    width: 100%;
    height: 600px;
    border-radius: 10px;
}
.product-section .inner-container .content-container{
    width: 50%;
}


/* *************************** */
/*         Media Queries      */
/* ************************* */

/* Large laptop */
@media screen and (max-width: 1400px) {
}
/* Small laptop */
@media screen and (max-width: 1200px) {
}
/* Tablet */
@media screen and (max-width: 992px) {
}
@media screen and (max-width: 768px) {
}
/* Large mobile */
@media screen and (max-width: 576px) {
    .product-section .inner-container{
        flex-direction: column;
    }
    .product-section .inner-container .img-container{
        width: 100%;
        padding: 10px;
    }
    .product-section .inner-container .img-container .img{
        width: 90%;
        margin: auto;
        height: 200px;
        border-radius: 10px;
    }
    .product-section .inner-container .content-container{
        width: 100%;
    }
}
/* Small mobile */
@media screen and (max-width: 375px) {
}
@media screen and (max-width: 320px) {
}