

/* Float three columns side by side */
.column {
  float: left;
  width: 25%;
  padding: 0%;

}

.rowss {
  background-color: #0ea9b1;
  border-radius: 20px;
  padding: 25px;
 width: 80%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive columns */
@media screen and (max-width: 768px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }

  .column:nth-child(1){
   
    border-bottom: 1px solid #fff !important;
   border-right: 0px !important;
  }
  
  .column:nth-child(2){
    border-bottom: 1px solid #fff !important;
    border-right: 0px !important;
  }
  
  .column:nth-child(3){
    border-bottom: 1px solid #fff !important;
    border-right: none !important;
  
  }
}

/* Style the counter cards */
.card {
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); */
  padding: 12px;
  text-align: center;
  background: transparent;
  /* color: white; */
  border: 0;
  border-radius: 0;
 
}

.column:nth-child(1){
  border-right: 1px solid #fff ;
  
}

.column:nth-child(2){
  border-right: 1px solid #fff ;
  
}

.column:nth-child(3){
  border-right: 1px solid #fff ;
  

}

.rowss .column .card h3{
  font-size: 18px;
  color: #fff;
}

.rowss .column .card .cards-number{
  font-size: 50px;
  font-weight: 700 !important;
  color: #fff
}


.get-start-with-us{
  padding: 100px 0;
  background-color: #e8f6ff;
}

