.contact-page{
    display: flex;
    position: relative;
    min-height: 100vh;
    padding-top: 10rem;
    justify-content: center;
    & img{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
    }
    & .contact-wrapper{
        display: flex;
        width: 100%;
        max-width: 1700px;
        padding: 0 var(--container-space);
        & .contact-infos-wrapper{
            display: flex;
            flex-direction: column;
            width: 50%;
            & .contact-text{
                padding-bottom: 1rem;
                color: var(--wp--preset--color--blanc);
            }
            & .contact-infos{
                display: flex;
                flex-direction: column;
                gap: 1rem;
                & .contact-info-item{
                    display: flex;
                    padding: 16px 20px;
                    color: var(--wp--preset--color--vert);
                    font-family: Raleway;
                    font-size: 15px;
                    font-weight: 600;
                    border-radius: 50px;
                    border: 1px solid var(--wp--preset--color--vert);
                    background: rgba(135, 190, 58, 0.20);
                    backdrop-filter: blur(5px);
                    width: fit-content;
                }
            }
        }
        & .contact-form{
            display: flex;
            flex-direction: column;
            width: 50%;
            & .wpcf7{
                display: flex;
                flex-direction: column;
                width: 100%;
                & form{
                    display: flex;
                    flex-direction: column;
                    width: 100%;
                    & .contact-form{
                        display: flex;
                        flex-direction: column;
                        width: 100%;
                        & .contact-wrapper, & .textarea-container{
                            display: flex;
                            width: 100%;
                            padding: 0;
                            justify-content: space-between;
                            & p{
                                display: flex;
                                width: 48%;
                                margin: 0.5rem 0;
                                & span{
                                    display: flex;
                                    flex-direction: column;
                                    width: 100%;
                                    & input{
                                        display: flex;
                                        width: 100%;
                                        border-radius: 15px;
                                        border: 1px solid var(--wp--preset--color--vert);
                                        background: var(--wp--preset--color--blanc);
                                        padding: 15px 0px 15px 20px;

                                    }
                                    & textarea{
                                        display: flex;
                                        width: 100%;
                                        border-radius: 15px;
                                        border: 1px solid var(--wp--preset--color--vert);
                                        background: var(--wp--preset--color--blanc);
                                        padding: 15px 0px 15px 20px;
                                        height: 150px;
                                    }
                                }
                            }
                            &.one-input{
                                & p{
                                    width: 100%;
                                }
                            }
                        }
                        & .textarea-container{
                            & p{
                                width: 100%
                            };
                        }
                    }
                }
            }
            & p{
                & .green-btn{
                    display: flex;
                    padding: 8px 8px 8px 15px;
                    align-items: center;
                    border-radius: 60px;
                    background-color: var(--wp--preset--color--vert);
                    color: var(--wp--preset--color--noir);
                    width: fit-content;
                    font-size: var(--wp--preset--font-size--s-text);
                    font-weight: 600;
                    & a{
                        display: flex;
                        align-items: center;
                        gap: 0.5rem;
                        transition: gap 0.3s ease;
                        & span{
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 40px;
                            height: 40px;
                            border-radius: 100%;
                            border: solid 1px var(--wp--preset--color--blanc);
                            background: rgba(255, 255, 255, 0.20);
                            backdrop-filter: blur(5px);
                            &::after{
                                content: '';
                                width: 40px;
                                height: 40px;
                                background: url(../../../assets/svg/btn_arrow_2.svg) no-repeat center center;
                            }
                        }
                    }
                    &:hover{
                        cursor: pointer;
                        & .green-btn{
                            gap: 1.5rem;
                        }
                    }
                }
            }
        }
    }
    &::after{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}
@media (max-width: 576px) {
    .contact-page{
        padding-top: 7rem;
        & .contact-wrapper{
            flex-direction: column;
            & .contact-infos-wrapper{
                width: 100%;
                & .contact-text{
                    & h1{
                        & span{
                            font-size: var(--wp--preset--font-size--l-title)!important;
                        }
                    }
                }
            }
            & .contact-form{
                width: 100%;
                padding-top: 2rem;
                & .wpcf7{
                    & form{
                        & .contact-form{
                            width: 100%;
                            & .contact-wrapper, & .textarea-container{
                                flex-direction: column;
                                & p{
                                    display: flex;
                                    width: 100%;
                                    & span{
                                        display: flex;
                                        flex-direction: column;
                                        width: 100%;
                                        & input{
                                            display: flex;
                                            width: 100%;
                                            border-radius: 15px;
                                            border: 1px solid var(--wp--preset--color--vert);
                                            background: var(--wp--preset--color--blanc);
                                            padding: 15px 0px 15px 20px;

                                        }
                                        & textarea{
                                            display: flex;
                                            width: 100%;
                                            border-radius: 15px;
                                            border: 1px solid var(--wp--preset--color--vert);
                                            background: var(--wp--preset--color--blanc);
                                            padding: 15px 0px 15px 20px;
                                            height: 150px;
                                        }
                                    }
                                }
                                &.one-input{
                                    & p{
                                        width: 100%;
                                    }
                                }
                            }
                            & .textarea-container{
                                & p{
                                    width: 100%
                                };
                            }
                        }
                    }
                }
                & p{
                    & .green-btn{
                        display: flex;
                        padding: 8px 8px 8px 15px;
                        align-items: center;
                        border-radius: 60px;
                        background-color: var(--wp--preset--color--vert);
                        color: var(--wp--preset--color--noir);
                        width: fit-content;
                        font-size: var(--wp--preset--font-size--s-text);
                        font-weight: 600;
                        & a{
                            display: flex;
                            align-items: center;
                            gap: 0.5rem;
                            transition: gap 0.3s ease;
                            & span{
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                width: 40px;
                                height: 40px;
                                border-radius: 100%;
                                border: solid 1px var(--wp--preset--color--blanc);
                                background: rgba(255, 255, 255, 0.20);
                                backdrop-filter: blur(5px);
                                &::after{
                                    content: '';
                                    width: 40px;
                                    height: 40px;
                                    background: url(../../../assets/svg/btn_arrow_2.svg) no-repeat center center;
                                }
                            }
                        }
                        &:hover{
                            cursor: pointer;
                            & .green-btn{
                                gap: 1.5rem;
                            }
                        }
                    }
                }
            }
        }
        &::after{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: -1;
        }
    }
    
}