








#about {
    width: 100%;
    overflow: hidden;
}









#about .container-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
    gap: var(--gap-l);
}










#about .ill-wrap {
    width: 28.5vw;
    height: 19vw;
    transition: 0.2s;
    margin-right: 6vw;
}



#about .ill-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    pointer-events: none;
}







#about .about-wrap {
    display: flex;
    gap: var(--gap-l);
    flex-direction: column;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
}

#about .section-title {
    font-family: var(--font-family-bold);
    font-size: var(--font-size-xl);
    line-height: var(--font-size-xl);
    text-align: left;
    color: transparent;

    background-size: cover;
    background: var(--color-7);
    -webkit-background-clip: text;
    transition: 0.2s;
}







#about .about-text-wrap {
    display: flex;
    gap: var(--gap-s);
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;

    width: 100%;
    box-sizing: border-box;
    padding-left: 0.75vw;
    border-left: 1px solid var(--color-4);
}

#about .about-text {
    position: relative;
    
    font-family: var(--font-family-regular);
    font-size: var(--font-size-xs);
    line-height: var(--font-size-s);
    color: var(--color-4);
}

#about .about-text::before {
    position: absolute;
    left: -1vw;
    top: 0;
    
    content: '';

    width: 0.35vw;
    height: 0.35vw;

    border-radius: 50%;
    background-color: var(--color-4);
}

#about .about-text:first-child {
    color: #fff;
}