@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

/* variables  #2692f7;*/
:root {
    --fros-blue-color: #1988f0;
    --blue-color: #004AAD;
    --verde-oscuro: #367F56;
    --verde-claro: #87BB70;
    --dark-color: #202020;
    --light-gray: #dedede;
    --dark-gray: #a1a1a0;
    --light-color: #fff;
    --poppins-font: 'Poppins', sans-serif;
    --transition: all 0.3s ease-in-out;
    --box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.2) !important;
}

/* some resets */
* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


html {
    font-size: 10px;
    overflow-x: hidden !important;
    max-width: 100% !important;
}

body {
    font-size: 1.5rem;
    line-height: 1.6;
    font-family: var(--poppins-font);
    overflow-x: hidden !important;
    max-width: 100% !important;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: black;
}

.sticky-element-placeholder.sticky-element-active {
    width: 100% !important;
}

.negrita {
    font-weight: 600;
}

.bg-blue {
    background-color: var(--blue-color);
}

.bg-blue_oscuro {
    background-color: #004AAD;
}

.bg-blue_claro {
    background-color: var(--fros-blue-color);
}

.bg-white {
    background-color: var(--light-color);
}

.bg-verde_claro {
    background-color: #F2FBF9;
}

.text-blue {
    color: var(--blue-color);
}

.text-dark {
    color: #000;
}

.text-verde_claro {
    color: var(--verde-claro);
}

.text-verde_oscuro {
    color: var(--verde-oscuro);
}

.text-white {
    color: var(--light-color);
}

.text-shadow {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.30);
}

.text-justify {
    text-align: justify;
}

.py {
    padding: 10rem 0rem 0rem 0rem;
}

.flex-row {
    display: flex;
    flex-direction: row;

}

/* button */
.btn,
button {
    border: none;
    cursor: pointer;
}

.btn {
    padding: .9rem 4rem;
    border-radius: 3rem;
    display: inline-block;
    background-color: var(--light-color);
    font-weight: 500;
    -webkit-box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.2);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.btn-white {
    color: var(--fros-blue-color);
}

.btn-light-blue {
    background-color: var(--light-blue-color);
    color: var(--light-color);
}

.btn-blue {
    background-color: var(--fros-blue-color);
    color: var(--light-color);
}

.btn-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.btn-group .btn {
    width: 100%;
}

.btn-group .btn:first-child {
    margin-bottom: 2rem;
}

.btn:hover {
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}

/*boton 2 */

.btn_default2 .btn {
    margin-top: calc(50% + 25px);
    position: relative;
    display: inline-block;
    width: 277px;
    height: 50px;
    font-size: 1em;
    font-weight: bold;
    line-height: 60px;
    text-align: center;
    text-transform: uppercase;
    background-color: transparent;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 17px;
    letter-spacing: 0.045em;
}

.btn_default2 .btn svg {
    position: absolute;
    top: 0;
    left: 0;
}

.btn_default2 .btn svg rect {
    stroke: #EC0033;
    stroke-width: 4;
    stroke-dasharray: 353, 0;
    stroke-dashoffset: 0;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
}

.btn_default2 .btn span {
    background: rgb(255, 130, 130);
    background: -moz-linear-gradient(left, rgba(255, 130, 130, 1) 0%, rgba(225, 120, 237, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(255, 130, 130, 1) 0%, rgba(225, 120, 237, 1) 100%);
    background: linear-gradient(to right, rgba(255, 130, 130, 1) 0%, rgba(225, 120, 237, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8282', endColorstr='#e178ed', GradientType=1);
    -webkit-text-fill-color: transparent;
}

.btn:hover svg rect {
    stroke-width: 4;
    stroke-dasharray: 196, 543;
    stroke-dashoffset: 437;
}

/*boton 2 */

.linea-separadora {
    border-bottom: 0.1px solid #c9c9c9b2;
    width: 90%;
    margin: 0 auto;
}

.container {
    max-width: 80vw;
    margin: 0 auto;
    padding: 1rem 1rem;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.grid {
    display: grid;
}

input {
    outline: 0;
}

.lead {
    font-size: 25px;
    text-transform: capitalize;
}

h1,
h2,
h3 {

    margin-top: 0;
    line-height: 1.3;
}

.text {
    opacity: 1;
}

.text-md {
    font-size: 1.5rem;
}

.text-lg {
    font-size: 2rem;
    font-weight: 500;
}

.text-sm {
    font-size: 1.3rem;
}

.text-justify {
    text-align: justify;
}

.text-center {
    text-align: center;
}

.centrado {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

/* boton */
.btn_default1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.btn_default1 nav ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.btn_default1 nav ul li {
    --c: #1988f0;
    color: var(--c);
    font-size: 20px;
    border: 0.1em solid var(--c);
    border-radius: 0.5em;
    min-width: 11em;
    max-width: 15em;
    height: 3em;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 3em;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
    margin: 0.5em;
    display: flex;
    /* agregar */
    align-items: center;
    /* agregar */
    justify-content: center;
}

.btn_default1 nav ul li span {
    position: absolute;
    width: 25%;
    height: 100%;
    background-color: var(--c);
    transform: translateY(150%);
    border-radius: 50%;
    left: calc((var(--n) - 1) * 25%);
    transition: 0.5s;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    z-index: -1;
}

.btn_default1 nav ul li:hover {
    color: rgb(255, 255, 255);
}

.btn_default1 nav ul li:hover span {
    transform: translateY(0) scale(2);
}

.btn_default1 nav ul li span:nth-child(1) {
    --n: 1;
}

.btn_default1 nav ul li span:nth-child(2) {
    --n: 2;
}

.btn_default1 nav ul li span:nth-child(3) {
    --n: 3;
}

.btn_default1 nav ul li span:nth-child(4) {
    --n: 4;
}

/* fin boton */


/*-------------------last-child--------------------------------------------*/



/*---------------------------------------------------------------*/
/* tab pagos */
.payment-tab {
    position: fixed;
    top: 35%;
    left: -144px;
    transform: translateY(-90%);
    z-index: 10;
    transition: left 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-tab:hover {
    left: 0;
}

.payment-tab img {
    padding-left: 1rem;
}

.payment-tab a {
    display: block;
    background-color: #004baddc;
    color: white;
    padding: 10px;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.425);
    text-align: center;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    animation: pulse 2s infinite;
}

.payment-tab a:hover {
    background-color: #0056b3;
}

/*--------------------------------BOTONES REDES SOCIALES-----------------------------------------*/
/*FACEBOOOK*/
.social-fcb{
    position: fixed;
    top: 43%;
    left: -84px;
    transform: translateY(-90%);
    z-index: 10;
    transition: left 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-fcb:hover {
    left: 0;
}

.social-fcb img {
    padding-left: 1rem;
    width: 41px;
    height: auto;
}

.social-fcb a {
    display: block;
    background-color: #004baddc;
    color: white;
    padding: 10px;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.425);
    text-align: center;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    animation: pulse 2s infinite;
}

.social-fcb a:hover {
    background-color: #0056b3;
}
/*INSTAGRAM*/
.social-ins{
    position: fixed;
    top: 51%;
    left: -88px;
    transform: translateY(-90%);
    z-index: 10;
    transition: left 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-ins:hover {
    left: 0;
}

.social-ins img {
    padding-left: 1rem;
    width: 41px;
    height: auto;
}

.social-ins a {
    display: block;
    background-color: #004baddc;
    color: white;
    padding: 10px;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.425);
    text-align: center;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    animation: pulse 2s infinite;
}

.social-ins a:hover {
    background-color: #0056b3;
}

/*YOUTUBE*/
.social-you{
    position: fixed;
    top: 67%;
    left: -73px;
    transform: translateY(-90%);
    z-index: 10;
    transition: left 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-you:hover {
    left: 0;
}

.social-you img {
    padding-left: 1rem;
    width: 41px;
    height: auto;
}

.social-you a {
    display: block;
    background-color: #004baddc;
    color: white;
    padding: 10px;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.425);
    text-align: center;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    animation: pulse 2s infinite;
}

.social-you a:hover {
    background-color: #0056b3;
}

/*LINKEDIN*/
.social-lin{
    position: fixed;
    top: 59%;
    left: -70px;
    transform: translateY(-90%);
    z-index: 10;
    transition: left 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-lin:hover {
    left: 0;
}

.social-lin img {
    padding-left: 1rem;
    width: 41px;
    height: auto;
}

.social-lin a {
    display: block;
    background-color: #004baddc;
    color: white;
    padding: 10px;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.425);
    text-align: center;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    animation: pulse 2s infinite;
}

.social-lin a:hover {
    background-color: #0056b3;
}
/*------------------------------------------------------------------------*/
@keyframes levitation {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.levitate-sh {
    animation: levitation 2s infinite;
}

.df-messenger {
    --df-messenger-chat-background-color: #3113b6;
}

/* ----------------------------------------------------------------------------- */
.item {
    opacity: 0;
    transition: opacity 1.5s;
}

.item.show {
    opacity: 1;
}

.levitating-div {
    position: relative;
    animation: levitate 2s infinite alternate;
}

@keyframes levitate {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}

/* ----------------------------------------------------------------------------- */


@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.team-a {
    margin: 0 auto;
    overflow: hidden;
    max-width: 100%;
    background: rgb(255, 255, 255);
    white-space: nowrap;
    position: relative;
    border-radius: 1rem;
}

.team-a:before,
.team-a:after {
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    content: "";
    z-index: 2;
}

.team-a:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}

.team-a:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}

.team-a:hover .team-slide {
    animation-play-state: paused;
}

.team-a-slide {
    display: inline-block;
    animation: 70s slide infinite linear;

}

.team-a-slide img {
    height: 210px;
    margin: 0 20px;
    background-color: rgba(255, 255, 255, 0);
    object-fit: contain;

}

/*---------------------------------------------------------------*/
/* Boton flotante whatsapp */
.btn-wsp {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    line-height: 63px;
    bottom: 20px;
    left: 20px;
    background: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: all 300ms ease;
}

.btn-wsp:hover {
    background: #475344;
}

@media only screen and (min-width:320px) and (max-width:768px) {
    .btn-wsp {
        width: 55px;
        height: 55px;
        line-height: 66px;
    }
}

/*-------Colores Para Redes Sociales-------*/
.contenedor-redes-sociales .color-twitter {
    background: #3B94D9;
}

.contenedor-redes-sociales .color-googleplus {
    background: #dd4339;
}

.contenedor-redes-sociales .color-whatsapp {
    background: #30a14c;
}



/* --------------------------------------------------------------------------------------------------- */
/* ------------------------heros ---------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------- */

.hero-nosotros-apoyot {
    background-image: url(/images/hero-apoyo-terap.jpg);
    background-position: bottom;
}

.hero-especialidades_mq {
    background-image: url(images/urgencias-foto.jpg);
    background-position: left;
}

.hero-nosotros_nos {
    background-image: url(images/bg-hero.png);
}

.hero-nosotros_agendar {
    background-image: url(/images/bg-hero_agendar.jpg);
}

.hero-nosotros_imgd {
    background-image: url(/images/bg-hero_imgdiagnosticas.jpg);
}

.hero-nosotros_horariop {
    background-image: url(/images/bg-hero_horariop.jpg);
}

.hero-nosotros_convenios {
    background-image: url(/images/hero-convenio.jpg);
}

.hero-nosotros_contactenoss {
    background-image: url(/images/bg-hero_contactenos.avif);
}

.hero-apoyod {
    background-image: url(/images/bg-inicio.png);
    background-position: center;
}

.hero-apoyot-farmacieuticos {
    background-image: url(/images/bg-farmacia.jpg);
    background-position: center;
}

.hero-apoyot-acogida {
    background-image: url(/images/bg-hero-acogida.jpg);
    background-position: center;
}

.hero-apoyot-to {
    background-image: url(/images/bg-hero-to.jpg);
    background-position: bottom;
}

.hero-apoyot-tr {
    background-image: url(/images/bg-hero-tr.jpg);
    background-position: center;
}

.hero-apoyot-fono {
    background-image: url(/images/bg-fono.jpg);
    background-position: center;
}

.hero-apoyot-nutricion {
    background-image: url(/images/bg-hero-nutricion.jpg);
    background-position: bottom;
}

.hero-apoyot-soportemyn {
    background-image: url(/images/bg-hero-soportemyn.jpg);
    background-position: bottom;
}

.hero-apoyot-psicologia {
    background-image: url(/images/bg-hero-psicologia.jpg);
    background-position: bottom;
}

.hero-apoyot-trabajos {
    background-image: url(/images/bg-hero-trabajos.jpg);
    background-position: center;
}

.hero-apoyot-acogida {
    background-image: url(/images/bg-hero-acogida.jpg);
    background-position: center;
}

.hero-apoyot-ryc {
    background-image: url(/images/bg-hero-ryc.jpg);
    background-position: center;
}

.hero-apoyot-hospitalizacion {
    background-image: url(/images/bg-hero-hospitalizacion.jpg);
    background-position: center;
}

.hero-apoyot-consultae {
    background-image: url(/images/urgencias-foto.jpg);
    background-position: center;
}

.hero-apoyot-enfermeria {
    background-image: url(/images/urgencias-foto.jpg);
    background-position: center;
}


.hero-mq-anestesia {
    background-image: url(/images/especialidades/mq/mq-anestesia.jpg);
    background-position: center;
}

.hero-mq-cirugia_general {
    background-image: url(/images/especialidades/mq/mq-cirugia_general.jpg);
    background-position: bottom;
}

.hero-mq-cirugia_torax {
    background-image: url(/images/especialidades/mq/mq-cirugia_torax.jpg);
    background-position: bottom;
}

.hero-mq-cirugia_vascular_y_angiologia {
    background-image: url(/images/especialidades/mq/mq-cirugia_vascular.jpg);
    background-position: bottom;
}

.hero-mq-cirugia_plastica_y_estetica {
    background-image: url(/images/especialidades/mq/mq-cirugia_plastica.jpg);
    background-position: center;
}

.hero-nosotros-mq-cirugia_de_mano {
    background-image: url(/images/especialidades/mq/mq-cirugia_de_mano.jpg);
    background-position: center;
}

.hero-mq-dolor_y_cuidados_paliativos {
    background-image: url(/images/especialidades/mq/mq-cuidados_p.jpg);
    background-position: center;
}

.hero-mq-endo {
    background-image: url(/images/especialidades/mq/mq-endocrinologia.jpg);
    background-position: center;
}

.hero-mq-enfermedades_desmielinizantes {
    background-image: url(/images/especialidades/mq/mq-desmielinizantes.jpg);
    background-position: center;
}

.hero-mq-gastro {
    background-image: url(/images/especialidades/mq/mq-gastro.jpg);
    background-position: center;
}

.hero-mq-medicina_interna {
    background-image: url(/images/especialidades/mq/mq-medicina_interna.jpg);
    background-position: center;
}

.hero-mq-neurocirugia {
    background-image: url(/images/especialidades/mq/mq-neurocirugia.jpg);
    background-position: center;
}

.hero-mq-ortopedia_y_traumatologia {
    background-image: url(/images/especialidades/mq/mq-ortopedia.jpg);
    background-position: center;
}

.hero-mq-cirugia_de_columna {
    background-image: url(/images/especialidades/mq/mq-cirugia_columna.jpg);
    background-position: center;
}

.hero-mq-psiquiatria {
    background-image: url(/images/especialidades/mq/mq-psiquiatria.jpg);
    background-position: center;
}

.hero-mq-servicio_quirurgico {
    background-image: url(/images/especialidades/mq/mq-cirugia_vascular.jpg);
    background-position: bottom;
}

.hero-mq-uci {
    background-image: url(/images/especialidades/mq/mq_uci.jpg);
    background-position: center;
}

.hero-mq-urologia {
    background-image: url(/images/especialidades/mq/mq-urologia.jpg);
    background-position: center;
}

.hero-at-consulta_externa {
    background-image: url(/images/especialidades/mq/mq-consulta_externa.jpg);
    background-position: center;
}

.hero-at-enfermeria {
    background-image: url(/images/especialidades/mq/at-enfermeria.jpg);
    background-position: center;
}

.hero-at-hospitalizacion {
    background-image: url(/images/especialidades/mq/at-hospitalizacion.jpg);
    background-position: top;
}

.hero-asociacion {
    background-image: url(/images/bg-asociacion.jpg);
    background-position: center;
}


/*---------------------------------------------*/


.principios {
    padding: 10rem 0rem;
    margin-top: 1rem;
}

.principios-bg {
    background: rgb(25, 170, 240);
    background: radial-gradient(circle, rgba(25, 170, 240, 1) 35%, rgba(25, 136, 240, 1) 100%);
}

.prin1 {
    background-color: white;
}

.container-principios {
    max-width: 1000px;
    max-height: 2000px;
    padding: 1rem;
    margin: 0 auto;
}

.container-principios h1 {
    text-align: center;
    padding: 0.5rem;
    margin-bottom: 60px;
    font-weight: 600;
    position: relative;
}

.container-principios h1::after {

    content: '';
    background: white;
    width: 100px;
    height: 5px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.row-principios {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 50px;
}

.principio {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 180px;
    text-align: center;
    padding: 25px 10px;
    border: 1px solid #cfcfcf;
    border-radius: 5px;
    font-size: 14px;
    background: white;
    transition: transform 0.5s, background 0.5s;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, .16);
}

.img-principios {
    width: 80px;
}

.principio i {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--blue-color);
}

.principio h2 {
    font-weight: 600;
    margin-bottom: 8px;
}

.principio:hover {
    background: var(--blue-color);
    color: #fff;
    transform: scale(1.05);
}

.principio i:hover {
    color: white;
}

/*---------------------------------------------------------------*/

/* estados e informes financieros */

.contenedor-informes {
    display: flex;
    flex-wrap: wrap;
    padding: 15rem 0rem 0rem 0rem;
    width: 100%;
    justify-content: center;
    gap: 2rem;
}

.selectbox {
    width: 400px;
    height: 100PX;
    margin: auto;
    position: relative;
}

.selectbox .select {
    background: #fff;
    width: 80%;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, .16);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .2s ease all;
    margin-bottom: 30px;
    padding: 30px;
    position: relative;
    z-index: 200;
    border: 2px solid transparent;
    border: 2px solid var(--fros-blue-color);
}

.selectbox .select.active,
.selectbox .select:hover {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, .16);
    border: 2px solid #213f8f;
}

.selectbox .select.active:before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    border-top: 15px solid #213f8f;
    border-right: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid transparent;
    position: absolute;
    bottom: -30px;
    left: calc(50% - 15px);
}

.selectbox .select i {
    font-size: 30px;
    margin-left: 30px;
    color: #213f8f;
}

.selectbox .titulo {
    margin-bottom: 10px;
    color: #000;
    font-weight: 600;
    font-size: 30px;
}

.selectbox .descripcion {
    font-size: 18px;
    color: #434343;
}

.selectbox .opciones {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, .16);
    max-height: 400px;
    overflow: auto;
    z-index: 100;
    width: 100%;
    display: none;
}

.selectbox .opciones.active {
    display: block;
    animation: fadeIn .3s forwards;
}


@keyframes fadeIn {
    from {
        transform: translateY(-200px) scale(.5);
    }

    to {
        transform: translateY(0) scale(1);
    }
}

.selectbox .contenido-opcion {
    width: 100%;
    display: flex;
    align-items: center;
    transition: .2s ease all;
}

.selectbox .opciones .contenido-opcion {
    padding: 30px;
}

.selectbox .contenido-opcion img {
    width: 60px;
    height: 60px;
    margin-right: 30px;
}

.selectbox .opciones .contenido-opcion:hover {
    background: #213F8F;
}

.selectbox .opciones .contenido-opcion:hover .titulo,
.selectbox .opciones .contenido-opcion:hover .descripcion {
    color: #fff;
}

@media screen and (max-width: 800px) {
    .selectbox {
        width: 100%;
    }
}

/*---------------------------------------------*/

.container-qs {
    padding-top: 10rem;
}

.text-qs {
    padding: 1rem;
}

.container-qs p {
    display: inline-block;
    max-width: 1400px;
}

/*---------------------------------------------*/
.ns {
    padding-bottom: 15rem;
}

.container-ns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.item-ns {
    width: 700px;
    height: 400px;
    display: flex;
    margin-top: 1rem;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.item-ns_n {
    width: 700px;
    height: 100px;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
}

.ns-mision {
    background-image: url(/images/mision-img1.PNG);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.ns-vision {
    background-image: url(/images/vision-img1.PNG);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.item h2 {
    text-align: center;
    font-size: 24px;
}

.ns_n-1 {
    background-color: #3585ff;
    background-image: linear-gradient(132deg, #3585ff 0%, #33a0ff 100%);
}

.ns_n-2 {
    background-color: #3585ff;
    background-image: linear-gradient(132deg, #3585ff 0%, #33a0ff 100%);

}

/*---------------------------------------------*/

.contenedor-nos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-height: 1600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0rem 5rem 0rem 5rem;
    padding-bottom: 9rem;
    gap: 2rem;
}

.info-nos {
    width: 800px;
    text-align: justify;
    font-size: 17px;
    margin: 0 auto;
}

.info-nos img {
    max-width: 600px;
    height: auto;
    margin: 0 auto;
}

#div1 {
    width: 400px;
    justify-content: center;
    margin: 0 auto;
}

#div2 {
    padding: 3rem;
    position: relative;
    max-width: 400px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/images/box-nosotros.PNG);
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 2px 6px 11px -2px rgba(0, 0, 0, 0.58);
    -webkit-box-shadow: 2px 6px 11px -2px rgba(0, 0, 0, 0.58);
    -moz-box-shadow: 2px 6px 11px -2px rgba(0, 0, 0, 0.58);
}

#btn-toggle {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 15rem;
    height: 4rem;
    border-radius: 5px;
    border: 1px solid #007bff;
    font-size: 20px;
    background-color: rgba(6, 71, 146, 0);
    color: var(--blue-color);
    cursor: pointer;
    box-shadow: 2px 6px 11px -2px rgba(0, 0, 0, 0.58);
    -webkit-box-shadow: 2px 6px 11px -2px rgba(0, 0, 0, 0.58);
    -moz-box-shadow: 2px 6px 11px -2px rgba(0, 0, 0, 0.58);
}

#btn-toggle:hover {

    background-color: #007bffe1;
    color: white;
}

#misiondiv,
#visiondiv {
    margin-bottom: 10px;
}

#misiondiv h2,
#visiondiv h2 {
    font-size: 24px;
    margin-top: 0;
}

#misiondiv p,
#visiondiv p {
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
}

/*---------------------------------------------*/

.trabajo_nosotros {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
}

.trabajo-nos {
    margin: 0 auto;
    max-width: 1200px;
    border-radius: 5px;
}

.trabajo-nos h1 {
    padding: 2rem;
}

.trabajo-nos img {
    max-height: 500px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 2px 6px 11px -2px rgba(0, 0, 0, 0.58);
    -webkit-box-shadow: 2px 6px 11px -2px rgba(0, 0, 0, 0.58);
    -moz-box-shadow: 2px 6px 11px -2px rgba(0, 0, 0, 0.58);
}



/*--------------------------------------------------*/
/*tab imagenes y preguntas*/
.tab-imgd_pf {
    width: 100%;
    display: flex;
    height: auto;
    padding: 1rem 1rem;
    justify-content: center;
    align-items: center;
}

.box-tab-imgd_pf {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.box-tb {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 100px;
    margin: 0 auto;
    gap: 2rem;
}

.box-tb a img {
    width: 60px;
    margin: 0 auto;
}

.box-tb p {
    color: white;
    font-weight: 600;
}

/*.tab-inf-i {}*/

.tab-pf {
    background-color: #1988f0;
}

.tab-cont-i {
    background-color: #1465bb;
}


/*---------------------------------------------------------------*/
/*---------------------------------------------------------------*/
/*---------------------------------------------------------------*/
/*-------------------IMAGENES DIAGNOSTICAS-----------------------*/

.img_d-main {
    width: 100%;
    justify-content: center;
}

.contenedor_img_d {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro_img_d {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 1rem;

}

.intro_img_d .intro_img_d p {
    font-size: 20px;
    padding: 0rem 2rem;
    color: var(--light-color);
}

.wide-image {
    width: 800px;
}

.vertical-image {
    width: 300px;
    background-color: #f0f0f06e;
}

.info_img_d {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img_d_button {
    width: 280px;
    padding: 2rem 1rem;
    background-color: var(--fros-blue-color);
    margin: 0 auto;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;

}

.img_d_button button {
    background-color: transparent;
    border: none;
    color: inherit;
    font-size: inherit;
    cursor: pointer;
}

image-container {
    position: relative;
}

.wide-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.vertical-image {
    display: none;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .wide-image {
        display: none;
    }

    .vertical-image {
        display: block;
        max-width: 100%;
        height: auto;
    }
}

/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*--------------------FIN IMAGENES DIAGNOSTICAS--------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------HERO NOSOTROS ----------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
.mn-sp {
    height: 6rem;

}

.hero-nosotros {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    position: relative;
}

.hero-text {
    position: absolute;
    height: auto;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    /* Alinea el contenido hacia la parte inferior */
    justify-content: center;
    /* Centra horizontalmente */
    padding-bottom: 5rem;
    /* Agrega espacio entre el borde inferior y el texto */
}

.hero-text h2 {
    font-size: 30px;
    color: rgb(255, 255, 255);

}

/*-----------------------------------------------------------------*/
/*CONTACTENOS*/
.sub-section {
    width: 100%;
    height: auto;
    padding: 2rem 0rem;
}

.sub-content {
    width: 100%;
    background-color: var(--blue-color);
    height: 180px;
    display: flex;
}

.sub-btn-content {
    flex: 75%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 1.5rem;
}

.sub-btn-content p {
    color: white;
    font-size: 20px;
}

.sub-btn-content img {
    width: 25px;
}

/*.sub-btn-content a {}*/

.sub-btn-content a img {
    width: 20px;
}

.sub-redes-content {
    flex: 25%;
    background-color: #003781;
    border-bottom-left-radius: 150px;
}

.btn-sub {
    color: white;
    font-size: 16px;
    padding: 0.7rem 2rem;
    border-radius: 5px;
    background-color: #003781;
}

.sub-redes-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sr-box {

    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.tx-sr-box {
    font-size: 15px;
    padding-left: 1rem;
    padding-bottom: 1rem;
}

.tx-sr-box p {
    color: white;
}

.redes-sr-box {
    display: flex;
    justify-content: space-between;
}

.redes-sr-box a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-decoration: none;
    color: rgb(255, 255, 255);
    margin: 0 5px;
    background-color: var(--blue-color);
}

.redes-sr-box a img {
    width: 15px;
}

@media screen and (max-width: 1000px) {
    .sub-content {
        width: 100%;
        background-color: var(--blue-color);
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .sub-redes-content {
        flex: 25%;
        background-color: #003781;
        border-bottom-left-radius: 0px;
        border-top-right-radius: 200px;
    }

    .sub-btn-content {
        padding: 2rem 0rem;
    }
}

@media screen and (max-width: 600px) {
    .sub-btn-content {
        display: flex;
        flex-direction: column;
        
    }
    .sub-btn-content p {
text-align: center;
        
    }

    .sub-btn-content img {
    display: none;
    }
}

/*-----------------------------------------------------------------*/




.asociacion-btn {
    display: flex;
    justify-content: center;

}

.contenedor-btn-asociacion {
    padding: 5rem;
}

.btn-icontext {
    background-color: var(--blue-color);
    padding: 2rem;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    border-radius: 7px;
    font-size: 20px;
}

.btn-icontext:hover {
    background-color: var(--fros-blue-color);
}

.btn-icontext img {
    width: 100px;
}

.intro-p-i {
    text-align: center;
}

/* ----------------------------------------------------------------------- */

/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */

.card {
    width: 100%;
    margin: 0 auto;
    width: 300px;
    height: 390px;
    margin-top: 0.2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image {
    width: 300px;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: auto;
    display: block;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-text {
    padding: 10px;
}

.card-text h3 {
    margin: 10px 5px;
    font-size: 17px;
    font-weight: bold;
    color: #333;
}

.card-text p {
    margin: 2px;
    font-size: 14px;
    color: #666;
}

.card button {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    border: none;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    align-self: flex-end;
}

.card-button:hover {
    background-color: #555;
}

.nuestro_equipo {
    margin-bottom: 7rem;
}

/* pyf carousel publicidad */

.carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.carousel img {
    flex: 0 0 100%;
    height: auto;
}

.wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
    gap: 10rem
}

.btn-agendar_wpp {
    background-image: url(/images/logo.png);
    background-position: center;
    background-size: cover;
    padding: 3rem 10rem;
    margin: 0 auto;
}

.form {
    flex: 1 0 25%;
    background-color: rgb(247, 247, 247);
}

.form h2 {
    font-size: 24px;
    margin-top: 0;
}

.contact-info ul {
    list-style: none;
    padding-left: 0;
    padding: 10rem 2rem;
}

.contact-info li {
    margin-bottom: 5px;
    font-size: 20px;
}

.wrapper form {
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    padding: 30px;
}

.wrapper label {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0px;
}

.wrapper input[type="text"],
.wrapper input[type="tel"],
.wrapper input[type="email"],
.wrapper select,
.wrapper textarea {
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 10px;
}

.wrapper select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23444444' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-position: right 10px center;
    background-repeat: no-repeat;
}

.wrapper input[type="checkbox"] {
    margin-right: 5px;
}

.name {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.doc-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.birthdate1 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.birthdate {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 1rem;
}

.phone {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.submit {
    margin-top: 20px;
}

.submit button[type="submit"] {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

.wrapper button[type="submit"]:hover {
    background-color: #0056b3;
}

@media screen and (max-width: 768px) {
    .form {
        flex: 1 0 100%;
    }
}

@media screen and (max-width: 480px) {
    .wrapper label {
        font-size: 16px;
    }

    .wrapper input[type="text"],
    .wrapper input[type="tel"],
    .wrapper input[type="email"],
    .wrapper select,
    .wrapper textarea {
        font-size: 14px;
        padding: 6px;
    }

    .wrapper button[type="submit"] {
        font-size: 16px;
        padding: 8px 16px;
    }
}

@media screen and (max-width: 768px) {
    .noticias-pyf {
        flex-direction: column;
    }

    .noticia-pyf {
        flex-basis: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */

.encabezado-convenios {
    width: 80%;
    margin: 0 auto;
}

.imagenes-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.imagenes-container img {
    width: 200px;
    height: 180px;


}

@media (max-width: 768px) {
    .imagenes-container img {
        width: 150px;
        height: 420px;

    }
}

/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ------------------------------------------------- */
/* ----------------------------------------------------------------------- */

#resultados {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ccc;
}

/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------MANTENIMIENTO------------------------------------- */
/* ----------------------------------------------------------------------- */

.mantenimiento {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5rem;
}

.contenedor-mantenimiento {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 1400px;
    padding: 0rem 5rem 5rem 5rem;
}

.text-mantenimiento {
    flex: 1;
    margin: 0 auto;
}

.text-mantenimiento p {
    font-size: 18px;
    text-align: justify;
}

.text-mantenimiento h1 {

    text-align: center;
}

.text-mantenimiento span {
    font-size: 18px;
    text-align: center;
}

.img-mantenimiento {
    flex: 1;
    display: flex;
    justify-content: center;
}

.text-sub-mantenimiento {
    display: flex;
    justify-content: center;
    padding: 1.5rem;
}

@media (max-width: 767px) {
    .contenedor-mantenimiento {
        flex-direction: column;
        padding: 0rem 2rem 2rem 2rem;

    }
}

/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------INICIO CONTACTENOS------------------------------------- */
/* ----------------------------------------------------------------------- */

.contenedor-contactenos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1500px;
}

.formulario-contactenos {
    width: 400px;
    background-color: #007bff;
}

.formulario-contactenos form {
    padding: 5rem;
}

.formulario-contactenos .label {
    display: block;
    margin-bottom: 10px;
}

.formulario-contactenos input[type="text"],
.formulario-contactenos input[type="email"],
.formulario-contactenos textarea {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.formulario-contactenos input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.formulario-contactenos input[type="submit"]:hover {
    background-color: #3e8e41;
}

.formulario-contactenos .error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

.formulario-contactenos label {
    display: block;
    margin-bottom: 10px;
}

.formulario-contactenos input[type="text"],
.formulario-contactenos input[type="email"],
.formulario-contactenos textarea {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.formulario-contactenos input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.formulario-contactenos input[type="submit"]:hover {
    background-color: #3e8e41;
}

.formulario-contactenos .error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* -------------Modal--------------- */
/* Estilos para el modal */
.modal {
    display: none; /* Por defecto, oculta el modal */
    position: fixed;
    z-index: 188888;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5); /* Fondo oscuro semi-transparente */
  }
  
  /* Estilos para el contenido del modal */
  .modal-contenido {
    background-color: #fefefeda;
    margin: 5% auto;
    border: 1px solid #888;
    width: 80%;
    text-align: center; 
  }

  .modal-contenido img {
    max-width: 100%; /* La imagen no será más ancha que su contenedor */
    height: auto; /* Mantiene la proporción de la imagen */
    display: block; /* Evita espacios debajo de la imagen */
    margin: 0 auto; /* Centra la imagen horizontalmente */
  }
  
  /* Estilos para el botón de cerrar */
  .cerrar {
    float: right;
    cursor: pointer;
    font-size: 40px;
  }


/* ----------IMAGENES DIAGNOSTICO------------------ */
.img-d_btn_c {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0rem 2rem 0rem;
}

.img-g_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: #003781;
}

.img-g_btn img {
    width: 30px;
    margin-left: 10px;
}

.img-g_btn h2 {
    color: white;
    font-size: 18px;
}

/* ----------------------------------------------------------------------- */
/* ----------------------FIN CONTACTENOS------------------------------------- */
/* ----------------------------------------------------------------------- */

.lifted-div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    background-color: blue;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5), 0 8px 16px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
}

/* ----------------------------------------------------------------------- */
/*  --------------  MEDIA QUERYS ------------*/
/* ----------------------------------------------------------------------- */

@media screen and (max-width: 450px) {
    .box-servicio {
        width: 300px;
    }

    .contact {
        width: 80%;
        background-color: #000;
    }

    .contact-right {
        min-width: 60%;
    }

    .contact-info-m {
        height: 8%;
        width: 100%;
    }

    .contact-info-m p {
        font-size: 10px;
    }

    .navbar-brand img {
        width: 160px;
    }

    .mn-sp {
        height: 5rem;
    }
}

@media screen and (max-width: 600px) {
    .contenido-about {
        flex-direction: column;
        width: 65%;
    }

    .hero-text h2 {
        font-size: 22px;
    }
}

@media(min-width: 768px) {
    .header-inner-left h1 {
        font-size: 5.7rem;
    }

    .info-capacidad {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .grid-contact {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-row-gap: 10rem;
    }
}

@media (max-width: 768px) {
  .grid {
    display: flow;
  }
}

@media(min-width: 992px) {
    .header-inner {
        padding-top: 3.2rem;
    }

    .header-inner .container {
        grid-template-columns: 545px auto;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: calc(100vh - 32px);
        position: relative;
    }

    .header-inner-left {
        text-align: left;
    }

    .header-inner-left .text {
        margin-left: 0;
    }

    .header-inner-left .btn-group {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }

    .header-inner-right img {
        position: absolute;
        bottom: 0;
        right: 0;
        padding-left: 5rem;
    }
}

@media (max-width: 1199px) {

    .agendar-bt {
        padding: 1rem;
    }

    .esp-cards {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .especialidades-cards {
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
    }
}

@media(min-width: 1200px) {

    .ventana-hidden {
        display: flex;
        flex-direction: row;
        padding: 5rem;
    }

    .search-bar {
        margin-left: 5.5rem;
        visibility: hidden;
    }

    .search-inner-right {
        width: 100%;
        visibility: hidden;
    }

    .search-inner-right img {
        padding-left: 0;
        max-width: 647px;
        visibility: hidden;
    }

    .search-control {
        width: 150px;
        visibility: hidden;
    }

    .header-inner-right {
        width: 100%;
    }

    .header-inner-right img {
        padding-left: 0;
        max-width: 647px;
    }

    .contact .container {
        grid-template-columns: auto 514px;
    }
}

 
 /*//// Vacantesimg ///*/

 .vacantesimg img

 { 
    height: auto; 
    width: 350px;
    transition: 0,5s;
    object-fit: cover;
 }

 .vacantesimg img:hover {
    transform: scale(1.2);
 }

 .vacantesimg 

 {
    display: grid;
    margin: 15px;
    justify-content: center;
 }

 
 