h1,h2,h3,h4,h5,h6,p,a{
	font-family: 'Montserrat', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');


:root {
	--primary-color: #CA7D28;
	--secondary-color : #ffff00;
	--title-font: 	"Roboto Condensed", sans-serif;
}

body {
	font-optical-sizing: auto;
}

.page {
	margin-top: 110px;
}

.ml-auto {
	margin-left: auto !important;
}

.cmn-btn {
	background-color: var(--primary-color);
	color: #fff;
	transition: all .4s linear;
}

.cmn-btn:hover {
	background-color: yellow;
	color: #000;
}

.banner {
	width: 100%;
	height: 450px;
	background-image: url("/img/slider-1.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.banner::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.banner .content {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 2;
}

.banner .content h2 {
    font-size: 42px;
	font-family: var(--title-font);
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.banner .content .breadcrumb-item {
	color: #fff;
	font-size: 18px;
}

.banner .content .breadcrumb-item::before {
	color: #fff;
}

.banner .content .breadcrumb-item a{
	color: #fff;
	text-decoration: none;
}

.title {
	color: var(--primary-color);
	font-size: 34px;
	font-weight: 700;
	margin-bottom: 12px;
	font-family: var(--title-font);
}

.sub-title {
	font-size: 24px;
	font-family: var(--title-font);
	font-weight: 500;
}

.mb50 {
	margin-bottom: 50px;
}

.scrollup {
	width: 50px;
	height: 50px;
	background-color: var(--primary-color);
	font-size: 24px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	bottom: 20px;
	right: 20px;
	border-radius: 50%;
	text-decoration: none;
}

.scrollup:active,
.scrollup:hover {
	color: #fff;
}

.sec-content {
	padding-block: 100px;
}

.sec-content .title {
	margin-bottom: 80px;
	font-size: 42px;
}

.sec-content .content-box {
	border-radius: 5px;
}

.sec-content .content-box p {
	text-align: justify;
}

.sec-content .lines-wrapper {
	height: 80px;
	position: relative;
}

.sec-content .lines-wrapper .line-1 {
	content: "";
	width: 100%;
	height: 5px;
	background-color: var(--primary-color);
	position: absolute;
	top: 0%;
	right: 0%;
	border-radius: 20px;
}

.sec-content .lines-wrapper .line-2 {
	content: "";
	width: 60%;
	height: 5px;
	background-color: var(--primary-color);
	position: absolute;
	top: 50%;
	right: 40%;
	border-radius: 20px;
	transform: translateY(-50%);
}

.sec-content .lines-wrapper .line-3 {
	content: "";
	width: 20%;
	height: 5px;
	background-color: var(--primary-color);
	position: absolute;
	bottom: 0%;
	left: 0%;
	border-radius: 20px;
}

.sec-bg {
	background-color: #f3f1ea;
}

#menu {
	z-index: 999;
	background-color: rgba(0, 0, 0, 0.1);
}

#menu .mm-menu, .mm-panel, .mm-navbar {
	background-color: #f3f1ea;
} 

#menu .mm-navbar__title {
	font-size: 24px;
	font-family: var(--title-font);
	font-weight: 700;
	color: var(--primary-color) !important;
}

#menu .nav-link {
	font-size: 16px;
	text-transform: capitalize;
	transition: color .2s linear;
}

#menu .nav-link.active,
#menu .nav-link:hover {
	color: #fff;
	background-color: var(--primary-color);
}


#menu .dropdown:hover .dropdown-toggle {
	color: var(--primary-color);
}

#menu .nav-link {
	padding-inline: 10px;
}

#menu .menu-icons {
	width: 40px;
	font-size: 18px;
	text-align: center;
	display: inline-block;
}

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


#header{
	width: 100%;
	background-color: #fff;
	padding: 0px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 998;
	box-shadow: 0px 2px 2px #888;
}

#header .navbar {
	border: 0;
	margin-bottom: 0;
}

#header .navbar .logo{
	min-width: 200px;
	max-width: 100%;
	display: inline-block;
}


#header .navbar .nav {
	display: none;
	margin-top: 20px;
}

#header .navbar .logo .logo-img {
	width: 100%;
}

#header .home-menu {
	max-width: 80%;
	min-width: 600px;
	margin-left: auto;
}

#header .home-menu .navbar-nav {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

#header .home-menu .nav-link {
	font-size: 18px;
	text-transform: capitalize;
	transition: color .2s linear;
}

#header .nav-link.active,
#header .nav-link:hover {
	color: var(--primary-color);
	background-color: transparent;
}


#header .home-menu .dropdown:hover .dropdown-toggle {
	color: var(--primary-color);
}


#header .home-menu .dropdown-item {
	padding-inline: 20px;
}

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


#slider .home-slider-img {
	width: 100%;
	height: 450px;
	object-fit: cover;
}


#card-wrapper {
	padding: 100px 0px;
}

#card-wrapper .mb-2{
	margin-bottom: 16px;
}

#card-wrapper .position-relative {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

#card-wrapper .position-relative  img {
	width: 100%;
	border-radius: 10px;
}

#card-wrapper h3{
	background-color: rgba(0, 0, 0, 0.2);
	width: 100%;
	font-family: var(--title-font);
	color: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	margin: 0;
	padding: 5px 0px;
}

#card-wrapper h3 span{
	font-size: 30px;
	font-weight: 600;
}

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

/*About*/

#about {
	max-width: 1920px;
	padding: 40px 0px;
	position: relative;
	background-color:  #e3c952;
	margin: 100px 0px;
	margin: 0 auto;
}

#about .about-left {
	max-width: 600px;
	position: absolute;
	left: 3%;
	top: -80px;
	/* transform: translateY(50%); */
	/* transform: scale(1.1); */
}

#about .about-left img {
	width: 100%;
	height: 100%;
}

#about .about{
	color: var(--primary-color);
	margin-bottom: 20px;
}

#about .about span{
	font-weight: bold;
}



/*=======================================*/
/*Our Products*/

#our_project {
	padding: 100px 0px;
}

#our_project .title h2 {
	font-weight: 500;
	margin-bottom: 50px;
}

#our_project .title h2 span{
	color: var(--primary-color);
	font-weight: 600;
}

#our_project .line_products{
	margin: 20px auto;
	width: 70%;
	border: 1px solid #ccc;
}

#our_project a {
	text-decoration: none;
}

#our_project .item {
	height: auto !important;
	background-color: var(--primary-color);
	padding-bottom: 10px;
	border-radius: 10px;
	overflow: hidden;
}

#our_project .item img {
	width: 100%;
}

#our_project .item h4 {
	color: #333;
}

#our_project .item:hover {
	background-color: #e3c952;
	transition: background-color .5s ease-in;
}

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

/*Footer*/

footer{
	background-color: #333;
	color: #ccc;
	padding-top: 30px;
	padding-bottom: 10px;
}

footer .title {
	color: #ccc;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 2px;
	margin-bottom: 20px;
}


footer p {
	margin-bottom: 0;
}

.u-icon {
	padding-left: 30px;
	position: relative;
}

.u-icon::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	width: 30px;
	height: 30px;
	color: #ccc;
	font-size: 14px;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	/* background-color: red; */
}

.location::before {
	content: "\f3c5";
}

.hour::before {
	content: "\f017";
}

.email::before {
	content: "\f0e0";
}

.phone::before {
	content: "\f095";
	transform: rotate(90deg) translateY(5px);
}

footer .left p{
	margin-bottom: 10px;
}

footer .contact li {
	margin-bottom: 10px;
}


footer .contact{
	display: flex;
	justify-content: end;
}

footer .bottom {
	padding-top: 10px;
	border-top: 1px solid #ccc;
}

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

/* start about us page  */


/* start our history section  */

.about-us .our-history {
	width: 100%;
	padding-block: 100px;
}

.about-us .our-history .para {
	width: 70%;
	text-align: center;
	margin-inline: auto;
}

.about-us .our-history .para p {
	text-indent: 100px;
	line-height: 1.5;
}

/* start our roots section  */

.about-us .our-roots {
	max-width: 1920px;
	/* color: #fff; */
	background-color: #e3c952;
	position: relative;
	margin: 0 auto;
}

.about-us .our-roots .title {
	color:#000;
}

.about-us .our-roots .or-left-side {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.about-us .our-roots .or-left-side img {
	object-fit: cover;
}

.about-us .our-roots .or-left-side .or-left-content {
	max-width: 500px;
	min-width: 400px;
	background-color: #fff;
	padding: 20px 30px;
	position: absolute;
	bottom: 50px;
	right: -50px;
}

.about-us .our-roots .or-left-side .or-left-content h3 {
	font-size: 24px;
	font-weight: 400;
	color: var(--primary-color);
	margin-bottom: 14px;
}

.about-us .our-roots .or-right-content {
	width: 100%;
	padding-block: 50px;
	padding-left: 70px;
	padding-right: 0px;
}

.about-us .our-roots .or-right-content p {
	width: 100%;
	text-align: justify;
	text-indent: 30px;
}

.about-us .our-roots .sub-title {
	text-indent: 0;
}

/* end our root section  */

/* start our passion section  */

.about-us .our-passion {
	padding: 100px 0px;
}

.about-us .our-passion .op-card {
	height: 100%;
	background-color: #fff;
	padding: 20px 25px;
	border-radius: 10px;
	box-shadow: 4px 4px 16px #ccc;
	transition: all .4s linear;
	border: 1px solid #ccc;
}

.about-us .our-passion .op-card:hover {
	transform: translateY(-5px);
	box-shadow: 9px 9px 16px #ccc;
}

.about-us .our-passion .op-card h3 {
	font-size: 18px;
	font-weight: 400;
	color: #000;
	margin-bottom: 14px;
}

.about-us .our-passion .op-card h3 i {
	margin-right: 15px;
}

/* end our passion section  */

/* start our mission and our vission section  */

.about-us .our-mission-vission {
	padding: 50px 0px;
	background-color: #f3f1ea;
}


.about-us .our-mission-vission .omv-content-left,
.about-us .our-mission-vission .omv-content-right {
	padding: 20px 0px;
}

.about-us .our-mission-vission .omv-content-left {
	padding-right: 50px;
	border-right: 4px solid var(--primary-color);
}

.about-us .our-mission-vission .omv-content-right{
	padding-left: 50px;
	border-right: 0;
}

.about-us .our-mission-vission h3 {
	font-size: 24px;
	font-weight: 600;
	/* color: #000; */
	color: var(--primary-color);
	margin-bottom: 5px;
}

/* end our mission and our vission section  */

/* start core values  */

.about-us .core-values {
	padding: 100px 0px;
}

.about-us .core-values .cv-cards {
	width: 100%;
	height: 100%;
	background-color: #fff;
	padding: 20px;
	text-align: center;
	border-radius: 10px;
	border: 1px solid #ccc;
	position: relative;
	transition: all .4s linear;
}

.about-us .core-values .cv-cards::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	position: absolute;
	left: -5px;
	top: 0;
	z-index: -1;
	border-radius: 10px;
}


.about-us .core-values .cv-cards .circle {
	width: 60px;
	height: 60px;
	display: inline-block;
	background-color: var(--primary-color);
	border-radius: 50%;
	margin-inline: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	color: #fff;
	margin-bottom: 20px;
	transition: all .4s linear;
}

.about-us .core-values .cv-cards h4 {
	font-size: 24px;
	color: #000;
	transition: all .4s linear;
}

.about-us .core-values .cv-cards:hover {
	background-color: var(--primary-color);
	color: #fff;
}

.about-us .core-values .cv-cards:hover::before {
	left: 0;
}

.about-us .core-values .cv-cards:hover h4 {
	color: #fff;
}

.about-us .core-values .cv-cards:hover .circle {
	background-color: #fff;
	color: var(--primary-color);
}

/* end core values  */

/* start testimonial section  */

.about-us .testimonial {
	background-image: url('/img/rice.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	padding: 150px 0px;
	position: relative;
}

.about-us .testimonial::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	position: absolute;
	top: 0;
	left: 0;
}

.about-us .testimonial-card {
	width: 50%;
	background-color: #fff;
	position: relative;
	padding: 30px;
	padding-top: 80px;
	border-radius: 5px;
}

.about-us  .quotes::before {
    content: "\f10d";
    font-family: FontAwesome;
    font-size: 52px;
	color: var(--primary-color);
	position: absolute;
	top: 0;
	left: 30px;
}

/* end testimonial section  */

/* start our team section  */

.about-us .ourteam {
	padding: 100px 0px;
	background-color: #f3f1ea;
}

.about-us .ourteam .member-card {
	/* border-radius: 10px; */
	/* background-color: var(--primary-color); */
	overflow: hidden;
}

.about-us .ourteam .member-card img {
	width: 100%;
	border-radius: 10px;
}

.about-us .ourteam .member-card .member-name-card {
	width: 100%;
	text-align: center;
	padding: 10px 0px;
}

.about-us .ourteam .member-card .member-name-card .member-name {
	font-weight: 700;
	font-size: 18px;
	color: var(--primary-color);
	font-family: var(--title-font);
	margin-bottom: 0px;
}

.about-us .ourteam .member-card .member-name-card .member-role {
	margin-bottom: 0;
	font-size: 14px;
} 


/* start operational excellence section */

.about-us .operational-excellence {
	padding: 100px 0px;
}

.about-us .oe-cards {
	height: 100%;
	color: #fff;
	background-color: var(--primary-color);
	padding: 20px;
	padding-left: 90px;
	box-shadow: 4px 4px 16px #ccc;
	position: relative;
	border-radius: 5px;
	transition: all .4s linear;
}

.about-us .oe-cards:hover {
	box-shadow: 4px 4px 20px #888;
	transform: translateY(-4px);
}

.about-us .oe-cards::before {
	font-family: FontAwesome;
	font-size: 32px;
	width: 50px;
	height: 50px;
	text-align: center;
	position: absolute;
	top: 20px;
	left: 20px;
}

.about-us .oe-cards h4 {
	font-size: 24px;
}

.about-us .icn-sourcing::before {
	content: "\f2b5";
}

.about-us .icn-testing::before {
	content: "\f0c3";
}

.about-us .icn-storage::before {
	content: "\f1b3";
}

.about-us .icn-logistics::before {
	content: "\f0d1";
}



/* end operational excellence section  */

/* end aboutus page  */
/* ============================================================ */
/* start product page  */

.about-our-rice {
	padding: 50px 0px;
}

.about-our-rice .left-side {
	padding-right: 40px;
	height: 100%;
}

.about-our-rice .left-side p {
	font-size: 42px;
	font-weight: 500;
	font-family: var(--title-font);
	color: var(--primary-color);
	letter-spacing: 2px;
	margin: 0;
}

.about-our-rice .right-side {
	height: 100%;
	border-radius: 10px;
	background-color: #e3c952;
	padding: 40px;
}

.about-our-rice .right-side p {
	font-size: 16px;
	line-height: 2;
	margin-bottom: 0;
}


/* start product data  */

.products .product-content {
	padding: 40px 0px;
}

.products .product-img-wrapper {
	height: 100%;
	padding-right: 40px;
	overflow: hidden;
}

.products .product-img-wrapper img {
	height: 100%;
	border-radius: 10px;
	object-fit: cover;
}

.products .product-content .product-info {
	list-style: none;
	margin: 0;
	padding: 0;
}

.products .product-content .product-info li {
	margin-bottom: 30px;
}

.products .product-content .product-info li h4 {
	font-size: 18px;
	font-weight: 600;
	/* color: #444 !important; */
	font-family: var(--title-font);
}

.products .product-content .product-info li h4 span {
	font-weight: 400;
	font-size: 16px;
	/* color: #000; */
}


.products .product-content .product-info li p {
	margin-bottom: 6px;
}

.products .product-content .product-info .info-card {
	width: 100%;
	height: 100%;
	background-color: #f3f1ea;
	border-radius: 5px;
	padding: 20px;
}

.products .product-content .product-info .info-card h4 {
	padding-bottom: 10px;
	font-weight: 600;
	font-family: var(--title-font);
	border-bottom: 2px solid #999;
}

.products .product-content .product-info .info-card .hightlight {
	font-weight: 600;
	font-family: var(--title-font);
	margin-bottom: 0px;
}

/* end product data section  */

/* start product specification section  */

.products  .product-specification {
	padding: 100px 0px;
}

.products .product-specification .specification-card {
	width: 100%;
	height: 100%;
	background-color: #f3f1ea;
	border: 1px solid #ccc;
	padding: 30px;
	border-radius: 10px;
}

.products .product-specification .specification-card h3 {
	font-size: 18px;
	font-weight: 600;
	font-family: var(--title-font);
	text-align: center;
	margin-bottom: 20px;
}

.products .product-specification .specification-card .specification-infos {
	margin: 0;
}

.products .product-specification .specification-card .specification-infos li {
	padding: 5px 0px;
	border-bottom: 1px solid #999;
}

.products .product-specification .specification-card .specification-infos li:last-child {
	border-bottom: 0;
	padding: 0;
}

.products .product-specification .specification-card .specification-infos li.info-title {
	padding: 15px 0px 10px !important;
	border-bottom: 0 !important;
}

.products .product-specification .specification-card .specification-infos li h5 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0;
	font-family: var(--title-font);
}

.products .product-specification .specification-card .specification-infos li p {
	margin: 0;
	font-size: 14px;
}

.products .product-specification .specification-card .specification-infos li p.left {
	width: 50%;
}

.products .table-striped>tbody>tr:nth-of-type(odd) {
    --bs-table-accent-bg: #f3f1ea;
    color: var(--bs-table-striped-color);
}

/* end product specification section  */

/* end product page  */

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

/* start certificate page  */

.certificates .sec-certificates {
	padding-block: 80px;
}

.certificates .sec-certificates .logo-wrapper {
	width: 100%;
}

.certificates .sec-certificates .left {
	padding-left: 50px;
}

.certificates .sec-certificates .right {
	padding-right: 50px;
}


.certificates .sec-certificates .title {
	margin-bottom: 0px;
}

.certificates .sec-certificates .long-title {
	font-size: 18px;
	font-family: var(--title-font);
	margin-bottom: 20px;
} 

.certificates .sec-certificates .long-title.haccp {
	color: #2bbbe2;
}

.certificates .sec-certificates .long-title.gacc {
	color: #12076c; 
}

.certificates .sec-certificates .long-title.sedex {
	color: #ed3365; 
}

.certificates .sec-certificates .long-title.myro {
	color: #38b54a; 
}





/* end content section  */

/* end certificate page  */

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

/* start contact us page  */

.contact-us-page .contact-section {
	padding-block: 100px;
}

.contact-us-page .form-bg .form-control {
    background: #eee;
    border-color: #eee;
    padding: 10px 20px;
    border-radius: 20px;
}

.contact-us-page a {
	color: #0089cf;
	text-decoration: none;
}


.contact-us-page .form-bg .form-control:focus {
    box-shadow: 0 0 0 .25rem #c4a17c;
}


.contact-us-page  .btn-primary, .btn-primary:hover {
	font-family: var(--title-font);
    background: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
} 

a:hover {
    color: var(--primary-color);
}

.contact-us-page .contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0089cf;
    color: #fff;
    border-radius: 10px;
}

.contact-us-page  .address .info {
    width: 85%;
}
.contact-us-page  .address {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}
.contact-us-page  .social-links {
    gap: 30px;
    display: flex;
}

.contact-us-page .social-links a {
    font-size: 30px;
}

.contact-us-page .slogan-section .semi-title {
	font-weight: 700;
	font-size: 18px;
	color: var(--primary-color);
	font-family: var(--title-font);
}

.contact-us-page .slogan-section .slogan-box {
	width: auto;
	display: inline-block;
	padding: 20px 50px;
	margin-inline: auto;
	position: relative;
}

.contact-us-page .slogan-section .slogan-box::before {
	font-family: FontAwesome;
  	content: "\f10d";
	font-size: 20px;
	color: var(--primary-color);
	position: absolute;
	top: 0;
	left: 0;
}

.contact-us-page .slogan-section .slogan-box::after {
	font-family: FontAwesome;
  	content: "\f10e";
	font-size: 20px;
	color: var(--primary-color);
	position: absolute;
	bottom: 0;
	right: 0;
}

.contact-us-page .slogan-section {
	width: 100%;
	background-color: #f3f1ea;
	padding: 40px 0px;
}

/* end contact us page  */

/* start sustainability page  */

.sec-sustainabilities {
	padding-block: 100px;
}

.sec-sustainabilities .content-box {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sec-sustainabilities .content-box .number-circle {
	width: 60px;
	height: 60px;
	background-color: var(--primary-color);
	color: #fff;
	font-weight: 700;
	font-size: 24px;
	font-family: var(--title-font);
	border-radius: 50%;
	margin-right: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}

.sec-sustainabilities .content-box p {
	text-align: justify;
}

.sec-sustainabilities .icon-side {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sec-sustainabilities .icon-side .icon-box {
	width: 200px;
	height: 200px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 100px;
	color: #fff;
}

.sec-sustainabilities .icon-side .icon-box svg {
	position: relative;
	z-index: 3;
}

.sec-sustainabilities .icon-side .icon-box::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #0089cf;
	position: absolute;
	top: 0;
	left: 0;
	transform: rotate(45deg);
	z-index: 2;
	border-radius: 10px;
}

.sec-sustainabilities .icon-side .icon-box::after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #ffcc31;
	position: absolute;
	top: 0px;
	left: 30px;
	transform: rotate(45deg);
	z-index: 1;
	border-radius: 10px;
	transition: left .4s linear;
}

.sec-sustainabilities .icon-side .icon-box:hover::after {
	left: 20px;
}

.sec-sustainabilities .icon-side .icon-box .icon-svg {
	width: 100px;
	height: 100px;
}

/* end sustainability page  */

/*Media Query*/


@media (max-width: 1200px){

	#header .home-menu {
		max-width: 90%;
		min-width: 600px;
		margin-left: auto;
	}

	#header .home-menu .nav-item .nav-link {
		font-size: 16px;
	}

	#about .about-left {
		display: none;
	}

	#card-wrapper h3 span{
		font-size: 20px;
		font-weight: 600;
	}

}

@media (max-width: 1400px) and (min-width:1200px) {
	#about .about-left {
		max-width: 560px;
		position: absolute;
		left: 10px;
		top: -80px;
	}

}


@media (min-width: 1600px) {
	#about .about-left {
		max-width: 600px;
		position: absolute;
		left: 10%;
		top: -80px;
		/* transform: translateY(50%); */
		/* transform: scale(1.1); */
	}
}


/* start lg size  */
@media screen and (max-width: 992px) {

	#header .home-menu {
		max-width: auto;
		width: auto;
		min-width: auto;
		margin-left: auto;
	}

	
	#our_project {
		padding: 40px 0px;
	}

	.about-us .our-roots .or-right-content {
		width: 100%;
		padding-block: 0;
		padding: 50px 0px 0px;
	}


	.about-us .our-roots .or-left-side {
		width: 100%;
		position: relative;
		top: 0;
		left: 0;
		padding: 50px 0px;
	}

	.about-us .our-roots .or-left-side img {
		min-height: 400px;
	}

	.about-us .our-roots .or-left-side .or-left-content {
		max-width: 80%;
		min-width: 400px;
		background-color: #fff;
		padding: 20px 30px;
		position: absolute;
		bottom: 70px;
		right: 20px;
	}


	.about-us .our-mission-vission .omv-content-left,
	.about-us .our-mission-vission .omv-content-right {
		padding:  0px;
	}


	/* start mission and vission  */
	.about-us .our-mission-vission .omv-content-left {
		padding-right: 0px;
		padding-bottom: 30px;
		border-bottom: 4px solid var(--primary-color);
		border-right: none;
	}

	.about-us .our-mission-vission .omv-content-right{
		padding-left: 0px;
		border-right: 0;
		padding-top: 30px;
	}

	/* start testimonial  */

	.about-us .testimonial-card {
		width: 80%;
	}

	.about-us .ourteam .member-card .member-name-card {
		padding: 15px 10px 10px;
	}

	.about-us .ourteam .member-card .member-name-card .member-name {
		font-size: 18px;
	}

	.about-us .ourteam .member-card .member-name-card .member-role {
		font-size: 14px;
		margin-bottom: 0;
	} 

	.about-us .member-card .member-hover-card {
		padding: 10px;
	}

	.about-us .member-card .member-hover-card .member-name {
		font-size: 18px;
		margin-bottom: 10px;
		font-weight: 700;
		font-family: var(--title-font);
	}

	.about-us .member-card .member-hover-card p {
		font-size: 14px;
	}


	/* end about us page  */


	/* start product page  */

	.about-our-rice .left-side p {
		font-size: 36px;
		font-weight: 500;
		font-family: var(--title-font);
		color: var(--primary-color);
		letter-spacing: 2px;
		margin: 0;
	}

	.about-our-rice .left-side {
		padding-right: 0px;
		height: 100%;
	}

	.about-our-rice .left-side p {
		font-size: 38px;
		font-weight: 500;
		font-family: var(--title-font);
		color: var(--primary-color);
		letter-spacing: 2px;
	}

	.about-our-rice .right-side {
		padding: 20px;
	}

	.products .product-img-wrapper {
		padding-right: 0px;
	}

	.products .product-img-wrapper img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.products .product-content {
		padding: 0px 0px 40px;
	}

	.product-specification {
		padding: 50px 0px;
	}


	/* start certificate page  */

	.sec-content .title {
		margin-bottom: 40px;
		font-size: 36px;
	}

	/* start sustainability page  */

	.sec-sustainabilities .content-box {
		height: auto;
		margin-bottom: 60px;
	}



}


/* start md size */

@media (max-width: 767px){

	.mb50 {
		margin-bottom: 30px;
	}

	.banner {
		width: 100%;
		height: 225px;
		background-image: url("/img/slider-1.jpg");
		background-position: top;
	}

	#slider .home-slider-img {
		height: 225px;
		object-fit: cover;
	}

	.title {
		color: var(--primary-color);
		font-size: 28px;
		font-weight: 700;
		margin-bottom: 12px;
	}

	.sub-title {
		font-size: 18px;
		font-weight: 500;
	}

	
	.sec-content {
		padding-block: 50px;
	}


	#header .navbar-toggle{
		margin-top: 30px;
	}

	#card-wrapper .position-relative {
		width: 100%;
		margin: 0 auto;
	}

	#card-wrapper {
		padding: 40px 0px;
	}

	#our_project .title h2 {
		font-weight: 500;
		margin-bottom: 30px;
	}


	footer .left p,
	footer .middle .list-unstyled  li{
		margin-bottom: 10px;
	}

	footer .contact{
		display: flex;
		justify-content: start;
	}

	
	footer .bottom p {
		font-size: 12px;
	}

	/* start aboutus page  */

	.about-us .our-history {
		padding-block: 50px;
	}

	.about-us .our-history .para {
		width: 100%;
		text-align: justify;
		margin-inline: auto;
	}

	.about-us .our-history .para p {
		text-indent: 30px;
		line-height: 1.5;
	}


	.about-us .our-roots .or-left-side .or-left-content {
		max-width: 80%;
		min-width: 200px;
		bottom: 70px;
		right: 20px;
	}

	.about-us .our-passion {
		padding: 50px 0px;
	}

	.about-us .core-values {
		padding: 50px 0px;
	}

	.about-us .testimonial {
		padding: 50px 0px;
	}

	.about-us .operational-excellence {
		padding: 50px 0px;
	}

	.about-us .ourteam {
		padding: 50px 0px;
	}

	.products .product-specification {
		padding: 50px 0px;
	}

	.about-our-rice .left-side p {
		font-size: 34px;
		font-weight: 500;
		font-family: var(--title-font);
		color: var(--primary-color);
		letter-spacing: 2px;
		margin: 0;
	}

	/* start certificate section  */

	.certificates .sec-certificates .logo-wrapper {
		width: 40%;
	}

	.certificates .sec-certificates .left {
		padding-left: 0px;
	}

	.certificates .sec-certificates .right {
		padding-right: 0px;
	}

	/* start sustainability page  */

	.sec-sustainabilities .icon-side .icon-box::after {
		left: 15px;
	}

	.sec-sustainabilities .icon-side .icon-box:hover::after {
		left: 10px;
	}

	.sec-sustainabilities {
		padding-block: 50px 110px !important;
	}

	.sec-sustainabilities .icon-side .icon-box {
		width: 120px;
		height: 120px;
	}

	.sec-sustainabilities .icon-side .icon-box .icon-svg {
		width: 60px;
		height: 60px;
	}



}

@media (max-width: 576px){
	.about-us .testimonial-card {
		width: 100%;
	}

	.about-us .our-roots .or-left-side img {
		object-fit: cover;
		display: none;
	}

	.about-us .our-roots .or-left-side .or-left-content {
		max-width: none;
		width: 100%;
		min-width: none;
		position: relative;
		bottom: 0px;
		right: 0px;
	}

	.certificates .sec-certificates .logo-wrapper {
		width: 60%;
	}


}


