.about {
    background: var(--color-background-secondary);
}

.about .section-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    gap: 60px;
}

.about-img-container {
    position: relative;
    width: 600px;
    height: 500px;
    margin-right: auto;
}

.about-img-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: calc(100% + 100px);
    top: -50px;
    right: 50px;
    box-sizing: border-box;
    border-radius: 40px;
    border: 12px solid var(--color-brand-primary);
}

.about-img-container__img {
    position: relative;
    display: flex;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 1;
    -webkit-box-shadow: 0px 0px 41px -18px rgba(240,240,240,0.33);
    -moz-box-shadow: 0px 0px 41px -18px rgba(240,240,240,0.33);
    box-shadow: 0px 0px 41px -18px rgba(240,240,240,0.33);
    opacity: 0;
    transition: all .3s ease;
}

.about-content {
    width: 50%;
    padding-right: 90px ;
}

.about-content__text {
    padding: 15px 35px 0 0;
    font-size: .8rem;
    text-align: left;
}

.about-lines {
    display: flex;
    position: absolute;
    top: 0;
    right: 30px;
    gap: 18px;
    height: 100%;
}

.about-lines__line {
    width: 6px;
    height: 90%;
    background: var(--color-brand-primary);
}

.about-lines__line.short {
    height: 80%;
    background: linear-gradient(var(--color-brand-primary), var(--color-background-secondary));
}

@media (max-width: 1060px) {
    .about .section-inner {
        min-height: unset;
        gap: 0px;
    }

    .about-img-container {
        display: none;
    }

    .about-content {
        padding: 20px 15px;
        width: 90%;
    }
}