/**
* 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: 39px 0 85px;
    padding: 0;
}
.an_banner-img {
    overflow: hidden;
    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;
    height: auto;
}
.an_banner-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.an_banner-content-wrap {
    background: rgba(255,255,255,.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 782px;
    width: 100%;
    padding: 34px 30px 28px;
    margin-bottom: 6px;
}
.an_banner .an_banner-title {
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    text-align: center;
    color: #000;
}
.an_banner p:not(.an_banner-title) {
    text-align: center;
    margin: 0 0 18px;
    font-size: 20px;
    line-height: 1.5;
    color: #000;
}
@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;
    }
}