* {
    box-sizing: border-box;
    margin:0;
    padding:0;
    border: none;
    outline: none;
    font-family: Poppins;
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
main {
    background: rgba(0,113,18,0.1);
}
/* CSS Header */
.header {
    box-shadow: 0 2px 1px #ccdbce;
}
.header a {
    color: white;
    text-decoration: none;
    padding: 11px 20px;
}
.logo-nav-container {
    width: 100%;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 200px 50px;
    align-content: center;
    align-items: center;
}
.logo {
    width: 100%;
    height: 200px;
    background: #007340;
    display: flex;
    justify-content: center;  
}
@media only screen and (max-width: 1000px) {
    .logo {
        width: 100%;
        height: 300px;
        background: #007340;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .navigation {
        background: #008412;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 200px !important;
        margin-top: 150px;
    }
    .navigation ul {
        margin:0;
        padding:0;
        list-style: none;
        font-size: 30px !important;
    }
    .navigation ul li {
        display: flex !important;
        justify-content: center;
        align-items: center;
    }
    .container {
        max-width: 1500px !important;
        width: 100% !important;
        padding: 20px 0 !important;
        margin-top: 150px !important;
        margin-bottom: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* CSS Navigation */
    
.navigation {
        background: #008412;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 57px;
}
.navigation ul{
    margin:0;
    padding:0;
    list-style: none;
    font-size: 25px;
}
.navigation ul li {
    display: inline-block;
}
.navigation ul li a:hover{
    background: white;
    color: #008412;
}
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
    box-shadow: 0 1px 0.5px #ccdbce;
    margin-top: 0;
}

/* CSS Contenido */

.titulo {
    font-size: 30px;
    margin: 0 !important;
    padding: 15px 0 !important;
    background: #008412 !important;
    color: white !important;
    width: 100%;
}
.subtitulo {
    font-size: 30px;
    color: white;
}
.container {
        max-width: 1500px !important;
        width: 100% !important;
        padding: 20px 0;
}
.row {
    margin: 0 !important;
}

/* carousel estilos (Materialize) */

.carousel {
    min-height: 600px;
}

.carousel .carousel-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    user-select: none;
    width: 600px !important;
    height: 600px !important; 
}

.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 15px;
}

/* Footer CSS */

.footer{
    width: 100%;
    padding-top: 20px;
    padding-bottom: 0;
    bottom: 0;
    z-index: 2;
    background: white;
}
.div-footer{
    padding-top: 0;
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
}
.div-footer a {
    text-align: center;
}
.logo-footer {
    width: 63px;
    height: 70px;
}
.footer a {
    color: black;
    text-decoration: none;
}
.logo-text {
    padding-left: 5px;
    padding-right: 50px;
}
.iconos {
    padding: 0 25px;
}
.credits {
    font-size: 18px;
    padding-left: 50px;
    text-align: center;
}