/* construction-mining-hero css */
.construction-mining-hero {
    padding-top: 25rem;
    padding-bottom: 20rem;
    position: relative;
}
.construction-mining-hero-blur {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 100%;
    opacity: 0.6;
}
.construction-mining-hero .hero-single-content-wrap {
    --claims-width: 18.5rem;
    position: relative;
    z-index: 2;
}
.construction-mining-hero .hero-single-content-text {
	color: rgba(var(--light-rgb), 0.5);
	max-width: 52.2rem;
}
.construction-mining-hero .hero-single-content {
    width: calc(calc(80% - (var(--claims-width))) / 1);
    max-width: 100%;
}
.construction-hero-btn-group { margin-top: 3.8rem; }
.construction-hero-right {
    width: var(--claims-width);
}
.construction-hero-right-col {
    background-color: rgba(var(--black-rgb), 0.7);
    border: 0.1rem solid rgba(var(--light-rgb), 0.1);
    border-radius: 1.4rem;
    padding: 1.6rem 2rem;
}
.construction-hero-right-col + .construction-hero-right-col {
    margin-top: 1.4rem;
}
.construction-hero-right-number {
    color: var(--primary-color);
    text-align: right;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    margin-bottom: 0.3rem;
}
.construction-hero-right-text {
    color: rgba(var(--light-rgb), 0.45);
    text-align: right;
    font-size: 1.2rem;
}

@media (max-width: 1050px) {
    .construction-mining-hero {
        padding-top: 14rem;
        padding-bottom: 8rem;
    }
    .construction-mining-hero .hero-single-content {
        width: calc(calc(76% - (var(--claims-width))) / 1);
    }
    .construction-hero-btn-group {
        margin-top: 2.8rem;
    }
    .construction-hero-right-number {
        font-size: 2rem;
    }
}
@media (max-width: 991px) {
    .construction-mining-hero .hero-single-content {
        width: calc(calc(86% - (var(--claims-width))) / 1);
    }
}
@media (max-width: 768px) {
    .construction-mining-hero .hero-single-content-wrap {
        gap: 2.5rem;
    }
    .construction-mining-hero .hero-single-content {
        width: 100%;
    }
    .construction-hero-right {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 1.2rem;
    }
    .construction-hero-right-col {
        border-radius: 0.4rem;
        padding: 1.6rem;
    }
    .construction-hero-right-col + .construction-hero-right-col { margin: 0; }
}