.jumbotron {
    min-height: 30rem;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
}

.jumbotron h1{
    font-size: 20ch;
}

/* Marquee */
.a-section {
    padding: 0;
}

.a-section-marquee-box {
    height: 180px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.a-section-marquee-box h2 {
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 7em;
    flex-shrink: 0;
    padding: 0 10px;
    width: max-content;
    display: flex;
    align-items: center;
    transform: translateX(0);
    animation: a-text-scroll 35s linear infinite;
}
@keyframes a-text-scroll {
    0% { transform: translate3d(-100%, 0, 0); }
    100% { transform: translate3d(0%, 0, 0); }
}

/* Section Services */
.sec-services {
    width: auto;
    min-height: 20rem;
}

.d-services-1, .d-services-2, .d-services-3, .d-services-4 {
    width: 100%;
    min-height: 35rem;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
}

.d-services-1 h1, .d-services-2 h1, .d-services-3 h1 {
    font-size: 10ch;
}


.caption-services {
    padding: 10% 0;
}

.sec-services p {
    font-size: 1.4ch;
}