/**
* 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 {
    margin-bottom: 80px;
}
.badofferbanner-img img{
    width: 100%;
}
.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-block{
    position: relative;
}
.badofferbanner-content-wrapper {
    position: absolute;
    content: '';
    left: 11%;
    top: 20%;
    bottom: auto;
    margin: auto;
}
.offerbanner-subtitle {
    font-size: 22px;
    line-height: 24px;
    font-weight: 400;
    color: #464646;
}
.offerbanner-title {
    font-size: 40px;
    line-height: 44px;
    color: #464646;
    font-family: var(--badtheme-font-name-2);
    font-weight: 500;
    margin: 13px 0 25px 0;
}
.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{
    display: inline-block;
}
.offerbanner-button a {
    position: relative;
    padding: 13px 25px;
    font-size: 17px;
    line-height: 24px;
    font-weight: 500;
    background-color: var(--theme-custom-color);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    border-radius: 0;
    text-transform: capitalize;
    gap: 7px;
    z-index: 1;
}
.offerbanner-button a::after{
    content: "";
    position: absolute;
    top: -5px;
    right: -7px;
    bottom: -5px;
    left: -7px;
    border: 1px solid #fff;
    z-index: -1;
}
.offerbanner-button a:hover{
    background-color: #fff;
    color: var(--theme-custom-color);
}
.offerbanner-button a:hover::after{
    transition: all 0.3s ease-in-out;
    top: -10px;
    right: -12px;
    bottom: -10px;
    left: -12px;
}
.badofferbanner-img{
    position: relative;
    overflow: hidden;
}
.badofferbanner-img::before {
    border: 70px solid rgba(255,255,255,0);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    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: 1500px) {
    .offerbanner-title{
        font-size: 34px;
        line-height: 40px;
    }
}
@media(max-width: 1440px){
    .badofferbanner-content-wrapper{
        top: 15%;
    }
    .offerbanner-subtitle {
        font-size: 18px;
        line-height: 22px;
    }
    .offerbanner-title{
        font-size: 28px;
        line-height: 34px;
    }
    .offerbanner-button a{
        padding: 10px 20px;
        font-size: 15px;
    }
}
@media(max-width: 1200px){
    .badofferbanner-block {
        margin-bottom: 50px;
    }
}
@media (max-width: 1199px) {
    .badofferbanner-content-wrapper {
        top: 20%;
    }
    .offerbanner-button a {
        padding: 8px 18px;
        font-size: 14px;
    }
}
@media(max-width: 991px){
    .badofferbanner-content-wrapper {
        top: 15%;
    }
    .badofferbanner-title {
        font-size: 35px;
        line-height: 42px;
    }
   .offerbanner-title {
        font-size: 22px;
        line-height: 32px;
        margin: 10px 0 20px 0;
    }
    .offerbanner-subtitle {
        font-size: 16px;;
    }
    .badofferbanner-block {
        margin-bottom: 30px;
    }
}
@media(max-width: 767px){
    .badofferbanner-content-wrapper {
        top: 10%;
    }
    .offerbanner-subtitle {
        font-size: 15px;
        line-height: 20px;
    }
    .offerbanner-title {
        font-size: 20px;
        line-height: 28px;
        margin: 8px 0 15px 0;
    }
    .offerbanner-button a {
        padding: 6px 15px;
        font-size: 13px;
        line-height: 22px;
    }
}
@media(max-width: 640px){
    .offerbanner-title {
        font-size: 18px;
        line-height: 22px;
        margin: 5px 0 10px 0;
    }
}
@media(max-width: 575px){
    .badofferbanner-content-wrapper {
        left: 8%;
        top: 15%;
    }
    .offerbanner-subtitle {
        display: none;
    }
    .offerbanner-title{
        margin: 0 0 10px 0;
    }
    .offerbanner-button a {
        padding: 3px 10px;
        font-size: 11px;
        line-height: 20px;
    }
    .offerbanner-button a::after {
        content: "";
        position: absolute;
        top: -3px;
        right: -5px;
        bottom: -3px;
        left: -5px;
    }
}
@media(max-width: 480px){
    .offerbanner-title {
        font-size: 16px;
        line-height: 20px;
    }
}
@media(max-width:420px){
    .badofferbanner-content-wrapper {
        left: 8%;
        top: 5%;
    }
    .offerbanner-title {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 8px;
    }
    .offerbanner-button a {
        padding: 3px 6px;
        font-size: 10px;
        line-height: 14px;
    }
    .offerbanner-button a i{
        display: none;
    }
}