@charset "UTF-8";
/* RESET */
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 0.2rem;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(transparent, #2498e6);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(transparent, #d30b5e);
}

/* DEFAULT */
html {
  font-size: 16px;
}
html .disclaimer {
  display: none;
}
html body {
  font-family: "Montserrat", sans-serif;
  color: #000000;
}

/* HEADER */
.navbar {
  position: fixed;
  top: 0;
  height: 3rem;
  background-color: rgba(245, 245, 245, 0.9);
  z-index: 100;
}
@media (max-width: 992px) {
  .navbar {
    height: 2.4rem;
  }
}
.navbar .navbar-brand h1 {
  margin: 0 0.5rem 0 0.5rem;
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: 0.5rem;
  color: #4f4f4f;
}
@media (max-width: 992px) {
  .navbar .navbar-brand h1 {
    margin-top: -0.3rem;
    margin-right: 0;
    font-size: 1.2rem;
    letter-spacing: 0.32rem;
  }
}
@media (max-width: 360px) {
  .navbar .navbar-brand h1 {
    margin-top: -0.25rem;
    font-size: 1rem;
    letter-spacing: 0.256rem;
  }
}
@media (max-width: 320px) {
  .navbar .navbar-brand h1 {
    margin-top: -0.25rem;
    font-size: 0.85rem;
    letter-spacing: 0.2rem;
  }
}
.navbar .navbar-brand h1:hover {
  color: #2498e6;
}
.navbar .navbar-toggler {
  margin-top: -0.4rem;
  padding: 0;
}
@media (max-width: 992px) {
  .navbar .navbar-toggler {
    margin-top: -0.3rem;
  }
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
@media (max-width: 992px) {
  .navbar .navbar-toggler-icon {
    width: 1.3rem;
  }
}
@media (max-width: 360px) {
  .navbar .navbar-toggler-icon {
    width: 1.04rem;
  }
}
@media (max-width: 320px) {
  .navbar .navbar-toggler-icon {
    width: 0.9rem;
  }
}
@media (max-width: 992px) {
  .navbar .navbar-collapse {
    height: 75vh;
    margin: 0.14rem -0.75rem 0 -1rem;
    padding: 1rem;
    overflow-y: auto;
    background-color: #ffffff;
    border-bottom: 0.5rem solid rgba(245, 245, 245, 0.9);
  }
}
@media (max-width: 480px) {
  .navbar .navbar-collapse {
    height: 87vh;
  }
}
@media (max-width: 320px) {
  .navbar .navbar-collapse {
    height: 83vh;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  position: relative;
  margin: 0.5rem 1rem;
  padding: 0;
  font-weight: bold;
  letter-spacing: 0.1875rem;
  color: #4f4f4f;
}
@media (max-width: 992px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 0.8rem;
    left: -0.5rem;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.125rem;
  width: 100%;
  background-color: #d30b5e;
  /* animación subrayado */
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.2s ease-in-out;
}
@media (max-width: 992px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:after {
    display: none;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover::after {
  /* animación subrayado */
  transform-origin: left;
  transform: scaleX(1);
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link:focus, .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:active {
  outline: none !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
  margin: -0.3rem 0 0.5rem 0;
  background-color: rgba(245, 245, 245, 0.9);
  border: none;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  position: relative;
  margin: 1rem 1.5rem;
  width: min-content;
  padding: 0;
  font-weight: bold;
  letter-spacing: 0.1875rem;
  color: #4f4f4f;
}
@media (max-width: 992px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    font-size: 0.8rem;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
  background-color: transparent;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.125rem;
  width: 100%;
  background-color: #d30b5e;
  /* animación subrayado */
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.2s ease-in-out;
}
@media (max-width: 992px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item::after {
    display: none;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover::after {
  /* animación subrayado */
  transform-origin: left;
  transform: scaleX(1);
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item:active {
  color: #4f4f4f;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .inactive--dropdwn-link {
  margin: 0.5rem 1.5rem;
  padding: 0;
  font-weight: bold;
  letter-spacing: 0.1875rem;
  color: #d30b5e;
  cursor: default;
}
@media (max-width: 992px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .inactive--dropdwn-link {
    font-size: 0.8rem;
  }
}
.navbar .navbar-collapse .navbar-nav .inactive-link {
  margin: 0.5rem 1rem;
  font-weight: bold;
  letter-spacing: 0.1875rem;
  color: #d30b5e;
  cursor: default;
}
@media (max-width: 992px) {
  .navbar .navbar-collapse .navbar-nav .inactive-link {
    margin: 0.5rem;
    font-size: 0.8rem;
  }
}
.navbar .navbar-collapse .network-container {
  display: flex;
  gap: 0.8rem;
}
@media (max-width: 992px) {
  .navbar .navbar-collapse .network-container {
    margin: 0 0.5rem 0 0.5rem;
  }
}
.navbar .navbar-collapse .network-container .network img {
  height: 1.4rem;
  opacity: 0.4;
}
@media (max-width: 992px) {
  .navbar .navbar-collapse .network-container .network img {
    margin-top: 0.5rem;
    height: 1.1rem;
  }
}
.navbar .navbar-collapse .network-container .network img:hover {
  opacity: 1;
  transform: scale(1.3);
}

/*  ESPECIFICO PARA PÁGINA INDEX */
#main-index .container-index {
  display: flex;
  position: absolute;
  min-height: 100vh;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
  width: 100%;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
  color: #f5f5f5;
}
#main-index .container-index h1 {
  margin: -0.2rem;
  padding: 0.6rem 1rem 0.3rem 1.4rem;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.5rem;
  background: rgba(36, 152, 230, 0.7);
  border-bottom-right-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
  cursor: default;
}
@media (max-width: 768px) {
  #main-index .container-index h1 {
    padding: 1rem 1rem 0.8rem 1.5rem;
    font-size: 1.2rem;
    line-height: 0.32rem;
    border-bottom-right-radius: 1.2rem;
    border-bottom-left-radius: 1.2rem;
  }
}
@media (max-width: 480px) {
  #main-index .container-index h1 {
    padding: 1.2rem 0.2rem 0.8rem 0.8rem;
    line-height: 0.26rem;
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
  }
}
@media (max-width: 380px) {
  #main-index .container-index h1 {
    width: 11rem;
    padding: 0.5rem 0.2rem 0.2rem 0.7rem;
    text-align: center;
    line-height: 1.4rem;
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
  }
}
#main-index .container-index .enter {
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
}
#main-index .container-index .enter h2 {
  font-size: 7.5rem;
  line-height: 7rem;
  cursor: default;
}
@media (max-width: 768px) {
  #main-index .container-index .enter h2 {
    font-size: 6rem;
    line-height: 5.6rem;
  }
}
@media (max-width: 480px) {
  #main-index .container-index .enter h2 {
    display: none;
  }
}
#main-index .container-index .enter .alternativo {
  display: none;
  height: 8.125rem;
}
@media (max-width: 480px) {
  #main-index .container-index .enter .alternativo {
    display: block;
    font-size: 7.5rem;
    line-height: 10rem;
  }
}
#main-index .container-index .enter h3 {
  margin-left: 24.7rem;
  line-height: 0;
  cursor: default;
}
@media (max-width: 768px) {
  #main-index .container-index .enter h3 {
    margin-left: 19.76rem;
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  #main-index .container-index .enter h3 {
    margin-left: 0;
    font-size: 1.4rem;
  }
}
#main-index .container-index .enter .animate__pulse {
  animation-delay: 0.9s;
  animation-iteration-count: infinite;
  animation-duration: 2s;
}
@media (max-width: 480px) {
  #main-index .container-index .enter .animate__pulse {
    margin-top: 2rem;
  }
}
#main-index .container-index .enter .animate__pulse .btn {
  margin-top: 2.5rem;
  padding: 0.875rem 0.875rem 0.6875rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.3rem;
  border-width: 0.15rem;
  border-radius: 0;
}
@media (max-width: 768px) {
  #main-index .container-index .enter .animate__pulse .btn {
    margin-bottom: 0.5rem;
  }
}
#main-index .container-index .network-container {
  display: flex;
  margin-bottom: 1rem;
  padding: 0.5rem 0.6rem 0.2rem 1.1rem;
  background: rgba(211, 11, 94, 0.7);
  border-radius: 1.5rem;
}
@media (max-width: 1024px) {
  #main-index .container-index .network-container {
    padding-bottom: 0.3rem;
  }
}
#main-index .container-index .network-container h2 {
  margin-bottom: 0.2rem;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.3rem;
  cursor: default;
}
@media (max-width: 768px) {
  #main-index .container-index .network-container h2 {
    padding-top: 0.05rem;
    font-size: 1.12rem;
    letter-spacing: 0.24rem;
  }
}
#main-index .container-index .network-container a .bi {
  margin: 0.5rem;
  font-size: 1.2rem;
  line-height: 1.7rem;
  color: #f5f5f5;
}
@media (max-width: 768px) {
  #main-index .container-index .network-container a .bi {
    margin: 0.4rem;
    font-size: 0.96rem;
    line-height: 1.2rem;
  }
}
#main-index .container-index .network-container a .bi:hover {
  color: #4f4f4f;
}
#main-index .carousel-index {
  position: relative;
  z-index: -100;
}
#main-index .carousel-index img {
  display: block;
  height: 100vh;
  width: 100%;
  object-fit: cover;
}

/* ESPECIFICO PARA PÁGINAS DE FOTOS */
#main-fotos .carousel-item img {
  display: block;
  height: 100vh;
  width: 100%;
  object-fit: cover;
}
#main-fotos .carousel-item h2 {
  position: absolute;
  bottom: 0.625rem;
  padding: 0.3rem 1rem 0.25rem 1rem;
  background-color: rgba(36, 152, 230, 0.7);
  font-size: 1.3rem;
  color: #ffffff;
  border-radius: 0 1.5625rem 1.5625rem 0;
  animation-delay: 0.9s;
  text-shadow: -1px 0 5px rgba(0, 0, 0, 0.3), 0 1px 5px rgba(0, 0, 0, 0.3), 1px 0 5px rgba(0, 0, 0, 0.3), 0 -1px 5px rgba(0, 0, 0, 0.3);
  /* CSS specific to iOS devices */
}
@media (max-width: 1023px) {
  #main-fotos .carousel-item h2 {
    margin-right: 1rem;
    margin-bottom: 6rem;
    font-size: 0.96rem;
  }
}
@media (max-width: 768px) {
  #main-fotos .carousel-item h2 {
    margin-bottom: 3.5rem;
  }
}
@media (max-width: 650px) {
  #main-fotos .carousel-item h2 {
    margin-bottom: 6rem;
  }
}
@media (max-width: 480px) {
  #main-fotos .carousel-item h2 {
    margin-bottom: 3.5rem;
  }
}
@supports (-webkit-touch-callout: none) {
  #main-fotos .carousel-item h2 {
    margin-bottom: 5rem;
  }
  @media (max-width: 992px) {
    #main-fotos .carousel-item h2 {
      margin-bottom: 3.5rem;
    }
  }
  @media (max-width: 480px) {
    #main-fotos .carousel-item h2 {
      margin-bottom: 5rem;
    }
  }
}
#main-fotos .carousel-item .sub-coberturas {
  position: absolute;
  bottom: 0.625rem;
  padding: 0.3rem 1rem 0.25rem 1rem;
  background-color: rgba(211, 11, 94, 0.7);
  font-size: 1.3rem;
  color: #ffffff;
  border-radius: 0 1.5625rem 1.5625rem 0;
  animation-delay: 0.9s;
  text-shadow: -1px 0 5px rgba(0, 0, 0, 0.3), 0 1px 5px rgba(0, 0, 0, 0.3), 1px 0 5px rgba(0, 0, 0, 0.3), 0 -1px 5px rgba(0, 0, 0, 0.3);
  /* CSS specific to iOS devices */
}
@media (max-width: 1023px) {
  #main-fotos .carousel-item .sub-coberturas {
    margin-right: 1rem;
    margin-bottom: 6rem;
    font-size: 0.96rem;
  }
}
@media (max-width: 768px) {
  #main-fotos .carousel-item .sub-coberturas {
    margin-bottom: 3.5rem;
  }
}
@media (max-width: 650px) {
  #main-fotos .carousel-item .sub-coberturas {
    margin-bottom: 6rem;
  }
}
@media (max-width: 480px) {
  #main-fotos .carousel-item .sub-coberturas {
    margin-bottom: 3.5rem;
  }
}
@supports (-webkit-touch-callout: none) {
  #main-fotos .carousel-item .sub-coberturas {
    margin-bottom: 5rem;
  }
  @media (max-width: 992px) {
    #main-fotos .carousel-item .sub-coberturas {
      margin-bottom: 3.5rem;
    }
  }
  @media (max-width: 480px) {
    #main-fotos .carousel-item .sub-coberturas {
      margin-bottom: 5rem;
    }
  }
}
#main-fotos .carousel-item .bc-coberturas {
  position: absolute;
  bottom: 0.625rem;
  padding: 0.3rem 1rem 0.25rem 1rem;
  background-color: rgba(36, 152, 230, 0.7);
  font-size: 1.3rem;
  color: #ffffff;
  border-radius: 0 1.5625rem 1.5625rem 0;
  animation-delay: 0.9s;
  text-shadow: -1px 0 5px rgba(0, 0, 0, 0.3), 0 1px 5px rgba(0, 0, 0, 0.3), 1px 0 5px rgba(0, 0, 0, 0.3), 0 -1px 5px rgba(0, 0, 0, 0.3);
  /* CSS specific to iOS devices */
  bottom: 4rem;
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
  text-decoration: none;
}
@media (max-width: 1023px) {
  #main-fotos .carousel-item .bc-coberturas {
    margin-right: 1rem;
    margin-bottom: 6rem;
    font-size: 0.96rem;
  }
}
@media (max-width: 768px) {
  #main-fotos .carousel-item .bc-coberturas {
    margin-bottom: 3.5rem;
  }
}
@media (max-width: 650px) {
  #main-fotos .carousel-item .bc-coberturas {
    margin-bottom: 6rem;
  }
}
@media (max-width: 480px) {
  #main-fotos .carousel-item .bc-coberturas {
    margin-bottom: 3.5rem;
  }
}
@supports (-webkit-touch-callout: none) {
  #main-fotos .carousel-item .bc-coberturas {
    margin-bottom: 5rem;
  }
  @media (max-width: 992px) {
    #main-fotos .carousel-item .bc-coberturas {
      margin-bottom: 3.5rem;
    }
  }
  @media (max-width: 480px) {
    #main-fotos .carousel-item .bc-coberturas {
      margin-bottom: 5rem;
    }
  }
}
@media (max-width: 1023px) {
  #main-fotos .carousel-item .bc-coberturas {
    margin-bottom: 5rem;
  }
}
@media (max-width: 768px) {
  #main-fotos .carousel-item .bc-coberturas {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 650px) {
  #main-fotos .carousel-item .bc-coberturas {
    margin-bottom: 5rem;
  }
}
@media (max-width: 480px) {
  #main-fotos .carousel-item .bc-coberturas {
    margin-bottom: 2.5rem;
  }
}
#main-fotos .carousel-control-prev {
  top: 50%;
  bottom: 50%;
}
#main-fotos .carousel-control-prev .bi-chevron-left {
  font-size: 3.75rem;
  color: #d30b5e;
}
@media (max-width: 1024px) {
  #main-fotos .carousel-control-prev .bi-chevron-left {
    margin-bottom: 6rem;
    font-size: 2.4rem;
  }
}
@media (max-width: 480px) {
  #main-fotos .carousel-control-prev .bi-chevron-left {
    margin-bottom: 2rem;
  }
}
@media (max-width: 380px) {
  #main-fotos .carousel-control-prev .bi-chevron-left {
    margin-bottom: 5rem;
  }
}
#main-fotos .carousel-control-prev .arrow-coberturas {
  font-size: 3.75rem;
  color: #2498e6;
}
@media (max-width: 1024px) {
  #main-fotos .carousel-control-prev .arrow-coberturas {
    margin-bottom: 6rem;
    font-size: 2.4rem;
  }
}
@media (max-width: 480px) {
  #main-fotos .carousel-control-prev .arrow-coberturas {
    margin-bottom: 2rem;
  }
}
@media (max-width: 380px) {
  #main-fotos .carousel-control-prev .arrow-coberturas {
    margin-bottom: 5rem;
  }
}
#main-fotos .carousel-control-next {
  top: 50%;
  bottom: 50%;
}
#main-fotos .carousel-control-next .bi-chevron-right {
  font-size: 3.75rem;
  color: #d30b5e;
}
@media (max-width: 1024px) {
  #main-fotos .carousel-control-next .bi-chevron-right {
    margin-bottom: 6rem;
    font-size: 2.4rem;
  }
}
@media (max-width: 480px) {
  #main-fotos .carousel-control-next .bi-chevron-right {
    margin-bottom: 2rem;
  }
}
@media (max-width: 380px) {
  #main-fotos .carousel-control-next .bi-chevron-right {
    margin-bottom: 5rem;
  }
}
#main-fotos .carousel-control-next .arrow-coberturas {
  font-size: 3.75rem;
  color: #2498e6;
}
@media (max-width: 1024px) {
  #main-fotos .carousel-control-next .arrow-coberturas {
    margin-bottom: 6rem;
    font-size: 2.4rem;
  }
}
@media (max-width: 480px) {
  #main-fotos .carousel-control-next .arrow-coberturas {
    margin-bottom: 2rem;
  }
}
@media (max-width: 380px) {
  #main-fotos .carousel-control-next .arrow-coberturas {
    margin-bottom: 5rem;
  }
}

/* ESPECIFICO PARA PÁGINA COBERTURAS */
#coberturas-body {
  background-color: #000000;
}

#main-coberturas .galery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3rem;
  overflow: hidden;
}
@media (max-width: 992px) {
  #main-coberturas .galery {
    margin-top: 2.4rem;
  }
}
@media (max-width: 650px) {
  #main-coberturas .galery {
    grid-template-columns: repeat(1, 1fr);
  }
}
#main-coberturas .galery .galery-item {
  position: relative;
  height: calc((100vh - 3rem) / 2);
}
@media (max-width: 992px) {
  #main-coberturas .galery .galery-item {
    height: calc((100vh - 2.4rem) / 2);
  }
}
@media (max-width: 650px) {
  #main-coberturas .galery .galery-item {
    height: calc((100vh - 2.4rem) / 4);
  }
}
#main-coberturas .galery .galery-item img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}
#main-coberturas .galery .galery-item img:hover {
  filter: grayscale(0);
}
#main-coberturas .galery .galery-item h2 {
  position: absolute;
  top: 1rem;
  padding: 2rem;
  width: 100%;
  background-color: rgba(211, 11, 94, 0.7);
  font-size: 1.3rem;
  text-align: center;
  color: #ffffff;
  animation-delay: 0.9s;
  text-shadow: -1px 0 5px rgba(0, 0, 0, 0.5), 0 1px 5px rgba(0, 0, 0, 0.5), 1px 0 5px rgba(0, 0, 0, 0.5), 0 -1px 5px rgba(0, 0, 0, 0.5);
}
@media (max-width: 992px) {
  #main-coberturas .galery .galery-item h2 {
    margin-top: -0.3rem;
    margin-right: 2rem;
    padding: 1rem;
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  #main-coberturas .galery .galery-item h2 {
    font-size: 0.96rem;
  }
}
#main-coberturas .galery .galery-item .lb {
  position: absolute;
  top: 1rem;
  padding: 2rem;
  width: 100%;
  background-color: rgba(36, 152, 230, 0.7);
  font-size: 1.3rem;
  text-align: center;
  color: #ffffff;
  animation-delay: 0.9s;
  text-shadow: -1px 0 5px rgba(0, 0, 0, 0.5), 0 1px 5px rgba(0, 0, 0, 0.5), 1px 0 5px rgba(0, 0, 0, 0.5), 0 -1px 5px rgba(0, 0, 0, 0.5);
}
@media (max-width: 992px) {
  #main-coberturas .galery .galery-item .lb {
    margin-top: -0.3rem;
    margin-right: 2rem;
    padding: 1rem;
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  #main-coberturas .galery .galery-item .lb {
    font-size: 0.96rem;
  }
}

/* ESPECIFICO PARA PÁGINA BIO */
.bio-background-map, #main-bio .content .bio-background {
  position: relative;
  height: 50rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bio-map, #main-bio .content .bio-background .texto-interior .bio {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  font-size: 3rem;
  text-align: center;
}

.nombre-map, #main-bio .content .bio-background .texto-interior .nombre {
  position: absolute;
  top: 45%;
  left: 10%;
  width: 80%;
  text-align: center;
  font-size: 3rem;
  line-height: 4rem;
}
@media (max-width: 992px) {
  .nombre-map, #main-bio .content .bio-background .texto-interior .nombre {
    top: 35%;
  }
}
@media (max-width: 650px) {
  .nombre-map, #main-bio .content .bio-background .texto-interior .nombre {
    top: 25%;
  }
}
@media (max-width: 480px) {
  .nombre-map, #main-bio .content .bio-background .texto-interior .nombre {
    top: 30%;
    line-height: 2.5rem;
  }
}

.texto-map, #main-bio .content .texto {
  padding: 1rem 2rem 2rem 2rem;
  text-align: center;
}

.p-map, #main-bio .content .texto p {
  margin: 2rem 0 1rem 0;
  font-size: 1rem;
  font-weight: bold;
}

#bio-html {
  width: 100%;
  overflow: hidden;
}

#bio-body {
  position: fixed;
  height: 100%;
  overflow-y: scroll;
}

@supports (-webkit-overflow-scrolling: touch) {
  #main-bio .content .bio-background {
    background-attachment: scroll;
  }
}
@media (max-width: 1024px) {
  #main-bio .content .bio-background {
    height: 35rem;
  }
}
@media (max-width: 992px) {
  #main-bio .content .bio-background {
    height: 20rem;
  }
}
@media (max-width: 650px) {
  #main-bio .content .bio-background {
    height: 15rem;
  }
}
@media (max-width: 380px) {
  #main-bio .content .bio-background {
    height: 10rem;
  }
}
#main-bio .content .bio-background.img-uno {
  background-image: url("../img/03-bio/mariana-bio.jpg");
}
@media (max-width: 992px) {
  #main-bio .content .bio-background.img-uno {
    background-position: top;
    background-size: 100%;
  }
}
#main-bio .content .bio-background.img-dos {
  background-image: url("../img/03-bio/florecer-recorte.jpg");
}
@media (max-width: 992px) {
  #main-bio .content .bio-background.img-dos {
    background-position: bottom;
    background-size: 100%;
    overflow: hidden;
  }
}
#main-bio .content .bio-background .texto-interior .bio {
  color: #d30b5e;
}
@media (max-width: 480px) {
  #main-bio .content .bio-background .texto-interior .bio {
    font-size: 2rem;
  }
}
#main-bio .content .bio-background .texto-interior .nombre {
  color: #2498e6;
}
@media (max-width: 480px) {
  #main-bio .content .bio-background .texto-interior .nombre {
    font-size: 2rem;
  }
}
#main-bio .content .texto {
  background-color: rgba(245, 245, 245, 0.9);
  letter-spacing: 0.1rem;
  color: #4f4f4f;
}
@media (max-width: 480px) {
  #main-bio .content .texto p {
    font-size: 0.8rem;
  }
}

/* ESPECIFICO PARA PÁGINA CONTACTO */
#contacto-html {
  width: 100%;
  overflow: hidden;
}

#contacto-body {
  background-image: url("../img/04-contacto/fondo-contacto.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1400px) {
  #contacto-body {
    position: fixed;
    height: 100%;
    overflow-y: scroll;
  }
}

#main-contacto .contacto-container {
  margin: 3.125rem;
}
#main-contacto .contacto-container h2 {
  margin-top: 6rem;
  margin-bottom: 4rem;
  color: #2498e6;
  text-align: center;
}
#main-contacto .contacto-container form {
  padding: 0 1.25rem 1.25rem 1.25rem;
  background-color: rgba(125, 125, 125, 0.5);
  text-align: center;
  border-radius: 1.375rem;
}
#main-contacto .contacto-container form .form-label {
  color: #ffffff;
}
#main-contacto .contacto-container form .form-control:focus {
  border-color: #4f4f4f;
  box-shadow: 0 0 0 0.25rem rgba(32, 32, 33, 0.25);
}
#main-contacto .contacto-container form .submit-btn {
  margin-bottom: 0;
}
#main-contacto .contacto-container form .submit-btn .btn-secondary {
  width: 6.25rem;
  border: none;
  background-color: #d30b5e;
  border-radius: 1.25rem;
}
#main-contacto .contacto-container form .submit-btn .btn-secondary:hover {
  background-color: #4f4f4f;
}
#main-contacto .contacto-container form .message {
  display: flex;
  position: relative;
  margin-bottom: 2rem;
  width: 100%;
  justify-content: center;
}
#main-contacto .contacto-container form .message .success {
  display: none;
  position: absolute;
  padding: 0.3rem 1rem 0.25rem 1rem;
  background-color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  color: green;
  border-radius: 1.5625rem;
  animation: buttons 0.3s linear;
}
#main-contacto .contacto-container form .message .danger {
  display: none;
  position: absolute;
  padding: 0.3rem 1rem 0.25rem 1rem;
  background-color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  color: red;
  border-radius: 1.5625rem;
  transition: 0.3s;
  animation: buttons 0.3s linear;
}

@keyframes buttons {
  0% {
    transform: scale(0.1);
  }
  50% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}