#about {
    position: relative;
}

#about h2 {
    background-image: url(/assets/img/about-h2.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 100% auto;
}

.about-img {
    margin-top: 5.125rem;
    width: 100%;
    position: relative;
}

.about-img img {
    width: 100%;
    height: auto;
}

.about-img-overlay {
    position: absolute;
    bottom: 3rem;
    right: 3.5rem;
}

.about-img-overlay ul {
    margin: 0;
}

.about-img-overlay ul li {
    font-weight: 500;
    font-size: 2rem;
    line-height: 2.5rem;
    margin-bottom: 2.625rem;
}

.about-img-overlay ul li:last-child {
    margin-bottom: 0;
}

.about-content {
    width: 66%;
}

@media (max-width: 1440px) {
    .about-content {
        width: 100%;
    }

    .about-img-overlay {
        position: absolute;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 1280px) {
    .about-img-overlay {
        position: absolute;
        bottom: 1rem;
        right: 1rem;
    }

    .about-img-overlay ul li {
        font-weight: 500;
        font-size: 1.5rem;
        line-height: 2rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 620px) {
    .about-img-overlay {
        display: none;
    }
}