/*----------------------------
PATRON DE COLORES
----------------------------*/
html {
  font-size: 15px; }

body {
  font-family: 'Open Sans', sans-serif;
  color: black;
  overflow-x: hidden; }

h3 {
  font-family: 'OpenSans-SemiBold', sans-serif; }

.row {
  margin: 0; }

.btn-primary {
  background-color: #0D8FFB;
  border-color: #0D8FFB; }

/*----------------------------
ENCABEZADO
----------------------------*/
#encabezado {
  width: 100%;
  height: 100vh;
  color: #fff; }

#encabezado video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  overflow: hidden;
  z-index: 0; }

#encabezado #capa-oscura {
  background: black;
  opacity: .7;
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  overflow: hidden;
  z-index: 0; }

header {
  width: 100%;
  height: 100%; }

#contenedor-encabezado {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 100%; }

#contenedor-logo-encabezado {
  display: flex;
  justify-content: center;
  z-index: 1; }

#contenedor-logo-encabezado img {
  width: 85%;
  padding-top: 1rem; }

#contenedor-texto-encabezado {
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  z-index: 1; }

#contenedor-texto-encabezado h3 {
  text-align: center;
  font-size: 2rem; }

#contenedor-texto-encabezado a {
  font-size: 1.3rem;
  padding: .5rem 1rem; }

#contenedor-encabezado #flecha-bajar {
  width: 100%;
  text-align: center; }

#contenedor-encabezado #flecha-bajar a i {
  font-size: 2.5rem;
  color: #fff;
  animation: flecha-animada 1.5s ease-in-out infinite; }

@keyframes flecha-animada {
  from {
    transform: translateY(0); }
  50% {
    transform: translateY(8px); }
  to {
    transform: translateY(0); } }
/*----------------------------
QUIENES SOMOS
----------------------------*/
#quienes-somos {
  padding: 2rem 0; }

#texto-quienes-somos h3 {
  text-align: center;
  margin-bottom: 2rem; }

#texto-quienes-somos p {
  text-align: justify; }

.card {
  border: none; }

.card-header {
  background: #033055; }

.card-header button {
  color: #fff;
  text-align: center; }

.accordion > .card > .card-header {
  border-radius: 7px;
  border: 1px solid white; }

.btn:hover {
  color: #fff; }

.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none; }

.btn-link:hover {
  color: #fff;
  text-decoration: none; }

/*----------------------------
TU MEJOR ELECCION
----------------------------*/
#tu-mejor-eleccion {
  background: #033055;
  color: #fff;
  padding-top: 2rem; }

#tu-mejor-eleccion h3 {
  text-align: center;
  margin-bottom: 2rem; }

#tu-mejor-eleccion h3 span {
  color: #0D8FFB; }

#tu-mejor-eleccion h4 {
  text-align: center;
  margin-bottom: 2rem; }

#tu-mejor-eleccion ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  text-align: center; }

#tu-mejor-eleccion ul li i {
  font-size: 2rem;
  background-color: #0D8FFB;
  border-radius: 50%;
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  text-align: center;
  transition: all 1s ease; }

#tu-mejor-eleccion ul li:hover i {
  transform: rotateY(360deg);
  transform-style: preserve-3d; }

#tu-mejor-eleccion ul li .contenedor-eleccion h3 {
  font-size: 1.2rem;
  text-align: center;
  margin: 1rem 0 2rem 0; }

/*----------------------------
CONTACTENOS
----------------------------*/
#contactenos #encabezado-contactenos {
  background: url(../img/imagen-encabezado-contactenos.png) center no-repeat;
  background-size: cover;
  width: 100%;
  height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  color: #fff; }

#contactenos #encabezado-contactenos h3 {
  font-size: 2.7rem;
  letter-spacing: 3px; }

#contactenos #encabezado-contactenos h4 {
  text-align: center;
  margin-left: 1rem;
  margin-right: 1rem;
  letter-spacing: 1px;
  font-size: 1.3rem; }

#contactenos #contenedor-formulario {
  padding-top: 2rem;
  width: 100%; }

#contactenos #contenedor-formulario h3 {
  margin-left: 1rem; }

#contactenos #contenedor-formulario button {
  margin: 1rem; }

/*----------------------------
PIE DE PAGINA
----------------------------*/
#pie-de-pagina {
  width: 100%;
  height: 160px;
  background: black;
  color: #fff;
  padding: 1.5rem 0; }

#pie-de-pagina p {
  text-align: center; }

#pie-de-pagina ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center; }

#pie-de-pagina ul li a {
  color: #fff;
  font-size: 1.7rem;
  padding: 1rem;
  opacity: .5;
  transition: .5s all ease-in-out; }

#pie-de-pagina ul li a:hover {
  opacity: 1; }

#ir-arriba {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  font-size: 2rem;
  color: #0D8FFB;
  text-decoration: none;
  transition: .5s all ease;
  opacity: .5;
  display: none; }

#ir-arriba:hover,
#ir-arriba:focus {
  opacity: 1;
  outline: 0; }

/*----------------------------
INSERTANDO MEDIAS QUERIES
----------------------------*/
@media (min-width: 768px) {
  #contactenos #encabezado-contactenos h3 {
    font-size: 4rem; }

  #contactenos #contenedor-formulario h3 {
    text-align: center;
    margin-bottom: 2rem; }

  #contactenos #encabezado-contactenos h4 {
    max-width: 75%;
    font-size: 1.5rem; }

  #contactenos #contenedor-formulario form div.row {
    margin-bottom: 1rem; }

  #contactenos #contenedor-formulario #contenedor-btn-enviar {
    padding-left: 15px; }

  #contactenos #contenedor-formulario button {
    margin-bottom: 2rem;
    margin-left: 25%; } }
@media (min-width: 992px) {
  html {
    font-size: 16px; }

  #contenedor-texto-encabezado h3 {
    font-size: 2.7rem; }

  #contenedor-texto-encabezado a {
    font-size: 1.3rem;
    padding: .5rem 1.4rem; }

  #quienes-somos #img-quienes-somos img {
    width: 100%;
    max-height: 100%; }

  #tu-mejor-eleccion ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    min-height: 10rem; }

  #tu-mejor-eleccion ul#contenedor-fila-uno li .contenedor-eleccion h3 {
    margin: 0;
    text-align: left; }

  #tu-mejor-eleccion ul#contenedor-fila-dos li .contenedor-eleccion h3 {
    margin: 0;
    text-align: right; }

  #tu-mejor-eleccion ul#contenedor-fila-uno li .contenedor-eleccion {
    text-align: left; }

  #tu-mejor-eleccion ul#contenedor-fila-dos li .contenedor-eleccion {
    text-align: right; }

  #tu-mejor-eleccion .container .row ul li i {
    font-size: 1.5rem;
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    margin: 1rem; }

  #tu-mejor-eleccion .container .row ul#contenedor-fila-uno li i {
    order: 1; }

  #tu-mejor-eleccion ul li .contenedor-eleccion {
    flex: 1 0 50%; }

  #tu-mejor-eleccion #contenedor-img-eleccion {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }

  #tu-mejor-eleccion #contenedor-img-eleccion img {
    width: 100%; }

  #contactenos #contenedor-img-contactenos {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; }

  #contactenos #contenedor-img-contactenos img {
    width: 90%; } }

/*# sourceMappingURL=style.css.map */
