/*#region HeaderSlider*/
.header-slider {
    width: 100%;
}

.header-slider .slide {
    width: 100%;
    aspect-ratio: 1920 / 804;
    min-height: 350px;
    transition: ease-in-out .15s;
}

.header-slider .slide::before {
    content: '';
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    opacity: .3;
    z-index: 100;
}

.header-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
}

.header-slider .slide .container {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.header-slider .slide .slide__column {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0 0 25px;
}

.header-slider .slide .slide__title {
    color: var(--color-white);
    text-align: left;
    width: 100%;
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
}

.header-slider .slider-dots {
    bottom: 42px;
}

@media all and (max-width: 1024px) {
    .header-slider .slide::before {
        width: 75%;
    }

    .header-slider .slide .slide__column {
        width: 75%;
    }

    .header-slider .slide .slide__title {
        font-size: 40px;
        line-height: 50px;
    }
}

@media all and (max-width: 900px) {
    .header-slider .slide::before {
        width: 100%;
    }

    .header-slider .slide .slide__column {
        width: 100%;
    }

    .header-slider .slide .slide__title {
        font-size: 30px;
        line-height: 38px;
        text-align: center;
    }

    .slider-dots .container {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/*#endregion HeaderSlider */


/*#region SectionAbout*/
.section--about {
    padding: 71px 0;
}

.section--about .section__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section--about .section__column:nth-child(1) {
    max-width: 400px;
}

.section--about .section__column {
    width: 50%;
}

.section--about .section__image {
    max-width: 100%;
    height: 385px;
}

.section--about .section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media all and (max-width: 900px) {
    .section--about {
        padding: 50px 0;
    }

    .section--about .section__content {
        flex-direction: column;
    }

    .section--about .section__column:nth-child(1) {
        max-width: 100%;
        margin: 0 0 71px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .section--about .section__column {
        width: 100%;
    }

    .section--about .section__title {
        width: 100%;
        text-align: center;
    }

    .section--about .section__text {
        width: 100%;
        text-align: center;
    }

    .section--about .section__text br {
        display: none;
    }
}

/*#endregion SectionAbout*/


/*#region SectionPrestations*/
.section--prestations {
    padding: 85px 0 70px 0;
    background-size: cover;
background-repeat: no-repeat;
}

.section--prestations .section__title {
    width: 100%;
    text-align: center;
}

.section--prestations .section__text {
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.section--prestations .section__content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.section--prestations .items {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 84px auto 65px auto;
}

.section--prestations .items .item {
    width: calc(100% / 4);

    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

.section--prestations .items .item .item__icon {
    margin: 0 0 22px 0;
    height: 95px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.section--prestations .items .item .item__icon svg {
    max-height: 100%;
}

.section--prestations .items .item .item__title {
    font-size: 22Px;
    font-weight: 700;
    width: 100%;
    text-align: center;
}
@media all and (max-width: 1024px) {
    .section--prestations .items{
        margin:71px auto 60px auto;
    }
    .section--prestations .items .item .item__title {
        font-size:20px;
    }
}
@media all and (max-width: 900px) {

    .section--prestations .items {
        flex-wrap: wrap;
        margin:30px auto 50px auto;
    }

    .section--prestations .items .item {
        width: calc(100% / 2);
    }
    .section--prestations .items .item:nth-child(3),
    .section--prestations .items .item:nth-child(4) {
        margin-top:30px;
    }
    .section--prestations .items .item .item__title {
        font-size:18px;
    }
}
@media all and (max-width: 500px) {

    .section--prestations .items {
    }

    .section--prestations .items .item svg {
        height: 45px;
    }
    .section--prestations .items .item .item__title {
        font-size:16px;
    }

}

/*#endregion SectionPrestations*/

/*#region SectionRealisations*/
.section--realisations {
    padding: 71px 0;
}

.section--realisations .section__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section--realisations .section__column:nth-child(2) {
    max-width: 40%;
}

.section--realisations .section__column {
    width: 50%;
}

.section--realisations .section__image {
    max-width: 100%;
    height: 385px;
}

.section--realisations .section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media all and (max-width: 1100px) {
    .section--realisations .section__column:nth-child(2) {
        max-width: 45%;
    }
}

@media all and (max-width: 900px) {
    .section--realisations {
        padding: 50px 0;
    }

    .section--realisations .section__content {
        flex-direction: column-reverse;
    }

    .section--realisations .section__column:nth-child(1) {
        max-width: 100%;
        margin: 45px 0 0 0;
    }

    .section--realisations .section__column:nth-child(2) {
        max-width: 100%;
    }

    .section--realisations .section__column {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .section--realisations .section__title {
        width: 100%;
        text-align: center;
    }

    .section--realisations .section__text {
        width: 100%;
        text-align: center;
    }

    .section--realisations .section__text br {
        display: none;
    }
}

/*#endregion SectionRealisations*/
