/**
* 2007-2022 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-2022 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

#multiplebanners{
    padding: 70px 0;background: #F0F0F2;
}





.promoBox {
    text-align: left;
    padding: 4px;
    height: 20vw;
    max-height: 350px;
    border-radius: 8px;
    overflow: hidden;
}

.radiusCorners{
    border-radius: 8px;
}

.item-padding{
    /*padding: 4px;*/     padding: 0px;
}


.promoBox .inner {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    flex-wrap: nowrap;
    height: 100%;
    background-color: rgba(45, 44, 66, 0.05);
    background-position: bottom right;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    transition: box-shadow 0.15s ease-out;
}
.promoBox .inner {
    background-color: #fff;
}

 .imgbg{
    object-fit: cover;
     display: block;
    height: 100%;
    width: 100% !important;
    object-position: center;
}

.promoBox .linkstre {
    display: inline-block;
    background-color: #fff;
    color: #000;
    border-radius: 4px;
    height: 40px;
    padding: 10px 20px;
    transition: background-color 0.3s ease-out;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}
.promoBox .linkstre {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: unset;
    background-color: transparent !important;
}
.linkstre::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    background-color: transparent;
}

.promoslide{
    height: calc(40vw);
    max-height: 700px;
}
.promoBox img{
    object-fit: cover;
    height: 100%;
    width: 100% !important;
    object-position: center;
}

.promoSliderDots {
    position: absolute;
    width: 100%;
    left: 0px;
    bottom: 20px;
    padding: 0px 20px;
    z-index: 8;
}


.multipleitem{
    text-align: left;
    padding: 4px;

    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 991px) {
    #multiplebanners .row{
        display: flex;
        flex-wrap: wrap;
        margin:0;
        width: 100%;
    }
    .item-padding{
        width: 100%;
    }
    .secondItem{
    order:1;
    }
    .firstItem{
        order:2;
    }
    .finishItem{
        order:3;
    }

    .promoBox{
        max-height: 400px;height: 60vw
    }

    #multiplebanners{
        padding: 20px 0;
    }
}