

html{
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  overflow-x: hidden;
}
hr{
  display: none;
}
.ServicesRight{
  scroll-snap-align: center;
    display: flex;
    flex-direction: row;
    margin-bottom: 10em;
    margin-top: 4em;
    
}
.ServicesRight img{
    width: 30em;
    aspect-ratio: 1/1;
    border-radius: 50%;
    margin: auto;
}
.ServicesRight div{
    text-align: center;
    display: flex;
    flex-direction: column;
}

.ServicesLeft{
    scroll-snap-align: center;
    display: flex;
    flex-direction: row-reverse;
    margin-top: 4em;
    margin-bottom: 8em;
}
.ServicesLeft img{
    width: 30em;
    aspect-ratio: 1/1;
    border-radius: 50%;
    margin: auto;
}
.ServicesLeft div{
    text-align: center;
    display: flex;
    flex-direction: column;
}


table{
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}
  
table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
    background-color: #000000;
    color: white;
  }
  
  #Actividades{
    scroll-snap-align: start;
  }
  #Actividades h2{
    text-align: center;
  }
  #Actividades div{
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
  }
  div section{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .ActImage{
    width: 8em;
    aspect-ratio: 1/2;
    border-radius: 40%;
  }

  .FacilitiesButton{
    width: 15em;
    padding: 1em .3em;
    margin-top: 2em;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(to bottom, rgba(255,255,255, .5) 0%,rgba(255,255,255,0) 100%);
    border-style: groove;
    border-radius: 25%;
    color: black;
  }

  .ActivitiesButton{
    width: 7.5em;
    padding: 1em .3em;
    margin-bottom: 2em;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(to bottom, rgba(255,255,255, .5) 0%,rgba(255,255,255,0) 100%);
    border-style: groove;
    border-radius: 25%;
    color: black;
   
   }
  .FacilitiesButton:hover,.ActivitiesButton:hover{
    background: white;
    font-weight: bold;
}



  @media screen and (max-width: 1400px){
    header{
      scroll-snap-align: none;
    }
    html{
      scroll-behavior: auto;
      scroll-snap-type: y;
      overflow-x: hidden;}
      hr{
        display: block;
      }
    .ServicesRight{
      scroll-snap-align: none;
        display: flex;
        flex-direction: column;
        margin-bottom: 10em;
        margin-top: 8em;
        
    }
    .ServicesRight img{
        width: 20em;
        height: 20em;
        border-radius: 50%;
        margin: auto;
        text-align: center;
    }
    .ServicesRight div{
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    .ServicesLeft{
      scroll-snap-align: none;
        display: flex;
        flex-direction: column;
        margin-top: 8em;
        margin-bottom: 8em;
    }
    .ServicesLeft img{
        width: 20em;
        height: 20em;
        border-radius: 50%;
        margin: auto;
    }
    .ServicesLeft div{
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    table{
        width: 100%;
        margin: auto;
    }
    #Actividades{
      scroll-snap-align: none;
      margin-left: auto;
      margin-right: auto;
    }
    #Actividades h2{
        text-align: center;
      }
    #Actividades div{
        display: flex;
        flex-direction: column;
        margin-left: auto;
        margin-right: auto;
      }
      div section{
        margin-left: auto;
        margin-right: auto;
        text-align: center;
      }
      .ActImage{
        width: 12em;
        aspect-ratio: 1/1;
        border-radius: 50%;
      }

      .FacilitiesButton, .ActivitiesButton {
        font-size: .9em;
      }
  }