/*===================== SECTION FIRST OF WEBSITE ===========================*/

.section-banner {
    width: 100%;
    height: 35vw;
    position: relative;
    justify-content: center;
    display: flex;
}

.section-banner figure.img-style {
    width: 100%;
    height: 35vw;
    position: absolute;
}
.section-banner figure.img-style::after {
    content: "";
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    background: linear-gradient(119deg, rgb(0 0 0 / 35%) 0%, rgb(0 0 0 / 51%) 30.61%, rgb(17 34 63 / 33%) 101.98%);
    top: 0;
    left: 0;
    right: 0;
}
.section-banner figure.img-style img {
    width: 100%;
    height: 100%;
    display: block;
}

.section-banner .details-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 3;
    align-items: center;
    height: 100%;
    padding: 0vw 13vw;
    gap: 3vw;
    color: white;
}

/*===================== SECTION SECUND OF WEBSITE ===========================*/

.info-contact {
    padding: 0vw 5.2083vw 2.1562vw;
}
.info-contact .title-accroche {
    display: block;
    font-family: var(--font-name);
    font-size: var(--h5-size);
    line-height: 2.968vw;
    text-align: center;
    /* color: var(--color-secundary); */
}
.info-contact .details-address {
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid var(--color-primary);
}
.info-contact .details-address .contact {
    align-items: center;
    gap: 1.1vw;
    /* border-right: 1px solid var(--color-primary); */
}
.info-contact .details-address .contact .icon {
    font-size: 2vw;
}
.info-contact .details-address .contact .title {
    display: block;
    font-family: var(--font-name);
    font-size: var(--h5-size);
    line-height: 2.968vw;
    text-align: center;
    color: var(--color-secundary);
}

/*===================== SECTION FIRST OF WEBSITE ===========================*/

.section-contact {
    padding: 1vw 5.2083vw;
}
.section-contact .section-form-contact .field-input .icon {
    margin: auto;
    top: 0;
    bottom: 0;
    text-align: center;
    color: var(--color-secundary);
}
.section-contact .section-form-contact .field-input input,
.section-contact .section-form-contact .field-input textarea {
    background: #4c5e7d17;
}
.section-contact .section-form-contact .field-input .icon.message {
    top: 0;
    margin: inherit;
}
.section-contact .section-form-contact button {
    border: none;
    background: var(--color-primary);
    width: fit-content;
    padding: 1.5vw 2vw;
    background: var(--color-primary);
    transition: all .5s ease-in-out;
    border: 1px solid var(--color-primary);
    cursor: pointer;
}
.section-contact .section-form-contact button:hover {
    background: transparent;
    border: 1px solid var(--color-primary);
    transition: all .5s ease-in-out;
    color: var(--color-secundary);
}

/*===================== SECTION FIRST OF WEBSITE ===========================*/

.contact-quick {
    padding: 3vw 5.2083vw;
}
.contact-quick .title-accroche {
    color: var(--color-error);
    font-size: 2vw;
}
.contact-quick .list-others-contact {
    margin: 2vw 0;
}
.contact-quick .list-others-contact .one-adress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    transition: all .5s ease-in-out;
}
.contact-quick .list-others-contact .one-adress.actif,
.contact-quick .list-others-contact .one-adress:hover {
    background: #4c5e7d17;
    transition: all .5s ease-in-out;
}
.contact-quick .list-others-contact .one-adress .logo {
    width: 10vw;
    height: auto;
    display: block;
    position: relative;
}
.contact-quick .list-others-contact .one-adress .logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    filter: saturate(100%) brightness(0%);
    transition: all .5s ease-in-out;
}
.contact-quick .list-others-contact .one-adress.actif .logo img ,
.contact-quick .list-others-contact .one-adress:hover .logo img {
    filter: none;
    transition: all .5s ease-in-out;
}


@media (max-width:768px) {

    .section-banner {
        width: 100%;
        height: 70vh;
    }
    .info-contact .details-address {
        margin-top: 5vw;        
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .section-banner figure.img-style {
        width: 100%;
        height: 70vh;
    }
    .info-contact .details-address .contact .icon {
        font-size: 7vw;
    }
    .info-contact .details-address .contact {
        gap: 4.1vw;
    }
    .info-contact .details-address .contact .title {
        font-size: 4vw;
        line-height: normal;
    }
    .section-contact .section-form-contact button {
        padding: 3.5vw 4vw;
        font-size: 4.5vw;
    }

}