/*
========================
======================== FONT
========================
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;500;600;700;800;900&display=swap');

.material-icons-round {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/*
========================
======================== BODY
========================
*/
html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Roboto Slab', serif;
    font-weight: 300;
    color: #292c39;
    overflow-x: hidden;
    background-color: #f1f2f3;
}

/*
========================
======================== CONTENT
========================
*/
.container {
    display: block;
    width: 100%;
}

.content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .content {
        width: 90%;
    }
}

/*
========================
======================== 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;
}

/*
========================
======================== WIDGET SOCIAL
========================
*/
.widget-top {
    position: fixed;
    right: 10px;
    bottom: 20px;
    z-index: 20 !important;
}

.widget-top a {
    width: 65px;
    height: 65px;
    text-align: center;
    font-size: 2em;
    line-height: 65px;
    color: #FFF;
    margin-bottom: 5px;
    display: block;
    -webkit-border-radius: 6px;
    -webkit-border-top-left-radius: 6px;
    -webkit-border-bottom-left-radius: 6px;
    -moz-border-radius: 6px;
    -moz-border-radius-topleft: 6px;
    -moz-border-radius-bottomleft: 6px;
    border-radius: 6px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

/*BTN TOP*/
.widget-top a.go {
    background-color: #000;
    color: #FFF;
}

.widget-top a.go:hover {
    background-color: #8a7f5e;
}

/*
========================
======================== HEADER
========================
*/
.main-header {
    padding: 20px 0 10px 0;
}

.main-header .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 90%;
    max-width: 100% !important;
}

.main-header-logo{
    width: 210px;
    margin: auto;
}

.main-header-terms .main-header-logo img{
    width: 210px;
    margin: auto;
}

/*MENU FIXED*/
.main-header-fixed{
    height: 100px;
    background-color: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;

    -webkit-box-shadow: 0px 0px 20px #474b54;
    -moz-box-shadow: 0px 0px 20px #474b54;
    box-shadow: 0px 0px 20px #474b54;

    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.main-header-fixed .main-header-logo{
    width: 100px;
    margin-top: -10px;
}

@media(max-width: 1366px) {
    .main-header-fixed .main-header-logo img{
        height: 100px;
    }

    .main-header-logo {
        flex-basis: 12%;
    }
}

.main-header-fixed .main-header-nav {
    display: flex;
    flex-wrap: wrap;
    margin-top: -20px;
}

.main-header-fixed .main-header-social{
    margin-top: -20px;
}

@media(max-width: 1366px) {
    .main-header-fixed {
        height: 120px;
    }
}

@media(max-width: 768px) {
    .main-header-fixed {
        display: none;
    }
    .main-header-social a img{
        margin-top: -22px;
    }
}
/*END MENU FIXED*/

@media(max-width: 88em) {
    .main-header-logo {
        flex-basis: 20%;
    }
}

@media(max-width: 52em) {
    .main-header-logo {
        flex-basis: 60%;
        text-align: center;
    }
}

.main-header-nav {
    display: flex;
    flex-wrap: wrap;
    margin-top: 90px;
}

@media(max-width: 65em) {
    .main-header-nav {
        display: none;
    }
}

.main-header-nav-item a {
    font: 18px 'Roboto Slab', serif;
    font-weight: 400;
    padding: 50px 20px 20px 20px;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    color: #292c39;
}

@media(max-width: 88em) {
    .main-header-nav-item a {
        font-size: 1em;
        padding: 50px 15px 20px 15px;
    }
}

.main-header-social{
    margin: 90px 40px 0;
}

@media(max-width: 768px) {
    .main-header-social{
        display: none;
    }
}

.main-header-social a img {
    width: 38px;
    height: 38px;
    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: #292c39;
    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: #292c39;
    color: #FFF;
}

.main-header-links a:last-child {
    background-color: #efc853;
    color: #292c39;
    margin-right: 0;
}

.main-header-links a:last-child:hover {
    background-color: #c09410;
    color: #292c39;
}

.main-header-links a span {
    margin-left: 5px;
}

/*
========================
======================== FOOTER
========================
*/
.footer-content{
    max-width: 90%;
    margin: auto;
    margin-top: 70px;
    padding-bottom: 40px;
    background-color: #E0E9EE;

    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.footer-content .main-footer-logo{
    width: 150px;
    margin: auto;
    padding-top: 50px;
}

.main-footer-copy p{
    font: 15px 'Roboto Slab', serif;
    font-weight: 300;
    text-align: center;
    margin: 30px 0;
}

.footer-content .content h2{
    font: 16px 'Roboto Slab', serif;
    font-weight: 400;
    text-align: center;
    margin: 20px 0;
}

.footer-content .content .contact .box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-content .content .contact span{
    padding: 2px 4px;
}

.footer-content .content .contact h3{
    font: 20px 'Roboto Slab', serif;
    font-weight: 500;
    text-align: center;
}

.main-footer-social{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.main-footer-social a img {
    width: 38px;
    height: 38px;
    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
}

/*
========================
======================== POLITICS
========================
*/
.politics .content{
    margin-top: 300px;
}

.politics .content .politics-header{
    padding-left: 20px;
}

.politics .content .politics-header h1{
    font: 24px "Rubik";
    font-weight: 500;
    text-align: center;
    margin-bottom: 50px;
}
.politics .content .politics-header p{
    font: 16px "Rubik";
    font-weight: 300;
    text-align: left;
    margin-bottom: 30px;
    text-align: center;
}

/*
========================
======================== MODAL
========================
*/

.modal-partners-01,
.modal-partners-02,
.modal-partners-03{
    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: 9999;
}

.modal-partners-01-content,
.modal-partners-02-content,
.modal-partners-03-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);
}

.j-modal-partners-01-close,
.j-modal-partners-02-close,
.j-modal-partners-03-close{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #c4161c;
    font-size: 24px;

    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.j-modal-partners-01-close:hover,
.j-modal-partners-02-close:hover,
.j-modal-partners-03-close:hover{
    color: #000;
}

.exibition{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.exibition-image{
    flex-basis: 100%;
    margin-bottom: 40px;
}

.exibition .htmlchars p{
    font: 18px 'Roboto Slab', serif;
    font-weight: 300;-
}

.exibition .htmlchars h2{
    margin-top: 30px;
    margin-bottom: 10px;
}

.exibition header h1{
    margin-bottom: 30px;
}

/*
========================
======================== POLITICS
========================
*/
.politics .content{
    margin-top: 200px;
    margin-bottom: 200px;
}

.politics .content .politics-header{
    padding-left: 20px;
}

.politics .content .politics-header h1{
    font: 28px 'Roboto Slab', serif;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.politics .content .politics-header p{
    font: 20px 'Roboto Slab', serif;
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
}