/* commons  */

/* hero section - section 1  */
.hero-section {
    position: relative;
    margin-top: 180px;
    margin-bottom: 75px;

    .image-container {
        width: 100%;
        height: 100%;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .hero-content {
        position: absolute;
        /* width: 100%; */
        /* height: 100%; */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        img {
            width: 100%;
            height: 100%;
            /* object-fit: cover; */
        }
    }

    @media screen and (max-width: 1024px) {
        & {
            margin-top: 115px;
            margin-bottom: 67px;

            .hero-content {
                width: max-content;
                height: auto;
            }
        }
    }
}

/* content section - section 2   */
.content_container {
    max-width: 725px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: start;
    margin-bottom: var(--spacer-120);

    h2 {
        span {
            color: var(--text-arcon-red);
        }
    }

    .para-primary {
        text-align: center;
        margin-top: 16px;
    }

    .cta-primary-container {
        width: fit-content;
        margin-top: 40px;
    }

    @media screen and (max-width: 1024px) {
        & {
            max-width: 100%;
            width: auto;
            text-align: center;
            margin-bottom: var(--spacer-60);

            .cta-primary-container {
                margin-top: 24px;
            }
        }
    }
}