.hll_text_outer{
	width: 100%;
	margin:auto;
	text-align: center;
}
.hll_text_wrapper {
    font-family: Averta;
    margin:8px 0px 40px;
    color: #111111;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}
span.hll_gif_1, span.hll_gif_2 img{
	width: 34px;
	height: 34px;
}
@media(min-width:1000px){
	.hll_text_outer{
		width: 750px;
	}
	.hll_text_wrapper {
		font-size: 34.56px;
		margin:26.88px 0px 40px;
	}
	span.hll_gif_1{
		width: 54px;
		height: 54px;
	}
	span.hll_gif_2 img{
		width: 44px;
		height: 44px;
	}
}
span.hll_gif_1 {
    transform: translateY(1.6rem);
    margin-top: -1.6rem;
    display: inline-block;    
}
span.hll_gif_1 video{
    vertical-align: super;
}
span.hll_gif_2 img{
    vertical-align: middle;
}
.btn_container {
	padding: 3px 6px;
	display: inline-flex;
	flex-direction: column;
}
.btn_border {
	height: 2px;
	max-width: 0%;	
	background-color: lightgrey;
	animation: drawBorder1 2s ease backwards;
}
.btn_container:hover .btn_border{
	height: 2px;
	max-width: 0%;
	background-color: black;
	animation: drawBorder2 2s ease forwards;
}
@keyframes drawBorder1 {
	from {
		max-width: 100%;
	}
	to {
		max-width: 0%;
	}
}
@keyframes drawBorder2 {
	from {
		max-width: 0%;
	}
	to {
		max-width: 100%;
	}
}