/* -- subfooter -- */
.subfooter{
	padding-top:20px;
	color:#fff;
	overflow:hidden;
	font-size:.875rem;
	position:relative;
}
#subfooter .title{
	color:#fff;
	font-weight:bold;
}
.subfooter-btn{
	position:relative;
}
.subfooter-btn button{
	display:inline-block;
	width:35px;
	height:35px;
	border-radius:35px;
	border:#fff solid 1px;
	background:transparent;
	position:relative;
	cursor:pointer;
}
.subfooter-btn button:focus{
	outline:none;
}
.subfooter-btn button:after{
	content:'\f103';
	display:block;
	font-family:'FontAwesome';
	width:100%;
	text-align:center;
	font-size:1.1rem;
	line-height:33px;
	color:#fff;
	position:absolute;
	left:50%;
	right:50%;
	transform:translate(-50%, -50%);
}
.subfooter-btn button[aria-expanded="true"]:after{
	content:'\f102';
}
.subfooter .authorities{
	z-index:10;
}
.subfooter-divide{
	position:relative;
}
.subfooter-divide:before,
.subfooter:before{
	content:'';
	height:1px;
	background:rgba(255,255,255,.7);
	position:absolute;
}
.subfooter-divide:before{
	width:100%;
	transform:translateY(-50%);
	left:0;
	top:50%;
}

/* -- footer -- */
footer{
	border-top:#43acaf solid 8px;
	background:rgba(0,0,0,.5);
}
footer .logo{
	padding-top:30px;
	text-align:center;
}
footer .logo img{
	width:94px;
}
footer .btm-menu{
	padding-top:30px;
	padding-bottom:30px;
}
footer .btm-menu a{
	margin-bottom:.5rem;
	color:#fff;
	font-weight:bold;
	position:relative;
	transition:all .2s ease-in-out .2s;
}
footer .btm-menu a:not(:last-child):after{
	content:'';
	display:block;
	width:1px;
	height:1.5rem;
	background:#fff;
	position:absolute;
	right:0;
	top:0;
}
footer .btm-menu a:hover{
	background:rgba(255,255,255,.5);
	color:#555;
}
footer .copyright{
	padding-top:30px;
	padding-bottom:30px;
	color:#fff;
	font-size:.9rem;
	text-align:center;
}

/* -- back to top -- */
#back-to-top{
	position: fixed;
	bottom:60px;
	right:10px;
	z-index:9999;
	width:52px;
	height:52px;
	line-height:30px;
	background:rgba(240,94,28,0.7);
	color:#fff;
	cursor:pointer;
	border:0;
	border-radius:52px;
	transition:opacity 0.2s ease-out;
	opacity:0;
	box-shadow:rgba(0,0,0,.3) 0 3px 3px;
}
#back-to-top:hover{
	background:rgba(240,94,28,1);
}
#back-to-top.show{
	opacity:1;
}
#back-to-top i{
	position:absolute;
	transform:translate(-50%, -50%);
	left:50%;
	top:50%;
	font-size:1.6rem;
}
@media screen and (max-width:576px){
	#back-to-top{
		bottom:40px;
	}
}