*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}

input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
	background: transparent;
	border: none;
	outline: none;
}

button {
	cursor: pointer;
}

:root {
	--font-inter: "Inter", sans-serif;
	--font-kanit: "Kanit", sans-serif;
	
	--main-color: #0D8F46;
	--text-color: #313431;
}

#dietmoi {
	font-family: var(--font-inter);
	font-size: 14px;
	font-weight: 400;
	color: var(--text-color);
	background: #fff;
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100dvh;
	line-height: 1.5;
}

#dietmoi * {
	box-sizing: border-box;
}

#dietmoi img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

#dietmoi .js-fadein {
	opacity: 0;
	transform: translate(0, 20px);
	transition-property: opacity, transform;
	transition-duration: 1s;
}

#dietmoi .scroll-in {
	opacity: 1;
	transform: translate(0, 0);
}

#dietmoi .sp-br {
	display: none;
}

#dietmoi .pc-br {
	display: inline;
}

#dietmoi .inner {
	width: 100%;
	max-width: 1328px;
	margin: 0 auto;
	padding: 0 16px;
}

#dietmoi #main {
	flex: 1;
}

#dietmoi .hover,
#dietmoi .scroll {
	opacity: 1;
	transition: all 0.2s;
}

#dietmoi .hover:hover,
#dietmoi .scroll:hover {
	opacity: 0.75;
}

#dietmoi .h-font{
	font-family: var(--font-kanit);
	font-weight: 600;
}

#dietmoi .span-color{
	color: var(--main-color);
}

/* page-contact */
.page-contact .sc-form .intro{
	background-color: #f1f1f2;
}

@media print, screen and (min-width: 768px) {
	#dietmoi .inner {
		padding: 0 24px;
	}

	#dietmoi .pc-br {
		display: none;
	}

	#dietmoi .sp-br {
		display: inline;
	}
}
