/* Reusable css */
.section-common {
    padding: 10rem 0;
    font-family: "Poppins", sans-serif;
}

.section-content {
    display: flex;
    flex-wrap: wrap;
    gap: 6.6rem;
}

.section-left {
    width: calc(50% - 3.3rem);
}

.section-right {
    width: calc(50% - 3.3rem);
}

.section-content-header h3 {
    color: var(--primary-color);
    font-size: clamp(1.6rem, 2vw, 1.8rem);
    font-weight: 600;
    line-height: 2.2rem;
    margin-bottom: 1.9rem;
}

.section-content-header h2 {
    font-size: clamp(3rem, 3vw, 3.6rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--light);
    margin-bottom: 2.5rem;
}

.section-content-desc {
    font-size: clamp(1.3rem, 1.8vw, 1.6rem);
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF99;
}

.quote-text {
    padding: 0.5rem 1.2rem;
    margin: 3.3rem 0;
    border-left: 0.2rem solid var(--primary-color);
    font-size: clamp(1.5rem, 1.8vw, 2rem);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.section-right {
    position: relative;
}

.section-right img {
    border-radius: 1.6rem;
}

.image-overlay {
    position: absolute;
    inset: auto 2.8rem 2.8rem 2.8rem;
    border-radius: 1.2rem;
    border: 0.1rem solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.80);
    padding: 1.4rem 2.4rem;

    h4 {
        color: rgba(255, 255, 255, 0.50);
        font-size: clamp(1rem, 1vw, 1.3rem);
        font-weight: 700;
        line-height: 1.5;
        letter-spacing: 0.22rem;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
    }

    p {
        font-size: clamp(1.3rem, 1.8vw, 1.6rem);
        font-weight: 400;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.8);
    }
}

@media(max-width: 1300px) {
    .section-common {
        padding: 5rem 2rem;
    }
}

@media(max-width: 991px) {

    .section-content {
        justify-content: center;
    }

    .section-left {
        width: 100%;
    }

    .section-right {
        width: 100%;
    }
}

.remote-heavy-industry-hero {
    padding-bottom: 10rem;
    .hero-single-content-inner {
        max-width: 72.7rem;
        width: 100%;
    }

    .hero-content {
        gap: 5rem;
    }

    .hero-single-tagline {
        text-transform: none;
    }

    .hero-single-content-title {
        line-height: 1.063;
    }

    .hero-single-content-text {
        width: 100%;
        max-width: 64.2rem;
        font-size: 1.6rem;
        line-height: 1.55;
        color: #FFFFFF8C;
    }

    p+p {
        margin-top: 1rem;
    }
    
    .hero-btn-group {
        margin-top: 3.4rem;
    }

    .hero-image {
        max-width: 46.3rem;
        width: 100%;
        min-height: 67.3rem;
        display: flex;
        align-items: flex-end;
    }

    .tags-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
        border-top: var(--stroke-weight-1, 1px) solid rgba(255, 255, 255, 0.07);
        padding-top: 3.2rem;
        margin-top: 2.2rem;

        span {
            display: block;
            color: #FFFFFF66;
            border-radius: 5rem;
            padding: 0.6rem 1.2rem;
            background-color: rgba(255, 255, 255, 0.03);
            border: 0.1rem solid rgba(255, 255, 255, 0.10);
            font-size: 1.4rem;
            font-weight: 400;
            line-height: 1.18;
        }
    }

    @media(max-width: 991px) {
        .remote-heavy-industry-hero{
            padding-bottom: 5rem;
        }
        .hero-content {
            justify-content: center;
        }

        .hero-single-content-inner {
            max-width: 100%;
        }

        .hero-image {
            min-height: auto;
            justify-content: center;
        }
    }

    @media(max-width: 576px) {
        .hero-content {
            gap: 3rem;
        }
    }
}