.hero {
    height: 93.75rem;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 81.25rem;
    z-index: -1;
}

.hero__wrapper {
    height: 61.25rem;
    width: 100%;
    padding: 7.5rem 1.875rem;
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-left: 3.125rem;
    padding-top: 2.5rem;
}

.hero__illustration {
    position: absolute;
    height: 48.5rem;
}

.hero__title {
    z-index: 10;
    font-size: 4.6875rem;
    line-height: 0.85;
    font-weight: 600;
    color: var(--white);
}

.hero__title-accent {
    color: var(--orange);
}

.hero__subtitle {
    z-index: 10;
    font-size: 1.625rem;
    line-height: 1.33;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
}



.hero__panel {
    position: relative;
    display: grid;
    grid-template-columns: .65fr 1fr;
    grid-template-rows: auto auto;
    column-gap: 2.5rem;
    padding: 3.75rem;
    background: var(--dark);
    border-radius: 0.1875rem;
}

.hero__panel-title {
    grid-column: 1;
    grid-row: 1;
    font-size: 2.875rem;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--white);
}

.hero__panel-text {
    grid-column: 1;
    grid-row: 2;
    margin-top: 3.375rem;
    font-size: 1.125rem;
    line-height: 1.4;
    color: var(--white);
}

.hero__industries {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0.9375rem;
    row-gap: 2.5rem;
    align-content: start;
}

.hero__industry--industry {
    margin-right: -3.75rem;
    margin-left: -1.25rem;
    padding: 1.875rem;
    padding-left: 1.5625rem;
    border-radius: 0.25rem;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    background: #864a2e; 
}
.hero__industry--industry .hero__industry-text {
    color: #FFF;
}

.hero__industry-title {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.875rem;
}

.hero__industry-text {
    font-size: 1.375rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--text);
    max-width: 95%;
}

@media(max-width: 1024px) {
    .hero__panel-text { font-size: 1.35rem; }
    .hero__industry-title { margin-bottom: 1rem;}
    .hero__wrapper { padding: 1rem 1.875rem; }
    .hero__wrapper { position: relative; overflow: hidden; height: 49rem; }
    .hero__content { padding-bottom: 2rem; }
    .hero__illustration { height: 46rem; object-fit: cover; object-position: left; }
    .hero__wrapper { height: 47.5rem;}
    .hero__panel { margin-top: 5rem; }
    .hero__nav, .hero__cta { display: none; }
    .hero__industries { margin-top: 4rem; }
    .hero { height: 120rem; }
    .hero__industry--industry { margin-left: 0; margin-right: 0; }
    .hero__panel, .hero__industries { display: flex; flex-direction: column; }
}

@media(max-width: 768px) {
    .hero { height: 140rem;}
    .hero__address { display: none; }
    .hero__panel { padding: 4rem 3rem; }
    .hero__industry-text { max-width: 100%; }
}