:root {
	--clr_main: #FFD766;
	--font_title: 'Kanit', sans-serif;
	--font_body: 'Open Sans', sans-serif;
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	padding: 0;
	font-family: var(--font_body);
	font-size: 16px;
	line-height: 1.6;
	font-weight: 400;
}
img,
iframe {
	vertical-align: top;
	max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin-top: 0;
}
h1 {
	font-family: var(--font_title);
	font-size: 52px;
	line-height: 1.25;
	margin-bottom: 30px;
	font-weight: 700;
	color: #000;
}
h2 {
	font-family: var(--font_title);
	font-size: 42px;
	line-height: 1.25;
	margin-bottom: 15px;
	font-weight: 600;
	color: #000;
}
h3,
h4 {
	font-family: var(--font_title);
}
p {
	margin-bottom: 20px;
}
p:last-child {
	margin-bottom: 0;
}
ul {
	margin: 0;
	padding-left: 0;
}
a {
	transition: all 0.3s 0s ease-in-out;
	text-decoration: none !important;
	outline: none !important;
}
button {
	outline: none !important;
}
input,
select,
textarea {
	width: 100%;
	background-color: #fff;
	border: 1px solid #ddd !important;
	outline: none !important;
	padding: 13px 16px !important;
	font-size: 16px !important;
	line-height: 1 !important;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
	margin-bottom: 12px;
	color: #000;
	font-family: var(--font_body);
	font-weight: 400;
	border-radius: 10px;
}
textarea {
	height: 90px !important;
	resize: none;
}
section {
	padding-top: 100px;
	padding-bottom: 100px;
}
.scroll_section {
	padding-top: 100px;
	margin-top: -100px;
}
.grey_bg {
	background-color: #f4f4f4;
}
.container {
	width: 100%;
	max-width: 1280px;
	padding-left: 20px;
	padding-right: 20px;
	margin-left: auto;
	margin-right: auto;
}
.row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}
.col_6,
.col_5,
.col_4,
.col_3 {
	padding-left: 15px;
	padding-right: 15px;
}
.col_3 {
	width: 25%;
}
.col_4 {
	width: 33.3333%;
}
.col_5 {
	width: 41.6666%;
}
.col_6 {
	width: 50%;
}
.comn_btn {
	margin-top: 25px;
}
.comn_btn a {
	font-family: var(--font_title);
	background-color: transparent;
	color: var(--clr_main);
	padding: 16px 26px;
	display: inline-block;
	border: 2px solid var(--clr_main);
	text-transform: uppercase;
	font-size: 16px;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 0.5px;
	border-radius: 12px;
}
.comn_btn a:hover {
	background-color: var(--clr_main);
	color: #fff;
}
.main_title {
	margin-bottom: 60px;
	text-align: center;
}
.main_title h2 {
	margin-bottom: 0;
}
.back_to_top {
	display: none;
	position: fixed;
	z-index: 9998;
	bottom: 25px;
	right: 25px;
}
.back_to_top a {
	width: 45px;
	height: 45px;
	background-color: var(--clr_main);
	color: #fff;
	border-radius: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
}
.has_divider {
	position: relative;
}
.has_divider.top {
	margin-top: 26px;
}
.has_divider.bottom {
	margin-bottom: 26px;
}
.divider {
	position: absolute;
	width: 100%;
	z-index: 2;
	bottom: 0;
	line-height: 0;
}
.divider.top {
	top: -26px;
	bottom: auto;
}
.divider.bottom {
	bottom: -26px;
	transform: rotate(180deg);
}
.divider img {
	width: 100%;
	height: 26px;
}

/**** Header start ****/
.top_bar {
	background-color: var(--clr_main);
	padding: 7px 0;
}
.top_bar_row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.top_bar_row ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.top_bar_row li {
	display: inline-block;
	margin-right: 15px;
	font-size: 14px;
	line-height: 1;
	margin-bottom: 0;
	font-weight: 500;
}
.top_bar_row li:last-child {
	margin-right: 0;
}
.top_bar_row li a {
	color: #fff;
}
.top_bar_row li a i {
	display: inline-block;
	margin-right: 7px;
}
.main_header {
	padding: 15px 0;
	box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	width: 100%;
	background-color: #fff;
	z-index: 9999;
}
.main_header .head_row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.main_header .head_row .head_logo {
	width: 30%;
}
.main_header .head_logo img {
	width: 100%;
	height: auto;
	max-width: 200px;
	transition: 0.3s all ease-in-out;
}
.main_header .head_row .head_nav {
	width: 70%;
}
.main_header .head_hamburger {
	display: none;
}
.main_header .head_nav .head_menu {
	margin: 0;
	padding-left: 0;
	text-align: right;
	list-style: none;
}
.main_header .head_nav .head_menu li {
	display: inline-block;
	margin-right: 30px;
	font-size: 15px;
	line-height: 1.3;
	font-weight: 500;
	margin-bottom: 0;
	font-family: var(--font_title);
	text-transform: uppercase;
	letter-spacing: 0.4px;
}
.main_header .head_nav .head_menu li:last-child {
	margin-right: 0;
}
.main_header .head_nav .head_menu li a {
	color: #000;
}
.main_header .head_nav .head_menu li a:hover {
	color: var(--clr_main);
}
.main_header .head_nav .head_menu li a i {
	vertical-align: top;
	margin-top: 2px;
	margin-right: 2px;
}
.main_header .head_nav .head_menu li.close_menu {
	display: none;
}
.main_header.sticky .head_logo img {
	max-width: 160px;
}
/**** Header end ****/

/**** Footer start ****/
.main_footer {
	color: #cfcfcf;
	background-color: #000;
	padding: 90px 0 0;
	position: relative;
	word-wrap: break-word;
}
.main_footer a {
	color: #cfcfcf;
}
.main_footer a:hover {
	color: var(--clr_main);
}
.main_footer p {
	font-size: 15px;
}
.main_footer .widget h4 {
	font-size: 24px;
	line-height: 1.3;
	position: relative;
	font-weight: 400;
	margin-top: 0;
	margin-bottom: 25px;
	color: #fff;
	letter-spacing: 0.5px;
}
.main_footer .widget ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.main_footer .widget li {
	text-transform: uppercase;
	font-size: 14px;
	line-height: 1.6;
	font-weight: 600;
	margin-bottom: 13px;
}
.main_footer .widget li a {
	position: relative;
	padding-left: 21px;
	display: inline-block;
}
.main_footer .widget li a i {
	font-size: 13px;
	position: absolute;
	left: 0;
	top: 5px;
}
.main_footer .widget li:last-child {
	margin-bottom: 0;
}
.main_footer .widget_first p strong {
	display: block;
	margin-bottom: 10px;
	font-size: 17px;
	font-weight: 600;
}
.main_footer .widget_first a {
	display: inline-block;
	opacity: 1;
}
.main_footer .widget_first img {
	max-width: 200px;
	margin-bottom: 28px;
	width: 100%;
}
.main_footer .widget_second {
	padding-left: 20px;
}
.main_footer .widget_third {
	padding-left: 20px;
}
.main_footer .widget_third .widget ul {
	max-width: 350px;
}
.main_footer .widget_third .widget li {
	text-transform: none;
	font-weight: 500;
}
.main_footer .widget_third .widget li a {
	padding-left: 28px;
}
.main_footer .widget_third .widget li a i {
	font-size: 15px;
	min-width: 15px;
	text-align: center;
}
.main_footer .widget_third .widget .footer_social {
	margin-top: 24px;
}
.main_footer .widget_third .widget .footer_social li {
	display: inline-block;
	margin-right: 5px;
	margin-bottom: 0;
	padding-left: 0;
}
.main_footer .widget_third .widget .footer_social li a {
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	background-color: #cfcfcf;
	color: #000;
	padding-left: 0;
}
.main_footer .widget_third .widget .footer_social li a:hover {
	background-color: var(--clr_main);
	color: #fff;
}
.main_footer .widget_third .widget .footer_social li a i {
	margin: 0;
	font-size: 16px;
	position: static;
}
.other_site {
	margin-top: 55px;
}
.other_wrap a {
	display: inline-block;
	opacity: 0.8;
}
.other_wrap a:hover {
	opacity: 1;
}
.other_wrap img {
	max-height: 85px;
	max-width: 140px;
	margin-bottom: 15px;
}
.copyright {
	padding: 18px 0;
	border-top: 1px solid #2b2b2b;
	margin-top: 50px;
}
.copyright p {
	margin: 0;
	text-align: center;
	color: #919191;
	font-size: 14px;
	line-height: 1.5;
}
.copyright p a {
	color: #919191;
}
/**** Footer end ****/

/**** Home page start ****/
.hero_sec {
	padding-top: 0;
	padding-bottom: 0;
}
.hero_slide {
	padding: 100px 0 160px;
	background-size: cover;
	background-position: center center;
	position: relative;
	display: flex;
	align-items: center;
	min-height: 600px;
	margin-left: -1px;
}
.hero_slide::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0.8;
	background-color: #000;
}
.hero_slide .container {
	position: relative;
	z-index: 2;
}
.hero_slide_content {
	text-align: center;
	color: #fff;
}
.hero_slide_content h6 {
	font-size: 20px;
	line-height: 1.3;
	letter-spacing: 7px;
	text-transform: uppercase;
	font-weight: 500;
	font-family: var(--font_title);
	margin-bottom: 32px;
}
.hero_slide_content h1 {
	color: #fff;
	font-size: 70px;
	line-height: 1;
	font-weight: 500;
	margin-bottom: 30px;
}
.hero_slide_content h1 sup {
	font-size: 30px;
}
.hero_slide_content p {
	font-size: 20px;
	line-height: 1.5;
	font-weight: 400;
}
.hero_slide_content .comn_btn {
	margin-top: 35px;
}
.hero_slider .owl-dots {
	position: absolute;
	bottom: 60px;
	width: 100%;
	text-align: center;
	line-height: 0;
}
.hero_slider .owl-dots .owl-dot {
	width: 10px;
	height: 10px;
	background-color: #fff;
	margin: 0 6px;
	border-radius: 10px;
	transition: width 0.3s 0s ease-in-out;
}
.hero_slider .owl-dots .owl-dot.active {
	background-color: var(--clr_main);
	width: 26px;
	height: 8px;
}
.about_info {
	align-items: center;
	margin-bottom: 70px;
}
.about_img {
	padding-right: 15px;
}
.about_img img {
	border-radius: 14px;
	box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.25);
	height: 460px;
	width: 100%;
	object-fit: cover;
}
.about_txt {
	padding-left: 15px;
}
.about_txt h3 {
	font-size: 32px;
	line-height: 1.3;
	font-weight: 500;
	margin-bottom: 15px;
	margin-top: 30px;
}
.about_txt h3:first-child {
	margin-top: 0;
}
.about_boxes {
	margin-left: -5px;
	margin-right: -5px;
}
.about_boxes .col_3 {
	padding-left: 5px;
	padding-right: 5px;
}
.about_box {
	height: 100%;
	box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.05);
	border-radius: 14px;
	padding: 32px 20px 30px;
	text-align: center;
	border: 1px solid var(--clr_main);
	border-color: #ddd;
	cursor: pointer;
	transition: all 0.3s 0s ease-in-out;
}
.about_box i {
	width: 70px;
	height: 70px;
	background-color: #fef3e3;
	color: var(--clr_main);
	font-size: 30px;
	line-height: 70px;
	border-radius: 50%;
	text-align: center;
	margin-bottom: 22px;
}
.about_box h4 {
	font-size: 21px;
	line-height: 1.2;
	font-weight: 500;
	margin-bottom: 15px;
}
.about_box p {
	font-size: 15px;
	line-height: 1.4;
}
.about_box:hover {
	border-color: var(--clr_main);
	box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.05);
}

.product_slide {
	background-color: #fff;
	box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.1);
	border-radius: 14px;
	overflow: hidden;
	margin-bottom: 12px;
}
.product_slide img {
	height: 320px;
	object-fit: cover;
}
.product_txt {
	padding: 28px 30px 30px;
}
.product_txt h4 {
	font-size: 24px;
	line-height: 1.3;
	font-weight: 600;
	margin-bottom: 12px;
}
.product_txt p {
	font-size: 15px;
	line-height: 1.5;
	margin-bottom: 8px;
}
.product_txt p:last-child {
	margin-bottom: 0;
}
.product_slider .owl-nav {
	position: absolute;
	top: 140px;
	left: -20px;
	right: -20px;
	pointer-events: none;
	display: flex;
	justify-content: space-between;
}
.product_slider .owl-nav button {
	pointer-events: all;
	width: 40px;
	height: 40px;
	background-color: var(--clr_main) !important;
	border-radius: 8px;
	color: #fff !important;
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
}
.product_slider .owl-dots {
	margin-top: 30px;
	text-align: center;
	line-height: 0;
	margin-bottom: -20px;
}
.product_slider .owl-dots .owl-dot {
	width: 10px;
	height: 10px;
	background-color: #f4c886;
	margin: 0 6px;
	border-radius: 10px;
	transition: width 0.3s 0s ease-in-out;
}
.product_slider .owl-dots .owl-dot.active {
	background-color: var(--clr_main);
	width: 26px;
	height: 8px;
}
.brand_slide img {
	opacity: 0.6;
	transition: 0.3s all ease-in-out;
}
.brand_slide img:hover {
	opacity: 1;
}

.contact_sec {
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 80px;
}
.contact_insec {
	position: relative;
}
.contact_map iframe {
	width: 100%;
	height: 450px;
}
.contact_form {
	position: absolute;
	top: 0;
	bottom: 0;
	background-color: var(--clr_main);
	padding: 32px 50px 40px;
	display: flex;
	align-items: center;
	max-width: 500px;
	text-align: center;
	margin-top: -80px;
	border-radius: 16px 16px 0 0;
	box-shadow: 0 -2px 10px 0 rgba(0, 0, 0, 0.1);
}
.contact_form .main_title {
	margin-bottom: 25px;
}
.contact_form h2 {
	color: #fff;
}
.contact_form input[type="submit"] {
	background-color: #000;
	color: #fff;
	padding: 15px 28px !important;
	display: inline-block;
	border-radius: 8px;
	border: 2px solid #000 !important;
	box-shadow: 0px 0 16px 0 rgba(0, 0, 0, 0.15);
	text-transform: uppercase;
	font-size: 16px !important;
	line-height: 1 !important;
	font-weight: 500;
	width: 100%;
	margin: 0;
	cursor: pointer;
	transition: 0.3s all ease-in-out;
	font-family: var(--font_title);
	letter-spacing: 0.5px;
}
#website {
	display: none;
}
.form_popup, 
.popup {
	position: fixed;
	z-index: 99999;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	overflow-y: auto;
	transition: all 0.3s 0s ease-in-out;
}
.form_overlay, 
.popup .overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(51, 51, 51, 0.9);
}
.form_popup_box_wrap,
.popup_box_wrap {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.form_popup_box, 
.popup_box {
	max-width: 1000px;
	margin: auto;
	padding: 60px 20px;
}
.form_popup_box_in, 
.popup_box_in {
	background-color: #fff;
	border-radius: 16px;
	padding: 50px 50px;
	position: relative;
}
.form_close_popup, 
.close_popup {
	position: absolute;
	top: -15px;
	right: -15px;
}
.form_close_popup a, 
.close_popup a {
	width: 40px;
	height: 40px;
	background-color: var(--clr_main);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #fff;
	font-size: 20px;
	line-height: 1;
}
.open_popup {
	overflow: hidden;
}
.open_popup .popup {
	opacity: 1;
	visibility: visible;
}
.legal_wrap .main_title {
	margin-bottom: 20px;
}
.legal_wrap h6 {
	text-align: center;
	font-size: 16px;
	line-height: 1;
	margin-bottom: 20px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--clr_main);
}
.form_popup {
	opacity: 1;
	visibility: visible;
}
.form_popup_box {
	max-width: 540px;
}
.form_notification {
	font-size: 20px;
	line-height: 1.6;
	text-align: center;
	color: #090;
	font-weight: 600;
}
.form_notification.form_error {
	color: #f00;
}
/**** Home page end ****/