/*====================== Google fonts ========================*/
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Sen:wght@400..800&display=swap');

/*====================== Basic css ========================*/
html {
	font-size: 0.521vw;
}

:root {
	scroll-behavior: unset;
	--Sen: "Sen", sans-serif;
	--BricolageGrotesque: "Bricolage Grotesque", sans-serif;
	--body-color: #FFFBF5;
	--gradient-bgcolor:  transparent linear-gradient(180deg, #7E3B0E 0%, #290D00 100%) 0% 0% no-repeat padding-box;
	--primary-color: #5A3217;
	--text-color: #5B3216;
	--white: #FFFFFF;
	--black: #000000;
	--button-bgcolor: #145198;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
	margin: 0;
	padding: 0;
}

ol,
ul {
	list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

/* body */
body {
	font-family: var(--Sen);
	font-size: 1.6rem;
	font-weight: 400;
	background: var(--body-color);
	color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--BricolageGrotesque);
}

/* container */
.container {
	max-width: 167rem;
	width: 100%;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* back-to-top */
.back-to-top {
	width: 4.5rem;
	height: 4.5rem;
	line-height: 4.5rem;
	font-size: 2rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3rem;
	right: 2rem;
	border-radius: 50%;
	background: transparent linear-gradient(to top, #7E3B0E 0%, #290D00 100%) 0% 0% no-repeat padding-box;
	color: #FFF;
	z-index: 1000;
	box-shadow: 0rem 0.6rem 1rem rgba(0, 0, 0, 0.5);
	transition: 0.2s all ease;
}

.back-to-top:hover {
	box-shadow: 0rem 0rem 3rem var(--primary-color);
}

/*====================== Header area start ========================*/
.header_area {
	width: 100%;
	display: block;
	background: transparent;
	padding: 2.4rem 0rem;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1024;
	transition: 0.2s all ease;
}

.header_area.header_fixed {
	background: var(--body-color);
    box-shadow: 0 .8rem 2rem 0 rgba(0, 0, 0, .13);
    padding: 2rem 0;
}

.header_main {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header_logo img {
	width: 12.2rem;
}

.header_right {
	display: flex;
	align-items: center;
	gap: 14rem;
}

.header_menu ul {
	display: flex;
	align-items: center;
	gap: 14rem;
}

.header_menu ul li a {
	font-size: 2.4rem;
	font-weight: 400;
	color: var(--primary-color);
	text-transform: uppercase;
	transition: 0.2s all ease;
}

.header_menu ul li a:hover {
	font-weight: 700;
}

.language_btn ul {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.language_btn ul li,
.language_btn ul li a {
	font-size: 2.4rem;
	font-weight: 400;
	color: var(--primary-color);
	text-transform: uppercase;
	transition: 0.2s all ease;
}

.language_btn ul li a:hover,
.language_btn ul li a.active {
	font-weight: 700;
}

/*Hamburger menu*/
.hamburger-menu {
	cursor: pointer;
	position: relative;
	display: none;
	z-index: 999;
}

.hamburger-menu span {
	background: var(--primary-color);
	width: 4rem;
	height: .4rem;
	display: block;
	margin: .6rem 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.hamburger-menu .line-top.current {
	-webkit-transform: translateY(165%) rotate(135deg);
	-ms-transform: translateY(165%) rotate(135deg);
	transform: translateY(165%) rotate(135deg);
}

.hamburger-menu .line-center.current {
	opacity: 0;
}

.hamburger-menu .line-bottom.current {
	-webkit-transform: translateY(-325%) rotate(-135deg);
	-ms-transform: translateY(-325%) rotate(-135deg);
	transform: translateY(-325%) rotate(-135deg);
}

/*ofcanvas menu*/
.ofcavas-menu {
	position: fixed;
	width: 100%;
	min-height: 48rem;
	background: var(--body-color);
	z-index: -1;
	top: 0;
	display: none;
	right: -100%;
	transition: .3s;
}

.ofcavas-menu.current {
	right: 0;
}

.ofcanvas_body {
	padding-top: 13.5rem;
	text-align: right;
}

.ofcanvas_body ul li {
	padding-bottom: 4rem;
}

.ofcanvas_body .language_btn ul {
	justify-content: flex-end;
	gap: 6rem;
}


/*====================== hero_area start ========================*/
.slider_item {
	position: relative;
}

.slider_banner img {
	width: 100%;
	min-height: 92.6rem;
	object-fit: cover;
	object-position: left;
}

.slider_content {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	padding-top: 17.2rem;
}

.slider_title h2 {
	font-size: 8.5rem;
	font-weight: 500;
	line-height: 1.05;
	color: var(--primary-color);
	margin: 0;
}

.slider_text {
	padding-top: 25.6rem;
}

.slider_text2 {
	padding-top: 7.6rem;
}

.slider_text p {
	font-size: 2.4rem;
	font-weight: 400;
	line-height: 1.4;
	color: var(--primary-color);
	margin: 0;
}

.owl-dots {
	width: 100%;
	padding-left: calc((100% - 164rem) / 2);
	position: absolute;
	bottom: 6rem;
}

.owl-dot {
	background: transparent;
	border: none;
	outline: none;
}

.owl-dot span {
	width: 2rem;
	height: 2rem;
	display: block;
	background: var(--white);
	border: 1px solid var(--primary-color);
	margin-right: 2.6rem;
	border-radius: 50%;
	transition: 0.2s all ease;
}

.owl-dot.active span,
.owl-dot:hover span {
	background: var(--primary-color);
}

/*========================= production_area start ===========================*/
.production_area {
	background: var(--gradient-bgcolor);
	padding: 8rem 0rem;
}

.production_item img {
	width: 100%;
}

.production_cnt h3 {
	font-size: 6rem;
	font-weight: 500;
	line-height: 1.1;
	color: var(--body-color);
	margin-bottom: 4.6rem;
}

.production_cnt p {
	font-size: 2.4rem;
	font-weight: 400;
	color: var(--body-color);
	margin-bottom: 3.5rem;
}


.production_row2 {
	margin-top: 4rem;
}

.production_item iframe {
	width: 100%;
	height: 53.5rem;
}

.production_slider {
	padding-top: 8rem;
}

.production_sldItem img {
	width: 100%;
}

/*===================== certified_area start =======================*/
.certified_area {
	background: var(--body-color);
	padding: 24.3rem 0rem 5rem;
	margin-top: -23.5rem;
}

.certified_title h3 {
	font-size: 6rem;
	font-weight: 500;
	color: var(--text-color);
	line-height: 1.1;
	margin-bottom: 3.6rem;
}

.certified_title p {
	font-size: 2.4rem;
	font-weight: 400;
	color: var(--text-color);
	margin: 0;
}

.certified_logo {
	text-align: center;
	padding: 0 2.5rem;
	margin-top: 7.5rem;;
}

.certified_logo img {
	max-width: 15.5rem;
	display: block;
	margin: 0 auto;
}

/*=================== speak_area start ======================*/
.speak_area {
	background: transparent linear-gradient(to top, #7E3B0E 0%, #290D00 100%) 0% 0% no-repeat padding-box;;
	padding: 21.3rem 0rem 3rem;
	margin-top: -20rem;
}

.speak_title h3 {
	font-size: 6rem;
	font-weight: 500;
	color: var(--body-color);
	margin-bottom: 2rem;
}

.speak_item {
	text-align: center;
	margin-bottom: 6rem;
}

.speak_inner {
	min-height: 28rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.speak_inner img {
	max-width: 32rem;
	display: block;
	margin: 0 auto;
}

.speak_cnt {
	padding-top: 0.5rem;
}

.speak_cnt h4 {
	font-size: 3.6rem;
	font-weight: 600;
	color: var(--body-color);
	text-align: center;
	margin-bottom: 1.8rem;
}

.speak_cnt p {
	font-size: 2.4rem;
	font-weight: 400;
	color: var(--body-color);
	margin: 0;
}

/*=================== partner_area start =====================*/
.partner_area {
	background: var(--body-color);
	padding: 9rem 0rem 10.8rem;
}

.partner_title h3 {
	font-size: 6rem;
	font-weight: 500;
	color: var(--primary-color);
	margin-bottom: 2rem;
}

.partner_cnt p {
	font-size: 2.4rem;
	font-weight: 400;
	color: var(--text-color);
	margin: 0;
	max-width: 75rem;
	width: 100%;
}

.partner_cnt p strong {
	font-weight: 500;
}

.partner_main {
	padding-top: 7.6rem;
}

.partner_item img {
	width: 100%;
}

.partner_item {
	margin-top: 1.6rem;
}

/*=================== solution_area start ====================*/
.solution_area {
	background: var(--gradient-bgcolor);
	padding: 9.5rem 0rem;
}

.solution_cnt h3 {
	font-size: 6rem;
	font-weight: 500;
	color: var(--body-color);
	margin-bottom: 3.6rem;
}

.solution_cnt p {
	font-size: 2.4rem;
	font-weight: 400;
	color: var(--body-color);
	margin: 0;
	max-width: 67rem;
	width: 100%;
}

.solution_item img {
	max-width: 40rem;
	display: block;
	margin: 0 auto;
}

/*===================== trust_area start =======================*/
.trust_area {
	background: var(--body-color);
	padding: 13.6rem 0rem 10.8rem;
}

.trust_title h3 {
	font-size: 6rem;
	font-weight: 500;
	color: var(--primary-color);
	margin: 0;
}

.trust_main {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.trust_logo {
	width: 16.5%;
	padding: 0rem 1.5rem;
	text-align: center;
	margin-top: 7.6rem;
}

.trust_logo img {
	max-width: 11rem;
	display: block;
	margin: 0 auto;
}

.trust_btn {
	padding-top: 13rem;
	text-align: center;
}

.trust_btn a {
	font-size: 2.4rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--white);
	background: var(--button-bgcolor);
	display: inline-block;
	padding: 2.2rem 8.6rem;
	border-radius: 10rem;
	transition: 0.2s all ease;
}

.trust_btn a:hover {
	opacity: 0.85;
}

/*=================== footer_area start =====================*/
.footer_area {
	background: var(--gradient-bgcolor);
	padding: 10.5rem 0rem 16.6rem;
}

.footer_logo img {
	width: 19.4rem;
}

.footer_item p {
	font-size: 2.4rem;
	font-weight: 400;
	color: var(--body-color);
	margin: 0;
}

.footer_item p strong {
	font-weight: 600;
}

.footer_item p a {
 	font-weight: 700;
 	transition: 0.2s all ease;
}

.contact_cnt {
	margin-top: 3rem;
}

.footer_item p a:hover {
	text-decoration: underline;
}