/*******************************************************************************************************
    CSS GENERAL
*****************************************************************************************************/
/* DEFINICION DE LAS FUENTES TIPOGRÁFICAS
*****************************************/
/* General Negrita */
@font-face {
    font-family: 'momcake_bold';
    src: url('momcake/Momcake-Bold.otf');
    font-weight: normal;
    font-style: normal;
}
/* General Delgada */
@font-face {
    font-family: 'momcake_thin';
    src: url('momcake/Momcake-Thin.otf');
    font-weight: normal;
    font-style: normal;
}
/* Textos */
@font-face {
    font-family: 'myriad_pro_regular';
    src: url('myriad-pro/MyriadPro-Regular.otf');
    font-weight: normal;
    font-style: normal;
}
/* Títulos: Gotham medium */
@font-face {
    font-family: 'gotham_mediumregular';
    src: url('gotham/gotham-medium-webfont.eot');
    src: url('gotham/gotham-medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('gotham/gotham-medium-webfont.woff2') format('woff2'),
         url('gotham/gotham-medium-webfont.woff') format('woff'),
         url('gotham/gotham-medium-webfont.ttf') format('truetype'),
         url('gotham/gotham-medium-webfont.svg#gotham_mediumregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'gotham_bold';
    src: url('gotham/Gotham-Bold.ttf') format('truetype'),
         url('gotham/Gotham-Bold.otf');
    font-weight: normal;
    font-style: normal;
}
/* Texto: Gotham light */
@font-face {
    font-family: 'gotham_light';
    src: url('gotham/Gotham-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
  font-family: 'gotham_light';
  background-color: #fff;
}

.contenedor_slider {
  padding: 0 14px !important;
}

a,
.btn-link,
.page-link {
  color: #fff;
  outline: none;
  text-decoration: none;
}
a:hover,
.btn-link:hover,
.page-link:hover {
  text-decoration: none;
}
.page-link,
.page-link:hover {
  color: #f3a540;
}

.fuente_titulos {
  font-family: 'momcake_bold';
}
.fuente_titulo_light {
  font-family: 'momcake_thin';
}
.fuente_texto {
  font-family: 'gotham_light';
}
.fuente_texto_negrita {
  font-family: 'gotham_bold';
}

.tamanio_texto_08 {
  font-size: .8rem;
}
.tamanio_texto_09 {
  font-size: .9rem;
}
.tamanio_texto_1 {
  font-size: 1rem;
}
.tamanio_texto_11 {
  font-size: 1.1rem !important;
}
.tamanio_texto_12 {
  font-size: 1.2rem !important;
}
.tamanio_texto_14 {
  font-size: 1.4rem !important;
}
.tamanio_texto_20 {
  font-size: 2rem !important;
}
.tamanio_texto_40 {
  font-size: 4rem;
}

.color_gris {
  color: #646464;
}
.color_negro_oscuro {
  color: #1f2f48;
}
.color_rosa {
  color: #fc57bd;
}
.color_amarillo {
  color: #ffc700;
}
.color_dorado {
  color: #f7b300;
}
.color_bordo {
  color: #9f2e5c;
}
.color_celeste {
  color: #08cfec;
}
.color_azul_oscuro {
  color: #007371;
}
.color_azul_claro {
  color: #3386d2;
}

.fondo_amarillo {
  background-color: #ffe400;
}
.fondo_gris {
  background-color: #f2f3f4;
}
.fondo_azul {
  background-color: #3c8cd3;
}
.fondo_azul_oscuro {
  background-color: #2e6da3;
}

.altura_linea_1 {
   line-height: 1;
}

#modal_general {
  z-index: 1706;
}

/* CABECERA
--------------------------------------------------- */
.borde_cabecera {
  border-bottom: 9px solid #18589f;
}
#nro_whatsapp_encabezado {
  color: #546a77;
}

/* MENÚ SUPERIOR
--------------------------------------------------- */
#logo_home {
  width: 14%;
  margin-left: 80px;
  margin-right: 80px;
}
#menu_superior {
  width: 80%;
}

.nav-item a {
  font-family: 'gotham_light';
  font-size: .9rem;
  font-weight: bold;
  color: #888;
  margin-left: 20px;
}
.nav-item a:hover,
.menu_superior_activo {
  color: #18589f !important;
}
.navbar-toggler {
  outline: none !important;
  text-decoration: none !important;
}

.dropdown > .dropdown-menu {
  border: 0;
  margin-top: 0;
  padding: 0;
  top: 200%;
  transition: 0.3s all ease-in-out;
}
.dropdown:hover > .dropdown-menu {
  display: block;
  top: 100%;
}
.dropdown > .dropdown-toggle:active {
  /* Sin esto, al hacer clic lo dejará visible (pegajoso a otro submenú) */
  pointer-events: none;
}
/* Para sacarle el triángulo */
.dropdown-toggle::after {
  border-top: 0;
  border-right: 0;
}
.dropdown > .dropdown-menu > .dropdown-item {
  font-family: 'myriad_pro_regular';
  font-size: .8rem;
  color: #5d5d5d;
  border-bottom: 2px solid #18589f;
  margin-left: 0;
}
.dropdown > .dropdown-menu > .dropdown-item:hover {
  font-family: 'momcake_bold';
  font-size: 1rem;
  color: #fff !important;
  background-color: #18589f;
}

/* SLIDER
--------------------------------------------------- */
#carousel_home {
  height: 700px;
  overflow: hidden;
  padding-bottom: 0;
  margin-bottom: 0;
}
.carousel-item {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  width: 100% !important;
}
.carousel-item img {
  width: 100% !important;
  height: 100% !important;
}
.carousel-indicators {
  bottom: 20px;
}
.carousel-caption-menu {
  height: 136px;
  top: 0%;
  right: 5%;
  left: 5%;
  padding-top: 0;
}
.carousel-caption-menu a {
  color: #fff;
  display: block;
}
.carousel-caption-menu a:hover {
  color: #00b6c6 !important;
}

.carousel_mensaje {
  top: 40%;
  /*right: 5%;*/
  left: 10%;
  font-family: 'myriad_pro_regular';
  font-size: 4rem;
  line-height: 1;
  color: #fff;
  text-align: left;
  padding-bottom: 0;
}
.carousel_submensaje {
  width: 252px;
  border-bottom: 3px solid #fff;
  font-size: 1.9rem;
}

/* CUERPO DEL HOME
--------------------------------------------------- */
.linea_separadora {
  background: url('../imagenes/divisores.jpg') no-repeat right;  
}

/* CONTACTO
--------------------------------------------------- */
#nro_whatsapp_contacto {
  color: #fff;
}
#nro_whatsapp_contacto:hover {
  color: #101f34;
}

/* PIE
--------------------------------------------------- */
footer {
  color: #9ea2ab;
  background-color: #101f34;
  bottom: 0;
}

.btn_ir_arriba {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 120px;
  right: 20px;
  display: none;
  text-indent: -9999px;
  background: url('../imagenes/ir_arriba.jpg') no-repeat;
  outline: none;
}

/* Dispositivos Extra Pequeños (teléfono vertical (portrait), less than 576px) 
----------------------------------------------------------------------------- */
@media (max-width: 575.98px) {
  
  #logo_home {
    width: 60%;
  }
  #menu_superior {
    padding-top: 0;
    margin-top: 0;
  }
  
  #carousel_home {
    height: 189px;
  }
  .carousel_mensaje {
    display: none !important;
  }

  .custom-select-sm {
    margin-top: 5px;
  }

  #contenedor_bienvenida {
    padding: 10px 25px;
  }
  #contenedor_bienvenida h1 {
    font-size: 1.7rem;
  }
}

/* Pequeños Dispositivos (teléfono apaisado (landscape), 576px y arriba) 
---------------------------------------------------------------------- */
@media (min-width: 576px) and (max-width: 767.98px) {
  
  #logo_home {
    width: 60%;
  }
  #menu_superior {
    padding-top: 20px;
  }
  #carousel_home {
    height: 298px;
  }
  .carousel_mensaje {
    width: 60%;
    font-size: 2.5rem;
  }
  #contenedor_bienvenida {
    padding: 10px 25px;
  }
  #contenedor_bienvenida h1 {
    font-size: 2rem;
  }
}

/* Dispositivos Medianos (tablets, 768px y arriba) 
-------------------------------------------------- */
@media (min-width: 768px) and (max-width: 991.98px) {

  #logo_home {
    width: 60%;
  }
  #menu_superior {
    padding-top: 20px;
  }
  #carousel_home {
    height: 390px;
  }
  .carousel_mensaje {
    font-size: 3rem;
  }
  #contenedor_bienvenida {
    padding: 5px 70px;
  }
}

/* Dispositivos Grandes (desktops, 992px y arriba) 
-------------------------------------------------- */
@media (min-width: 992px) and (max-width: 1199.98px) {

}

/* Dispositivos Extra Grandes (large desktops, 1200px y arriba) 
------------------------------------------------------------- */
@media (min-width: 1200px) {
  #carousel_home {
    height: 750px;
  }
  .container {
    width: 1200px !important;
  }
  
}
