.contact-form-section {
	display: flex;
    min-height: 100vh;
    
}

.contact-form-col--1,
.contact-form-col--2 {
	display: flex;
    flex-direction: column;
    width: 50%;
    position: relative;
}

.contact-form-image {
	display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.contact-form-image__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.contact-form-image__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 42.92%,
        rgba(0, 0, 0, 0.6) 100%
    );
    pointer-events: none;
}

.contact-form-content,
.contact-form-col--2 {
	padding: 0 var(--gutters);
}
.contact-form-content{
    margin-top: auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-bottom: 2rem;
}
.contact-form-title h1, .contact-form-title h2, .contact-form-infos p, .contact-form-infos a{
    margin : 0;
}
.contact-form-title h1 span, .contact-form-title h2 span, .contact-form-infos p span, .contact-form-infos a{
    color: var(--wp--preset--color--beige-clair);
}
.contact-form-link{
    color: var(--wp--preset--color--beige-clair)!important;
    text-decoration: underline;
    width: fit-content;
    font-family: "Faculty Glyphic", sans-serif;
}
.contact-form-infos{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form-wrapper{
    display: flex;
    flex-direction: column;
}
.contact-form-col--2{
    justify-content: center;
}
/* CONTACT FORM */
.contact-form-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.wpcf7{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.contact-form{
    display: flex;
    flex-direction: column;
}
.contact-wrapper{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.contact-wrapper-title{
    margin : 0;
    color:  #1624D3;
    font-family: "Faculty Glyphic", sans-serif;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    cursor: pointer;
}
.contact-wrapper-title.is-selected{
    font-size: 18px;
    font-weight: 800;
}
.contact-wrapper-icon{
    display: flex;
    width: 34px;
    height: 34px;
    background: url('../../../assets/svg/arrow-down.svg') no-repeat center;
    transition: transform 0.3s ease;
}
.contact-wrapper-title.active .contact-wrapper-icon{
    transform: rotate(180deg);
}
.form-select{
    display: none;
}
.form-infos{
    display: flex;
    flex-direction: row;
    gap: 4%;
}
.contact-label{
    display: flex;
    flex-direction: column;
    width: 48%;
}
.contact-label p{
    display: flex;
    width: 100%;
}
.wpcf7-form-control-wrap{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.wpcf7-form-control-wrap input, .textarea-container textarea, .form-btn-upload{
    border: 0;
    border-bottom: 1px solid #1624D3;
    border-radius: 0;
    padding: 0;
    padding-bottom: 1rem;
    background: transparent;
    color: #1624D3;

}
.textarea-container{
    width: 100%;
}
.textarea-container textarea::placeholder, .wpcf7-form-control-wrap input::placeholder{
    color: #1624D3;
    font-family: "Faculty Glyphic", sans-serif;
    font-size: 15px;
}
.contact-form-btn{
    font-family: "Faculty Glyphic", sans-serif;
    font-size: 15px;
    border: 0;
    border-radius: 0;
    background: transparent;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}
.contact-form-btn a{
    color: #1624D3;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.contact-form-btn a span{
    margin-left: 1rem;
    display: flex;
    width: 34px;
    height: 34px;
    background: url('../../../assets/svg/arrow-down.svg') no-repeat center;
    transform: rotate(-90deg);
}
.form-upload{
    display: none;
}
.form-btn-upload-wrapper, .form-btn-upload-wrapper p, .form-btn-upload-wrapper button{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.form-btn-upload-wrapper button {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-family: "Faculty Glyphic", sans-serif;
}
.form-btn-upload-icon{
    display: flex;
    width: 34px;
    height: 34px;
    background: url('../../../assets/svg/upload.svg') no-repeat center;
}
.btns-select-wrapper{
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows ease .3s;
}
.btns-select-wrapper.active{
    grid-template-rows: 1fr;
}
.btns-select-wrapper .btns-select-list{
    overflow: hidden;
    transition: max-height ease .3s;
    max-height: 0;
}
.btns-select-wrapper.active .btns-select-list{
    max-height: 500px;
}
.btns-select-wrapper .btns-select-list p{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.select-btn{
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #1624D3;
    line-height: 1;
    padding: 0;
    font-size: 15px;
    display: flex;
    width: fit-content;
    font-family: "Faculty Glyphic", sans-serif;
    cursor: pointer;
    padding-left: 1rem;
}
.select-btn.active{
    text-decoration: underline;
    text-underline-offset: 0.25em;
}
.form-btn-upload.active{
    color: #1624D3;
}
.contact-form-home-link{
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: "Faculty Glyphic", sans-serif;
    font-size: 15px;
    color: #1624D3!important;
    padding-bottom: 2rem;
}
.contact-form-home-link span{
    display: flex;
    width: 34px;
    height: 34px;
    background: url('../../../assets/svg/arrow-down.svg') no-repeat center;
    transform: rotate(90deg);
}
@media (max-width: 768px) {
    .contact-form-section {
        flex-direction: column;
    }
    .contact-form-col--1,
    .contact-form-col--2 {
        width: 100%;
        position: relative;
    }
    .contact-form-col--1{
        padding-top: 100px;
    }
    .contact-form-content{
        margin-top: 0;
        padding-bottom: 0;
    }
}
