/**
* 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: 32px 0 33px;
}
.an_banner-img {
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    justify-content: center;
}
.an_banner a {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.an_banner img {
    width: auto;
}
.an_banner-content {
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: calc(100% - 30px);
    padding: 30px 94px;
    min-height: 200px;
}
.an_banner .an_banner-title {
    line-height: 1.2;
    margin: 1px 0 19px;
}
.an_banner p:not(.an_banner-title) {
    font-size: 18px;
    max-width: 580px;
    line-height: 30px;
    margin-left: 2px;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .an_banner-content {
        padding: 10px 30px;
    }
    .an_banner .an_banner-title {
        margin-bottom: 10px;
    }
    .an_banner p:not(.an_banner-title) {
        font-size: 16px;
        line-height: 24px;
    }
}