@charset "UTF-8";
/* CSS Document */


:root {
    --dark-brown-menu: #1f0d00;
    --orange: #ef8916;
    --brown-text: #342619;
    --grey-menu: #909090;
    --brown-bar: #665749;
    --orange-bar: #f9ad58;
    --light-brown-bar: #9e8771;
    --lighter-brown-bar: #c6b4a3;
    --grey-submenu-item: #686868;
    --submenu-separator: #979797;
    --pale-salmon: #fad0a1;
    --light-grey: #8C8B8B;
    --form-border: #fbe1c3;
}


html { font-size: 62.5%; } 

body {
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
	
	font-family: 'Opens Sans', sans-serif;
   
	font-weight: 400;
	color: #342619;
    background-color: #FFFFFF;
    
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
}

html,body{
    height: 100%;
}

img {
	border:0;
}

a img,:link img,:visited img { border:none }

/* Colors */

.dark-grey {
    color: #666666;
}

.grey {
    color: #8c8e95;
}

.green {
    color: #42a85f;
}

.teal {
    color: #00a885;
}

.light-blue {
    color: #3d8eb9;
}

.blue {
    color: #1176bd;
}
.black {
    color: #000000;
}

/* HEADER STYLES */

header {
	position:fixed;
    top:0px;
    left:0px;
	min-height:16.5rem;
	width:100%;

    z-index:1000;

}

header .top-bar {
    width: 100%;
   height: auto;
    background-color: var(--brown-bar);
    min-height: 5.0rem;
}

header .top-bar .contact-info,
header .top-bar .contact-info a{
    font-family: "Open Sans", sans-serif;
    font-size: 1.4rem;
    font-weight: normal;
    letter-spacing: 1.8px;
    color: #ffffff;
    height: 5.0rem;
    text-transform: uppercase;
}

header .top-bar .contact-info .item:last-child::before {
    content:" ";
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 0.7rem;
    background-color: #ffffff;
    display: inline-block;
    margin-left: 2.9rem;
    margin-right: 2.9rem;
    margin-top: -0.2rem;
}

header .top-bar .community {
    height: auto;
    width: auto;
    background-color: var(--orange);
    border: 3px solid var(--orange);
}

header .top-bar .community a {

    font-family: "Roboto Slab", serif;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    padding: 0.0rem 2.0rem;
}

header .top-bar .social-networks {
    margin-left: 2.3rem;
}

header .top-bar .social-networks a {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

header .top-bar .social-networks a img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

header .top-bar .social-networks a:last-child {

    margin-right: 0.0rem;
}

header .nav-bar {
    width: 100%;
    height: 11.6rem;
    background-color: #ffffff;
    padding-top: 1.5rem;
    padding-bottom: 2.2rem;
}


header .nav-bar .shadow {
    content: ' ';
    height: 40px;
    width: 110%;
    position: absolute;
    margin-top: -40px;
    bottom: 0;
    left: -10px;
    z-index: -100;
    box-shadow: 0px 10px 12px -10px rgba(0, 0, 0, 0.28);

    display: none;
}

header .logo {
	height: 8.9rem;
    margin-right: 2.0rem;
}

header .top-bar .logo {
    height: 7.6rem;
    margin-top: 1.7rem;
    margin-bottom: 2.0rem;
}

header #menu li {

	height:auto;
    width: auto;
    margin-left: 1.0rem;
    margin-right: 1.0rem;
    display: block;
    list-style: none;
    position: relative;

}

header #menu li:last-child {
    margin-right:0px;
}

header #menu a {
    font-family:"Open Sans", sans-serif;
	font-size: 1.4rem;
	margin:0;
	text-decoration:none;
	text-transform:uppercase;
    font-weight: 600;
    color: var(--dark-brown-menu);
    min-height: 4.3rem;
    padding: 1.2rem;
}

header #menu .submenu-item.selected::after,
header #menu > li.selected::after,
header #menu > li > a:hover::after {
    content:" ";
    width: 100%;
    height:3px;
    position: absolute;
    bottom: -1.0rem;
    left: 0;
    z-index: 100;
    background-color: var(--brown-text);
}

header #menu > li  a.hasSubmenu.opened,
header #menu > li  a.hasSubmenu:hover {
    color: #ffffff;
    min-height: 4.3rem;
    background-color: var(--brown-text);

    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
}

header #menu > li > a.hasSubmenu:hover::after {
    content:"";
}

header #menu a.selected {

	text-decoration:none;
}

header #menu .submenu-bar {
    background-color: #ffffff;
    padding: 1.0rem 1.0rem;
    box-shadow: -10px 9px 21px 0 rgba(128, 152, 213, 0.08), 0 0 21px 0 rgba(128, 152, 213, 0.08);
    position: absolute;
    z-index: 10;
    top: 100%;
    margin-top: 1.2rem;

    display: -ms-flexbox !important;
    display: flex !important;

    -ms-flex-align: center !important;
    align-items: center !important;
}

header #menu .submenu-bar.left {
    left:0;
}

header #menu .submenu-bar.right {
    right:0;
}

header #menu .submenu-bar.center {
    left:-50%;
}

header #menu .submenu-bar a {
    font-family:"Open Sans", sans-serif;
    font-size: 1.4rem;
    text-decoration:none;
    text-transform: none;
    font-weight: 400;
    color: var(--grey-submenu-item);
    white-space: nowrap;
    margin-left: 1.0rem;
    margin-right: 1.0rem;
}

header #menu .submenu-bar .separator {
    width: 1px;
    height: 1.2rem;
    opacity: 0.25;
    background-color: var(--submenu-separator);
    margin-left: 1.0rem;
    margin-right: 1.0rem;
    display:inline-block;
}

header #menu .submenu-bar a:hover {
    border-bottom: 0px solid var(--brown-text);
    color: var(--brown-text);
}

header #menu .submenu-bar a.selected {

    text-decoration:none;
    color: var(--brown-text);
}



/***** Action Bar ****/

header .action-bar {
    position:relative;
}

header .action-bar .text-button {
    font-family: "Open Sans", sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--orange);
    cursor: pointer;
    text-transform: uppercase;
    position:relative;
}

header .action-bar .text-button:hover::after {
    content:" ";
    width: 100%;
    height:3px;
    position: absolute;
    bottom: -1.0rem;
    left: 0;
    z-index: 100;
    background-color: var(--orange);
}

header .action-bar .button.white {
    height: 5.0rem;
    border-radius: 2px;
    border: 3px solid  var(--orange);
    background-color: #ffffff;
    padding:0.0rem 1.5rem;
    margin-left: 1.5rem;
}

header .action-bar .button.white a {
    font-family: "Roboto Slab", serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--orange);
    text-transform: uppercase;
}

header #menu,
header .action-bar {
    margin-top: 2.2rem;
}

header .mobile-nav-icon {

    margin-left:2.0rem;
    margin-right:0.0rem;

    cursor: pointer;

    width: 5.7rem;
    height: auto;

    background-image: url("../images/mobile-nav-icon.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;

}

header .mobile-nav-icon.opened {
    background-image: url("../images/mobile-nav-close-icon.svg");
}



@media (max-width: 575px) {
    header .top-bar .logo {
        height: 4.1rem;
        margin-top: 0.9rem;
        margin-bottom: 1.1rem;
        margin-right: 1.0rem;
    }

    header .mobile-nav-icon {

        padding-left: 1.3rem;
        padding-right: 1.3rem;
        width: 4.5rem;
    }

    header .top-bar .community a {
        font-size: 1.2rem;
        padding: 0.0rem 0.5rem;
    }

    header {
        min-height: 6.2rem;
        position: absolute;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    header {
        min-height: auto;
        position: absolute;
    }

    header .top-bar .logo {
        height: 6.2rem;
        margin-top: 0.4rem;
        margin-bottom: 0.8rem;
    }

    header .mobile-nav-icon {
        width: 5.7rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    header {
        min-height: 11.6rem;
    }

    header .nav-bar {

        height: auto;
    }

    header #menu a {
        font-size: 1.1rem;
        min-height: 4.3rem;
        padding: 1.2rem 0.4rem;
    }

    header #menu li {
        margin-left: 0.2rem;
        margin-right: 0.2rem;
    }

    header .logo {
        height: 4.4rem;
        margin-right: 0.60rem;
    }

    header .action-bar {
        margin-left: 0.0rem;
    }

    header .action-bar .button.white a {
        font-size: 1.1rem;
    }

    header .action-bar .button.white {
        height: 5.0rem;
        padding: 0.0rem 0.4rem;
        margin-left: 0.7rem;
    }

    header .action-bar .text-button {
        font-size: 1.1rem;
    }

    header #menu, header .action-bar {
        margin-top: 1.2rem;
    }

    header #menu .submenu-bar a {
        font-size: 1.2rem;
        margin-left: 0.8rem;
        margin-right: 0.8rem;
    }

}

@media (min-width: 992px) and (max-width: 1199px) {

    header #menu a {
        font-size: 1.2rem;
        min-height: 4.3rem;
        padding: 1.2rem 1.0rem;
    }

    header #menu li {
        margin-left: 0.4rem;
        margin-right: 0.4rem;
    }

    header .logo {
        height: 7.0rem;
        margin-right: 1.5rem;
    }

    header .action-bar {
        margin-left: 0.5rem;
    }

    header .action-bar .button.white a {
        font-size: 1.2rem;
    }

    header .action-bar .text-button {
        font-size: 1.2rem;
    }


    header #menu .submenu-bar a {
        font-size: 1.2rem;
        margin-left: 0.8rem;
        margin-right: 0.8rem;
    }
}


header #mobileMenu {
    display: none;
    clear: both;
    margin-top:0px;
    background-color: #ffffff;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

header #mobileMenu .enroll-items,
header #mobileMenu .mobile-menu-items{

    padding-right: 3.5rem;
    padding-left: 5.0rem;
    width: 100%;

}

header #mobileMenu li {
    padding: 1.5rem 0.0rem;
    list-style: none;

}

header #mobileMenu a {
    font-family:"Open Sans", sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    text-decoration:none;
    color: var(--brown-text);

    display: block;
}

header #mobileMenu li::after {
    content:' ';
    width: 100%;
    height: 1px;
    position:absolute;
    left:0;
    margin-top: 1.5rem;
    background-color: #fce7d0;
}

header #mobileMenu li.visit a {
    color: var(--orange);
}

header #mobileMenu li.visit a:hover {
    color: var(--orange-bar);
}

header #mobileMenu a:hover {
    color: var(--orange-bar);
    text-decoration:none;
}

header #mobileMenu  a.selected {
    color: var(--lighter-brown-bar);
    text-decoration:none;
}

header #mobileMenu .submenu-item {
    position: relative;
}

header #mobileMenu .submenu-item .submenu-button {
    position:absolute;
    width:16px;
    height:9px;

    top: 3px;
    right:0px;

    background: url("../images/mobile-accordion-button.svg") no-repeat 0% 0%;

    cursor:pointer;
}

header #mobileMenu .submenu-item .submenu-button.opened  {
    background-position: 0% 100%;
}

header #mobileMenu .mobileSubmenu {
    display: none;
    clear: both;
    width: 100%;

    padding-left: 3.0rem;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

}

header #mobileMenu li .mobileSubmenu a{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;

    font-weight: normal;
}

header #mobileMenu li .mobileSubmenu a:last-child {
    margin-bottom: 0.0rem;
}

header #mobileMenu .enroll {
    background-color: var(--orange);
    padding: 1.5rem;
}

header #mobileMenu .enroll a {
    color: #ffffff;
}

header #mobileMenu .enroll a:hover {
    color: var(--orange-bar);
}

@media (max-width: 575px) {
    header #mobileMenu .enroll {
        padding: 1.5rem 0.0rem;
    }

    header #mobileMenu .enroll-items,
    header #mobileMenu .mobile-menu-items {

        padding-right: 3.0rem;
        padding-left: 4.0rem;

    }
}

@media (min-width: 768px) {
    header #mobileMenu {
        display: none !important;
    }
}


/*Language Bar */
.flex-container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-expand {
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

/*
#langBar {
    margin-left: 4.0rem;
    min-width: 65px;
}

#langBar .lang-button {
    float:left;
    width: 22px;
    height: 22px;
    background-position: bottom;
    background-repeat: no-repeat;
    cursor: pointer;
}

#langBar .lang-button:hover,
#langBar .lang-button.selected {
    background-position: top;
}

#langBar .lang-button.es {
    background-image: url("../images/es.png");
}

#langBar .lang-button.en {
    background-image: url("../images/en.png");
}

#langBar .lang-separator {
    width: 1px;
    height:13px;
    margin-top:5px;
    margin-right: 9px;
    margin-left: 9px;
    background-color: #1076bd;
    float:left;
}

*/

/* FOOTER STYLES*/
footer {
	position:relative;
	top:0px;
	left:0px;
	width:100%;

    background-color: var(--lighter-brown-bar);

}

footer .social {
    min-height: 14.7rem;
    background-color: var(--brown-bar);

    padding: 4.0rem;
}

footer .social .social-content {
    width:530px;
}

footer .social .info h1 {
    font-family: "Rubik", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.31;
    color: var(--orange-bar);

    max-width: 17.0rem;

    margin-top: 0;
}

footer .social .social-plugin {

    min-height: 7.0rem;
    max-width: 33.0rem;
    min-width: 27.0rem;

    text-align: right;
    position:relative;
    overflow: hidden;

    margin-left: 1.0rem;

}

footer .social .social-plugin .wrapper {
    position:absolute;
    left: -1px;
    text-align: center;
    top: -1px;
    width: 103%;
}

footer .partners {
    background-color: var(--lighter-brown-bar);
    padding: 2.5rem 4.0rem;
}

footer .partners .partners-list {
    width: 530px;
}

footer .partners .partner {
    text-align: left;
    margin-left: 6.0rem;
    margin-right: 6.0rem;

    max-width: 14.0rem;

    display: -ms-flexbox;
    display: flex;


    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;

    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;

    -ms-flex-align: start;
    align-items: flex-start;
}

footer .partners .partner:first-child {

    margin-left: 0.0rem;
}

footer .partners .partner:last-child {

    margin-right: 0.0rem;
}

footer .partners .partner .logo {
    height: 6.0rem;
    width: 100%;

    -ms-flex-positive: 0;
    flex-grow: 0;

    display: -ms-flexbox;
    display: flex;

    -ms-flex-align: center;
    align-items: center;

    margin-bottom: 1.0rem;
}

footer .partners .partner .logo img {
    width: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

footer .partners .partner .info {
    -ms-flex-positive: 1;
    flex-grow: 1;

    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;

    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;

    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;


    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

footer .partners .partner h1 {
    font-family: "Rubik", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: normal;
    color: var(--brown-text);
}

footer .partners .partner p {
    font-family: "Open Sans", sans-serif;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1.25;
    letter-spacing: normal;
    color: var(--brown-text);

    margin-bottom: auto;
}

footer .partners .partner .arrow-button {
    font-family: "Open Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;

    -ms-flex-positive: 0;
    flex-grow: 0;

    margin-top: 1.0rem;

}

footer .location {
    background-color: var(--light-brown-bar);

}

footer .location .info {
    width: 24.0rem;
}

footer .location .info h1{
    font-family: "Rubik", sans-serif;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1;
    color: #ffffff;
}

footer .location .info p{
    font-family: "Open Sans", sans-serif;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1;
    color: #ffffff;
}

footer .location .map {
    background-image: url("../images/map.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
    width: 100%;
    height: 100%;
}

@media (max-width: 575px) {

    footer .partners,
    footer .social {
        min-height: auto;
        padding: 0.0rem;
    }

    footer .partners .partners-list,
    footer .social .social-content {
        width:100%;
        padding: 1.5rem 1.5rem;
    }

    footer .social .location {
        background-color: transparent;
        margin-left:2.0rem;
    }

    footer .social .location::before {
        content:' ';
        width: 2px;
        height:100%;

        background: #5d4f42; /* Old browsers */
        background: -moz-linear-gradient(left, #6d6156 0%, #6d6156  50%, #5d4f42 50%, #5d4f42 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(left, #6d6156 0%, #6d6156  50%,#5d4f42 50%,#5d4f42 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to right, #6d6156 0%,#6d6156 50%,#5d4f42 50%,#5d4f42 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

        position: absolute;
        top: 0;
        left: 50%;

    }

    footer .social .info {
        margin-right: 2.0rem;
        max-width: none;

/*
        -ms-flex-pack: end!important;
        justify-content: flex-end!important;


        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center; */
    }

    footer .social .location img,
    footer .social .info .fb-logo img{
        height: 4.0rem;
        width:auto;
    }

    footer .social .info,
    footer .social .location {
        width: 50%;
        max-width: none;
    }

    footer .social .info h1,
    footer .social .location h1{
        font-family: "Rubik", sans-serif;
        font-size: 1.0rem;
        font-weight: 500;
        line-height: 1.21;
        color: #ffffff;

        margin-right: 1.0rem;
        max-width: 17.0rem;
    }

    footer .partners .partner {
        max-width: none;
        width:50%;
        margin-left: 2.0rem;
        margin-right: 2.0rem;
    }

    footer .partners .partner h1 {
        font-family: "Rubik", sans-serif;
        font-size: 1.0rem;
        font-weight: 500;
        line-height: 1.21;

        max-width: none;
        margin-bottom: 0.0rem;
    }

    footer .partners .partner:first-child::after {
        content:' ';
        width: 2px;
        height:100%;

        background: #b3a08f; /* Old browsers */
        background: -moz-linear-gradient(left, #dccbbc 0%, #dccbbc  50%, #b3a08f 50%, #b3a08f 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(left, #dccbbc 0%, #dccbbc  50%,#b3a08f 50%,#b3a08f 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to right, #dccbbc 0%,#dccbbc 50%,#b3a08f 50%,#b3a08f 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

        position: absolute;
        top: 0;
        left: 50%;

    }

    footer .partners .partner:first-child {

        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;


        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

}

@media (min-width: 576px) and (max-width: 767px) {
    footer .partners,
    footer .social {
       min-height: 7.4rem;
       padding: 2.0rem;
   }

    footer .partners .partners-list,
    footer .social .social-content {
        width:520px;
    }

    footer .social .location {
        background-color: transparent;
        margin-left:4.0rem;
    }

    footer .social .location::before {
        content:' ';
        width: 2px;
        height:100%;

        background: #5d4f42; /* Old browsers */
        background: -moz-linear-gradient(left, #6d6156 0%, #6d6156  50%, #5d4f42 50%, #5d4f42 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(left, #6d6156 0%, #6d6156  50%,#5d4f42 50%,#5d4f42 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to right, #6d6156 0%,#6d6156 50%,#5d4f42 50%,#5d4f42 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

        position: absolute;
        top: 0;
        left: 50%;

    }

    footer .social .info {
        margin-right: 4.0rem;
        max-width: none;

        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;

        -ms-flex-pack: end!important;
        justify-content: flex-end!important;
    }

    footer .social .info .fb-logo img{
        height: 4.0rem;
        width:auto;
    }

    footer .social .info,
    footer .social .location {
        width: 50%;
        max-width: 25.0rem;
    }

    footer .social .info h1,
    footer .social .location h1{
        font-family: "Rubik", sans-serif;
        font-size: 1.4rem;
        font-weight: 500;
        line-height: 1.21;
        color: #ffffff;

        margin-right: 2.5rem;
        max-width: 15.0rem;
    }

    footer .partners .partner {
        max-width: 22.5rem;
        width:50%;
        margin-left: 4.0rem;
        margin-right: 4.0rem;
    }

    footer .partners .partner h1 {
        font-family: "Rubik", sans-serif;
        font-size: 1.4rem;
        font-weight: 500;
        line-height: 1.21;

        max-width: 21.5rem;
        margin-bottom: 1.0rem;
    }

    footer .partners .partner:first-child::after {
        content:' ';
        width: 2px;
        height:100%;

        background: #b3a08f; /* Old browsers */
        background: -moz-linear-gradient(left, #dccbbc 0%, #dccbbc  50%, #b3a08f 50%, #b3a08f 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(left, #dccbbc 0%, #dccbbc  50%,#b3a08f 50%,#b3a08f 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to right, #dccbbc 0%,#dccbbc 50%,#b3a08f 50%,#b3a08f 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

        position: absolute;
        top: 0;
        left: 50%;

    }

    footer .partners .partner:first-child {

        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;


        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
    }


}

@media (min-width: 768px) and (max-width: 991px) {

    footer .social {
        min-height: auto;
        padding: 2.0rem;
    }

    footer .partners {
        padding: 2.0rem;
    }

    footer .partners .partner {
        margin-right: 1.0rem;
        margin-left: 1.0rem;
        max-width: 15.0rem;
    }


    footer .partners .partner .logo {
        height: 4.5rem;
    }

    footer .partners .partners-list,
    footer .social .social-content {
        width:340px;
    }

    footer .social .social-plugin,
    footer .social .social-content .wrapper {
        min-width:240px;
    }

    footer .social .info h1 {
        font-size: 1.4rem;
    }


    footer .location .info {
        width: 16.0rem;
    }

    footer .location .info h1 {
        font-size: 1.8rem;
    }
    footer .location .info p {
        font-size: 1.2rem;
    }
}


/* CONTENT STYLES*/

#contentContainer {
	position:relative;
	padding-top: 0px;
	width: 100%;
    min-height: 500px;
	height: auto;
	background-color: #FFFFFF;/*#FCFCFC;/*#FFFFFF;*/

    margin-top: 170px; /*para compensar o header fixo*/
}

#content {}

@media (max-width: 575px) {
    #contentContainer {
        margin-top: 61px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    #contentContainer {
        margin-top: 74px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #contentContainer {
        margin-top: 120px;
    }
}

/* AREA BAR */

.areaBar {
	position:relative;

	width: 100%;
	height: 32.3rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;

    overflow: hidden;
    
}

.areaBar .brown-bar {
    width:50%;
    height: 20.4rem;
    background-color: var(--brown-bar);


}

.areaBar .orange-bar {
    width:50%;
    margin-top: 20.4rem;
    height: 11.9rem;
    background-color: var(--orange-bar);

    position: absolute;
    z-index: 201;
}

.areaBar .white-bar {

    height: 6.9rem;
    background-color: #ffffff;
}

.areaBar .areaBarContent {

    height: 32.3rem;
    position:absolute;
    top:0;
    left:0;
    right: 0;
}

.areaBar .bar-content {
    position: relative;

}

.areaBar .bar-content::before {
    content:" ";
    background-image: url("../images/areabar-overlay.svg");
    background-repeat: no-repeat;
    background-color: transparent;
    width: 31.6rem;
    height: 32.3rem;
    z-index:100;
    position: absolute;
    left: 0;
    top:0;
}

.areaBarContent .bar-image {
    height: 254px;
    background-image: url("../images/header.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
}

.areaBarContent .bar-image .bar-content h1 {
    font-family: "Rubik";
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    margin-left: 20.0rem;
    text-transform: uppercase;
    text-align: left;

}

@media (max-width: 575px) {
    .areaBar ,
    .areaBar .areaBarContent{
        height: 14.0rem;
    }
    .areaBar .bar-content::before {
        background-color: transparent;
        max-width: 19.0rem;
        width: 50%;
        height: 0.8rem;
        bottom: -4px;
        top: auto;
       background-image: none;
        background-color: var(--orange-bar);
    }

    .areaBarContent .bar-image .bar-content h1 {
        margin-left: 1.5rem;
        font-size: 1.8rem;
    }

    .areaBarContent .bar-image {
        height: 133px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .areaBar ,
    .areaBar .areaBarContent{
        height: 13.7rem;
    }
    .areaBar .bar-content::before {
        background-color: transparent;
        max-width: 19.0rem;
        width: 50%;
        height: 0.8rem;
        bottom: -4px;
        top: auto;
        background-image: none;
        background-color: var(--orange-bar);
    }

    .areaBarContent .bar-image .bar-content h1 {
        margin-left: 1.5rem;
        font-size: 1.8rem;
    }

    .areaBarContent .bar-image {
        height: 133px;
    }

    .areaBar .orange-bar {
        height: 0.8rem;
        margin-top: 0;
        bottom: 0;
    }
}


/* title */
.page-title {
    font-family: "Rubik", sans-serif;
    font-size: 3.0rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1.17;
    color: var(--orange);
    position: relative;
    margin-bottom: 5.0rem;

}

.page-title h2 {
    margin-top: 0.0rem;
}

.page-title::after {
    content:" ";
    width: 5.6rem;
    height: 0.4rem;
    background-image: url("../images/title-ornament.svg");
    background-repeat: no-repeat;
    top: 100%;
    position: absolute;
    margin-top: 2.0rem;
}


.entranceBlocks .page-title {
    text-align: center;
}

.entranceBlocks .page-title::after {
    content:" ";
    width: 5.6rem;
    height: 0.4rem;
    background-image: url("../images/title-ornament.svg");
    background-repeat: no-repeat;
    top: 100%;
    left:0;
    right: 0;
    position: absolute;
    margin: auto;
    margin-top: 2.0rem;
}


@media (max-width: 767px) {
    .page-title,
    .page-title h2
    {
        font-size: 1.8rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .page-title,
    .page-title h2{
        font-size: 2.4rem;
    }

    .page-title::after {

        margin-top: 1.0rem;
    }
}

/* Files styles */
.files {
    width: 100%;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 4.0rem;
    margin-top: 0.0rem;
}

.files .title h3 {

    font-size: 2.0rem;
    font-weight: 600;
    font-style: normal;
    line-height: 1.3;
    color: var(--brown-text);
    text-transform: none;
    margin-bottom: 2.0rem;

}

.files-items .item{
    text-align: center;
    width: 25%;
    padding: 1.5rem;
}

.files .files-items .item .icon {
    width: 6.0rem;
    height: 6.0rem;
    display: inline-block;

}

.files .files-items .item .label {
    font-family: "Rubik", sans-serif;
    font-size: 2.0rem;
    font-weight: 500;
    text-align: center;
    color: var(--brown-text);
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.files .files-items .item .description {
    font-size: 1.6rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: var(--brown-text);
    margin-top: 1.25rem;
    margin-bottom: 2.0rem;
}

.files .files-items .item a {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    color: var(--orange);
    text-transform: uppercase;

    margin-top: 2.0rem;
    margin-bottom: 2.0rem;

}


@media (max-width: 575px) {

.files-items .item {
	width: 50%;
}

.files .files-items .item .label {
    font-size: 1.6rem;
    margin-top: 1.25rem;
    margin-bottom: 0.25rem;
}

.files .files-items .item .description {
    font-size: 1.2rem;
    margin-top: 0.25rem;
    margin-bottom: 2.0rem;
}



}

@media (min-width: 576px) and (max-width: 767px) {

.files-items .item {
	width: 50%;
}
	
.files .files-items .item .label {
    font-size: 1.8rem;
    margin-top: 1.25rem;
    margin-bottom: 0.25rem;
}

.files .files-items .item .description {
    font-size: 1.4rem;
    margin-top: 0.25rem;
    margin-bottom: 2.0rem;
}


}


@media (min-width: 768px) and (max-width: 991px) {

.files-items .item {
	width: 33%;
}

}




/* Links styles */
.links {
    width: 100%;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 2.0rem;
    margin-top: 0.0rem;
}

.links .title h3 {

    font-size: 2.0rem;
    font-weight: 600;
    font-style: normal;
    line-height: 1.3;
    color: var(--brown-text);
    text-transform: none;
    margin-bottom: 2.0rem;

}

.links-items .item{
    text-align: center;
   /* max-width: 25%; */
    padding: 1.5rem;
}


.links .links-items .item a {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    color: var(--orange);
    text-transform: uppercase;

    margin-top: 2.0rem;
    margin-bottom: 2.0rem;

}



/* GALLERY STYLES */
.media-gallery {
    margin-top:4.5rem;
}

.media-gallery .title h3 {
    font-size: 2.0rem;
    font-weight: 600;
    font-style: normal;
    line-height: 1.3;
    color: var(--brown-text);
    text-transform: none;
    margin-bottom: 2.0rem;
    margin-top:1.5rem;
}

.media-gallery .gallery-items {
    margin-left: -1.0rem;
    margin-right: -1.0rem;
}

.media-gallery .item {
    padding-left: 1.0rem;
    padding-right: 1.0rem;
    margin-bottom: 2.0rem;
    overflow:hidden;
}

.media-gallery .item img {
    width: 100%;
    heigth: auto;
    object-fit: contain;
}

.media-gallery .item .overlay {
    position: absolute;

    height: 100%;
    top: 100%;
    left: 1.0rem;
    right: 1.0rem;
    overflow: hidden;
    z-index: 100;
    background-color: rgba(52, 38, 25, 0.68);
}

.media-gallery .item .overlay img{
    width:7.0rem;
    height: 7.0rem;
    max-height: 50%;
    max-width: 50%;
    object-fit: scale-down;
}

.arrow-popup {
    position: absolute;
    top: 50%;
    margin-top : -33px;
    cursor: pointer;

    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;

    width: 66px;
    height: 66px;

    background-image: url("../images/arrow-next-icon.svg");
    background-repeat: no-repeat;
    background-position: center;

    opacity: 0.65;
}

.arrow-popup:hover {
    opacity: 1;
}

.arrow-popup.right {
    right: 0;
}

.arrow-popup.left {
    left: 0;
    transform: rotate(180deg);
}


.close-popup {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;

    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;


    width: 45px;
    height: 45px;

    background-image: url("../images/mobile-nav-close-icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 33px;

    background-color: rgba(255, 255, 255, 0.76);

    z-index: 1047;
}

.close-popup:hover {
    background-color: rgba(255, 255, 255,1);
}

/* Buttons */

.scrollToTop {
    width: 60px;
    height: 60px;
    border-radius: 2px;
    border: solid 3px var(--orange);
    background-image: url("../images/up-arrow-icon.svg");
    background-repeat: no-repeat;
    background-size: auto 45%;
    background-position: center;
    background-color: rgba(255,255,255,0.5);

    position: fixed;
    right:2.0rem;
    bottom: 2.0rem;

    cursor: pointer;

    z-index:1000;

}

.button {
    cursor: pointer;
}

.button a,
.button a:hover,
.button a:visited,
.button a:active
{
    color: #FFFFFF;
    text-decoration: none;
}


.round-button {
    display: inline-block;
    font-family: "Roboto Slab", serif;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 4px;
    padding: 1.5rem 3.0rem;
    color: var(--orange);

    white-space: nowrap;

    text-transform: uppercase;
}

.round-button.orange {
    background-color:var(--orange);
    border: 2px solid  var(--orange);
    color: #ffffff;
}

.round-button.white {
    border: 2px solid  var(--orange);
    background-color: #ffffff;
}


.arrow-button {
    position: relative;
}

.arrow-button.left {
    padding-left: 2.3rem;
}

.arrow-button::before {
    content: " ";
    background-repeat: no-repeat;
    width: 1.2rem;
    height: 8px;

    position: absolute;
    left: 0;
    top: 50%;
    margin-top: 0.0rem;

    -ms-transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);

}

.arrow-button::after {
    content: " ";
    background-repeat: no-repeat;
    width: 1.2rem;
    height: 8px;

    position: absolute;
    left: 100%;
    margin-left: 0.5rem;
    top: 50%;
    margin-top: 0.0rem;

    -ms-transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);

}

.arrow-button.right::after {
    background-image: url("../images/right-arrow-icon.svg");
    transition: margin-left 0.3s;
}


.arrow-button.right.orange::after {
    background-image: url("../images/orange-right-arrow-icon.svg");
    background-size:contain;
    width: 1.8rem;
    height: 1.6rem;
    transition: margin-left 0.3s;
}


.arrow-button.right:hover::after {
    margin-left: 1.0rem;
    transition: margin-left 0.3s;
}

.arrow-button.right::before,
.arrow-button.left::after {
    display: none
}

.arrow-button.left::before {
    background-image: url("../images/left-arrow-icon.svg");

    background-size:contain;
    width: 1.8rem;
    height: 1.6rem;
    transition: left 0.3s;
}


.arrow-button.left.orange::before {
    background-image: url("../images/orange-left-arrow-icon.svg");

}

.arrow-button.left.grey::before {
    background-image: url("../images/grey-left-arrow-icon.svg");

}

.arrow-button.left:hover::before {
    left: -0.5rem;
    transition: left 0.3s;
}


.arrow-button.down::after {
    background-image: url("../images/down-arrow-icon.svg");
    background-size:contain;
    width: 1.2rem;
    height: 1.4rem;
    transition: margin-top 0.3s
}

.arrow-button.down:hover::after {
    margin-top: 0.5rem;
    transition: margin-top 0.3s;
}

    
/****** GENERIC STYLES ******/


ul {

    list-style:none;
    margin: 0;
    padding: 0;
}

ul li {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;

}

ul li::before {
    content:' ';
    width: 10px;
    height: 10px;
    background-color: var(--orange-bar);
    display: inline-block;
    margin-right: 2.0rem;
}

h1 {

    color: #FFFFFF ;
    font-size:6.0rem;
    margin-bottom: 0.0rem;
}

h2 {
    font-family: "Rubik", sans-serif;
    font-size: 3.0rem;
    font-weight: 500;
    line-height: 1.23;
    color: var(--orange);
    text-transform: uppercase;
}

h3 {
    margin:0;
    font-weight: 600; /*semibold*/
    font-size: 2.3rem;
    line-height: 2.8rem;
	text-transform:uppercase;
}

hr {
  /*  margin-top: 30px;
    margin-bottom: 30px;*/
    border:none;
    border-bottom: 2px solid #dedede;
}

table img {
    display:block;
    margin: 0 auto;
    margin-bottom: 1.8rem;
}

.clear {
	clear:both;
}

/*
.left {
	float:left;
}

.right {
	float:right;
}
*/
.lastItem {
	border-bottom-width: 0px;
}

.group:after {
  content: "";
  display: table;
  clear: both;
}



.leftSpace {
    margin-left:30px;
}


.text-center {
    text-align: center;
}




@media (max-width: 767px) {


}


@media (max-width: 480px) {


}

@media (min-width: 480px) and (max-width: 768px){

}


@media (min-width: 1200px) {

}




@media (min-width: 480px) and (max-width: 767px) {


}



@media (max-height: 766px) {

}



