/* section 1 */
.join-us .section-1 {
    position: relative;
    padding-top: 270px;
    padding-bottom: 80px;
}

.join-us .section-1 .bg-section {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    object-fit: cover;
    z-index: -1;
}

.join-us .section-1 .filter {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(14, 57, 76, 0.95), rgba(14, 57, 76, 0.95));
    z-index: -1;
}

.join-us .section-1 .heading {
    font-weight: 700;
    font-size: 35px;
	padding-bottom:20px;
}

.join-us .section-1 .sub-heading {
    color: white;
    font-size: 22px;
    font-weight: 700;
}

.join-us .section-1 .description {
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 40px;
    margin-top: 15px;
    text-align: justify;
}

.join-us .section-1 .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.join-us .section-1 .content .left-sd {
    width: 55%;
}

.join-us .section-1 .content .right-sd {
    width: 40%;
}

.join-us .section-1 .content .right-sd .img-sd {
    width: 100%;
}

/* section 1 end */

/* section 2 */

.join-us .section-2{
    padding: 60px 0px;
}
.join-us .section-2 .title{
    padding-bottom: 50px;
    font-weight: 700;
}
.join-us .section-2 .team-crds{
    display: flex
    ;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        column-gap: 4%;
        row-gap: 100px;
}
.join-us .section-2 .team-crds .member-crd{
    width: 30%;
    display: flex
;
column-gap: 2%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    box-shadow: 0px 0px 10px 5px rgba(0, 35, 73, 0.3);
    background: white !important;
    outline: 5px solid white !important;
    border: 3px solid #cbcbcb !important;
    color: #0E394C !important;
    height: -webkit-fill-available;
}
.join-us .section-2 .team-crds .member-crd .member-img{
    position: relative;
    display: flex
;
    justify-content: center;
    align-items: center;
    width: 40%;
}
.join-us .section-2 .team-crds .member-crd .member-img img{
    position: absolute;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}
.join-us .section-2 .team-crds .member-crd .member-infos{
    width: 58%;
    padding: 20px 0px;
}
.join-us .section-2 .team-crds .member-crd .member-infos .member-name{
    color: #0E394C;
    font-size: 19px;
    font-weight: 700;
}
.join-us .section-2 .team-crds .member-crd .member-infos .member-job{
    color: #0E394C;
    font-size: 16px;
    font-weight: 400;
}


/* section 2 end */


/* section 3 */
.join-us .section-3{
    padding: 50px 0px;
    background: linear-gradient(180deg, #F7F8FA 0%, #F2EDE8 100%);
}
/* heading part */
.join-us .section-3 .heading { 
    padding: 30px 0px;
}
.join-us .section-3 .heading .title{
    font-size: 30px;
    font-weight: 600;
}
.join-us .section-3 .heading .sub-title{
    font-size: 17px;
}

/* contact form */
.contact-frm .inpt-groupe label{
    padding-left: 25px;
    color: #0E394C;
    font-weight: 600;
}
.contact-frm .inpt-groupe.inpt-icn{
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.contact-frm .inpt-groupe.inpt-file {
    position: relative;
    display: flex
;
    flex-direction: column;
    row-gap: 10px;
}
.contact-frm .inpt-groupe.inpt-icn .icn{
    position: absolute;
    right: 10%;
    z-index: 9;
}
.contact-frm .inpt-groupe.inpt-icn .inpt-txt{
    width: 100%;
    background: rgba(0, 35, 73, 0.1);
    border: none;
    padding: 10px 57px 10px 30px;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 2px solid #0E394C ;
}
.contact-frm .inpt-groupe.inpt-icn .inpt-txt:focus,
.contact-frm .inpt-groupe.inpt-icn .inpt-txt:active {
    background: rgb(5 5 5 / 4%);
    color: #0E394C;
    outline: none; /* Optional: Removes the default outline */
    box-shadow: 0px 0px 10px rgba(0, 35, 73, 0.5);
}
.contact-frm .inpt-groupe.inpt-icn .inpt-txt:focus-visible{
    outline: none;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.contact-frm .inpt-groupe.civility{
    width: 32%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact-frm .inpt-groupe.civility input:checked {
    background-color: #c98e4a;
    border-color: #c98e4a;
}
.contact-frm .inpt-groupe{
    width: 32% !important;
}
.contact-frm .inpt-groupe.inpt-icn .inpt{
    display: flex;
    align-items: center;
}
.contact-frm .inpt-groupe.check-box.readApp{
    width: 68%;
}
.contact-frm .inpt-groupe.check-box.readApp input:checked {
    background-color: #c98e4a;;
    border-color: #c98e4a;
}
.contact-frm .inpt-groupe.submit{
    display: flex;
    align-items: center;
}
.contact-frm .inpt-groupe.submit p{
    width: 100%;
    margin: 0;
}
.contact-frm .inpt-groupe.submit input{
    margin-top: 19px;
    width: 100%;
}

.contact-frm .inpt-groupe.inpt-icn.message .inpt-txt{
    padding-left: 80px;
}
.contact-frm .inputs{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 2%;
    row-gap: 40px;
}
.contact-frm .inpt-groupe.civility .inpt{
    display: flex;
        column-gap: 9%;
        justify-content: center

}
.contact-frm .inpt-groupe.civility .inpt p{
    margin: 0;
}
.contact-frm .inpt-groupe.civility .wpcf7-list-item-label{
    display: none;
}
.contact-frm .inpt-groupe.civility .inpt .check-1{
    display: flex;
    column-gap: 30%;
    flex-direction: row-reverse;
}
.contact-frm .inpt-groupe.message .inpt p{
    width: 100%;
}
.contact-frm .inpt-groupe.inpt-file{

}
.contact-frm .inpt-groupe.inpt-file input#file-upload-button{
    display: none;
}
#file-upload-button {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}
.contact-frm .inpt-groupe.inpt-file input{
    width: 100%;
    background: rgba(0, 35, 73, 0.1);
    border: none;
    padding: 10px 57px 10px 30px;
    position: relative;
    transition: background 0.3sease, color 0.3sease, box-shadow 0.3sease;
}
.contact-frm .inpt-groupe.inpt-file .inpt{

}
.contact-frm .inpt-groupe.inpt-file .inpt .cloud-icn{

}
.contact-frm .inpt-groupe.inpt-file .inpt .cloud-icn .icn{

}
.contact-frm .inpt-groupe.inpt-file .msg{
    display: flex;
    column-gap: 7px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
	    font-size: 12px;
}
.contact-frm .inpt-groupe.inpt-file .msg p{
    font-size: 12px;
    margin: 0;
}
.contact-frm .inpt-groupe.inpt-file .msg img{

}
/* contact form end */


/* section 3 end */



/* responsive  1200 */
@media screen and (max-width:1200px) {
    .contact-frm .inpt-groupe.civility .inpt {
        column-gap: 9%;
        justify-content: start;
    }
    .contact-frm .inpt-groupe.civility .inpt .check-1 {
        column-gap: 20%;
    }
}

/* responsive  1200 end*/

/* responsive  992 */
@media screen and (max-width:992px) {
    .contact-frm .inpt-groupe.lettre {
        width: 49%;
    }
    .contact-frm .inpt-groupe.cv {
        width: 100% !important;
    }
    .contact-frm .inpt-groupe.fonction {
        width: 49%;
    }
    .contact-frm .inpt-groupe.nivetude {
        width: 49%;
    }
    .contact-frm .inpt-groupe.yearsexp {
        width: 49%;
    }
    .contact-frm .inpt-groupe.domainexp {
        width: 49%;
    }
    .contact-frm .inpt-groupe.phone {
        width: 49%;
    }
    .contact-frm .inpt-groupe.email {
        width: 49%;
    }
    .contact-frm .inpt-groupe.name {
        width: 49%;
    }
    .contact-frm .inpt-groupe.civility {
        width: 49%;
    }
    .contact-frm .inputs {
justify-content: center;
    }
    .contact-frm .inpt-groupe.check-box.readApp {
        width: 100%;
    }
}

/* responsive  992 end */

/* responsive  768  */
@media screen and (max-width:768px) {
	.contact-frm .inpt-groupe.inpt-icn.message .inpt-txt {
    padding-left: 30px;
}
	.contact-frm .inpt-groupe.submit {
    width: 100% !important;
    justify-content: center;
}
	    .contact-frm .inpt-groupe.civility .inpt .check-1 {
        column-gap: 40% !important;
    }
	.contact-frm .inpt-groupe.civility {
        width: 100%;
    }
	    .contact-frm .inpt-groupe.cv {
        width: 100%;
    }
	    .contact-frm .inpt-groupe.lettre {
        width: 100%;
    }

    .join-us .section-1 .content {
        flex-wrap: wrap;
    }
    .join-us .section-1 .content .left-sd {
        width: 100%;
    }
    .join-us .section-1 .content .right-sd {
        width: 100%;
    }
    .join-us .section-1 {
        padding-top: 190px;
    }
    .join-us .section-3 .heading .title {
        font-size: 20px;
    }
    .join-us .section-1 .heading {
        font-size: 20px;
    }
    .join-us .section-1 .description {
        font-size: 13px;
    }
    .join-us .section-2 .team-crds {
        row-gap: 50px;
    }
    .join-us .section-2 .team-crds .member-crd {
        width: 100%;
    }
    .join-us .section-2 .team-crds .member-crd .member-img img{
        width: 100%;
        position: unset;
    }
}

/* responsive  768 end */