@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Roboto:wght@400;700&display=swap');

:root{
  --normal: 'Roboto', sans-serif;
  --titulo: 'Fredoka One', cursive;
  --fondo: #1C1C28;
  --blanco: #ffffff;
  --fclaro: #2A2A3D;
  --verde: #4FBDBA;
  --amarillo: #FFC600;
  --azulito: #2BD1F5;

}
  
body{
  background: var(--fondo);    
}

.titulo{
  font-family: var(--titulo);
}


p,
.titulo{
  color: var(--blanco);    
}

.txt{
  background: var(--fclaro);
}

.soluciones{
  background: var(--verde);
  color: var(--blanco);   
  font-family: var(--titulo);
  text-align: center;
  border-radius: 5px;
  height: 100px; 
  margin-bottom: 20px;
  padding-top: 20px;
}

.separacion{
  width: 100%;
  height: 300px;  
  background-image: url(img/sepa.png);
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width:1024px) {
  .separacion{
    height: 500px;  
  }
}

.marcas p{  
    font-family: var(--titulo);
    color: var(--amarillo);
    font-size: 30px;
}

.marcas .row{
  background: var(--blanco);
  border-radius: 5px;
  padding: 20px;  
}

.marcas .row img{
  margin-bottom: 10px;
}

.contacto .info p{  
  font-family: var(--titulo);
  color: var(--blanco);
  font-size: 30px;
}

.contacto .imagen{
  width: 100%;
  height: 350px;
  background-image: url(img/mesa.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
}

@media (min-width:1024px) {
  .contacto .imagen{
    width: 400px;
    height: 500px;  
    margin-right: 40px;
  }
}

.contacto .info .normal{
  font-family: var(--normal);
  font-size: 20px;
}

.actual{
  margin-bottom: 40px;
}
.actual .txtPrincipal{
  text-align: center;
  color: var(--azulito);
  font-family: var(--titulo);
  margin-top: 20px;
  font-size: 30px;
}

.actual .numero{
  color: var(--blanco);
  font-family: var(--normal);
  font-size: 30px;
  text-align: center;
  margin-top: 20px;
}

.actual .progress{
  width: 80%;
  margin: auto;
  height: 30px;
  margin-top: 20px;
}

@media (min-width:1024px) {
  .actual .progress{
    height: 30px;
    width: 500px;
    margin: auto;
    margin-top: 20px;
  }
}