@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}
:root{
    --colora:#D09200;
    --colorb:#B1040E;
}
body::-webkit-scrollbar{
    width: 6px;
    background-color: white;
}
body::-webkit-scrollbar-thumb{
    background-color:var(--colorb);
    border-right: 2px solid var(--colorb);
}
a{
    text-decoration: none;
    color: #B1040E;
}
ul{
    list-style: none;
}
.box-contenedor{
    width: 100%;
    height: calc(100vh - 80px);
    margin-top: 80px;
}
.box-contenedor .contenido{
    width: 100%;
    height: 100%;
}
.parallax{
    background: fixed no-repeat 50% 50%;
    background-size: cover;
}
#seccion{
    background-image: url(../img/noticias/banners/0001.png);
}
#seccionb{
    background-image: url(../img/noticias/banners/0002.png);
}
#seccionc{
    background-image: url(../img/noticias/banners/0003.jpg);
}
#secciond{
    background-image: url(../img/noticias/banners/0004.jpg);
}
.box-contenedor .contenido .banner{
    width: 100%;
    height: 50vh;
    background-color:var(--colorb);
    align-items: center;
    justify-content: center;
    display: flex;
}
.box-contenedor .contenido .banner .box{
    margin: auto;
    display: flex;
    width: 97%;
    height: auto;
    max-width: 1500px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.box-contenedor .contenido .banner .box h1{
    text-align: center;
    font-size: 3rem;
    color: #fff;
}
.box-contenedor .contenido .banner .box h3{
   font-weight: 300;
   color: #fff;
   font-size: 1rem;
   margin-top: 20px;
}
.box-contenedor .contenido .banner .box h3 span{
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1.2rem;
    font-family: 'Dancing Script', cursive;
}
.body{
    width: 97%;
    max-width: 1500px;
    margin: auto;
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.body .seccion-a{
    width: 60%;
}
.body .seccion-a h3{
    text-align: left;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 10px;
}
.body .seccion-a p{
    text-align: justify;
    font-size: 1rem;
    line-height: 30px;
    font-weight: 300;
    margin-bottom: 10px;
}
.body .seccion-a p a{
    color: #B1040E;
    text-decoration: underline;
}

.body .seccion-a .img_ajuste{
    width: 100%;   
    text-align: center;
    margin-bottom: 20px;
}

.body .seccion-a .img_ajuste img{
    object-fit: cover;
    width: 40vw;
}

.body .seccion-a .enlace{
    color: rgb(52, 152, 219);
    font-weight: bold;
}

.action{
    position: fixed;
    flex-direction: column;
    display: flex;
    top: 45%;
    left: 0;
    z-index: 100000;
}
.action span{
    color: #fff;
    padding: 10px;
    font-size: 1.2rem;
    cursor: pointer;
}
.action span:nth-child(1){
    background-color:#192a56;
    transition: .3s;
    border-top-right-radius: 10px;
}
.action span:nth-child(1):hover{
   transition: .3s;
}
.action span:nth-child(2){
    background-color:var(--colora);
    transition: .3s;
    border-bottom-right-radius: 10px;
}
.action span:nth-child(2):hover{
    transition: .3s;
 }
@media screen and (max-width:890px){
    .body{
        flex-direction: column;
    }
    .body .seccion-a{
        width: 100%;
    }
    .body .seccion-b{
        width: 100%;
    }
}
@media screen and (max-width:800px){
    .box-contenedor .contenido .banner .box h1{
        font-size: 3rem;
    }
}
@media screen and (max-width:600px){
    .box-contenedor .contenido .banner .box h1{
        font-size: 2rem;
    }
}
