.about {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
}

.about-content {
    display: flex;
    width: 100%;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    height: auto;
    position: relative;
}

.about-inner-text {
    width: 50%;
    padding: 2rem;
    box-sizing: border-box;
}

.about-heading {
    font-size: 2.5rem;
    font-family: 'Sansation', sans-serif;
    padding-bottom: 2rem;
}

.about-text {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.about-image {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-image > img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: translateY(-10%);
}

.image-overlay {
    display: none;
}

.warranty {
    margin: 3rem 20%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    background-color: #fff;
    color: #000;
}

.warranty-heading {
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Sansation', sans-serif;
}

.warranty-subheading {
    width: 100%;
    text-align: center;
    font-size: 1.25rem;
    margin: 1rem 0 0 0;
    font-family: 'Sansation', sans-serif;
}

.warranty-text {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.warranty-void-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.void-item {
    margin-bottom: 0.5rem;
    list-style-type: disc;
    margin-left: 2rem;
}

@media screen and (max-width: 950px) {
    .about-content {
        flex-direction: column;
    }

    .about-inner-text,
    .about-image {
        width: 100%;
    }

    .about-image > img {
        transform: translateY(0);
        width: 100%;
        height: 100%;
    }

    .about-image {
        position: absolute;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .image-overlay {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .warranty {
        margin: 2rem 5%;
    }
}