.footer {
	height: auto;
	width: 100%;
	background-image: url("../img/sahovska-tabla-footer.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
	color: white;
}

.inner-footer {
	max-width: 1024px;
	width: 100%;
	margin: auto;
	padding: 30px 10px;
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	justify-content: center;
}

.footer-items {
	width: 33%;
	padding: 10px 20px;
	box-sizing: border-box;
	color: #fff;
}

.footer-items p {
	font-size: 16px;
	text-align: justify;
	line-height: 25px;
	color: #fff;
}

.footer-items h1 {
	color: #fff;
}

.border1 {
	height: 10px;
	width: 133px;
	background: #fdc500;
	color: #fdc500;
	background-color: #fdc500;
	border: 0px;
}

.footer-ul {
	list-style: none;
	color: #fff;
	font-size: 15px;
	letter-spacing: 0.5px;
	padding: 0;
	list-style-type: none;
}

.footer-a {
	text-decoration: none;
	outline: none;
	color: #fff;
	transition: 0.3s;
}

.footer-a:hover {
	color: #ff9800;
}

.footer-li {
	margin: 10px 0;
	height: 25px;
}

.footer-bottom {
	padding: 15px;
	background: #03396c;
	color: #fff;
	font-size: 15px;
	text-align: center;
}

.footer-items img {
	height: 220px;
}

/* for mobile screen view */

@media screen and (max-width: 1024px) {
	.footer-items {
		width: 100%;
	}
}

/* you can toggle the media screen view accordingly by changing the (max-width: px) to your convenience */

/* Thanks to Computer Conversations */