#about .figure {
    align-items: start;
}
#about .figure-img {
    margin-top: 5px;
}

#about:before {
    opacity: 0;
    transition: opacity 0.1s;
}

#about.active:before {
    opacity: 1;
    transition: opacity 0.1s;
}

@media (min-width: 1200px) {
    #about:before {
        content: "";
        display: block;
        position: absolute;
        left: calc(50% + 200px);
        right: 0;
        top: 0;
        bottom: 0;
        background-image: url(../../images/sections/about/smartphone.png);
        background-position: bottom left;
        background-repeat: no-repeat;
        background-size: auto 90%;
    }
}
@media (min-width: 768px) {
    #about>.container {
        padding-top: 70px;
    }
}
