/**
* 2007-2023 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-2023 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 {
    width: 100%;
    height: 100%;
    margin-bottom: 100px;
    padding: 100px 0px;
    position: relative;
    background-attachment: fixed;
    background-image: url(../img/Single_banner.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.badofferbanner-content-wrapper {
    width: 35%;
    margin: auto;
    text-align: center;
    background-color: rgba(255, 255, 255,0.8);
    padding: 50px 0px;
    border: 10px solid #d88f00;
}
.badofferbanner-img img{
    width: 100%;
}
.badofferbanner-img{
    position: relative;
    overflow: hidden;
}
.badofferbanner-img:hover::after{
    transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -o-transform: scale(0.8);
    -ms-transform: scale(0.8);
    opacity: 0;
    transition-delay: 0.1s;
}
.badofferbanner-img:hover {
    border-color: #eaf5e5;
}
.badofferbanner-img::after{
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: 0.3;
    border: 15px solid #eaf5e5;
    top: 0;
    left: 0;
    transform: scale(0);
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.badofferbanner-subtitle {
    padding-bottom: 35px;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #ffffff;
}
.badofferbanner-title {
    width: 95%;
    font-size: 38px;
    line-height: 48px;
    color: #000000;
    font-weight: 600;
    padding-bottom: 15px;
    margin: auto;
}
.badofferbanner-block .badofferbanner-desc {
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 32px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 20px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.badofferbanner-block .badofferbanner-btn {
    color: #ffffff;
    display: inline-block;
}
.badofferbanner-block .badofferbanner-btn-title {
    position: relative;
    display: inline-block;
    background: var(--theme-custom-color);
    border: 1px solid transparent;
    padding: 5px 25px;
    text-transform: capitalize;
    border-radius: 5px;
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    display: inline-block;
    z-index: 1;
}
.badofferbanner-block .badofferbanner-btn-title:hover{
    border-color: var(--theme-custom-color);
    background-color: #fff;
    color: var(--theme-custom-color);
}
.badofferbanner-block .badofferbanner-btn-title:hover::after{
    width: 100%;
}
.badofferbanner-content-wrapper img {
    position: relative;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
@media(max-width: 1800px){
    .badofferbanner-content-wrapper{
        left: 0;
    }
}
@media(max-width: 1400px){
    .badofferbanner-content-wrapper{
        width: 47%;
    }
}
@media(max-width: 1300px){
    .badofferbanner-content-wrapper {
        left: 0px;
    }
    .badofferbanner-title{
        font-size: 38px;
        line-height: 52px;
    }
}
@media(max-width: 1200px){
    .badofferbanner-block {
        margin-bottom: 45px;
        padding: 45px 0px;
    }
    .badofferbanner-title {
        padding-bottom: 15px;
        font-size: 30px;
        line-height: 40px;
    }
    .badofferbanner-block .badofferbanner-desc {
        line-height: 31px;
        margin-bottom: 15px;
    }
    .badofferbanner-block .badofferbanner-btn-title {
        padding: 8px 20px;
        font-size: 15px;
        line-height: 22px;
    }
}
@media(max-width: 991px){
    .badofferbanner-block {
        margin-bottom: 30px;
        padding: 30px 0px;
    }
    .badofferbanner-title {
        padding-bottom: 10px;
        font-size: 24px;
        line-height: 35px;
    }
    .badofferbanner-block .badofferbanner-desc {
        font-size: 15px;
        line-height: 25px;
        padding-bottom: 0px;
        margin-bottom: 15px;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
    }
    .badofferbanner-block .badofferbanner-btn-title {
        padding: 7px 20px;
        font-size: 12px;
    }
    .badofferbanner-content-wrapper {
        width: 45%;
        margin: 0 auto;
        padding: 30px 0px;
    }
}
@media(max-width: 767px){
    .badofferbanner-content-wrapper {
        width: 58%;
    }
}
@media(max-width: 575px){
    .badofferbanner-title {
        font-size: 18px;
        line-height: 24px;
        padding-bottom: 8px;
    }
    .badofferbanner-block .badofferbanner-desc {
        font-size: 15px;
        line-height: 25px;
        padding-bottom: 0px;
        margin-bottom: 15px;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
    }
    .badofferbanner-block .badofferbanner-btn-title {
        padding: 6px 15px;
        font-size: 11px;
        line-height: 20px;
    }
    .badofferbanner-block .badofferbanner-desc {
        font-size: 15px;
        line-height: 25px;
        padding-bottom: 0px;
        margin-bottom: 15px;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
    }
    .badofferbanner-content-wrapper {
        width: 58%;
        padding: 20px 0px;
    }
}
@media(max-width: 480px){
    .badofferbanner-block .badofferbanner-desc {
        font-size: 12px;
        line-height: 16px;
        padding-bottom: 0px;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
        margin-bottom: 8px;
    }
    .badofferbanner-content-wrapper {
        width: 75%;
        left: 0px;
    }
    .badofferbanner-block .badofferbanner-btn-title {
        line-height: 16px;
    }
    .badofferbanner-img img {
        width: 100%;
        height: 136px;
    }
}
@media(max-width: 340px){
    .badofferbanner-title {
        font-size: 15px;
        padding-bottom: 10px;
        line-height: 24px;
    }
}