html,
body {
    padding: 0;
    margin: 0;
    font-family:  'Roboto Slab', serif;
}

html, html * {
    font-family: 'Roboto Slab', serif;
}

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

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


.controls {
    background:#46c6cc;
    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%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    background: rgb(92,83,230);
background: -moz-linear-gradient(180deg, rgba(92,83,230,1) 0%, rgba(9,21,65,1) 100%);
background: -webkit-linear-gradient(180deg, rgba(92,83,230,1) 0%, rgba(9,21,65,1) 100%);
background: linear-gradient(180deg, rgba(92,83,230,1) 0%, rgba(9,21,65,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5c53e6",endColorstr="#091541",GradientType=1);
}
.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);
    border-radius: 500px;
    background: #ffffff1f;
}
.time-line .dates-wrap:before, .time-line .dates-wrap:after {
    content: "";
    position: absolute;
    width: 160px;
    height: 10px;
    left: -1px;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.time-line .dates-wrap:after {
    left: auto;
    right: -1px;
    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: 32px;
line-height: 0;
color: #fff;
font-size: 32px;
font-weight: 900;
transform: scale(0.4);
z-index: 2;
background: #46c6cc!important;
/* border: 50px; */
/* border: 1px solid white; */
}

.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:;
} 

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

.intro{
    padding-top: 2vw;
}


.titulo_indicador h2{
    
    font-size: 1.5vw;
    font-weight: 200;
    color: white;
    margin:4vw 0 1vw 0;
} 

.titulo_indicador h1{
    font-size:2.5vw;
    padding: 0 0 2.5vw  0;
    font-weight: 700;
    color: white;

} 

.hdd{
    font-size: 0.8vw;
    padding: 0.4vw 2vw;
    border-radius: 40px;   
    text-align: center;
    margin: 3vw 0;
    background:#46c6cc;
}
.parrafo_intro{
    font-size: 1.3vw;
    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;
    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.8vw;
    margin: 2vw 0;
    color:white;
}

.screen_year i{
    background-color: #46c6cc;
    border-radius: 100px;
    padding: 0.8vw;
    position: absolute;
   bottom: 1vw;
    right: 0.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 #46c6cc;
    padding:0 2vw;
}


.fuente1{
    margin-left: 3vw;
    position: absolute;
    left:4.5vw;
    bottom:-5vw;

}
.fuente2{
    position: absolute;
    left:0vw;
    bottom:-4vw;
}
.fuente4{
    position: absolute;
    left:3vw;
    bottom:-4vw;
}

.fuente6{
    position: absolute;
    left:2vw;
    bottom:-4vw;
}

.fuente7{
    position: absolute;
    left:6vw;
    bottom:-4vw;
}

.fuente8{
    position: absolute;
    left:3vw;
    bottom:-4vw;
}


.ending{
    position: relative;
    right: -20vw;
    top:-6vw;
    width: 100%;
    height: 137%;
    background: -moz-linear-gradient(180deg, rgba(92,83,230,1) 0%, rgba(9,21,65,1) 100%);
background: -webkit-linear-gradient(180deg, rgba(92,83,230,1) 0%, rgba(9,21,65,1) 100%);
background: linear-gradient(180deg, rgba(92,83,230,1) 0%, rgba(9,21,65,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5c53e6",endColorstr="#091541",GradientType=1);
}




.contyear h1{
    color: #46c6cc;
    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;
}

.link_1{
    color: #00deec;
}

.ingrese{
    color: white;
    font-size: 2em;
 margin: -20px 0px;
}

@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;
} 
 
    }

