@import url("https://use.typekit.net/jrg6mol.css");

@font-face {
    font-family: 'Gotham-Book';
    src: url('./fonts/Gotham-Book.woff') format('woff'),
    url('./fonts/Gotham-Book.ttf') format('ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Gotham-Medium';
    src: url('./fonts/Gotham-Medium.woff') format('woff'),
    url('./fonts/Gotham-Medium.ttf') format('ttf');
    font-weight: 500;
}

body {
    margin: 0;
    background-color: black;
    color: white;
    font-family: 'Gotham-Book';
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.header__logo {
    position: absolute;
    top: 50px;
    left: 70px;
}
@media (max-width: 768px) {
    .header__logo {
        display: none;
    }
}

.header__video {
    width: 100%;
    height: 809px;
    object-fit: cover;
}
@media (max-width: 768px) {
    .header__video {
        height: 210px;
        max-width: 100%;
    }
}

.intro__wrapper {
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
    margin-bottom: 80px;
}
@media (max-width: 768px) {
    .intro__wrapper {
        margin-top: 40px;
        margin-bottom: 50px;
        width: 90%;
        padding: 0 20px;
    }
}

.intro__title {
    font-family: 'politica';
    font-weight: 400;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.intro__text {
    font-size: 15px;
    text-align: center;
}
@media (max-width: 768px) {
    .intro__text {
        font-size: 13px;
        line-height: 23px;
    }
}

.banner__wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
}

.banner__img {
    width: 100%;
    max-width: calc(100vw - 20px);
    height: 590px;
    object-fit: cover;
    object-position: bottom;
}
@media (max-width: 768px) {
    .banner__img {
        height: auto;
        width: 100%;
        max-width: 100%;
    }
}

.banner__title {
    font-family: politica;
    font-size: 35px;
    font-weight: 400;
    margin-top: 5px;
}

.banner__text {
    width: 578px;
    max-width: calc(100vw - 80px);
    position: absolute;
    bottom: 20px;
    right: 40px;
    color: black;
    font-size: 15px;
    text-align: justify;
    line-height: 25px;
    background-color: #e5b4bb;
    padding: 40px 40px;
    box-sizing: border-box;
}
.banner__text p {
    margin-bottom: 0;
}
.banner__text a {
    color: black;
}
@media (max-width: 768px) {
    .banner__text {
        position: relative;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 20px;
    }
}

.content__wrapper {
    display: flex;
    margin: 120px 10px 120px 10px;
    width: 100%;
    max-width: calc(100vw - 20px);
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .content__wrapper {
        flex-direction: column;
        align-items: center;
        margin: 20px 0 70px 0;
        padding: 0 20px;
        width: 100%;
    }
}

.content__text {
    font-size: 15px;
    font-family: Gotham-Book;
    line-height: 25px;
    margin-top: 0;
    margin-left: 30px;
    margin-right: 50px;
    text-align: justify;
}
.content__text a {
    color: white;
}
@media (max-width: 768px) {
    .content__text {
        margin: 0 0 20px 0;
        width: 100%;
    }
}

.content__img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 768px) {
    .content__img {
        width: 100%;
        max-width: 100%;
    }
}

.images-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 120px;
    margin-bottom: 40px;
    padding: 0 10px;
    box-sizing: border-box;
}
.images-wrapper img {
    height: 466px;
    object-fit: cover;
    width: 50%;
    margin: 0 5px;
    max-width: calc(50% - 10px);
}
@media (max-width: 768px) {
    .images-wrapper {
        flex-direction: column;
        margin-top: 50px;
        padding: 0 20px;
    }
    .images-wrapper img {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 0 20px 0;
    }
}

.paragraph__wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .paragraph__wrapper {
        flex-direction: column;
        padding: 0 20px;
    }
}

.paragraph__title {
    font-size: 35px;
    font-family: politica;
    font-weight: 400;
    margin-left: 58px;
    margin-top: 0;
    max-width: 220px;
}
@media (max-width: 768px) {
    .paragraph__title {
        margin-left: 0;
        margin-bottom: 20px;
        max-width: 100%;
    }
}

.paragraph__text {
    font-family: Gotham-Book;
    font-size: 15px;
    max-width: 852px;
    margin-right: 58px;
    text-align: justify;
    line-height: 25px;
}
.paragraph__text a {
    color: white;
}
@media (max-width: 768px) {
    .paragraph__text {
        margin-right: 0;
        margin-left: 0;
        max-width: 100%;
    }
}

.content-color__wrapper {
    display: flex;
    margin-top: 120px;
    margin-bottom: 80px;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .content-color__wrapper {
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
        margin-top: 50px;
        padding: 0 20px;
    }
}

.content-color__text-wrapper {
    background-color: #e5b4bb;
    color: black;
    width: 620px;
    max-width: 100%;
    position: relative;
    top: -30px;
    right: -60px;
    z-index: 2;
    padding: 15px 40px 35px 40px;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .content-color__text-wrapper {
        top: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        padding: 40px 20px;
    }
}

.content-color__title {
    font-size: 35px;
    font-family: politica;
    font-weight: 400;
}

.content-color__text {
    font-family: Gotham-Book;
    font-size: 15px;
    text-align: justify;
    line-height: 25px;
}

.content-color__img {
    position: relative;
    right: 60px;
    max-width: 100%;
    height: 490px;
}
@media (max-width: 768px) {
    .content-color__img {
        right: 0;
        width: 100%;
        max-width: 100%;
        height: 350px;
        object-fit: cover;
    }
}

.acteurs__container {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.acteurs__title {
    font-size: 35px;
    font-family: politica;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
}
@media (max-width: 768px) {
    .acteurs__title {
        margin-bottom: 40px;
    }
}

.acteurs__wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 100%;
}
@media (max-width: 768px) {
    .acteurs__wrapper {
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: center;
    }
}

.acteurs__img {
    width: 209px;
    height: 314px;
    max-width: 100%;
}

.acteurs__item {
    width: 208px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .acteurs__item {
        margin-bottom: 20px;
        width: 100%;
        max-width: 209px;
    }
}

.acteurs__name {
    font-family: politica;
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    margin-top: 0;
    line-height: 30px;
}

.acteurs__function {
    font-family: Gotham-Book;
    font-size: 14px;
    text-align: center;
}
.acteurs__function a {
    color: black;
}

.acteurs__text {
    padding: 20px 20px 38px 20px;
    color: black;
    background-color: #e5b4bb;
    max-height: 185px;
    min-height: 135px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 40px;
    padding: 0 20px;
    box-sizing: border-box;
}
footer img {
    margin-bottom: 10px;
    max-width: 100%;
}
footer p {
    font-size: 12px;
    font-family: Gotham-Book;
    text-align: center;
}
footer a {
    color: white;
}