* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 1vw;
	color: #ffffff;
	font-family: "Arial";
}

:root {
	--nav-before: none;
}

ul {
	list-style: none;
}

a {
	color: #ffffff;
	text-decoration: none;
}

.padding-box {
	padding: 1vw 5vw;
}

header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 999;
	background: #000C1F;
	display: flex;
}

.logo {
	width: 18%;
	height: 6vw;
	border-right: solid 0.2vw #ffffff;
	overflow: hidden;
}

.header-content {
	width: 90%;
	padding-left: 3vw;
}

.logo>img {
	width: 80%;
	height: 100%;
}

.header-content-top {
	display: flex;
	justify-content: space-between;
}

.form-search {
	width: 30vw;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 2vw;
	gap: 0.5vw;
	border-radius: 2vw;
	background: rgba(255, 255, 255, 0.15);
}

.header-contact {
	width: 40vw;
	display: flex;
	justify-content: center;
	gap: 1vw;
	padding: 0.5vw 0;
	background: linear-gradient(-90deg, #0d6200 60%, transparent);
}

.search {
	width: 85%;
	height: 100%;
	border: none;
	outline: none;
	background: transparent;
}

.search-icon {
	cursor: pointer;
	width: 1.2vw;
	height: 1.2vw;
}

.header-contact>div {
	display: flex;
	gap: 0.5vw;
	align-items: center;
}

.header-contact>div:first-child {
	padding-right: 1vw;
	border: none;
	border-right: solid 0.1vw #ffffff;
}

.header-contact-icon {
	width: 1vw;
	height: 1vw;
}

.header-content-bottom {
	display: flex;
	gap: 5vw;
	margin-top: 1.8vw;
}

nav>ul {
	display: flex;
	gap: 2.5vw;
}

nav>ul>li>a {
	position: relative;
	padding: 0.2vw 0;
	font-size: 1.1vw;
}

nav>ul>li>a::before {
	content: '';
	display: var(--nav-before, none);
	position: absolute;
	left: calc(50% - 0.5vw);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.8vw 0.6vw 0 0.6vw;
	border-color: #FFF transparent transparent transparent;
	top: -0.5vw;
}

nav>ul>li:hover>a::before {
	display: block;
}

nav>ul>li>a:hover {
	font-weight: bold;
}

.language-container {
	display: flex;
	gap: 0.8vw;
	margin-right: 2vw;
	align-items: center;
}

.language-container>img {
	width: 1.5vw;
	height: 1.5vw;
}

.hr {
	width: 0;
	height: 60%;
	border-left: solid 0.2vw #ffffff;
}

.language-container>a {
	font-weight: bold;
}

main {
	background: #1A1A1A;
	padding-bottom: 2vw;
}

footer {
	background: #2D2D2D;
}

.footer-nav>ul {
	display: flex;
	gap: 3vw;
	padding: 2vw;
	justify-content: center;
	border-bottom: solid 0.1vw rgba(255, 255, 255, 0.12);
}

.footer-img {
	display: flex;
	padding: 2vw;
	justify-content: center;
	gap: 1vw;
}

.footer-img>img {
	width: 10vw;
	height: 5vw;
	object-fit: contain;
}

.footer-copyright {
	display: flex;
	gap: 2vw;
	border-top: solid 0.1vw rgba(255, 255, 255, 0.12);
	padding: 2vw;
	justify-content: center;
}

.levitation {
	position: fixed;
	right: 2vw;
	top: 36vh;
}

.levitation>ul {
	display: flex;
	flex-direction: column;
	gap: 0.5vw;
}

.levitation>ul>li {
	position: relative;
}

.levitation-show {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #ffffff;
	gap: 0.5vw;
	min-width: 6vw;
	border-radius: 0.5vw;
	padding: 0.8vw 0.5vw;
	cursor: pointer;
	overflow: hidden;
}

.levitation-show:hover>label {
	color: #0d6200;
	cursor: pointer;
}

.levitation-show img {
	width: 2vw;
	transform: translateY(-12vw);
	filter: drop-shadow(#0d6200 0 12vw);
}

.levitation-show>label {
	color: #1a1a1a;
	font-weight: 500;
}

.levitation-hidden {
	position: absolute;
	width: 18vw;
	left: -19vw;
	top: 0.2vw;
	display: none;
}

.levitation-hidden>div {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.bubble {
	width: 100%;
	height: 5vw;
}

.levitation-hidden-content {
	position: absolute;
	width: 100%;
	padding-top: 0.3vw;
	text-align: center;
}

.toTop {
	overflow: hidden;
}

.toTop>img {
	transform: translateY(-12vw);
	filter: drop-shadow(#0d6200 0 12vw);
}

.menu-icon img {
	width: 7.5vw;
	height: 7.5vw;
	display: none;
}

.menu-list-mask {
	position: fixed;
	width: 100%;
	height: 100vh;
	left: 0;
	top: 0;
	background: rgb(0, 0, 0, .4);
	display: none;
}

.menu-list {
	width: 72vw;
	height: 100vh;
	margin-left: 28vw;
	background: #ffffff;
	padding: 5vw 4vw;
	overflow-y: auto;
	z-index: 3000;
}

.menu-list-logo {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 6vw;
	overflow: hidden;
}

.menu-list-logo>img:nth-of-type(1) {
	width: 32vw;
	height: 14vw;
	transform: translateY(-100vw);
	filter: drop-shadow(#0d6200 0 100vw);
}

.menu-list-logo>img:nth-of-type(2) {
	width: 4vw;
	height: 4vw;
}

.menu-form-search {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 10vw;
	border-bottom: solid #E6E6E6 0.1vw;
}

.menu-search {
	width: 85%;
	height: 100%;
	border: none;
	outline: none;
	font-size: 3.6vw;
	color: #333333;
	background: transparent;
}

.menu-search-icon {
	cursor: pointer;
	width: 5.8vw;
	height: 5.8vw;
}

.menu-list-nav {
	display: flex;
	flex-direction: column;
	gap: 2vw;
	margin-top: 4vw;
}

.menu-list-nav a {
	display: flex;
	gap: 4vw;
	position: relative;
	padding: 4.5vw 0;
	align-items: center;
	border-bottom: solid #E6E6E6 0.15vw;
}

.menu-list-nav>a img:first-child {
	width: 5vw;
	height: 5vw;
}

.menu-list-nav>a img:last-child {
	width: 2.5vw;
	height: 3vw;
	position: absolute;
	right: 1vw;
}

.menu-list-nav a span {
	color: #333333;
	font-size: 4vw;
	font-weight: bold;
	width: 44vw;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 1.2vw;
    padding: 3vw 5vw;
    padding-bottom: 4.5vw;
    background: #ffffff;
}

.pagination>li a {
    color: #333333;
    font-size: 1vw;
    padding: 0.65vw 1vw;
    background: #F4F8FB;
    border-radius: 0.2vw;
    border: solid #F6FBFF 0.1vw;
} 

.pagination>li span {
    font-size: 1vw;
    padding: 0.65vw 1vw;
    border-radius: 0.2vw;
    background: #0D6200;
    color: #ffffff;
}

.pagination>li:first-child span,.pagination>li:first-child a {
    color: #333333;
    font-size: 1vw;
    padding: 0.65vw 1vw;
    background: #F6FBFF;
    border-radius: 0.2vw;
}

.pagination>li:last-child span,.pagination>li:last-child a {
    color: #333333;
    font-size: 1vw;
    padding: 0.65vw 1vw;
    background: #F6FBFF;
    border-radius: 0.2vw;
}

.tabbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.4vw;
    background: rgb(13, 98, 0);
    display: none;
    z-index: 200;
}

.tabbar>a {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.2vw;
}

.tabbar>a img {
    width: 6vw;
}

@media (max-width:768px) {
	* {
		font-size: 2.5vw;
	}

	header {
		align-items: center;
		padding: 4vw 5vw !important;
	}

	.logo {
		width: 40%;
		height: 10vw;
		border-right: none;
	}

	.header-content {
		width: 78%;
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}

	.header-content-top {
		display: none;
	}

	nav {
		display: none;
	}

	.language-container {
		gap: 2vw;
		margin-right: 6vw;
		position: relative;
		top: -0.8vw;
	}

	.language-container>img {
		width: 4.2vw;
		height: 4.2vw;
	}

	.hr {
		border-left: solid 0.6vw #ffffff;
	}

	.language-container a {
		font-size: 3.5vw;
	}

	.menu-icon img {
		display: block;
	}

	.levitation {
		display: none;
	}

	.footer-nav>ul {
		gap: 4vw 8vw;
		padding: 5vw 2vw;
		flex-wrap: wrap;
	}

	.footer-nav a {
		font-size: 3.2vw;
	}

	.footer-img {
		flex-wrap: wrap;
		gap: 5vw 8vw;
		padding: 5vw 2vw;
	}

	.footer-img>img {
		width: 20vw;
		height: 10vw;
	}

	.footer-copyright {
		text-align: center;
		gap: 4vw;
		padding: 5vw 2vw;
		padding-bottom: 20.8vw;
		flex-direction: column;
	}

	.footer-copyright label {
		font-size: 3vw;
	}
	
	.pagination {
        gap: 2.5vw;
        padding-top: 6vw;
        padding-bottom: 8vw;
    }

    .pagination>li a {
        font-size: 3vw;
        padding: 1.25vw 2vw;
        border-radius: 0.4vw;
    } 

    .pagination>li span {
        font-size: 3vw;
        padding: 1.25vw 2vw;
        border-radius: 0.4vw;
    }

    .pagination>li:first-child span,.pagination>li:first-child a {
        font-size: 3vw;
        padding: 1.25vw 2vw;
        border-radius: 0.4vw;
    }

    .pagination>li:last-child span,.pagination>li:last-child a {
        font-size: 3vw;
        padding: 1.25vw 2vw;
        border-radius: 0.4vw;
    }
    
    .tabbar {
        display: flex;
    }
    
    .tabbar>a span{
        font-size: 3.8vw;
    }
}
