/**
* 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;
}
.badtwoofferbanner-content-img {
    overflow: hidden;
    position: relative;
}
.badtwoofferbanner-content-img:hover {
    border-color: #eaf5e5;
}
.badtwoofferbanner-content-wrapper .row {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
}
.badtwoofferbanner-content h3 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #000000;
    width: 90%;
}
.badtwoofferbanner-subtitle {
    font-size: 53px;
    line-height: 56px;
    color: var(--theme-custom-color);
    font-weight: 400;
    text-transform: capitalize;
    font-family: 'Great Vibes', cursive;
    padding-bottom: 0;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.badtwoofferbanner-title {
    font-size: 38px;
    line-height: 50px;
    color: #000;
    font-weight: 700;
    padding-bottom: 15px;
    font-family: var(--badtheme-font-name-2);
}
.badtwoofferbanner-block .badtwoofferbanner-desc {
    font-size: 16px;
    color: #777777;
    line-height: 24px;
    width: 92%;
    margin-bottom: 40px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
}
.badtwoofferbanner-content a{
    position: relative;
    background: var(--theme-custom-color);
    color: #fff;
    background-color: #ff7901;
    font-size: 18px;
    font-weight: 700;
    line-height: 31px;
    padding: 8px 25px;
    display: inline-block;
    vertical-align: middle;
    -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;
    z-index: 1;
}
.badtwoofferbanner-content a:hover,
.badtwoofferbanner-content a:focus {
  box-shadow:
  inset 0 -3.25em 0 0 var(--theme-custom-color)
}
.badtwoofferbanner-content a:hover{
    background-color: var(--theme-custom-color);
    color: #fff;
}
.badtwoofferbanner-content {
    position: absolute;
    top: 65px;
    left: 60px;
}

.badtwoofferbanner-link{
    display: inline-block;
}
.badtwoofferbanner-content-img img{
    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 {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: 0.5;
    border: 45px solid #fff;
    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;
}
.badtwoofferbanner-content-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;
}
.badtwoofferbanner-content-img img {
    width: 100%;
}
.badtwoofferbanner-content-row2{
    padding-right: 0;
}
.badtwoofferbanner-content-row1{
    padding-left: 0;
}

@media(max-width: 1200px){
    .badtwoofferbanner-block {
        margin-bottom: 45px;
    }
    .badtwoofferbanner-content a,.badtwoofferbanner-content a:focus {
        font-size: 15px;
        line-height: 26px;
        padding: 6px 20px;
    }
    .badtwoofferbanner-title {
        font-size: 32px;
        line-height: 42px;
        padding-bottom: 20px;
    }
    .badtwoofferbanner-subtitle {
        font-size: 33px;
        line-height: 36px;
    }
    .badtwoofferbanner-content {
        position: absolute;
        top: 40px;
        left: 40px;
    }
}
@media(max-width: 991px){
    .badtwoofferbanner-block {
        margin-bottom: 30px;
    }
    .badtwoofferbanner-content a{
        font-size: 15px;
        line-height: 25px;
        padding: 6px 18px;
    }
    .badtwoofferbanner-title {
        font-size: 28px;
        line-height: 35px;
        padding-bottom: 10px;
    }
    .badtwoofferbanner-subtitle {
        font-size: 27px;
        line-height: 30px;
    }
}
@media(max-width: 767px){
    .badtwoofferbanner-subtitle {
        font-size: 33px;
        line-height: 36px;
    }
    .badtwoofferbanner-title {
        padding-bottom: 15px;
    }

    .badtwoofferbanner-content-row1,.badtwoofferbanner-content-row2 {
        padding: 0px;
    }
    .badtwoofferbanner-content-row1 {
        margin-bottom: 20px;
    }
}
@media (max-width:575px) {
    .badtwoofferbanner-content a {
        font-size: 15px;
        line-height: 25px;
        padding: 3px 11px;
    }
}
@media (max-width: 475px) {
    .badtwoofferbanner-subtitle {
        font-size: 16px;
        line-height: 20px;
    }
    .badtwoofferbanner-title {
        font-size: 25px;
        line-height: 30px;
    }
}
@media (max-width: 375px) {
    .badtwoofferbanner-title {
        font-size: 22px;
        line-height: 30px;
    }
    .badtwoofferbanner-content {
        position: absolute;
        top: 15%;
        left: 20px;
    }
}
