#site-footer{
	background-color:var(--color1)
}

#site-footer .company-chant span{
	font-size:13px;
	color:var(--color3);
}
#site-footer .footer-logo img{
	width:170px;
	object-fit:contain;
}
#site-footer .footer-menu-wrapper h5{
	font-size:18px;
	color:var(--color3);
	font-weight:500;
	margin-bottom:15px;
}
#site-footer .footer-menu-wrapper ul{
	list-style:none;
	padding:0px;
	margin:0px;
}
#site-footer .footer-menu-wrapper ul li{
	padding:0px;
	margin:6px 0px;
	color:var(--color3);
	font-size:14px;
}
#site-footer .footer-menu-wrapper ul li a:hover {
	color: var(--color6);
}
#site-footer .footer-menu-wrapper ul li a{
	color:var(--color3);
	font-size:14px;
}
#site-footer .footer-socials a{
	height:35px;
	width:35px;
	cursor:pointer;
	border:1px solid var(--color3);
	display:flex;
	align-items:center;
	border-radius:99px;
	justify-content:center;
	transition:all 0.2s ease-in-out;
}
#site-footer .footer-socials a:hover{
	border: 1px solid var(--color6);
}
#site-footer .footer-socials a:hover svg path{
	fill: var(--color6)
}
#site-footer .footer-socials a svg{
	height:15px;
	width:15px;
}
#site-footer .footer-socials a svg path{
	fill: var(--color3);
	transition:all 0.2s ease-in-out;
}
#site-footer .copyright{
	color: var(--color3);
	font-size:14px;
	display:flex;
	flex-flow:column nowrap;
	
}
#site-footer .copyright span{
	text-align:left;
}
#site-footer .translator-wrapper{
	cursor:pointer;
}
#site-footer .translator-wrapper:hover .icon svg path{
	stroke: var(--color6);
}
#site-footer .translator-wrapper .current-language::before {
	transform: translateY(-50%) rotate(180deg);
}

#site-footer .translator-wrapper .icon{
	padding:0px;
	background:none;
}
#site-footer .translator-wrapper .icon svg path{
	stroke: var(--color3);
}
#site-footer .translator-wrapper .current-language{
	position:relative;
	color: var(--color3);
	font-size:11px;
	transition:all 0.2s ease-in-out;
}
#site-footer .translator-wrapper .current-language::before{
	position:absolute;
	content:"";
	top:50%;
	background-image:url("https://refrigeration.webdemo.lt/wp-content/uploads/2025/04/Vector.png");
	background-repeat:no-repeat;
	background-position:center center;
	left:-25px;
	transform:translateY(-50%);
	height:20px;
	width:20px;
	transition:all 0.2s ease-in-out;
}
#site-footer .footer-order:nth-child(0){
	order:1;
}
@media screen and (max-width:992px){
	#site-footer .translator-wrapper .current-language::before{
		left:unset;
		right:-25px;
	}
	#site-footer .footer-logo img{
	width:40vw;
	max-width:220px;
}
}