/*DARK MODE BUTTON*/

.switch {
    background: #343d5b;
    border-radius: 1000px;
    border: none;
    position: relative;
    cursor: pointer;
    display: flex;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  
  .switch span {
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: block;
    background: none;
    color: #fff;
    outline: none;
  }
  
  .switch::after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    background: #f1f1f1;
    top: 0;
    left: 0;
    right: unset;
    border-radius: 100px;
    transition: 0.3s ease all;
    box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
    outline: none;
  }
  
  .switch.active {
    background: orange;
    color: #000;
    outline: none;
  }
  
  *:focus {
    outline: none;
  }
  
  .switch:focus {
    outline: none;
  }
  
  .switch.active::after {
    right: 0;
    left: unset;
  }
@media only screen and (max-width: 700px) {
    .titulo {
      font-size: 45px;
    }
  
    .industry{
      display: none;
    }
  
    .hospital{
      display: none;
    }
  }
  
  @media only screen and (max-width: 900px) {
    .industry{
      display: none;
    }
    .hospital{
      display: none;
    }
  }

#jumbo{
    transition: 0.3s ease all;
  }
  
  .linea{
    background-color:  darkcyan;
  }
  
  .parrafo2{
    line-height: 40px;
    text-align: justify;
    font-size: 22px;
  }

  .buscanos{
    line-height: 40px;
    font-size: 20px;
  }
  
  .galleria:hover{
    transform: scale(1.8);
    z-index: 99;
    cursor: pointer;
    filter: grayscale(0);
  }
  
  .galleria{
    filter: grayscale(100%);
    transition: 1s;
  }
  
  
  #card{
    border: none;
  }
  
  .gallery{
    display: grid;
      grid-template-columns: repeat(auto-fit,minmax(130px,100px));
      grid-template-rows: repeat(2,200px);
      grid-gap: 10px;
  
  }
  
  .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 1s;
  }
  
  .item img:hover{
    filter: grayscale(0);
    transform: scale(1.1);
  }
  
  .alcasa{
    font-family:JustOne;
  }
  
  .industry{
    width: 100%;
    height: 94%;
    object-fit: cover;
  }
  
  .hospital{
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  /*Google Maps*/

.map-responsive {
    overflow: hidden;
  
    padding-bottom: 56.25%;
  
    position: relative;
  
    height: 0;
  }
  
  .map-responsive iframe {
    left: 0;
  
    top: 0;
  
    height: 100%;
  
    width: 100%;
  
    position: absolute;
  }

  #myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: whitesmoke; /* Set a background color */
    color: darkcyan; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 10px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 15px; /* Increase font size */
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0.75;
  }
  
  #myBtn:hover {
    background-color: darkcyan; /* Add a dark-grey background on hover */
    color: white;
    transition: 0.5s;
    opacity: 1;
  }

