html{
  scroll-behavior: smooth;
}

body{
  font-family: 'Ubuntu', sans-serif;
}

#whatsapp {
    position: fixed;
    bottom: 15px;
    left: 15px;
    background: #25d366;
    text-align: center;
    padding: 5px 20px;
    z-index: 1000000;
    border-radius: 20px;
    font-size: 20px;
}
#whatsapp a {
    color: #fff;
    font-size: 18px;
}
#whatsapp i {
    margin-right: 8px;
    font-size: 20px;
}

header{
  position: fixed;
  top: 0;
  width: 100%;
  padding: 30px 0;
  background: #fff;
  z-index: 300;
  transition: .6s ease-in-out;
  text-align: center;
  box-shadow: 0 2px 4px 1px rgba(0,0,0,0.3)
}

header.affix{
  padding: 5px 0;
}

header img{
  height: 90px;
}

header .llama{
  background: #cf1f3d;
  color: #fff;
  height: 90px;
  
  font-size: 20px;
  font-weight: 700;
}

header .llama p{
  margin: 0;
  text-transform: uppercase;
}

header .llama a{
  color: #fff !important;
  text-decoration: none !important;
  line-height: 20px;
}

header nav{
  line-height: 90px;
}

header nav a{
  color: #cf1f3d !important;
  text-decoration: none !important;
  margin: 0 10px;
  font-size: 20px;
}

#home{
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4),rgba(0, 0, 0, 0.4)), url('../img/home.jpg') center no-repeat;
  background-size: cover;
  position: relative;
}

#home h1{
  color: #fff;
  font-weight: 700;
  font-size: 45px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
}

#nosotros{
  background: #eee;
}

#nosotros h3{
  color: #cf1f3d;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
  text-align: justify;
}

#nosotros h3 b{
    font-family: 'Times New Roman', serif;
    font-weight: bold;
}

#nosotros ul{
    font-size: 18px;
    padding-inline-start: 25px;
}

#nosotros .flex{
  padding: 0;
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#nosotros .flex .contenido{
  max-width: 70%;
  font-size: 15px;
}

#nosotros .flex .contenido p{
  margin-bottom: 15px;
}

#nosotros .flex.imagen{
  background: url('../img/imagen.jpg') center no-repeat;
  background-size: cover;
}

#servicios{
  padding: 80px 0;
  text-align: center;
}

#servicios .servicio{
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 40px;
  transition: .6s ease-in-out;
}

#servicios .servicio:hover{
  background: rgba(190,190,190,.1);
}

#servicios img{
    margin-bottom: 30px;
}

#servicios i{
  color: #fff;
  background: #cf1f3d;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  font-size: 23px;
  border-radius: 30px;
  position: relative;
}

#servicios i::after{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  content: '';
  height: 70px;
  width: 70px;
  border-radius: 100%;
  border: solid 2px #cf1f3d;
}

#servicios .servicio h3{
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 30px;
}

#servicios .servicio ul{
  padding: 0;
}

#servicios .servicio ul li{
  list-style: none;
}

#video{
  padding: 130px 0;
  background: linear-gradient(rgba(207, 31, 61, 0.8), rgba(207, 31, 61, 0.8)), url('../img/video.jpg') center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

#clientes{
  padding: 80px 0;
}

#clientes h2{
  color: #cf1f3d;
  text-align: center;
  margin: 0;
  margin-bottom: 30px;
  font-weight: 700;
}

#clientes .contar{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items:center;
  justify-content: center;
  flex-wrap:wrap;
}

#clientes .contar .sincol{
  width: 20%;
  display: flex;
  padding: 0 15px;
}

#clientes .contar .sincol img{
  width: 100%;
}

#contacto{
  background: linear-gradient(rgba(207, 31, 61, 0.9), rgba(207, 31, 61, 0.9)), url('../img/video.jpg') center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 80px 0;
  color: #fff;
}

#contacto h2{
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  margin: 0;
  margin-bottom: 30px;
}

#contacto form{
    color: #333 !important;
}

#contacto input, #contacto textarea{
  border: none;
  width: 100%;
  margin-bottom: 30px;
  padding: 10px;
  border-radius: 5px;
  resize: none;
  box-shadow: 0 0 10px 2px rgba(0,0,0,.2);
}

#contacto textarea{
  height: 100px;
}

#contacto button{
  background: #860e22;
  border: none;
  padding: 5px 40px;
  border-radius: 5px;
  font-weight: 700;
  margin-top: 30px;
  color: #fff;
}

#ubicacion{
  padding: 80px 0;
}

#ubicacion p{
  font-weight: 700;
  font-size: 18px;
  margin: 0;
  margin-top: 20px;
  text-align: center;
  color: #cf1f3d;
}

footer{
  background: #333;
  color: #fff;
  text-align: center;
  padding: 30px 0;
  font-weight: 700;
}

footer img{
  height: 30px;
}

@media(max-width: 992px){
  header nav{
    line-height: 20px;
    margin-top: 15px;
  }
  header .llama{
    font-size: 18px;
  }

  #home h1{
    font-size: 45px;
    width: 85%;
  }

}

@media(max-width: 768px){
    header img{
      height: auto;
      width: 100%;
    }
    
  #home h1{
    font-size: 35px;
  }
  #nosotros .flex{
    height: 850px;
  }

  #nosotros .flex .contenido{
    max-width: 85%;
  }

  #nosotros .flex.imagen{
    background: url('../img/imagen.jpg') center no-repeat;
    background-size: cover;
    height: 500px;
  }
  #clientes .contar .sincol{
    width: 50%;
  }
}
