/**
* 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
*/
.badtwoofferbanner-block {
    margin-bottom: 100px;
    position: relative;
}
.badtwoofferbanner-content-img {
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.badtwoofferbanner-content {
    position: static;
    text-align: center;
    padding: 20px 15px;
}
.badtwoofferbanner-content-row1 .badtwoofferbanner-content {
    background-color: #f8f3f1;
}
.badtwoofferbanner-content-row2 .badtwoofferbanner-content {
   background-color: #f4faf7;
}
.badtwoofferbanner-title {
    font-size: 30px;
    line-height: 35px;
    color: #000;
    font-weight: 600;
    padding-bottom: 10px;
}
.badtwoofferbanner-desc {
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    color: #000;
}
.badtwoofferbanner-sub-title {
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 400;
    padding-bottom: 15px;
}
.badtwoofferbanner-block .badtwoofferbanner-content a {
    background: var(--theme-custom-color);
    padding: 10px 26px;
    text-transform: capitalize;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-size: 16px;
    border: 2px solid var(--theme-custom-color);
    color: #000;
    font-weight: 600;
    transition: all 0.3s;
    -ms-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}
.badtwoofferbanner-block .badtwoofferbanner-content a::before {
    background-color: #000;
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     height: 0;
     transition: all .5s;
     -webkit-transition: all .5s;
     -moz-transition: all .5s;
     -o-transition: all .5s;
     -ms-transition: all .5s;
     width: 0;
     height: 45px;
     z-index: -1;
 }
.badtwoofferbanner-block .badtwoofferbanner-content a:hover{
    color: #fff !important;
 }
.badtwoofferbanner-block .badtwoofferbanner-content a:hover::before {
     width: 100%;
 }
.badtwoofferbanner-subtitle{
    display: none;
}
.badtwoofferbanner-content-img {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.badtwoofferbanner-content-img img{
    max-width: 100%;
    overflow: hidden;
    cursor: pointer;
    -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;
}
.badtwoofferbanner-content-img:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to bottom,rgba(255,122,95,0) 20%,#565e41 150%);
    background: -moz-linear-gradient(top,rgba(255,122,95,0) 20%,#565e41 150%);
    filter: linear-gradient(to bottom,rgba(255,122,95,0) 20%,#565e41 150%);
    content: '';
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translate3d(0,50%,0);
    -webkit-transform: translate3d(0,50%,0);
    -ms-transform: translate3d(0,50%,0);
    -o-transform: translate3d(0,50%,0);
    -moz-transform: translate3d(0,50%,0);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.badtwoofferbanner-content-img:hover:after {
    opacity: .6;
    filter: alpha(opacity=100);
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
@media(max-width: 1200px){
    .badtwoofferbanner-title {
        font-size: 25px;
        line-height: 30px;
    }
    .badtwoofferbanner-desc {
        font-size: 16px;
        line-height: 22px;
        color: #000;
    }
    .badtwoofferbanner-sub-title {
        font-size: 16px;
        line-height: 22px;
    }
    .badtwoofferbanner-block .badtwoofferbanner-content a {
        padding: 8px 20px;
        font-size: 14px;
    }
    .badtwoofferbanner-block {
        margin-bottom: 50px;
    }
}
@media(max-width: 991px){
    .badtwoofferbanner-block {
        margin-bottom: 50px;
    }
    .badtwoofferbanner-title {
        font-size: 22px;
        line-height: 26px;
    }
    .badtwoofferbanner-sub-title {
        font-size: 15px;
    }
    .badtwoofferbanner-block {
        margin-bottom: 30px;
    }
}
@media(max-width :767px){
    .badtwoofferbanner-title {
        font-size: 20px;
        line-height: 24px;
    }
    .badtwoofferbanner-block .badtwoofferbanner-content a {
        padding: 7px 16px;
    }
}
@media(max-width: 600px){
    .badtwoofferbanner-sub-title {
        font-size: 13px;
        line-height: 18px;
    }
    .badtwoofferbanner-block .badtwoofferbanner-content a {
        padding: 5px 20px;
        line-height: 22px;
    }
}
@media(max-width: 575px){
    .badtwoofferbanner-content-row2 {
        padding-top: 20px;
    }
    .badtwoofferbanner-title {
        font-size: 22px;
        line-height: 28px;
    }
}
