/**************************/
/* BELOW 544px (Phones) */
/**************************/

@media (max-width: 36em) {
  .contact-info {
    background-color: #4a8692;
    border-radius: 0px 10px 10px 0px;
    height: 150px;
  }
}

@media (max-width: 62em) {
  .center-nav {
    background-color: rgba(255, 255, 255, 0.97);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* transform: translateX(100%); */

    display: flex;
    align-items: center;
    justify-content: center;
    /* transition: all 0.5s ease-in; */

    /* Hide navigation */
    /* Allows NO transitions at all */
    /* display: none; */

    /* 1) Hide it visually */
    opacity: 0;

    /* 2) Make it unaccessible to mouse and keyboard */
    pointer-events: none;

    /* 3) Hide it from screen readers */
    visibility: hidden;
  }

  .btn-mobile-nav {
    display: block;
  }
  .btn-mobile-nav:hover {
    display: block;
    /* color: crimson; */
    color: crimson;
  }
  #yosoy{
    font-size:2rem;
    width: 100%;
    object-fit: cover;
    font-weight: 700;
    color: #64B3C2;
  }

  .img-main {
    margin-top: 0rem;
    width: 20rem;
  }
  .section-hero {
    /* background-image: url("/img/background_main.png"); */
    background-image: none;
    background-size: cover;
  }

  .imgs-logos {
    height: 50px;
    margin: 1rem;
    width: 50px;
  }
  #bot-nav {
    /* display: none; */
    padding: 15px;
    font-size: 25px;
    z-index: 999;
    border-radius: 5px 5px 8px 8px;

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    /* background-color: rgb(37, 37, 37); */
  }
  #bot-nav a {
    margin-block: 15px;
    margin-inline: 0px;
    text-align: center;
    z-index: 999;
  }

  #bot-nav.mostrar {
    /* backgroundColor: rgb(37, 37, 37); */
     max-height: 500px; /*Altura deseada del div al abrirlo */
     z-index: 999;
  }
  #services .container .row h1{
    /* color: #202020; */
    
    font-size: 5rem;
}
}


