.about-block{
    display: flex;
    /* mobile defaults use CSS variables set inline on the wrapper */
    margin-top: var(--ab-mt-mobile, 0);
    margin-bottom: var(--ab-mb-mobile, 0);
    padding: 0 calc(var(--gutters) * 2.5);
}
@media (min-width: 768px) {
    .about-block {
        /* desktop defaults use CSS variables set inline on the wrapper */
        margin-top: var(--ab-mt-desktop, 0);
        margin-bottom: var(--ab-mb-desktop, 0);
    }
}
@media (max-width: 768px){
    .about-block{ padding: 0 var(--gutters);
    }
}
.about-block__inner{
    display: flex;
    flex-direction: column;
}
.about-block__media{
    display: flex;
    width: 100%;
    position: relative;
}
.about-block__notice{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    font-size: var(--wp--preset--font-size--size-15);
    font-weight: 700;
    text-transform: uppercase;
    transition: transform ease .6s;
    z-index: -1;
    display: flex;
    width: 100%;
    justify-content: center;
}
.about-block__notice.active{
    transform: translate(-50%, 0);
}
.about-block__media img{
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform ease .6s;
}
.about-block__media img.active{
    transform: translateY(2rem);
}
.about-block__content{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 6rem;
}
.about-block__text--1{
    display: flex;
    width: 100%;
    gap: 2rem;
}
@media (max-width: 768px){
    .about-block__text--1{
        flex-direction: column;
        gap: 1rem;
    }
}
.about-block__text--1 p{
    margin: 0;
    line-height: 1;
}
.about-block__content h2{
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: var(--wp--preset--font-size--size-15);
}
.about-block__text--2{
    width: 50%;
    margin-left: auto;
    padding-top: 4rem;
}
@media (max-width: 768px){
    .about-block__text--2{
        width: 100%;
        padding-top: 2rem;
    }
}