*{
    margin: 0px;
    padding: 0px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

html, body{
    height: 100%;
}

body{
    font-family: 'Roboto', sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.container{
    width: 100%;
    max-width: 1200px;
    margin: 0px auto;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
}


.header{
    padding: 1rem;
}

.header__logo{
    max-width: 360px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0px auto;
}

.header__logo--dcc{
    max-width: 160px;
    margin-top: 54px;
    margin-bottom: 32px;
}


.main{
    margin: 4rem auto;
    padding: 0px 1rem;
}
@media screen and (min-width:992px){
    .main{
        padding: 0px 3rem;
    }
}

.main-title-container{
    max-width: 730px;
    padding: 0px 2rem;
    width: 100%;
    margin: 0px auto 26px;
}


.main__title{
    color: #2E384D;
    font-family: Roboto;
    font-size: 1.525rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.575rem;
}
@media screen and (min-width:992px){
    .main__title{
        font-size: 22px;
        line-height: 26px;
    }
}

.main__link, .main__link:active, .main__link:visited{
    color: #2E384D;
}

.main__link:hover{
    color: #0047B3;
}

.main__article{
    margin: 1.5rem auto;
    border-radius: 4px;
    max-width: 730px;
    width: 100%;
}

.main__article-text{
  color: #152935;
  font-family: Roboto;
  text-align: center;
  margin-bottom: 32px;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 20px;
}

.main__article-text--secondary{
    margin-top: 1rem;
    color: #768AA2;
}

.url-link, .url-link:active, .url-link:visited{
    color: #0064FF;
}

.url-link:hover{
    color: #0047B3;
}

.button{
    display: block;
    margin: 0px auto;
    text-decoration: none;
    text-align: center;
    color:#fff;
    padding: 1rem 0.5rem;
    max-width: 300px;
    width: 100%;
    border-radius: 25px;
  background-color: #0064FF;
  font-weight: 500;
}



.contenedor-accesos{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.acceso{
    margin: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    padding: 2rem 1.5rem;
    border-radius: 4px;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 8px 30px 0 #E4E8EC;
            box-shadow: 0 8px 30px 0 #E4E8EC;
}
@media screen and (min-width:900px){
    .acceso{
        width: 32%;
        margin: 0px
    }
}

.acceso__title{
    color: #2E384D;
    font-family: Roboto;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 22px;
}

.acceso__arrow{
    width: 100%;
    max-width: 17px;
}

.footer{
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 2rem;
    background-color: #001C41;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    
}

.footer__logo{
    max-width: 204px;
    width: 100%;
    height: auto;
}