/*fonts*/

@font-face{
	font-family: "Roboto-Light";
	src:url("../fonts/roboto/Roboto-Light.ttf");
	
	font-family: "Roboto-Regular";
	src:url("../fonts/roboto/Roboto-Regular.ttf");
	
	font-family: "Roboto-Bold";
	src:url("../fonts/roboto/Roboto-Bold.ttf");
	
	font-family: "Futura";
	src:url("../fonts/futura/Futura.ttc");
	
	font-family: "FuturaStdCondensedExtraBd";
	src:url("../fonts/futura/FuturaStdCondensedExtraBd.otf");
}


/********** Template CSS **********/
:root {
    --primary: #02529D;
    --secondary: #BE1E2C;
    --light: #F7F7F7;
    --dark: #BE1E2C;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn-primary,
.btn-outline-primary:hover {
    color: white;
	font-family: "Roboto-Bold", Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 20px;
	border-radius: 0 !important;
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar{
	background-color: #02529D !important;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: white;
    font-size: 16px;
    outline: none;
	font-family: "Roboto-Light", Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	transition: .2s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #BE1E2C;
	font-family: "Roboto-Bold", Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
		font-size: 20px;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

#header-carousel > .carousel-control-prev{
	opacity: 0;
}

#header-carousel:hover > .carousel-control-prev{
	opacity: 0.7;
}

#header-carousel > .carousel-control-next{
	opacity: 0;
}

#header-carousel:hover > .carousel-control-next{
	opacity: 0.7;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 600px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: url("../img/BG-Nosotros.jpg")center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 5px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 6px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** About ***/
.about-experience {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -45px;
    bottom: -45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/*** Service ***/
.service-item {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    z-index: 1;
}

.service-item .service-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s ease-out;
    z-index: 2;
}

.service-item:hover .service-img::after {
    width: 0;
    left: auto;
    right: 0;
}

.service-item .service-text .service-icon {
    width: 140px;
    height: 140px;
    padding: 15px;
    margin-top: -70px;
    margin-bottom: 40px;
    background: #FFFFFF;
    border-radius: 140px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

.service-item .service-text h5,
.service-item .service-text p {
    transition: .5s;
}

.service-item:hover .service-text h5,
.service-item:hover .service-text p {
    color: #FFFFFF;
}

.service-item .service-text .btn {
    color: var(--secondary);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .25);
}

.service-item .service-text .btn:hover {
    color: var(--dark);
    background: var(--secondary);
}


/*** Product ***/
.product-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.product-item:hover .product-overlay {
    opacity: 1;
    padding-top: 0;
}


/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .btn {
    border-color: transparent;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
}

.testimonial-img::after {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 200px;
    color: #EEEEEE;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.testimonial-img img {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-img img:nth-child(1) {
    top: 0;
    left: 0;
}

.testimonial-img img:nth-child(2) {
    top: 60%;
    left: 20%;
}

.testimonial-img img:nth-child(3) {
    top: 20%;
    left: 60%;
}

.testimonial-img img:nth-child(4) {
    bottom: 0;
    right: 0;
}

.testimonial-img img .animated.pulse {
    animation-duration: 2s;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 45px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
    color: var(--dark);
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: white;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: white;
    letter-spacing: 1px;
    box-shadow: none;
}

.emergencia{
	background-color: #BE1E2C;
}

.emergencia-in{
	margin:auto;
	width: 500px;
	display: flex;
	padding: 15px 0 15px 0;
}

.emergencia-in-bloque1{
	width: 250px;
	text-align: right;
}
.emergencia-in-bloque2{
	width: 250px;
}

.emergencia-in-bloque2 img{
	padding-left: 10px;
}

.emergencia-in-bloque1 h3{
	font-family: "Roboto-Regular", Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 28px;
	color: white;
	padding-right: 10px;
	padding-top: 18px;
}

.slidetext1{
	font-family: "FuturaStdCondensedExtraBd";
}

.slidetextp{
	font-family: "Roboto-light", Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	margin-top: -50px !important;
	font-size: 22px;
}

.textonosotros{
	margin-bottom: -150px;
}

.textonosotros h1{
	font-family: "FuturaStdCondensedExtraBd";
	color: #BE1E2C;
	font-size: 73px;
	padding-top: 30px;padding-bottom: 100px;
}

.textonosotros p{
	font-family: "Roboto-Light", Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	color: #02529D;
	padding-bottom: 0;
}

.textonosotros span{
	font-family: "FuturaStdCondensedExtraBd";
}

.container-fluid > .graficonosotros{
	width: 104%;
	margin-left: -20px;
	margin-bottom: -50px;
}

.bgblue{
	background-color: #02529D;
	margin-top: -50px;
}

.tituloblanco h1{
	font-family: "FuturaStdCondensedExtraBd";
	color: white;
	font-size: 73px;
	padding-top: 10px;
	padding-bottom: 50px;
}

.tituloblanco2 h1{
	font-family: "FuturaStdCondensedExtraBd";
	color: white;
	font-size: 73px;
	padding-top: 10px;
}

.tituloazul h1{
	font-family: "FuturaStdCondensedExtraBd";
	color: #02529D;
	font-size: 73px;
	padding-top: 10px;
	padding-bottom: 50px;
}

.servicios{
	display: flex;
	justify-content: center;
}

.servicioelemento{
	width: 33.3%;
}

.margenserviciosatras{
	padding-top: 100px;
	width: 100%;
	height: 450px;
	clear: both;
}

/*servicios efecto*/

.carta-box {
  position: relative;
  perspective: 1000px;
}

.carta-box:hover .carta {
    transform: rotateY(180deg);
}

.carta {
  transform-style: preserve-3d;
  transition: all 1s linear;
}

.cara {
	width: 100%;
	height: 389px;
  position: absolute;
  backface-visibility: hidden;
	background-color: #02529D;
	border-radius: 20px;
}

.cara p{
	padding: 0;
	text-align: center;
	color: white;
	font-family: "Roboto-Regular", Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	padding-top: 50px;
}

.cara img{
	padding: 30px 70px 70px 70px;
}

.cara.detras {
  transform: rotateY(180deg);
}

.detras ul{
	padding: 20px 20px 20px 40px;
}

.cara.detras ul li{
	color: #02529D;
	font-family: "Roboto-Regular", Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 16px;
}

.detras{
	width: 100%;
	height: 389px;
	background-color: white;
	border-radius: 20px;
}

.titulo-serv p{
	color: #02529D;
	font-family: "Roboto-Bold", Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 20px;
	padding: 0;
	padding-top: 30px;
	margin: 0;
	text-align: center;
}

#serv-amb ul{
	margin-top: 10px;
}

#serv-enfe ul{
	margin-top: -5px;
}

#serv-personal ul{
	margin-top: 75px;
}

#serv-coord ul{
	margin-top: 80px;
}

#serv-botiquin ul{
	margin-top: 70px;
}

#serv-base ul{
	margin-top: 70px;
}

#serv-superv ul{
	margin-top: 70px;
}

#serv-planes ul{
	margin-top: 55px;
}

#serv-capaci ul{
	margin-top: 15px;
}

.margingservicio1{
	margin-top: 0;
}

.margingservicio2{
	margin-top: 0;
}

.margingservicio3{
	margin-top: 0;
}

.margingservicio4{
	margin-top: 420px;
}

.margingservicio5{
	margin-top: 420px;
}

.margingservicio6{
	margin-top: 420px;
}

.margingservicio7{
	margin-top: 420px;
}

.margingservicio8{
	margin-top: 420px;
}

.margingservicio9{
	margin-top: 420px;
}

.margingservicio10{
	margin-top: 420px;
}

.btn-totop{
	background-color: lightgray;
}

.btn-totop:hover{
	background-color: #BE1E2C;
	color: white;
}

/*tabs caracteristicas*/
/* Style the tab */
.tab2 {
  overflow: hidden;
  width:610px;
  margin:auto;
  text-align:center;
  margin-bottom:30px;
}

/* Style the buttons inside the tab */
.tab2 button {
  background-color: #02529D;
  border: none;
  outline: none;
  cursor: pointer;
  width:190px;
  padding-top:15px;
  padding-bottom:15px;
  transition: 0.3s;
  font-size: 18px;
  font-family:"Roboto-Regular", Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif"; 
  color:white;
  border-radius:50px;
  margin:none;
}

/* Change background color of buttons on hover */
.tab2 button:hover {
  background-color:rgba(28,39,154,0.7);
}

/* Create an active/current tablink class */
.tab2 button.active {
  background-color: #BE1E2C;
  color:#FFFFFF;
}

/* Style the tab content */
.tabcontent2 {
	width:100%;
}

.tablinks2{
}

.beneficiosbtnin{
	width: 600px;
	background-color:#02529D;
	margin: auto;
	border-radius:50px;
	padding: 7px;
}

/*.contentben{
	outline: 2px solid #BE1E2C;
	width: 100%;
	height: 320px;
	clear: both;
	border-radius: 30px;
}*/

.titulobeneficios{
	background-color: #BE1E2C;
	border-top-left-radius: 30px; /* Rounds the top-left corner */
    border-top-right-radius: 30px; /* Rounds the top-right corner */
	text-align: center;
}

.titulobeneficios h2{
	color: white;
	padding: 12px 0 12px 0;
	font-family: "FuturaStdCondensedExtraBd";
	font-size: 40px;
}

.textobeneficios{
	text-align: left;
	font: "Roboto-Light", Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	color: #02529D;
}

.textobeneficios ul li{
	font: "Roboto-Light", Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	padding: 10px 30px 10px 20px;
}

.textobeneficios1{
	float: left;
	border-bottom-left-radius: 30px;
	margin-top: -8px;
	padding-top: 10px;
}

.textobeneficios1 li{
	list-style: none;
	position: relative;
}

.textobeneficios1 li:before{
	content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    background-image: url("../img/vineta-escudo.svg");
    background-size: cover;
    background-position: center;
	left: -8px;
	margin-top: 4px;
}

.textobeneficios2{
	float: left;
	border-bottom-right-radius: 30px;
	margin-top: -8px;
	padding-top: 10px;
}

/*border-bottom: 2px solid #BE1E2C;*/

.textobeneficios2 li{
	list-style: none;
	position: relative;
}

.textobeneficios2 li:before{
	content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    background-image: url("../img/vineta-escudo.svg");
    background-size: cover;
    background-position: center;
	left: -8px;
	margin-top: 4px;
}

.asegurate img{
	margin-top: 100px;
}

.bg-azul{
	background-color: #02529D;
}

.copyright{
	text-align: center;
	font-family: "Roboto-Light", Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	color: white;
	padding: 20px 0 20px 0;
}

.copyright a{
	color: white;
	transition: 0.3s ease;
}

.copyright a:hover{
	color: #BE1E2C;
	font-family: "Roboto-Bold", Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

.footercont{
	display: flex;
	margin: auto;
}

.logofooter{
	width: 35%;
}

.tituloblancofoot{
	margin-bottom: -30px;
}

.tituloblancofoot h1{
	font-family: "FuturaStdCondensedExtraBd";
	color: white;
	font-size: 73px;
	padding-bottom: 0;
}

.contactotext{
	width: 65%;
	padding-left: 40px;
}

.contactotext p{
	font-family: "Roboto-Light", Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	color: white;
	padding: 0 5px 0 5px;
	margin-top: -5px;
}

.contactotext i{
	font-size: 22px;
	padding-right: 5px;
}

.contactotext a{
	color: white;
	transition: 0.3s ease;
}

.contactotext a:hover{
	color: #BE1E2C;
	font-family: "Roboto-Bold", Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

.contactotext svg{
	width: 35px;
}

.contactotext span{
	color: white;
}

.form-select2{
	width: 100%;
	border-radius: 8px;
	height: 60px;
	border: 1px solid rgba(139,149,156,0.4);
	color: rgba(132,139,144,1.00);
	padding-left: 10px;
}

.graficonosotros2{
	margin: 0;
	padding: 0;
	margin-bottom: -50px;
}

.graficonosotros2int{
	margin: 0;
	padding: 0;
}

.marco-rojo{
	border: 2px solid #BE1E2C;
	width: 100%;
	height: 540px;
	border-radius: 0 0 30px 30px;
	margin-top: -10px;
	padding-top: 20px;
}

.marco-rojo2{
	border: 2px solid #BE1E2C;
	width: 100%;
	height: 250px;
	border-radius: 0 0 30px 30px;
	margin-top: -10px;
	padding-top: 20px;
}

.marco-rojo3{
	border: 2px solid #BE1E2C;
	width: 100%;
	height: 160px;
	border-radius: 0 0 30px 30px;
	margin-top: -10px;
	padding-top: 20px;
}

.textobeneficios h3{
	font-family: "FuturaStdCondensedExtraBd";
	font-size: 28px;
	color: #02529D;
	padding-right: 20px;
}

.mensuales{
	font-family:"Roboto-regular", Gotham, 'Helvetica Neue', Helvetica, Arial, 'sans-serif';
	color: #02529D;
	font-size: 17px;
	font-weight: 300;
}

@media (max-width: 1399px){
	
.marco-rojo{
	height: 580px;
}

.marco-rojo2{
	height: 250px;
}

.marco-rojo3{
	height: 160px;
}
	
.detras ul{
	padding: 0 20px 0 40px;
}
	
.titulo-serv p{
	font-size: 16px;
	padding: 0;
	padding-top: 20px;
}
	
.cara.detras ul li{
	font-size: 14px;
}
	
#serv-amb ul{
	margin-top: 25px;
}

#serv-enfe ul{
	margin-top: 10px;
}

#serv-personal ul{
	margin-top: 80px;
}

#serv-coord ul{
	margin-top: 90px;
}

#serv-botiquin ul{
	margin-top: 75px;
}

#serv-base ul{
	margin-top: 65px;
}

#serv-superv ul{
	margin-top: 85px;
}

#serv-planes ul{
	margin-top: 70px;
}

#serv-capaci ul{
	margin-top: 30px;
}
	
.cara {
	height: 333px;
}
	
.cara img{
	padding: 30px 70px 70px 70px;
}
	
.detras{
	height: 333px;
}
	
.margingservicio1{
	margin-top: 0;
}

.margingservicio2{
	margin-top: 0;
}

.margingservicio3{
	margin-top: 0;
}

.margingservicio4{
	margin-top: 400px;
}

.margingservicio5{
	margin-top: 400px;
}

.margingservicio6{
	margin-top: 400px;
}

.margingservicio7{
	margin-top: 400px;
}

.margingservicio8{
	margin-top: 400px;
}

.margingservicio9{
	margin-top: 400px;
}

.margingservicio10{
	margin-top: 400px;
}
	
.margenserviciosatras{
	height: 370px;
}
	
}

@media (max-width: 1199px){
	
.marco-rojo{
	height: 640px;
}

.marco-rojo2{
	height: 270px;
}

.marco-rojo3{
	height: 170px;
}
	
.cara.detras ul li{
	font-size: 12px;
}
	
.detras ul{
	padding: 0 20px 0 40px;
}
	
.titulo-serv p{
	font-size: 14px;
	padding: 0;
	padding-top: 20px;
}
	
#serv-amb ul{
	margin-top: 20px;
}

#serv-enfe ul{
	margin-top: 5px;
}

#serv-personal ul{
	margin-top: 65px;
}

#serv-coord ul{
	margin-top: 65px;
}

#serv-botiquin ul{
	margin-top: 45px;
}

#serv-base ul{
	margin-top: 50px;
}

#serv-superv ul{
	margin-top: 68px;
}

#serv-planes ul{
	margin-top: 50px;
}

#serv-capaci ul{
	margin-top: 19px;
}
	
.contentben{
	height: 350px;
}
	
.cara {
	height: 276px;
}
	
.cara img{
	padding: 10px 50px 50px 50px;
}
	
.detras{
	height: 276px;
}
	
.margingservicio1{
	margin-top: 0;
}

.margingservicio2{
	margin-top: 0;
}

.margingservicio3{
	margin-top: 0;
}

.margingservicio4{
	margin-top: 330px;
}

.margingservicio5{
	margin-top: 330px;
}

.margingservicio6{
	margin-top: 330px;
}

.margingservicio7{
	margin-top: 330px;
}

.margingservicio8{
	margin-top: 330px;
}

.margingservicio9{
	margin-top: 330px;
}

.margingservicio10{
	margin-top: 330px;
}
	
.margenserviciosatras{
	height: 320px;
}
	
}

@media (max-width: 992px){
	
.servicioelemento{
	width: 50%;
}
	
.marco-rojo{
	height: 860px;
}

.marco-rojo2{
	height: 340px;
}

.marco-rojo3{
	height: 185px;
}
	
.cara.detras ul li{
	font-size: 10px;
}
	
.detras ul{
	padding: 0 20px 0 40px;
}
	
.titulo-serv p{
	font-size: 14px;
	padding: 0;
	padding-top: 20px;
}
	
#serv-amb ul{
	margin-top: 25px;
}

#serv-enfe ul{
	margin-top: 5px;
}

#serv-personal ul{
	margin-top: 60px;
}

#serv-coord ul{
	margin-top: 60px;
}

#serv-botiquin ul{
	margin-top: 50px;
}

#serv-base ul{
	margin-top: 55px;
}

#serv-superv ul{
	margin-top: 60px;
}

#serv-planes ul{
	margin-top: 50px;
}

#serv-capaci ul{
	margin-top: 20px;
}
	
.tituloblancofoot h1{
	font-size: 53px;
}
	
.contentben{
	height: 450px;
}
	
.slidetextp{
	font-size: 18px;
}
	
.textonosotros h1{
	font-size: 53px;
}
	
.tituloblanco h1{
	font-size: 53px;
}
	
.tituloblanco2 h1{
	font-size: 53px;
}
	
.tituloazul h1{
	font-size: 53px;
}
	
.container-fluid > .graficonosotros{
	width: 105%;
	margin-left: -20px;
}
	
.textonosotros{
	margin-bottom: -100px;
}
	
.cara {
	height: 252px;
}
	
.cara p{
	padding-top: 25px;
}
	
.cara img{
	padding: 10px 40px 40px 40px;
}
	
.detras{
	height: 252px;
}
	
.margingservicio1{
	margin-top: 0;
}

.margingservicio2{
	margin-top: 0;
}

.margingservicio3{
	margin-top: 300px;
}

.margingservicio4{
	margin-top: 300px;
}

.margingservicio5{
	margin-top: 300px;
}

.margingservicio6{
	margin-top: 300px;
}

.margingservicio7{
	margin-top: 300px;
}

.margingservicio8{
	margin-top: 300px;
}

.margingservicio9{
	margin-top: 300px;
}

.margingservicio10{
	margin-top: 300px;
}
	
.margenserviciosatras{
	height: 220px;
}
	
}

@media (max-width: 768px) {
	
.carousel-caption {
    padding-left: 37px;
}
	
.marco-rojo{
	height: 1140px;
}

.marco-rojo2{
	height: 480px;
}

.marco-rojo3{
	height: 240px;
}
	
.cara.detras ul li{
	font-size: 11px;
}
	
.titulo-serv p{
	font-size: 16px;
	padding: 0;
	padding-top: 20px;
}
	
#serv-amb ul{
	margin-top: 30px;
}

#serv-enfe ul{
	margin-top: 10px;
}

#serv-personal ul{
	margin-top: 70px;
}

#serv-coord ul{
	margin-top: 70px;
}

#serv-botiquin ul{
	margin-top: 60px;
}

#serv-base ul{
	margin-top: 60px;
}

#serv-superv ul{
	margin-top: 73px;
}

#serv-planes ul{
	margin-top: 60px;
}

#serv-capaci ul{
	margin-top: 25px;
}
	
.footercont{
	display: inline-block;
}
	
.logofooter{
	width: 60%;
	align-items: center;
	text-align: center;
	margin: auto;
}

.contactotext{
	width: 80%;
	padding-left: 0;
	padding-top: 30px;
	text-align: center;
	margin: auto;
}
	
.contentben{
	height: 600px;
}
	
.emergencia-in{
	width: 300px;
}
	
.tabcontent2 {
	width:100%;
	margin:auto;
	margin-bottom:30px;
	margin-top:30px;
}
	
.beneficiosbtnin{
	width: 300px;
	border-radius:60px;
}

.tab2 {
  width:300px;
  margin:auto;
}

.tab2 button {
  width:90px;
	font-size: 11px;
}

.tablinks2{
	margin-left:0;
}
	
.emergencia-in-bloque1{
	width: 150px;
}
.emergencia-in-bloque2{
	width: 150px;
}
	
.emergencia-in-bloque1 h3{
	font-size: 18px;
	padding-top: 10px;
	padding-right: 0;
}
	
.slidetextp{
	font-size: 14px;
}
	
.container-fluid > .graficonosotros{
	width: 107%;
	margin-left: -20px;
}
	
.textonosotros{
	width: 80% !important;
	margin-bottom: -100px;
	text-align: center;
	margin: auto;
	background-color: rgba(255,255,255,0.6);
	border-radius: 20px;
}
.textonosotros p{
	font-size: 14px;
}
	
.servicioelemento{
	width: 70%;
}

.cara {
	height: 232px;
}
	
.cara p{
	padding-top: 25px;
}
	
.cara img{
	padding: 10px 40px 40px 40px;
}
	
.detras{
	height: 282px;
}
	
.margingservicio1{
	margin-top: 0;
}

.margingservicio2{
	margin-top: 360px;
}

.margingservicio3{
	margin-top: 360px;
}

.margingservicio4{
	margin-top: 360px;
}

.margingservicio5{
	margin-top: 360px;
}

.margingservicio6{
	margin-top: 360px;
}

.margingservicio7{
	margin-top: 360px;
}

.margingservicio8{
	margin-top: 360px;
}

.margingservicio9{
	margin-top: 360px;
}

.margingservicio10{
	margin-top: 360px;
}
	
.margenserviciosatras{
	height: 330px;
}
	
.textobeneficios1{
	border-bottom: 0;
	border-bottom-left-radius: 0;
	margin-top: -8px;
	padding-top: 10px;
}

.textobeneficios1 li{
	list-style: none;
	position: relative;
}

.textobeneficios1 li:before{
	content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    background-image: url("../img/vineta-escudo.svg");
    background-size: cover;
    background-position: center;
	left: -8px;
	margin-top: 4px;
}

.textobeneficios2{
	float: left;
	border-bottom-right-radius: 30px;
	border-bottom-left-radius: 30px;
	margin-top: -15px;
	padding-top: 0;
}

.textobeneficios2 li{
	list-style: none;
	position: relative;
}

.textobeneficios2 li:before{
	content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    background-image: url("../img/vineta-escudo.svg");
    background-size: cover;
    background-position: center;
	left: -8px;
	margin-top: 4px;
}
	
}

@media (max-width: 600px) {
	
.marco-rojo{
	height: 1150px;
}

.marco-rojo2{
	height: 520px;
}

.marco-rojo3{
	height: 270px;
}
	
}

@media (max-width: 530px) {
	
.marco-rojo{
	height: 1250px;
}

.marco-rojo2{
	height: 520px;
}

.marco-rojo3{
	height: 300px;
}
	
}

@media (max-width: 505px) {
	
.marco-rojo{
	height: 1270px;
}

.marco-rojo2{
	height: 520px;
}

.marco-rojo3{
	height: 300px;
}
	
}

@media (max-width: 502px) {
	
.marco-rojo{
	height: 1290px;
}

.marco-rojo2{
	height: 520px;
}

.marco-rojo3{
	height: 300px;
}
	
}

@media (max-width: 500px) {
	
.marco-rojo{
	height: 1300px;
}

.marco-rojo2{
	height: 530px;
}

.marco-rojo3{
	height: 300px;
}
	
.cara.detras ul li{
	font-size: 10px;
}
	
.titulo-serv p{
	font-size: 14px;
	padding: 0;
	padding-top: 20px;
}
	
#serv-amb ul{
	margin-top: 25px;
}

#serv-enfe ul{
	margin-top: 7px;
}

#serv-personal ul{
	margin-top: 60px;
}

#serv-coord ul{
	margin-top: 65px;
}

#serv-botiquin ul{
	margin-top: 50px;
}

#serv-base ul{
	margin-top: 55px;
}

#serv-superv ul{
	margin-top: 65px;
}

#serv-planes ul{
	margin-top: 45px;
}

#serv-capaci ul{
	margin-top: 22px;
}
	
.cara {
	height: 240px;
}
	
.cara p{
	padding-top: 15px;
}
	
.cara img{
	padding: 10px 40px 40px 40px;
}
	
.detras{
	height: 240px;
}
	
.margingservicio1{
	margin-top: 0;
}

.margingservicio2{
	margin-top: 270px;
}

.margingservicio3{
	margin-top: 270px;
}

.margingservicio4{
	margin-top: 270px;
}

.margingservicio5{
	margin-top: 270px;
}

.margingservicio6{
	margin-top: 270px;
}

.margingservicio7{
	margin-top: 270px;
}

.margingservicio8{
	margin-top: 270px;
}

.margingservicio9{
	margin-top: 270px;
}

.margingservicio10{
	margin-top: 270px;
}
	
.margenserviciosatras{
	height: 270px;
}
}

@media (max-width: 480px){
	
.marco-rojo{
	height: 1550px;
}
	
.marco-rojo2{
	height: 600px;
}

.marco-rojo3{
	height: 280px;
}
}

@media (max-width: 400px){
	
.marco-rojo{
	height: 1650px;
}
	
.marco-rojo2{
	height: 650px;
}

.marco-rojo3{
	height: 320px;
}

.cara.detras ul li{
	font-size: 12px;
}
	
.titulo-serv p{
	font-size: 16px;
	padding: 0;
	padding-top: 20px;
	font-weight: bold;
}
	
#serv-amb ul{
	margin-top: 35px;
}

#serv-enfe ul{
	margin-top: 10px;
}

#serv-personal ul{
	margin-top: 75px;
}

#serv-coord ul{
	margin-top: 80px;
}

#serv-botiquin ul{
	margin-top: 65px;
}

#serv-base ul{
	margin-top: 65px;
}

#serv-superv ul{
	margin-top: 70px;
}

#serv-planes ul{
	margin-top: 60px;
}

#serv-capaci ul{
	margin-top: 25px;
}

.servicioelemento{
	width: 95%;
}
	
.cara {
	height: 295px;
}
	
.cara p{
	padding-top: 25px;
}
	
.cara img{
	padding: 10px 40px 40px 40px;
}
	
.detras{
	height: 295px;
}
	
.margingservicio1{
	margin-top: 0;
}

.margingservicio2{
	margin-top: 340px;
}

.margingservicio3{
	margin-top: 340px;
}

.margingservicio4{
	margin-top: 340px;
}

.margingservicio5{
	margin-top: 340px;
}

.margingservicio6{
	margin-top: 340px;
}

.margingservicio7{
	margin-top: 340px;
}

.margingservicio8{
	margin-top: 340px;
}

.margingservicio9{
	margin-top: 340px;
}

.margingservicio10{
	margin-top: 340px;
}
	
.margenserviciosatras{
	height: 330px;
}
}

@media (max-width: 370px){
	
.marco-rojo{
	height: 1750px;
}
	
.marco-rojo2{
	height: 700px;
}

.marco-rojo3{
	height: 380px;
}
}

@media (max-width: 340px){
	
.marco-rojo{
	height: 1900px;
}
	
.marco-rojo2{
	height: 800px;
}

.marco-rojo3{
	height: 380px;
}
}



