#toTop {
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	font-size: 18px;
	padding: 15px;
}

body,
html {
	height: 100%;
	min-height: 100%;
	overflow-x: hidden;
}

.bg-light-blue {
	background: #eaf2ff;
}

.bg-animate {
	background: linear-gradient(-45deg, #adedc5, #adedc5, #c8d8f2, #eaf2ff);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

.navbar-brand {
	font-size: 24px;
}

.illustration {
	width: 600px;
	max-width: 100%;
	margin: 0 auto 20px;
	display: block;
}

.login-title {
	font-size: 24px;
	color: #1a2e35;
	display: block;
	text-align: center;
	font-weight: bold;
}

.login-desc {
	font-size: 15px;
	color: #4b5b60;
	display: block;
	text-align: center;
}
.bg-pattern{
	background:url('../../assets/images/pattern.png') repeat, #206bc4;
	background-size: 40%;
}
.illustration-box{
	width: 60%;
	display: block;
	overflow: hidden;
	border-radius: 20px;
	margin:0 auto 20px;
	box-shadow: inset 0px 0px 15px 0px rgba(0,0,0,0.25);
}
.illustration-box img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.button-link{
	display: flex;
	align-items: center;
	box-shadow: 0 4px 8px 0 rgba(38,40,42,0.1);
	border-radius: 4px;
	padding:1rem 1.25rem;
	transition: 0.4s;
	height: 90px;
	background: #fff;
}
.button-link .icon-link{
	width: 50px;
	height: 50px;
	background: #ebebeb;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #667382;
}
.button-link .text-link{
	width: calc(100% - 50px);
	padding-left: 10px;
}
.button-link .text-link h5{
	font-weight: bold;
	color: #667382;
}
.button-link .text-link p{
	color:#ccc;
	color: #667382;
}
.button-link:hover{
	text-decoration: none;
	background: #e9f0f9;
}
.button-link:hover .icon-link{
	background: #206bc4;
	color: #fff;
}
.faq-list{
	list-style: none;
	padding-left: 0;
}
.faq-list li{
	display: block;
	border-top:1px solid rgba(4, 32, 69, .14);
}
.faq-list li a{
	display: flex;
	padding:0.75rem;
}
.faq-list li a .faq-icon{
	width: 50px;
	height: 50px;
	border-radius: 50px;
	background: #206bc4;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.faq-list li a .faq-text{
	width: calc(100% - 50px);
	padding-left: 15px;
}
.faq-list li a:hover{
	text-decoration: none;
	background: #e9f0f9;
}
.hide{
	display: none;
}
.font-italic{
	font-style: italic;
}
.font-bold{
	font-weight: bold;
}
.attachment-thumb{
	display: block;
	height: 200px;
	overflow: hidden;
	position: relative;
}
.attachment-thumb img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.icon-lg svg{
	width: 3rem;
	height: 3rem;
}