footer {
	position: relative;
	z-index: 1;
}


.footer-widget + .footer-widget {
	margin-top: 30px;
}

.footer-widget-title {
	text-transform: uppercase;
	font-size: 22px;
	color: var(--site-primary);
	letter-spacing: 1px;
	font-weight: 600;
	margin-bottom: 15px;
}

footer ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

footer li {
	margin-bottom: 10px;
}

footer a {
	color: var(--site-primary);
}

.contact-info {
	margin-bottom: 15px;
}

.contact-info a {
	display: flex;
	align-items: center;
}

.contact-info span {
	width: 30px;
}

.footer-contact a {
	margin-right: 20px;
}

.footer-wpforms-field input {
	background: transparent !important;
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.6) !important;
}

.footer-wpforms-field input::placeholder {
	color: #fff !important;
	opacity: 0.6;
	font-size: 16px !important;
}

.footer-content {
	padding: 50px 0px;
}

.footer-copyright-wrap {
	padding: 18px 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-copyright {
	color: #737373;
	font-size: 13px;
}

.site-footer-socials {
	display: flex;
	margin-left: auto;
}

.site-footer-socials a {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin-right: 8px !important;
	width: 36px !important;
	height: 36px !important;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, 0.1) !important;
	transition: all 0.2s !important;
}

.site-footer-socials a:hover {
	background: var(--site-color) !important
}

.site-footer-socials svg {
	height: 12.5px;
}

.site-footer-social-facebook svg {
	height: 14.5px;
}

.site-footer-social-linkedin svg,
.site-footer-social-instagram svg {
	height: 15px;
}

.site-footer-socials svg * {
	fill: #fff !important;
}

.footer-privacy-copyright {
	font-size: 14px;
	color: var(--site-text);
}

.footer-contact-item span {
	display: block;
}	


.footer-contact-item span:first-child,
.footer-menu-title {
    color: var(--site-text);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}	

.footer-contact-item span:last-child {
	color: var(--site-text);
}		

.footer-menu a {
	display: block;
	margin-top: 10px;
	color: #fff;
}

.footer-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}

#cookies {
	position: fixed;
	z-index: 99;
	bottom: -100%;
	left: 0;
	right: 0;
	background: #fff;
	padding: 40px 0px 30px 0px;
	transition: all 0.15s;
	visibility: hidden;
	opacity: 0;
}

#cookies[active] {
	bottom: 0;
	visibility: visible;
	opacity: 1;
}

#cookies .container {
	display: grid;
	gap: 30px;
	grid-template-columns: 1fr auto;
}

#cookies .context {
	font-weight: 500;
	font-size: calc(var(--site-size) + 1px);
}

#cookies .context span {
	display: block;
	font-size: var(--site-size);
	font-weight: var(--site-weight);
}

.footer-captcha {
	color: #737373;
	font-size: 13px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	padding: 50px 0px;
}

@media (max-width: 980px) {
	footer {
		padding-left: 0px;
		padding-right: 0px;
	}

	#cookies {
		padding: 30px 0px;
	}

	#cookies .container {
		display: grid;
		gap: 20px;
		grid-template-columns: 1fr;
	}

    .footer-row {
	    grid-template-columns: 1fr;
	    gap: 30px;
	}

	.footer-copyright-row {
		text-align: center;
		grid-template-columns: 1fr;
		justify-content: center;
	}

	.site-footer-socials {

	}
}