.seo-scroll-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #fff;
    overflow: hidden;
}

.seo-scroll-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.seo-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transform: translateY(40px);

    transition:
        opacity 0.45s ease,
        transform 0.45s ease;

    pointer-events: none;
}

.seo-slide.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    pointer-events: auto;
}


/* CONTENT */

.seo-content {
    width: 100%;

    display: grid;
    grid-template-columns: 40% 60%;

    align-items: center;

    padding: 50px 7%;

    box-sizing: border-box;
}


/* LEFT */

.seo-left {
    position: relative;

    min-height: 420px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 40px 60px;

    text-align: center;
    box-sizing: border-box;
}

.seo-left::after {
    content: "";

    position: absolute;

    top: 5%;
    right: 0;

    width: 1px;
    height: 90%;

    background: #dedede;
}


/* TITLES */

.seo-small-title {
    display: block;

    margin-bottom: 18px;

    font-family: Arial, sans-serif;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: #777;
}


/* KEYWORD */

.seo-keyword {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 280px;
    min-height: 58px;

    padding: 14px 28px;

    border: 1px solid #eee;

    border-radius: 50px;

    background: #fff;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.07);

    font-family: Arial, sans-serif;

    font-size: 16px;
    font-style: italic;

    color: #222;

    box-sizing: border-box;
}


/* DOTTED LINE */

.seo-dotted-line {
    width: 270px;

    margin: 28px 0;

    border-top: 1px dashed #bdbdbd;
}


/* RANK */

.seo-rank {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #c7df32;

    font-family: Arial, sans-serif;

    font-size: 18px;
    font-weight: 500;

    color: #111;
}


/* RIGHT */

.seo-right {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    padding-left: 60px;

    box-sizing: border-box;
}


/* IMAGE */

.seo-right img {
    display: block;

    width: 100%;
    max-width: 700px;

    height: auto;
    max-height: 70vh;

    object-fit: contain;

    border-radius: 12px;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.08);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .seo-scroll-section {
        height: auto;
        overflow: visible;
    }

    .seo-scroll-inner {
        height: auto;
    }

    .seo-slide {
        position: relative;

        inset: auto;

        height: auto;
        min-height: 100vh;

        display: block;

        opacity: 1;
        visibility: visible;

        transform: none;

        padding: 60px 20px;

        pointer-events: auto;

        box-sizing: border-box;
    }

    .seo-content {
        display: flex;
        flex-direction: column;

        gap: 40px;

        padding: 0;
    }

    .seo-left {
        width: 100%;

        min-height: auto;

        padding: 30px 20px;
    }

    .seo-left::after {
        display: none;
    }

    .seo-right {
        width: 100%;
        padding-left: 0;
    }

    .seo-right img {
        width: 100%;
        max-width: 100%;
        max-height: none;
    }

    .seo-keyword {
        width: 100%;
        max-width: 330px;
        min-width: 0;

        font-size: 14px;
    }
}