* {
    margin: 0;
    padding: 0;
    box-shadow: border-box;
}
:root {
    --fondo-gris-claro: #f2f2f2;
    --fondo-gris-medio: #e0e0e0;
    --fondo-gris-footer: silver;
    --azul-menu: #0069d9;
    --azul-claro: #0090ff;
}
a:visited {
    color: #212529;
}
a:hover {
    color: #0056b3;
    text-decoration: none;
}
body {
    background-color: var(--fondo-gris-claro);
    font-size: 16px;
    padding-top: 55px;
}
footer {
    background-color: var(--fondo-gris-footer);
}

/* Estilos Menu Horizontal */
header {
    background-color: var(--azul-menu);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 500;
}
.menu {
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.menu .logo {
    display: inline-block;
    margin-right: 1em;
}
.menu .logo img {
    vertical-align: top;
    height: 65px;
}
.menu .btn-menu {
    display: none;
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    padding-top: 1em;
}
.menu .logo:hover {
    /*background: #0069d9; /* Azul Claro*/
}
.menu .enlaces {
    display: inline-block;
    text-align: right;
    z-index: 2000;
}
.menu .enlaces a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 1.3em;
    text-align: center;
    font-size: 1em;
}

.menu .enlaces i {
    margin-right: 5px;
}
.menu .enlaces a:hover {
    background: var(--fondo-gris-claro);
    color: var(--azul-menu);
}
#logo-footer{
    width: 170px;
    margin: 8px;
}
#logo-whatsapp, #logo-mail, #logo-facebook{
    width: 30px;
    margin: 18px 5px;
}
.no_link {
    color: #212529;
    text-decoration: none;
}
#text-shadow {
    text-align: left;
    text-shadow: 2px 2px 2px #b1b1b1;
}
#text-shadow p{
    text-align: justify;
}
.mgb-15 {
    margin-bottom: 15px;
}
.section-1 {
    background: rgba(0, 0, 0, 0) url(../img/reclutamiento.png) no-repeat center center / cover;
    position: initial;
    z-index: 111;
    height: 300px;
}
.section-3, .section-5 {
    background-color: var(--fondo-gris-medio);
}
.section-5 {
    background: rgba(0, 0, 0, 0) url(../img/back2.jpg) no-repeat center center / cover; 
}

.list-group-item {
    padding: 0 1.25rem;
}
.card-title {
    margin-bottom: 0;
}

#der_obl{
    margin-bottom: 0;
}
#cuerpo-derechos{
    margin-top: 1.5rem;
}
.padding {
    padding: 40px 0;
}
.cost-area {
    color: white;
}
#leyenda-precios {
    list-style:none;
}
#tabla-precios {
    color: white;
}
#cuerpo-derechos {
    text-align: justify;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
}
#tabla-precios>tbody>tr:hover {
    background: #87b5ff; /* Azul Claro */
}
#tabla-precios>thead {
    background: gray;
}
main article h1 {
    font-weight: normal;
    margin-bottom: .5em;
}
main article hr {
    margin-bottom: 1em;
    height: 2px;
    background: #4357ad;
    border: none;
}
main article p {
    margin-bottom: 1em;
}
/* FIN Estilos Menu Horizontal */

/* Validation */
label.error {
  color: #cc5965;
  display: inline-block;
  margin-left: 5px;
}
.form-control.error {
  border: 1px dotted #cc5965;
}
/* End Validation*/



/* Media querys */
@media screen and (max-width: 700px){
    header .menu {
        flex-direction: column;
    }
    header .menu .logo {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 90%;
    }
    header .menu .logo .btn-menu {
        display: inline-block;
        height: 55px;
    }
    header .menu .enlaces {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        background-color: var(--azul-claro);
    }
    .menu .logo img {
        height: 50px;
        margin-top: 3px;
    }
    .menu .enlaces a {
        padding: 10px;
        text-align: right;
        width: 100%;
    }
    .section-1{
        height: 465px;
    }
    .padding {
        padding: 20px 0;
    }
    .pdl-0 {
        padding-left: 0;
    }
    .pdr-0 {
        padding-right: 0;
    }
    .pd-0 {
        padding: 0;
    }
    #cuerpo-derechos {
        margin: 1rem;
    }
    #tabla-precios, #leyenda-precios {
        font-size: 0.65em;
    }
    #logo-mail, #logo-facebook, #logo-whatsapp {
        width: 20px;
        margin: 5px;
    }
}
@media screen and (min-width: 700px){
    .container {
        padding-left: 0;
        padding-right: 0;
    }
}