/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------- CSS for Desktop Devices --------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media only screen and (min-width: 1280px) {

    .products-text-container {
        z-index: 0;
        position: relative;
        height: fit-content;
        display: flex;
        flex-direction: column;
        width: 50%;
        max-width: 512px;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1279px) {

    .products-text-container {
        z-index: 0;
        position: relative;
        height: fit-content;
        display: flex;
        flex-direction: column;
        width: 512px;
        max-width: 512px;
    }
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------- CSS for Mobile Devices ---------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media only screen and (max-width: 768px) and (orientation: portrait) {
    
    .products-text-container {
        z-index: 0;
        position: relative;
        height: fit-content;
        display: flex;
        flex-direction: column;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------- CSS for Mobile Devices ---------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media only screen and (max-width: 768px) and (orientation: landscape) {
    
    .products-text-container {
        z-index: 0;
        position: relative;
        height: fit-content;
        display: flex;
        flex-direction: column;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
}