@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;600;700;0,800;1,400&display=swap");
:root {
  --main-color: #004987;
  --main-texto: #444444;
  --color-dorado: #dda22c;
  --color-naranja: #ffa500;
  --color-blanco: #fff;
  --color-gris: #666;
  --color-crimson: crimson;
  --color-gris-claro: #f5f5f5;
  --color-gris-oscuro: #e0e0e0;
  --font-poppins: "Poppins", sans-serif;
  --accent-color: #ffd24c;
}

body {
  font-family: var(--font-poppins);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.my-6 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

a {
  color: var(--main-color);
  text-decoration: none;
}

.icon {
  display: inline-block;
  font-size: 0.5rem;
  color: crimson;
}

/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  margin-bottom: 70px;
}
.section-title h2 {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 20px;
  margin: 10px;
  color: var(--main-color);
}
.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  background: #ddd;
  width: 120px;
  height: 1px;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--main-color);
  bottom: 0;
  left: calc(50% - 20px);
}
.section-title p {
  font-size: 1.2rem;
  margin: 0;
}
.section-title span {
  display: block;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: bold;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background-image: url("../img/fondo-2.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right top;
  padding: 60px 0 0;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
#hero .hero-content {
  background: rgba(0, 0, 0, 0.4);
  padding: 10px;
}
#hero h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-blanco);
  margin-bottom: 10px;
}
#hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  line-height: 56px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}
#hero h1 span {
  color: var(--color-naranja);
}
#hero p {
  color: #fff;
  margin-bottom: 30px;
  font-size: 1rem;
}
#hero .btn-get-started {
  font-family: var(--font-poppins);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 3px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
}
#hero .btn-get-started:hover {
  background: #fff;
  color: var(--main-color);
}
#hero .hero-img {
  text-align: center;
}
#hero .hero-img img {
  width: 70%;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 992px) {
  #hero h1 {
    font-size: 32px;
    line-height: 40px;
  }
  #hero h2 {
    font-size: 20px;
  }
}
/*--------------------------------------------------------------
# Distribución
--------------------------------------------------------------*/
.flex-behaivor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

p.bg-titulo {
  width: 110px;
}

.bg-titulo {
  font-size: 0.8rem;
  background: var(--main-color);
  padding: 5px;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
}

.piso-item {
  font-size: 0.9rem;
  margin: 0;
  background: #f6f6f6;
  padding: 3px;
  margin-bottom: 1px;
}

.piso-item:last-child {
  margin-bottom: 0px;
}

.dist .img-container {
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .dist .img-container img {
    width: 250px;
    height: auto;
  }
}
@media screen and (max-width: 500px) {
  .dist .img-container img {
    width: 200px;
    height: auto;
  }
}
/*--------------------------------------------------------------
# Ventana modal
--------------------------------------------------------------*/
/*:::Boton-Modal:::*/
.boton-modal label {
  color: var(--main-color);
  cursor: pointer;
}

/*:::Ventana Modal:::*/
#btn-modal {
  display: none;
}

.container-modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
}

#btn-modal:checked ~ .container-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.content-modal {
  width: 100%;
  max-width: 600px;
  padding: 20px;
  background-color: #fff;
  border-radius: 4px;
}
.content-modal h3 {
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  border-bottom: 1px solid #dbdbdb;
}
.content-modal .btn-cerrar {
  width: 100%;
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-top: 1px solid #dbdbdb;
}
.content-modal .btn-cerrar label {
  padding: 7px 10px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.content-modal .btn-cerrar label:hover {
  background-color: #013868;
}

.cerrar-modal {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 800px) {
  .content-modal {
    width: 90%;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 0.8rem;
  background: #f9faf9;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}
#footer .footer-top {
  padding: 25px 0;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background-color: var(--main-color);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: var(--color-naranja);
  color: #fff;
  text-decoration: none;
}
#footer .social-links svg {
  color: #fff;
  width: 18px;
}
#footer .footer-bottom {
  background-color: var(--main-color);
  padding: 25px 0;
}
#footer .footer-bottom .copyright-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  margin: 0;
}
#footer .footer-bottom a {
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  text-decoration: none;
}