/* --------------------HOME PAGE-------------------- */
.section {
    position: relative;
}
.section__bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.section__bg-image.--contain {
    object-fit: contain;
}
.section__bg-image.--cover {
    object-fit: cover;
}
.section__info {
    padding: 1.5rem;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    max-width: 640px;
    margin: 0 auto;
}
.section__notation {
    color: #fff;
    opacity: 0.6;
    max-width: 300px;
    text-align: end;
    align-self: end;
    margin-top: auto;
}
@media screen and (max-width: 1400px) {
    .section__info {
        padding: 1rem;
        font-size: 1rem;
    }
}

.section .container {
    padding-top: 100px;
    padding-bottom: 74px;
}
@media screen and (max-width: 1024px) {
    .section .container {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .section .container:last-child {
        padding-bottom: 74px;
    }
}

#section-9 .section__bg-image {
    filter: brightness(30%);
}
#section-9 .logo {
    margin-top: 10%;
    margin-bottom: 2rem;
    height: 180px;
    position: relative;
}
#section-9 .logo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#section-9 .logo::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 256px;
    height: 1px;
    box-shadow: 0px 0px 128px 64px var(--color-blue);
}