/*
Theme Name: Simalink
Theme URI: https://maizpira.com/
Author: Rolando Ramos Torres
Author URI: https://rolandoramostorres.com/
Description: Simalink
Version: 1.0
License: GNU General Public License v3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
Text Domain: simalink
*/

/**
*	Colores
*/
:root {
    --color-lightgreen: #9AC31C;
    --color-lightgreen-alpha: rgba(154,195,28,0.35);
    --color-green: #588904;
    --color-darkgreen: #1e4a00;
    --color-darkgreen-alpha: rgba(30,74,0,0.7);

	--color-darkgrey: #868686;
    --color-lightgrey: #D0D0D0;
    --color-lightgrey2: #E5E5E5;
    --color-lightgrey3: #CCCDD1;

    --color-grey: #616160;

    --color-text: var(--color-darkgrey);
}

.lightgreen{
    color:var(--color-lightgreen);
}

/*********************************
*
*			BASIC HTML
*
*********************************/
body {
    overflow: hidden;
    color: var(--color-text);
    font-weight: 200;
}


h1,h2,h3,h4{

}

body:not(.device-touch) a {
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.subtitle-split{
    font-weight: 200;
    margin-bottom:10px;
}
.subtitle-split strong{
    font-weight: 600;
}

/*********************************
*
*			PRELOADER
*
*********************************/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    /* change if the mask should have another color then white */
    z-index: 100000;
    /* makes sure it stays on top */
}

#status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    /* centers the loading animation horizontally one the screen */
    top: 50%;
    /* centers the loading animation vertically one the screen */
    background-image: url(assets/images/preloader-heartbeat.gif);
    /* path to your loading animation */
    background-repeat: no-repeat;
    background-position: center;
    margin: -100px 0 0 -100px;
    /* is width and height divided by two */
}

/*********************************
*
*			CLASES GENERALES
*
*********************************/
.clearfix{
    clear:both;
}

.btn-primary{
    color:white;
}
.btn-light,
.btn-light:hover{
    color:var(--color-green);
}

.vcenter{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* container-fluid no margins */
.fluid-no-margin [class*="col-"] {padding-left:0;padding-right:0}
.fluid-no-margin .row {margin-left:0;margin-right:0}
.fluid-no-margin .container-fluid {width:100%;max-width:none;padding:0;}


/* topmenu
*/
.topmenu{
    position: -webkit-sticky; /* Safari */
    position: sticky;
    z-index: 20;
    top: 0px;    /* WP Adminbar Desktop Height*/
    display:none;
}

/** menu mobile
*/
#menu-mobile{
    position: -webkit-sticky; /* Safari */
    position: sticky;
    z-index: 99999;
    top: 30px;
}
#menu-mobile .navbar-brand{

}
#menu-mobile .navbar-brand img{
    width: 120px;
    height: auto;
}
#menu-mobile .navbar-logo{
    margin:0;
    padding:0;
}
#menu-mobile .navbar-logo img{
    width: 80px;
    height: auto;
}

#menu-mobile li.active a.nav-link{
    font-weight: 600;
}
#menu-mobile a.nav-link{
    color: white;
}

/** pedir cita
*/

.pedir-cita{
    position: -webkit-sticky; /* Safari */
    position: sticky;
    z-index: 20;
    top: 0px;    /* WP Adminbar Desktop Height*/
}


.pedir-cita .desktop{
    display:none;
}
.pedir-cita .mobile{
    display:block;
}
.pedir-cita .mobile a{
    display:block;
    width: 100%;
    background-color: var(--color-darkgrey);
    padding: 5px 15px;
    text-align: right;
    color:white;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.85em;
}
.pedir-cita .mobile a i{
    margin-left: 10px;
}
/** menu primario
*/
#menu-primario{
    display: none;
}


/** Responsive Video
*/
div.video-embed {
	position:relative;
	padding-bottom:56.25%;
	padding-top:0px;
	height:0;
	overflow:hidden;
}

div.video-embed iframe{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

/** bxslider
*/
.bx-wrapper .bx-viewport {
	left: 0px !important;
	border: none !important;
	box-shadow: none !important;
}
.bx-wrapper .bx-viewport{
    background: transparent;
}
/* next */
.bx-wrapper .bx-next {
    right: 0px;
    background: url(assets/vendor/bxslider/images/controls-default.png) no-repeat -43px 0px;
}
.bx-wrapper .bx-next:hover {
    background: url(assets/vendor/bxslider/images/controls-default.png) no-repeat -43px -32px;
}
/* prev */
.bx-wrapper .bx-prev {
    left:0px;
    background: url(assets/vendor/bxslider/images/controls-default.png) no-repeat 0 0px;
}
.bx-wrapper .bx-prev:hover {
    background: url(assets/vendor/bxslider/images/controls-default.png) no-repeat 0 -32px;
}

.bx-wrapper .bx-pager.bx-default-pager a{
    background: var(--color-darkgrey);
}
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active{
    background: var(--color-lightgreen);
}


/*********************************

        IMG-TEXT

*********************************/
.img-text h2, .img-text p, .img-text ul{
    text-indent: -9999px;
    display: none;
}
/*********************************

        HEADER

*********************************/

header.page-header{
    display: block;
    background-position: right center;
    width: 100%;
    text-indent: -9999px;
    height: 150px;
    background-size: auto 120%;
}



/*********************************

        SLIDERS

*********************************/

#slider-top img{
    width: 100%;
    height: auto;
}

#slider-top .bx-wrapper{
	overflow:hidden;
	margin: 0px;
}
/* move pagination*/
#slider-top .bx-wrapper .bx-pager{
    position:absolute;
    bottom:7%;
}
/*style buttons*/
/* next */
#slider-top .bx-wrapper .bx-next {
    right: 30px;
}
/* prev */
#slider-top .bx-wrapper .bx-prev {
    left: 30px;
}



/* derechos
*/


.slider_derechos_y_deberes {
    margin-left:75px;
    margin-right: 75px;
}

.slider_derechos_y_deberes .carousel-control-prev{
    margin-left:-50px;
    color:var(--color-lightgreen);
}

.slider_derechos_y_deberes  .carousel-control-next {
    margin-right:-50px;
    color:var(--color-lightgreen);
}

.slider_derechos_y_deberes .carousel-item {
    padding:10px;
}
.slider_derechos_y_deberes .carousel-item img{
    -webkit-box-shadow: 0px 0px 5px 3px rgba(211,211,211,0.71);
    box-shadow: 0px 0px 5px 3px rgba(211,211,211,0.71);
    border:1px solid #D3D3D3;
}

/*********************************

        SEARCH

*********************************/

.search-page h1{
    font-weight: 300;
    margin-bottom: 2em;
}
.search-page h1 strong{
    color:var(--color-green);
    font-style: italic;
}
.search-page .search-result{
    margin-bottom:1.75em;
}
.search-page .search-result h2{
    font-weight: 200;
    margin-bottom:0;
    color:var(--color-lightgreen);
}
.search-page .search-result .abstract{
    font-weight: 200;
    color:var(--color-darkgrey);
}


/*********************************

        BLOG

*********************************/
/* search */

.input-group input[type="search"]{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group button{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* blog-item -> list*/
.blog-item{
    margin:0 0 5em 0;
    padding:0.75em;
    border:1px solid var(--color-lightgreen-alpha);
    -webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.blog-item a{
    color:var(--color-lightgreen);
}
.blog-item a:hover{
    color:var(--color-lightgreen);
}

.blog-item:hover{
    background:var(--color-lightgreen);
    color:white;
    border:1px solid var(--color-lightgreen);
}
.blog-item:hover a{
    color:white;
}
.blog-item:hover a:hover{
    color:var(--color-green);
}
.blog-item:hover img{
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.blog-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blog-item ul li {
    font-size:0.75em;
    font-weight: 300;
    text-transform: uppercase;
}
.blog-item h2{
    margin: 0.25em 0 0.5em 0;
    font-size:1.25em;
    font-weight: 200;
    display:block;
    height: 3.15em;
    overflow: hidden !important;
    line-height: 1em;
}

/* blog-item-single -> single-page*/
.blog-item-single{
    padding:0 0 5em 0;
}
.blog-item-single .entry-title{
    margin-bottom: 1em;
}
.blog-item-single .entry-title h2{
    color:var(--color-lightgreen);
    font-size:2em;
    font-weight: 200;

}
.blog-item-single .entry-image{
    border: 1px solid var(--color-darkgrey);
    margin-bottom: 2em;
}
.blog-item-single ul.entry-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 1em 0;
}
.blog-item-single ul.entry-meta li {
    font-size:0.75em;
    font-weight: 300;
    text-transform: uppercase;
    display: inline;
    padding: 0 10px;
    border-left: solid 1px var(--color-lightgrey);
}
.blog-item-single ul.entry-meta li:first-child{
    border-left: none;
    padding-left:0;
}

.blog-item-single .entry-goback{
    display: block;
    text-align: right;
    margin-top:2em;
}


/* aside */
.blog-page aside{
    padding:0 1em 0 1.5em;
    color:var(--color-lightgrey);
}

.blog-page img{
    max-width:100%;
    height: auto;
}

.alignleft,.alignright,.aligncenter {
    margin-bottom:1em;
}
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption-text{
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.75em;
    margin-top:0.5em;
    color:var(--color-green);
}

.blog-page aside h3{
    font-size:1em;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-lightgreen);
    border-bottom:1px solid var(--color-lightgreen);
    margin-bottom: 2em;
}

/* widget*/
.blog-page aside .widget{
    padding:0 0 5em 0;
}
.blog-page aside .widget a{
    font-weight: 300;
    color: var(--color-lightgrey);
}
.blog-page aside .widget a:hover{
    color: var(--color-green);
}
.blog-page aside .widget img{
    width:100%;
    height: auto;
}

/** calendar
*/
#wp-calendar{ width: 100%; }

/* Tag Cloud
-----------------------------------------------------------------*/
.blog-item-single .entry-tags-title h3{
    color:var(--color-lightgreen);
    font-weight: 200;
    font-size: 1.5em;
}
.tagcloud {

}
.tagcloud a {
	display: block;
	float: left;
	margin-right: 4px;
	margin-bottom: 4px;
	padding: 3px 6px;
	border: 1px solid var(--color-lightgreen);
	font-size: 13px !important;
	color: var(--color-lightgreen) !important;
    border-radius: 2px;
    text-decoration: none;
}
.tagcloud a:hover {
	border-color: var(--color-lightgreen) !important;
    background: var(--color-lightgreen) !important;
    color:white!important;
}


/*********************************

        FRONTPAGE

*********************************/
/** SERVCICIOS
*/
#servicios{
    padding:25px 0;
    background: #cccdd1;
    color:white;
    text-align: center;
}
#servicios h2{
    font-size: 1.50em;
    margin-bottom:2em;
    font-weight:400;
}
#servicios h2 strong{
    font-weight:700;
}

#servicios .servicio h3{
    font-size: 1em;
    margin:0;
    font-weight:200;
}
#servicios .servicio{
    width: 70%;
    margin:0 auto;
}
#servicios .servicio img{
    margin:0 auto;
}
#servicios .servicio a{
    display:block;
}

#servicios .bx-pager.bx-default-pager{
	display: none;
}

#servicios .bx-wrapper{
	overflow:hidden;
    margin: 0px;
}
#servicios .bx-wrapper img{
    margin: 0 auto;
}
/*style buttons*/
/* next */
#servicios .bx-wrapper .bx-next {
    background: url(assets/vendor/bxslider/images/controls-white.png) no-repeat -43px 0px;
}
#servicios .bx-wrapper .bx-next:hover {
    background: url(assets/vendor/bxslider/images/controls-white.png) no-repeat -43px -32px;
}
/* prev */
#servicios .bx-wrapper .bx-prev {
    background: url(assets/vendor/bxslider/images/controls-white.png) no-repeat 0 0px;
}
#servicios .bx-wrapper .bx-prev:hover {
    background: url(assets/vendor/bxslider/images/controls-white.png) no-repeat 0 -32px;
}

/** TESTIMONIOS
*/
#testimonios{
    padding:40px 0 10px 0;
}
#testimonios h2{
    color:white !important;
    margin-bottom: 0 !important;
}
#testimonios .testimonio{
    padding:20px 50px;
}

#testimonios .testimonio div.contenido{
    color:white;
    font-weight: 200;
    text-align: right;
    padding-right:10px;
}
#testimonios .testimonio span.author{
    color:white;
    font-weight: 500;
    text-align: right;
    display: block;
    margin-top: 20px;
    text-transform: uppercase;
}
#testimonios .testimonio span.source{
    color:white;
}
#testimonios .testimonio img{
    width: 100%;
    height: auto;
}

#testimonios .estrellas{
    margin-bottom: 1em;
}
#testimonios .estrellas ul{
    list-style: none;
}
#testimonios .estrellas ul li{
    display: inline-block;
    margin:0 3px;
    color:white;
}


/** COPY
*/
#home-copy{
    padding:0px;
    background: white;
}

/** ALIANZAS
*/
#alianzas{
    padding:0 0 25px 0;
    background: white;
    text-align: center;
}
#alianzas h2{
    color:var(--color-lightgreen);
    font-size: 1.50em;
    margin-bottom:2em;
    font-weight:400;
}
#alianzas h2 strong{
    font-weight:700;
}

#alianzas .servicio h3{
    font-size: 1em;
    margin-top:10px;
    font-weight:200;
}

#alianzas .bx-pager.bx-default-pager{
	display: none;
}

#alianzas .bx-wrapper{
	overflow:hidden;
    margin: 0px;
}
#alianzas .bx-wrapper img{
    margin: 0 auto;
}

/*********************************

        SIMALINK PAGE

*********************************/

.simalink-section {
    padding:2em 1em;
}

.simalink-section h1, .simalink-section h2, .simalink-section h3{
    text-transform: uppercase;
}
.simalink-section h1{
    font-weight: 700;
}
.simalink-section h2.title,
.simalink-section h1.title{
    font-weight: 600;
    font-size:3em;
}
.simalink-section h2.title-plus-strong{
    font-weight: 200;
}
.simalink-section h2.title-plus-strong strong{
    font-weight: 600;
}
.simalink-section h3.subtitle{
    font-weight: 200;
    font-size:1.7em;
}
.simalink-section h3.subtitle strong{
    font-weight: 600;
}


.simalink-section .bottom-space{
    margin-bottom: 40px;
}

.simalink-section .contenido ol{
    list-style: none;
    margin:0;
    padding:0;
}
.simalink-section .contenido ol li {
    counter-increment: item;
}

.simalink-section .contenido ol li:before {
    content: counter(item) '.';
    color: var(--color-lightgreen);
    margin-right: 0.5em;
    display: inline-block;
    font-weight: 400;
}
.simalink-section .contenido ul{
    list-style: none;
    margin:0;
    padding:0;
}
.simalink-section .contenido ul li{
    background: transparent url("assets/images/li-servicio.png") no-repeat left 10px;
    padding:0.25em 0 0.25em 1.5em;
}

.simalink-section .contenido ul.download li{
    padding:0.25em 0 0.25em 0;
}

.simalink-section .contenido ul.download li a{
    display:inline-block;
    padding-left:35px;
    background: transparent url("assets/images/li-download.png") no-repeat left 0px;
    min-height: 28px;
}


.simalink-section .bg-dots-green{
    background-image: url("assets/images/bg-dots-green.png");
    background-repeat: no-repeat;
}
.simalink-section .bg-dots-white{
    background-image: url("assets/images/bg-dots-white.png");
    background-repeat: no-repeat;
}
.simalink-section .bg-dots{
    background-position: center center;
}

.green-section {
    background: var(--color-lightgreen);
}
.grey-section {
    background: var(--color-lightgrey3);
}

.green-section .contenido ul li,
.grey-section .contenido ul li{
    background: transparent url("assets/images/li-servicio-blanco.png") no-repeat left 10px;
}

.section-text-white,
.section-text-white h1,
.section-text-white h2,
.section-text-white h3,
.section-text-white h4
{
    color:white;
}

.section-line-bottom{
    /* border-bottom: solid 1px var(--color-lightgrey); */
}


.simalink-section .contenido-generico h1,
    .simalink-section .contenido-generico h2,
    .simalink-section .contenido-generico h3{ margin-bottom:1em;}
.simalink-section .contenido-generico h1{ font-size:3em;}
.simalink-section .contenido-generico h2{ font-size:2em;}
.simalink-section .contenido-generico h3{ font-size:1.5em;}
.simalink-section .contenido-generico h4{ font-size:1em;}
.simalink-section .contenido-generico p{
    margin:20px 0;
}



/*********************************

        ACERCA DE NOSOTROS PAGE

*********************************/
#page-acerca-de-nosotros .image-title{
    position:relative;
    display: block;
    margin-bottom: 1em;
}
#page-acerca-de-nosotros .image-title img{
    margin-bottom: 2em;
}
#page-acerca-de-nosotros .image-title h3{
    position: absolute;
    bottom:0;
    left:0;
    z-index: 10;
}
#page-acerca-de-nosotros .contenido h3{
    color: var(--color-lightgreen);
}

#page-acerca-de-nosotros .team_member{
    padding:2em 0 0 0;
    cursor: pointer;
    border:none;
    background-color: white;
}
#page-acerca-de-nosotros .team_member h3.nombre,
#page-acerca-de-nosotros .team_member h4.cargo{
    text-align: center;
    font-size: 1.5em;
    line-height: 1em;
}
#page-acerca-de-nosotros .team_member h3.nombre{
    font-weight: 200;
    text-transform: none;
    margin-top:2em;
}
#page-acerca-de-nosotros .team_member h4.cargo{
    font-weight: 600;
}
#page-acerca-de-nosotros .team_member div.descripcion{
    padding:1em;
    min-height: 200px;
}
#page-acerca-de-nosotros .team_member div.dots img{
    margin:1em auto;
}

#page-acerca-de-nosotros .team_member:hover{
    background:var(--color-lightgrey);
}
#page-acerca-de-nosotros .team_member:hover div.descripcion{
    background:var(--color-lightgreen);
    color:white;
}


.estadosFinacieros .contenido{margin-bottom:3em;}

/*********************************

        FORMULARIOS

*********************************/

.formulario input[type="text"],
.formulario input[type="email"],
.formulario input[type="number"]{
    width: 100%;
    color:var(--color-darkgrey);
}
.formulario textarea{
    width: 100%;
    height: 150px;
    color:var(--color-darkgrey);
}
.formulario input[type="text"]::placeholder,
.formulario input[type="email"]::placeholder,
.formulario input[type="number"]::placeholder,
.formulario textarea::placeholder{
    color:var(--color-lightgrey);
    font-weight: 200;
}
.formulario .form-group{
    margin-bottom: 1rem !important;
}

.formulario input.inputfile {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.formulario .acepto a {
    color:white;
    text-decoration: underline;
}
.formulario .acepto a:hover {
    color:var(--color-darkgrey);
}

.grey-section label.inputfilelabel,
.grey-section input[type="submit"]
{
    color:var(--color-darkgrey);
}

.formulario input[type=checkbox] {
    -webkit-appearance: button;
    -moz-appearance:    button;
    appearance:         button;
    border: double 2px #fff;
    white-space: nowrap;
    overflow:hidden;
    width:15px;
    height:15px;
}

.formulario input[type=checkbox]:checked {
    border: double 1px #fff;
    background: transparent url('assets/images/checkbox-bg.png') no-repeat center center;
}

.formulario input[type=submit].btn-secondary {
    color:white !important;
}
.formulario input[type=submit].btn-light {
    color:var(--color-lightgreen);
}
.formulario input[type=submit]{
    padding: 1px 30px !important;
    text-transform: uppercase;
    font-size: 1em;
}
/*********************************

        NUESTRA SEDE PAGE

*********************************/


#page-nuestra-sede .item-slide img{
    margin:0 auto;
}

/*********************************

        PAGE // SERVICIO

*********************************/
#page-service h2, #page-service h3{

}
#page-service h3{
    margin-bottom: 0;
}
#page-service .service-image{
    margin-bottom: 50px;
}
#page-service .back-button{
    margin-top: 20px;
}

/*********************************

        PAGE // SERVICIOS

*********************************/

#page-servicios .cat-filter{
    display: block;
    padding-bottom: 10px;
    -webkit-transition: none;
	-o-transition: none;
	transition: none;
}
#page-servicios .cat-filter .title,
#page-servicios .cat-filter .description{
    color:var(--color-grey);
}
#page-servicios .cat-filter:hover{
    text-decoration: none !important;
}
#page-servicios .cat-filter:hover .title,
#page-servicios .cat-filter:hover .description,
#page-servicios .cat-item.active .title,
#page-servicios .cat-item.active .description
{
    color: white;
}


#page-servicios .cat-item:hover{
    background: var(--color-lightgreen);
}
#page-servicios .cat-item:hover .title{
    color:white;
}
#page-servicios .cat-item.active{
    background: var(--color-lightgreen);
}

#page-servicios .cat-item{

}
#page-servicios .cat-item img{
    margin: 1em auto;
}
#page-servicios .cat-item .title{
    text-align: center;
    font-weight: 300;
    text-transform: none;
    font-size: 1.5em;
    min-height: 3em;
}
#page-servicios .cat-item .description{
    text-align: justify;
    margin:1em auto;
}

#page-servicios .todos{
    margin:2em auto;
}
#page-servicios .todos .btn{
    border-radius: 0px !important;
}

#page-servicios .service-item{
    text-align: center;
}
#page-servicios .service-item .title{
    font-weight: 300;
    text-transform: none;
    font-size:1.25em;
}
#page-servicios .service-item .title{
    min-height:2.5em;
}

/*********************************

       PAGE // PARA PACIENTES

*********************************/
#page-para-pacientes .deber-title,
#page-para-pacientes .derecho-title{
    text-align: center;
}
#page-para-pacientes .deber-title,
#page-para-pacientes .derecho-title,
#page-para-pacientes .deberes-derechos-title{
    margin-bottom: 1em;
}
#page-para-pacientes .deberes-derechos-copy{
    margin: 2em auto;
}
#page-para-pacientes .green-dots{
    margin-bottom: 2em;
}


#politica-de-calidad .ajustar-derecha{
    margin-right:7em;
}

/*********************************

       PAGE // ATENCIÓN EXCEPCIONAL

*********************************/
#page-atencion-excepcional .capsula-title{
    margin-bottom: 1em;
}


#page-atencion-excepcional .capsula-item .thumbnail { position: relative; }
#page-atencion-excepcional .capsula-item .thumbnail img{
    width:100%;
    height: auto;
}
a.video-play-icon {
    position: absolute;
    display: block;
    background: url('assets/images/youtube-play-icon.png') no-repeat center center;
    background-size:100%;
    height: 60px;
    width: 80px;
    top: 50%;
    left: 50%;
    margin: -30px 0 0 -40px;
    text-indent: -9999px;
}
a.video-play-icon-white {
    position: absolute;
    display: block;
    background: url('assets/images/youtube-play-icon-white.png') no-repeat center center;
    background-size:100%;
    height: 60px;
    width: 80px;
    top: 50%;
    left: 50%;
    margin: -30px 0 0 -40px;
    text-indent: -9999px;
}

#testimonios a.video-play-icon-white, #testimonios a.video-play-icon {
    height: 40px;
    width: 50px;
    top: 75%;
    margin: -20px 0 0 -25px;
}

#testimonios h2{
    text-align: center;
    font-size: 1.50em;
    font-weight:400;
    margin:0 auto 2em auto;
    color: var(--color-green);
}

#testimonios h2 strong{
    font-weight:700;
}

#page-atencion-excepcional .capsula-item .contenido h3{
    font-weight: 200;
}
#page-atencion-excepcional .capsula-item .contenido h4{
    font-weight: 600;
}
#page-atencion-excepcional .capsula-item .contenido h3,
#page-atencion-excepcional .capsula-item .contenido h4{
    text-align: center;
    text-transform: none;
    font-size: 1.5em;
    margin:0;
}
#page-atencion-excepcional .capsula-item .contenido .texto{
    font-size: 1em;
    line-height: 1.25em;
    text-align: justify;
    margin-top:1em;
}
#page-atencion-excepcional .capsula-item .contenido{
    color: var(--color-lightgrey2);
    margin:1em auto 0 auto;
    min-height:260px;
    width: 65%;
}

#page-atencion-excepcional .capsula-item:hover{
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    background: var(--color-lightgrey);
    cursor: pointer;
}

#page-atencion-excepcional .capsula-item:hover .contenido{
    color: var(--color-darkgrey);
}

#page-atencion-excepcional .bx-wrapper .bx-next {
    right: 0;
    top:75%;
}
#page-atencion-excepcional .bx-wrapper .bx-next:hover {
    background: url(assets/vendor/bxslider/images/controls-white2.png) no-repeat -43px -32px;
}
#page-atencion-excepcional .bx-wrapper .bx-prev {
    left:0;
    top:75%;
}
#page-atencion-excepcional .bx-wrapper .bx-prev:hover {
    background: url(assets/vendor/bxslider/images/controls-white2.png) no-repeat 0 -32px;
}

#pilares-porlavida .contenido strong{
    font-weight: 600;
    color:var(--color-lightgreen);
}

#pilares-porlavida .green-dots{
    display:none;
}

/* BOX HOVER*/

.box_hover {
    position: relative;
    overflow: hidden;
}
.box_hover img {
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width:100%;
	height: auto;
}
.box_hover:hover img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.box_hover .overlay {
    text-align: center;
    white-space: nowrap;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    color: #FFF;
    background: transparent;
    opacity:0;
    -webkit-transition: opacity .3s ease-out;
    -moz-transition: opacity .3s ease-out;
    -o-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out;
    overflow:visible;
}
.box_hover:hover .overlay {
	background-size: cover;
	background-blend-mode: multiply;
    opacity:0.85;
}



/*********************************

        PAGE // CONTACTANOS

*********************************/

.atencion-publico{
    color: #908F94;
    line-height: 1.25em;
}
.atencion-publico .ajustar-arriba{
    margin-top:2rem!important;
}
.atencion-publico .ajustar-arriba-mobile{
    margin-top:2rem!important;
}
.atencion-publico h2.subtitle-split{
    font-size:1.25em;
    font-weight: 400;
    color:#6F6F6E;
}
.atencion-publico strong{
    font-size:1.25em;
    font-weight: 400;
    line-height: 1em;
    color:#6F6F6E;
}
.atencion-publico .low-strong strong{
    color:inherit;
}
.atencion-publico h2.subtitle-split strong{
    color:var(--color-lightgreen);
    font-size: 1.5em;
}
.atencion-publico h2.title strong{
    font-size: 1em;
}
.atencion-publico .eps-telefonica{
    margin:2.25em 0;
}
.atencion-publico span.text-green{
    color:var(--color-lightgreen);
}


/*********************************

        ASIDE

*********************************/


/*********************************

        FOOTER

*********************************/

/** Suscribe
*/
.suscribe{
    width:calc( (100vw/24) * 21.2 );
    margin: 0 auto;
    display:block;
    padding:1.25em 0;
}
.suscribe .contenido{
    background: var(--color-lightgreen);
    border-radius: 10px;
    padding:1.15em 0;
    margin:2em 0;
}
.suscribe .logo{
    width: 110px; height: 87px;
    position: absolute;
    left:15px;
    top:-28px;
    background: transparent url("assets/images/white-dot-20px.png") repeat-y left top;
    background: url(assets/images/footer/white-dot-20px.png);
    background-repeat: repeat-y;
    background-size: 60px 20px;
}
.suscribe .mailchimp_form label{
    display: none;
}
.suscribe .mailchimp_form  input[type="email"].email{
    margin:0;
    padding:0;
    width: 90%;
    padding:5px 10px;
    font-weight: 700;
    border:none;
    border-radius: 10px;
    font-size: 1em;
    color: var(--color-darkgrey);
}
.suscribe .mailchimp_form  input[type="email"].email::-webkit-input-placeholder {
    color: var(--color-lightgrey);
    text-transform: uppercase;
}
.suscribe .mailchimp_form input.btn{
    display: none;
}

.suscribe .label-mobile{
    position:relative;
    padding:1em 0;
}
.suscribe .label-mobile h3{
    margin: 0;
    background: var(--color-green);
    color:white;
    position: absolute;
    top:50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%) ;
    display: table;
    font-size: 1em;
    border-radius:7px;
    padding:5px 20px;
    text-transform: uppercase;
    font-weight: 400;
}


/** footer
*/
footer{
    display: block;
    background-color: #727278;
    color:white!important;
    padding:25px 0;
    font-size:0.85rem;
    font-weight: 200;
    padding:2em 2em;
}
footer .row{

}
footer h1, footer h2, footer h3{
    color:white!important;
}
footer ul{
    list-style: none;
    padding: 0;margin:0;
}

footer ul li a{
    color: white;
}
footer ul li a:hover{
    color: var(--color-lightgreen);
}


footer .widget_footer_menu ul li a:before{
    display: inline-block;
    content: "\F054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 5px;
}


footer .supersalud, footer .contacto, footer .cita, footer .menu-auxiliar {
    margin-bottom: 2em;
}


footer .contacto .imagen{
    float:left;
    margin-right: 10px;
    height: 60px;
}
footer .contacto .imagen img{
    width: 30px;
    height: auto;
}

footer .menu-auxiliar ul li{
    text-transform: uppercase;
}

footer .siguenos {
    text-align: center;
}
footer .siguenos ul li{
    display: inline-block;
    margin: 0 10px;
}
footer .siguenos ul li a{
    font-size: 30px !important;
}
footer .siguenos h3{
    text-transform:uppercase;
}
footer .siguenos h3, footer .siguenos p{
    font-size:1rem;
    font-weight: 200;
    margin: 0;
}

/** creditos
*/
.creditos{
    display: block;
    background-color: var(--color-lightgreen);
    color:white;
    text-align: center;
    font-weight: 200;
    font-size: 0.85em;
    padding:8px 0;
}

.creditos a{
    color:white;
    text-decoration: none;

}
.creditos a:hover{
    color:var(--color-green);
    text-decoration: none;
}


/* anchor */
a.anchor {
    display: block;
    position: relative;
    visibility: hidden;
    top: -170px;
}
.nopadding-top a.anchor {
    top: -120px;
}

/*************************************************
*
*			MEDIA QUERIES
*
**************************************************/

/*	576px
*/
@media screen and (min-width: 576px) {
    .simalink-section {
        padding:3em 2em;
    }
    header.page-header{
        height: 150px;
        background-size: cover;
    }
}

/* 768
*/
@media screen and (min-width: 768px) {



    /** pedir cita
    */
    .pedir-cita{
        background-color: white;
        color:var(--color-darkgrey);
        font-weight: 200;
        font-size: 0.85em;
        padding: 12px 33px 12px 0;
        text-align: right;
    }
    .pedir-cita .desktop{
        display:block;
    }
    .pedir-cita .desktop span{
        margin-left:5px;
    }
    .pedir-cita .mobile{
        display:none;
    }
    #menu-mobile{
        top:0px;
    }

    .simalink-section {
        padding:50px 2em;
    }
    header.page-header{
        height: 150px;
    }

    #page-para-pacientes .deberes-derechos-copy{
        margin: 0 0 40px 0;
    }

    .simalink-section .ajustar-arriba{
        margin-top:1em;
    }

    .atencion-publico .green-line-right{
        background-image: url('assets/images/contacto/bg-line-green.png');
        background-repeat: no-repeat;
        background-position: right 3em bottom 1em;
    }
    .atencion-publico .ajustar-arriba-mobile{
        margin-top:0em!important;
    }

    #page-atencion-excepcional .capsula-item .contenido {min-height:330px;width: 65%;}


    /* anchor */
    a.anchor {
        top: -150px;
    }
    .nopadding-top a.anchor {
        top: -100px;
    }


    footer {
        padding:20px 4em;
    }
    footer .supersalud{
        text-align: center;
    }
    footer .supersalud img{
        width: 320px;
    }

    footer .siguenos{
        text-align: left;
    }
    footer .siguenos ul li{
        margin: 0 15px 0 0;
    }
}

/*	992px
*/
@media screen and (min-width: 992px) {
    header.page-header{
        height: 180px;
    }

    .pedir-cita .desktop br{
        display: none;
    }

}

/*	1024px
*/
@media screen and (min-width: 1024px) {
    .simalink-section .bg-dots{
        background-position: center 3em;
    }
    header.page-header{
        height: 208px;
    }

    .estadosFinacieros{
        background-size: 85%;
        background-position: right -220px center;
        background-repeat: no-repeat;
    }
    .estadosFinacieros .contenido{margin-bottom:1em;}
    .atencion-publico .green-line-right{background-position: right 3em bottom 1em;}
    #page-atencion-excepcional .capsula-item .contenido {min-height:260px;width: 70%;}
}

/*	1200px
*/
@media screen and (min-width: 1200px) {

    /** topmenu
    */
    .topmenu{
        display:block;
        height: 79px;
        background: transparent url("assets/images/bg-topmenu.png") repeat-x left top;
    }
    /*
    */
    .logo{
        width:124px;
        display: inline-block;
        z-index: 20;
        position: absolute;
        left:90px;
        top:0px;
    }
    /** pedir cita
    */
    .pedir-cita{
        padding: 12px 33px 0 0;
    }
    /** menu mobile
    */
    #menu-mobile{
        display: none;
    }

    /** menu primario
    */
    #menu-primario{
        background-color: var(--color-lightgreen);
        display: inline-block;
        position: absolute;
        top:15px;
        left:180px;

        width: calc(100vw - 200px);

        border-radius: 8px;

        padding-left:30px;
    }
    #menu-primario ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    #menu-primario ul li {
        display: block;
        position: relative;
        float: left;
    }
    /* This hides the dropdowns */
    #menu-primario li ul {
        display: none;
    }
    #menu-primario ul li a {
        display: block;
        padding: 20px calc( ( (100vw - 32px) /12) / 7 );
        text-decoration: none;
        white-space: nowrap;
        color: #fff;
        font-weight: 200;
    }
    #menu-primario ul li.active a {
        background: transparent url("assets/images/li-active.png") no-repeat center bottom;
    }
    #menu-primario ul li a:hover {
        background-color: var(--color-darkgreen-alpha);
    }
    /* Display the dropdown */
    #menu-primario li:hover > ul {
        display: block;
        position: absolute;
        padding-top:10px;
        background: var(--color-darkgreen-alpha) url("assets/images/li-submenu.png") no-repeat center top;
        min-width: 140px;
    }
    #menu-primario li:hover > ul ul{
        padding-top:0px;
        background: var(--color-darkgreen-alpha);
    }
    #menu-primario li:hover li {
        float: none;
    }
    #menu-primario li:hover a {

    }
    #menu-primario li:hover li a {
        background: none;
        padding:10px 20px;
    }
    #menu-primario li:hover li a i{
        margin-left: 5px;
    }
    #menu-primario li:hover li a strong{
        font-weight: 400;
    }
    #menu-primario li:hover li a:hover {
        background: var(--color-darkgreen);
    }
    #menu-primario li ul li {
        border-top: 0;
    }
    /* Displays second level dropdowns to the right of the first level dropdown */
    #menu-primario ul ul ul {
        left: 100%;
        top: 0;
    }
    /* Simple clearfix */
    #menu-primario ul:before,
    #menu-primario ul:after {
        content: " "; /* 1 */
        display: table; /* 2 */
    }
    #menu-primario ul:after {
        clear: both;
    }

    /* brand
    */
    #menu-primario ul li.brand a {
        padding:0;
        margin-top:17px;
        margin-left:20px;
        margin-right: 20px;
    }
    #menu-primario ul li.brand a img{
        height:30px;
        width: auto;
    }
    #menu-primario ul li.brand a:hover {
        background:transparent;
    }

    /* suscribe */

    .suscribe .logo{
        width: 150px; height: 119px;
        position: absolute;
        left:-17px;
        top:-45px;
        z-index: 20;
    }

    .suscribe .mailchimp_form  input[type="email"].email{
        width: 90%;
        padding:5px 20px;
        font-size: 1.15em;
    }
    .suscribe .label-desktop{
        background-color: var(--color-green);
        color:white;
        text-align: right;
        font-size:1.15em;
        text-transform: uppercase;
        border-radius: 7px;
        padding:5px 10px;
    }

    .simalink-section {
        padding:80px calc(100vw/12);
    }


    .simalink-section .bg-dots{
        background-position: center 4em;
    }

    header.page-header{
        height: 308px;
    }

    .estadosFinacieros{
        background-position: right -200px center;
        background-size: contain;
    }

    .estadosFinacieros .contenido{margin-bottom:2em;}

    #pilares-porlavida .green-dots{
        display: block;
    }

    #page-servicios .cat-item{
        padding:0 40px;
    }

    #page-atencion-excepcional .capsula-item .contenido {min-height:340px;width: 60%;}


    footer {
        padding:30px calc(100vw/24);
    }

    footer .supersalud{
        padding-right: 10px;
    }
    footer .supersalud img{
        width: 100%;
    }
    footer .siguenos{
        text-align: left;
    }
    footer .siguenos ul li{
        margin: 0 10px 0 0;
    }

}

/*	1400px
*/
@media screen and (min-width: 1400px) {
    #menu-primario ul li a {
        display: block;
        padding: 20px calc( ( (100vw - 32px) /12) / 4 );
    }

    .simalink-section .bg-dots{
        background-position: center 5em;
    }
    .estadosFinacieros{
        background-position: right center;
    }
    #page-atencion-excepcional .capsula-item .contenido {min-height:330px;width: 60%;}

}

/*	1600px
*/
@media screen and (min-width: 1600px) {

    #menu-primario ul li a {
        display: block;
        padding: 20px calc( ( (100vw - 32px) /12) / 3 );
    }
    #menu-primario li:hover li a {
        background: none;
        padding:10px calc( ( (100vw - 32px) /12) / 4 );
    }

    .suscribe .logo{
        width: 180px; height: 143px;
        left:-17px;
        top:-50px;
    }
    .simalink-section {
        padding:100px calc(100vw/10);
    }

    #page-atencion-excepcional .capsula-item .contenido {min-height:240px;width: 70%;}

    footer .cita{
        padding-left:30px;
    }
    footer {
        padding:30px calc(100vw/24);
    }
}

/* section overrides
*/
.uppercase{
    text-transform: uppercase;
}
.nopadding-top{
    padding-top:0;
}
.nopadding-bottom{
    padding-bottom:0;
}
