@import url(https://necolas.github.io/normalize.css/8.0.1/normalize.css);
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:wght@300;400;500;900&display=swap');

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

html {
    font-size: 62.5%;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    width: 100%;
    min-width: 320px;
    font-size: 1.6rem;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

/* ================================================================= */
/* ================================================================= */

.nav-header-container {
    position: fixed;
}
.nav-header-container > ul {
    padding-left: 5px;
}
.nav-header-container ul {
    background-color: rgba(0, 0, 0, 1);
}
.nav-header-container ul li {
    position: relative;
}
.nav-header-container ul li a {
    display: block;
    padding: 10px 15px;
    text-align: right;
    color: white;
}
.nav-header-container ul li a:hover {
    /* background-color: rgba(255, 255, 255, 0.2); */
    background-color: #383A25;
}

.nav-header-container > ul > li {
    display: inline-block;
}
.nav-header-container > ul > li ul {
    position: absolute;
    /* display: none; */
    opacity: 0;
    visibility: hidden;
}
.nav-header-container > ul > li ul li {
    width: 150px;
}
.nav-header-container > ul > li ul li ul {
    top: 0;
    left: 150px;
}
.nav-header-container li:hover > ul {
    /* display: block; */
    opacity: 1;
    visibility: visible;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
}

/* ================================================================= */
/* ================================================================= */

.landing-background-container {
    border-top: 15px solid #FFA600;
    border-bottom: 15px solid #FFA600;
}
.landing-background-img > img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.section-historia-container {
    width: 100%;
}
.section-historia-container > div {
    width: 100%;
    padding: 30px;
}

.historia-title {
    margin-top: 10px;
}

.historia-contenido-container > p {
    text-align: justify;
    font-size: 1.6rem;
    line-height: 2.2rem;
}

@media only screen and (max-width:576px){
    
}

@media (min-width: 576px) {
    
}

@media (min-width:768px) {
    
}

@media (min-width:992px) {
    
}

@media (min-width:1200px) {
    
}

@media (min-width: 1400px) {
    
}