.c-cover-picture {
    width: 100vw;
    position: relative;
}
.c-cover-picture .bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.c-cover-picture .shadow {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(20, 20, 20, 0.5) 0%, rgba(20, 20, 20, 0.2) 100%);
}
.c-cover-picture .content-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.c-cover-picture .text-box {
    font-size: 100%;
    font-weight: normal;
    margin: 0;
}
@media (min-width: 1450px) {
    .c-cover-picture .boxed {
        width: 1400px;
    }
}
@media (max-width: 1450px) {
    .c-cover-picture .boxed {
        width: calc(100vw - 3em);
    }
}
@media (min-width: 750px) {
    .c-cover-picture {
        height: calc(100vh - 10rem);
    }
    .c-cover-picture .content-box {
        justify-content: center;
    }
}
@media (max-width: 750px) {
    .c-cover-picture {
        height: calc(92vh - 3.5em);
    }
    .c-cover-picture .boxed {
        margin-bottom: 4em;
    }
    .c-cover-picture .text-box {
        width: 90% !important;
    }
    .c-cover-picture .content-box {
        justify-content: flex-end;
    }
}
@media (max-width: 750px) and (min-width: 400px) {
    .c-cover-picture .text-box .title {
        font-size: 200% !important;
    }
    .c-cover-picture .text-box .content {
        font-size: 170% !important;
    }
}
@media (max-width: 400px) {
    .c-cover-picture .text-box .title {
        font-size: 160% !important;
    }
    .c-cover-picture .text-box .content {
        font-size: 140% !important;
    }
}
.c-cover-picture .boxed {
    color: white;
}
.c-cover-picture p {
    margin: 0;
}
