
.page-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-black);
    min-height: 400px;
}
.page-header:not(.video){
  padding: 90px 0;
}

.page-header.video{

}
.page-header .page-header__image {
    max-width: 90%;
    z-index: 50;
}
.page-header .page-header__video {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height: 100%;
    z-index: 100;
    object-fit: cover;
    object-position: center top;
}
.page-header .page-header__motif {
    max-width: 13%;
    position: absolute;
    bottom:0;
    right: 0;
    z-index: 100;
}

.section--about {
    margin: 75px 0;
}

.section--about .container {
    display: flex;
    justify-content: space-between;
}

.section--about .section__column:nth-child(1) {
    width: calc(60% - 50px);
}

.section--about .section__column:nth-child(2) {
    width: calc(40% - 50px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.section--about .section__text{}
.section--about .section__text h3{
    color:var(--color-primary);
    text-transform: uppercase;
    font-size:20px;
    margin: 30px 0 -8px 0;
    font-weight: 550;
    letter-spacing: .5px;
}
.section--about .section__text p:not(:first-child){
    margin: 16px 0 0 0;
}
.section--about .section__image {
}

.section--about .section__image img {
   
}

@media all and (max-width: 1024px) {
    .section--about .container {
        flex-direction: column;
    }

    .section--about .section__column:nth-child(1) {
        width: 100%;
    }

    .section--about .section__column:nth-child(2) {
        width: 100%;
        margin-top: 50px;
    }
}


.section--team {
    padding: 65px 0;
    background: var(--color-primary);
}

.section--team .container {
    max-width: 1160px;
}

.section--team .section__header {
    margin-bottom: 65px;
}

.section--team .section__title {
    width: 100%;
    text-align: center;
    color: var(--color-black);
}

.section--team .section__text {
    width: 100%;
    max-width: 800px;
    margin: 31px auto 0 auto;
    text-align: center;
    color: var(--color-white);
}

.section--team .items {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 56px 0;
}

.section--team .item {

    width: calc(100% / 3 - 20px);
    max-width: 317px;
}

.section--team .item .item__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--color-black);
}
.section--team .item .item__image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
    object-fit: cover;
}
.section--team .item .item__content {

}

.section--team .item .item__title {
    color: var(--color-white);
    width: 100%;
    text-align: center;
    margin: 33px 0 0 0;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 550;
    letter-spacing: .5px;
}

.section--team .item .item__job {
    color: var(--color-white);
    width: 100%;
    text-align: center;
    margin: 0;
    line-height: 1.3;
    font-weight: 550;
    letter-spacing: .5px;
    font-size: 18px;
}

.section--team .item .item__text {
    color: var(--color-white);
    width: 100%;
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
    margin: 15px 0 0 0;
    text-wrap: balance;
}

@media all and (max-width: 1024px) {
    .page-header {
    height:300px;
    min-height: 300px;
}
    .section--team .item .item__title {
        font-size: 20px;
    }
    .section--team .item .item__job {
        font-size: 16px;
    }
    .section--team .item .item__text {
        font-size: 16px;
    }
}

@media all and (max-width: 768px) {

}
.section--documents {
    margin: 100px 0;
}

.section--documents .container {
    display: flex;
    justify-content: space-between;
}

.section--documents .section__column:nth-child(1) {
    width: calc(30% - 50px);
}

.section--documents .section__column:nth-child(2) {
    width: calc(70% - 50px);
}
.section--documents .section__header {
    margin: 0 0 4Px 0;
}
.section--documents .section__subtitle {
    text-transform: uppercase;
}
.section--documents .section__image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.section--documents .section__image img {
    max-width: 100%;
    max-height: 100%;

}
.section--documents .section__footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}


@media all and (max-width: 1024px) {
    .section--documents .container {
        flex-direction: column;
    }
    .section--documents .section__column:nth-child(1) {
        width: 100%;
        margin: 0 0 50px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .section--documents .section__image {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .section--documents .section__column:nth-child(2) {
        width: 100%;
    }
    .section--team .items {
        justify-content: space-around;
    }
    .section--team .item {
        width: calc(100% / 2 - 20px);
        max-width: 350px;
    }

}
@media all and (max-width: 768px) {
    .section--team .item {
        width: 100%;
    }
}
