/*/// FUENTE ///*/

@font-face {
    font-family: "AveriaSerifLibre";
    font-weight: 400;
    src: url("../font/AveriaSerifLibre-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "AveriaSerifLibre";
    font-style: italic;
    src: url("../font/AveriaSerifLibre-Italic.ttf") format("truetype");
}

@font-face {
    font-family: "CommutersSans";
    font-weight: 400;
    src: url("../font/CommutersSans-Regular.otf") format("opentype");
}

@font-face {
    font-family: "CommutersSans";
    font-weight: 600;
    src: url("../font/CommutersSans-SemiBold.otf") format("opentype");
}

@font-face {
    font-family: "CommutersSans";
    font-weight: 700;
    src: url("../font/CommutersSans-Bold.otf") format("opentype");
}

/*/// GENERAL ///*/

:root {
    --bordo: #831322;
    --rojo: #a31a30;
    --rosa: #cf778f;
    --palido: #faf8f4;
    --negro: #161616;
    --blanco: #fff;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

html {
	font-size: 10px;
}

body {
    background-color: var(--bordo);
    background-image: url("../img/textura-bordo-alt.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
	color: var(--blanco);
	font-family: "CommutersSans", Arial, sans-serif;
	font-size: 1.6rem;
	line-height: 1.3em;
	font-weight: 300;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin: 0;
	overflow: hidden;
	position: relative;
}

section {
    width: 100%;
    padding: 0 10%;
    position: relative;
}

img {
    width: 100%;
    max-width: 1300px;
    height: auto;
    margin: 0 0 50px;
}

button {
    background: transparent;
    border-radius: 0;
    border: none;
    font-family: "CommutersSans", Arial, sans-serif;
    font-size: 1.6rem;
    color: var(--blanco);
    padding: 0;
    line-height: 1em;
}

button:hover {
    cursor: pointer;
}

button img {
    display: block;
    width: 16px;
    height: auto;
    margin: 10px auto 0;
}

a {
    color: var(--blanco);
    text-decoration: none;
    transition: all ease 0.3s;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
    transition: all ease-in-out 1s;
}

ul li {
    margin-bottom: 10px;
}

ul li:last-child {
    margin-bottom: 0;
}
    
.contacto {
    position: relative;
}

.show {
    opacity: 1;
    pointer-events: auto;
}

.hide {
    opacity: 0 !important;
    pointer-events: none;
}

.animation {
    opacity: 0;
    transition: all ease-in-out 1s;
}

.animation.fadeIn {
    opacity: 1;
}

@media (min-width: 768px) {
    
    #logo-m {
        display: none;
    }
    
    .contacto {
        width: 80%;
        position: fixed;
        bottom: 100px;
        left: 10%;
    }
    
}

@media (max-width: 767px) {
    
    #logo {
        display: none;
    }
    
    img {
        margin: 0 0 100px;
    }
    
}