@import url(./main.css);
@import url(./menu.css);

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    font-family: 'Roboto Slab', serif;
}
header{
    transition-duration: 300ms;
    position:fixed;
    width: calc( 100% - 2rem);
    margin-top: -7.4rem;
    height: 80px;
    color: #000;
    left: 0;
    z-index: 100;
    border: 1px solid rgb(19, 9, 9);
    margin-left:1rem;
    margin-right:1rem;
}
.contenedor{
    width: 98%;
}
img{
    float: left;
}
header .contenedor{
    /* display: table; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height:100%;
}
header .contenedor img{
    transition-duration: 300ms;
    /* width: 175px; */
    /* margin-top: -41px; */
    margin-left: 30px;
}
header.sticky .contenedor img {
    transition-duration: 300ms;
    /* width: 103px; */
    /* margin-top: -23px; */
    margin-left: 30px;
}
@media (max-width:1176px){
    header .contenedor img{
        width: 120px;
        margin-top: -15px;
    }
    header.sticky .contenedor img{
        transition-duration: 300ms;
        width: 90px;
        margin-top: 36px;
        margin-left: 30px;
    }
}
.socialesquinto img:hover{
    transition: transform 0.4s ease-out;
    transform: rotateZ(360deg);
}
/* boton de ver mas */
.see-more-btn {
    text-transform: uppercase;
    font-family: "Trajan Pro", serif;
    font-weight: 600;
    font-size: 14px;
    padding: 5px 0;
    position: relative;
    margin: 20px auto 0;
    display: table;
    cursor: pointer;
    color: #452112;
}
.see-more-btn:before {
    width: 100%;
    height: 1px;
    background: #452112;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
}
.see-more-btn .dots {
    font-family: "Ubuntu", sans-serif;
    font-size: 16px;
    color: #452112;
    position: absolute;
    bottom: -12px;
    left: 24px;
}

