/*
Theme Name: Test
Author: test
Requires at least: 6.7
Tested up to: 6.9
Requires PHP: 7.4
Version: 1.0
*/

.content-section{
	padding-block: 60px;
}

.site-footer {
	padding: 26px 0 34px;
	background: radial-gradient(1200px 420px at 20% -10%, rgba(120, 80, 255, 0.25), transparent 60%),
	            radial-gradient(900px 360px at 90% 20%, rgba(80, 180, 255, 0.18), transparent 55%),
	            linear-gradient(180deg, rgba(10, 10, 16, 0.2), rgba(10, 10, 16, 0.6));
}

.site-footer__card {
	border-radius: 18px;
	border: 1px solid rgba(255,255,255,0.08);
	background: rgba(10, 12, 18, 0.55);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow:
		0 20px 60px rgba(0,0,0,0.45),
		inset 0 1px 0 rgba(255,255,255,0.06);
	overflow: hidden;
}

.site-footer__top {
	display: grid;
	grid-template-columns: 1.2fr 1.8fr;
	gap: 26px;
	padding: 26px 26px 18px;
}

.site-footer__brand {
	min-width: 260px;
}

.site-footer__logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #fff;
	font-weight: 800;
	letter-spacing: 0.2px;
}

.site-footer__logo-text {
	font-size: 18px;
	line-height: 1;
}

.site-footer__desc {
	margin: 10px 0 14px;
	font-size: 14px;
	line-height: 1.55;
	color: rgba(255,255,255,0.75);
	max-width: 420px;
}

.site-footer__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.site-footer__badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 12px;
	line-height: 1;
	color: rgba(255,255,255,0.82);
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.08);
}

.site-footer__cols {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px 24px;
	align-content: start;
}

.site-footer__title {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: rgba(255,255,255,0.6);
	margin-bottom: 10px;
}

.site-footer__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
}

.site-footer__list a {
	text-decoration: none;
	font-size: 14px;
	line-height: 1.3;
	color: rgba(255,255,255,0.86);
	opacity: 0.9;
	transition: opacity .2s ease, transform .2s ease, color .2s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.site-footer__list a:hover {
	opacity: 1;
	color: #fff;
	transform: translateX(2px);
}

/* Bottom row */
.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 18px;
	align-items: center;
	justify-content: space-between;
	padding: 14px 26px 18px;
	border-top: 1px solid rgba(255,255,255,0.08);
	background: rgba(0,0,0,0.12);
}

.site-footer__copy {
	font-size: 13px;
	color: rgba(255,255,255,0.65);
}

.site-footer__legal {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
}

.site-footer__legal a {
	font-size: 10px;
	color: rgba(255,255,255,0.65);
	text-decoration: none;
	transition: opacity .2s ease, color .2s ease;
}

.site-footer__legal a:hover {
	color: rgba(255,255,255,0.9);
}

/* Responsive */
@media (max-width: 992px) {
	.site-footer__top {
		grid-template-columns: 1fr;
	}

	.site-footer__cols {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 576px) {
	.site-footer__top,
	.site-footer__bottom {
		padding-left: 16px;
		padding-right: 16px;
	}

	.site-footer__cols {
		grid-template-columns: 1fr;
	}
}

.contact__area{
	overflow: hidden;
}

.site-footer__col.widget_nav_menu ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
}

.site-footer__col.widget_nav_menu ul a{
	text-decoration: none;
	font-size: 14px;
	line-height: 1.3;
	color: rgba(255, 255, 255, 0.86);
	opacity: 0.9;
	transition: opacity .2s ease, transform .2s ease, color .2s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.site-footer__col.widget_nav_menu ul a:hover{
	opacity: 1;
	color: #fff;
	transform: translateX(2px);
}

.error-404 {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(ellipse at top, #0b1220 0%, #05080f 70%);
	color: #fff;
	padding: 80px 20px;
}

.error-404__container {
	max-width: 640px;
	text-align: center;
}

.error-404__badge {
	display: inline-block;
	font-size: 96px;
	font-weight: 800;
	letter-spacing: 4px;
	color: rgba(255,255,255,0.08);
	margin-bottom: 10px;
	user-select: none;
}

.error-404__title {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 16px;
}

.error-404__text {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255,255,255,0.8);
	margin-bottom: 30px;
}

.error-404__actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.error-404__hint {
	font-size: 14px;
	color: rgba(255,255,255,0.55);
	max-width: 520px;
	margin: 0 auto;
}

.tgmenu__navbar-wrap ul .menu-item-gtranslate .sub-menu{
    height: 500px;
    overflow-y: auto;
}

.tgmobile__menu .navigation .menu-item-gtranslate ul{
    background: transparent;
    width: 100%;
}
