.section-branding {
    font-family: var(--font-medium);
    color: #292929;
    font-size: 1rem;
    line-height: 1.5;
    transition: color 0.3s, background-color 0.3s;
    margin: 100px 0 0 0;

    h2 {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.2;
    }

    .heading {
        font-size: 2.5rem;
        height: 50vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-shadow: 0.04em 0.04rem 0 #81b5ab;
    }

    .section {
        overflow: hidden;
    }

    .wrapper {
        height: 100vh;
    }

    .list {
        justify-content: flex-start;
        align-items: center;
        height: 100%;
        display: flex;
        position: relative;
        padding: 0.2rem;
    }

    .item {
        width: 100vw;
        height: 100%;
        display: flex;
        position: absolute;
        inset: 0%;
        overflow: hidden;
    }

    .item_number {
        font-size: 1.5rem;
        height: 3rem;
        width: 3rem;
        margin-bottom: 0.5rem;
        border-radius: 50%;
        background-color: #000;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 400;
        position: absolute;
        top: 6rem;
        left: 3rem;
        font-family: var(--font-medium);
    }

    .item_content {
        background-color: #171717;
        color: #ffffff;
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 13rem 5rem;
        display: flex;
        position: relative;
        width: 50%;
    }

    .item_content h2 {
        font-family: var(--font-bold);
        letter-spacing: 1px;
        font-size: 2.2rem;
    }

    .item_content ul {
        font-family: var(--font-light);
        padding: 20px 35px;
        font-size: 1.1rem;
        display: flex;
        flex-direction: column;
        gap: 10px;
        letter-spacing: 1px;
    }


    .item_media {
        object-fit: fill;
        width: 50%;
        height: 100%;
    }

    .padding-global {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .padding-vertical {
        padding: 2rem;
    }

    marquee {
        position: absolute;
        top: 0;
        background-color: white;
        left: 0;
        color: black;
        padding: 0 1rem;
        font-size: 2rem;
        letter-spacing: 2.5rem;
        word-spacing: 1rem;
    }
}

@media (max-width : 479px) {
    .section-branding .item_content h2 {
        font-size: 1.8rem;
    }

    .section-branding .item_content ul {
        font-size: 14px;
    }

    .section-branding .list .item .item_content {
        padding: 6.5rem 1.5rem 3rem;
    }
}