.to-top {
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid var(--site-border);
	position: absolute;
	left: 0;
	right: 0;
	top: -17px;
	margin: auto;
	cursor: pointer;
}

.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;
	font-family: Avenir Next Cyr !important;
	opacity: 0.6;
	font-size: 16px !important;
}


.site-footer-socials {
	display: flex;
	margin-left: auto;
}

.site-footer-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 8px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	transition: all 0.2s;
}

.site-footer-socials a:hover {
	background: var(--site-color);
}

.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 {
	background: #082531;
	clip-path: ellipse(100% 100% at 50% 100%);
}

#footer-wave {
	margin-top: -2px;
}

.footer-wrap {
	color: #fff;
	padding: 110px 0px 30px 0px;
}

.footer-privacy-copyright {
	font-size: 16px;
	color: var(--site-text);
}

.footer-contact-item span {
	display: block;
}	


.footer-contact-item span:first-child,
.footer-menu-title {
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
}	

.footer-contact-item span:last-child {
	color: var(--site-text);
}		

.footer-menu a {
	display: block;
	margin-top: 10px;
	color: var(--site-text);
}

.footer-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

.footer-copyright-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	margin-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
}

#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);
}

@media (max-width: 980px) {
	footer {
		clip-path: ellipse(129% 100% at 50% 100%);
	}

	#cookies {
		padding: 30px 0px;
	}

	#cookies .container {
		display: grid;
		gap: 20px;
		grid-template-columns: 1fr;
	}

    .footer-row {
	    grid-template-columns: 1fr 1fr;
	    gap: 35px;
	}

	.footer-copyright-row {
		text-align: center;
		grid-template-columns: 1fr;
		justify-content: center;
	}

	.site-footer-socials {
		justify-content: center;
		margin: auto;
		margin-top: 15px;
	}
}