/* ABOUT - HERO */
.about-hero {
    width: 100%;
    height: 500px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 85% 90%, 75% 100%, 0 100%);
    user-select: none;
}

.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

.about-hero-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    backdrop-filter: brightness(50%) blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 0 5%;
    box-sizing: border-box;
}

.about-hero-overlay h2 {
    font-size: 4rem;
    margin: 0 0 10px 0;
}

.about-hero-overlay p {
    margin: 10px 0 30px 0;
    font-size: 2rem;
}

.about-hero .underline {
    margin: 0;
}

/* ABOUT - MAIN */
.about-main {
    width: 100%;
    display: flex;
    flex-wrap: wrap-reverse;
    align-items: center;
    justify-content: center;
    padding: 50px;
    box-sizing: border-box;
    gap: 30px;
}

.about-main .underline {
    margin: 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 800px;
    max-width: 90vw;
}

.about-content h2 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.about-content p {
    font-size: 1.75rem;
    line-height: 1.6;
    margin: 10px 0;
}

.about-image {
    text-align: center;
    min-width: 40%;
}

.about-image img {
    width: 500px;
    max-width: 90%;
}