* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    
}


 li,a,button {
    font-weight: 500;
    font-size: 16px;
    color: #ecf0f1;
    text-decoration: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
    background-color: black;
    width: auto;

}

.company{
    color: white;
    margin-right: 600px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.nav_links li {
    display: inline-block;
    padding: 0px 40px;
    font-family:cursive;
}

.nav_links li a {
    transition: all 0.3s ease 0s;
    color: white;
    font-family:cursive;
}

.nav_links li a:hover {
    color: rgba(90, 55, 21, 0.9);
}

button {
    padding: 9px 25px;
    background-color: brown;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    font-family:cursive;
}

button:hover {
    background-color: rgba(90, 55, 21, 0.9);
}

.banner {
    width: 100%;
    height: 300px;
    display: block;
}

.slider{
    padding: 40px 20px;
    min-height: calc(105vh - 136.5px - 233px);
}
footer {
    
    background-color: rgb(110, 28, 28);
    height: 200px;
    width: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 20px;

}

.footerContent {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background-color: rgb(110, 28, 28);
    width: 100%;
    
}

.footerContent h3{
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
    font-family: cursive;

}

.footerContent span{
    max-width: 500px;
    margin: none;
    line-height: 28px;
    font-size: 14px;
}

.contacto{
    padding: 10px;
}
.contacto span{
    padding: 0px 30px;
}
.socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 2rem 0;
    font-family: cursive;
    
}

.socials li{
    margin: 0 10px;
   
   
}

.socials a{
    text-decoration: none;
    color: white;
    
}


.socials a:hover{
    color: brown;
}

.footerBottom{
    background-color: black;
    width: 100vw;
    padding: 20px 0;
    text-align: center;
}

.footerBottom p{
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
    color: brown;
    font-family:cursive;
}

.info{
    margin-top: 50px;
    text-align: center;
}

.info h1{
    font-family: cursive;
   
}

.info h3{
    font-family: cursive;
    padding: 10px 10px;
}

.info2 {
    margin-top: 50px;
   margin-left: 50px;
}

.bannerImg{
    height: 450px;
    width: 1200px;
    margin-left: 20px;
}


.slider{
    width: 900px;
    height: 750px;
    border-radius: 10px;
    margin: auto;
    overflow: hidden;
}

.slides{
    width: 539%;
    height: 500px;
    display: flex;
}

.slides input{
    display: none;
}

.slide{
    width: 20%;
    transition: 2s;
}

.slide img{
    width: 1100px;
    height: 560px;
    border-radius: 15px;
    max-width: 800px;
    max-height: 700px;
}

.navigation-manual{
    position: absolute;
    width: 800px;
    margin-top: 620px;
    display: flex;
    justify-content: center;

}

.manual-btn{
    border: 2px solid black;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}

.manual-btn:not(:last-child){
    margin-right: 40px;
}

.manual-btn:hover{
    background: black;
}

#radio1:checked ~ .first{
    margin-left: 0;
}
#radio2:checked ~ .first{
    margin-left: -20%;
}
#radio3:checked ~ .first{
    margin-left: -40%;
}
#radio4:checked ~ .first{
    margin-left: -60%;
}

.navigation-auto{
    position: absolute;
    display: flex;
    width: 800px;
    justify-content: center;
    margin-top: 620px;
}

.navigation-auto div{
    border: 2px solid black;
    padding: 5px;
    transition: 1s;
    border-radius: 10px;
}

.navigation-auto div:not(:last-child){
    margin-right: 40px;
}

#radio1:checked ~ .navigation-auto .auto-btn1{
    background: black;
}

#radio2:checked ~ .navigation-auto .auto-btn2{
    background: black;
}
#radio3:checked ~ .navigation-auto .auto-btn3{
    background: black;
}
#radio4:checked ~ .navigation-auto .auto-btn4{
    background: black;
}