/**
* 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
*/
.badbanner-hover img{
    width: 100%;
    cursor: pointer;
}
.badmultibanner-title-inner {
    font-size: 22px;
    letter-spacing: 0px;
    line-height: 38px;
    color: #0f0f0f;
    font-weight: 300;
    text-align: center;
    margin-bottom: 50px;
}
.badmultibanner2-content-title {
    font-size: 28px;
    line-height: 30px;
    color: #111111;
    font-weight: 500;
    padding-right: 10px;
}
.badmultibanner2-content-sub-title {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 30px;
    color: #999999;
    font-weight: 400;
}
.badmultibanner2-content-box {
    display: flex;
    align-items:center;
    flex-wrap: wrap;
    position: absolute;
    bottom: 30px;
    left: 30px;
}
.badmultibanner2-wrapper{
    display: flex;
    align-items:center;
    justify-content:space-between;
    margin: 30px 0 80px;
}
.badbanner-hover {
    overflow: hidden;
}
.badmultibanner2-inner a {
    display: block;
    position: relative;
}
.badmultibanner2-inner.badmultibanner2-1,.badmultibanner2-inner.badmultibanner2-2,.badmultibanner2-inner.badmultibanner2-3{
    padding-right: 12px;
}
.badmultibanner2-inner a::after{
    bottom: 0;
    left: 0;
    position: absolute;
    content: "";
    width: 10%;
    height: 10%;
    opacity: 0;
    background-color: rgba(255,255,255,.6);
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
.badmultibanner2-inner a:hover::after{
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: rgba(255,255,255,0);
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
@media(max-width: 1200px){
    .badmultibanner2-wrapper{
        margin: 30px 0 50px;
    }
}
@media(max-width: 991px){
    .badmultibanner2-wrapper {
        margin: 15px 0 20px;
    }
}
@media(max-width: 575px){
    .badmultibanner2-wrapper {
        flex-wrap: wrap;
    }
    .badmultibanner2-inner.badmultibanner2-1, .badmultibanner2-inner.badmultibanner2-2, .badmultibanner2-inner.badmultibanner2-3,.badmultibanner2-inner.badmultibanner2-4{
        padding: 10px 15px;
    }
    .badmultibanner2-wrapper{
        justify-content: center;
    }
}