/**
* 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
*/
.badofferbanner-block {
    padding: 0;
    height: 100%;
    border-radius: 30px 0 0 30px;
    overflow: hidden;
}
.badofferbanner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.badofferbanner-subtitle {
    padding-bottom: 35px;
    font-size: 22px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #1c1c1c;
    font-weight: 500;
}
.badofferbanner-title {
    font-family: var(--badtheme-font-name-2);
    padding-bottom: 10px;
    font-size: 48px;
    line-height: 55px;
    color: #252525;
    text-transform: capitalize;
    font-weight: 500;
}
.badofferbanner-block .badofferbanner-desc {
    font-size: 14px;
    color: #a8a8a8;
    line-height: 24px;
    width: 92%;
    padding-bottom: 60px;
}
.offerbanner-text{
    text-align: left;
}
.badofferbanner-content-wrapper {
    position: absolute;
    content: '';
    top: 15%;
    margin: auto;
    left: 40px;
    width: 80%;
    pointer-events: none;
}
.offerbanner-subtitle {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: var(--theme-text-color);
}
.offerbanner-subtitle span{
    color: #FF902A;
}
.offerbanner-title {
    font-size: 36px;
    line-height: 46px;
    color: var(--theme-text-color);
    font-family: var(--badtheme-font-name-2);
    font-weight: 600;
    margin: 10px 0 12px 0;
}
.offerbanner-subscription {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    font-family: var(--badtheme-font-name-2);
    color: var(--theme-text-color);
}
.offerbanner-desc p{
    font-size: 16px;
    padding: 15px;
    line-height: 30px;
    color: #000;
    margin: 0;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
.offerbanner-button a {
    padding: 16px 28px;
    font-size: 16px;
    background-color: #FF902A;
    cursor: pointer;
    color: #fff;
    margin-top: 30px;
    font-weight: 600;
    display: inline-block;
    border-radius: 30px;
    text-transform: uppercase;
    font-family: var(--badtheme-font-name-2);
    box-shadow: 0px 5px 16px 0px rgba(0,0,0,0.3);
    transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    pointer-events: all;
}
.offerbanner-button a:hover{
    background-color: var(--theme-custom-color);
    color: #fff;
}
.badofferbanner-img {
    position: relative;
    overflow: hidden;
    height: 100%;
}
.badofferbanner-img::before {
    border: 70px solid rgba(255,255,255,0);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    width: 100%;
}
.badofferbanner-img::after {
    background: rgba(255,255,255,.6) none repeat scroll 0 0;
    content: "";
    height: 0;
    left: 0;
    opacity: 1;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 600ms ease-in-out 0s;
    width: 100%;
}
.badofferbanner-img:hover::before {
    border: 0 solid rgba(255,255,255,.5);
}
.badofferbanner-img:hover::after {
    opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    transform: scale(.8);
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -o-transform: scale(.8);
    -ms-transform: scale(.8);
    transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    -ms-transition-delay: 0.1s;
}
.badofferbanner-content-wrapper img {
    position: relative;
    transition: all 0.5s ease-in-out;
}
@media(max-width: 1440px){
    .offerbanner-title{
        font-size: 30px;
        line-height: 40px;
    }
}
@media(max-width: 1200px){
    .offerbanner-subtitle{
        font-size: 18px;
        line-height: 26px;
    }
    .offerbanner-title {
        font-size: 26px;
        line-height: 36px;
    }
    .offerbanner-subscription{
        font-size: 14px;
        line-height: 26px;
    }
    .offerbanner-button a {
        padding: 10px 20px;
        font-size: 14px;
        margin-top: 20px;
    }
}
@media(max-width: 991px){
    .badofferbanner-block{
        border-radius: 0;
    }
    .badofferbanner-title {
        font-size: 35px;
        line-height: 42px;
    }
    .offerbanner-subtitle {
        font-size: 22px;
        line-height: 30px;
    }
    .offerbanner-title {
        font-size: 30px;
        line-height: 40px;
    }
    .offerbanner-subscription {
        font-size: 16px;
        line-height: 28px;
    }
    .badofferbanner-content-wrapper {
        width: 50%;
        left: 50px;
    }
}
@media(max-width: 767px){
    .badofferbanner-content-wrapper {
        top: 20%;
        width: 45%;
    }
    .offerbanner-button a {
        padding: 10px 15px;
    }
}
@media(max-width: 575px){
    .badofferbanner-content-wrapper {
        top: 15%;
        width: 55%;
    }
    .offerbanner-subtitle {
        font-size: 18px;
        line-height: 24px;
    }
    .offerbanner-title {
        font-size: 26px;
        line-height: 38px;
    }
    .offerbanner-button a {
        padding: 6px 12px;
        font-size: 12px;
    }
}
@media(max-width: 480px){
    .badofferbanner-title {
        font-size: 18px;
        line-height: 22px;
        padding-bottom: 5px;
    }
}
@media (max-width: 475px) {
    .badofferbanner-content-wrapper {
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        width: 100%;
        margin: 0 auto;
    }
    .offerbanner-text {
        text-align: center;
    }
    .offerbanner-subtitle {
        font-size: 15px;
        line-height: 22px;
    }
    .offerbanner-title {
        font-size: 20px;
        line-height: 26px;
        margin: 5px 0 8px 0;
    }
    .offerbanner-subscription {
        font-size: 14px;
        line-height: 20px;
    }
    .offerbanner-button a{
        margin-top: 15px;
    }
}