
#meta-tag-h1{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
	overflow: hidden;
}
#meta-tag-h1::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #e91e63;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}


/*responsive*/
@media(max-width: 991px){
  
  #meta-tag-h1{
    margin-bottom: 25px;
  }
  
}

@media(max-width: 767px){
  
  #meta-tag-h1 {
    font-size: 16px;
  }
  
}

@media(max-width: 574px){
  
  #meta-tag-h1::before {
    left: 50%;
    transform: translateX(-50%);
  }
  
}