/*@import "fonts/stylesheet.css";*/

.bg-text {
    background-color: #85f1ff;
    padding: 20px 20px 50px 20px;
    position: relative;
    width: 400px;
	height: 200px;
	font-size: 16px;
    overflow: hidden;
    font-family: 'Helvetica';
}
.bg-text::after {
    color: #fff;
    content: attr(data-bg-text);
    display: block;
    font-size: 80px;
    line-height: 1;
    position: absolute;
    bottom: -15px;
    right: 10px;
    font-family: 'Times New Roman';
}

.srv-text {
  background-color: #a8a8a8;
  padding: 20px 20px 50px 20px;
  position: relative;
  width: 400px;
  height: 200px;
  font-size: 16px;
  overflow: hidden;
  font-family: 'Helvetica', serif;
}
.srv-text::after {
  color: #fff;
  content: attr(data-bg-text);
  display: block;
  font-size: 80px;
  line-height: 1;
  position: absolute;
  bottom: -15px;
  right: 10px;
  font-family: 'Times New Roman', serif;
}

.cn-text {
    background-color: #6495ED;
    padding: 20px 20px 50px 20px;
    position: relative;
    width: 400px;
	font-size: 16px;
    overflow: hidden;
    font-family: 'Helvetica';
}
.cn-text::after {
    color: #fff;
    content: attr(data-cn-text);
    display: block;
    font-size: 80px;
    line-height: 1;
    position: absolute;
    bottom: -15px;
    right: 10px;
    font-family: 'Times New Roman';
}

.row {
	display: flex;
}

.column {
  float: left;
  /*border: 2px solid red; */ /* <-- for debug*/
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.badge {
  background-color: blue;
  color: white;
  padding: 4px 8px;
  text-align: center;
  border-radius: 35px;
  font-size: 16px;
  top:1rem;
  position: absolute;
  transform: rotate(-15deg);
  font-family: 'Helvetica';
}