/* @group Center banner
------------------------------------ */
.center-banner {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../../img/layout/center-banner/background-center.jpg');
    padding: 10.9rem 0 9.5rem;
}
.center-banner::before {
    content: "";
    display: inline-block;
    width: 13.8rem;
    height: 12.8rem;
    background-image: url('../../img/layout/center-banner/lemons.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: -5.3rem;
    left: 50%;
    transform: translateX(-50%);
}
.center-banner h2,
.center-banner h3 {
    color: var(--main-white);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2em;
    line-height: 1.5em;
}
.center-banner h2 span,
.center-banner h2 em {
    text-transform: none;
    font-family: var(--alegreya);
    font-size: 2.7rem;
    line-height: .70em;
}
.center-banner h2 em {
    font-style: normal;
    position: relative;
}
.center-banner h2 em::before,
.center-banner h2 em::after {
    content: "";
    width: 2.6rem;
    height: .92rem;
    background-image: url('../../img/layout/home/lines.svg');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 1.5rem;
}
.center-banner h2 em::before {
    left: -2.8rem;
}
.center-banner h2 em::after {
    transform: scale(-1);
    right: -2.8rem;
}
.center-banner a {
    margin: 1rem auto 0;
}

@media only screen
and (min-width : 961px) {
    .center-banner {
        padding: 19rem 14.2rem;
    }
    .center-banner::before {
        width: 32rem;
        height: 29.7rem;
        top: -11rem;
    }
    .center-banner h2,
    .center-banner h3 {
        font-size: 4.8em;
        line-height: 1.5em;
    }
    .center-banner h2 span,
    .center-banner h2 em {
        font-size: 6.4rem;
        line-height: .68em;
    }
    .center-banner h2 em::before,
    .center-banner h2 em::after {
        width: 6.4rem;
        height: 2.2rem;   
        top: 3.5rem;
    }
    .center-banner h2 em::before {
        left: -6.6rem;
    }
    .center-banner h2 em::after {
        right: -6.6rem;
    }
    .center-banner a {
        margin: 1.3rem auto 0;
    }

}
@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
}

/* @end */


/* Animations */

.center-banner h2,
.center-banner h3,
.center-banner a,
.center-banner::before { opacity: 0; } 

.center-banner.animateActive h2, 
.center-banner.animateActive h3, 
.center-banner.animateActive a, 
.center-banner.animateActive::before { animation: fade .9s forwards; }

.center-banner.animateActive::before {animation-delay:.3s;} 
.center-banner.animateActive h2,
.center-banner.animateActive h3 {animation-delay:.5s;} 
.center-banner.animateActive a {animation-delay:.7s;} 
