/**
* 2022 Anvanto
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
*
*  @author    Anvanto <anvantoco@gmail.com>
*  @copyright 2022 Anvanto
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*/

.an_banner {
    margin-bottom: 30px;
}
.an_banner-img {
    overflow: hidden;
}
.an_banner a {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.an_banner img:not(.b-lazy),
.an_banner img.b-loaded {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.an_banner-content {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 26px 20px 11px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 5px 15px 0 rgb(0 0 0 / 10%);
    overflow: hidden;
}
.an_banner-content .an_banner-title {
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 9px;
    color: #000;
    text-align: center;
}
.an_banner-content p:not(.an_banner-title) {
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    color: #868686;
    margin-bottom: 14px;
}
.an_banner-content .an_banner-textlink {
    transition: .3s;
    opacity: 0;
    margin-bottom: -50px;
    font-size: 10px;
    font-weight: 400;
    line-height: 24px;
    padding: 12px 15px;
    min-width: 164px;
    z-index: 3;
}
.an_banner-content .an_banner-textlink:hover,
.an_banner-link:hover+.an_banner-img+.an_banner-content .an_banner-textlink {
    opacity: 1;
    margin-bottom: 19px;
    margin-top: 11px;
}
@media (max-width: 767px) {
    .an_banner {
        width: 100%;
    }
}