/* FONTS --------------------------------------------------------------------------------------- */

.fuentes {
  /* Light */
  font-family: "Montserrat", sans-serif;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;

  /* Regular */
  font-family: "Montserrat", sans-serif;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;

  /* Medium */
  font-family: "Montserrat", sans-serif;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;

  /* Semibold */
  font-family: "Montserrat", sans-serif;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;

  /* Bold */
  font-family: "Montserrat", sans-serif;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;

  /* Black */
  font-family: "Montserrat", sans-serif;
  font-family: "Open Sans", sans-serif;
  font-weight: 900;
}

/* GENERALES ----------------------------------------------------------------------------------- */

body {
  font-family: "Montserrat", sans-serif;
  background-color: #e9e9f3;
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.row > [class*='col-'] {
  display: flex;
  flex-direction: column;
}

.center-block {
  float: none;
}

.parallax-window {
  background: transparent;
}

hr {
  margin: 12px 0;
}

.background1 {
  background: #f5f5f9;
}

.background2 {
  background: #eeeef5;
}

/* ------------------------------------------- */

.video {
  max-width: 600px;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 20px auto 0 auto;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

.video::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ------------------------------------------- */

h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding: 0;
  margin: 0 0 30px 0;
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: center;
  color: #2866cf;
  padding: 0;
  margin: 0;
}

.h2_borde {
  border-bottom: 2px solid #2866cf;
  width: 10%;
  display: block;
  margin: 20px auto 40px auto;
}

p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding: 0;
  margin: 0 0 20px 0;
}

i {
  margin-right: 10px;
}

@media (min-width: 100px) {
  h2 { font-size: 35px; line-height: 35px; }
}

@media (min-width: 768px) {
  h2 { font-size: 40px; line-height: 40px; }
}

@media (min-width: 992px) {
  h2 { font-size: 42px; line-height: 42px; }
}

@media (min-width: 1250px) {
  h2 { font-size: 45px; line-height: 45px; }
}

/* ------------------------------------------- */

.boton {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-align: center;
}

.boton:hover {
  text-decoration: none;
}

.boton:focus {
  color: #fff;
  text-decoration: none;
  outline: none;
  outline-offset: none;
}

/* --------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------- */

/* HEADER -------------------------------------------------------------------------------------- */

header {
  position: relative;
}

#header1 {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 9990;
}

header .navbar .logo {
  position: absolute;
  height: 100%;
}

header .navbar .logo .logo_helper {
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}

header .navbar .logo img {
  display: inline-block;
  vertical-align: middle;
  max-height: 70px;
}

.header_spacer {
  height: 80px;
}

@media (min-width: 100px) {
  #header1 { top: 64px; }
  header .navbar .logo { padding: 10px 25px 0 15px; }
  header .navbar .logo img { max-width: 100%; }
}

@media (min-width: 768px) {
  #header1 { top: 64px; }
}

@media (min-width: 992px) {
  #header1 { top: 50px; }
  header .navbar .logo { padding: 10px 0 0 0; }
  header .navbar .logo img { max-width: 100%; }
}

/* ------------------------------------------- */

.header_bar1 {
  background: #002E5B;
}

.header_bar2 {
  padding: 6px 15px;
  margin: 0 auto;
}

.header_bar2 p {
  font-weight: 400;
  color: #ffffff;
  text-align: center;
}

@media (min-width: 100px) {
  .header_bar2 p { font-size: 14px; line-height: 18px; margin: 4px 0; }
}

@media (min-width: 768px) {
  .header_bar2 p { font-size: 14px; line-height: 18px; margin: 4px 0; }
}

@media (min-width: 992px) {
  .header_bar2 p { font-size: 15px; line-height: 18px; margin: 10px 0; }
}

@media (min-width: 1250px) {
  .header_bar2 p { font-size: 15px; line-height: 18px; margin: 10px 0; }
}

/* NAV ----------------------------------------------------------------------------------------- */

header .navbar {
  height: 80px;
  margin-bottom: 0;
  background: #fff;
  border: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

header .navbar li a {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #212121 !important;
	text-decoration: none;
}

header .navbar li a:hover {
  color: #0c54a0 !important;
}

header .navbar .iconos a:hover {
  background-color: transparent !important;
}

#header-nav.fixed-top {
  top: -40px;
  transform: translateY(40px);
  transition: transform 0.3s;
  background: #fff;
  position: fixed;
  left: 0;
  right: 0;
}

@media (min-width: 100px) {
  header .navbar li a { font-size: 15px; line-height: 32px; padding: 0 15px; }
}

@media (max-width: 991px) {
  header #navbar {
    margin: 10px 0 0 0;
    border: none;
    border-top: solid 1px #212121;
    border-bottom: solid 1px #212121;
    background: #fff;
    text-align: center;
    z-index: 9999;
    position: absolute;
    left: 0px;
    right: 0px;
  }
}

@media (min-width: 992px) {
  header .navbar li a { font-size: 16px; line-height: 80px; padding: 0 18px; }
}

@media (min-width: 1250px) {
  header .navbar li a { font-size: 18px; line-height: 80px; padding: 0 20px; }
}

/* ------------------------------------------- */

header .navbar-toggle {
  margin-top: 28px;
  border: #212121 1px solid !important;
  z-index: 999;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

header .navbar-toggle .icon-bar {
  background: #212121 !important;
}

header .navbar-toggle:hover .icon-bar, header .navbar-toggle:focus .icon-bar {
  background: #0c54a0 !important;
}

header .navbar-toggle:hover, header .navbar-toggle:focus {
  background-color: transparent !important;
}

/* CONTACTO ------------------------------------------------------------------------------------ */

.contacto1 {
  background: #08396e;
}

.contacto2 {
  padding: 60px 15px;
  margin: 0 auto;
}

.contacto2 .datos, .contacto2 .form {
  justify-content: center;
}

.contacto2 h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-align: center;
  color: #fff;
  padding: 0;
  margin: 0 0 20px 0;
}

.contacto2 p {
  font-weight: 400;
  color: #ffffff;
  text-align: left;
}

.contacto2 iframe {
  width: 100%;
  height: 350px;
  margin: auto;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

@media (min-width: 100px) {
  .contacto2 .datos { margin: 0 41px 40px 41px; padding: 0 15px; }
  .contacto2 h3 { font-size: 20px; line-height: 22px; text-align: center; }
  .contacto2 p { font-size: 14px; line-height: 20px; margin: 0 0 20px 0; text-align: center; }
}

@media (min-width: 768px) {
  .contacto2 h3 { font-size: 20px; line-height: 22px; text-align: center; }
  .contacto2 p { font-size: 15px; line-height: 21px; margin: 0 0 20px 0; text-align: center; }
}

@media (min-width: 992px) {
  .contacto2 .datos { margin: 0; padding: 0 15px; }
  .contacto2 .form { margin: 0; padding: 0 0 0 70px; }
  .contacto2 h3 { font-size: 20px; line-height: 22px; text-align: left; }
  .contacto2 p { font-size: 16px; line-height: 22px; margin: 0 0 20px 0; text-align: left; }
}

@media (min-width: 1250px) {
  .contacto2 .form { margin: 0; padding: 0 0 0 100px; }
  .contacto2 h3 { font-size: 22px; line-height: 24px; text-align: left; }
  .contacto2 p { font-size: 18px; line-height: 24px; margin: 0 0 20px 0; text-align: left; }
}

/* FORMULARIO ---------------------------------------------------------------------------------- */

.form-group {
  margin-bottom: 20px;
}

.form-control:focus {
  border: none !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

form input {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  height: 50px !important;
  font-size: 15px !important;
  color: #333 !important;
  border: none !important;
  -webkit-border-radius: 6px !important;
  border-radius: 6px !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

form textarea {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 15px !important;
  color: #333 !important;
  padding: 10px 12px !important;
  border: none !important;
  -webkit-border-radius: 6px !important;
  border-radius: 6px !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  resize: none !important;
}

form button {
  font-weight: 500;
  color: #fff !important;
  text-align: center;
  line-height: normal;
  background: #4d4d4d;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  border: none;
  display: block;
  width: max-content;
}

form button:hover {
  color: #fff !important;
  background: #0c54a0 !important;
  border: none !important;
  text-decoration: none;
}

form button:focus {
  background: #4d4d4d;
  text-decoration: none;
  outline: none;
  outline-offset: none;
}

@media (min-width: 100px) {
  form button { font-size: 15px; margin: 0 auto; padding: 16px 30px; }
}

@media (min-width: 768px) {
  form button { font-size: 15px; margin: 0 auto; padding: 16px 30px; }
}

@media (min-width: 992px) {
  form button { font-size: 15px; margin: 0 0 0 auto; padding: 16px 30px; }
}

@media (min-width: 1250px) {
  form button { font-size: 16px; margin: 0 0 0 auto; padding: 16px 30px; }
}

/* FOOTER -------------------------------------------------------------------------------------- */

.footer {
  background: #f4f6fa
}

.footer h4 {
  font-weight: 700;
  font-size: 15px;
  line-height: 30px;
  color: #034886;
  margin: 0;
}

.footer p {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #034886;
}

.footer a {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #034886;
}

.footer a:hover {
  color: #009fac;
  text-decoration: none;
  cursor: pointer;
}

.footer a:focus {
  color: #203864;
  text-decoration: none;
  outline: none;
}

@media (min-width: 100px) {
	.footer { text-align: center !important; }
  .footer h4 { text-align: center !important; }
  .footer p { margin: 0; padding: 0; display: inline; }
  .footer .pDisplay { display: inline; }
  .footer .columnas { display: block; padding: 35px 0; }
	.footer .colsText { padding: 15px 15px; }
  .footer .colsText .img1 { margin: 0 auto; }
  .footer .colsLink p { margin: 10px 0 0 0; display: block; text-align: center; }
}

@media (min-width: 992px) {
	.footer { text-align: left !important; }
  .footer h4 { text-align: left !important; }
	.footer p { margin: 0; padding: 0; display: table; }
  .footer .pDisplay { display: none; }
  .footer .columnas { display: flex; padding: 50px 0; }
	.footer .colsText { padding: 0 30px; }
  .footer .colsText .img1 { margin: 0 0 0 auto; }
  .footer .colsLink p {  margin: 26px 0 0 0; display: block; text-align: right; }
}

/* BANNER -------------------------------------------------------------------------------------- */

.banner .texto { 
  padding: 100px 0 100px 0; 
}

.banner .texto h1 {
  color: #fff;
  font-weight: 700;
  padding: 0 2rem;
  font-size: min( max( (calc(100vw / 20)), 35px) , 50px);
  margin: 0;
}

.banner .texto h2 {
  color: #fff;
  font-weight: 400;
  padding: 0 2rem;
  font-size: min( max( (calc(100vw / 20)), 18px) , 28px);
  margin: 0.5rem 0 0 0;
}

@media (min-width: 100px) {
	.banner .texto h1 { text-align: center; }
  .banner .texto h2 { text-align: center; }
}

@media (min-width: 992px) {
	.banner .texto h1 { text-align: center; }
  .banner .texto h2 { text-align: center; }
}

/* MENSAJE ------------------------------------------------------------------------------------- */

.mensaje1 {
  background: #f1f1f7;
}

.mensaje2 {
  padding: 60px 15px;
  margin: 0 auto;
}

.mensaje2 p {
  color: #212121;
	text-align: center;
  padding: 0;
  margin: 80px 0;
}

@media (min-width: 100px) {
  .mensaje2 p { font-size: 20px; }
}

@media (min-width: 768px) {
  .mensaje2 p { font-size: 23px; }
}

@media (min-width: 992px) {
  .mensaje2 p { font-size: 25px; }
}

/* CARRUSEL ------------------------------------------------------------------------------------ */

.carrusel1 {
  background: #f1f1f7;
}

.carrusel2 {
  padding: 60px 15px;
  margin: 0 auto;
}

.carrusel2 .galeriacont {
  padding: 0 40px;
}

.carrusel2 .galeria {
  margin: 0 10px;
  text-align: center;
}

.carrusel2 .galeria img {
  margin: auto;
  -webkit-transition: all .6s ease;
  -ms-transition: all .6s ease;
  transition: all .6s ease;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

.carrusel2 .galeria img:hover {
  margin: auto;
  -webkit-transition: all .3s ease;
  -ms-transition: all .3s ease;
  transition: all .3s ease;
}

.carrusel2 .slick-prev, .carrusel2 .slick-prev:focus {
  width: 30px;
  height: 30px;
  left: 0px;
  background: url("../images/carrusel_arrow1.png") center top no-repeat;
  background-size: cover;
}

.carrusel2 .slick-prev:hover {
  background: url("../images/carrusel_arrow1h.png") center top no-repeat;
  background-size: cover;
}

.carrusel2 .slick-next, .carrusel2 .slick-next:focus {
  width: 30px;
  height: 30px;
  right: 0px;
  background: url("../images/carrusel_arrow2.png") center top no-repeat;
  background-size: cover;
}

.carrusel2 .slick-next:hover {
  background: url("../images/carrusel_arrow2h.png") center top no-repeat;
  background-size: cover;
}

.carrusel2 .slick-prev::before, .carrusel2 .slick-next::before {
  content: none;
}

.carrusel2 h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-align: center;
  color: #212121;
  padding: 0;
  margin: 10px 0 0 0;
}

.carrusel2 a:hover h3 {
  color: #0c54a0;
}

.carrusel2 a:hover {
  text-decoration: none;
}

@media (min-width: 100px) {
  .carrusel2 h3 { font-size: 18px; line-height: 20px; }
}

@media (min-width: 768px) {
  .carrusel2 h3 { font-size: 18px; line-height: 20px; }
}

@media (min-width: 992px) {
  .carrusel2 h3 { font-size: 20px; line-height: 22px; }
}

@media (min-width: 1250px) {
  .carrusel2 h3 { font-size: 20px; line-height: 22px; }
}

/* PAGINACION ---------------------------------------------------------------------------------- */

.paginacion {
  display: block;
  width: 100%;
  text-align: center;
}

.paginacion p {
  margin: 0 0 -5px 0;
}

.paginacion ul {
  padding: 0;
  margin: 10px 0 0 0;
  list-style-type: none;
}

.paginacion ul li {
  display: inline-block;
}

.paginacion ul li a { 
  font-family: "Open Sans", sans-serif;
  line-height: 34px;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  width: 36px;
  margin: 0 5px;
  background: white;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 8px 0 rgba(0,0,0,0.1);
  box-shadow: 0 5px 8px 0 rgba(0,0,0,0.1);
  display: block;
}

.paginacion ul li a:hover {
  color: #fff;
  background: #0c54a0;
}

.paginacion ul li a:focus {
  color: #212121;
  background: transparent;
  text-decoration: none;
}

.paginacion ul li span {
  font-family: "Open Sans", sans-serif;
  line-height: 34px;
  font-size: 15px;
  color: #fff;
  width: 36px;
  margin: 0 5px;
  background: #08396e;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  cursor: default;
  -webkit-box-shadow: 0 5px 8px 0 rgba(0,0,0,0.1);
  box-shadow: 0 5px 8px 0 rgba(0,0,0,0.1);
  display: block;
}

.paginacion .pagingContent {
  margin-bottom: 30px;
}

/* --------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------- */

/* HOME - SLIDER ------------------------------------------------------------------------------- */

.homeslider .fotorama__nav-wrap { display:none; }
.homeslider .fotorama__arr { width:40px; height:40px; top:50%; }
.homeslider .fotorama__arr--prev { background:url(../images/slider_arrow1.png) no-repeat; margin-left:8px; }
.homeslider .fotorama__arr--prev:hover { background:url(../images/slider_arrow1h.png) no-repeat; }
.homeslider .fotorama__arr--next { background:url(../images/slider_arrow2.png) no-repeat; margin-right:8px; }
.homeslider .fotorama__arr--next:hover { background:url(../images/slider_arrow2h.png) no-repeat; }

.homeslider .fotorama__html {
  display: flex;
  align-items: center;
  justify-content: center;
}

.homeslider {
  background-color: #000 !important;
}

.homeslider .slidertexto {
  margin: 0 auto;
}

.homeslider img {
  opacity: 0.7 !important;
}

.homeslider h1 {
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px #2E2E2E50;
}

.homeslider h2 {
  font-weight: 400;
  color: #fff;
  text-shadow: 0 2px 4px #2E2E2E50;
}

.homeslider .boton {
  font-weight: 500;
  color: #fff;
  background: #212121;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 5px 0px #2E2E2E;
  box-shadow: 0 0 5px 0px #2E2E2E;
  display: block;
  width: fit-content;
}

.homeslider .boton:hover {
  color: #fff !important;
  background: #0c54a0 !important;
  border: none !important;
  text-decoration: none;
}

@media (min-width: 100px) {
  .homeslider .slidertexto { padding: 5rem 40px 5rem 40px; text-align: center; }
  .homeslider h1 { font-size: 36px; line-height: 36px; width: 100%; margin-bottom: 20px; }
  .homeslider h2 { font-size: 20px; line-height: 20px; width: 100%; margin-bottom: 30px; }
  .homeslider .boton { font-size: 16px; margin: 0 auto; padding: 14px 40px; }
}

@media (min-width: 768px) {
  .homeslider .slidertexto { padding: 5rem 40px 5rem 40px; text-align: center; }
  .homeslider h1 { font-size: 46px; line-height: 46px; width: 100%; margin-bottom: 20px; }
  .homeslider h2 { font-size: 24px; line-height: 24px; width: 100%; margin-bottom: 30px; }
  .homeslider .boton { font-size: 18px; margin: 0 auto; padding: 16px 50px; }
}

@media (min-width: 992px) {
  .homeslider .slidertexto { padding: 5rem 40px 5rem 40px; text-align: center; }
  .homeslider h1 { font-size: 52px; line-height: 52px; width: 100%; margin-bottom: 20px; }
  .homeslider h2 { font-size: 28px; line-height: 28px; width: 100%; margin-bottom: 30px; }
  .homeslider .boton { font-size: 20px; margin: 0 auto; padding: 18px 60px; }
}

@media (min-width: 1250px) {
  .homeslider .slidertexto { padding: 5rem 15px 5rem 15px; text-align: center; }
  .homeslider h1 { font-size: 55px; line-height: 55px; width: 100%; margin-bottom: 20px; }
  .homeslider h2 { font-size: 30px; line-height: 30px; width: 100%; margin-bottom: 30px; }
  .homeslider .boton { font-size: 20px; margin: 0 auto; padding: 18px 60px; }
}

/* HOME - LINKS -------------------------------------------------------------------------------- */

.home_links1 {
  background: #232D36;
}

.home_links2 {
  padding: 60px 15px 30px 15px;
  margin: 0 auto;
}

.home_links2 .col1, .home_links2 .col2, .home_links2 .col3 {
  align-items: center;
  justify-content: flex-end;
}

.home_links2 h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-align: center;
  color: #fff;
  padding: 0;
  margin: 0 0 15px 0;
}

.home_links2 .boton {
  font-weight: 500;
  color: #fff;
  background: #4d4d4d;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 5px 0px #2E2E2E;
  box-shadow: 0 0 5px 0px #2E2E2E;
  display: block;
  width: fit-content;
  margin: 0 auto 30px auto;
}

.home_links2 .boton:hover {
  color: #fff !important;
  background: #0c54a0 !important;
  border: none !important;
  text-decoration: none;
}

@media (min-width: 100px) {
  .home_links2 h3 { font-size: 28px; line-height: 30px; }
  .home_links2 .boton { font-size: 16px; padding: 14px 40px; }
}

@media (min-width: 768px) {
  .home_links2 h3 { font-size: 28px; line-height: 30px; }
  .home_links2 .boton { font-size: 18px; padding: 16px 50px; }
}

@media (min-width: 992px) {
  .home_links2 h3 { font-size: 30px; line-height: 32px; }
  .home_links2 .boton { font-size: 20px; padding: 18px 60px; }
}

@media (min-width: 1250px) {
  .home_links2 h3 { font-size: 30px; line-height: 32px; }
  .home_links2 .boton { font-size: 20px; padding: 18px 60px; }
}

/* HOME - ICONOS ------------------------------------------------------------------------------- */

.home_iconos1 {
  background: #fff;
}

.home_iconos2 {
  padding: 60px 15px 30px 15px;
  margin: 0 auto;
}

.home_iconos2 .info {
  margin: 0 0 30px 0;
}

.home_iconos2 img {
  margin: auto;
}

.home_iconos2 h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-align: center;
  color: #212121;
  padding: 0;
  margin: 10px 0 0 0;
}

.home_iconos2 a:hover h3 {
  color: #0c54a0;
}

.home_iconos2 a:hover {
  text-decoration: none;
}

.home_iconos2 h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-align: center;
  color: #212121;
  padding: 0;
  margin: 20px 0 30px 0;
}

.home_iconos2 p {
  font-weight: 400;
  color: #212121;
  text-align: center;
  margin: 10px 0 0 0;
}

@media (min-width: 100px) {
  .home_iconos2 h3 { font-size: 20px; line-height: 22px; }
  .home_iconos2 h4 { font-size: 28px; line-height: 30px; }
  .home_iconos2 p { font-size: 15px; line-height: 18px; }
}

@media (min-width: 768px) {
  .home_iconos2 h3 { font-size: 20px; line-height: 22px; }
  .home_iconos2 h4 { font-size: 28px; line-height: 30px; }
  .home_iconos2 p { font-size: 15px; line-height: 18px; }
}

@media (min-width: 992px) {
  .home_iconos2 h3 { font-size: 20px; line-height: 22px; }
  .home_iconos2 h4 { font-size: 30px; line-height: 32px; }
  .home_iconos2 p { font-size: 16px; line-height: 20px; }
}

@media (min-width: 1250px) {
  .home_iconos2 h3 { font-size: 22px; line-height: 24px; }
  .home_iconos2 h4 { font-size: 30px; line-height: 32px; }
  .home_iconos2 p { font-size: 16px; line-height: 20px; }
}

/* TEXTO - IMAGEN ------------------------------------------------------------------------------ */

.textoimagen2 {
  padding: 60px 15px 60px 15px;
  margin: 0 auto;
}

.textoimagen2 .col {
  justify-content: center;
}

.textoimagen2 p {
  font-weight: 400;
  color: #212121;
  text-align: left;
}

.textoimagen2 img {
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

.textoimagen2 .logo {
  width: fit-content;
  margin: 0 0 20px 0;
}

@media (min-width: 100px) {
  .textoimagen2 p { font-size: 15px; line-height: 24px; margin: 0; }
  .textoimagen2 img { margin-top: 30px; }
}

@media (min-width: 768px) {
  .textoimagen2 p { font-size: 16px; line-height: 24px; margin: 0; }
}

@media (min-width: 992px) {
  .textoimagen2 p { font-size: 14px; line-height: 20px; margin: 0; }
  .textoimagen2 img { margin-top: 0; }
}

@media (min-width: 1250px) {
  .textoimagen2 p { font-size: 16px; line-height: 24px; margin: 0; }
}

/* TARJETAS ------------------------------------------------------------------------------------ */

.tarjetas2 {
  padding: 60px 15px 30px 15px;
  margin: 0 auto;
}

.tarjetas2 .tarjeta {
  height: 100%;
  padding: 15px;
  margin-bottom: 30px;
  background-color: #fff;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

.tarjetas2 .terjeta_btn {
  position: relative;
  padding: 15px 15px 75px 15px !important;
}

.tarjetas2 img {
  -webkit-border-radius: 6px;
  border-radius: 6px;
  margin: auto;
  /* width: 165px;
  height: 125px; */
}

.tarjetas2 h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: center;
  color: #0c54a0;
  padding: 0;
  margin: 0 0 30px 0;
}

.tarjetas2 h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-align: center;
  color: #212121;
  padding: 0;
  margin: 0 0 5px 0;
}

.tarjetas2 h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-align: center;
  color: #212121;
  padding: 0;
  margin: 10px 0 5px 0;
}

.tarjetas2 h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #212121;
  text-align: center;
  padding: 0;
  margin: 0;
}

.tarjetas2 p {
  font-weight: 400;
  color: #212121;
  text-align: center;
}

.tarjetas2 .boton {
  font-weight: 500;
  color: #fff;
  background: #212121;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  display: block;
  margin: auto;
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
}

.tarjetas2 .boton:hover {
  color: #fff !important;
  background: #0c54a0 !important;
  border: none !important;
  text-decoration: none;
}

@media (min-width: 100px) {
  .tarjetas2 h2 { font-size: 30px; line-height: 34px; }
  .tarjetas2 h3 { font-size: 20px; line-height: 22px; }
  .tarjetas2 h4 { font-size: 15px; line-height: 17px; }
  .tarjetas2 h5 { font-size: 13px; line-height: 15px; }
  .tarjetas2 p { font-size: 15px; line-height: 24px; margin: 0; }
  .tarjetas2 .boton { font-size: 16px; padding: 16px 30px; }
  .tarjetas2 .boton_prod { font-size: 15px; padding: 10px 20px; }
  .tarjetas2 .colprod1 { order: 2; }
  .tarjetas2 .colprod2 { order: 1; margin: 0 0 0 0; }
}

@media (min-width: 768px) {
  .tarjetas2 h2 { font-size: 30px; line-height: 34px; }
  .tarjetas2 h3 { font-size: 20px; line-height: 22px; }
  .tarjetas2 h4 { font-size: 15px; line-height: 17px; }
  .tarjetas2 h5 { font-size: 13px; line-height: 15px; }
  .tarjetas2 p { font-size: 16px; line-height: 24px; margin: 0; }
  .tarjetas2 .boton { font-size: 18px; padding: 16px 30px; }
  .tarjetas2 .boton_prod { font-size: 15px; padding: 10px 20px; }
}

@media (min-width: 992px) {
  .tarjetas2 h2 { font-size: 30px; line-height: 34px; }
  .tarjetas2 h3 { font-size: 20px; line-height: 22px; }
  .tarjetas2 h4 { font-size: 15px; line-height: 17px; }
  .tarjetas2 h5 { font-size: 13px; line-height: 15px; }
  .tarjetas2 p { font-size: 14px; line-height: 20px; margin: 0; }
  .tarjetas2 .boton { font-size: 16px; padding: 16px 30px; }
  .tarjetas2 .boton_prod { font-size: 15px; padding: 10px 20px; }
  .tarjetas2 .colprod1 { order: 1; }
  .tarjetas2 .colprod2 { order: 2; margin: 0 0 0 0; }
}

@media (min-width: 1250px) {
  .tarjetas2 h2 { font-size: 32px; line-height: 36px; }
  .tarjetas2 h3 { font-size: 22px; line-height: 24px; }
  .tarjetas2 h4 { font-size: 15px; line-height: 17px; }
  .tarjetas2 h5 { font-size: 13px; line-height: 15px; }
  .tarjetas2 p { font-size: 16px; line-height: 24px; margin: 0; }
  .tarjetas2 .boton { font-size: 18px; padding: 16px 30px; }
  .tarjetas2 .boton_prod { font-size: 15px; padding: 10px 20px; }
}

/* ------------------------------------------- */

.tarjetas2 .input-group input {
  border: none !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.tarjetas2 .input-group button {
  border: 1px solid #fff;
}

.tarjetas2 .input-group button:hover, .tarjetas2 .input-group button:focus {
  color: #212121;
  background-color: #fff;
  border-color: #fff;
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

/* ------------------------------------------- */

.tarjetas2 .categorias {
  padding: 15px 0;
}

.tarjetas2 .categorias h3 {
  text-align: left;
  margin: 0 0 10px 0;
  padding: 0 14px;
  font-size: 18px;
  color: #0c54a0;
  font-weight: 600;
}

.tarjetas2 .categorias a {
  font-weight: 400;
  color: #212121;
  text-align: left;
  display: block;
  padding: 8px 14px;
  line-height: 16px;
  border-bottom: 1px solid #eee;
}

.tarjetas2 .categorias a:hover {
  text-decoration: none;
  background-color: #f8f8f9;
}

.tarjetas2 .categorias .categoria-padre {
    border-left: 3px solid #0c54a0;
}

.tarjetas2 .categorias .subcategoria {
    border-left: 3px solid #117bed;
}

/* ------------------------------------------- */

.tarjetas2 .catalogo {
  font-weight: 500;
  color: #fff;
  background: #4d4d4d;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  display: block;
  width: fit-content;
  margin: 0 auto 30px auto;
}

.tarjetas2 .catalogo:hover {
  color: #fff !important;
  background: #0c54a0 !important;
  border: none !important;
  text-decoration: none;
}

@media (min-width: 100px) {
  .tarjetas2 .catalogo { font-size: 16px; padding: 14px 40px; }
}

@media (min-width: 768px) {
  .tarjetas2 .catalogo { font-size: 18px; padding: 16px 50px; }
}

@media (min-width: 992px) {
  .tarjetas2 .catalogo { font-size: 20px; padding: 18px 60px; }
}

@media (min-width: 1250px) {
  .tarjetas2 .catalogo { font-size: 20px; padding: 18px 60px; }
}

/* ------------------------------------------- */

.tarjetas2 .certificado .col {
  justify-content: center;
}

.tarjetas2 .cert_boton {
  font-weight: 500;
  color: #fff;
  background: #4d4d4d;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  display: block;
  width: fit-content;
  margin: 0 auto 30px auto;
}

.tarjetas2 .cert_boton:hover {
  color: #fff !important;
  background: #0c54a0 !important;
  border: none !important;
  text-decoration: none;
}

@media (min-width: 100px) {
  .tarjetas2 .certificado h4 { text-align: center; }
  .tarjetas2 .certificado .cert_boton { font-size: 16px; padding: 10px 24px; margin: 4px auto 0 auto; }
}

@media (min-width: 768px) {
  .tarjetas2 .certificado h3 { text-align: left; }
  .tarjetas2 .certificado .cert_boton { font-size: 16px; padding: 10px 24px; margin: 0 0 0 auto; }
}

@media (min-width: 992px) {
  .tarjetas2 .certificado h3 { text-align: left; }
  .tarjetas2 .certificado .cert_boton { font-size: 16px; padding: 10px 24px; }
}

@media (min-width: 1250px) {
  .tarjetas2 .certificado h3 { text-align: left; }
  .tarjetas2 .certificado .cert_boton { font-size: 18px; padding: 12px 30px; }
}

/* FICHA --------------------------------------------------------------------------------------- */

.ficha1 {
  background: #f1f1f7;
}

.ficha2 {
  padding: 60px 15px 40px 15px;
  margin: 0 auto;
}

.ficha3 {
  background-color: #fff;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  margin: 0 0 20px 0;
  padding: 20px;
}

.ficha .prodimg {
  margin: auto;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

.ficha h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: left;
  color: #0c54a0;
  padding: 0;
  margin: 20px 0 10px 0;
}

.ficha h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-align: left;
  color: #212121;
  padding: 0;
  margin: 20px 0 10px 0;
}

.ficha h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-align: left;
  color: #212121;
  padding: 0;
  margin: 0 0 20px 0;
}

.ficha p, .ficha li, .ficha span {
  font-weight: 400;
  color: #212121;
  text-align: left;
  margin: 0;
}

.ficha .prodlink {
  font-weight: 400;
  text-align: left;
  margin: 20px 0 0 0 !important;
  display: block;
}

.ficha ul {
  margin: 0;
}

.ficha a {
  color: #08396e;
  text-align: left;
  margin: 3px 0;
  display: inline-block;
}

.ficha a:hover, .ficha a:focus {
  color: #0c54a0;
  text-decoration: none;
}

.ficha .contactenos {
  font-weight: 700;
  text-align: center;
  margin: 0 0 10px 0;
}

.ficha hr {
  margin: 15px 0 10px 0;
}

@media (min-width: 100px) {
  .ficha h2 { font-size: 30px; line-height: 34px; }
  .ficha h3 { font-size: 20px; line-height: 22px; }
  .ficha h4 { font-size: 14px; line-height: 16px; }
  .ficha p, .ficha li, .ficha span, .ficha .prodlink { font-size: 15px; line-height: 24px; margin: 0; }
}

@media (min-width: 768px) {
  .ficha h2 { font-size: 30px; line-height: 34px; }
  .ficha h3 { font-size: 20px; line-height: 22px; }
  .ficha h4 { font-size: 14px; line-height: 16px; }
  .ficha p, .ficha li, .ficha span, .ficha .prodlink { font-size: 16px; line-height: 24px; margin: 0; }
}

@media (min-width: 992px) {
  .ficha h2 { font-size: 30px; line-height: 34px; }
  .ficha h3 { font-size: 20px; line-height: 22px; }
  .ficha h4 { font-size: 15px; line-height: 17px; }
  .ficha p, .ficha li, .ficha span, .ficha .prodlink { font-size: 14px; line-height: 20px; margin: 0; }
}

@media (min-width: 1250px) {
  .ficha h2 { font-size: 32px; line-height: 36px; }
  .ficha h3 { font-size: 22px; line-height: 24px; }
  .ficha h4 { font-size: 16px; line-height: 18px; }
  .ficha p, .ficha li, .ficha span, .ficha .prodlink { font-size: 16px; line-height: 24px; margin: 0; }
}

/* ------------------------------------------- */

.ficha .boton {
  font-weight: 500;
  color: #fff !important;;
  background: #4d4d4d;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.ficha .boton:hover {
  color: #fff !important;
  background: #0c54a0 !important;
  border: none !important;
  text-decoration: none;
}

@media (min-width: 100px) {
  .ficha .boton { font-size: 15px; padding: 10px 20px; }
}

@media (min-width: 768px) {
  .ficha .boton { font-size: 15px; padding: 10px 20px; }
}

@media (min-width: 992px) {
  .ficha .boton { font-size: 16px; padding: 10px 20px; }
}

@media (min-width: 1250px) {
  .ficha .boton { font-size: 16px; padding: 10px 20px; }
}

/* ------------------------------------------- */

.fichaslider .fotorama__nav-wrap { display:none; }
.fichaslider .fotorama__arr { width:40px; height:40px; top:50%; }
.fichaslider .fotorama__arr--prev { background:url(../images/slider_arrow1.png) no-repeat; margin-left:8px; }
.fichaslider .fotorama__arr--prev:hover { background:url(../images/slider_arrow1h.png) no-repeat; }
.fichaslider .fotorama__arr--next { background:url(../images/slider_arrow2.png) no-repeat; margin-right:8px; }
.fichaslider .fotorama__arr--next:hover { background:url(../images/slider_arrow2h.png) no-repeat; }

.fichaslider .fotorama__html {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fichaslider .fotorama__stage {
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

.fichaslider, .fotorama {
  overflow: visible !important;
}

.fotorama .zoom-hover {
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  cursor: zoom-in;
  position: relative;
}
.fotorama .zoom-hover.zooming {
  cursor: zoom-in;
  transition: none;
  z-index: 2;
}

/* ------------------------------------------- */

.ficha .nav-tabs {
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

.ficha .nav-tabs li a {
  font-weight: 400;
  color: #212121;
  border: none;
  border-bottom: 3px solid #fff;
  margin: 0;
  padding: 6px 12px;
}

.ficha .nav-tabs>li.active>a, .ficha .nav-tabs>li.active>a:hover, .ficha .nav-tabs>li.active>a:focus {
  color: #212121;
  border: none;
  border-bottom: 3px solid #0c54a0;
}

.ficha .nav-tabs>li>a:hover {
  border: none;
  border-bottom: 3px solid #117bed;
  background-color: transparent;
}

.ficha .tab-content {
  padding: 10px 0 0 0;
  border-radius: 0 0 4px 4px;
}

.ficha .btncat {
  margin: 10px 0 0 0;
}

@media (min-width: 100px) {
  .ficha .nav-tabs li a { font-size: 15px; }
}

@media (min-width: 768px) {
  .ficha .nav-tabs li a { font-size: 15px; }
}

@media (min-width: 992px) {
  .ficha .nav-tabs li a { font-size: 16px; }
}

@media (min-width: 1250px) {
  .ficha .nav-tabs li a { font-size: 16px; }
}