/*
========================
======================== BODY
========================
*/
html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    color: #8c949c;
    background-color: #eaebf4;
    overflow-x: hidden;
}

/*
========================
======================== HEADER
========================
*/
.main-header {
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#ffffff", GradientType=1);
    padding: 20px 0 40px 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
}

.main-header .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 90%;
    max-width: 100% !important;
}

@media(max-width: 88em) {
    .main-header-logo {
        flex-basis: 20%;
    }
}

@media(max-width: 52em) {
    .main-header-logo {
        flex-basis: 60%;
    }
}

.main-header-nav {
    display: flex;
    flex-wrap: wrap;
}

@media(max-width: 65em) {
    .main-header-nav {
        display: none;
    }
}

.main-header-nav-item a {
    font: "Barlow";
    padding: 50px 20px 20px 20px;
    font-size: 1.125em;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    font-weight: 300;
    color: #FFF;
}

@media(max-width: 88em) {
    .main-header-nav-item a {
        font-size: 1.25em;
        padding: 50px 15px 20px 15px;
    }
}

.main-header-nav-item a:hover {
    border-bottom: 1px solid #FFF;
}

@media(max-width: 75em) {
    .main-header-social {
        display: none;
    }
}

.main-header-social a img {
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    margin-right: 3px;
}

.main-header-social a:hover img {
    opacity: .5
}

@media(max-width: 65em) {
    .main-header-links {
        flex-basis: 100%;
        margin-top: 20px;
        text-align: right;
    }
}

@media(max-width: 52em) {
    .main-header-links {
        text-align: center;
    }
}

.main-header-links a {
    background-color: #FFF;
    font-size: 1.125em;
    color: #293847;
    font-weight: 600;
    padding: 16px 20px;
    margin-right: 5px;
}

@media(max-width: 88em) {
    .main-header-links a {
        font-size: 1em;
        padding: 13px 15px;
    }
}

.main-header-links a:hover {
    background-color: #293847;
    color: #FFF;
}

.main-header-links a:last-child {
    background-color: #2169b0;
    color: #FFF;
    margin-right: 0;
}

.main-header-links a:last-child:hover {
    background-color: #124170;
    color: #FFF;
}

.main-header-links a span {
    margin-left: 5px;
}

/*
========================
======================== NAV MOBILE
========================
*/
.main-mobile-nav-toogle {
    display: none;
}

@media (max-width: 65em) {
    /*MAIN MOBILE NAV TOOGLE*/
    .main-mobile-nav-toogle {
        background-color: #FFF;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        height: 45px;
        width: 45px;
        margin-top: 5px;
        color: #293847;
        font-size: 29px;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        cursor: pointer;
        z-index: 11;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
    }
    .main-mobile-nav-toogle.icon-navicon-round:before {
        top: 8px !important;
        left: 8px !important;
    }
    .main-mobile-nav-toogle:hover {
        background-color: #2169b0;
        color: #FFF;
    }
}

.page-wrapper {
    position: relative;
    transition: transform 0.25s
}

.nav-mobile-active .page-wrapper {
    transform: translateX(250px)
}

.mobile-menu-container {
    background: url("../../img/bg-nav-mobile.png");
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1001;
    width: 100%;
    max-width: 300px;
    overflow-y: auto;
    box-shadow: 0.1rem 0 0.6rem 0 rgba(50, 50, 50, 0.65);
    transform: translateX(-100%);
    visibility: hidden;
    transition: all 0.25s
}

.nav-mobile-active .mobile-menu-container {
    visibility: visible;
    transform: translateX(0)
}

.mobile-menu-wrapper {
    position: relative;
}

.nav-mobile-overlay {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(41, 56, 71, 0.8);
    z-index: 1000;
    transition: all 0.25s;
    visibility: hidden;
    opacity: 0
}

.nav-mobile-active .nav-mobile-overlay {
    visibility: visible;
    opacity: 1
}

.mobile-menu-header {
    padding: 60px 20px 20px 20px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}


/*MOBILE CLOSE*/
.mobile-menu-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
    cursor: pointer;
    font-size: 1.4em;
    color: #FFF;
    margin: 10px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    color: #81bcf7;
}


/*LOGO*/
.mobile-menu-logo {
    flex-basis: 100%;
    text-align: center;
}

.mobile-menu-logo img {
    height: 45px;
}

.mobile-menu {
    padding: 20px;
}

.mobile-menu li {
    display: block;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    -webkit-background-clip: padding-box;
    /* for Safari */
    background-clip: padding-box;
    /* for IE9+, Firefox 4+, Opera, Chrome */
}

.mobile-menu li:last-child {
    border-bottom: 0;
}

.mobile-menu>li>a {
    font-size: 1em;
    line-height: 1.1em;
    font-weight: 600;
    text-transform: uppercase;
}

.mobile-menu li a {
    position: relative;
    display: block;
    padding: 1.1rem 0 1.1rem 1.5rem;
    margin-right: 4.5rem;
    color: #FFF;
}

.mobile-menu li a:hover {
    color: #fcba45;
}

.mobile-menu li.open>a,
.mobile-menu li.active>a {
    color: #FFF;
}

.mobile-menu li ul {
    display: none;
}

.mobile-menu li ul li a {
    padding-left: 2.5rem;
}

.mobile-menu li ul ul li a {
    padding-left: 3.5rem;
}

.mobile-menu>li>a {
    text-transform: uppercase;
}

.mobile-menu-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -3.8rem;
    top: 50%;
    width: 2rem;
    height: 2rem;
    font-size: 1.5rem;
    color: #FFF;
    margin-top: -1.1rem;
    border-radius: 0;
    background-color: transparent;
    cursor: pointer;
    outline: none;
}

.mobile-menu-arrow:before {
    margin-top: -2px;
    margin-right: 0 !important;
}

.open>a>.mobile-menu-arrow:before {
    content: "\6a" !important;
}

.main-mobile-nav-social {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}

.main-mobile-nav-social-header {
    flex-basis: 100%;
    margin-bottom: 10px;
}

.main-mobile-nav-social-header h1 {
    font-size: 1.4em;
    font-weight: 600;
    color: #FFF;
}

.main-mobile-nav-social a {
    margin-right: 5px;
}

.main-mobile-nav-social a:last-child {
    margin-right: 0;
}

.main-mobile-nav-social a img {
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
}

.main-mobile-nav-social a:hover img {
    opacity: 0.5;
}

/*
========================
======================== CONTENT
========================
*/
.container {
    display: block;
    width: 100%;
}

.content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .content {
        width: 90%;
    }
}

/*
========================
======================== WIDGET SOCIAL
========================
*/
.widget-social {
    position: fixed;
    right: 0;
    bottom: 100px;
    z-index: 20 !important;
}

.widget-social a {
    width: 65px;
    height: 65px;
    text-align: center;
    font-size: 2em;
    line-height: 65px;
    color: #FFF;
    margin-bottom: 5px;
    display: block;
    -webkit-border-radius: 1px;
    -webkit-border-top-left-radius: 6px;
    -webkit-border-bottom-left-radius: 6px;
    -moz-border-radius: 1px;
    -moz-border-radius-topleft: 6px;
    -moz-border-radius-bottomleft: 6px;
    border-radius: 1px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.widget-social a.go {
    background-color: #2c3640;
    color: #FFF;
}

.widget-social a.go:hover {
    background-color: #2169b0;
}

.widget-social a.whatsapp {
    background-color: #57bb63;
    color: #FFF;
}

.widget-social a.whatsapp:hover {
    background-color: #277a31;
}

.widget-social-chat {
    display: none !important;
}

@media(max-width: 1024px) {
    .widget-social-chat {
        display: block !important;
    }
}

.widget-social-chat img {
    height: 65px;
}

.widget-chat {
    position: fixed;
    right: 0;
    bottom: 20px;
    z-index: 20 !important;
    width: 330px;
}

@media(max-width: 1024px) {
    .widget-chat {
        display: none;
    }
}

.widget-chat-msg {
    background-color: #FFF;
    margin-bottom: 30px;
    padding: 30px 20px 20px 20px;
    position: relative;
    margin-right: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(54, 73, 79, 0.2);
    -moz-box-shadow: 0px 0px 15px 0px rgba(54, 73, 79, 0.2);
    box-shadow: 0px 0px 15px 0px rgba(54, 73, 79, 0.2);
}

.widget-chat-msg p {
    margin-top: -10px;
}

.widget-chat-msg:after,
.widget-chat-msg:before {
    top: 100%;
    right: 30px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.widget-chat-msg:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #FFFFFF;
    border-width: 11px;
    margin-left: -11px;
}

.widget-chat-msg:before {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #FFF;
    border-width: 15px;
    margin-left: -15px;
}

.widget-chat-box {
    background-color: #2fb3df;
    position: relative;
    width: 240px;
    margin-left: 95px;
    padding: 15px 30px;
}

.widget-chat-msg-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #c4161c;
    font-size: 18px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.widget-chat-msg-close:hover {
    color: #000;
}

.widget-chat-box-cover {
    position: absolute;
    left: 0;
    top: 0;
    margin-left: -65px;
    margin-top: -20px;
}

.widget-chat-box h1 {
    font-size: 1.125em;
    font-weight: 300;
    color: #FFF;
}

.widget-chat-box h1 strong {
    font-size: 1.125em;
    font-weight: 600;
    display: block;
}

.invisible {
    display: none !important;
}

/*
========================
======================== MODAL LOGIN
========================
*/
.modal-login {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 56, 71, 0.8);
    padding: 20px;
    overflow: auto;
    z-index: 30;
}

.modal-login-content {
    display: none;
    background: #fff;
    margin: auto;
    width: 100%;
    max-width: 980px;
    overflow: hidden;
    position: relative;
    padding: 40px;
    justify-content: space-between;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}

@media(max-width: 42em) {
    .modal-login-content {
        flex-direction: column;
    }
}

.modal-login-content-left {
    flex-basis: 48%;
}

@media(max-width: 42em) {
    .modal-login-content-left {
        flex-basis: 100%;
        text-align: center;
    }
}

.modal-login-content-left img {
    margin-bottom: 50px;
}

@media(max-width: 42em) {
    .modal-login-content-left img {
        margin-bottom: 20px;
    }
}

.modal-login-content-left h1 {
    font-size: 2.25em;
    font-weight: bold;
    line-height: 1.1;
    color: #293847;
    margin-bottom: 30px;
}

@media(max-width: 42em) {
    .modal-login-content-left h1 {
        font-size: 1.8em;
    }
}

.modal-login-content-left h1 span {
    font-size: 0.7222222222em;
    display: block;
}

.modal-login-content-left p {
    font-size: 1.125em;
    line-height: 1.333;
    color: #838b8d;
}

@media(max-width: 42em) {
    .modal-login-content-left p {
        font-size: 1em;
    }
}

.modal-login-content-right {
    flex-basis: 48%;
}

@media(max-width: 42em) {
    .modal-login-content-right {
        flex-basis: 100%;
        text-align: center;
        margin-top: 30px;
    }
}

.form-login-header {
    margin-bottom: 20px;
}

.form-login-header h1 {
    font-size: 2.25em;
    font-weight: bold;
    line-height: 1.1;
    color: #293847;
    margin-bottom: 5px;
}

@media(max-width: 42em) {
    .form-login-header h1 {
        font-size: 1.8em;
    }
}

.form-login-header p {
    font-size: 1.125em;
    line-height: 1.333;
    color: #293847;
}

@media(max-width: 42em) {
    .form-login-header p {
        font-size: 1em;
    }
}

.modal-login-content-right input {
    background-color: #f0f5f7;
    font-size: 1em;
    font-weight: 300;
    border: 0 !important;
    padding: 20px !important;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.modal-login-content-right input:focus {
    background-color: #e2e6e7;
    outline: 0;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.modal-login-content-right ::-webkit-input-placeholder {
    opacity: 1;
    color: #202223;
}

.modal-login-content-right ::-moz-placeholder {
    opacity: 1;
    color: #202223;
}

.modal-login-content-right :-ms-input-placeholder {
    opacity: 1;
    color: #202223;
}

.forms :-moz-placeholder {
    opacity: 1;
    color: #2b3748;
}

.form-login form .btn {
    background-color: #2169b0;
    font-size: 1em;
    font-weight: 600;
    border: 0 !important;
    padding: 17px 30px !important;
}

.form-login form .btn:hover {
    background-color: #123c76;
}

/*FORM RECOVER*/
.form-recover {
    margin-top: 40px;
}

.form-recover-header {
    margin-bottom: 20px;
}

.form-recover-header h1 {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.1;
    color: #293847;
    margin-bottom: 5px;
}

@media(max-width: 42em) {
    .form-recover-header h1 {
        font-size: 1.8em;
    }
}

.form-recover-header p {
    font-size: 1.125em;
    line-height: 1.333;
    color: #293847;
}

@media(max-width: 42em) {
    .form-recover-header p {
        font-size: 1em;
    }
}

.form-recover form .btn {
    background-color: #bdc4c6;
    font-size: 1em;
    font-weight: 600;
    border: 0 !important;
    padding: 17px 30px !important;
}

.form-recover form .btn:hover {
    background-color: #8c9091;
}

.j-modal-login-close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    color: #c4161c;
    font-size: 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.j-modal-login-close:hover {
    color: #000;
}

@media(max-width: 42em) {
    .modal-login-content-right form .btn {
        width: 100%;
    }
}

/*
========================
======================== HTML CHARS
========================
*/
/* .htmlchars {
    width: 100%;
}

.htmlchars p {
    font-size: 1em;
    line-height: 1.125em;
    margin-bottom: 15px;
}

.htmlchars ul,
.htmlchars ol {
    margin: 15px;
}

.htmlchars a {
    color: #555;
}

.htmlchars a:hover {
    text-decoration: underline;
}

.htmlchars iframe {
    border: none;
} */

/*
========================
======================== FOOTER
========================
*/
.main-footer {
    margin-top: 70px;
}

.main-footer .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.main-footer-container {
    background-color: #282829;
    padding: 40px 0;
}

.main-footer-about {
    flex-basis: 27.3504273504%;
    margin-right: 5.9829059829%;
    text-align: center;
}

@media(max-width: 62em) {
    .main-footer-about {
        flex-basis: 100%;
        margin-right: 0%;
    }
}

.main-footer-about p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.375;
    color: #919999;
    margin-top: 20px;
}

.main-footer-about p strong {
    font-weight: 600;
}

.main-footer-social {
    margin-top: 20px;
}

.main-footer-social a img {
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    margin-right: 3px;
}

.main-footer-social a:hover img {
    opacity: .5
}

.main-footer-contact {
    margin-right: 4.2735042735%;
}

@media(max-width: 62em) {
    .main-footer-contact {
        flex-basis: 100%;
        margin-right: 0%;
        text-align: center;
        margin-top: 30px;
    }
}

.main-footer-contact h1 {
    font-size: 20px;
    line-height: 0.9;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFF;
    text-align: center;
}

.main-footer-contact p {
    color: #919999;
    line-height: 1.6em;
    text-align: center;
}

.main-footer-coppy {
    background-color: #242426;
}

.main-footer-coppy .content {
    color: #919999;
    padding: 40px 0;
    justify-content: center;
    text-align: center;
}

@media(max-width: 62em) {
    .main-footer-coppy .content {
        padding: 20px 0;
    }
}

.main-footer-coppy .content p {
    font-size: 0.875em;
    font-weight: 300;
}

@media(max-width: 62em) {
    .main-footer-coppy .content p {
        font-size: 0.8em;
    }
}