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

.section-first {
    height: 60vh;
    background: #000000;
    color: white;
    display: flex;
    justify-content: space-between;

}
.section-first span.img-relative {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}
.section-first span.img-relative::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(21 37 62 / 13%) 0%, rgb(0 0 0 / 100%) 102.98%);
    /* ou background: rgba(0, 0, 0, 0.5); selon l'effet voulu */
    z-index: 1;
    transition: all 0.5s ease-in-out;
}
.section-first .img-relative img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    z-index: 0;
    opacity: 0;
    transition: all .5s ease-in-out;
    animation: fadeAnimation 15s infinite;
}
.section-first .img-relative img:nth-child(1) {
    animation-delay: 0s;
}
.section-first .img-relative img:nth-child(2) {
    animation-delay: 5s;
}
.section-first .img-relative img:nth-child(3) {
    animation-delay: 10s;
}

@keyframes fadeAnimation {
    0% { opacity: 0; }
    10% { opacity: 1; }
    33.33% { opacity: 1; }
    43.33% { opacity: 0; }
    100% { opacity: 0; }
}

.section-first .content-details {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    position: absolute;
    top: 30vh;
    z-index: 2;
}
.section-first .content-details title {
    display: block;
    font-weight: 700;
    font-family: var(--font-marcellus);
    font-size: var(--h4-size);   
    text-transform: uppercase;
}
.section-first .content-details p ,
.section-first .content-details .descr {
    width: 53vw;
    text-align: center;
    line-height: 2vw;
    font-family: var(--font-name);
    font-size: var(--p-size);
}

/*===================== SECTION TWO OF WEBSITE ===========================*/

.contact-form {
    display: flex;
    gap: 2vw;
    margin: 5vw 5vw 3vw 5vw;
    /* background: linear-gradient(91deg, #505050, transparent); */
    /* background: linear-gradient(91deg, #0f2b59, transparent); */
    background: linear-gradient(91deg, #48484852, transparent);
    border-radius: 15px;
    padding: 2vw 2vw;
}

.contact-form .content-form-left {
    display: flex;
    flex-direction: column;
    gap: 2vw;
    width: 100%;
}
.contact-form .content-form-left h4 {
    font-weight: 500;
    font-family: var(--font-name);
    font-size: var(--h5-size);
}
.contact-form .content-form-left form {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}
.contact-form .content-form-left form .form-row ,
.contact-form .content-form-left form .form-text {
    display: flex;
    gap: 2vw;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}
.contact-form .content-form-left form .form-text {
    gap: 0;
}
.contact-form .content-form-left form .form-text {
    flex-direction: column;
}
.contact-form .content-form-left form .form-row .form-input {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.contact-form .content-form-left form .form-row .form-input label ,
.contact-form .content-form-left form .form-text label {
    margin-bottom: .5vw;
    font-size: var(--p-size);
    color: #fff;
    font-weight: lighter;
    font-family: var(--font-name);
}
.contact-form .content-form-left form .form-row .form-input input ,
.contact-form .content-form-left form .form-text textarea {
    border: none;
    outline: none;
    background: white;
    border-radius: 5px;
    padding: .81vw .9vw;
    font-weight: normal;
    font-size: var(--p-size);
    width: 100%;
}
.contact-form .content-form-left form .form-row .form-input input::placeholder {
    color:rgb(169, 163, 163);
}
.contact-form .content-form-left form button {
    align-self: flex-end;
    position: relative;
    background: #ffffff;
    width: fit-content;
    color: #000000;
    text-transform: uppercase;
    font-size: var(--p-size);
    font-weight: 500;
    padding: 0.85vw 2vw;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #000;
    transition: all .5s ease-in-out;
}
.contact-form .content-form-left form button:hover {
    background: transparent;
    color: white;
    border: 1px solid #fff;
    transition: all .5s ease-in-out;
}

.contact-form .content-form-right {
    width: 55%;
    background: linear-gradient(-83deg, #ffffffa1 -107%, #000e41cf 100%);
    /* background: #000e41cf; */
    backdrop-filter: blur(10px);
    padding: 2vw;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 2vw;
}
.contact-form .content-form-right .details-adress {
    display: flex;
    gap: 1vw;
    justify-content: flex-start;
    align-items: center;
    background: #74747440;
    padding: 1.25vw 1vw;
    border-radius: 5px;
    border: 1px solid #ffffff4f;
}
.contact-form .content-form-right .details-adress a {
    text-decoration: underline;
}
.contact-form .content-form-right .details-adress .icon-fa {
    font-size: 1vw;
    background: white;
    color: #0f2b59;
    border-radius: 50%;
    width: 3vw;
    height: 3vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-form .content-form-right .details-adress .list {
    display: flex;
    flex-direction: column;
    gap: .5vw;
    justify-content: center;
    align-items: flex-start;
}
.contact-form .content-form-right .details-adress .list .text {
    font-size: var(--p-size);
    font-weight: 500;
    text-transform: uppercase;
}

.section-map {
    padding: 2vw 5vw 3vw 5vw ;
}
.section-map figure {
    width: 100%;
    height: 450px;
}
.section-map figure iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
/* width="600" height="450" */

/*===================== RESPONSIVE OF SECTIONS__WEBSITE ===========================*/

@media (max-width:768px) {

    .section-first .content-details title {
        font-size: 8vw;
        text-align: center;
    }
    .section-first .content-details p, .section-first .content-details .descr {
        width: 89vw;
        text-align: center;
        line-height: 5vw;
        font-weight: 100;
        font-size: 3.5vw;
    }
    .section-first .content-details {
        gap: 4vw;
        top: 28vh;
        z-index: 2;
    }
    
    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 6vw;
    }
    .contact-form .content-form-left {
        gap: 4vw;
    }
    .contact-form .content-form-left h4 {
        font-size: 6vw;
        font-weight: 300;
    }
    .contact-form .content-form-left form {
        display: flex;
        flex-direction: column;
        gap: 4vw;
    }
    .contact-form .content-form-left form .form-row, .contact-form .content-form-left form .form-text {
        display: flex;
        flex-direction: column;
        gap: 3vw;
    }
    .contact-form .content-form-left form .form-row .form-input {
        flex-direction: column;
        gap: 2vw;
    }
    .contact-form .content-form-left form .form-row .form-input label, 
    .contact-form .content-form-left form .form-text label {
        margin-bottom: 0vw;
        font-size: 4vw;
        color: #fff;
        font-weight: 100;
        font-family: var(--font-name);
    }
    .contact-form .content-form-left form .form-row .form-input input, 
    .contact-form .content-form-left form .form-text textarea {
        border-radius: 5px;
        padding: 3vw;
        font-weight: normal;
        font-size: 21px;
        width: 100%;
    }
    .contact-form .content-form-left form .form-text label {
        margin-bottom: -1vw;
    }
    .contact-form .content-form-left form button {
        font-size: 4.5vw;
        font-weight: 500;
        padding: 2.85vw 5vw;
    }
    .contact-form .content-form-right {
        width: 100%;
        padding: 5vw 4vw;
        gap: 6vw;
    }
    .contact-form .content-form-right .details-adress {
        gap: 1vw;
        padding: 3.25vw 3vw;
    }
    .contact-form .content-form-right .details-adress .icon-fa {
        font-size: 8vw;
        background: transparent;
        color: white;
        width: 13vw;
        height: 13vw;
        margin-right: 12px;
    }

    .contact-form .content-form-right .details-adress .list {
        flex-direction: column;
        gap: 2.5vw;
    }
    .contact-form .content-form-right .details-adress .list .text {
        font-size: 20px;
    }
    .contact-form .content-form-right .details-adress a {
        text-decoration: underline;
        font-size: 19px;
    }

    .section-map {
        padding: 2vw 5vw 5vw 5vw;
    }

}