/*
*MY css
*/
*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
html, body{
    overflow-x: hidden;
}
.flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.start{
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.center{
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.end{
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.wrap{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex-column{
    flex-direction: column;
}
.align-start{
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.align-center{
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.align-end{
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.rel{
    position: relative;
}
.upper{
    text-transform: uppercase;
}
a, button{
    cursor: pointer !important;
    text-decoration: none;
    outline: none;
    border: none;
    background: none;
    display: inline-block;
    color: #000000;
}
a:hover {
     color: #000000;
     text-decoration: unset;
}
input, textarea {
    outline: none;
    border: none;
}
.point_none {
    pointer-events: none;
}
.error {
    background-color: #ff8383;
}
.d_none {
    display: none;
}
.modal_section {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 0;
    background-color: rgba(0, 0, 0, 0.7);
    align-content: center;
}
.modal_container {
    position: relative;
    width: 40rem;
    margin: 0 auto;
    max-height: 100%;
    overflow-y: auto;
}
.modal_box {
    position: relative;
    width: 100%;
    padding: 4rem 3rem 3rem;
    border-radius: 20px;
    background-color: #345D7B;
    min-height: 30rem;
    align-content: center;
}
.modal_content {
    position: relative;
    width: 100%;
    color: #ffffff;
}
.modal_content a {
    color: #ffffff;
    text-decoration: underline;
}
.modal_title {
    font-family: 'involveB', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3rem;
}
.modal_form {
    width: 100%;
}
.modal_input {
    margin-bottom: 1rem;
}
.modal_input input {
    width: 100%;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    border: 1px solid #B0B0B0;
    background: #ffffff;
    font-size: 1rem;
    line-height: 1.25;
}
.modal_politic {
    font-size: 0.75rem;
    margin-bottom: 2.5rem;
}
.modal_btn .btn {
    width: 100%;
    padding: 0.5rem 2rem;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
}
.loading-icon {
    border-radius: inherit;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
    background: #81ABC3;
    content: '<i class="fa fa-spinner fa-spin fa-3x fa-fw"></i>';
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-icon:before {
    content: "\f110";
    font-family: FontAwesome, sans-serif;
    font-size: 16px;
    /* transform: translate(-50%, -50%); */
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
    color: white;
}

@font-face {
    font-family: 'FontAwesome';
    src: url("../fonts/fontawesome-webfont.eot");
    src: url("../fonts/fontawesome-webfont.eot") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2") format("woff2"), url("../fonts/fontawesome-webfont.woff") format("woff"), url("../fonts/fontawesome-webfont.ttf") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: block;
}
.modal_btn .btn span {
    height: 2.378rem;
    color: #345D7B;
    font-size: 1rem;
}
.modal_btn .btn:after {
    background-color: rgba(52, 93, 123, 0.1);
}
.modal_close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.35s;
}
.modal_close hr {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 0.75rem);
    height: 2px;
    background-color: #FFFFFF;
    border: unset;
}
.modal_close hr:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}
.modal_close hr:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.modal_close:hover {
    transform: rotate(90deg);
}
@media screen and (max-width:992px) {
    .modal_container {
        width: 100%;
        padding: 0 20px;
    }
    .modal_box {
        padding: 5rem 2rem 2rem;
    }
    .modal_input input {
        padding: 1rem 1.547rem;
        font-size: 1.237rem;
    }
    .modal_politic {
        font-size: 0.928rem;
    }
    .modal_btn .btn span {
        font-size: 1.1rem;
    }
}