/*----------seojazz-----------*/
:root {
  --sj-color: #fff;
  --sj-hover-color: #bb2121;
}
footer.footer {
	padding-bottom:1rem;
	}
.sj {
	text-align:center;
	display:flex;
	justify-content:end;
	margin-top: 20px;
}
.sj a {
	color: var(--sj-color);
	font-size: 13px;
	text-decoration: none;
	text-align: center;
	display: inline-flex;
	flex-direction: row;
    align-items: center;
	transition: all 0.3s ease-in-out;
  	-webkit-transition: all 0.3s ease-in-out;
}
.sj a svg {
	width: 64px;
	height: 11px;
	fill: var(--sj-color);
	margin-left: 3px;
	transition: all 0.3s ease-in-out;
  	-webkit-transition: all 0.3s ease-in-out;
}
.sj a:hover,
.sj:hover svg,
.sj:hover a {
	color: var(--sj-hover-color);
	fill: var(--sj-hover-color);
}
@media (max-width: 767px ) {
    .sj {
		margin-top: 25px;
        justify-content:center;
    }
}
/*----------/seojazz-----------*/