body{
    background: black;
    text-decoration: none;
}

.banner{
    width: 100%;
}

.banner img{
    width: 100%;
}

#banner1{
  display: block;
}

#banner2{
 display: none;
}

.container-nosotros{
    margin-top: 50px;
}

.container-nosotros .title-nosotros{
  font-size: 50px!important;
  background: #202020;
  text-align: center;
  padding: 30px;
  color: #fff;
  width: 100%;
}

.container-nosotros,
.info-nosotros .info{
   display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info-nosotros{
   display: flex;
   flex-direction: row; 
   justify-content: center;
    align-items: center;
}

.info-nosotros .info{
    width: 50%;
    padding: 5%;
}

.info-nosotros img{
    width: 50%;
    padding: 2%;
}

.info-nosotros .info p{
    font-size: 20px;
}

.info-nosotros .info a{
    font-size: 30px;
    background: #1f375d;
    color: #fff;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
}

.info-nosotros .info a:hover{
    background: #202020 ;
    color: #fff;
}




.container-products-all{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container-products-all .title-products{
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 80px;
}

.container-targets{
  width: 90%; 
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  text-align: center;
}

.container-targets .target{
    padding: 20px;
    background: #202020;
    margin-right: 10px;
    margin-left: 10px;
    margin-top: 20px;
    color: #fff;
    padding-bottom: 40px;
}

.container-targets .image-products{
    overflow: hidden;
}

.container-targets .target img{
    width: 90%;
    height: 180px;
    object-fit: cover;
}

.container-targets .target img:hover{
    transform: scale(1.5);
    transition: transform .5s ease;
}

.container-targets .target h1{
    font-size: 30px;
    margin-top: 20px;
}

.container-targets .target p{
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.container-targets .target a{
    font-size: 25px;
    margin-top: 0px;
    background: #fff;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
}

.container-targets .target a:hover{
    background: #1f375d;
    color: #fff;
    cursor: pointer;
}

@media only screen and (max-width: 1000px) {

#banner1{
  display: none;
}

#banner2{
 display: block;
}

.container-nosotros .title-nosotros{
    font-size: 25px!important;
}

.info-nosotros{
    flex-direction: column;
}

.info-nosotros img{
    width: 95%;
    padding: 0%!important;
}

.info-nosotros .info{
    width: 95%;
   text-align: center;
}

.container-targets{
    grid-template-columns: repeat(1, 1fr); 
}

.container-targets .image-products img{
    width: 100%;
}

.title-products{
    font-size: 50px!important;
}

}