@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    color: #000;
    font-size: 14px;
}
.conteendor {
    width: 100%;
    min-height: 100vh;
    display: flex;
}
.conteendor .sidebarcontent {
    width: 100%;
    max-width: 40%;
    padding: 50px;
    border-right: 5px solid #227437;
}
.conteendor .sidebarcontent .logo {
    margin-bottom: 50px;
}
.conteendor .sidebarcontent .logo img {
    width: 100%;
    max-width: 190px;
    height: auto;
}
.conteendor .sidebarcontent .descripcionside {
    display: flex;
    flex-direction: column;
}
.sidebarcontent .descripcionside h1 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 6px;
}
.sidebarcontent .descripcionside p {
    font-size: 15px;
    border-left: 5px solid #227437;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 30px;
    padding-left: 10px;
}
.descripcionside .mensajecontacto {

}
.descripcionside .mensajecontacto .tituloregre {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 6px;
}
.descripcionside .mensajecontacto p {
    margin-bottom: 20px;
}
.descripcionside .mensajecontacto li {
    border-bottom: 1px dashed rgb(222, 222, 222);
    padding-bottom: 10px;
    margin-bottom: 10px;
    list-style: none;
}
.descripcionside .mensajecontacto li i {
    color: #227437;
    margin-right: 10px;
}



.conteendor .contenido {
    background-color: #227437;
    border-left: 5px solid rgb(141 180 58);
    width: 100%;
    background-image: url('img/elfondo.jpeg');
    background-size: cover;
    min-height: 100vh;
}