.parallax {
    /* Set a specific height */
    min-height: 30rem;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.header-container {
    padding-top: 15rem;
}

.header {
    height: 15rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 20%, rgba(255, 255, 255, 0.85) 45%, #FFFFFF 100%);
}

.section {
    margin-top: 4rem;
}

.wrap-left {
    padding-right: 1rem;
}

.wrap-right {
    padding-left: 1rem;
}

.description {
    text-align: justify;
    font-size: 1.125rem;
    line-height: 1.5;
}

.note {
    font-size: 0.75rem;
}

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

.numbers {
    margin-bottom: 5rem;
    padding: 3rem 2rem;
    gap: 1rem;
    background: #2F3136;
    box-shadow: 4px 4px 12px 2px rgba(0, 0, 0, 0.55);
}

.numbers .number {
    font-size: 2.5rem;
    font-weight: 500;
    white-space: nowrap;
}

.numbers .number-desc {
    font-size: 0.875rem;
    font-weight: 300;
    text-align: center;
}

.img-box {
    height: 100%;
    position: relative;
}

.box-1 {
    width: calc(100% - 6rem);
    max-width: 500px;
    height: 100%;
    margin-left: auto;
    background: #2F3136;
}

.img-1 {
    width: calc(100% - 50px);
    position: absolute;
    top: 90px;
    left: 100px;
    transition-delay: 0.3s !important;
}

.box-2 {
    width: calc(100% - 8rem);
    max-width: 350px;
    height: 100%;
    margin-right: auto;
    background: #2F3136;
}

.img-2 {
    width: calc(100% - 50px - 1rem);
    position: absolute;
    left: -50px;
    top: 70px;
    transition-delay: 0.3s !important;
}

.img-box-3 {
    padding-bottom: 4rem;
}

.box-3 {
    width: 100%;
    height: 50%;
    max-height: 23rem;
    background: #2F3136;
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.locations {
    gap: 4rem;
}

.locations .img-link img {
    transition: all 0.3s ease-in-out;
}

.locations .img-link:hover img {
    transform: translateY(-1rem);
    box-shadow: 0 15px 35px rgba(50, 50, 93, .1), 0 5px 15px rgba(0, 0, 0, .07);
}

/**Styling scrollable elements*/
.js-scroll {
    opacity: 0;
    transition: opacity 500ms;
}

.js-scroll.scrolled {
    opacity: 1;
}
