
html {
    background: #fff;
    font-size: 62.5%;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-sizing: border-box;
}
*,
*:before,
*:after {
    box-sizing: inherit;
}

.main-content {
    padding-top: 60px;
    z-index: 2;
}
@media (min-width: 1200px) {
    .main-content {
        padding-top: 0;
    }
}
.menu {z-index: 100;}
body > header {
    background-color: transparent;
    position: relative;
    z-index: 3;
}
header .pre-header {
    display: none;
}
@media (min-width: 1200px) {
    header .pre-header {
        display: block;
        font-size: 1.4rem;
    }
}
header .header-top {
    position: relative; 
    z-index: 4;
    height: 110px;
    height: 100px;
    /* transform-style: preserve-3d; */
    user-select: none;
}
header .header-top .site-language,
header .header-top .site-apps,
header .header-top .site-login,
header .header-top .site-user {
    margin-left: 40px;
    display: inline-block;
    vertical-align: middle;
}
header .header-top-nav {
    float: right;
}
header .vertical-centered {
    position: relative;
    top: 60%;
    transform: translateY(-50%);
}
header .logo-desktop,
header .mobile-logo {
    font-size: 0;
    margin: 0;
}
header .logo-desktop a,
header .mobile-logo a {
    width: auto;
    height: auto;
    display: block;
}
header .logo-desktop {
    display: inline-block;
    width: auto;
}
header .logo-desktop svg {
    width: 172px;
    height: 44px;
}
header .mobile-logo svg {
    width: 180px;
    height: auto;
    margin-top: -5px;
}
header .mobile-logo {
    float: left;
    position: relative;
    top: 53%;
    transform: translateY(-50%);
    margin: 5px 0 0 -45px;
    max-width: 50%;
}
header .mobile-logo .graphic {
    display: none;
}
@media (min-width: 375px) {
    header .mobile-logo {
        margin: 5px;
        height: 100%;
    }
    header .mobile-logo svg {
        width: 154px;
        height: auto;
        margin-top: 0;
        overflow: visible;
    }
    header .mobile-logo .graphic {
        display: block;
    }
}
@media (min-width: 1200px) {
    header .mobile-logo {
        display: none;
    }
}
.category {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.01rem;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    padding: 0 0.8rem;
    color: #fff;
    border: 0;
    border-radius: 0.2rem;
    z-index: 1;
}
.category:hover {
    border: 0;
}
a.category {
    color: #fff;
}
.page-header {
    position: relative;
    width: 100%;
    height: 240px;
    margin: 0;
    padding: 0;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #717782;
    transform-style: preserve-3d;
    overflow: hidden;
}
@media (min-width: 1200px) {
    .page-header {
        height: 300px;
    }
}
@media (min-width: 1600px) {
    .page-header {
        height: 370px;
    }
}
.page-header.course-header {
    height: 350px;
}
.page-header.course-header .button {
    margin-top: 3rem;
}
.page-header .header-bg {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    z-index: 0;
    opacity: 1;
}
.page-header .header-gradient,
.page-header .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, transparent, rgba(46, 50, 66, 0.5));
}
.page-header .header-content {
    width: 100%;
    padding: 0 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
@media (min-width: 768px) {
    .page-header .header-content {
        padding: 0 calc((100vw - 720px) / 2);
    }
}
@media (min-width: 992px) {
    .page-header .header-content {
        padding: 0 calc((100vw - 940px) / 2);
    }
}
@media (min-width: 1200px) {
    .page-header .header-content {
        padding: 0 calc((100vw - 1155px) / 2);
    }
}
.page-header .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: -1;
}
.page-header .hero-video video {
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.page-header .parent-page {
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 1rem 0.2rem;
    border: 0;
    position: relative;
    padding-left: 20px;
    transform: translate3d(0, 0, 0);
}
.page-header .parent-page .back-icon {
    background-image: url("img/back-icon.svg");
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    top: 9px;
    left: 0;
    width: 20px;
    height: 10px;
}
@media (min-width: 1200px) {
    .page-header .parent-page {
        padding-left: 0;
    }
    .page-header .parent-page .back-icon {
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }
    .page-header .parent-page:hover {
        padding-left: 20px;
    }
    .page-header .parent-page:hover .back-icon {
        visibility: visible;
        opacity: 1;
    }
}
.page-header h1,
.page-header .category,
.page-header .description {
    color: #fff;
    max-width: 700px;
}
.page-header h1 {
    position: relative;
    margin-bottom: 0;
}
.page-header .category {
    margin: 0;
    padding: 0;
    opacity: 0.9;
    display: inline-block;
}
.page-header .category:hover {
    opacity: 0.7;
}
.page-header .description {
    font-size: 1.7rem;
    line-height: 1.3;
    margin: 1rem 0 0;
}
.page-header-category {
    margin-top: 0;
    background: #86bc24;
}
@media (min-width: 768px) {
    .page-header-category {
        background: #fff;
        margin: 40px 0 0;
    }
}
@media (min-width: 1200px) {
    .page-header-category {
        margin: 80px 0 0;
    }
}
.header-content-category {
    padding: 0 15px;
}
.header-content-category h1.category,
.header-content-category h2.parent-category {
    display: inline-block;
    height: 44px;
    line-height: 44px;
    padding: 0;
    margin: 0;
    font-family: "Source Sans Pro", Helvetica, Helvetica Neue, Arial;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}
.header-content-category h1.category a,
.header-content-category h2.parent-category a {
    color: #fff;
}
.header-content-category span {
    color: #fff;
    display: inline-block;
    margin: 0 5px;
}
@media (min-width: 768px) {
    .header-content-category {
        padding: 0 calc((100vw - 735px) / 2);
    }
    .header-content-category h1.category,
    .header-content-category h2.parent-category {
        display: block;
        height: auto;
        line-height: 100%;
        padding: 0;
    }
    .header-content-category h1.category a,
    .header-content-category h2.parent-category a {
        color: #2e3242;
    }
    .header-content-category h2.parent-category {
        font-size: 1.4rem;
        font-weight: 600;
        margin: 0 0 10px 2px;
    }
    .header-content-category h1.category {
        font-family: "Klavika-Bold", Helvetica, Helvetica Neue, Arial;
        font-size: 3.2rem;
        text-transform: none;
    }
    .header-content-category span {
        display: none;
    }
}
@media (min-width: 992px) {
    .header-content-category {
        padding: 0 calc((100vw - 955px) / 2);
    }
}
@media (min-width: 1200px) {
    .header-content-category {
        padding: 0 calc((100vw - 1155px) / 2);
    }
}

body.hero .page-header {
    margin-bottom: -60px;
}
@media (min-width: 1200px) {
    body.hero .page-header {
        margin-bottom: -200px;
    }
}
body.hero #user {
    background: #fff;
    color: #2e3242;
}
body.hero .page-header {
    top: -60px;
    margin-bottom: -60px;
    height: 100vh;
    max-height: 700px;
    background-color: #2e3242;
}
@media (max-height: 768px) {
    body.hero .page-header {
        height: 100vh;
        max-height: 100vh;
    }
}
@media (max-height: 480px) {
    body.hero .page-header {
        height: 520px;
        max-height: 520px;
    }
}
@media (min-width: 1200px) {
    body.hero .page-header {
        top: -200px;
        margin-bottom: -200px;
        height: 620px;
        max-height: 620px;
    }
}
@media (min-width: 1600px) {
    body.hero .page-header {
        height: 690px;
        max-height: 690px;
    }
}
@media (min-width: 1920px) {
    body.hero .page-header {
        height: 820px;
        max-height: 820px;
    }
}
body.hero .page-header a {
    color: #fff;
}
body.hero .page-header h1 {
    font-family: "Klavika-Bold", Helvetica, Helvetica Neue, Arial;
    margin: 20px 20px 40px;
}
body.hero .page-header h1 a:hover {
    opacity: 0.9;
}
body.hero .page-header .lazyload-container {
    will-change: transform, opacity;
}
body.hero .header-overlay {
    background: linear-gradient(to top, transparent, rgba(46, 50, 66, 0.25));
}
body.hero .header-content {
    padding: 0 15px;
    max-width: 700px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
}
@media (min-width: 1200px) {
    body.hero .header-content {
        transform: translate(-50%, -10%);
    }
}
@media (min-width: 1200px) {
    body.hero .user-box .user-photo {
        border: 1px solid #fff;
    }
    @keyframes dash-filling {
        0% {
            transform: scaleX(0);
        }
        100% {
            transform: scaleX(1);
        }
    }
    body.hero .slider-nav .nav-dot.active span:after {
        animation: dash-filling 6000ms 1 linear forwards 0s;
    }
}
body.hero.hero-white #app > a,
body.hero.hero-white #language > a {
    color: #fff;
}
body.hero.hero-white #app a:after {
    color: #fff;
}
body.hero.hero-white #language > a:after {
    border-color: #fff transparent;
}
body.hero.hero-white .btn-login,
body.hero.hero-white .button-login {
    border-color: #fff;
    color: #fff;
}
body.hero.hero-white .btn-login:hover,
body.hero.hero-white .btn-login:focus,
body.hero.hero-white .button-login:hover,
body.hero.hero-white .button-login:focus {
    background-color: #86bc24;
    border: 1px solid #86bc24;
    color: #fff;
}
body.hero.hero-white .btn-login:active,
body.hero.hero-white .button-login:active {
    background-color: #006cc6;
    border-color: #006cc6;
}
body.hero.hero-white .search-trigger span:before {
    border-color: #2e3242;
}
body.hero.hero-white .search-trigger span:after {
    background: #2e3242;
}
body.hero.hero-white .search-trigger:hover span:before {
    border: 2px solid #86bc24;
}
body.hero.hero-white .search-trigger:hover span:after {
    background: #86bc24;
}
@media (min-width: 1200px) {
    body.hero.hero-white .graphic,
    body.hero.hero-white .text {
        fill: #fff;
    }
    body.hero.hero-white nav.menu {
        background-color: #fff;
    }
    body.hero.hero-white .primary-nav a,
    body.hero.hero-white .primary-nav ul a {
        color: #2e3242;
    }
    body.hero.hero-white .primary-nav a:hover,
    body.hero.hero-white .primary-nav ul a:hover {
        color: #86bc24;
    }
    body.hero.hero-white .primary-nav a.selected,
    body.hero.hero-white .primary-nav ul a.selected {
        color: #86bc24;
    }

    body.hero.hero-white .primary-nav li.intro a span {
        color: #2e3242;
    }
    body.hero.hero-white .primary-nav li.intro a:hover span {
        color: #86bc24;
    }
    body.hero.hero-white .secondary-nav {
        /* background-color: #eef2f5; */
        background-color: #f5f9f0;
    }
}
body.hero.hero-black #app span,
body.hero.hero-black #language > a {
    color: #2e3242;
}
body.hero.hero-black #language > a:after {
    border-color: #2e3242 transparent;
}
body.hero.hero-black #app:after {
    color: #2e3242;
}
body.hero.hero-black .button-login {
    border: 1px solid #2e3242;
    color: #2e3242;
}
body.hero.hero-black .button-login:hover {
    background-color: #86bc24;
    border: 1px solid #86bc24;
    color: #fff;
}
@media (min-width: 1200px) {
    body.hero.hero-black .graphic,
    body.hero.hero-black .text {
        fill: #2e3242;
    }
    body.hero.hero-black .primary-nav li.intro a span {
        color: #fff;
    }
    body.hero.hero-black .primary-nav li.intro a:hover span {
        color: #86bc24;
    }
}
body.hero .page-header .btn-white {
    text-transform: uppercase;
    letter-spacing: 0.03rem;
    width: 7rem;
    padding: 0.6rem 1.6rem;
}
body.hero .page-header .btn-white:hover,
body.hero .page-header .btn-white:focus {
    background-color: #86bc24;
    border: 1px solid #86bc24;
    color: #fff;
}
body.hero .page-header .btn-white:active {
    background-color: #007bdc;
    border: 1px solid #007bdc;
}
body.hero.slideshow .page-header h1 a {
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}
body.hero.slideshow .header-overlay {
    background: #242b3d;
    opacity: 0.5;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0px 15px 10px -15px #111;
    padding: 0 15px;
    border-bottom: 1px solid #eef2f5;
    z-index: 3;
}
@media (min-width: 768px) {
    .main-header {
        padding: 0 calc((100vw - 735px) / 2);
        /*box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);*/
        box-shadow: 0px 15px 10px -15px #111;
    }
}
@media (min-width: 992px) {
    .main-header {
        padding: 0 calc((100vw - 955px) / 2);
        box-shadow: 0px 15px 10px -15px #111;
        /*box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);*/
    }
}
@media (min-width: 1200px) {
    .main-header {
        padding: 0;
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    }
}
@media (min-width: 1200px) {
    .main-header {
        position: relative;
        height: 46px;
        border: 0;
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    }
}
.header-buttons {
    float: right;
    height: 70px;
    line-height: 70px;
}
.header-buttons a.l {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 60px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border: 0;
    z-index: 3;
}
.header-buttons a:hover {
    border: 0;
}
@media (min-width: 1200px) {
    .header-buttons {
        display: none;
    }
}

.search-trigger span {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translate(-100%, -50%);
    width: 24px;
    height: 20px;
}
.search-trigger span:before,
.search-trigger span:after {
    position: absolute;
    content: "";
    transition: all 0.2s ease-in-out;
}
.search-trigger span:before {
    top: 0;
    left: 0;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 2px solid #2e3242;
}
.search-trigger span:after {
    top: 15px;
    left: 13px;
    height: 2px;
    width: 9px;
    border-radius: 2px;
    background: #2e3242;
    transform: rotate(45deg);
}
@media (min-width: 1200px) {
    .search-trigger span {
        position: static;
    }
    .search-trigger span:before {
        top: 15px;
        left: 27px;
    }
    .search-trigger span:after {
        top: 31px;
        left: 40px;
    }
}
@media (min-width: 1200px) {
    .search-trigger span:before {
        border: 2px solid #fff;
    }
    .search-trigger span:after {
        background: #fff;
    }
    .search-trigger:hover span:before {
        border: 2px solid #86bc24;
    }
    .search-trigger:hover span:after {
        background: #86bc24;
    }
}
.nav-trigger span,
.nav-trigger span:before,
.nav-trigger span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 2rem;
    height: 0.1rem;
    border-radius: 0.2rem;
    background-color: #33422e;
}
.nav-trigger span {
    left: 100%;
    top: 50%;
    transform: translate(-100%, -50%);
    transition: background 600ms cubic-bezier(0.77, 0, 0.175, 1);
}
.nav-trigger span:before,
.nav-trigger span:after {
    transition: transform 600ms cubic-bezier(0.77, 0, 0.175, 1), transform-origin 600ms cubic-bezier(0.77, 0, 0.175, 1);
}
.nav-trigger span:before {
    margin-top: -6px;
}
.nav-trigger span:after {
    margin-top: 6px;
}
.primary-nav a,
.primary-nav ul a {
    display: block;
    line-height: 60px;
    height: 60px;
    padding: 0 20px;
    /* color: #fff; */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px solid #383d4c;
}
@media (min-width: 1600px) {
    .primary-nav a,
    .primary-nav ul a {
        line-height: 60px;
        height: 60px;
    }
}
.primary-nav a:hover,
.primary-nav ul a:hover {
    border-bottom: 1px solid #383d4c;
}
@media (min-width: 1200px) {
    .primary-nav a:hover,
    .primary-nav ul a:hover {
        border-bottom: 0;
    }
}
.primary-nav li.has-image img,
.primary-nav ul li.has-image img {
    margin: 14px 0;
}
.primary-nav li.has-image a,
.primary-nav ul li.has-image a {
    height: auto;
    line-height: initial;
    overflow: visible;
    text-overflow: initial;
    white-space: normal;
    text-align: left;
    padding: 20px;
    line-height: 1.2;
}
.primary-nav li.intro a,
.primary-nav ul li.intro a {
    height: 100%;
    text-overflow: initial;
    white-space: normal;
    text-align: left;
    padding-right: 0;
    font-weight: 700;
}
@media (min-width: 1200px) {
    .primary-nav li.intro a,
    .primary-nav ul li.intro a {
        font-weight: 600;
    }
}
.primary-nav li.intro a span,
.primary-nav ul li.intro a span {
    display: none;
    transition: all 0.3s ease;
}
@media (min-width: 1200px) {
    .primary-nav li.intro a span,
    .primary-nav ul li.intro a span {
        display: block;
        color: #fff;
        opacity: 0.65;
        font-weight: 400;
        line-height: 1.5;
        text-align: left;
        margin-top: 20px;
        text-rendering: geometricPrecision;
        backface-visibility: hidden;
    }
}
.primary-nav li.intro a:hover span,
.primary-nav ul li.intro a:hover span {
    color: #86bc24;
    opacity: 1;
}
.has-children > a,
.go-back > a {
    position: relative;
}
.has-children > a:after,
.go-back > a:after {
    position: absolute;
    content: "";
    top: 50%;
    display: inline-block;
    height: 10px;
    width: 10px;
    border: 2px solid #45555f;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg) translateY(-50%);
}
.has-children > a:after {
    left: 23rem;
}
.primary-nav .go-back > a {
    padding-left: 4rem;
}
.primary-nav .go-back > a:after {
    left: 1.5rem;
    transform: rotate(-135deg) translateY(50%);
}
.primary-nav .mobile-only a {
    color: #000;
    font-weight: 600;
}
@media (min-width: 1200px) {
    .primary-nav .mobile-only {
        display: none;
    }
}
.language-menu-mobile a,
.app-menu-mobile a {
    color: #8fa194;
}
.login-menu-mobile {
    display: block;
    width: 100%;
    padding: 0 2rem;
    text-align: center;
    margin: 3rem 0 2rem;
}
.login-menu-mobile a {
    height: 4.6rem;
    line-height: 4.6rem;
    border-bottom: unset;
}
.login-menu-mobile a:hover {
    border-bottom: unset;
}
@media (min-height: 768px) {
    .login-menu-mobile {
        position: absolute;
        bottom: 0;
    }
}
@media (min-height: 480px) {
    .primary-nav {
        height: 100%;
    }
}
.search-icon {
    display: none;
    width: 5rem;
    height: 100%;
}
.search-icon a {
    width: 100%;
}
.overlay {
    position: fixed;
    z-index: 2;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    background-color: rgba(46, 50, 66, 0.3);
    visibility: hidden;
    opacity: 0;
    backface-visibility: hidden;
    transition: opacity 600ms cubic-bezier(0.77, 0, 0.175, 1), visibility 600ms cubic-bezier(0.77, 0, 0.175, 1);
}
.overlay.is-visible {
    opacity: 1;
    visibility: visible;
}
@media (min-width: 1200px) {
    .primary-nav.moves-out > li > a {
        transform: translateX(0);
        opacity: 1;
    }
    .primary-nav ul {
        overflow: visible;
    }
    .primary-nav ul.is-hidden {
        transform: translateX(0);
    }
    .primary-nav ul.moves-out > li > a {
        transform: translateX(0);
        opacity: 1;
    }
    .primary-nav > li {
        display: inline-block;
    }
    .primary-nav > li a.search-trigger,
    .primary-nav > li a.search-trigger:hover {
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden;
    }
    .primary-nav > li > a {
        position: relative;
        display: inline-block;
        height: 40px;
        line-height: 40px;
        padding: 0;
        color: #fff;
        overflow: hidden;
        border-bottom: none;
        transition: all 0.3s ease;
    }
    .primary-nav > li > a:hover {
        color: #86bc24;
    }
    .primary-nav > li > a.selected:not(.search-trigger) {
        color: #86bc24;
        box-shadow: inset 0 2px 0 #86bc24;
    }

    body.hero.hero-white .primary-nav a.selecionado,
    body.hero.hero-white .primary-nav ul a.selecionado {
        color: #86bc24;
        box-shadow: inset 0 2px 0 #86bc24;
    }
    .primary-nav .go-back {
        display: none;
    }
    .primary-nav .secondary-nav {
        position: absolute;
        top: 3.1rem;
        background: #383d4c;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        padding: 2rem calc((100vw - 1150px) / 2);
        transition: opacity 0.5s ease-in-out 0.18s, visibility 0.5s ease-in-out 0.18s; 
    }
    .primary-nav .secondary-nav > li {
        height: auto;
        min-height: 220px;
        float: left;
        width: 23%;
        margin-right: 2.66%;
        /*overflow: hidden;
        overflow-x: hidden;
        overflow-y: auto; */
        -webkit-overflow-scrolling: touch;
    }
    .primary-nav .secondary-nav > li:last-of-type {
        margin-right: 0;
        border-right: none;
    }
    .primary-nav .secondary-nav > li > a {
        font-weight: 600;
        margin-bottom: 1rem;
    }
    .primary-nav .secondary-nav a {
        height: 30px;
        line-height: 30px;
        padding: 0 18% 0 0;
        border-bottom: none;
        text-overflow: clip;
    }
    .primary-nav .secondary-nav a:hover {
        color: #86bc24;
    }
    .primary-nav .secondary-nav a.no-link:hover {
        color: #fff;
    }
    .primary-nav .secondary-nav li.has-image {
        overflow-y: hidden;
    }
    .primary-nav .secondary-nav li.has-image a {
        padding: 0;
        max-width: 230px;
    }
    .primary-nav .secondary-nav ul {
        transform: translateZ(0);
    }
    .primary-nav .secondary-nav ul ul {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }
    .primary-nav .secondary-nav ul ul.is-hidden {
        transform: translateX(100%);
    }
    .primary-nav .secondary-nav ul ul .go-back {
        display: block;
    }
    .primary-nav .secondary-nav ul ul .go-back a {
        color: transparent;
    }
    .primary-nav .secondary-nav .moves-out > li > a {
        transform: translateX(-100%);
    }
    .has-children > a::before,
    .has-children > a::after {
        right: 15%;
    }
    .primary-nav > .has-children > a::before,
    .primary-nav > .has-children > a::after {
        display: none;
    }
    .primary-nav > .has-children > a::before {
        right: 12px;
    }
    .primary-nav > .has-children > a::after {
        right: 7px;
    }
    .primary-nav > .has-children > a.selected::before,
    .primary-nav > .has-children > a.selected::after {
        width: 14px;
    }
    .primary-nav > .has-children > a.selected::before {
        transform: translateX(5px) rotate(-45deg);
    }
    .primary-nav > .has-children > a.selected::after {
        transform: rotate(45deg);
    }
    .secondary-nav > .has-children > a::before,
    .secondary-nav > .has-children > a::after {
        display: none;
    }
    .primary-nav .go-back a {
        padding-left: 20px;
    }
    .primary-nav .go-back a::before,
    .primary-nav .go-back a::after {
        left: 1px;
    }
}
@media (min-width: 1200px) {
    .primary-nav > li.app-menu-mobile,
    .primary-nav > li.user-menu-mobile,
    .primary-nav > li.language-menu-mobile,
    .primary-nav > li.login-menu-mobile {
        display: none;
    }
}
@media (max-width: 1199px) {
    body.nav-is-visible .main-content,
    body.nav-is-visible .main-header,
    body.nav-is-visible footer {
        transform: translateX(-16rem);
    }
}
body.nav-is-visible .nav-trigger span {
    background-color: transparent;
}
body.nav-is-visible .nav-trigger span:before {
    transform: rotate(45deg);
    transform-origin: 0.3rem;
}
body.nav-is-visible .nav-trigger span:after {
    transform: rotate(-45deg);
    transform-origin: 0.4rem;
}
.no-transition,
.no-transition * {
    transition: none !important;
}
.menu {
    position: relative;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: all;
}
.menu.menu-active {
    opacity: 1;
    visibility: visible;
}
.menu ul {
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
    transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
}
@media (min-width: 1200px) {
    .menu ul {
        will-change: transform;
    }
}
.menu > ul ul {
    position: absolute;
    top: 0;
    left: 100%;
}
.menu .moves-out {
    transform: translateX(-100%);
}
.menu .is-hidden {
    opacity: 0;
    visibility: hidden;
}
nav ul li {
    margin: 0;
}
nav.menu {
    position: fixed;
    top: 0;
    right: -260px;
    bottom: 0;
    width: 260px;
    height: 100vh;
    background-color: #eef2f5;
    opacity: 1;
    visibility: visible;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
}
.primary-nav.moves-out > li > a,
.primary-nav ul.moves-out > li > a {
    transform: initial;
    opacity: initial;
}
.user-menu-mobile .user-box {
    height: 80px;
}
.user-data {
    position: relative;
    height: inherit;
}
.user-data:before {
    position: absolute;
    top: 0.4rem;
    left: 5.6rem;
    content: attr(data-name);
    font-size: 1.4rem;
    width: 14rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.user-data:after {
    position: absolute;
    top: 2rem;
    left: 5.6rem;
    content: attr(data-istid);
    font-size: 1.4rem;
    color: #8f95a1;
}
.user-box abbr {
    display: none;
    text-decoration: none;
}
.user-photo {
    width: 4.2rem;
    height: 4.2rem;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
@media (min-width: 1200px) {
    nav.menu {
        position: relative;
        width: 100%;
        height: 100%;
        left: 0;
        right: 0;
        padding-top: 3px;
        overflow: visible;
    }
    nav.menu > ul.primary-nav {
        padding: 0 calc((100vw - 1155px) / 2);
        text-align: justify;
        transition: none;
        transform: none;
    }
    nav.menu > ul.primary-nav:after {
        display: inline-block;
        width: 100%;
        clear: both;
        content: "";
    }
    .primary-nav .secondary-nav ul {
        position: static;
        opacity: 1;
        visibility: visible;
    }
    .secondary-nav > li > ul.is-hidden {
        opacity: 1;
        visibility: visible;
	 width: 350px;
    }
    .menu.dropdown > ul > li.go-back {
        display: none;
    }
    #user {
        position: relative;
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: #2e3242;
        color: #fff;
    }
    .user-box {
        width: inherit;
        height: inherit;
        display: block;
        border-radius: inherit;
        text-align: center;
        cursor: pointer;
    }
    .user-box:before,
    .user-box:after {
        content: "";
    }
    .user-box abbr {
        display: block;
    }
    .user-box .user-name {
        position: relative;
        top: 17px;
        border: 0;
    }
    .user-box .user-photo {
        width: inherit;
        height: inherit;
        border-radius: inherit;
        box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
        position: absolute;
        top: 0;
        left: 0;
        transform: none;
    }
    .user-box .user-role {
        position: absolute;
        content: "";
        top: 5px;
        right: -5px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: 0;
        background-color: #86bc24;
        color: #fff;
        font-size: 1.1rem;
        font-weight: 600;
        text-align: center;
        text-transform: uppercase;
        line-height: 17px;
        z-index: 2;
    }
    .upper-arrow {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 37px;
        right: 0;
        width: 13px;
        height: 12px;
        z-index: 4;
        overflow: hidden;
        transition: all 0.4s ease-in-out;
    }
    .upper-arrow:after {
        content: "";
        display: block;
        width: 14px;
        height: 14px;
        border-radius: 2px;
        background: #fff;
        transform: rotate(45deg) translate(6px, 6px);
    }
    .dropdown.menu-active + .upper-arrow {
        opacity: 1;
        visibility: visible;
    }
}

@media (min-width: 1200px) {
    .secondary-nav.is-hidden {
        pointer-events: none;
    }
    .primary-nav > li:hover ul.secondary-nav,
    .primary-nav > li:hover ul.secondary-nav .is-hidden {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    ul.two-col{
        -moz-column-count: 2;
        -moz-column-gap: 20px;
        -webkit-column-count: 2;
        -webkit-column-gap: 20px;
        column-count: 2;
        column-gap: 20px;
    }
}
.main-content,
.main-header {
    transition: transform 600ms cubic-bezier(0.77, 0, 0.175, 1);
}

li p {
    margin: 0.5rem 0 2rem;
}
.hero [href="#main"]:focus {
    z-index: 9999;
    background: #fff;
}

.hero figure .image {
    object-position: top center;
}

body.page-lock {
    overflow: hidden;
    height: 100%;
}
.primary-nav li.active > a {
    color: #86bc24;
}
@media (min-width: 1200px) {
    .primary-nav li.active > a {
        color: rgba(255, 255, 255, 0.55);
    }
}
.col-lg-12{
    padding: 0px;
}
.cd_uc{
    font-size: 10px;
}
.primary-nav .secondary-nav .has-children .destaque_sub a {
    font-weight: 600;
    margin-bottom: 1rem;
}
.categoria-doc {
    display: none;
}
