#about {
    background: linear-gradient(0deg, #184e65 0%, #0a0f1e 100%);
}

.about-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    min-height: 450px;
    margin: 4rem 4rem;
}

.about-item.alt > .about-photo {
    order: 2;
}

.about-item.alt > .about-text {
    order: 1;
}

.about-photo {
    height: 100%;
    min-height: 350px;
    max-height: 450px;
    overflow: hidden;
    border-radius: 12px;
    
}

.about-item:first-child{
    margin-top: 2rem;
}

.about-item:last-child {
    margin-bottom: 0;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin: 0;
    text-align: justify;
    color: var(--off-white, #f5f5f5);
}