body::-webkit-scrollbar{
  width: 7px;
}

body::-webkit-scrollbar-thumb{
  background: #3af4f4;
  border-radius: 5px;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
.AListMenu{
    margin-top: 40px;
}
.listMenu{
    list-style: none;
    font-size: 20px;
    padding-bottom: 30px;
    color: white;
    padding-left: 1rem;
}
.listMenu:hover{
    list-style: none;
    color: cyan;
    font-size: 40px;
    border-radius: 4px;
    padding-left: 1rem;
}
hr.divider {
    max-width: 100%;
    border-width: 0.2rem;
    color: #2d5152;
    height: 3px !important;
    opacity: 100 !important;
    border-radius: 4px;
  }
  .tooltipM {
    position: relative;
  }
  
  .tooltipM .tooltiptext {
    visibility: hidden;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    right: 20%;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .tooltipM .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
  }
  
  .tooltipM:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }

  .redSocial{
    border-radius: 50%;
    transition: all .3s ease-in-out;
    border: 2px solid aqua;
  }

  .redSocial:hover{
    color: rgb( 146, 104, 8 );
    transform: scale(1.7);
    border-color: rgb( 146, 104, 8 );
    border: 2px solid;
  }

  .textRS{
    opacity: 0.8;
    margin: 2em 0;
    color: #fff;
}

h1{
    font-weight: 600;
    font-size: 3em;
    color: rgb( 255, 97, 0 );
}

.banner{
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    text-align: left;
    background: center fixed url("../img/BanInatic1.jpg");
    transition: all 1.8s;
}

.banner:hover{
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;
  text-align: left;
  background: center fixed url("../img/BanInatic1A.jpg");
}

.text_ban{
  font-size: 2.8em;
  color: #fff;
  background: fixed;
  height: 10px;
}

.textBS{
  font-size: 1.8em;
  color: rgb(11,83,69);
  transition: all 1.8s;
}

.banner:hover .textBS{
  font-size: 1.8em;
  color: #fff;
}

.unete{
  border: 2px solid rgb(11,83,69);;
  padding: 0.6em 3.5em;
  margin: auto;
  color: rgb(11,83,69);
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9em;
  transition: all 1.8s;
}

.banner:hover .unete{
  border: 2px solid rgb(128, 139, 150);
  background: rgb(  93, 109, 126 );
  color: #fff;
}


.banner_description{
    height: 80%;
    width: 90%;
    max-width: 1200px;
    display: block;
    margin: auto;
}

.bannerFirst{
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  text-align: left;
  background: center fixed url("../img/img1.jpg");
}

.banner_descriptionFirst{
  width: 90%;
  max-width: 1000px;
  display: block;
  margin: auto;
}

.containerT{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: calc(1.325rem + .9vw);
  color: brown;
  padding-top: 30px;
}


.container{
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.container .card{
  position: relative;
  width: 320px;
  height: 440px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.05),
              inset -5px -5px 5px rgba(255,255,255,0.5),
              5px 5px 5px rgba(255,255,255,0.5),
              -5px -5px 5px rgba(255,255,255,0.5);
  border-radius: 15px;
  margin: 30px;
}
.container .card .box{
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ebf5fc;
  box-shadow: 0 10px 20px rgba(255,255,255,0.1);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}

.container .card:hover .box{
  transform: translateY(-50px);
  box-shadow: 0 10px 20px rgba(255,255,255,0.2);
  background: linear-gradient(45deg, #aed6f1,#154360);
}

.container .card .box .content{
  padding: 20x;
  text-align: center;
}

.container .card .box .content h2{
  position: absolute;
  top: -10px;
  right: 30px;
  font-size: 8em;
  color: rgba(0, 0, 0, 0.08);
  transition: 0.5s;
  pointer-events: none;
}

.container .card:hover .box .content h2{
  color: rgba(0, 0, 0, 0.08);
}

.container .card .box .content h3{
  font-size: 1.8em;
  color: #777;
  z-index: 1;
  transition: 0.5s;
}

.container .card .box .content p{
  font-size: 1em;
  font-weight: 300;
  color: #777;
  z-index: 1;
  transition: 0.5s;
}

.container .card:hover .box .content h3,
.container .card:hover .box .content p{
  color: #fff;
}

.container .card .box .content a{
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  background: #03a9f4;
  margin-top: 15px;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.container .card:hover .box .content a{
  background:#0e6251;
}

.clie{
  margin-top: 100px;
  padding-bottom: 100px;
}
.container__box{
  max-width: 1100px;
  margin: auto;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.bax{
  width: 218px;
  height: 200px;
  background: #fff;
  margin: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  transition: all 300ms ease;
  position: relative;
}

.bax:hover{
  transform: scale(1.1);
  box-shadow: 0px 0px 30px -15px rgba(0,0,0,0.5);
  z-index: 1;
}

.bax:hover img{
  color: #fff;
}

.bax h5{
  text-transform: uppercase;
  font-size: 14px;
  color: #777777;
}