html{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 14px;
}

a{
    text-decoration: none;
}
section[id]{
  display: none;
  scroll-margin-top: 5em;
}
img {
  transition: all 0.3s ease-in-out;
}
 .row{
  margin: 0 !important;
 }

/*WhatsApp*/
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 2.5em;
    right: 1em;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
  }
  
  .my-float {
    margin-top: 16px;
  }
  .animate {
    animation: bounce 3s linear infinite;
  }
  
  @keyframes bounce {
    0% {
      transform: translateY(0);
      animation-timing-function: ease-out;
    }
  
    50% {
      transform: translateY(-0.5rem);
      animation-timing-function: ease-in;
    }
    100% {
      transform: translateY(0);
      animation-timing-function: ease-in;
    }
  }

/*Fondo Parallax*/
.parallax {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .parallax img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  
  #element1, #element2, #element3, #element4, #element5,
  #element6, #element7, #element8, #element9, #element10,
  #element11, #element12, #element13, #element14
  {
    position: fixed;
    opacity: 25% !important;    
    transition: 1.5s; 
    animation: bounce 5s  linear infinite;
    max-width: 15rem;
  }
  #element1{
    top: 2rem;
    width: 25rem;
    rotate: 45deg;
  }
  #element2 {
    top: 2rem;
    left: 70rem;
    height: 20rem;
  }
  
  #element3 {
    left: 20%;
    top: 25%;
    height: 7rem;
    rotate: 30deg;
  }
  
  #element4 {
    left: 76%;
    bottom: 1rem;
  }
  
  #element5{
    left: 20%;
    top: 1rem;
    width: 5rem;
  }

  #element6{
    left: 45%;
    top:60%;
  }

  #element7{
    left: 3%;
    bottom: 10%;
    width: 6rem;
  }

  #element8{
    right: 2%;
    width: 1.5rem;
  }

  #element9{
    right: 0%;
    top: 25%;
    rotate: 90deg;
    width: 2rem;
  }

  #element10{
    right: -15%;
    top: -1%;
    width: 15rem;
  }

  #element11{
    top: 15%;
    right: 10%;
    opacity: 6% !important;
  }

  #element12{
    top: 30rem;
    left: 15%;
    height: 8rem;
  }

  #element13{
    bottom: -5%;
    height: 6rem;
  }

  #element14{
    bottom: -10%;
    left: 25%;
  }

/*header*/
.marca {
    max-width: 50%;
    position: fixed;
    display: inline-grid;
    align-self: center;
    top: 3rem;
    left: 3rem;
    align-content: space-evenly;
    justify-items: stretch;
    max-height: 5rem;
    transition: all 0.3s ease-in-out;
  }

.marca-reducida {
  opacity: 0.5;
  transform: scale(0.8);
}
  
  @media only screen and (max-width: 767px) {
    /* Cambia la imagen para dispositivos móviles */
    .marca {
        content: url('../resources/SVG/SIB-blanco.svg') !important;
        max-width: 50%;
        position: fixed;
        display: inline-grid;
        align-self: center;
        top: 2rem;
        left: 3rem;
        align-content: space-evenly;
        justify-items: stretch;
        max-height: 5rem;
    }
  }

main{
    max-width: 1080px;
    margin: 0 auto;
    font-size: 16px;
}

.menu{
    position: fixed;
    right: 1.5em;
    top:1.5em;
    background-color: #eceff1;
    width: 6rem;
    border-radius: 25px;
    transition: 0.3s border-radius ease-in-out, 0.3s height ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: bounce 3s linear infinite;
    box-shadow: 2px 2px 3px #999;
    text-align: center;
    z-index: 9999;
 }

.menu--closed{
    height: 3rem;
    width: 3rem;
}

.menu--open{
    height: 35em;
    color: #132a43;
    font-weight: 900;
    text-decoration: none;
    padding-left: 1%;
    padding-right: 1%;
    font-size: 1rem;
    overflow-y: scroll; /* Esto agrega el desplazamiento vertical a la div */
    scrollbar-width: none; /* Esto oculta la barra de desplazamiento */
    -ms-overflow-style: none;
}

.menu--open::-webkit-scrollbar {
    display: none;
}

.button{
    transition: 0.3s transform ease-in-out, 0.3s opacity ease-in-out;;
    cursor: pointer;
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 1em;
    height: 1em;
    left: 1rem;
    top: 1rem;
    opacity: 1;
}

.button:hover {
    opacity: 0.6;
}

.button span{
    width: 100%;
    height: 4px;
    background-color: #132a43;
    border-radius: 20%;
}

.menu--open .button{
    transform-origin: center;
    transform: rotate(90deg);
}

.tools{
    display: inline-block;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    height: 90%;
    justify-content: space-around;
    transition: 0.3s margin ease-in-out;
    padding: 1em;
    text-align: center;
}


.tools .icon{
    transition: 0.2s transform ease-in-out;
}

.tools .icon:hover{
    transform: scale(0.8);
}

.tools--hidden{
    margin-top: 400px;
    z-index: -100;
}

.tools--visible{
    margin-top: 40%;
    z-index: 100;
}

.icon{
  display: inline-flex;
  text-align: center;
  padding: 10%;
  font-weight: 900;
  width: 60%;
  color: #132a43 !important;
  align-items: center;
  flex-direction: column;
}

/*formulario de registro*/
#register{
  text-align: center;
  margin-bottom:5em;
}
.title-form{
  text-transform: uppercase;
  text-align:center ;
  font-weight:800;
  color: #00999d;
  font-size: medium;
}
.title-span{
  font-weight: 900;
  color: #feb109;
  text-transform: capitalize;
  font-size:xx-large;
}

#formulario{
  width: 30em;
  margin-bottom: 2em;
  background-color: #eceff1;
  text-align: left;
  display: inline-flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 5px;
  box-shadow: 2px 2px 3px #99999987;
}
label {
	display: block;
	margin-bottom: 5px;
  color: #00999d;
}

input[type="text"], input[type="tel"], input[type="email"], textarea, select {
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
}

input[type="checkbox"] {
	width: 5%;
}

button[type="submit"] {
	background-color: #feb109;
	color: #fff;
  font-size:medium;
	padding: 10px 20px;
	border: none;
	border-radius: 13px;
	cursor: pointer;
  font-weight: bold;
}

button[type="submit"]:hover {
	background-color: #d68b00;
}

#popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

#popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 20px;
}


.oculto {
  display: none;
}

}
/*Servicios*/
#services{
  margin-top: 10em;
  text-align: center;
  align-items: center;
  margin-bottom: 10em;
}
.servicios{
  background-color: #00999d;
  height: 15em;
  text-align: left;
  display: inline-flex;
  flex-direction: column;
  border-radius: 5px;
  box-shadow: 2px 2px 3px #99999987;
  cursor: pointer;
  padding: 1rem 0rem 2rem 0rem;
  margin: 2%;
}
.servicios:hover{
  background-color: #5c5c5c;
}
.iconos{
  max-height: 6em;
}
.nombres{
  font-size: 1.5rem;
  text-align: center;
  line-height: 0.8em;
  color: #fff;
  font-variant: all-small-caps;
}
.nombres2{
  color: #feb109;
  line-height: 1em;
  font-weight: 900;
}

/*Privacidad*/
#privacy{
  margin-top: 5em;
}

.privacy{
  text-align: justify;
  color: #5c5c5c;
  margin: 2% 10% 5% 10%;
  font-size: medium;
}








/*404*/
.main-wrapper {
  font-size: 5vmin;
  width: 100vw;
  height: 77vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signboard-wrapper {
  width: 75vmin;
  height: 55vmin;
  margin: 20px;
  position: relative;
  flex-shrink: 0;
  transform-origin: center 2.5vmin;
  animation: 1000ms init forwards, 1000ms init-sign-move ease-out 1000ms, 3000ms sign-move 2000ms infinite;
}
.signboard-wrapper .signboard {
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  background-color: #00999d;
  width: 100%;
  height: 35vmin;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  border-radius: 4vmin;
  text-shadow: 0 -0.015em #132a43;
  box-shadow: 0 2vmin 4vmin 1vmin rgba(107, 107, 107, 0.8);
}
.signboard-wrapper .string {
  width: 30vmin;
  height: 30vmin;
  border: solid 0.9vmin #d68b00;
  border-bottom: none;
  border-right: none;
  position: absolute;
  left: 50%;
  transform-origin: top left;
  transform: rotate(45deg);
}
.signboard-wrapper .pin {
  width: 5vmin;
  height: 5vmin;
  position: absolute;
  border-radius: 50%;
}
.signboard-wrapper .pin.pin1 {
  background-color: #9f9f9f;
  top: 0;
  left: calc(50% - 2.5vmin);
}
.signboard-wrapper .pin.pin2, .signboard-wrapper .pin.pin3 {
  background-color: #d68b00;
  top: 21.5vmin;
}
.signboard-wrapper .pin.pin2 {
  left: 13vmin;
}
.signboard-wrapper .pin.pin3 {
  right: 13vmin;
}

@keyframes init {
  0% {
    transform: scale(0);
  }
  40% {
    transform: scale(1.1);
  }
  60% {
    transform: scale(0.9);
  }
  80% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes init-sign-move {
  100% {
    transform: rotate(3deg);
  }
}
@keyframes sign-move {
  0% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(3deg);
  }
}