.footer{
	background: #000000;
	padding:15px 0;
}
.footer__container{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
}
.footer__logo{
	display: flex;
	align-items: center;
	gap:8px;
}
.footer__logo-img{
	width: 50px;
	height: 50px;
	display: block;
	vertical-align: middle;
}
.footer__logo-text{
	color:#FFFFFF;
	font-size: 24px;
	font-weight:700;
	line-height: 1;
}
.footer__text-p{
	color:#FFFFFF;
	font-size: 14px;
	font-weight:500;
	text-align: center;
}
.footer__popup{
	text-align: right;
}
.footer__popup-btn{
	color:#FFFFFF;
	font-size: 14px;
	font-weight:500;
	transition: all .3s;
}
.footer__popup-btn:hover{
	color:#FDC540;
	text-decoration: underline;
}
.scroll-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 850;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	color: #FFFFFF;
	background: #361B1B;
	border: 1px solid rgba(255, 255, 255, .55);
	border-radius: 50%;
	box-shadow: 0 5px 18px rgba(0, 0, 0, .28);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	cursor: pointer;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.scroll-top:hover {
	color: #361B1B;
	background: #FDC540;
	border-color: #FDC540;
}
.scroll-top:focus-visible {
	outline: 3px solid #FDC540;
	outline-offset: 3px;
}



@media screen and (max-width: 1200px) {
 	
}
@media screen and (max-width: 992px) {
 	
}
@media screen and (max-width: 768px) {
 	.footer__container {
	    display: grid;
	    grid-template-columns: 1fr 1fr;
	    gap: 20px;
	}

	.footer__logo {
	    grid-column: 1 / -1;
	    justify-self: center;
	}

	.footer__popup {
	    justify-self: end;
	}
}
@media screen and (max-width: 576px) {
	.scroll-top {
		right: 12px;
		bottom: 12px;
		width: 42px;
		height: 42px;
	}
}