/**
* 2007-2024 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2024 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
#banner_oj {
    padding: 40px 2%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

#banner_oj .txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#banner_oj .image img {
    max-width: 100%;
    height: auto;
}

#banner_oj .txt .title {
    margin: 1.5rem 0;
}

#banner_oj .txt .description{
    margin: 0 3rem;
}

#banner_oj .txt .title p{
    font-size: 25px;
    font-weight: 700;
    color: #202944;
    text-align: center;
    margin-bottom: 6px;
}

#banner_oj .txt .description p{
    font-size: 16px;
    color: #202944;
    text-align: center;
}

@media (min-width: 767px) {
    #banner_oj .txt .description{
        margin: 0 10rem;
    }

    #banner_oj {
        padding: 100px 10%;
    }

    #banner_oj {
        flex-direction: row;
        align-items: center;
    }

    #banner_oj .image {
        width: 40%;
        display: flex;
        justify-content: end;
    }

    #banner_oj .txt {
        width: 60%;
        padding-left: 50px;
    }

    #banner_oj .txt .title p{
        font-size: 35px;
        margin-bottom: 1rem;
    }
}

