#contact-modal {}
.contact-open #contact-modal {
    opacity: 1;
    pointer-events: auto;
}
@media (min-width: 1100px)    { #contact-modal > .locaux { position: absolute; top: 15px; right: 15px; bottom: 15px; left: 50%; } }
@media (max-width: 1099.99px) { #contact-modal > .locaux { width: 100%; height: 825px; } }
.contact-open #nav > .nav-wrapper > .menu-btn {
    top: 35px; right: 10px;
    color: #FFF;
}

/*-------------------------------------------------------------------------------------------*/

#contact-modal > .locaux { position: relative; z-index: 1; }
@media (min-width: 1100px)    { #contact-modal > .locaux { position: absolute; top: 15px; right: 15px; bottom: 15px; left: 50%; } }
@media (max-width: 1099.99px) { #contact-modal > .locaux { width: 100%; height: 825px; } }

#contact-modal > .locaux > .pagination {
    position: absolute; left: 20px; bottom: auto; z-index: 2;
    display: flex; width: auto; min-height: 50px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    row-gap: 10px;
    padding: 0 20px;
    
    background-color: rgba(0,0,0,.5);
    border-radius: 25px;
}
@media (min-width: 1100px) {
    #contact-modal > .locaux > .pagination {
        top: 20px;
        max-width: calc(100% - 80px);
    }
}
@media (max-width: 1099.99px) {
    #contact-modal > .locaux > .pagination {
        top: 110px; right: 20px;
    }
}
#contact-modal > .locaux > .pagination > .swiper-pagination-bullet {
    position: relative;
    width: auto; height: auto;
    padding-left: 0;
    margin: 0;
    
    background-color: unset;
    border-radius: unset;
    
    font-size: 15px;
    font-weight: 300;
    color: #FFF;
    
    opacity: unset;
    
    transition:
        padding-left .2s ease-out .2s,
        font-weight  .2s ease-out .2s,
        color        .2s ease-out .2s;
}
#contact-modal > .locaux > .pagination > .swiper-pagination-bullet:after {
    content: '';
    position: absolute; left: 0; top: calc(50% + 1px); transform: translateY(-50%);
    display: block; height: 5px; width: 5px;

    background-color: var(--main-color);
    border-radius: 50%;

    opacity: 0; transition: opacity .2s ease-out;
    animation: menu-item-bullet-pulse .8s infinite ease-in-out;
}
#contact-modal > .locaux > .pagination > .swiper-pagination-bullet:hover,
#contact-modal > .locaux > .pagination > .swiper-pagination-bullet-active { color: var(--main-color); }
#contact-modal > .locaux > .pagination > .swiper-pagination-bullet-active {
    padding-left: 10px;
    font-weight: 700;
    
    transition:
        padding-left .2s ease-out,
        font-weight  .2s ease-out,
        color        .2s ease-out;
}
#contact-modal > .locaux > .pagination > .swiper-pagination-bullet-active:after {
    opacity: 1; transition: opacity .2s ease-out .2s;
}

#contact-modal > .locaux > .swiper { position: absolute; top: 0; right: 0; bottom: 0; left: 0; }
#contact-modal > .locaux > .swiper .local {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    
    color: #FFF;
}
@media (min-width: 1100px)    { #contact-modal > .locaux > .swiper .local { padding: 40px; } }
@media (max-width: 1099.99px) { #contact-modal > .locaux > .swiper .local { padding: 50px 25px; } }
body:not(.contact-open) #contact-modal > .locaux > .swiper .local { pointer-events: none !important; }
#contact-modal > .locaux > .swiper .local > .background {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1;
    overflow: hidden;
}
@media (min-width: 1100px)    { #contact-modal > .locaux > .swiper .local > .background { border-radius: 40px; } }
#contact-modal > .locaux > .swiper .local > .background > img {
    display: block; width: 100%; height: 100%;
    
    object-fit: cover;
    object-position: center;
}
#contact-modal > .locaux > .swiper .local > .background:after {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1;
    
    background-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.6),
            rgba(0,0,0,.3) 20%,
            rgba(0,0,0,.3) 50%,
            rgba(0,0,0,.6)
        );
    
    pointer-events: none;
}
#contact-modal > .locaux > .swiper .local > .background ~ * { position: relative; z-index: 2; }
#contact-modal > .locaux > .swiper .local > .title { font-weight: 100; }
#contact-modal > .locaux > .swiper .local > .title > span { font-weight: 700; }
@media (min-width: 1100px) {
    #contact-modal > .locaux > .swiper .local > .title {
        margin: auto 0;
        
        font-size: 50px;
        text-align: center;
    }
}
@media (max-width: 1099.99px) {
    #contact-modal > .locaux > .swiper .local > .title {
        margin-bottom: 50px;
        font-size: 45px;
    }
}
#contact-modal > .locaux > .swiper .local > .overlay {
    display: flex;
    align-items: flex-start;
}
@media (min-width: 1100px) {
    #contact-modal > .locaux > .swiper .local > .overlay {
        flex-direction: row;
        justify-content: space-between;
        column-gap: 50px;
    }
    #contact-modal > .locaux > .swiper .local > .overlay > div { flex: 0 0 calc((100% - 50px) / 2); }
}
@media (max-width: 1099.99px) {
    #contact-modal > .locaux > .swiper .local > .overlay {
        flex-direction: column;
        justify-content: flex-start;
        row-gap: 50px;
    }
}
#contact-modal > .locaux > .swiper .local > .overlay > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 15px;
    
    font-size: 15px;
}
@media (min-width: 1100px) { #contact-modal > .locaux > .swiper .local > .overlay > div { flex: 0 0 calc((100% - 50px) / 2); } }
#contact-modal > .locaux > .swiper .local > .overlay > div > .title {
    margin-bottom: 30px;
    font-size: 30px;
}
#contact-modal > .locaux > .swiper .local > .overlay > div > .title { font-weight: 700; }
#contact-modal > .locaux > .swiper .local > .overlay > div > .title > span { font-weight: 100; }
#contact-modal > .locaux > .swiper .local > .overlay > div > .subtitle { font-weight: 700; }
#contact-modal > .locaux > .swiper .local > .overlay > div > .location { color: var(--main-color); }
#contact-modal > .locaux > .swiper .local > .overlay > div > .address,
#contact-modal > .locaux > .swiper .local > .overlay > div > .phone,
#contact-modal > .locaux > .swiper .local > .overlay > div > .email,
#contact-modal > .locaux > .swiper .local > .overlay > div > .linkedin {
    position: relative;
    padding-left: 35px;
}
#contact-modal > .locaux > .swiper .local > .overlay > div > .address:before,
#contact-modal > .locaux > .swiper .local > .overlay > div > .phone:before,
#contact-modal > .locaux > .swiper .local > .overlay > div > .email:before,
#contact-modal > .locaux > .swiper .local > .overlay > div > .linkedin:before {
    content: '';
    position: absolute; top: 50%; left: 0; transform: translateY(-50%);
    display: block; height: 25px; width: 20px;
    
    background-color: var(--main-color);
    
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
#contact-modal > .locaux > .swiper .local > .overlay > div > .address { line-height: 24px; }
#contact-modal > .locaux > .swiper .local > .overlay > div > .address:before {
    -webkit-mask-image: url("../../images/icons/location.svg");
    mask-image: url("../../images/icons/location.svg");
}
#contact-modal > .locaux > .swiper .local > .overlay > div > .phone:before {
    -webkit-mask-image: url("../../images/icons/phone.svg");
    mask-image: url("../../images/icons/phone.svg");
}
#contact-modal > .locaux > .swiper .local > .overlay > div > .email:before {
    -webkit-mask-image: url("../../images/icons/mail.svg");
    mask-image: url("../../images/icons/mail.svg");
}
#contact-modal > .locaux > .swiper .local > .overlay > div > .linkedin:before {
    -webkit-mask-image: url("../../images/social/linkedin.svg");
    mask-image: url("../../images/social/linkedin.svg");
}

/*-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*/

#contact-modal > .forms {}
@media (min-width: 1100px) {
    #contact-modal > .forms { max-height: 100%; overflow: auto; }
    #contact-modal > .forms { padding: 125px calc(50% + 75px) 75px 75px; }
}
@media (max-width: 1099.99px) {
    #contact-modal { overflow: auto; }
    #contact-modal > .forms { padding: 50px 25px 75px; }
}

/*-------------------------------------------------------------------------------------------*/

#contact-modal > .forms > .pagination {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
}
@media (min-width: 450px) {
    #contact-modal > .forms > .pagination {
        flex-direction: row;
        align-items: center;
        column-gap: 20px;
    }
}
@media (max-width: 449.99px) {
    #contact-modal > .forms > .pagination {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 20px;
    }
}
#contact-modal > .forms > .pagination > .pagination-bullet {
    display: flex; width: auto; height: auto;
    flex-direction: row;
    align-items: center;
    margin: 0;
    
    background-color: transparent;
    opacity: 1;
    
    cursor: pointer;
}
#contact-modal > .forms > .pagination > .pagination-bullet > .icon {
    height: 50px; flex: 0 0 50px; overflow: hidden;
    margin-right: 15px;
    
    border-radius: 50%;
}
#contact-modal > .forms > .pagination > .pagination-bullet > .icon > img {
    display: block; height: 100%; width: 100%;
    
    object-fit: cover;
    object-position: center;
}
#contact-modal > .forms > .pagination > .pagination-bullet > .title {
    font-size: 16px;
    font-weight: 700;
}
#contact-modal > .forms > .pagination > .pagination-bullet > .title > span {
	background-image: linear-gradient(to bottom, transparent calc(100% - 1px), currentColor calc(100% - 1px), currentColor 100%);
	background-size: 0% 100%;
	background-repeat: no-repeat;
	background-position: bottom right;
}
.loaded #contact-modal > .forms > .pagination > .pagination-bullet > .title > span { transition: background-size .2s ease-out; }
#contact-modal > .forms > .pagination > .pagination-bullet.current > .title > span,
#contact-modal > .forms > .pagination > .pagination-bullet:hover > .title > span {
	background-size: 100% 100%;
	background-position: bottom left;
}

/*-------------------------------------------------------------------------------------------*/

#contact-modal > .forms > .list {}
#contact-modal > .forms > .list > .reflection-form {}
#contact-modal > .forms > .list > .reflection-form > .fields {}
#contact-modal > .forms > .list > .reflection-form > .fields > .field:not(:nth-last-child(2)) {
	padding: 15px 0;
	border-bottom: solid .5px #000;
}
#contact-modal > .forms > .list > .reflection-form > .fields > .field:not(:nth-last-child(2)) > label {
	position: relative;
	height: 30px;
	
	line-height: 30px;
	font-size: 15px;
	
	cursor: pointer;
}
#contact-modal > .forms > .list > .reflection-form > .fields > .field:nth-last-child(2) { padding: 25px 0; }
#contact-modal > .forms > .list > .reflection-form > .fields > .field > .input-area { font-size: 14px; }
#contact-modal > .forms > .list > .reflection-form > .fields > .field > .input-area:not(textarea, .selectbox, .checkbox) { height: 30px; }
#contact-modal > .forms > .list > .reflection-form > .fields > .field > .input-area.uploadbox > label { line-height: 30px; }
#contact-modal > .forms > .list > .reflection-form > .fields > .field > .input-area.selectbox > .selection {
	height: 30px;
	line-height: 30px;
}
#contact-modal > .forms > .list > .reflection-form > .fields > .submit-btn {
	margin-left: auto;
	cursor: pointer;
}
@media (min-width: 1100px)    { #contact-modal > .forms > .list > .reflection-form > .fields > .submit-btn { margin-top: 70px; } }
@media (max-width: 1099.99px) { #contact-modal > .forms > .list > .reflection-form > .fields > .submit-btn { margin-top: 50px; } }