/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

main.contactUsWrapper {
    padding-top: calc(var(--headerHeight) + 6rem);
    padding-bottom: 0 !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
    min-height: 100vh;
}

section.contactContainer {
    position: relative;
    width: 100%;
    display: block;
    padding-bottom: 8rem;
}
section.contactContainer::before{
    content: '';
    background-image: url(../img/e-nexa.svg);
    width: 28.375rem;
    height: 23.9375rem;
    position: absolute;
    left: 3rem;
    bottom: 4.31rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position:left;
}
section.contactContainer ul.social-media {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 2.81rem;
    -moz-column-gap: 2.81rem;
    column-gap: 2.81rem;
    color: #888;
    font-size: 1.5rem;
    font-weight: 400;
}
section.contactContainer ul.social-media li:before ,
section.contactContainer .contact-info .phone-boxes a:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #888;
    top: 100%;
    left: 0;
    transition: all ease-in-out .35s;
    transform-origin: left;
    transform: scaleX(0);
}
section.contactContainer ul.social-media li:hover:before ,
section.contactContainer .contact-info .phone-boxes a:hover:before{
    transform: scaleX(1);
}
section.contactContainer .email-address {
    font-size: 3.5vw;
    font-weight: 400;
    color: var(--blue);
    margin-bottom: 1rem;
    display: inline-block;
    margin-top: 1rem;
}

section.contactContainer .contact-info {
    padding-bottom: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    row-gap: 1rem;
}
section.contactContainer .contactWrap {
    width: 62%;
}
section.contactContainer .contact-info .phone-boxes a {
    color: #878787;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    direction: ltr;
    display: inline-block;
}
section.contactContainer .contact-info .address-box a {
    color: #878787;
    font-size: 1.3rem;
    font-weight: 400;
    width: 100%;
    display: block;
    line-height: 1.7;
}
section.contactContainer .contact-tab-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
section.contactContainer .contact-tab-wrapper p {
    font-size: 1.7rem;
    font-weight: 500;
    border-bottom: 2px solid var(--blue);
    color: var(--blue);
    text-transform: capitalize;
    cursor: pointer;
}
section.contactContainer .contact-tab-wrapper p:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #fff;
    top: calc(100% - 2px);
    left: 0;
    transition: all ease-in-out .35s;
    transform-origin: left;
    transform: scaleX(0);
    z-index: 1;
}
section.contactContainer .contact-tab-wrapper p:hover:before{
    transform: scaleX(1);
}
section.contact-footer {
    position: relative;
    width: 100%;
    margin-top: auto;
}
section.contact-footer img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-bottom: -5px;
}
/*===========MODAL===============*/
.modal {
    position: fixed;
    width: 50vw;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-height: 70vh;
    z-index: 101;
    background-color: var(--white);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: all ease-in-out .35s;
    -o-transition: all ease-in-out .35s;
    transition: all ease-in-out .35s;
}
.modal-overlay {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: var(--blue);
    -webkit-transition: all ease-in-out .35s;
    -o-transition: all ease-in-out .35s;
    transition: all ease-in-out .35s;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    cursor: pointer;
}
.modal .modal-header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    height: 9rem;
}

.modal .modal-body {
    padding: 0 0 2.5rem 2.5rem;
    position: relative;
    height: calc(100% - 9rem);
    overflow: hidden;
}

.modal .modal-header h3 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--blue);
    text-transform: capitalize;
}

.modal .modal-header .close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 1;
    cursor: pointer;
}

.modal .modal-body .modal-wrap {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    overflow-y: auto;
    padding-right: 2.5rem;
    overflow: hidden;
    overflow-y: auto;
}

.modal .modal-body .modal-wrap .content {
    width: 70%;
    margin: 0 auto 4rem;
    text-align: center;
}

.modal .modal-body .modal-wrap #map {
    position: relative;
    width: 100%;
    height: 42vh;
}

.modal .modal-body .modal-wrap #map img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.modal .modal-header .close img {
    width: 2.5rem;
    height: 2.5rem;
    -o-object-fit: cover;
    object-fit: cover;
}

.modal .modal-body .modal-wrap .content p {
    font-size: 1.175rem;
    font-style: normal;
    font-weight: 400;
    opacity: .5;
}
.modal .modal-body .modal-wrap .nexaClubForm {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}

.modal .modal-body .modal-wrap .nexaClubForm form {
    position: relative;
    width: 100%;
    display: block;
}
.modal .modal-body .modal-wrap .nexaClubForm form input,.modal .modal-body .modal-wrap .nexaClubForm form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #767676;
    padding: 1rem 0;
    margin-bottom: 2rem;
    font-size: .9rem;
    text-align: right;
}
#nexa-club-modal {
    height: 70vh;
}
.modal .modal-body .modal-wrap .nexaClubForm form input[type="submit"] {
    width: auto;
    margin: 3rem auto 0;
    display: block;
    border: none;
    padding: 1.5rem 2.5rem;
    font-size: 1.125rem;
    background-color: var(--blue);
    color: var(--white);
    -webkit-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}
.modal .modal-body .modal-wrap .nexaClubForm form input[type="submit"]:hover{
    background-color: rgb(162 162 162);
}
body.op-modal-1 #map-modal,body.op-modal-2 #partnership-modal,body.op-modal-3 #opportunities-modal,body.op-modal-4 #nexa-club-modal{
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}
.modal .modal-body .modal-wrap::-webkit-scrollbar {
    width: 5px;
}
.modal .modal-body .modal-wrap::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px var(--white);
    box-shadow: inset 0 0 6px var(--white);
}
.modal .modal-body .modal-wrap::-webkit-scrollbar-thumb {
    background-color: var(--blue);
    outline: 1px solid var(--blue);
    border-radius: 10px;
}
body.op-modal-1 .modal-overlay ,body.op-modal-2 .modal-overlay,body.op-modal-3 .modal-overlay,body.op-modal-4 .modal-overlay   {
    opacity: .5;
    pointer-events: auto;
    visibility: visible;
}
.modal#map-modal .modal-body .modal-wrap {
    height: auto;
    overflow: visible;
}
/*===========MODAL===============*/
@media screen and (max-width: 768px){
    main.contactUsWrapper {
        padding-top: 7rem;
        min-height: auto;
    }
    section.contactContainer .contact-info {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 2rem;
        padding-bottom: 3rem;
    }

    section.contactContainer ul.social-media {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        row-gap: .5rem;
        font-size: 1.125rem;
        -webkit-column-gap: 1rem;
        -moz-column-gap: 1rem;
        column-gap: 1rem;
    }

    section.contactContainer .contactWrap {
        width: 100%;
    }

    section.contactContainer .email-address {
        font-size: 2.21163rem;
        font-style: normal;
        font-weight: 400;
        line-height: 3.21163rem;
        word-break: break-all;
        margin: 2rem 0;
    }

    section.contactContainer .contact-info .phone-boxes a {
        font-size: 1.2rem;
        font-weight: 400;
    }

    section.contactContainer .contact-info .address-box a {
        text-decoration: underline;
        font-size: 1.2rem;
        font-weight: 300;
        width: 100% !important;
    }

    section.contactContainer .contact-tab-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        row-gap: 1rem;
    }

    section.contactContainer .contact-tab-wrapper p {
        font-size: 1.125rem;
    }

    section.contactContainer::before {
        display: none;
    }

    section.contactContainer {
        padding-bottom: 5rem;
    }
    /*-----------------------modal*/
    .modal .modal-header .close {
        right: var(--spaceX);
        top: var(--spaceX);
    }

    .modal .modal-header .close img {
        width: 1.5rem;
        height: 1.5rem;
    }
    .modal {
        width: 100vw;
        max-height: calc(100vh - 10vh);
        height: auto;
        top: auto;
        bottom: 0;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .modal .modal-header h3 {
        font-size: 1.25rem;
        margin: 1.5rem auto;
    }

    .modal .modal-header {
        height:auto;
    }

    .modal .modal-body {
        padding: var(--spaceX);
        height: auto;
    }

    .modal .modal-body .modal-wrap {
        padding: 0;
    }
    .modal#map-modal .modal-body .modal-wrap {
        height: 100%;
    }

    .modal .modal-body .modal-wrap #map {
        height: 70vh;
    }
    .modal .modal-body .modal-wrap .content {
        width: 100%;
        margin: 0 auto 2rem;
    }

    .modal .modal-body .modal-wrap .content p {
        font-size: 1rem;
    }

    .modal .modal-body .modal-wrap .btn.blueBtn {
        width: 100%;
        text-align: center;
        padding: 1rem;
        margin-bottom: 0;
    }

    .modal .modal-body .modal-wrap .btn.blueBtn span {
        font-size: 0.875rem;
    }

    .modal .modal-body .modal-wrap .nexaClubForm form input, .modal .modal-body .modal-wrap .nexaClubForm form textarea {
        font-size: 1rem;
        padding: .75rem 0;
        margin-bottom: 1rem;
    }

    #nexa-club-modal {
        height: auto;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal .modal-body .modal-wrap .nexaClubForm form input[type="submit"] {
        width: 100%;
        padding: 1rem;
        font-size: 0.875rem;
        text-align: center;
    }

    .modal .modal-body .modal-wrap .nexaClubForm {
        margin-bottom: 0;
    }
    /*-----------------------modal*/
}
@media only screen and (min-width: 640px) and (max-width: 768px){
    /*-----------------------modal*/
    .modal .modal-body .modal-wrap .btn.blueBtn , .modal .modal-body .modal-wrap .nexaClubForm form input[type="submit"] {
        width: 30%;
    }
    /*-----------------------modal*/
}
@media only screen and (min-width: 769px) and (max-width: 1199px){
    main.contactUsWrapper {
        padding-top: 12rem;
    }
    section.contactContainer::before{
        width: 18.375rem;
        height: 15.9375rem;
    }
    section.contactContainer .contactWrap {
        width: 100%;
    }

    section.contactContainer .contact-tab-wrapper p {
        font-size: 1.8rem;
    }

    section.contactContainer .contact-info {
        grid-gap: 2rem;
    }

    section.contactContainer .contact-info .address-box a {
        font-size: 1.3rem;
    }

    section.contactContainer .email-address {
        margin: 1rem 0;
    }

    section.contactContainer .contact-info .phone-boxes a {
        font-size: 1.3rem;
    }
    /*-----------------------modal*/
    .modal {
        width: 70vw;
        max-height: 80vh;
    }

    .modal .modal-header {
        height: 7rem;
    }

    .modal .modal-header h3 {
        font-size: 2rem;
    }

    .modal .modal-body {
        padding: 0 2rem 2rem;
        height: calc(100% - 7rem);
    }

    .modal .modal-body .modal-wrap {
        padding: 0;
    }

    .modal .modal-body .modal-wrap .btn.blueBtn ,
    .modal .modal-body .modal-wrap .nexaClubForm form input[type="submit"] {
        width: 40%;
        text-align: center;
    }
    .modal .modal-body .modal-wrap .content p {
        font-size: .95rem;
    }

    /*-----------------------modal*/
}
@media only screen and (min-width: 1200px) and (max-width: 1400px){
    main.contactUsWrapper{
        padding-top: 10rem;
    }
    section.contactContainer .contact-info{
        padding-bottom: 3rem;
    }
    section.contactContainer::before{
        width: 21.375rem;
        height: 16.9375rem;
    }
    section.contactContainer .contactWrap {
        width: 75%;
    }

    section.contactContainer .contact-tab-wrapper p {
        font-size: 1.15rem;
    }

    section.contactContainer .email-address {
        font-size: 3vw;
    }
    section.contactContainer ul.social-media {
        font-size: 1.2rem;
    }

    section.contactContainer .contact-info .address-box a {
        font-size: 1.2rem;
    }

    section.contactContainer .contact-info .phone-boxes a {
        font-size: 1.2rem;
    }

    section.contactContainer .contact-tab-wrapper {
    }

    section.contactContainer.paddingX {
        padding-bottom: 4rem;
    }
    /*-----------------------modal*/
    .modal .modal-header h3 {
        font-size: 1.5rem;
    }

    .modal .modal-header {
        height: 7rem;
    }

    .modal .modal-body {
        height: calc(100% - 7rem);
        padding: 0 1.5rem 1.5rem;
    }

    .modal .modal-body .modal-wrap {
        padding: 0;
    }

    .modal .modal-body .modal-wrap .content p {
        font-size: 1rem;
    }
    /*-----------------------modal*/
}
@media only screen and (min-width: 1401px) and (max-width: 1600px){
    main.contactUsWrapper{
        padding-top: 10rem;
    }
    section.contactContainer{
        padding-bottom: 4rem;
    }
    section.contactContainer .contact-info{
        padding-bottom: 3rem;
    }
    section.contactContainer::before{
        width: 21.375rem;
        height: 16.9375rem;
    }
    section.contactContainer .contact-tab-wrapper p {
        font-size: 1.2rem;
    }
    /*-----------------------modal*/
    .modal .modal-header h3 {
        font-size: 1.5rem;
    }

    .modal .modal-body .modal-wrap .content p {
        font-size: 1rem;
    }
    /*-----------------------modal*/
}