* {
	margin: 0;
	padding: 0;
	list-style: none;
	box-sizing: border-box;
	font-family: sans-serif;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

body {
	min-width: 320px;
	overflow-x: hidden;
}

body::-webkit-scrollbar {
	overflow-y: scroll;
	background: rgba(255, 0, 0, 0.233);
	width: 2px;
	transition: linear .2s;
	box-shadow: 3px 0 0 #221b3b;
}

body::-webkit-scrollbar-thumb {
	background: #221b3b;
	border-radius: 0;
	width: 1px;
	transition: linear .2s;
	cursor: grab;
}

@media (max-width: 991px) {
	body.menu-opened {
		position: relative;
		overflow: hidden;
	}

	body.menu-opened .mobile-menu {
		display: block;
	}
}

p {
	margin: 0;
}

a {
	font-family: inherit;
	color: inherit;
}

.spacer {
	display: none;
}

@media (max-width: 991px) {
	.spacer {
		display: block;
		width: 100%;
		height: 40px;
		margin-bottom: 20px;
	}
}

.header {
	background-color: #221b3b;
	margin-top: 20px;
	margin-bottom: 20px;
}

@media (max-width: 991px) {
	.header {
		margin-top: 0;
		margin-bottom: 20px;
	}
}


.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	height: 40px;

}

@media (max-width: 991px) {
	.header-inner {
		position: fixed;
		z-index: 100;
		top: 0;
		right: 0;
		left: 0;
		background-color: #221b3b;
	}
}

.header-inner ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	max-width: 1170px;
	height: 100%;
	padding: 0 15px;
}

.header-inner li {
	height: 100%;
}

.header-inner li.current a {
	background-color: #e61c38;
	pointer-events: none;
}

.header-inner a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 0 15px;
	text-decoration: none;
	font-weight: 700;
	color: #ffffff;
	cursor: pointer;
}

.header-inner a:hover {
	background-color: #b1a5e6;
}

/* ==== mobile-btn ====== */

.mobile-btn {
	display: none;
	width: 20px;
	height: 20px;
	margin-right: 15px;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
	transition: transform 330ms ease-out;
}

@media (max-width: 991px) {
	.mobile-btn {
		display: flex;
	}
}

.mobile-btn .line {
	background-color: #fff;
	border-radius: 2px;
	width: 100%;
	height: 2px;
}

.mobile-btn .line.half {
	width: 50%;
}

.mobile-btn .line.start {
	transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
	transform-origin: right;
}

.mobile-btn .line.end {
	align-self: flex-end;
	transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
	transform-origin: left;
}

.mobile-btn.open {
	transform: rotate(-45deg);
}

.mobile-btn.open .line.start {
	transform: rotate(-90deg) translateX(7px);
}

.mobile-btn.open .line.end {
	transform: rotate(-90deg) translateX(-7px);
}

/* ========== */

/* .mobile-btn {
	display: none;
	overflow: hidden;
	padding: 0;
	width: 30px;
	height: 42px;
	cursor: pointer;
	transition: background 0.3s;
	position: relative;
	background-color: transparent;
	border: none;
	margin-right: 15px;
}

@media (max-width: 991px) {
	.mobile-btn {
		display: block;
	}
}

.mobile-btn span {
	display: block;
	position: absolute;
	top: 18px;
	left: 0;
	right: 0;
	height: 3px;
	background: #fff;
	transition: background 0.3s;
}

.mobile-btn:hover  span{
	background: #b1a5e6;
}

.mobile-btn span:before {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #fff;
	content: "";
	top: -8px;
	transition-duration: 0.3s, 0.3s;
	transition-delay: 0.3s, 0;
	transition-property: top, transform;
}

.mobile-btn:hover span:before {
	background: #b1a5e6;
}

.mobile-btn span:after {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #fff;
	content: "";
	bottom: -8px;
	transition-duration: 0.3s, 0.3s;
	transition-delay: 0.3s, 0;
	transition-property: top, transform;
}

.mobile-btn:hover span:after {
	background: #b1a5e6;
}

.mobile-btn.active span {
	background: none;
}

.mobile-btn.active span:before {
	top: 0;
	transform: rotate(45deg);
	transition-delay: 0, 0.3s;
}

.mobile-btn.active span:after {
	bottom: 0;
	transform: rotate(-45deg);
	transition-delay: 0, 0.3s;
} */

.mobile-menu {
	position: fixed;
	top: 40px;
	left: 0;
	bottom: 0;
	z-index: 90;
	width: 100%;
	max-width: 100%;
	display: none;
	background: #fff;
	overflow-y: auto;
	padding: 15px;
}

.mobile-menu::-webkit-scrollbar {
	overflow-y: scroll;
	background: transparent;
	width: 2px;
	transition: linear .2s;
	box-shadow: 3px 0 0 #221b3b;
}

.mobile-menu::-webkit-scrollbar-thumb {
	background: #221b3b;
	border-radius: 0;
	width: 3px;
	transition: linear .2s;
	cursor: grab;
}


.mobile-menu .acc-head:hover {
	cursor: pointer;
}

.mobile-menu .acc-head.active {
	background-color: #221b3b;
	color: #ffffff;
}

.mobile-menu .acc-head > span {
	display: block;
	border-bottom: 2px solid #000;
	padding: 10px;
	padding-left: 15px;
}

.mobile-menu .acc-head + .acc-body a {
	background-color: #b1a5e6;
	color: #ffffff;
}

.mobile-menu .acc-head + .acc-body a:hover {
	background-color: #7568b1;
	color: #ffffff;
}

.mobile-menu .acc-body {
	padding-top: 5px;
}

.wrapper {
	padding: 20px;
	padding-top: 0;
}

@media (max-width: 991px) {
	.wrapper {
		padding: 0;
	}
}

.wrapper ul {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	min-width: 320px;
}

@media (max-width: 1600px) {
	.wrapper ul {
		grid-template-columns: repeat(5, 1fr);
	}
}

@media (max-width: 1200px) {
	.wrapper ul {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 991px) {
	.wrapper ul {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 767px) {
	.wrapper ul {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.wrapper ul {
		grid-template-columns: repeat(1, 1fr);
	}
}

.wrapper li {
	position: relative;
}

.wrapper li:before {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 20px;
	right: 20px;
	height: 1px;
	background-color: #e5e5e5;
}

.wrapper li:after {
	content: "";
	position: absolute;
	top: 20px;
	bottom: 20px;
	right: -1px;
	width: 1px;
	background-color: #e5e5e5;
}

.wrapper li:hover,
.wrapper li:focus {
	z-index: 10;
	box-shadow: 3px 3px 20px rgba(229, 229, 229, 0.9);
	border-radius: 10px;
	background-color: #b1a5e6;
}

.wrapper li:hover:before,
.wrapper li:focus:before {
	left: 0;
	right: 0;
	height: 1px;
	background-color: transparent;
}

.wrapper li:hover:after,
.wrapper li:focus:after {
	top: 0;
	bottom: 0;
	right: -1px;
	width: 1px;
	height: 100%;
	background-color: transparent;
}

.wrapper li:hover > .item {
	color: #fff;
}

.wrapper li:hover > .item:before {
	left: 0;
	right: 0;
	width: 100%;
	height: 1px;
	background-color: transparent;
}

.wrapper li:hover > .item:after {
	top: 0;
	bottom: 0;
	height: 100%;
	width: 1px;
	background-color: transparent;
}

.wrapper li:hover > .item .content {
	color: #fff;
}

.wrapper .item {
	position: relative;
	display: block;
	height: 100%;
	padding: 20px;
	text-decoration: none;
}

.wrapper .item:before {
	content: "";
	position: absolute;
	top: 0;
	left: 20px;
	right: 20px;
	height: 1px;
	background-color: #e5e5e5;
}

.wrapper .item:after {
	content: "";
	position: absolute;
	left: 0;
	top: 20px;
	bottom: 20px;
	width: 1px;
	background-color: #e5e5e5;
}

.wrapper .content {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	color: #000;
}

.wrapper .content-about {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	font-family: "Quicksand", sans-serif;
	text-align: center;
}

.wrapper .content-about b {
	display: block;
	font-weight: 400;
}

.wrapper li:hover .content-title {
	color: #fff;
}

.wrapper li:hover .content-link {
	border-bottom: 1px solid #fff;
	color: #fff;
}

/* manual */

.manual {
	margin-bottom: 50px;
	padding-top: 0;
	border-top: 1px solid rgb(231, 38, 38);
	border-bottom: 1px solid rgb(231, 38, 38);
}

@media (max-width: 991px) {
	.manual {
		display: none;
	}
}

.manual > ul {
	display: flex;
	padding-left: 10px;
}

.submenu a {
	display: block;
	border-bottom: 1px solid rgba(177, 165, 230, 0.3);
	padding: 10px;
	padding-left: 20px;
	padding-right: 40px;
	text-decoration: none;
	white-space: nowrap;
}

.submenu a:hover {
	background-color: rgb(177, 165, 230);
	color: #fff;
}

li.has-child > span {
	padding: 10px !important;
	padding-left: 20px !important;
	padding-right: 40px !important;
	border-bottom: 1px solid rgba(177, 165, 230, 0.3);
}

.manual ul li > span {
	display: block;
	padding: 15px 23px;
	cursor: pointer;
	transition: background-color 0.2s, color 0.2s;
	cursor: default;
	white-space: nowrap;
}

.manual ul li:hover > span {
	background-color: rgb(231, 38, 38);
	color: #fff;

}

.submenu ul li:last-child a,
.submenu ul li:last-child span {
	border-bottom: none;
}

.manual ul > li.has-child {
	position: relative;
}

.manual ul > li.has-child > .submenu {
	position: absolute;
	z-index: 100;
	top: 100%;
	z-index: 10;
	opacity: 0;
	transform: translateY(10px);
	visibility: hidden;
	transition: visibility 0.2s, transform 0.2s, opacity 0.2s;
}

.manual ul > li.has-child > .submenu > ul {
	margin-top: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
	background: #fff;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

.manual ul > li.has-child:hover > .submenu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.has-child li.has-child {
	position: relative;
}

.has-child li.has-child > .submenu {
	position: absolute;
	top: -4px !important;
	left: 100%;
	padding-left: 5px;
}


/* =========== pc ========= */

.pc {
	background: rgba(178, 180, 211, 0.404);
}

.pc-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	margin-bottom: 20px;
	padding: 0 15px;
	padding: 20px;
	padding-top: 0;
}

.pc-wrapper ul {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.pc-wrapper ul li {
	flex-grow: 1;
	min-width: 10%;
}

.pc-wrapper a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 15px;
	border: 1px solid #221b3b;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	color: #221b3b;
}

.pc-wrapper a:hover {
	background-color: #221b3b;
	color: #fff;
}

.pc-wrapper a > i {
	margin-right: 10px;
}

.pc-wrapper a > i img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.pc-wrapper a > i svg {
	width: 20px;
	height: 20px;
}

.pc-article {
	margin-bottom: 20px;
}

.pc-article a {
	display: block;
	margin-bottom: 10px;
	color: rgb(3, 1, 7);
	text-decoration: none;
}

.pc-article a:hover {
	color: rgb(51, 39, 73);
	text-decoration: underline;
}

/* ==== new ===== */

.new {
	margin-bottom: 200px;
}


.new > ul {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 15px;
	padding: 10px;
}

@media (max-width: 991px) {
	.new > ul {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 767px) {
	.new > ul {
		grid-template-columns: repeat(3, 1fr);

	}
}

@media (max-width: 574px) {
	.new > ul {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 420px) {
	.new > ul {
		grid-template-columns: repeat(1, 1fr);
	}
}

.new > ul > li {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 50px;
	border: 1px solid rgba(34, 27, 59, 0.1);
	box-shadow: 0px 3px 6px rgba(10, 28, 39, 0.1);
	border-radius: 5px;
	transition: box-shadow linear 0.2s, border linear 0.2s, background-color linear 0.2s;
	color: #ffffff;
}

.new > ul > li:hover {
	box-shadow: 0px 8px 10px rgba(10, 28, 39, 0.03);
	border: 1px solid #000;
	background-color: rgba(34, 27, 59, 1);
}

.new > ul > li:hover a,
.new > ul > li:hover span {
	color: #fff;
}

.new > ul > li > a,
.new > ul > li > span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	color: #221b3b;
	text-transform: lowercase;
	text-decoration: none;
	letter-spacing: 1px;
	font-size: 18px;
	transition: color linear 0.2s;
}

.new > ul > li > span:hover {
	cursor: default;
}

.new > ul > li.has-children {
	position: relative;
}

.new > ul > li.has-children > .dropdown {
	position: absolute;
	top: calc(100% + 10px);
	z-index: 100;
	width: 100%;
	padding: 5px 0;
	/* display: none; */
	visibility: hidden;
	opacity: 0;
	transition: top linear 0.1s, opacity linear 0.1s, visibility linear 0.1s;
	opacity: 1;
	overflow: hidden;
}

.new > ul > li.has-children:hover > .dropdown {
	top: calc(100% + 0px);
	border-radius: 5px;
	visibility: visible;
	opacity: 1;
}

.new > ul > li.has-children > .dropdown ul {
	max-height: 220px;
	padding: 10px 0;
	border-radius: 5px;
	overflow: hidden;
	overflow-y: auto;
	color: #ffffff;
	background-color: rgba(34, 27, 59, 1);
	box-shadow: 0px 3px 6px rgba(10, 28, 39, 0.1);
}

.new > ul > li.has-children > .dropdown ul::-webkit-scrollbar {
	overflow-y: scroll;
	background: transparent;
	width: 4px;
	transition: linear .2s;
	box-shadow: 1px 0 0 #c4c4c4;


}

.new > ul > li.has-children > .dropdown ul::-webkit-scrollbar-thumb {
	background: #b1a5e6;
	border-radius: 0;
	width: 1px;
	transition: linear .2s;
	cursor: grab;
}

.new > ul > li.has-children > .dropdown ul {
	scrollbar-color: #b1a5e6 transparent;
	scrollbar-width: thin;
}

.new > ul > li.has-children > .dropdown ul {

}


.new > ul > li.has-children > .dropdown li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.new > ul > li.has-children > .dropdown li:hover {
	background-color: #b1a5e6;
}

.new > ul > li.has-children > .dropdown li a {
	display: flex;
	align-items: center;
	width: 100%;
	height: 35px;
	padding: 5px 0;
	padding-left: 20px;
	text-decoration: none;
	letter-spacing: 1px;
}

.new > ul > li.has-children > .dropdown li a:first-child {
	padding-top: 10px;
}

.new > ul > li.has-children > .dropdown li a:last-child {
	padding-bottom: 10px;
}

.new > ul > li.has-children > .dropdown li a:hover {
	background-color: #b1a5e6;
	color: #fff;
	font-weight: 500;
}

/* ========= qu =========== */

.qu {
	margin-bottom: 20px;
}

.qu ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	padding: 0 15px;
}

.qu ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
}

.qu ul li a svg {
	height: 40px;
}

.qu ul li a img {
	width: 100%;
	height: 40px !important;
	object-fit: cover;
	border-image: url("index.html");
}

.qu ul li a svg path {
	fill: #1d1e22;
}



