body, html {
    height: 100%;
}

.hero-image {
	/* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://res.cloudinary.com/ibinto/image/upload/v1596485124/Recursos/dashboard_hw8qrc.jpg);
  
	/* Set a specific height */
	height: 50%;
  
	/* Position and center the image to scale nicely on all screens */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
  }
  
  /* Place text in the middle of the image */
  .hero-text {
    text-align: center;
    font-size: 3em;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
  }




  .col-center {
	margin: 0 auto;
	float: none !important;
}
.carousel {
	margin: 50px auto;
	padding: 0 70px;
}
.carousel .item {
	color: #999;
	font-size: 14px;
    text-align: justify;
	overflow: hidden;
    min-height: 290px;
}


.carousel .testimonial {
	padding: 30px 0 10px;
}


.carousel .carousel-control {
	width: 40px;
    height: 40px;
    margin-top: -20px;
    top: 50%;
	background: none;
}
.carousel-control i {
    font-size: 68px;
	line-height: 42px;
    position: absolute;
    display: inline-block;
	color: rgba(0, 0, 0, 0.8);
    text-shadow: 0 3px 3px #e6e6e6, 0 0 0 #000;
}
.carousel .carousel-indicators {
	bottom: -40px;
}
.carousel-indicators li, .carousel-indicators li.active {
	width: 11px;
	height: 11px;
	margin: 1px 5px;
	border-radius: 50%;
}
.carousel-indicators li {	
	
    width: 11px;
	height: 11px;
	margin: 1px 5px;
	border-radius: 50%;
}
.carousel-indicators li.active {
	border: none;
	
}

/*.row-grid {
	display: flex;
	flex-wrap: wrap;
	padding: 0 4px;
  }
  

  .column-grid {
	flex: 50%;
	max-width: 50%;
	padding: 0 4px;
  }
  
  .column-grid img {
	margin-top: 8px;
	vertical-align: middle;
	width: 100%;
  }
  

  @media screen and (max-width: 800px) {
	.column-grid {
	  flex: 25%;
	  max-width: 25%;
	}
  }
  

  @media screen and (max-width: 600px) {
	.column-grid {
	  flex: 100%;
	  max-width: 100%;
	}
  }
*/