* {
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: ralewayR;
  src: url(libs/fuentes/Raleway/Raleway-Regular.ttf);
}
@font-face {
  font-family: Roboto;
  src: url(libs/fuentes/Roboto/Roboto-Regular.ttf);
}
/* Card's I */
.recuadros {
  display: flex;
  /* margin: 0 auto; */
  margin-left: 6.4%;
}
.recuadrosTam {
  width: 18rem;
}
/* Card's II  */
.card2Tam {
  width: 100%;
  height: auto;
  background-color: #282828;
}
.breakText {
  width: 43vw;
  word-break: break-all;
  z-index: 10000;
}
.spanText {
  color: white;
  font-size: 19px;
}
.titleText {
  color: white;
  font-size: 25px;
  font-family: ralewayR;
}
.whiteWord {
  color: white !important;
}
/* Camioneta */
/* .contenedorTam {
  background-color: #872626;
  height: 100vh;
  width: 100%;
} */
/* Font Family */
span {
  font-family: ralewayR;
}
a {
  font-family: ralewayR;
}
input {
  font-family: ralewayR;
}
textarea {
  font-family: ralewayR;
}
select {
  font-family: ralewayR;
}
p {
  font-family: ralewayR;
}
h1 {
  font-family: ralewayR;
}
h2 {
  font-family: ralewayR;
}
h3 {
  font-family: ralewayR;
}
h4 {
  font-family: ralewayR;
}
h5 {
  font-family: ralewayR;
}
button {
  font-family: ralewayR;
}
.raleway {
  font-family: ralewayR;
}

/* Imagenes con el texto encima  */
.img {
  background-image: url(imagenes/shutterstock/Resize/montacargas-almacen5.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.img::before {
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(black, black);
  opacity: 0.7;
  z-index: -1;
}
.img2 {
  background-image: url(imagenes/shutterstock/Resize/montacargas-almacen.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}
.img2::before {
  content: "";
  width: 100%;
  position: absolute;
  min-height: 100vh;
  top: 0;
  left: 0;
  background-image: linear-gradient(black, black);
  opacity: 0.7;
  z-index: -1;
}
.img3 {
  background-image: url(imagenes/shutterstock/Resize/montacargas-bateria.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}
.img3::before {
  content: "";
  width: 100%;
  position: absolute;
  min-height: 100vh;
  top: 0;
  left: 0;
  background-image: linear-gradient(black, black);
  opacity: 0.7;
  z-index: -1;
}
/* Loading de pagina */
*,
*::after::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#contenedor_carga {
  background-color: rgb(250, 240, 245, 0.9);
  height: 100%;
  width: 100%;
  position: fixed;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  z-index: 10000;
}
#carga {
  border: 15px solid #ccc;
  border-top-color: #872626;
  border-top-style: groove;
  height: 100px;
  width: 100px;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-animation: girar 1.5s linear infinite;
  -o-animation: girar 1.5s linear infinite;
  animation: girar 1.5s linear infinite;
}
@keyframes girar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* scroll bar */
body::-webkit-scrollbar {
  width: 8px;
  height: 50px;
  background-color: white;
}
body::-webkit-scrollbar-thumb {
  border-radius: 8px;
  width: 8px;
  height: 10px;
  background-color: #872626 !important;
  display: block !important;
}
/* Hover dropdown menu */
.dropdown:hover > .dropdown-menu {
  display: block;
}

/* Icons de servicio */
.herramienta {
  position: absolute;
  width: 120px;
  height: 110px;
}
.personService {
  width: 250px;
  height: 250px;
}
.telefonoCamioneta {
  font-size: 60px;
}
.telefonoFooter {
  font-size: 25px;
}
.correoFooter {
  font-size: 20px;
}
.btnIdiomas {
  width: 50px;
}
/* showroom */
.columnas {
  /* margin: 0 auto; */
  width: 100%;
}
.contenedor {
  width: 100%;
  /* display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; */
}
.contenedor figure {
  position: relative;
  /* height: 250px; */
  cursor: pointer;
  /* width: 350px; */
  /* overflow: hidden;
  border-radius: 6px;
  box-shadow: 0px 15px 25px rgba(0,0,0,0.50); */
}
.contenedor figure img {
  width: 100%;
  height: 100%;
  transition: all 500ms ease-out;
}
.contenedor figure .capa {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(135, 38, 38, 0.7);
  transition: all 500ms ease-out;
  opacity: 0;
  visibility: hidden;
  text-align: center;
}
.contenedor figure:hover > .capa {
  opacity: 1;
  visibility: visible;
}
.contenedor figure:hover > .capa h3 {
  margin-top: 70px;
  margin-bottom: 15px;
}
/* .contenedor figure:hover > img{
  transform: scale(1.3);
} */
.contenedor figure .capa h3 {
  color: #fff;
  font-weight: 400;
  margin-bottom: 120px;
  transition: all 500ms ease-out;
  margin-top: 30px;
}
.contenedor figure .capa p {
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  width: 100%;
  max-width: 220px;
  margin: auto;
}
/* JS */
.displayNone {
  display: none;
}
.brNone {
  display: none;
}
.brTablet {
  display: none;
}
.brTablet2 {
  display: none;
}
.brLap {
  display: none;
}
.marLeft {
  margin-left: 1.5rem;
}
.marTop {
  margin-top: 1.5rem;
}
.sidebar {
  width: 45%;
  height: 100vh;
  position: fixed;
  z-index: 10000000000000;
  background-color: white;
  top: 0%;
  right: 0%;
}
.times {
  font-size: 2rem !important;
}
.padLeft4 {
  padding-left: 4% !important;
}
.padRight4 {
  padding-right: 4% !important;
}
.padLeRi2 {
  padding-left: 2% !important;
  padding-right: 2% !important;
}
.pleft4 {
  padding-left: 4%;
}
.mlShow {
  margin-left: 2rem;
}
.fdColumna {
  display: flex;
}
.imgTamaño1 {
  width: 100%;
  height: 100%;
}
.imgTamaño {
  width: 100%;
  height: 100%;
}
.imgTamañoServices {
  width: 100%;
  height: 100%;
}
/* .btnShow {
  position: absolute;
  z-index: 1;
  left: 7%;
  top: -30%;
} */
.margTop {
  margin-top: 5%;
}
.ddMenu {
  padding: 0.3rem !important;
  position: absolute !important;
  top: 100% !important;
  left: -5px !important;
}
.ddItem {
  padding: 0.25rem 0 !important;
}
.alturas {
  height: 32.2rem;
}
.plTexto {
  padding-left: 3rem !important;
}
/* Computadoras */
@media(min-width: 1280px) and (max-width: 2500px){
  .margenTexto {
    margin-top: 18%;
  }
  .margenTexto2 {
    margin-top: 12%;
  }
}
@media (min-width: 1280px) {
  .marTop {
    margin-top: 2.5rem;
  }
  .imgTamaño {
    /* width: 100%; */
    /* height: 421px; */
  }
  .imgTamañoServices {
    /* width: 100%; */
    /* height: 537px; */
  }
  .brLap {
    display: block;
  }
}
@media (min-width: 1300px) {
  .marTop {
    margin-top: 2.5rem;
  }
  .mlShow {
    margin-left: 16%;
  }
  .imgTamaño1 {
    /* width: 100%;
    height: 430px; */
  }
  .imgTamaño {
    /* width: 100%; */
    /* height: 430px; */
  }
  .imgTamañoServices {
    /* width: 100%; */
    /* height: 430px; */
  }
  .brLap {
    display: block;
  }
  /* .recuadros {
    display: flex;
    margin-left: 21vw;
    flex-wrap: wrap;
  } */
}
@media (min-width: 1366px) {
  .marTop {
    margin-top: 2.5rem;
  }
  /* .margenTexto {
    margin-top: 18%;
  }
  .margenTexto2 {
    margin-top: 12%;
  } */
  .mlShow {
    margin-left: 16%;
  }
  .imgTamaño1 {
    /* width: 100%;
    height: 430px; */
  }
  .imgTamaño {
    /* width: 100%; */
    /* height: 430px; */
  }
  .imgTamañoServices {
    /* width: 100%; */
    /* height: 430px; */
  }
  .brLap {
    display: block;
  }
  /* .recuadros {
    display: flex;
    margin-left: 21vw;
    flex-wrap: wrap;
  } */
}
@media (min-width: 1440px) {
  .recuadros {
    margin-left: 9.4%;
  }
  .alturas {
    height: 36.2rem;
  }
  .card-letra {
    font-size: 20px;
  }
  .card-title {
    font-size: 20px;
  }
}
@media (min-width: 1920px) {
  .marTop {
    margin-top: 2.5rem;
  }
  .imgTamaño {
    /* width: 100%; */
    /* height: 430px; */
  }
  .imgTamañoServices {
    /* width: 100%; */
    /* height: 430px; */
  }
  .brLap {
    display: block;
  }
  .recuadros {
    margin-left: 18.4%;
  }
  .alturas {
    height: 53.2rem;
  }
  .card-letra {
    font-size: 35px;
  }
  .card-title {
    font-size: 25px;
  }
}
@media (min-width: 2500px) {
  .marTop {
    margin-top: 2.5rem;
  }
  .imgTamaño {
    /* width: 100%; */
    /* height: 430px; */
  }
  .imgTamañoServices {
    /* width: 100%; */
    /* height: 430px; */
  }
  .brLap {
    display: block;
  }
  .recuadros {
    margin-left: 26.4%;
  }
  .alturas {
    height: 63.2rem;
  }
  .card-letra {
    font-size: 45px;
  }
  .card-title {
    font-size: 35px;
  }
  .textoGeneral {
    font-size: 30px;
  }
  .telefonoFooter {
    font-size: 30px;
  }
  .correoFooter {
    font-size: 30px;
  }
}
/* Tablet Horizontal */
@media (max-width: 1024px) {
  .recuadros {
    display: flex;
    margin-left: 21vw;
    flex-wrap: wrap;
  }
  .brTablet2 {
    display: block;
  }
  .btnShow {
    position: absolute;
    z-index: 1;
    left: 103%;
    top: -12%;
  }
  .logoDagosa {
    height: 65px;
    width: 222px;
  }
  .marTop {
    margin-top: 3.5rem;
  }
  .margenTexto{
    margin-top: 18%;
  }
}
/* Tablet */
@media (max-width: 768px) {
  .recuadros {
    display: flex;
    margin-left: 14%;
    flex-wrap: wrap;
  }
  .display{
    display: none;
  }
  .margenTexto{
    margin-top: 18%;
  }
}

@media (min-width: 500px) and (max-width: 800px) {
  .marTop {
    margin-top: 3.5rem;
  }
  .imgTamaño1 {
    width: 384px;
    height: 534px;
  }
  .imgTamaño {
    width: 384px;
    height: 421px;
  }
  .imgTamañoServices {
    width: 384px;
    height: 593px;
  }
  .btnShow {
    position: absolute;
    z-index: 1;
    left: 104%;
    top: -13%;
  }
  .recuadros {
    display: flex;
    margin-left: 12%;
    flex-wrap: wrap;
  }
  .brTablet {
    display: block;
  }
}
@media (max-width: 600px) {
  .recuadros {
    display: flex;
    margin-left: 1%;
    flex-wrap: wrap;
  }
  .imgTamaño1 {
    width: 300px;
    height: 645px;
  }
  .imgTamaño {
    width: 300px;
  }
  .imgTamañoServices {
    width: 300px;
    height: 621px;
  }
  .plTexto {
    padding-left: 1rem !important;
  }
}
/* Celular */
@media (max-width: 421px) {
  .recuadros {
    display: flex;
    margin-left: 16%;
    flex-wrap: wrap;
  }
  .logoDagosa {
    height: 70px;
    width: 73%;
  }
  .margTop {
    margin-top: 40%;
  }
}
@media (max-width: 412px) {
  .recuadros {
    display: flex;
    margin-left: 16%;
    flex-wrap: wrap;
  }
  .plTexto {
    padding-left: 3rem !important;
  }
  .logoDagosa {
    height: 70px;
    width: 75%;
  }
  .pagination {
    position: absolute;
    top: 128%;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .margTop {
    margin-top: 40%;
  }
}
@media (max-width: 411px) {
  .recuadros {
    display: flex;
    margin-left: 17vw;
    flex-wrap: wrap;
  }
  .plTexto {
    padding-left: 3rem !important;
  }
  .pagination {
    position: absolute;
    top: 128%;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .margTop {
    margin-top: 40%;
  }
}
@media (max-width: 384px) {
  .recuadros {
    display: flex;
    margin-left: 14vw;
    flex-wrap: wrap;
  }
}
@media (max-width: 375px) {
  .recuadros {
    display: flex;
    margin-left: 13vw;
    flex-wrap: wrap;
  }
  .plTexto {
    padding-left: 3rem !important;
  }
  .pagination {
    position: absolute;
    top: 131%;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .margTop {
    margin-top: 40%;
  }
}

@media (max-width: 360px) {
  .recuadros {
    display: flex;
    margin-left: 11vw;
    flex-wrap: wrap;
  }
  .plTexto {
    padding-left: 3rem !important;
  }
  .pagination {
    position: absolute;
    top: 132%;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .margTop {
    margin-top: 40%;
  }
}
@media (max-width: 320px) {
  .recuadros {
    display: flex;
    margin-left: 6vw;
    flex-wrap: wrap;
  }
  .serCon {
    font-size: 1.6rem;
  }
  .pagination {
    position: absolute;
    top: 135%;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .margTop {
    margin-top: 33%;
  }
}
@media (min-width: 320px) and (max-width: 421px) {
  .quitPadding {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .margenTexto {
    margin-top: 0%;
  }
  .serCon {
    font-size: 1.6rem;
  }
  .personService {
    width: 215px;
    height: 215px;
  }
  .brNone {
    display: inline-block;
  }
  .info1 {
    flex: 1 0 50%;
    max-width: 100% !important;
  }
  .imgCel {
    display: none;
  }
  .breakText {
    width: 82vw;
    word-break: break-all;
    z-index: 10000;
  }
  .spanText {
    color: white;
    font-size: 15px;
  }
  .marButton {
    margin-bottom: 1.5rem;
  }
  .marLeft {
    margin-left: 0rem;
  }
  .marTop {
    margin-top: 3.5rem;
  }
  .btnShow {
    display: none;
  }
  .colCentro {
    display: none;
  }
  .padLeft4 {
    padding-left: 0%;
  }
  .padRight4 {
    padding-right: 0%;
  }
  .pleft4 {
    padding-left: 8%;
  }
  .mlShow {
    margin-left: 9%;
  }
  .fdColumna {
    display: flex;
    flex-direction: column;
  }
  .centrar {
    text-align: center;
  }
  /* .margTop {
    margin-top: 30%;
  } */
  .plTexto {
    padding-left: 3rem !important;
  }
}
