.mobile {
  display: none;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
}

*::selection {
  color: #ffffff;
  background-color: #BF214B;
}

/* Animations */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes moveLeftRight {
  0%, 10% {
    transform: translateX(0) rotate(0deg);
  }
  10% {
    transform: translateX(10%) rotate(-5deg);
  }
}
/* Animations END */


.bounce-icons {
  animation: bounce 2s infinite;
  transition: transform 0.3s ease-in-out;
}

.rotate-icons {
  animation: rotate 2s infinite;
  transition: transform 0.3s ease-in-out;
}

.LeftRight-icons {
  animation: moveLeftRight 6s linear infinite;
  transition: transform 0.3s ease-in-out;
}


/* Responsive Header */

#image-button-black {
  display: none;
  border: none;
}

#image-button-black:hover {
  cursor: pointer;
}

#image-button-black:focus {
  outline: 0;
}

#responsive-header{
  display: none;
}

#responsive-nav-bar {
  display: none;
}
 
  /* Navigation CSS */
  #header.active-header,
  #header.active-header #responsive-header {
    background-color: white;
  }

  .menu-link.active-menu-links,
  .menu-link.active-menu-links .responsive-menu-link {
    color: #24061E;
    letter-spacing: normal;
  }

.responsive-menu-link {
  color: #24061E;
}

#icon-house {
  fill: #24061E;
  height: 23px;
  width: auto;
}



#icon-house:hover,
#icon-house:focus {
  fill: #BF214B;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}

/* ----- General Header CSS ------ */

#header {
  position: fixed;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin: auto;
  font-size: 19px;
  min-height: 100px;
  z-index: 12000;
}

/* Normal Header */

.active-header {
  background-color: #FFFFFF;
  color: #24061E;
}

.menu-link {
  color: #FFFFFF;
}


.menu-link:hover,
.menu-link:focus,
.menu-link:active {
  letter-spacing: 5px;
}

.menu-link:after,
.menu-link:before {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border: 1px solid rgba(255, 255, 255, 0);
  bottom: 0px;
  content: " ";
  display: block;
  margin: 0 auto;
  position: relative;
  -webkit-transition: all 280ms ease-in-out;
          transition: all 280ms ease-in-out;
  width: 0;
}

.menu-link:hover:after,
.menu-link:hover:before {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-color: #BF214B;
  -webkit-transition: width 350ms ease-in-out;
          transition: width 350ms ease-in-out;
  width: 70%;
}

.menu-link:hover:before {
  bottom: auto;
  top: 0;
  width: 70%;
}

.responsive-menu-link:hover,
.responsive-menu-link:focus,
.responsive-menu-link:active {
  letter-spacing: 5px;
}

.responsive-menu-link:after,
.responsive-menu-link:before {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border: 1px solid rgba(255, 255, 255, 0);
  bottom: 0px;
  content: " ";
  display: block;
  margin: 0 auto;
  position: relative;
  -webkit-transition: all 280ms ease-in-out;
          transition: all 280ms ease-in-out;
  width: 0;
}

.responsive-menu-link:hover:after,
.responsive-menu-link:hover:before {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-color: #BF214B;
  -webkit-transition: width 350ms ease-in-out;
          transition: width 350ms ease-in-out;
  width: 70%;
}

.responsive-menu-link:hover:before {
  bottom: auto;
  top: 0;
  width: 70%;
}

.active-menu-links {
  color: #24061E;
}

#normal-header {
  position: fixed;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: auto;
  font-size: 19px;
  min-height: 100px;
}

#header-img {
  width: 250px;
  height: auto;
  margin-left: 15%;
}

#nav-bar {}

#nav-bar ul {
  list-style: none;
  display: flex;
  flex-flow: row;
}

#nav-bar li {
  padding: 10px;
  margin: 12px;
  list-style: none;
}

#nav-bar ul,
a {
  text-decoration: none;
}

/* footer General styles */
footer {
  width: 100vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: #24061E;
  color: #FFFFFF;
}

.footer-division {
  grid-column: span 3;
  height: 10px;
  background-color: #FFFFFF;
  margin-top: 3rem;
}

.column-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.column-footer p {
  font-size: 1rem;
  margin: 1.5rem 0;
  color: #FFFFFF;
  text-align: center;
  border: solid 2px #FFFFFF;
  padding: 0.5rem;
}

.column-footer a,
.cls-contact-icon a {
  font-size: 0.75rem;
  color: #FFFFFF;
  padding: 0.5rem;
  text-decoration: none;
  letter-spacing: normal;
}

.column-footer a:hover,
.column-footer a:focus,
.column-footer a:active {
  letter-spacing: 5px;
  font-weight: 600;
}

.column-footer a:after {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 1px solid rgba(255, 255, 255, 0);
  bottom: -7px;
  content: " ";
  display: block;
  margin: 0 auto;
  position: relative;
  -webkit-transition: all 280ms ease-in-out;
  transition: all 280ms ease-in-out;
  width: 0;
}

.column-footer a:hover:after {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-color: #FFFFFF;
  -webkit-transition: width 350ms ease-in-out;
  transition: width 350ms ease-in-out;
  width: 70%;
}


.isotipo {
  margin: 3rem auto 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.isotipo img {
  width: 200px;
  max-width: 55%;
  height: auto;
  object-fit: contain;
}

.social-media-bar {
  display: flex;
  align-items: center; /* Alinea verticalmente los elementos */
  justify-content: center; /* Alinea horizontalmente los elementos */
}

.media-icons {
  display: flex;
  gap: 10px; /* Espacio entre los íconos */
}

.social-media-icon {
  fill: #FFFFFF; /* Color predeterminado */
  height: 50px;
  width: auto;
  margin: 1em;
  padding: 1em;
  transition: fill 0.3s ease; /* Transición suave del color */
}

.social-media-icon:hover,
.social-media-icon:focus,
.social-media-icon:active {
  fill: #BF214B; /* Color al hacer hover o focus */
}

.social-media-icon-path {
  fill: #FFFFFF;
}


.cls-contact-icon {
  width: 20px;
  height: auto;
  margin-right: 8px;
  fill: #FFFFFF;
}

.cls-contact-icon-path {
  fill: #FFFFFF;
}

/* Copyright section */
.copyright {
  background-color: #FFFFFF;
  color: #24061E;
  grid-column: 1 / -1;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0;
}

.copyright span {
  color: #BF214B;
  font-weight: 700;
}


/* footer General styles */
footer {
  width: 100vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: #24061E;
  color: #FFFFFF;
}

.footer-division {
  grid-column: span 3;
  height: 10px;
  background-color: #FFFFFF;
  margin-top: 3rem;
}

.column-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.column-footer p {
  font-size: 1rem;
  margin: 1.5rem 0;
  color: #FFFFFF;
  text-align: center;
  border: solid 2px #FFFFFF;
  padding: 0.5rem;
}

.column-footer a,
.cls-contact-icon a {
  font-size: 0.75rem;
  color: #FFFFFF;
  padding: 0.5rem;
  text-decoration: none;
  letter-spacing: normal;
}

.column-footer a:hover,
.column-footer a:focus,
.column-footer a:active {
  letter-spacing: 5px;
  font-weight: 600;
}

.column-footer a:after {
  content: " ";
  display: block;
  width: 0;
  border: 1px solid rgba(255, 255, 255, 0);
  bottom: -7px;
  position: relative;
  transition: all 280ms ease-in-out;
}

.column-footer a:hover:after {
  border-color: #FFFFFF;
  width: 70%;
  transition: width 350ms ease-in-out;
}

.isotipo {
  margin: 3rem auto 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.isotipo img {
  width: 200px;
  max-width: 55%;
  height: auto;
  object-fit: contain;
}

.social-media-bar, .media-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-media-icon {
  fill: #FFFFFF;
  height: 50px;
  width: auto;
  margin: 1em;
  padding: 1em;
  transition: fill 0.3s ease;
}

.social-media-icon:hover,
.social-media-icon:focus,
.social-media-icon:active {
  fill: #BF214B;
}

.social-media-icon-path, .cls-contact-icon, .cls-contact-icon-path {
  fill: #FFFFFF;
}

/* Copyright section */
.copyright {
  background-color: #FFFFFF;
  color: #24061E;
  grid-column: 1 / -1;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0;
}

.copyright span {
  color: #BF214B;
  font-weight: 700;
}



/* @Media min-width: 480px */
@media only screen and (min-width: 200px) and (max-width: 860px) {

#normal-header {
  display: none;
}

#responsive-header {
  display: flex;
  flex-flow: column;
  width: 100vw;
  height: 75px;
  margin: 0;
  padding: 0;
}

#responsive-logo-button {
  display: flex;
  align-items: center; /* Centrado vertical */
  padding: 0;
  margin: 0;
}

#responsive-logo-button img {
  object-fit: scale-down;
  object-position: center;
}

#header-img,
#header-img-black {
  margin-left: 5%;
  height: 75px;
  width: auto;
}

#responsive-nav-bar {
  display: block;
  align-items: center;
  justify-content: center;
  background-color: #FFF;
  width: 100vw;
  height: auto;
  margin: 0;
  padding: 0;
}

#responsive-nav-bar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#responsive-nav-bar li, icon-house {
  text-align: center;
  font-size: 23px;
  padding: 1rem;
}

#image-button-black {
  display: block;
  width: 50px;
  max-width: 50px;
  margin-top: 0;
  margin-left: 5px;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 9999;
}

#dropdown-button-black {
  width: 100%;
}

  footer {
    display: flex;
    flex-direction: column;
    width: 100vw;
  }

  .column-footer {
    width: 100vw;
  }

  .isotipo {
    margin: 1.5rem auto 0.5rem;
  }

  .isotipo img {
    max-width: 25%;
  }

  .media-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Alinea horizontalmente los elementos al centro */
    align-items: center; /* Alinea verticalmente los elementos al centro */
  }

  .social-media-icon {
    padding: 0.75rem;
    margin: 0.75rem;
  }

  .footer-links {
    text-align: center;
  }
}


