/* pulsowanie click to call */
@media screen and (max-width:576px){
	.click-to-call{
		position:fixed;
		bottom:0;
		right:0;
		width:60px;
		height:60px;
		z-index:10;
		margin-right:20px;
		margin-bottom:20px;
		border-radius:50%;
		animation: pulse 2s infinite;
	}
}
@keyframes pulse{
	0%{
		transform:scale(0.9);
		box-shadow:0 0 0 0 rgb(35, 74, 72, 0.7);
	}
	70%{
		transform:scale(1);
		box-shadow:0 0 0 15px rgb(35, 74, 72, 0);
	}
	100%{
		transform:scale(0.9);
	}
}
@media screen and (min-width:576px){
	.no-display-dektopski{
		display:none;
	}
}
@media screen and (max-width:768px){
	.center-foto-tablet{
		display:flex;
		justify-content:center;
		align-items:center;
	}
}
.footer-logo{
	width:120px;
/* 	filter:grayscale(100%) brightness(1000%); */
}
.title-footer{
	color:#ababab;
	font-weight:700;
	font-size:18px;
	margin-bottom:25px;
}
.footer-link{
	transition:opacity 0.35s ease-out;
	text-decoration:none;
	color:#ababab;
}
@media screen and (min-width:992px){
	.footer-link:hover{
		opacity:0.7;
	}
}
.hr-footer{
	height:2px;
	width:100%;
	margin:35px 0px;
	background-color:#ababab;
}
.copyrights-footer{
	text-align:center;
	color:#ababab;
	margin-top:0px; 
	margin-bottom:15px;
}
@media screen and (max-width:576px){
	#footer-text{
		font-size:14px
	}
}
.social-img-footer{
	transition:all 0.4s ease-out;
}
@media screen and (min-width:992px){
	.social-img-footer:hover{
		opacity:0.7;
	}
}