body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
td {
    text-align: center;
}

p {
    margin-bottom: 10px;
}

.cellContent {
    border-bottom:5px solid #0c9228;
}

#leftPanel {
    margin: auto;
    color: black;
    width: 100%;
    text-align: center;
}

#title {
    font-size:2vw;   
}

#rightPanel {
    position:absolute;
    right:10px;
    top:0px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

#frmAux {
    background-color:black;
    display:none;
}

#footPanel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 98%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
}

#linkBlog {
    color:black;
}

.image_property {
    height:48px;
    width:48px;    
}

.properties {
    margin-left: auto;  
    margin-right: auto;
    width:90%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin-top:30px;
}

a.button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;

    text-decoration: none;
    color: white;
    background-color: #00df8e;
    font-weight: bold;
    padding: 5px;
    
    border-color: #00df8d;    
    border-width: 2px;
    border-style: solid;
    border-radius: 10px;
}

.content_text {
    color: black; 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;    
}

.content_title {
    font-weight: bold;
    font-size:1vw;
}

.content_image {
    width: 90%;
}

.content {
    position: relative;
    color: white;
    width: 90%;
    display: inline;
    text-align: center;
    margin: 10pt;
    background-color: #ffffff;
    padding: 10px;
    border-color: #00df8d;    
    border-width: 2px;
    border-style: solid;
    border-radius: 10px;
}

#container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; 
    max-width: 1000px;
    margin: 0 auto;
}

a.linkMenu {
    text-decoration: none;
    font-weight: bold;
    padding: 5px;
    color: black;
}

a.foot {
    padding-left: 8px
}

.foot {
    text-decoration: none;
}

.menu {
    list-style-type: none;
}

li {
    display: inline;
}

#menu_on{
    display: none;
    width:30px;
    height: 20px;
    position: absolute;
    z-index: 2;
    right:10px;
    top:10px
}

 
#menu_on span{
    width: 100%;
    height: 4px;
    border-radius: 4px;
    display: block;
    position: absolute;
    background: #fff;
    transition: all 0.25s ease; /* Propiedades a animar | Tiempo | Tipo animación*/
    transform-origin : 0px 100%;
    background-color: #00df8e;
}
 
#menu_on span:nth-child(2) {
    top: calc(50% - 2px);
}

#menu_on span:nth-child(3){
    bottom: 0;
}

.main-content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin-left: 10%;
    margin-right: 10%;
    border-color: #00df8d;    
    border-width: 2px;
    border-style: solid;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: row;    
} 

.main-image {
    width: 30%;
    height: 30%;
    margin: auto;
}

.main-text {
    width: 60%;
    display:inline;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    
}

@media only screen and (max-width: 850px) {
    #menu_on {
        display: inline-block;
        width:30px;
        height: 20px;
        position: absolute;
        z-index: 2;
        right:10px;
        top:10px
    }
    
    #title {
        font-size:8vw;
    }
    
    li {
        display: block;
    }
    
    .menu {
        list-style-type: none;
        background-color: white;
        list-style: none;
        padding-left: 0;
    }
    
    #rightPanel {
        display:none;
        position:absolute;
        right:10px;
        top:35px;
        z-index: 100;
        background-color: white;
        border-color: #00df8d;    
        border-width: 2px;
        border-style: solid;
        border-radius: 10px;
    }
    
    a.linkMenu {
        text-decoration: none;
        font-weight: bold;
        padding: 5px;
        color: black;
    }
    
    a.button {
        text-decoration: none;
        font-weight: bold;
        text-decoration: none;
        color: black;
        background-color: white;
        font-weight: bold;
        padding: 5px;
        border-style: none;
    }
    
    #container {
        flex-direction: column;
    }
    
    .content {
        width: 100%;
        margin: 0;
        margin-bottom: 10pt;
    }
    
    .content_title {
        font-size:5vw;
    }
    
    #footPanel {
         font-size:4vw;
    }
    
    .main-image {
        width: 100%;
    }
    
    .main-content {
        flex-direction:column;
    }
    
    .main-text {
        flex-direction:column;
        width: 100%;
    }
    
    #footPanel {
        position:relative;
    }

}


