.section-about {
    position: relative;
    min-height: 792px;
    overflow: hidden;
    background: rgba(19, 9, 17, 1);
    display: flex;
    align-items: center;
    background-size: contain;
    background-position: center;
}

.section-about-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
/* .section-about::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(
        circle farthest-corner at 70% center,
        rgba(19, 9, 17, 0) 0%,      
        rgba(19, 9, 17, 0.25) 11%,   
        rgba(19, 9, 17, 0.5) 25%,     
        rgba(19, 9, 17, 0.8) 33%,     
        rgb(19, 9, 17) 42%           
      );
}
 */
 .section-about::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle closest-side at 70% center, rgba(19, 9, 17, 0) 0%, rgba(19, 9, 17, 0.25) 11%, rgba(19, 9, 17, 0.5) 25%, rgba(19, 9, 17, 0.8) 33%, rgb(19, 9, 17) 42%);
    background-size: 250% 250%;
    background-position: 70% center;
    background-repeat: no-repeat;
}
.section-about .container {
    position: relative;
    z-index: 2;
}

.about-content-btns a {
    display: inline-block;
}

.about-content-btns {
    margin-top: 48px;
    display: flex;
    gap: 14px;
}

@media (max-width: 991px) {
    .section-about {
        min-height: max-content;
        padding: 72px 0;
        margin-top: -1px;
    }

    .section-about::after {
display: none    }

    .section-about-image {
        position: unset;
        height: 296px;
    }

    .section-about-content .section-title,
    .section-about-content .section-subtitle,
    .about-content-btns {
        position: relative;
        z-index: 2;
    }

    .section-about .container {
        position: unset;
        z-index: unset;
    }

    .section-about-content .section-title {
        text-align: center;
    }

    .section-about-content .section-subtitle {
        margin-top: 16px;
    }

    .about-content-btns {
        margin-top: 16px;
        justify-content: center;
    }

    .websima-main-footer {
        padding: 56px 0 18px;
    }

    .section-about-content::after {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 1;
        background: radial-gradient(circle at 45% 35%, rgba(19, 9, 17, 0) -4%, rgba(19, 9, 17, 0) 0, rgba(19, 9, 17, 0.5) 20%, rgba(19, 9, 17, 1) 32%);        width: 121%;
        left: -15px;
    }
}