
/* -------------------------------------- */
/* -------------- CABECERA -------------- */
/* -------------------------------------- */
html, body {
    height: 100vh;
    background-color: #fff;
}
.wrapper {
    height: 100%;
}

.contenedor-cabecera {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 150px;
    height: 18%;
}

.cabecera {
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 90%;
    margin: 25px 0px;
}

@media only screen and (max-width: 767px)
{
    .contenedor-cabecera {
        height: unset;
    }
    .cabecera {
        width: 75%;
        margin: 15px 0px;
    }
}

@media only screen and (max-width: 425px)
{
    .cabecera {
        width: 90%;
        margin: 0px;
    }
}



/* -------------------------------------- */
/* -------------- NAVBAR ---------------- */
/* -------------------------------------- */
.navbar {
    /* border-bottom-color: #003b77 !important; */
    /* background-color: #003b77 !important; */
    padding-top: 8px !important;
    height: 60px !important;
    margin-bottom: 5px;
    border-top: 1px solid #003b77;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.navbar-default .navbar-nav > li > a {
    /* color: #fff !important; */
    color: #003b77;
    font-weight: 700;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5;
    transition: all 0.5s;
}

.navbar-default .navbar-nav > li > a:hover {
    color: #c50653 !important;
}

.container-menu {
    width: 100% !important;
}

.navbar-collapse {
    width: 100%;
}

.navbar-flex {
    display: flex !important;
    justify-content: space-between;
    width: 100%;
    flex-wrap: nowrap;
    flex-direction: row;
}

.menu2 {
    self-align: flex-end;
}

.active {
    color: #c50653 !important;
}

@media only screen and (max-width: 767px)
{
    .navbar-flex {
        display: block !important;
    }
    
    .menu1 .navbar-nav {
        margin: 0px;
    }
    .menu2 .navbar-nav {
        padding: 0px 0px 25px 0px;
        margin: 0px;
    }
}


/* ------------------------------------------------- */
/* -------------- Seccion principal ---------------- */
/* ------------------------------------------------- */
.services-section {
    background-color: #F3F3F3 !important;
    border-top: 1px solid #003b77;
    
    min-height: 50%;
}

.services-section .container {
    background-color: #fff;
}

.services-content {
    padding-top: 70px;
    padding-bottom: 35px;
}
.services-content  h1{
    color: #c50653;
}

.services-description h1 {
    color: #003b77 !important;
}


.services .services-icon {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    /* border: 2px solid #BFCEDD; */
    border: 2px solid #E1DBDE;
    /* border-color: transparent; */
    background: #f3f3f3;
    margin: 0 auto;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.services .col-sm-4:hover .services-icon {
    /* border-color: #003b77; */
    border-color: #c50653;
}
.services .col-sm-4:hover .services-icon {
    /* border-color: #003b77;*/
    border-color: #c50653;
}




.btn-primary {
    color: #fff;
    background-color: #205488;
    border-color: #205488;
}

.btn-primary:hover {
    color: #fff;
    background-color: #003b77;
    border-color: #003b77;
}



/* ------------------------------------------------- */
/* -------------- Páginas públicas ----------------- */
/* ------------------------------------------------- */
.titulo-info {
    color: #205488;
    font-weight: 600;
    font-size: 16px;
    margin: 10px 0px;
}




/* -------------------------------------- */
/* -------------- FOOTER ---------------- */
/* -------------------------------------- */
.footer{
    background-color: #003b77 !important;
    position: static;
}
.footer-text p {
    color: #fff !important;
}


/* -------------------------------------- */
/* -------------- CARD ---------------- */
/* -------------------------------------- */
.card {
    box-shadow: none !important;
}


