.about {
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    text-align: justify;
}

.img {
    height: 100%;
}

.about-img {
    height: 100%;
    object-fit: cover;
}

.benefit-title {
    text-align: center;
    margin-bottom: 24px;
}

.benefit-item-title {
    font-size: 20px;
    margin-bottom: 8px;
}

.benefit-item-desc {
    text-align: justify;
}

.benefit-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.benefit-img {
    position: relative;
    overflow: hidden;
}

.benefit-img::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at center, transparent, rgba(255, 255, 255, 0.2));
    pointer-events: none;
}

.benefit-img img {
    display: block;
    border-radius: 12px;
    width: 100%;
    height: auto;
}

.endCover {
    height: 60vh;
    position: relative !important;
}

.endCover::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.endCover-inner {
    height: 100%;
    width: 100%;
}

.endCover-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.endCover-desc {
    position: absolute;
    color: white;
    font-size: 60px;
    font-weight: 800;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
}