/**
* 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 {
    display: flex;
    max-width: 100%;
    align-items: stretch;
    gap: 80px;
    margin: 60px 0;
}

#banner_oj img {
    height: auto;
    max-width: 100%;
}

#banner_oj .title_zone {
    max-width: 70%;
    position: relative;
}

#banner_oj .txt {
    max-width: 30%;
}

#banner_oj .title img {
    position: absolute;
    max-width: 130px;
    z-index: 0;
    top: 0;
    left: 0;
}

#banner_oj .title .title_txt {

    z-index: 1;
    position: relative;
    padding: 50px 65px
}

#banner_oj .title .title_txt h5 {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 4px;
}

.content_banner_2 .info_sec h1,
#banner_oj .title .title_txt h1 {
    font-weight: 300;
    z-index: 1;
    font-size: 48px;
    color: var(--secondary);
}

#banner_oj .txt {
    display: flex;
    flex-direction: column;

}

#banner_oj .txt .description {
    display: flex;
    align-items: center;
    flex: 1;
    text-align: justify;
}

.image_1 {
    position: relative;
    overflow: hidden;
}

.image_2 {
    position: relative;
    overflow: hidden;
}

.image_1 img {
    transform: scale(1.4);
    transition: 8s cubic-bezier(0.1, 1, 0.3, 1);
}

.image_2 img {
    transform: scale(1.4);
    transition: 8s cubic-bezier(0.1, 1, 0.3, 1);
}

.image_1.active img {
    transform: scale(1);
}

.image_2.active img {
    transform: scale(1);
}

.image_2::after {
    left: 0;
}

.image_1::after {
    right: 0;
}

.image_2::after,
.image_1::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 9;
    top: 0;
    transition: 8s cubic-bezier(0.1, 1, 0.3, 1);
}

.image_2.active::after {
    width: 0;
}

.image_1.active::after {
    width: 0;
}

.content_banner_2 {
    display: flex;
    padding: 40px 0;
    gap: 25px;
    align-items: center;
}

.content_banner_2 .img_sec {
    width: 35%;
    overflow: hidden;
}

.content_banner_2 .img_sec.active img {
    transform: scale(1) translateX(0);
}

.content_banner_2 .img_sec img {
    max-width: 100%;
    height: auto;
    transition: 8s cubic-bezier(0.1, 1, 0.3, 1);
    transform: scale(1.4) translateX(-63px);
}
.content_banner_2 .info_sec .btn.btn-primary{
    max-width: max-content;
    padding: .5rem 1.25rem;
}
.content_banner_2 .info_sec {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 767px) {
    #banner_oj {
       flex-direction: column;
       gap: 0;
    }

    #banner_oj .title_zone {
        max-width: 100%;
        position: relative;
    }

    #banner_oj .txt {
        max-width: 100%;
        gap: 40px;
    }
    .image_1 {
        display: none;
    }
    .content_banner_2 {
        flex-direction: column;
    }
    .content_banner_2 .img_sec,
    .content_banner_2 .info_sec {
        width: 100%;
    }
}