@import url('https://fonts.googleapis.com/css?family=Rockwell+Extra+Bold');
*{
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
    background-color: #fafafd;
  }

body{
    margin: 0;
}

button {
    padding: 1.3em 3em;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;
    font-weight: bold;
    background-color: #fff;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.5);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
  }
  
  button:hover {
    background-color: #db2626;
    box-shadow: 0px 15px 20px rgba(37, 41, 39, 0.4);
    color: #fff;
    transform: translateY(-7px);
  }
  
  button:active {
    transform: translateY(-1px);
  }

  .linea-division {
    width: 80%;
    height: 2px;
    background-color: #000000;
    margin: 0 auto;
    margin-bottom: 20px;
    /*center align*/
    display: block;
  }

/* ++++++++++++++++++++++ TEXTOS DE INICIO ++++++++++++++++++++++ */
.title{
    font-size: 4.5rem;
    font-weight: bold;
    color: #ca2323;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 1);
    font-family: 'Rockwell', sans-serif;
    margin-bottom: 5px;
}

.subtitle{
    font-size: 3.2rem;
    font-weight: bold;
    color: #db2626 ;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 1);
    font-family: 'rockwell', sans-serif;
}

.textini{
    font-size: 1.4rem;
    font-weight: bold;
    text-align: justify;
    text-shadow: 0px 4px 4px rgba(0, 0, 1, 1);
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.text{
    font-size: 1.4rem;
    font-weight: bold;
    text-align: justify;
    font-family: 'Arial', sans-serif;
    margin: 0 35px 0 35px;
   /*agregar efecto de animacion wow.js*/
   

}
/* ++++++++++++++++++++++ ESTILO DE BIENVENIDO ++++++++++++++++++++++ */
.ini{
    font-size: 4.5rem;
    font-weight: bold;
    color:   #db2626 ;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 3);
    font-family: 'Rockwell', sans-serif;
    display: block;
    white-space: nowrap;
    width: 10ch;
    /*animacion solo una ves*/
    animation: ini 1s ease-in-out infinite;
    animation: typing 1.5s steps(10),
                blink .5s infinite step-end alternate;
    overflow: hidden;
}

@keyframes typing {
    from{width: 0;}
}

@keyframes blink {
    20% {border-color: transparent;}
}

/* ++++++++++++++++++++++ SECCION DE INICIO ++++++++++++++++++++++ */
#inicio{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: 100vh;
    color: #ffffff;
    background-image: linear-gradient(0deg, rgba(40, 41, 58, 0.25),
       rgb(32, 35, 49)), url(../img/fondooo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-top: -40px;
    padding-left: 45px;
    padding-right: 45px;
  }

/* ++++++++++++++++++++++ SECCION DE NOSOTROS ++++++++++++++++++++++ */

  #nosotros{
    padding-top: 30px;
    flex-direction: column;
    text-align: center;
     
  }
  #nosotros .text{
    font-size: 1.4rem;
    font-weight: none;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 11;
    -webkit-box-orient: vertical;
    margin: 20px 35px 20px 35px;
  }

/* ++++++++++++++++++++++ SECCION DE SERVICIOS ++++++++++++++++++++++ */
  #servicios{
    padding-top: 30px;
    text-align: center;
    
  }
  .wrapperservi{
    width: 100%;
  }
  
  
  .owl-dots{
    text-align: center;
    margin-top: 40px;
  }
  

/* ++++++++++++++++++++++ SECCION DE CLIENTES ++++++++++++++++++++++ */

#clientes{
    padding-top: 30px;
    text-align: center;
    
  }
.carrusel {
    display: flex;
    align-items: center;
    padding-right: 20px;
    padding-left: 20px;
    justify-content: center;
  }
  
  .carrusel-items {
    display: flex;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 30px 10px;
  }
  
  .carrusel-item {
    min-width: 300px;
    max-width: 300px;
    height: 200px;
    outline: 2px solid black;
    cursor: pointer;
  }
  
  .carrusel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .carrusel-item:hover{
    transform: scale(1.2);
    transition: all 0.3s ease 0s;
  }
  
/* ++++++++++++++++++++++ SECCION DE CONTACTO ++++++++++++++++++++++ */
  #contactos{
    padding-top: 30px;
    text-align: center;
  }

  .sub{
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 0px 4px 4px rgb(167, 167, 167);
  }

  .contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.3);
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
  }
  .contact p{
    margin: 10px 35px 10px 35px;
  }
  
  .iconos-sociales img{ 
    transition:all 0.5s ease-out;
    border-radius:50px;
    height: 60px;
    width: 60px;
    }

  .iconos-sociales img:hover{
    box-shadow: 0px 2px 2px 2px rgba(0, 0, 0, 0.1);
    transform:translate(0px, -10px); 
  }

/* ++++++++++++++++++++++ SECCION DE DIRECCION ++++++++++++++++++++++ */
 
  #direccion{
    padding-top: 30px;
    text-align: center;
  }
  .texto{
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, .3);
  }

  #direccion ul{
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Roboto', cursive;

  }

  .container-map-section5{
    height: 50vh;
    margin-right: 20px;
    margin-left: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
  }
  /* ++++++++++++++++++++++ FOOTER ++++++++++++++++++++++ */
    #container-footer{
        margin-top: 130px;
    }


  /* ++++++++++++++++++++++ RESPONSIVE ++++++++++++++++++++++ */
    @media (min-width: 780px) {

        .subtitle{
          font-size: 4.5rem;
          font-weight: bold;
          color: #ca2323;
          text-align: center;
          text-shadow: 0px 4px 4px rgba(0, 0, 0, 1);
          font-family: 'rockwell', sans-serif;
          margin-top: 15px;
          margin-bottom: 15px;
        }

        .textini{
          font-size: 1.5rem;
          font-weight: bold;
          text-align: justify;
          text-shadow: 0px 4px 4px rgba(0, 0, 1, 1);
          font-family: 'Arial', sans-serif;
          text-align: center;
          margin-left: 100px;
          margin-right: 100px;
        }
        
        #container-nosotros{
            flex-direction: row;
            display: flex;
            margin: 0px 50px 0px 50px;
            
        }
        #container-text-nosotros{
            flex-direction: column;
            width: 55%;
            display: flex;
            justify-content: center;
        }

        .container-img-nosotros{
            flex-direction: column;
            width: 45%;
            display: flex;
            justify-content: center;
            background-image:url(../img/seccion2.png);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 25px;
            box-shadow: 0px 8px 15px rgba(8, 8, 8, 0.5);
            transition: all 0.3s ease 0s;
            cursor: pointer;
            -webkit-font-smoothing: antialiased;
            margin-top: 50px;
        }

        #contactos .text{
            margin-right: 120px;
            margin-left: 120px;
        }



        #container-direccion{
            flex-direction: row;
            display: flex;
            margin: 0px 50px 0px 50px;
        }

        .container-text-direccion{
            flex-direction: column;
            width: 40%;
            display: flex;
            justify-content: center;
            
        }
        .container-map-section5{
            width: 60%;
            height: 50vh;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease 0s;
            cursor: pointer;
            outline: none;
            
        }

    }

  