/* Normal desktop :1200px. */
@media (min-width: 1200px) and (max-width: 1500px) {


}


/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1200px) {


}

 
/* Tablet desktop :768px. */
@media (min-width: 768px) and (max-width: 991px) {


}

 
/* small mobile :320px. */
.logo {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	white-space: nowrap;
}

.logo > a {
	display: block;
	flex: 0 0 auto;
}

.language-switcher {
	position: relative;
	display: inline-flex;
	align-items: center;
	vertical-align: middle;
	flex: 0 0 auto;
	margin: 0 0 0 12px;
	border: 1px solid rgba(209, 159, 104, 0.65);
	background: rgba(22, 22, 26, 0.94);
	box-shadow: 0 5px 16px rgba(0, 0, 0, 0.2);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.language-switcher:hover,
.language-switcher:focus-within {
	border-color: #d19f68;
	box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

.language-switcher-label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #d19f68;
	font-family: "Oswald", sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 1;
	text-transform: uppercase;
}

.language-switcher-label i {
	font-size: 12px;
}

.language-switcher select {
	min-width: 68px;
	padding: 5px 22px 5px 8px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 3px;
	appearance: none;
	background-color: #24242a;
	background-image: linear-gradient(45deg, transparent 50%, #d19f68 50%), linear-gradient(135deg, #d19f68 50%, transparent 50%);
	background-position: calc(100% - 10px) 50%, calc(100% - 6px) 50%;
	background-repeat: no-repeat;
	background-size: 4px 4px, 4px 4px;
	color: #fff;
	cursor: pointer;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
	outline: none;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.language-switcher select:hover,
.language-switcher select:focus {
	border-color: #d19f68;
	background-color: #2d2d35;
}

.language-switcher option {
	color: #16161a;
}

.language-switcher-toggle {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 32px;
	padding: 5px 9px;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
	font-family: "Oswald", sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 1;
	outline: none;
}

.language-switcher-toggle > i:first-child {
	color: #d19f68;
	font-size: 13px;
}

.language-switcher-chevron {
	color: #d19f68;
	font-size: 9px;
	transition: transform 0.2s ease;
}

.language-switcher:hover .language-switcher-chevron,
.language-switcher:focus-within .language-switcher-chevron {
	transform: rotate(180deg);
}

.language-switcher-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	display: grid;
	min-width: 142px;
	padding: 6px;
	border: 1px solid rgba(209, 159, 104, 0.55);
	background: #1c1c21;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-5px);
	transition: opacity 0.18s ease, transform 0.18s ease;
	z-index: 1100;
}

.language-switcher:hover .language-switcher-menu,
.language-switcher:focus-within .language-switcher-menu,
.language-switcher.is-open .language-switcher-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.language-switcher-menu a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: 8px 9px;
	color: #fff;
	font-family: "Oswald", sans-serif;
	font-size: 12px;
	letter-spacing: 0.8px;
	text-decoration: none;
	transition: background 0.18s ease, color 0.18s ease;
}

.language-switcher-menu a span {
	color: #9d9da5;
	font-family: "Poppins", sans-serif;
	font-size: 10px;
	letter-spacing: 0;
}

.language-switcher-menu a:hover,
.language-switcher-menu a.is-active {
	background: rgba(209, 159, 104, 0.16);
	color: #d19f68;
}

@media (max-width: 767px) {
	.language-switcher {
		margin-left: 8px;
	}

	.language-switcher-toggle {
		padding: 5px 7px;
	}

	html,
	body {
		max-width: 100%;
		overflow-x: hidden;
	}

	.container {
		width: 100%;
		max-width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}

	img,
	iframe,
	video {
		max-width: 100%;
	}

	.logo img {
		height: auto;
		max-width: 100%;
	}

	.contact-section #map,
	#map {
		height: 280px !important;
	}

	.form-control,
	.form-select {
		max-width: 100%;
	}

	.navigation-area .nav-left,
	.navigation-area .nav-right,
	.single-comment .d-flex.justify-content-between {
		flex-wrap: wrap;
	}

	.progress-table-wrap {
		max-width: 100%;
		overflow-x: auto;
	}
}
 
/* Large Mobile :480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {
	.container {
		width: 100%;
		max-width: 450px;
	}
 
}
