/*--- Banner Landing ---*/
.bannerLanding {
    z-index: 1;
    margin-bottom: 32px;
}
    .bannerLanding .container-element-banner {
        display: flex;
        flex-direction: column;
    }

    .bannerLanding .contendorImg {
        border-radius: 16px 16px 0 0;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom center;
        position: relative;
    }

.bannerLanding .contendorImg .imgBannerLanding {    
    height: 160px;
    width: 100%;
    object-fit: cover;
    object-position: center calc(20% + 0px);
    border-radius: 16px 16px 0 0;
}

.bannerLanding .text-container {
    border-radius: 0 0 16px 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;    
}

.bannerLanding .text-container * {
    color: #FFF;
}

.bannerLanding .text-container p {
    margin-bottom: auto;
    font-size: 16px;
}

.bannerLanding .text-container small {
    font-size: 36px;
    font-style: normal;
    font-weight: 700;

}
.bannerLanding .text-container h1 {
    font-size: 44px;
    margin-top: auto;
    margin-bottom: 4px;
    line-height: 40px;
}

.bannerLanding .text-container .button-container {
    width: 100%;
    display: flex;
    justify-content: end;
}

@media screen and (max-width: 992px){
    .bannerLanding .text-container{
        min-height: 143px;
    }
}

@media screen and (max-width: 1199px){
    .bannerLanding .text-container small{
        font-size: 24px;
        line-height: 32px;
    }
    .bannerLanding .text-container h1 {
        font-size: 32px;
        margin: 0 0 12px 0;
        line-height: 32px;
    }
    .bannerLanding .text-container p{
        padding-right: 0;
        padding-bottom: 0;
        font-size: 14px;
        margin: 0;
    }
}

@media screen and (min-width: 992px) {
    .bannerLanding .container-element-banner {
        display: flex;
        flex-direction: row;
    }

    .bannerLanding .container-element-banner {
        display: flex;
        flex-direction: row;
    }

    .bannerLanding article {
        padding: 0;
    }

    .bannerLanding .contendorImg .imgBannerLanding {
        height: 300px;
        border-radius: 16px 0 0 16px;
        width: 100%;
        object-fit: cover;
        position: bottom ;
        top: 0;
        left: 0;
    }

    .bannerLanding .text-container {
        border-radius: 0 16px 16px 0;
        padding: 32px;
        max-height: 343px;
    }

    .contendorImg,
    .text-container {
        height: 300px;
    }

    
}