@charset "utf-8";
/* CSS Document */

/* -------------------------------------------------------
   Fonts
------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Allura&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* -------------------------------------------------------
   Base
------------------------------------------------------- */
html,
body {
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  color: #121212;
}

p { line-height: 1.3; }

a { color: #302723; }
a:hover { color: #7f7f7f; }

blockquote { color: #65413f; }

hr {
  border: #c99966 1px solid;
  width: 100%;
}
hr.peque {
  border: #fff 2px solid;
  width: 10%;
}
hr.hr_green { border-top: #004c28 1px solid; width: 100%; }
hr.hr_blue_left {
  border-top: #00427b 2px solid;
  width: 10%;
  text-align: left;
  display: inline-block;
}

/* -------------------------------------------------------
   Helpers / Utilities
------------------------------------------------------- */
.img-responsive { width: 100%; height: auto !important; }
.fone { color: #fff; }
.red { color: #302723; }

.centradol { text-align: left; }
.centrador { text-align: right; }

.mycontainer { max-width: 1400px !important; }
.sticky-top { position: sticky; }

.altura { margin-top: -250px; }

/* -------------------------------------------------------
   Header / Logo
------------------------------------------------------- */
.logo { max-width: 300px; }

.cd-header {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0;
  z-index: 10000;
  transition: all 0.2s ease-in-out;
}

.cd-header.active {
  background: rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* -------------------------------------------------------
   Layout heights / blocks
------------------------------------------------------- */
.alto_cabecero { min-height: 200px; }
.alto_cabecero_con { min-height: 700px; }
.alto_titular { margin-top: 5%; }

.medinadeltaco,
.medinadeltaco_black {
  background-color: #000;
  padding: 10px;
  color: #fff !important;
  width: auto;
}

/* -------------------------------------------------------
   Menu (desktop)
------------------------------------------------------- */
.nav-link {
  position: relative;
  margin-left: 10px;
  font-size: 18px;
  letter-spacing: 3px;
  font-weight: 600;
  text-align: center;
  color: #000 !important;
  border-radius: 0px !important;
  text-transform: uppercase;
  padding-bottom: 16px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.nav-link:hover,
.activem {
  color: #d06f28 !important;
  border-bottom: 6px solid #d06f28;
  padding-bottom: 10px !important;
}

/* -------------------------------------------------------
   Cards
------------------------------------------------------- */
.card {
  border: none;
  background-color: transparent !important;
  border-radius: 0px;
}

.card-body { padding: 1.25rem; }
.card-body_not { padding: 3.25rem; }

.card.ficha1 {
  border: none;
  background-color: #f7f7f7;
  margin-left: 8px;
  margin-right: 7px;
}
.card.ficha2 { border: none; }

/* -------------------------------------------------------
   Typography
------------------------------------------------------- */
h1 {
  font-size:6em;
  color: #fff;
  margin-bottom: 0px !important; font-family: "Allura", cursive;   font-weight: 900 !important;
}
h1.titular {
  font-size: 1.5em;
  font-weight: 400 !important;
  text-transform: uppercase;
  color: #fff !important;   font-family: "Open Sans", sans-serif !important;
}

h2 { font-size: 1.8em; font-weight: 400; }
h2.h2_tit { font-size: 1.6rem; color: #fff; }
h2.h2_index { font-size: 3.5vw; font-weight: 600; }
h2.h2_sombra {
  font-size: 2.8vw;
  font-weight: 600;
  text-shadow: 12px 6px 2px rgba(0, 0, 0, 0.2);
}
h2.h2_p { font-size: 3vw; font-weight: 800; }
h2.h2_p_pie { font-size: 1vw; font-weight: 400; }
h2.h2_g { font-size: 7.8rem; font-weight: 300; color: #fff; }

h3 { font-size: 22px; color: #fff; }
h3.h3_tit { font-size: 40px; }

h4 {
  font-size: 1.3em;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}
h5 { font-size: 24px; color: #fff; }
h6 { font-size: 20px; font-weight: 700; }
h6.faq { font-size: 18px; font-weight: 500; color: #000; }

/* -------------------------------------------------------
   Icons / Social
------------------------------------------------------- */
.ico_redes { font-size: 22px; color: #000; padding: 5px; }
.ico_redes_red {
  font-size: 26px;
  color: #000;
  padding: 15px;
  background-color: #000;
  border-radius: 30px;
}
.ico_redes_g { font-size: 24px; color: #374ad1; padding: 0px 10px; }

.ico { font-size: 40px; color: #3a3543; }
.ico_big { font-size: 60px; color: #3a3543; margin-bottom: 10px; }

/* -------------------------------------------------------
   Links (variants)
------------------------------------------------------- */
.link-azul,
.link-azul:hover,
.link-azul:visited,
.link-azul:visited:hover {
  color: #000;
  font-size: 14px;
  text-decoration: none;
}

.link-blanco,
.link-blanco:hover,
.link-blanco:visited,
.link-blanco:visited:hover {
  font-size: 20px;
  color: #fff;
}

.link-gris,
.link-gris:hover,
.link-gris:visited,
.link-gris:visited:hover { color: #fff; }

.link-negro,
.link-negro:hover,
.link-negro:visited,
.link-negro:visited:hover { color: #333333; }

/* -------------------------------------------------------
   Footer
------------------------------------------------------- */
.bordepie { border: 1px solid #eee; }
.padpie { padding: 40px 80px; }
.pie1 { color: #00427b; padding-top: 40px; }
.linea-pie { background-color: #d1d4d6; width: 16px; height: 2px; }

.prodesin { padding-bottom: 20px; }

/* -------------------------------------------------------
   Home blocks / Sections
------------------------------------------------------- */
.tpresenta { text-align: center; }
.tpresentas { text-align: center; margin-top: 100px; }

.accesos { margin-top: -250px; padding-bottom: 90px; }

.home-equipo {
  position: absolute;
  z-index: 5;
  background-color: #ffffff;
  height: auto;
  width: 300px;
  right: 0px;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  padding: 23px;
}

.home-areas {
  position: absolute;
  z-index: 5;
  background-color: #ffffff;
  height: auto;
  width: 300px;
  left: 0px;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  color: #fff;
  padding: 23px;
}

.subtit { font-size: 18px; color: #00427b; }
.subtit2 { font-size: 18px; color: #ffffff; }

.areat { padding-bottom: 15px; }
.situa { margin-top: -200px; }

.areasico-1 { background-color: #00427b; padding: 15px; }
.areasico-2 { background-color: #0099cc; padding: 10px; }

.area-1 { background-color: #f9f9f9; padding-top: 20px; text-align: left; }
.area-2 { background-color: #f1f1f1; padding-top: 20px; }

.linea_fondo {
  background-image: url(../images/flecha_busca.png);
  background-repeat: repeat-y;
  background-position: center;
}

/* -------------------------------------------------------
   Forms
------------------------------------------------------- */
.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 25px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #c09c73;
  background-color: #fff;
  background-clip: padding-box;
  border: 2px solid #c09c73;
  border-radius: 0px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form_select {
  display: block;
  width: 100%;
  height: calc(1em + 0.25rem + 2px);
  padding: 1px;
  font-size: 16px;
  line-height: 1.5;
  color: #3a3543;
  background-color: #fff !important;
  border-bottom: 2px solid #eeeff1;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  background: url(../imagenes/flecha_busca.png);
  background-position: right !important;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  padding-left: 20px;
  margin-top: 10px !important;
}

/* -------------------------------------------------------
   Tabs
------------------------------------------------------- */
nav > .nav.nav-tabs { border: none; }

nav > div a.nav-item.nav-link_tab {
  padding: 15px 10px;
  color: #014b26;
  font-size: 24px;
  font-weight: 400;
}

nav > div a.nav-item.nav-link_tab.active {
  color: #c2c337;
  background-color: #fff;
}

nav > div a.nav-item.nav-link_tab:hover,
nav > div a.nav-item.nav-link_tab:focus {
  background: #fff;
  color: #c2c337;
  transition: background 0.2s linear;
  text-decoration: none;
}

.tab-content { line-height: 25px; }

.tab {
  height: auto;
  padding: 10px;
}

.tab a {
  display: inline-block;
  padding: 6px 10px;
  text-align: center;
  border-radius: 20px;
  background-color: #ebebeb;
  margin: 0 5px;
  text-decoration: none;
  color: #000;
}
.tab a:hover { background-color: #ffcc00; }

/* -------------------------------------------------------
   Modal
------------------------------------------------------- */
.modal { background-color: rgba(255, 255, 255, 1) !important; z-index: 2000; }

.modal-body {
  padding: 20px !important;
  border-radius: 0px !important;
}

.modal-content {
  border: none !important;
  border-radius: 0px !important;
}

/* -------------------------------------------------------
   Gallery / Media
------------------------------------------------------- */
.alto_caja { max-width: 355px; max-height: 355px; min-width: 355px; min-height: 355px; }
.alto_circulo { max-width: 330px; max-height: 330px; min-width: 330px; min-height: 330px; }

.logoinf { width: 268px; }

.galeria { height: 400px; }
.fotos_galeria {
  min-height: 400px;
  max-height: 400px;
  width: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

/* -------------------------------------------------------
   Buttons
------------------------------------------------------- */
.btn {
  border-radius: 0px !important;
  transition: none !important;
}

/* Button: fondo */
.btn_fb {
  color: #fff !important;
  padding: 20px 40px;
  background-color: #302723;
  text-align: center;
}
.btn_fb:hover {
  color: #fff !important;
  background-color: #666;
  text-decoration: none;
}

/* Button: fondo azul oscuro */
.btn_fb_dark {
  font-size: 12px;
  color: #fff !important;
  padding: 5px 50px;
  background-color: #374ad1;
  text-align: center;
}
.btn_fb_dark:hover {
  color: #fff !important;
  background-color: #000;
  text-decoration: none;
}

/* Button: borde blanco */
.btn_brw {
  color: #fff !important;
  width: 100%;
  padding: 10px 80px;
  background-color: #cc701f;
  text-align: center;
  border: 2px solid #fff !important;
}
.btn_brw:hover {
  color: #65413f !important;
  background-color: #fff;
  text-decoration: none;
  border: 2px solid #65413f !important;
}

/* Button: fondo */
.btn_fv {
  color: #fff !important;
  padding: 5px 60px;
  background-color: #302723;
  text-align: center;
}
.btn_fv:hover {
  color: #fff !important;
  background-color: #000;
  text-decoration: none;
}

/* Button: fondo + borde redondo */
.btn_fvo {
  color: #fff !important;
  padding: 5px 60px;
  background-color: #302723;
  text-align: center;
  border-radius: 10px;
}
.btn_fvo:hover {
  color: #fff !important;
  background-color: #000;
  text-decoration: none;
}

/* Button: borde */
.btn_bb {
  color: #fff !important;
  padding: 15px 60px;
  background-color: transparent;
  text-align: center;
  border: 3px solid #65413f !important;
  font-size: 1.3rem;
  font-weight: 900;
}
.btn_bb:hover {
  background-color: transparent;
  border: 3px solid #ccc !important;
  text-decoration: none;
}

/* Pills */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #333 !important;
  background-color: transparent !important;
  border-bottom: 3px solid #752fdd;
}

.nav-pills .nav-link {
  border-radius: 40px;
  color: #333 !important;
  border-bottom: 3px solid #ccc;
  margin-right: 10px;
}

/* -------------------------------------------------------
   Search (header)
------------------------------------------------------- */
#searchform {
  display: inline;
  font-size: 1em;
  padding: 0.3em;
}

#s {
  transition: all 0.2s ease-out;
  width: 1px;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  padding: 0;
  margin: 0;
  border: 0;
  background-color: transparent;
  opacity: 0;
  color: #fff;
}
#s:focus {
  width: 8em;
  opacity: 1;
}

label {
  padding-left: 1px;
  display: inline-block;
  margin-top: 0.3em;
  position: relative;
  left: 0.1em;
  cursor: pointer;
}

/* -------------------------------------------------------
   Mobile menu (overlay)
------------------------------------------------------- */
.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  background-color: #000;
  background-size: cover;
  overflow-y: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 100px;
}

.overlay ul { list-style: none; margin: 0px; padding: 0px; }
.overlay ul li { transition: 0.9s; margin: 0px; padding: 0px; }

.overlay a {
  padding: 10px;
  text-decoration: none;
  font-size: 18px;
  color: #fff !important;
  display: block;
  transition: 0.9s;
  text-transform: uppercase;
}

.overlay a:hover,
.overlay a:focus { color: #65413f; }

.overlay .closebtn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 50px;
  font-weight: 200;
}

/* -------------------------------------------------------
   Pagination
------------------------------------------------------- */
.pagination { list-style: none outside none; margin: 0 auto; padding: 0; }
.pagination > li { float: left; padding: 1px; }

.pagination > li > a,
.pagination > li > span {
  float: left;
  padding: 7px 20px;
  margin: 6px;
  line-height: 1.428571429;
  text-decoration: none;
  background-color: transparent;
  border: 3px solid #ebebeb;
  color: #00427b;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span { margin-left: 0; }

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  border: 3px solid #374ad1;
  padding: 7px 20px;
  color: #000;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #000;
  cursor: default;
  padding: 7px 20px;
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #ebebeb;
  cursor: not-allowed;
  background-color: transparent;
  border-color: #ebebeb;
  padding: 7px 20px;
}

/* -------------------------------------------------------
   Components
------------------------------------------------------- */
.tapa-item {
  background-color: #c09c73;
  padding: 5px 15px;
  margin-bottom: 8px;
  margin-top: 8px;
  border-radius: 0px;
  text-align: center;
}

/* Zoom */
.zoom { transition: transform 0.2s; }
.zoom:hover { transform: scale(1.1); }

#cookie-settings-link {
  position: fixed;
  bottom: 0px;
  left: 8px;
  z-index: 9999999999;
}

/* -------------------------------------------------------
   Media queries
------------------------------------------------------- */

/* iPad vertical */
@media only screen and (max-width: 835px) {
  .logo { width: 250px; }
  .nomovil, #nomovil { display: none; }
  .alto_cabecero { min-height: 300px; }
  h1.titular { font-size: 0.8em !important; }
}

@media only screen and (min-width: 992px) {
  .solomovil, #solomovil { display: none; }
}

/* iPad horizontal / screens */
@media only screen and (max-width: 1500px) {
  .alto_titular { margin-top: 25%; }
}

/* iPhone plus */
@media only screen and (max-width: 480px) {
  html, body { font-size: 18px; }
  h1 { font-size: 2em !important; }
  h1.titular { font-size: 0.7em; }

  h2.h2_index { font-size: 2rem !important; }
  h2.h2_g { font-size: 10vw; }
  h2.h2_p { font-size: 8vw; }
  h2.h2_p_pie { font-size: 5vw; }

  h4 { font-size: 4vw; }
  h2.h2_tit { font-size: 0.8em; }

  .alto_cabecero { min-height: 200px; }
  .alto_titular { margin-top: 35%; }

  .centradol,
  .centrador { text-align: center; }

  .linea_fondo { background-image: none; }
}

@media only screen and (max-width: 375px) {
  .alto_titular { margin-top: 25%; }
}
