@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}
.boton{
    background-color: var(--colorb);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}
:root{
    --colora:#D09200;
    --colorb:#B1040E;
    --colorb:rgb(175, 4, 12);
    --colora:rgb(208, 146, 0);
}
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: #000;
    cursor: pointer;
}
ul{
    list-style: none;
}
.clasic{
    align-items: center;
    justify-content: center;
    display: flex;
}
.header{
    width: 100%;
    height: 80px;
    background-color: var(--colorb);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    display: flex;
}
.header .box{
    width: 97%;
    height: 85%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1500px;
}
.header .logo{
    width: 180px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header .logo li a img{
    width: 100%;
}
.header .nav{
    width: calc(100% - 180px);
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: flex-end;
}
.real{
    display: none;
}
.hidden{
    display: block !important;
    transition: 1s;
}
.header .nav li{
    margin-left: 10px;
}
.header .nav li a{
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
    transition: .3s;
    padding: 10px;
    border-radius: 5px;
    display:block;
}
.header .nav li a span{
    margin-right: 3px;
    display: none;
}
.header .nav li a i{
    font-size: .8rem;
    margin-left: -2px;
}
.header .nav li a:hover{
    transition: .3s;
    background-color: var(--colora);
}
.header .nav li ul{
    display:none;
    position: absolute;
    min-width: auto;
    padding: 0;
    min-width: 130px;
    background-color: var(--colorb);
    padding-top: 10px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.header .nav li:hover > ul{
    display:block;
}
.header .nav li ul li{
    position: relative;
    margin-left: 0;
}
.header .nav li ul li ul{
    right:-140px;
    top:0px;
}
.btn-menu{
    border-radius: 5px;
    height: 20px;
    width: 20px;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    padding: 3px;
    cursor: pointer;
    position: fixed;
    right: 20px;
    display: none;
}
.btn-menu span{
    color: #fff;
    margin: auto;
    display: flex;
    margin-top: 2px;
}
.social{
    position: fixed;
    flex-direction: column;
    display: flex;
    top: 40%;
    right: 0;
    z-index: 100000;
}
.social a{
    color: #fff;
    padding: 10px;
    font-size: 1.2rem;
}
.social a:nth-child(1){
    background-color:#097CEB;
    border-top-left-radius: 10px;
    transition: .3s;
}
.social a:nth-child(1):hover{
   transition: .3s;
   margin-left: -10px;
   border-bottom-left-radius: 10px;
}
.social a:nth-child(2){
    background-color:#F10002;
    transition: .3s;
}
.social a:nth-child(2):hover{
    transition: .3s;
    margin-left: -10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
 }
.social a:nth-child(3){
    background-color:#18c535;
    transition: .3s;
}
.social a:nth-child(3):hover{
    transition: .3s;
    margin-left: -10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.social a:nth-child(4){
    background-color:var(--colorb);
    transition: .3s;
    border-bottom-left-radius: 10px;
}
.social a:nth-child(4):hover{
    transition: .3s;
    margin-left: -10px;
    border-top-left-radius: 10px;
}
.titulo{
    text-align: center;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 50px;
    margin-bottom: 50px;
}
.titulob{
    margin-top: 125px;
}
.input-text{
    height: 40px;
    font-size: .9rem;
    padding-left: 7px;
    padding-right: 7px;
    border: 1px solid #000;
    border-radius: 5px;
    margin-bottom: 10px;
    outline: none;
}
.input-select{
    height: 42px;
    font-size: .9rem;
    padding-left: 7px;
    padding-right: 7px;
    border: 1px solid #000;
    border-radius: 5px;
    margin-bottom: 10px;
    outline: none;
}
.input-submit{
    height: 40px;
    font-size: .9rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    background-color: var(--colorb);
    transition: .3s;
    text-transform: uppercase;
}
.input-submit:hover{
    letter-spacing: 1px;
    transition: .3s;
}
.input-file{
    text-align: left;
    height: 40px;
    font-size: .9rem;
    padding-left: 7px;
    border: 1px solid #000;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
}
.input-textarea{
    height: 120px;
    max-height: 120px;
    min-height: 120px;
    font-size: .9rem;
    padding: 7px;
    border: 1px solid #000;
    border-radius: 5px;
    margin-bottom: 10px;
    outline: none;
}
.input-textarea::-webkit-scrollbar{
    width: 3px;
    height: 5px;
    background-color: white;
}
.input-textarea::-webkit-scrollbar-thumb{
    background-color:var(--colorb);
    border-right: 2px solid var(--colorb);
}
footer{
    background-color: var(--colorb);
    width: 100%;
    margin-top: 50px;
}
footer .contenedor{
    width: 97%;
    max-width: 1500px;
    margin: auto;
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
}
footer .contenedor .seccion-a{
    width: 20%;
}
footer .contenedor .seccion-a img{
    width: 180px;
}
footer .contenedor .seccion-a h1{
    font-size: .9rem;
    color: #fff;
    font-weight: 300;
    margin-top: 10px;
}
footer .contenedor .seccion-b{
    width: 80%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
footer .contenedor .seccion-b div{
    width: 290px;
}
footer .contenedor .seccion-b div h1{
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--colora);
}
footer .contenedor .seccion-b div a{
    color: rgba(255, 255, 255, 0.568);
    font-weight: 300;
    font-size: .9rem;
    display: list-item;
    list-style: none;
    margin-top: 20px;
    transition: .3s;
}
footer .contenedor .seccion-b div a:hover{
    transition: .3s;
    color: #fff;
}
footer .box{
    border-top: 1px solid var(--colora);
    width: 97%;
    max-width: 1500px;
    margin: auto;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .box h1{
    font-size: .8rem;
    color: #fff;
    font-weight: 300;
    text-align: center;
}
.footer-admin{
    width: 290px;
    margin: auto;
    margin-top: 50px;
    background-color: transparent;
}
.footer-admin p{
    text-align: center;
    font-size: 1rem;
}
.footer-admin div{
    margin: auto;
    margin-top: 10px;
    width: 100px;
    margin-bottom: 20px;
    justify-content: space-around;
    transition: .3s;
}
.footer-admin div a{
    color: #fff;
    background-color: var(--colorb);
    border-radius: 50%;
    padding: 5px;
    font-size: .8rem;
    transition: .3s;
}
.footer-admin div a:hover{
    transform: translateY(-5px);
    transition: .3s;
}
.body-admin{
    background-color: rgb(240, 240, 240);
}
@media screen and (max-width: 1090px){
    footer .contenedor{
        flex-direction: column;
    }
    footer .contenedor .seccion-a{
        margin: auto;
        width: 290px;
    }
    footer .contenedor .seccion-a img{
        margin-left: auto;
        margin-right: auto;
        display: flex;
        margin-bottom: 10px;
    }
    footer .contenedor .seccion-a h1{
        text-align: center;
    }
    footer .contenedor .seccion-b{
        margin: auto;
        width: 100%;
        margin-top: 20px;
    }
}
@media screen and (max-width: 1085px){
    footer .contenedor{
        padding: 0px;
    }
    footer .contenedor .seccion-a{
        margin-top: 20px;
    }
    footer .box{
        height: 55px;
        margin-top: 20px;
    }
    footer .contenedor .seccion-b{
        width: 100%;
        display: grid;
        grid-template-columns: 50% 50%;
        grid-row-gap: 20px;
        align-items: flex-start;
        justify-content: space-between;
    }
    footer .contenedor .seccion-b div{
        margin-left: auto;
        margin-right: auto;
    }
    footer .contenedor .seccion-a h1{
        margin-top: 20px;
    }
    .header .box .nav li ul{
        display: none;
    }
    .header .box{
        justify-content: flex-start;
    }
    .header .nav{
        position: absolute;
        height: calc(100vh - 80px);
        top: 80px;
        width: 220px;
        left: 0;
        /* display: grid; */
        display: none;
        align-items: center;
        justify-content: center;
        overflow-y: auto;
        background-color: var(--colorb);
        z-index: 1000000;
    }
    .header .nav.active{
        display: block;
    }
    .header .nav li{
        display: flex;
        width: 200px;
        align-items: center;
        justify-content: center;
        margin-left: 0px;
        margin: auto;
        margin-bottom: 5px;
    }
    .header .nav li a{
        display: flex;
        padding: 20px;
        width: 100%;
    }
    .header .nav li a span{
        display: block;
        margin-left: -5px;
        margin-right: 10px;
    }
    .header .nav li a i{
        display: none;
    }
    .btn-menu{
        display: flex;
    }
}
@media screen and (max-width: 650px){
    footer .contenedor .seccion-b{
        display: grid;
        grid-template-columns: 100%;
        grid-row-gap: 20px;
        align-items: flex-start;
        justify-content: space-between;
    }
    footer .contenedor .seccion-b h1{
        text-align: center;
    }
    footer .contenedor .seccion-b a{
        text-align: center;
    }
}
@media screen and (max-width: 500px){
    .menu .box .seccion-c div p{
        display: none;
    }
    .menu .box .seccion-c div a{
        margin-left: 10px;
    }
    .menu .box .seccion-c div a span{
        display: block;
    }
    .menu .box .seccion-c div a p{
        display: none;
    }
}