/* MOD CIMADIGITAL HOME */

.cd-vehiculos {
  width: 100%;
  background-image: url("/cd-kit/img/home/img-cabecera-home-v.escritorio.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
}

.cd-vehiculos__row {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 10%;
}

.cd-vehiculos__col {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 768px;
  width: 100%;
}

.cd-vehiculos h1 {
  color: #ffffff;
  font-weight: 500;
}

.cd-vehiculos__presupuestos-btn {
  max-width: 250px;
  width: 100%;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: #ffffff;
  color: #a91f46;
  font-weight: 500;
  border-radius: 5px;
}

.cd-vehiculos__presupuestos-btn:hover {
  background-color: #a91f46;
  color: #ffffff;
  text-decoration: none;
}

.cd-home-familias {
  background-color: #f7f7f7;
  padding: 100px 5%;
}

.cd-home-familias__row {
  display: flex;
}

.cd-home-familias__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 50px;
  column-gap: 25px;
}

.cd-home-familias__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.cd-home-familias img {
  width: 100%;
}

.cd-home-familias h3 {
  font-size: 16px;
  font-weight: bold;
  color: #263a7e;
}

.cd-home-familias a {
  background-color: #a91f46;
  color: #ffffff;
  border: 1px solid #a91f46;
  border-radius: 5px;
  padding: 5px 10px;
  text-transform: uppercase;
}

.cd-home-familias a:hover {
  background-color: #ffffff;
  color: #a91f46;
  text-decoration: none;
}

.cd-home-familias__item::after {
  content: " ";
  height: 25px;
  width: 25px;
  display: block;
  position: absolute;
  top: 15px;
  left: 15px;
  background-image: url("/img/icono-boton-mas.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.cd-presupuestos {
  width: 100%;
  background-image: url("/cd-kit/img/home/banner_presupuestos-v.escritorio.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
}

.cd-presupuestos__row {
  display: flex;
  align-items: center;
  justify-content: end;
  height: 100%;
  padding: 0 10%;
}

.cd-presupuestos__col {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 15px;
  max-width: 400px;
  width: 100%;
}

.cd_home_presupuestos__title {
  font-size: 32px;
  color: #263a7e;
  font-weight: 600;
  text-align: right;
  margin: 0;
}

.cd-presupuestos p {
  color: #263a7e;
  margin: 0;
}

.cd-presupuestos__btn {
  background-color: #a91f46;
  color: #ffffff;
  border: 1px solid #a91f46;
  border-radius: 5px;
  padding: 5px 10px;
}

.cd-presupuestos__btn:hover {
  background-color: #ffffff;
  color: #a91f46;
  text-decoration: none;
}

.cd-catalogos {
  display: flex;
  flex-direction: column;
  gap: 50px;
  background-color: #f7f7f7;
  padding: 50px 10%;
}

.cd-catalogos__row {
  display: flex;
  justify-content: center;
}

.cd-catalogos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 30px;
}

.cd-catalogos__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

.cd-catalogos img {
  width: 100%;
  object-fit: contain;
}

.cd_home_catalogos__title {
  font-size: 32px;
  font-weight: 600;
  color: #263a7e;
  margin: 0;
}

.cd-catalogos h3 {
  font-size: 24px;
  font-weight: 700;
  color: #263a7e;
  margin: 0;
}

.cd-catalogos__download {
  font-size: 16px;
  color: #000000;
}

.cd-entrega {
  background-image: url("/cd-kit/img/home/banner-entrega-pedidos-v.escrotorio.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 60vh;
  padding: 0 10%;
}

.cd-entrega__row {
  height: 100%;
  display: flex;
  align-items: center;
}

.cd-entrega__col {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.cd_home_entrega__title {
  margin: 0;
  font-size: 32px;
  color: #ffffff;

}

.cd-entrega h2,
.cd-entrega p {
  color: #ffffff;
}

.cd-entrega__btn {
  background-color: #a91f46;
  color: #ffffff;
  border: 1px solid #a91f46;
  border-radius: 5px;
  padding: 5px 10px;
  text-transform: uppercase;
}

.cd-entrega__btn:hover {
  background-color: #ffffff;
  color: #a91f46;
  text-decoration: none;
}

@media (max-width: 768px) {
  .cd-vehiculos {
    background-image: url(/cd-kit/img/home/img-cabecera-home-v.mobile.png);
  }

  .cd-vehiculos__row {
    align-items: flex-start;
    padding: 25% 10%;
  }

  .cd-presupuestos {
    background-image: url(/cd-kit/img/home/banner_presupuestos-v.mobile.png);
    height: 80vh;
  }

  .cd-presupuestos__row {
    align-items: flex-start;
    padding: 25% 10%;
  }

  .cd-presupuestos__col {
    align-items: center;
  }

  .cd-presupuestos h2 {
    text-align: center;
  }

  .cd-catalogos h2 {
    text-align: center;
  }

  .cd-entrega {
    background-image: url(/cd-kit/img/home/banner-entrega-pedidos-v.mobile.png);
    height: 80vh;
    padding: 25% 10%;
  }

  .cd-entrega__row {
    align-items: flex-start;
  }

  .cd-entrega__col {
    align-items: center;
  }

  .cd-entrega h2 {
    text-align: center;
  }

  .cd-entrega h2,
  .cd-entrega p {
    text-align: center;
  }

  .cd-home-familias__grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .cd-catalogos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* END MOD CIMADIGITAL HOME */