@charset "utf-8";
/* CSS Document */

html {
  	scroll-behavior: smooth;
}

@import url(https://fonts.googleapis.com/css?family=Raleway:400,800);

.flex-btn-link {
	font-family: 'Raleway', Arial, sans-serif !important;
	text-decoration: none;
	display: inline-flex;
	margin-bottom: 0.35rem;
}

.flex-btn-link:hover {
	text-decoration: none;
}

.flex-btn-link:hover span.flex-btn-bg {
	background-color: #222;
	transition: all 0.5s ease-out;	
}

.flex-btn-link:hover span.hover-underline-animation:after {
	transform: scaleX(1);
	transform-origin: bottom left;
}

.flex-btn-bg {
    display: flex;
    flex-direction: row;
    background-color: #A90533;
	color: #fff;
	width: 375px;
}

.flex-btn-bg > span {
	display: flex;
}

.flex-btn-bg > span:last-child {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
}

.flex-btn-img > img {
	max-width: 92px;
	margin: 0.75rem 1.5rem 0.75rem 0.75rem;
}

.flex-btn-caption {
	font-size: 1.35em;
	text-align: center;
}

.hover-underline-animation {
	display: inline-block;
	position: relative;
	color: #fff;
	padding-bottom: 0.75rem;
	flex-basis: 225px;
	line-height: 3.5rem;
}

.hover-underline-animation:after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #fff;
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;	
}

.student-box-tab {
	text-align: center;
}

.student-box-tab > p {
	margin: 0 auto;
}