/* CSS AVANCEMENT.HTML */

li a:hover {
    color: #fecc0c;
    transition: all 0.25s ease;
}

ul li ul li a:hover {
    padding-left: 10px;
    border-left: 2px solid #fecc0c;
    transition: all 0.25s;
}

.darkmode--activated .nav__links a:hover {
    color: #fecc0c;
    transition: all 0.3s;
}

.darkmode--activated .nav__links a:focus {
    color: #fecc0c;
    transition: all 0.3s;
}

a.nav-a-agenda:after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 6px;
    background-color: #fecc0c;
    -webkit-transform: skew(-30deg) translateX(-50%);
    -moz-transform: skew(-30deg) translateX(-50%);
    -o-transform: skew(-30deg) translateX(-50%);
    tranform: skew(-30deg) translateX(-50%);
    position: absolute;
    bottom: -1rem;
    left: 50%;
    opacity: 1;
  }

/* ------------------------------------------------------------------------------------ */

.main-page {
    margin-bottom: 100px;
}

.main-title:after {
    content: '';
    display: inline-block;
    width: 100px;
    height: 12px;
    background-color: #fecc0c;
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    tranform: skew(-30deg);
    position: absolute;
    bottom: -2rem;
    left: 0;
    margin-bottom: 15px;
  }

h2.main-title {
    margin-bottom: 50px;
}

h3.main-subtitle-controle {
    color: #e20331;
    font-weight: 600;
}

h3.main-subtitle-off {
    opacity: 25%;
}

.darkmode--activated h3.main-subtitle-controle {
    color: #e20331;
    font-weight: 600;
    transition: all 0.3s;
}