/* START CONTACT-FORM.SCSS */
.form-layout {
    margin-top: 32px;
    margin-bottom: 32px;
    padding-inline: 20px;
}

@media screen and (min-width: 992px) {
    .form-layout {
        margin-top: 64px;
        margin-bottom: 64px;
    }
}

@media screen and (min-width: 1256px) {
    .form-layout {
        padding-inline: 0;
    }
}

.form-layout--container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1216px;
    margin-inline: auto;
}

@media screen and (min-width: 992px) {
    .form-layout--container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.form-layout--form {
    width: 100%;
    flex: 1 1 auto;
}

@media screen and (min-width: 992px) {
    .form-layout--form {
        max-width: 696px;
    }
}

.form-layout--form .form-title {
    text-align: center;
    margin-bottom: 32px;
}

@media screen and (min-width: 992px) {
    .form-layout--form .form-title {
        text-align: left;
        margin-bottom: 48px;
    }
}

.form-layout--form .form-title span {
    color: #d8b465;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.form-layout--form .form-title h2 {
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
}

@media screen and (min-width: 992px) {
    .form-layout--form .form-title h2 {
        font-size: 2.5rem;
        line-height: 48px;
    }
}

.form-layout--form .form-title p {
    color: #666;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 16px;
}

.form-layout--form .form-title .tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

@media screen and (min-width: 992px) {
    .form-layout--form .form-title .tags {
        justify-content: flex-start;
        margin-top: 16px;
    }
}

.form-layout--form .form-title .tags .tag {
    color: #1b1b1b;
    padding: 6px 8px;
    border-radius: 5px;
    display: flex;
    gap: 4px;
    align-items: center;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    background: #F5F5F5;
    text-transform: none;
    letter-spacing: unset;
}

.form-layout--form .form-title .tags .tag::before {
    content: '';
    width: 16px;
    height: 16px;
    background: #666;
}

.form-layout--form .form-title .tags .tag.exp::before {
    -webkit-mask: url("../../assets/images/icon/icon-service.svg") no-repeat center;
    mask: url("../../assets/images/icon/icon-service.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.form-layout--form .form-title .tags .tag.location::before {
    -webkit-mask: url("../images/icon-location.svg") no-repeat center;
    mask: url("../images/icon-location.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.form-layout--form .form-title .tags .tag.type::before {
    -webkit-mask: url("../images/icon-type-contract.svg") no-repeat center;
    mask: url("../images/icon-type-contract.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.form-layout--form .form-title .tags .tag.studies::before {
    -webkit-mask: url("../../assets/images/icon/icon-studies.svg") no-repeat center;
    mask: url("../../assets/images/icon/icon-studies.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

@media screen and (min-width: 992px) {
    .form-layout--aside {
        max-width: 384px;
    }
}

.form-layout--aside h2 {
    text-align: center;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 16px;
}

@media screen and (min-width: 992px) {
    .form-layout--aside h2 {
        text-align: left;
    }
}

.form-layout--aside p {
    color: #666;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

@media screen and (min-width: 992px) {
    .form-layout--aside p {
        text-align: left;
    }
}

.form-layout--aside .location-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration: underline;
    transition: all .2s ease;
}

@media screen and (min-width: 992px) {
    .form-layout--aside .location-link {
        justify-content: flex-start;
    }
}

.form-layout--aside .location-link::before {
    content: '';
    -webkit-mask: url("../images/icon-location.svg") no-repeat center;
    mask: url("../images/icon-location.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: #1b1b1b;
    width: 16px;
    height: 16px;
    transition: all .2s ease;
}

.form-layout--aside .location-link:hover {
    color: #d8b465;
}

.form-layout--aside .location-link:hover::before {
    background: #d8b465;
}

.form-layout--aside .social {
    margin-top: 16px;
}

@media screen and (min-width: 992px) {
    .form-layout--aside .social {
        margin-top: 48px;
    }
}

.form-layout--aside .social div {
    display: flex;
    gap: 16px;
    justify-content: center;
}

@media screen and (min-width: 992px) {
    .form-layout--aside .social div {
        justify-content: flex-start;
    }
}

.form-layout--aside .social .rs-item {
    padding: 5px;
    background: #1b1b1b;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all .4s ease;
}

.form-layout--aside .social .rs-item::after {
    content: "";
    -webkit-mask: var(--picto);
    mask: var(--picto);
    -webkit-mask-size: contain;
    mask-size: contain;
    background: #ffffff;
    display: block;
    height: 100%;
    width: 100%;
}

.form-layout--aside .social .rs-item:hover {
    background: #d8b465;
}

.gform_required_legend {
    display: none;
}

.gfield_required_asterisk {
    margin-left: 4px;
    color: #d8b465;
}

.mfr-form input,
.mfr-form textarea {
    background: #F5F5F5;
    border: none !important;
    line-height: 24px;
}

.mfr-form input:-moz-read-only {
    border: 1px solid #999 !important;
}

.mfr-form input:read-only {
    border: 1px solid #999 !important;
    background: #DFDFDF !important;
}

.mfr-form .gform_footer input[type=submit] {
    border: 0 !important;
    background: #D8B465 !important;
}

.mfr-form label {
    color: #333;
    font-size: 0.75rem !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 20px;
    margin-bottom: 8px !important;
    display: flex !important;
}

.mfr-form .ginput_container {
    margin-bottom: 32px;
}

.mfr-form .ginput_container_fileupload {
    display: none;
}

.mfr-form .gfield--type-fileupload label {
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 12px 20px !important;
    border: 1px solid #1b1b1b;
    border-radius: 50px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    transition: all .4s ease;
    cursor: pointer;
    justify-content: center;
}

@media screen and (min-width: 992px) {
    .mfr-form .gfield--type-fileupload label {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        justify-content: flex-start;
    }
}

.mfr-form .gfield--type-fileupload label::before {
    content: '';
    width: 24px;
    height: 24px;
    -webkit-mask: url("../images/icon-download.svg") no-repeat center;
    mask: url("../images/icon-download.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: #1b1b1b;
    transition: all .2s ease;
}

.mfr-form .gfield--type-fileupload label:hover {
    background: #1b1b1b;
    color: #fff;
}

.mfr-form .gfield--type-fileupload label:hover::before {
    background: #fff;
}

.mfr-form .gfield--has-description {
    display: flex;
    flex-wrap: wrap;
}

.mfr-form .gfield--has-description .ginput_container {
    width: 100%;
    order: 9;
}

.mfr-form .gfield--has-description .gfield_description {
    color: #333;
    font-size: 0.75rem !important;
    font-style: italic;
    font-weight: 400;
    line-height: 20px !important;
    margin-left: 8px;
}

.mfr-form .gform_footer {
    margin-top: 16px;
}

@media screen and (min-width: 992px) {
    .mfr-form .gform_footer {
        margin-top: 32px;
    }
}

.mfr-form .ginput_container_select {
    position: relative;
}

.mfr-form .ginput_container_select::after {
    content: '';
    height: 12px;
    width: 12px;
    -webkit-mask: url("../images/icon-chevron-down-bold.svg") no-repeat center;
    mask: url("../images/icon-chevron-down-bold.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: #1b1b1b;
    position: absolute;
    right: 10px;
    top: calc(50% - 6px);
}

/* .mfr-form .select2-selection {
    border: none !important;
    background: #F5F5F5 !important;
}

.mfr-form .select2-container {
    padding: 12px 10px;
    background: #F5F5F5;
    border-radius: 4px;
}

.mfr-form .select2-container::after {
    content: '';
    height: 12px;
    width: 12px;
    -webkit-mask: url("../images/icon-chevron-down-bold.svg") no-repeat center;
    mask: url("../images/icon-chevron-down-bold.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: #1b1b1b;
    position: absolute;
    right: 10px;
    top: calc(50% - 6px);
}

.mfr-form .select2-container li,
.mfr-form .select2-container ul {
    list-style: none;
}

.mfr-form .select2-container li::before,
.mfr-form .select2-container ul::before {
    content: none !important;
}

.mfr-form .select2-selection__arrow {
    display: none;
} */

.mfr-form .form-informations {
    text-align: center;
    color: #666;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-top: 16px;
}

@media screen and (min-width: 992px) {
    .mfr-form .form-informations {
        text-align: left;
    }
}

.mfr-form .form-informations a {
    color: #d8b465;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-decoration: underline;
    transition: all .4s ease;
}

.mfr-form .form-informations a:hover {
    color: #1b1b1b;
}

.form-layout--form.mfr-form .ginput_container_consent {
    display: flex;
    gap: 12px;
    align-items: center;
}

.form-layout--form.mfr-form .ginput_container_consent label {
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.125rem;
}

.form-layout--form.mfr-form .ginput_container_consent input {
    max-width: 16px !important;
    width: 100%;
    height: 16px;
    padding: 0;
    position: relative;
}

.form-layout--form.mfr-form .ginput_container_consent input:checked::after {
    content: "";
    display: block;
    position: absolute;
    top: 1px;
    left: 4px;
    width: 6px;
    height: 10px;
    border: solid #1b1b1b;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    pointer-events: none;
}