/**
* 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-inner {
    position: relative;
}
.badall-multibanner {
    margin-bottom: 80px;
}
.badmultibanner-inner .badbanner-hover-inner a{
    position: relative;
}
.badmultibanner-inner .badbanner-hover-inner a{
    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;
}
.badmultibanner-inner .badbanner-hover-inner a:after {
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.6);
    position: absolute;
    opacity: 0.5;
    border: 30px solid #fff;
    top: 0;
    left: 0;
    transform: scale(0);
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transition: all 0.5s ease-in-out;
}
.badmultibanner-inner .badbanner-hover-inner:hover a:after {
    transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    opacity: 0;
    transition-delay: 0.1s;
}
.badmultibanner-inner .badbanner-hover-inner a{
    box-shadow: none;
}
.badmultibanner-wrapper.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
}
.row1 {
    padding-top: 30px;
    display: inline-block;
}
.badmultibanner-wrapper {
    position: relative;
}

.badmultibanner {
    position: relative;
}
@media(max-width: 1200px){
    .badall-multibanner {
        margin-bottom: 50px;
    }
}
@media(max-width: 991px){
    .badmultibanner-3{
        margin-top: 20px;
    }
    .badall-multibanner {
        margin-bottom: 30px;
    }
}
@media(max-width: 767px){
    .badmultibanner-2{
        margin-top: 20px;
    }
    .badbanner-hover-inner img{
        margin: 0 auto;
    }
}