@charset "utf-8";
/* CSS Document */

header {
	height: 130px;
	width: 100%;
	position: fixed;
	z-index: 500;
	background: var(--light-primary-color);
	display: flex;
	align-items: center;
	flex-direction: column;
}

header.scrolled {
	position: fixed;
	height: auto;
	background: #ffffffe6;
	backdrop-filter: blur(10px);
	box-shadow: 0px 7px 7px -2px rgba(109, 109, 109, 0.1);
}

header.scrolled .header-div-in {
	box-shadow: none;
	background: none;
}

header.scrolled .header-div-in .inner-div {
	padding: 0;
	width: 100%;
}

header.scrolled .header-top-div {
	background: var(--primary-color);
}

header .header-top-div {
	width: 100%;
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

header .header-top-div .header-top-div-in {
	width: 85%;
	max-width: 1200px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header .header-top-div .header-top-div-in .contacts-div {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

header .header-top-div .header-top-div-in .contacts-div .contact {
	color: var(--secondary-color);
	text-align: center;
	display: flex;
	gap: 10px;
	padding-left: 10px;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	border-left: #c4c4c4 1px solid;
}

header .header-top-div .header-top-div-in .contacts-div .contact i {
	font-size: 15px;
}

header .header-top-div .header-top-div-in .contacts-div .contact:hover {
	text-decoration: underline;
	color: var(--white-color);
}

header .header-top-div .header-top-div-in .contacts-div .no-border {
	border: none;
}



header .header-top-div .header-top-div-in .social-media-div {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

header .header-top-div .header-top-div-in .social-media-div h3 {
	padding: 0px;
	margin: 0px;
	font-size: 15px;
	font-family: sub-title-font;
	color: var(--secondary-color);
}

header .header-top-div .header-top-div-in .social-media-div .social-media-header {
	padding: 0px;
	margin: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}


header .header-top-div .header-top-div-in .social-media-div .social-media-header li {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	width: 30px;
	height: 30px;
	font-size: 14px;
	border-radius: 50px;
	font-family: body-font;
	-moz-transition: all 0.2s ease-in 02s;
	transition: all 0.2s ease-in 0.2s;
	-webkit-transition: all 0.2s ease-in 0.2s;
	-ms-transition: all 0.2s ease-in 0.2s;
	-o-transition: all 0.2s ease-in 0.2s;
	cursor: pointer;
}

header .header-top-div .header-top-div-in .social-media-div .social-media-header li:hover {
	opacity: 0.7;
}

header .header-top-div .header-top-div-in .social-media-div .link-top {
	padding: 0px;
	margin: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	display: none;
}

header .header-top-div .header-top-div-in .social-media-div .link-top li {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	font-size: 14px;
	color: var(--secondary-color);
	cursor: pointer;
}

header .header-top-div .header-top-div-in .social-media-div .link-top li:hover {
	text-decoration: underline;
}

/* MOBILE VIEW CSS */
@media all and (max-width:1175px) {
	header .header-top-div .header-top-div-in {
		width: 96%;
	}
}

@media all and (max-width:1100px) {

	header .header-top-div .header-top-div-in .social-media-div .social-media-header,
	header .header-top-div .header-top-div-in .social-media-div h3 {
		display: none;
	}

	header .header-top-div .header-top-div-in .social-media-div .link-top {
		display: block;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 15px;
	}
}

@media all and (max-width:670px) {
	header .header-top-div .header-top-div-in {
		justify-content: center;
	}

	header .header-top-div .header-top-div-in .contacts-div {
		display: none;
	}
}

/* --------------------------------------------------------------- */








header .header-div-in {
	width: 100%;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--white-color);
	box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.1);
}

header .header-div-in .inner-div {
	width: 85%;
	max-width: 1200px;
	padding: 0px 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header .header-div-in .logo-div {
	height: 68px;
	width: 170px;
	cursor: pointer;
}

header .header-div-in .logo-div img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

header .header-div-in .inner-div nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

header .header-div-in .inner-div nav ul {
	display: flex;
	align-items: center;
	padding: 0px;
	margin: 0px;
	gap: 5px;
}

header .header-div-in .inner-div nav ul li {
	display: flex;
	align-items: center;
	gap: 5px;
	list-style: none;
	line-height: 70px;
	padding: 0px 15px;
	color: var(--secondary-color);
	font-size: 15px;
	font-family: sub-title-font;
	-moz-transition: all 0.2s ease-in 02s;
	transition: all 0.2s ease-in 0.2s;
	-webkit-transition: all 0.2s ease-in 0.2s;
	-ms-transition: all 0.2s ease-in 0.2s;
	-o-transition: all 0.2s ease-in 0.2s;
	cursor: pointer;
}

header .header-div-in .inner-div nav ul li i {
	color: var(--secondary-color);
	font-size: 12px;
	-moz-transition: all 0.2s ease-in 02s;
	transition: all 0.2s ease-in 0.2s;
	-webkit-transition: all 0.2s ease-in 0.2s;
	-ms-transition: all 0.2s ease-in 0.2s;
	-o-transition: all 0.2s ease-in 0.2s;
}

header .header-div-in .inner-div nav ul li:hover,
header .header-div-in .inner-div nav ul li:hover i {
	color: var(--primary-color);
}

header .header-div-in .inner-div nav ul .active {
	color: var(--primary-color);
}

header .header-div-in .inner-div nav .nav-icon-div {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

header .header-div-in .inner-div nav .nav-icon-div i {
	font-size: 18px;
}



header .header-div-in .inner-div nav .btn {
	border: 1px solid var(--light-primary-color);
	height: 45px;
	padding: 0 0 0 20px;
	border-radius: 25px;
	color: var(--secondary-color);
	font-size: 14px;
	font-family: sub-title-font;
	background-color: var(--light-primary-color);
	transition: 0.3s ease-in;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	white-space: nowrap;
}

header .header-div-in .inner-div nav .btn i {
	width: 43px;
	height: 43px;
	border-radius: 50%;
	font-size: 18px;
	background: var(--secondary-color);
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

header .header-div-in .inner-div nav .btn:hover {
	background: var(--secondary-color);
	color: var(--white-color);
}

header .header-div-in .inner-div nav .btn:hover i {
	background: var(--light-primary-color);
}

header .header-div-in .inner-div nav .mobile-btn {
	-webkit-appearance: none;
	appearance: none;
	background-color: var(--light-primary-color);
	color: var(--secondary-color);
	height: 40px;
	width: 40px;
	font-size: 25px;
	border: none;
	border-radius: 5px;
	font-family: inherit;
	display: none;
	transition: all 0.2s ease-in 0.2s;
	cursor: pointer;
	padding: 0;
	line-height: 1;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}


header .header-div-in .inner-div nav .mobile-btn:hover {
	background: var(--secondary-color);
	color: var(--white-color);
}

/* MOBILE VIEW CSS */
@media all and (max-width:1175px) {
	header .header-div-in .inner-div {
		width: 96%;
		justify-content: space-between;
	}
}

@media all and (max-width:1100px) {
	header .header-div-in .inner-div nav ul .contact {
		display: none;
	}

	header .header-div-in .inner-div nav .nav-icon-div {
		display: none;
	}
}

@media all and (max-width:990px) {
	header .header-div-in .inner-div nav ul li {
		display: none;
	}

	header .header-div-in .inner-div nav .mobile-btn {
		display: block;
	}
}

/* Mobile View */
@media (max-width: 500px) {
	header .header-div-in .logo-div {
		width: 200px;
	}


	header .header-div-in .inner-div nav .btn {
		height: 40px;
		padding: 0 10px 0 10px;
		font-size: 13px;
	}

	header .header-div-in .inner-div nav .btn i {
		display: none;
	}
}

@media (max-width: 340px) {
	header .header-div-in .inner-div nav .btn {
		height: 36px;
		padding-left: 12px;
		gap: 8px;
	}
}

/* ------------------------------------------------------------- */




/* EXPAND LI STYLE */
#expand-li ul {
	position: absolute;
	top: 120px;
	min-width: 200px;
	border-radius: 15px;
	background: var(--white-color);
	box-shadow: 0px 0px 4px 4px rgba(133, 133, 133, 0.1);
	display: none;
	z-index: 600;
}

#expand-li:hover ul {
	display: block;
}

#expand-li ul li {
	margin: 0px;
	width: calc(100% - 60px);
	padding: 0px 30px;
	line-height: 50px;
	list-style: none;
	font-family: body-font;
	border-bottom: #E5E5E5 dashed 1px;
	color: var(--sub-body-color);
	font-size: 14px;
	display: flex;
	align-items: center;
}

#expand-li ul .li {
	border-bottom: none;
}

#expand-li ul li:hover {
	color: var(--secondary-color);
	border-radius: 0px;
}