html,
body {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}

html, html * {
    font-family: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-size:2.5vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
}

.controls {
    background: #3ac984;
    padding: 1vw 1vw 1vw 1.3vw;
    width: 40px;
    height: 40px;
    position: absolute;
    top:50%;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.controls:hover:after {
    transform: translateX(-10px) rotate(45deg);
}
.controls:hover:active:after {
    transform: translateX(-20px) rotate(45deg);
    transition: 300ms all;
}
.controls:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    transform: rotate(45deg);
    border-left: 4px solid #fff;
    border-bottom: 4px solid #fff;
    transition: 500ms all;
}
.controls.next {
    left: auto;
    right: 0;
    transform: rotate(180deg);
}

.time-line{
    width: 100%;
    height: 100%;
    background-color: #28273e;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
}
.time-line * {
    transition: 800ms all cubic-bezier(0.23, 1, 0.32, 1);
}
.time-line .dates-overflow {
    left: 0;
    width: 200vw;
    position: absolute;
    bottom: 50px;
    height: 50px;
}
.time-line .dates-wrap {
    display: inline-block;
    position: absolute;
    height: 100%;
    left: calc(50vw - 80px);
}
.time-line .dates-wrap:before, .time-line .dates-wrap:after {
    content: "";
    position: absolute;
    width: 160px;
    height: 10px;
    left: -1px;
    transform: translate(-50%, -50%);
    background: linear-gradient(to right, #3ac984 0%, rgba(125, 185, 232, 0) 100%);
    z-index: 2;
}
.time-line .dates-wrap:after {
    left: auto;
    right: -1px;
    background: linear-gradient(to left, #3ac984 0%, rgba(125, 185, 232, 0) 100%);
    transform: translate(50%, -50%);
}
.time-line .dates-wrap .date {
    width: 160px;
    position: relative;
    float: left;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 800ms all cubic-bezier(0.23, 1, 0.32, 1);
}
.time-line .dates-wrap .date .date-content {
    visibility: hidden;
    position: absolute;
    width: 80vw;
    height: 38vw;
    bottom: 1vw;
    margin-bottom:2vw;
    border-radius: 3px;
    transform-origin: 50% 100%;
    transform: scale(0.7);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0);
}


.time-line .dates-wrap .date .date-content .date-image {
width: 100%;
height: calc(100% - 60px);
background-image: url(https://images.unsplash.com/photo-1573591172652-f548fe02ef77?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=844&q=80);
background-size: cover;
background-position: center;
    background: red;
}
.time-line .dates-wrap .date .date-content > div {
opacity: 0;
transform: translateY(40px);
}

.time-line .dates-wrap .date .date-content .date-text {
    width: 100%;
    height: 60px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0053A0;
}
.time-line .dates-wrap .date .date-year {
    padding: 2vw;
    opacity: 0.4;
    width: 100%;
    height: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.time-line .dates-wrap .date .date-year:hover {
    opacity: 1 !important;
}
.time-line .dates-wrap .date .date-year:hover:after {
    transform: scale(1) !important;
}
.time-line .dates-wrap .date .date-year p {
    position: absolute;
    top:36px;
    line-height: 0;
    color: #fff;
    font-size: 35px;
    font-weight: 900;
    transform: scale(0.4);
    z-index: 2;
}
.time-line .dates-wrap .date .date-year:after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: #fff;
    bottom: 100%;
    margin-bottom: -7px;
    border-radius: 50%;
    transform: scale(0.4);
    transition: 500ms all;
}
.time-line .dates-wrap .date .date-year:before {
    content: "";
    position: absolute;
    top: 0;
    width: 200%;
    height: 1px;
    background-color: #fff;
}
.time-line .dates-wrap .date.sibling .date-year {
    opacity: 0.6;
}
.time-line .dates-wrap .date.sibling .date-year:after {
    transform: scale(0.8);
}
.time-line .dates-wrap .date.sibling .date-year p {
    transform: scale(0.6);
}
.time-line .dates-wrap .date.active + .date .date-year {
    opacity: 0.6;
}
.time-line .dates-wrap .date.active + .date .date-year:after {
    transform: scale(0.8);
}
.time-line .dates-wrap .date.active + .date .date-year p {
    transform: scale(0.6);
}
.time-line .dates-wrap .date.active .date-year {
    opacity: 1;
}
.time-line .dates-wrap .date.active .date-year:before {
    width: calc(200% - 11px);
}
.time-line .dates-wrap .date.active .date-year:after {
    transform: scale(1);
}
.time-line .dates-wrap .date.active .date-year p {
    transform: scale(1.2);
}
.time-line .dates-wrap .date.active .date-content {
    transform: scale(1);
    visibility: visible;
}


.time-line .dates-wrap .date.active .date-content:after {
    transition-delay: 200ms;
    opacity: 1;
    transform: scaleY(1);
}
.time-line .dates-wrap .date.active .date-content div {
    transition-delay: 200ms;
    opacity: 1;
    transform: translateY(0px) scale(1);
}

.header {
    margin: 0 auto;
    padding-bottom: 0;
    padding-right: 0%;
}

.logodane img{
    width:8vw;
} 

.logogov{
    width:15vw;
    margin: 1vw 0;
}

.intro{
    padding-top: 2vw;
}


.titulo_indicador h2{
    font-size: 2vw;
    font-weight: 800;
    color: white;
    margin-bottom:2vw;
} 

.titulo_indicador h3{
    font-size:1.1vw;
    padding: 1.8vw 0 0 0;
    font-weight: 300;
    color: white;

} 

.hdd{
    font-size: 0.8vw;
    padding: 0.4vw 2vw;
    border-radius: 40px;   
    text-align: center;
    margin: 3vw 0;
    background: #3ac984;
}
.parrafo_intro{
    font-size: 0.6vw;
    margin: 2vw 1vw 2vw 0;  
} 

.webdane{
    margin: 2vw 0;
    font-size: 0.7vw;
    padding: 0.2vw 1.5vw;
    border: 1px solid black;
    border-radius: 40px; 
    text-align: center;
    background-color: #28273e;
    color: #ffffff;
    border: 0.4px solid white;
    text-decoration:none;
}

a:hover{
    color:#ffffff!important;
    background:#ffffff3c!important;
    border: none;
}


paragraf{
    color:white;
    font-size: 0.8vw;
    
}


 .parrafo_intro{
    font-size: 0.6vw;
    margin: 2vw 0;
    color:white;
}

.screen_year i{
    background-color: #3ac984;
    border-radius: 100px;
    padding: 0.8vw;
    position: absolute;
    bottom: 1vw;
    right: 2.1vw;
}

.ampliar img{
    width: 1vw;   
}

.buttonfuente{
    background: none;
    border: 0.4px solid white;
    border-radius: 20px;
    padding: 0.1vw 1vw;
    font-size: 0.6vw;
    color: white;
    text-decoration: none;
}

.buttonfuente img{
    margin: 3vw 0;
    padding: 0 0.3vw 0 0;
    width: 1.1vw;
    
}


.contyear{
    border-left: 0.3px solid #6cc58a;
    padding: 2vw;
}

.fuente{
    margin-left: 3vw;
    position: absolute;
    left:4.5vw;
    bottom:-4vw;
}

.contyear h1{
    color: #3ac984;
    font-size: 3vw;   
} 

.yearnext{
    width: 80%;
    color:blue;
    margin: 0 0 0 6vw;
}

.fuenteleft {
    margin-left: 3vw;
    position: absolute;
    left: -1.5vw;
    bottom: -3vw;
}
.fuenteleftA {
    margin-left: 3vw;
    position: absolute;
    left: -1.5vw;
    bottom: -1.3vw;
}
.fuenteleftB {
     margin-left: 3vw;
    position: absolute;
    left: -1.5vw;
    bottom: -3.6vw;
}

@media only screen and (max-width: 1230px) {
.time-line .dates-wrap .date .date-content {
    position: absolute;
    width: 80vw;
    height: 48vw;
    bottom: 1vw;
    margin-bottom:2vw;
    border-radius: 3px;
    transform-origin: 50% 100%;
    transform: scale(0.7);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0);
}

 .parrafo_intro{
    font-size: 0.7vw;
    margin: 2vw;
    color:white;
} 
 
    }

