/*====================== Google fonts ========================*/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700&display=swap');


/*====================== Basic css ========================*/
html{
	font-size: 62.5%;
}

:root {
	scroll-behavior: unset;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

ol,
ul {
	list-style: none;
}

a,
a:hover {
	text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
	outline: none;
}

/* body */
body {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.3;
	font-family: 'Open Sans';
	background-color: #fff;
	color: #333b55;
}


/*====================== Header area start ========================*/
/*sticky*/
header.sticky {
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: 0 .8rem 2rem 0 rgba(0, 0, 0, .1);
}
.sticky-top{
	background-color: #081621;
	padding: 10px 0;
}

/* menu */
#menu {
	text-align: left;
}

#menu li {
    display: inline-block;
    color: #fff;
    margin-left: 2rem;
    text-align: left;
}

#menu li:last-child{
	margin-right: 0;
}

#menu li a {
	color: #fff;
	transition: 0.3s;
}

#menu>li>a.active,
#menu>li>a:hover {
	color: #fff;
}
.oncanvas_logo p{
		font-size: 22px;
		font-weight: bold;
		color: #fff;

}
.ofcanvas_logo p{
	font-size: 18px;
	font-weight: bold;
	color: #fff;

}

/*Hamburger menu*/
.hamburger-menu {
	cursor: pointer;
	position: relative;
	display: none;
	z-index: 999;
}

.hamburger-menu span {
	background: #fff;
	width: 3rem;
	height: .3rem;
	display: block;
	margin: .5rem 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.hamburger-menu:hover .line-top {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}

.hamburger-menu:hover .line-bottom {
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
}

.hamburger-menu .line-top.current {
	-webkit-transform: translateY(200%) rotate(135deg);
	-ms-transform: translateY(200%) rotate(135deg);
	transform: translateY(200%) 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: 70%;
    height: 100%;
    background: #fff;
    z-index: -1;
    top: 0;
    margin-top: 60px;
    display: none;
    left: -100%;
    transition: .3s;
}

.ofcavas-menu.current {
	left: 0;
}

.ofcavas-menu ul {
	margin-top: 10rem;
}

.ofcavas-menu li{
	padding: .8rem 0;
}

.ofcavas-menu a {
	color: #5f490c;
}

.offcanvas{
	width: 99%!important;
}
.offcanvas-header{
	background-color: #01132D;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 14px;
}
.offcanvas_upper{
	color: #000;
	font-size: 12px;
}

.offcanvas-header button{
	color: #fff!important;
	z-index: 1024;
}
.promo_code_main{
	background-color: #EBECF8;
	padding: 20px 0;
	margin-top: 80%;
}
.promo_code_main input{
	border: none;
	width: 100%;
	padding: 10px 0;
	background-color: #fff;
	border-radius: 4px;
}
.promo_btn {
    background-color: #3749BB;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
}
.total_p{
	color: #444;
}
/*========== Page loader CSS ==========*/

#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loader3 {
	width: 5rem;
	height: 5rem;
	display: inline-block;
	padding: 0;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 5rem;
	height: 5rem;
	border-radius: 100%;
	background: #f33737;
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
	0% {
		transform: scale(0, 0);
		opacity: 0.8;
	}

	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

@-webkit-keyframes loader3 {
	0% {
		-webkit-transform: scale(0, 0);
		opacity: 0.8;
	}

	100% {
		-webkit-transform: scale(1, 1);
		opacity: 0;
	}
}


/*========== return-to-top ==========*/

.back-to-top {
	width: 3rem;
	height: 3rem;
	line-height: 3rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3rem;
	right: 2rem;
	border: 0.5px solid #fff;
	color: #fff;
	border-radius: 4px;
	background: #081621;
}



/*========== header part start ==========*/

.carousel-control-next{
	display: none;
}
.carousel-control-prev{
	display: none;
}

/*========== header input part start ==========*/
.header_input{
	display: flex;
	justify-content: space-between;
	width: 100%;
	background-color: #fff;
	border-radius: 4px;
	overflow: hidden;
}
.header_input input{
	width: 80%;
	padding: 10px 2%;
	border: none;
}
.header_input i{
	padding: 14px 2%;
}

/*========== header input part end ==========*/
.header_menu_icon{
	display: flex;
	justify-content: center;

}
.header_menu_icon i {
    color: #EF4A23;
    font-size: 23px;
    padding: 10px;
}
.header_menu_main {
    font-size: 14px;
    padding: 6px 0px 6px 10px;
}
.header_menu_main span{
    font-size: 10px;
    color: #808181;
}
.pc_builder_btn{
	padding: 10px 20px;
	border-radius: 4px;
	border: none;
	font-weight: 700;
	color: #fff;
	background-image: linear-gradient(to right, #3749BB 0%, #26a0da  51%, #3749BB  100%);
	transition: 0.5s;
	background-size: 200% auto;
}
.pc_builder_btn:hover {
	background-position: right center; /* change the direction of the change here */
	text-decoration: none;
  }
.ofcanvas_search_menu ul {
	display: inline-flex;
} 
.ofcanvas_search_menu ul li a {
    font-size: 18px;
    padding: 8px;
}
.ofcanvas_logo, .ofcanvas_search_menu{
	display: none;
}
.dropdown-menu-custom{
    display: none;
    background-color: #fff;
    border-top: 3px solid #EF4A23!important;
    position: absolute;
	top: 100%;
	padding: 10% 0;
    box-shadow: 0px 5px 20px -15px #000;
	min-width: 200px;
}
.dropdown-menu-custom li {
    padding: 0px 10px!important;
}
.dropdown-menu-custom li:hover{
	background-color: #EF4A23;
}
.dropdown-menu-custom li a:hover{
	color: #fff!important;
}
.dropdown-submenu-custom {
    display: none;
    background-color: #fff;
    padding: 5% 0;
    position: absolute;
    left: 100%;
    box-shadow: 0px 5px 20px -10px #000;
    top: -35%;
	min-width: 200px;
}
.dropdown-submenu-custom li {
    padding: 0px 10px!important;
}
.dropdown-menu-custom .nav-link{
	display: flex;
	justify-content: space-between;
}
.dropdown-item{
	padding: 5px 0 5px 5px;
}
.dropdown-menu-custom .nav-item .nav-link i{
	color: #EF4A23;
	opacity: 0.5;
}

.dropdown-menu-custom .nav-item:hover .dropdown-submenu-custom{
	display: block;
}
.dropdown:hover .dropdown-menu-custom{
	display: block;
}
.custom-dropdown-right{
	position: absolute;
	right: 0;
}
.navbar-nav {
    font-size: 14px;
    font-weight: bold;
}
.navbar-nav .nav-item{
	padding: 10px 0;
}
.navbar-nav .nav-item .nav-link{
	color: #000;
}
.navbar-nav .nav-item .nav-link:hover{
	color: #EF4A23;
}

/*========== header part end ==========*/
.hero_area{
	margin-top: 50px;
}

/*========== second nav part start ==========*/
.second_menu {
    background-color: #fff!important;
    box-shadow: 0px 0px 10px -5px #000;
	position: fixed;
	z-index: 999;

}
.second_nav_link {
    font-size: 14px;
    color: #000!important;
    font-weight: 700;
	padding: 12px 0;
}
.second_menu ul{
	margin: 0 auto;
}
/*========== second nav part end ==========*/



/*========== Accordion nav part start ==========*/
.accordion {
    background-color: #fff;
    color: #000;
    cursor: pointer;
    padding: 0 0 60px 0;
    width: 100%;
    border: none;
    border-bottom: 0.5px solid #eee;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    display: block;
}
  .accordion-body ul{
	margin-top: 0;
  }
  .accordion i{
	color: #999;
  }
  .accordion:hover,:focus{
	color: #EF4A23;
  }
  
.panel {
	padding: 0 18px;
	display: none;
	background-color: white;
	overflow: hidden;
	text-align: left;
	color: #000;
  }
.ofcavas-menu{
	overflow-y: scroll;
}

/*========== Accordion nav part end ==========*/

/*font*/

/*

font-family: 'Geologica', sans-serif;
font-family: 'Cooper Light', sans-serif;



*/
/*font*/


/* <!--========== star tech home page start ===========-->*/

/*==========slider part  part start ==========*/

.ads_slider{
	box-shadow: 5px 5px 1px #EAECF0;
}
/*========== slider part  part end ==========*/
/*========== compare products  part start ==========*/

.compare_products {
    background-color: #FFE8A1;
    padding: 30px 0;
}
.compare_title{
	font-size: 14px;
	color: #000;
	font-weight: 700;
}
.choose_to_compare{
	font-size: 12px;
	color: #7F7450;
	margin-top: 10px;
}
.product_input{
	background-color: #fff;
	width: 80%;
	margin: 15px auto;
	border-radius: 4px;
	box-shadow: 1px 1px 1px #EAECF0;
}
.product_input input{
	width: 80%;
	padding: 10px 0;
	border: none;
}
.product_input i{
	color: #868686;
}
         
.compare_products button {
	margin: 0 auto;
	width: 80%;
	padding: 10px 30px;
	text-align: center;
	transition: 0.5s;
	background-color: transparent;
	background-size: 200% auto;
	color: #3749BB;
	font-weight: 700;            
	border-radius: 4px;
	border: 2px solid #3749BB;
	display: block;
	transition: all linear 0.3s;
  }

  .compare_products button:hover {
	background-image: linear-gradient(to right, #3749BB 0%, #3a6073  51%, #3749BB  100%);
	background-position: top center; /* change the direction of the change here */
	color: #fff;
	text-decoration: none;
	transition: all linear 0.3s;
  }
 .mini_ads{
	margin-top: 25px;
	box-shadow: 5px 5px 1px #EAECF0;
 }

/*========== compare products  part end ==========*/



/*========== marquee part  part end ==========*/
.marquee_part{
	width: 100%;
	margin: 0 auto;
	background-color: #fff;
	/* border-radius: 30px; */
	margin: 20px 0;
	border-top: 1px solid rgba(128, 128, 128, 0.438);
	border-bottom: 1px solid rgba(128, 128, 128, 0.438);

}
.marquee_part marquee{
	font-size: 14px;
	color: #000;
	font-weight: bold;
	padding: 5px 0;
}
/*========== marquee part  part end ==========*/


/*========== featured heading part  part end ==========*/
.common_heading_tite{
	font-size: 18px;
	font-weight: 700;
	color: #000;
	margin-top: 50px;
}
.common_heading_txt{
	font-size: 14px;
	margin-top: 10px;
	font-weight: 600;
}
/*========== featured heading part  part end ==========*/


/*========== featured  part  part start ==========*/
.featured_caregory_item {
    padding: 15% 0 10% 0px;
    font-size: 16px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0px 0px 24px -18px gray;
	font-weight: 500;
}
.featured_caregory_item p {
    padding: 15px 0!important;
}
.featured_caregory_item:hover{
	color: #EF4A23;
	cursor: pointer;
	box-shadow: 0px 0px 24px -14px gray;
}
/*========== featured  part  part end ==========*/


/*========== featured  product  part end ==========*/
.featured_product {
    background-color: #fff;
    position: relative;
    border-radius: 4px;
    padding: 10px 0;
	transition: all linear 0.3s;
	margin-top: 20px;
	width: 250px;
}
.featured_product:hover{
	box-shadow: 2px 4px 5px -4px #666;
	transition: all linear 0.3s;
}
.savings{
	position: absolute;
	left: 0;
	top: 20px;
	color: #fff;
	font-size: 12px;
	padding: 5px 10px;
	border-radius: 0 30px 30px 0;
	background-color: #6E2594;

}
.product_details{
	padding: 20px;
}
.product_name{
	min-height: 60px;
}
.product_name p{
	text-align: left;
	font-size: 14px;
	font-weight: 600;
}
.product_name a{
	color: #000;
}
.prices{
	font-size: 16px;
	color: #EF4A23;
	margin-top: 20px;
	text-align: left;
	font-weight: 700;
}
.prices span{
	font-size: 12px;
	margin-left: 10px;
	color: #666;
	text-decoration: line-through;
}
.featured_product:hover .featured_overlay{
	height: 58%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
	opacity: 0.1;
	visibility: none;
}
/*========== featured  product  part end ==========*/


/*==========   paragraph  part start ==========*/
.p_title{
	font-size: 18px;
	font-weight: 700;
}
.p_txt{
	font-size: 14px;
	margin: 20px 0;
	line-height: 3rem;
	font-weight: 500;
	color: #000;
}
.p_txt a{
	color: #EF4A23;
}
.p_txt a:hover{
	text-decoration: underline;
}

/*==========   paragraph  part end ==========*/

/* <!--========== star tech home page start ===========-->*/



/* <!--========== product page start ===========-->*/


.productpage{
	background-image: url(../img/1.jpg);
	/*background-position: center;*/
	background-size: cover;
	background-repeat: no-repeat;
	
}
.product_title {
    font-family: 'Geologica', sans-serif;
    font-size: 130px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 180px;
    padding-left: 15%;
}
.p_com_name {
    font-family: 'Geologica', sans-serif;
    font-size: 26px;
    color: #000;
    text-transform: uppercase;
    margin-top: 894px;
    padding-left: 0%;
}
.p_com_txt {
    font-size: 26px;
    color: #000;
    padding-left: 0%;
}
.p_com_loc{
	font-family: 'Geologica', sans-serif;
    font-size: 26px;
    color: #000;
    text-transform: uppercase;
    margin-top: 90px;
    padding-left: 2%;
}
.p_com_loc_txt{
	font-size: 26px;
    color: #000;
    padding-left: 2%;
}
.p_com_mail{
	font-family: 'Geologica', sans-serif;
    font-size: 26px;
    color: #000;
    text-transform: uppercase;
    margin-top: 90px;
    padding-left: 5%;
}
.p_com_mail_txt{
	font-size: 26px;
    color: #000;
    padding-left: 5%;
    padding-bottom: 150px;
}

/* <!--========== product page end ===========-->*/



/* <!--========== about us page start ===========-->*/


.aboutpage{
	background-image: url(../img/2.jpg);
	/*background-position: center;*/
	background-size: cover;
	background-repeat: no-repeat;
}
.about_title{
	font-family: 'Cooper Light', sans-serif;
	color: #000;
	font-size: 130px;
	margin-top: 150px;
}
.about_txt{
	text-align: justify;
	line-height: 1.5;
	font-size: 60px;
	color: #000;
	margin-top: 50px;
}

.presented{
	font-size: 24px;
	margin-top: 520px;
	padding-bottom: 100px;
	color: #fff;
}

/* <!--========== about us page end ===========-->*/


/* <!--========== mission  page end ===========-->*/

.missionpage{
	background-color: #EDE7DB;
}
.step i{
	padding: 10px 20px;
	font-family: 'Roundhand Regular', sans-serif;
	background-color: #444444;
}
.step{
	font-family: 'Roundhand Regular', sans-serif;
	font-size: 38px;
	padding:10px 10px;
	color: #fff;
	margin-top: 100px;
}
.mission {
    font-family: 'Beauty Switzerland Duo Sans', sans-serif;
    font-size: 100px;
    color: #444444;
    margin-top: 10px;
}
.mission_img{
	margin-top: 50px;
}
.mission_content{
	background-image: url(../img/3.1.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.mission_content_txt{
	font-size: 48px;
}
.mission_con_one{
	font-family: 'Geologica', sans-serif;
    color: #000;
    text-transform: uppercase;
    margin-top: 250px;
}
.mission_con_two{
	font-family: 'Geologica', sans-serif;
    color: #000;
    text-transform: uppercase;
    margin-top: 250px;
}
.mission_con_three{
	font-family: 'Geologica', sans-serif;
    color: #000;
    text-transform: uppercase;
    margin-top: 250px;
    padding-bottom: 200px;
}
.mission_footer{
	border-top: 2px solid #000;
}
.mission_footer p{
	margin-top: 30px;
	font-size: 24px;
}
/* <!--========== mission page end ===========-->*/



/* <!--========== vision page start ===========-->*/

.visionpage{
	background-image: url(../img/4.1.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.vision_title ul li:first-child {
    margin-top: 65px;
    font-size: 34px;
    color: #DAA710;
}

.vision_title ul li:last-child {
    font-size: 160px;
    color: #DAA710;
}

.vision_list ul li {
    color: #D1D0A0;
    font-size: 38px;
    margin-left: 24%;
    margin-top: 50px;
}

.vision_list ul li:first-child {
    margin-top: 350px;
}
.vision_list ul li:nth-child(2) {
   margin-top: 135px;
}
.vision_list ul li:nth-child(3) {
   margin-top: 125px;
}
.vision_list ul li:last-child {
    margin-top: 200px;
    text-transform: uppercase;
    padding-bottom: 400px;
}

/* <!--========== vision page end ===========-->*/





/* <!--========== products page start ===========-->*/
.productspage{
	background-image: url(../img/5.1.jpg);
	/*background-position: center;*/
	background-size: cover;
	background-repeat: no-repeat;
}
.products_title {
    font-family: 'Handlee', cursive;
    font-size: 150px;
    color: red;
    font-weight: bold;
    margin-top: 25px;
}
.p_l_one p{
	font-family: 'Geologica', sans-serif;
	padding: 120px 20px;
	font-size: 48px;
	font-weight: bolder;
	color: #000;
	background-color: #FFBF3B;
	border-radius: 30px;
	margin-top: 20px;
	margin: 10% 10%;
}

.p_l_two p {
	font-family: 'Geologica', sans-serif;
	padding: 120px 20px;
	font-size: 48px;
	font-weight: bolder;
	color: #000;
	background-color: #D48066;
	border-radius: 30px;
	margin-top: 20px;
	margin: 10% 10%;
}

.p_l_three p {
	font-family: 'Geologica', sans-serif;
	padding: 120px 20px;
	font-size: 48px;
	font-weight: bolder;
	color: #000;
	background-color: #549E6B;
	border-radius: 30px;
	margin-top: 20px;
	margin: 10% 10%;
}

.p_l_four p {
	font-family: 'Geologica', sans-serif;
	padding: 120px 20px;
	font-size: 48px;
	font-weight: bolder;
	color: #000;
	background-color: #FE4914;
	border-radius: 30px;
	margin-top: 20px;
	margin: 10% 10%;
}

.p_l_five p {
	font-family: 'Geologica', sans-serif;
	padding: 120px 20px;
	font-size: 48px;
	font-weight: bolder;
	color: #000;
	background-color: #F5D3AE;
	border-radius: 30px;
	margin-top: 20px;
	margin: 10% 10%;
}

.p_l_six p {
	font-family: 'Geologica', sans-serif;
	padding: 120px 20px;
	font-size: 48px;
	font-weight: bolder;
	color: #000;
	background-color: #737373;
	border-radius: 30px;
	margin-top: 20px;
	margin: 10% 10%;
	margin-bottom: 150px;
}

.p_list_a p a{
	color: #000;
	transition: all linear 0.3s;
}
.p_list_a p a:hover{
    background: -webkit-linear-gradient(#6495ED, #ffd966);
 	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	transform: scale(2);
	transition: all linear 0.3s;
}

/* <!--========== products page end ===========-->*/



/* <!--========== agriculture one page start ===========-->*/

.agripage{
	background-image: url(../img/6.1.jpg);
	/*background-position: center;*/
	background-size: cover;
	background-repeat: no-repeat;
}
.agri_title {
    margin-top: 70px;
    font-size: 100px;
    color: #2A572E;
}
.agri_wheat {
    font-size: 70px;
    color: #2A572E;
    margin-top: 190px;
}
.agri_img_two{
	position: relative;
	z-index: 2;
}
.agri_img_three {
    margin-top: -40px;
    position: relative;
    z-index: 1;
}
/* <!--========== agriculture one page end ===========-->*/









/* <!--========== agriculture two page start ===========-->*/
.agri_two_txt {
    font-family: 'Geologica', sans-serif;
    font-size: 38px;
    color: #000;
    font-weight: 500;
    margin-top: 50px;
    line-height: 1.5;
    margin-bottom: 180px;
}

.agri_two_wheat{
	text-align: left;
	font-size: 60px;
    color: #2A572E;
}
.agri_two_list ul li{
	font-family: 'Geologica', sans-serif;
    font-size: 38px;
    color: #000;
}
.agri_two_last {
    text-align: center;
    font-size: 55px;
    color: #2A572E;
    margin-top: 210px;
}
.agri_two_last_list ul{
	margin-top: 20px;
}
.agri_two_last_list ul li{
	font-family: 'Geologica', sans-serif;
    font-size: 38px;
    color: #000;

}
/* <!--========== agriculture two page end ===========-->*/



/* <!--========== agriculture three page end ===========-->*/
/* <!--========== agriculture three page end ===========-->*/



/* <!--========== agriculture four page end ===========-->*/
.agri_four_txt{
	font-family: 'Geologica', sans-serif;
    font-size: 38px;
    color: #000;
    font-weight: 500;
    margin-top: 160px;
    line-height: 1.5;
    margin-bottom: 180px;
	padding: 0 2%;
}
.agri_four_wheat{
	font-size: 50px;
    color: #2A572E;
	margin-top: 50px;
}
.agri_four_list ul{
	margin-top: 100px;
}
.agri_four_list ul li{
	font-family: 'Geologica', sans-serif;
    font-size: 28px;
    color: #000;
	text-align: center;
}
.agri_four_last {
    text-align: center;
    font-size: 55px;
    color: #2A572E;
    margin-top: 20px;
}
.agri_four_last_list ul{
	margin-top: 20px;
	text-align: center;
	padding-bottom: 100px;
}
.agri_four_last_list ul li{
	font-family: 'Geologica', sans-serif;
    font-size: 38px;
    color: #000;
}
/* <!--========== agriculture four page end ===========-->*/
/* <!--========== agriculture four page end ===========-->*/


/* <!--========== agriculture five page start ===========-->*/

.agri_img_five {
    margin-top: 0px;
    position: relative;
    z-index: 1;
}
/* <!--========== agriculture five page end ===========-->*/




/* <!--========== agriculture six page start ===========-->*/

.agri_six_list ul{
	margin-top: 100px;
}


.agri_six_list ul li{
	font-family: 'Geologica', sans-serif;
    font-size: 42px;
    color: #000;
	text-align: center;
}
.agri_six_last {
    text-align: left;
    font-size: 55px;
    color: #2A572E;
    margin-top: 20px;
}
.agri_six_last_list ul {
    margin-top: 20px;
    text-align: center;
    padding-bottom: 30px;
    padding-right: 40%;
}
.agri_six_last_list ul li{
	font-family: 'Geologica', sans-serif;
    font-size: 38px;
    color: #000;


}
.agri_six_txt {
    font-family: 'Geologica', sans-serif;
    font-size: 38px;
    color: #000;
    font-weight: 500;
    margin-top: 160px;
    line-height: 1.5;
    margin-bottom: 100px;
    padding: 0 2%;
}
.agri_img_six{
	transform: scaleY(1.2);
	margin-top: 60px;
}
/* <!--========== agriculture six page end ===========-->*/



/* <!--========== agriculture seven page start ===========-->*/


.agrisevenpage{
	background-image: url(../img/12.1.jpg);
	/*background-position: center;*/
	background-size: cover;
	background-repeat: no-repeat;
}

/* <!--========== agriculture seven page end ===========-->*/


/* <!--========== agriculture eight page start ===========-->*/


.agri_img_eight{
	position: relative;
	z-index: 2;
	transform: scaleY(1.5);
}

.agri_eight_list ul {
    margin-top: 50px;
    margin-bottom: 50px;
}
.agri_eight_list ul li{
	font-family: 'Geologica', sans-serif;
	font-size: 28px;
	color: #000;
	text-align: center;
	}
.agri_eight_last_list ul {
		margin-top: 20px;
		text-align: center;
		padding-bottom: 0px;
	}
.agri_eight_last_list ul li{
		font-family: 'Geologica', sans-serif;
		font-size: 38px;
		color: #000;
	}
/* <!--========== agriculture eight page end ===========-->*/



/* <!--========== agriculture eight page end ===========-->*/

.autopage{
	background-image: url(../img/autobg.jpg);
	/*background-position: center;*/
	background-size: cover;
	background-repeat: no-repeat;	
}
/* <!--========== agriculture eight page end ===========-->*/



/* <!--========== automobile one  page start ===========-->*/
.autotop{
	width: 40%;
	margin-left: 50%;
}
.auto_one_img_one{
	margin-left: 4.5%;
	margin-top: 200px;
	transform: scaleY(2);
}
.auto_one_img_two {
    transform: scaleY(1.2);
    margin-top: 140px;
}
.auto_title {
	color: #565654;
    margin-top: 300px;
    font-size: 66px;
    margin-left: 10%;
}
.auto_title span{
	color: #565654;
	font-size: 48px;
}
.auto_one_img_last{
	margin-left: 4.5%;
	margin-top: 120px;
	padding-bottom: 250px;
}
/* <!--========== automobile one  page end ===========-->*/



/* <!--========== automobile two  page end ===========-->*/

.auto_two_txt_ex {
	color: #565654;
    font-size: 100px;
    margin-top: 20px;
    margin-left: 12%;
}
.auto_ex_list{
	margin-top: 20px;
    margin-left: 13%;
}
.auto_ex_list li{
	font-size: 38px;
	color: #565654;
	font-style: italic;
}
.auto_two_txt_second {
    margin-top: 20px;
    margin-left: 13%;
    font-size: 35px;
    color: #565654;
    font-weight: bold;
}
.auto_two_txt_im {
    color: #565654;
    font-size: 75px;
    margin-top: 120px;
    margin-left: 12%;
}
.auto_im_list{
	margin-top: 20px;
    margin-left: 13%;
}
.auto_im_list li{
	font-size: 38px;
	color: #565654;
	font-style: italic;
	margin-top: 10px;
}
/* <!--========== automobile two  page end ===========-->*/


/* <!--========== automobile three  page start ===========-->*/
.auto_three_title{
	font-size: 60px;
	color: #565654;
	margin-top: 5px;
}
.ct{
	margin-top: 200px;
}
.auto_three_left_img {
    margin-left: 18%;
    margin-top: 20px;
}
.ct_left{
	margin-left: 30%;
	
}
/* <!--========== automobile three  page end ===========-->*/




/* <!--========== Contact one  page start ===========-->*/
.cononepage{
	background-image: url(../img/con1.jpg);
	/*background-position: center;*/
	background-size: cover;
	background-repeat: no-repeat;
}
.cononetitle {
    font-size: 150px;
    margin-top: 510px;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
}
.conone_img {
    rotate: calc(-30deg);
    width: 70%;
    margin-left: 40%;
    margin-top: 110px;
}
.conone_add_title {
    font-size: 42px;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 120px;
    margin-left: 8%;
}
.conone_add_txt {
    font-family: 'Satisfy', cursive;
    font-size: 54px;
    color: #000;
    margin-top: 140px;
    margin-bottom: 400px;
}
/* <!--========== Contact one  page end ===========-->*/


/* <!--========== Contact two  page start ===========-->*/

.contwopage{
	background-image: url(../img/con2.jpg);
	/*background-position: center;*/
	background-size: cover;
	background-repeat: no-repeat;	
}
.contwotitle {
    font-size: 150px;
    margin-top: 510px;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 1200px;
}
/* <!--========== Contact two  page end ===========-->*/



/* <!--========== Contact three  page start ===========-->*/
.conthreepage{
	background-image: url(../img/conbg.jpg);
	/*background-position: center;*/
	background-size: cover;
	background-repeat: no-repeat;	
}
.con_top{
	margin-top: 510px;
	position: relative;
	z-index: 1;

}
.conthreetitle{
	font-size: 150px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
	position: relative;
	z-index: 1;
	text-shadow: 1px 1px 30px #000;
}
.con_center{
	margin-top: -245px;
	margin-bottom: 300px;
	z-index: 2;
}
/* <!--========== Contact three  page end ===========-->*/

/* <!--========== Contact four  page start ===========-->*/
.confourpage{
	background-image: url(../img/conbg.jpg);
	/*background-position: center;*/
	background-size: cover;
	background-repeat: no-repeat;	

}



/* <!--========== Contact four  page end ===========-->*/
/* <!--========== Contact five  page start ===========-->*/
.confivepage{
	background-image: url(../img/conbg.jpg);
	/*background-position: center;*/
	background-size: cover;
	background-repeat: no-repeat;	

}



/* <!--========== Contact five  page end ===========-->*/
/* <!--========== Contact six  page start ===========-->*/
.consixpage{
	background-image: url(../img/conbg.jpg);
	/*background-position: center;*/
	background-size: cover;
	background-repeat: no-repeat;	

}



/* <!--========== Contact six  page end ===========-->*/
/* <!--========== Contact seven  page start ===========-->*/
.consevenpage{
	background-image: url(../img/conbg.jpg);
	/*background-position: center;*/
	background-size: cover;
	background-repeat: no-repeat;	
	
}



/* <!--========== Contact seven  page end ===========-->*/


/* <!--========== Contact eight  page start ===========-->*/
.coneightpage{
	background-image: url(../img/conbg.jpg);
	/*background-position: center;*/
	background-size: cover;
	background-repeat: no-repeat;	
	
}



/* <!--========== Contact eight  page end ===========-->*/

/* <!--========== Contact nine  page start ===========-->*/
.conninepage{
	background-image: url(../img/conbg.jpg);
	/*background-position: center;*/
	background-size: cover;
	background-repeat: no-repeat;	
	
}



/* <!--========== Contact nine  page end ===========-->*/


/* <!--========== Contact ten  page start ===========-->*/
.contenpage{
	background-image: url(../img/conbg.jpg);
	/*background-position: center;*/
	background-size: cover;
	background-repeat: no-repeat;	
	
}



/* <!--========== Contact ten  page end ===========-->*/

/* <!--========== Contact eleven  page start ===========-->*/
.conelevenpage{
	background-image: url(../img/conbgtwo.jpg);
	/*background-position: center;*/
	background-size: cover;
	background-repeat: no-repeat;	
	
}
.coneleventitle{
	font-size: 150px;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
	position: relative;
	z-index: 1;
	text-shadow: 1px 1px 30px #000;


}
.coneleventitletxt{
	font-size: 54px;
	text-transform: uppercase;
	color: #000;
	font-weight: bold;
	margin-top: 250px;
}
.coneleventxt {
    font-size: 54px;
    font-weight: bold;
    color: #000;
    margin-top: 40px;
    margin-bottom: 640px;
}
/* <!--========== Contact eleven  page end ===========-->*/

/* <!--========== Contact twelve  page start ===========-->*/
.contwelvetitletxt {
    font-size: 34px;
    text-transform: uppercase;
    color: #000;
    font-weight: bold;
    margin-top: 250px;
    margin-bottom: 780px;
}
/* <!--========== Contact twelve  page end ===========-->*/

/* <!--========== Contact thirteen  page start ===========-->*/
.conthirteenpage{
	background-image: url(../img/conbgthree.jpg);
	/*background-position: center;*/
	background-size: cover;
	background-repeat: no-repeat;	
}
.con_thirteen_one{
	margin-top: 260px;
	rotate: calc(-30deg);
}
.con_thirteen_two{
	margin-top: 100px;
	rotate: calc(40deg);
}
.con_thirteen_three {
    margin-top: 60px;
    margin-left: 10%;
    rotate: calc(-10deg);
}
.conthirteentitle {
    font-size: 140px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    margin-top: 170px;
    margin-bottom: 300px;
}
/* <!--========== Contact thirteen  page end ===========-->*/



/* <!--========== Contact fourteen  page start ===========-->*/
.confourteenpage{
	background-image: url(../img/con4.jpg);
	/*background-position: center;*/
	background-size: cover;
	background-repeat: no-repeat;	
}
.confourteentitle{
	font-size: 150px;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
	position: relative;
	z-index: 1;
	text-shadow: 1px 1px 30px #000;
}
.confourteenone {
    rotate: calc(-30deg);
    margin-top: 140px;
    margin-left: 25%;
    width: 90%;
}
.confourteentxt {
    margin-top: 100px;
    margin-left: 20%;
    font-size: 42px;
    font-weight: bold;
    color: #000;
}
.confourteentxt_last{
	font-family: 'Satisfy', cursive;
    font-size: 54px;
    color: #000;
    margin-top: 140px;
    margin-bottom: 400px;
}
/* <!--========== Contact fourteen  page end ===========-->*/


/* <!--========== Contact fifteen  page end ===========-->*/
.confifteentitle{
	font-size: 150px;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
	position: relative;
	z-index: 1;
	text-shadow: 1px 1px 30px #000;
}

/* <!--========== Contact fifteen  page end ===========-->*/


/* <!--========== payment one  page starts ===========-->*/

/* font

font-family: 'Special Elite', cursive;
*/
.payonepage{
	background-image: url(../img/paymentbg.jpg);
	/*background-position: center;*/
	background-size: cover;
	background-repeat: no-repeat;	
}
.payonetitle {
    font-family: 'Special Elite', cursive;
    color: #A55321;
    font-size: 140px;
    margin-top: 760px;
    margin-bottom: 700px;
    text-transform: uppercase;
}
/* <!--========== payment one  page end ===========-->*/


/* <!--========== payment two  page start ===========-->*/

.paytwopage{
	background-image: url(../img/paytwobg.jpg);
	/*background-position: center;*/
	background-size: cover;
	background-repeat: no-repeat;
}
.paytwotitle {
    color: #535353;
    margin-top: 150px;
    font-size: 120px;
}
.paytwo_imgone {
    width: 60%;
    margin-top: 160px;
	transition: all linear 0.3s;
}
.paytwo_imgone:hover{
	background-color: #CCC2B9;
	padding: 40px;
	border-radius: 50%;
	transition: all linear 0.3s;
}
.paytwo_p_one{
	font-size: 48px;
	text-transform: uppercase;
	font-weight: bold;
	margin-top: 40px;
}
.paytwo_p_two {
    font-size: 48px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 95px;
}
.paytwo_p_four {
    font-size: 48px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 450px;
}
/* <!--========== payment two  page end ===========-->*/


/* <!--========== currency  one  page start ===========-->*/

.curronepage{
	background-image: url(../img/currbg.jpg);
	/*background-position: center;*/
	background-size: cover;
	background-repeat: no-repeat;
}


.curonetitle {
    font-size: 130px;
    margin-top: 850px;
    color: #453C37;
    margin-bottom: 900px;
    text-transform: uppercase;
    font-weight: bold;
}
/* <!--========== currency  one  page end ===========-->*/


/* <!--========== currency two  page start ===========-->*/

.currtwopage {
    background-image: url(../img/currtwobg.jpg);
    /* background-position: center; */
    background-size: cover;
    background-repeat: no-repeat;
	margin-top: 0;
}
.curiconone{
	background-color: #F57769;
	border-radius: 10px;
	margin-top: 40px;
}
.curicontwo{
	background-color: #FFDF1B;
	border-radius: 10px;
	margin-top: 40px;
}
.curiconthree{
	background-color: #65A6EA;
	border-radius: 10px;
	margin-top: 40px;
}
.curiconfour{
	background-color: #F57769;
	border-radius: 10px;
	margin-top: 40px;
}
.curiconfive{
	background-color: #FED12E;
	border-radius: 10px;
	margin-top: 40px;
}
.curtwopone{
	margin-top: 40px;
	padding: 85px 0;
	margin-left: 5%;
	border-radius: 10px;
	font-weight: bold;
	font-size: 32px;
	color: #000;
	background-color: #F57769;
}
.curtwoptwo{
	margin-top: 40px;
	padding: 85px 0;
	margin-left: 5%;
	border-radius: 10px;
	font-weight: bold;
	font-size: 32px;
	color: #000;
	background-color: #FFDF1B;
}
.curtwopthree{
	margin-top: 40px;
	padding: 85px 0;
	margin-left: 5%;
	border-radius: 10px;
	font-weight: bold;
	font-size: 32px;
	color: #000;
	background-color: #65A6EA;
}
.curtwopfour{
	margin-top: 40px;
	padding: 85px 0;
	margin-left: 5%;
	border-radius: 10px;
	font-weight: bold;
	font-size: 32px;
	color: #000;
	background-color: #F57769;
}
.curtwopfive{
	margin-top: 40px;
	padding: 85px 0;
	margin-left: 5%;
	border-radius: 10px;
	font-weight: bold;
	font-size: 32px;
	color: #000;
	background-color: #FED12E;
}
.curtwocontent{
	padding: 325px 0;
}
/* <!--========== currency one  page end ===========-->*/


/* <!--========== overviewpage  page end ===========-->*/

.overviewpage{
	background-image: url(../img/overbg.jpg);
    /* background-position: center; */
    background-size: cover;
    background-repeat: no-repeat;
}
.over_title {
    font-family: 'Geologica', sans-serif;
    color: #000;
    font-size: 154px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 120px;
}
.over_title_txt{
	font-family: 'Geologica', sans-serif;
    color: #000;
	font-size: 44px;
	font-weight: bold;

}
.over_txt {

    color: #000;
    font-size: 48px;
    font-weight: bolder;
}
.over_img_two {
    margin-top: -150px;
}
/* <!--========== overviewpage  page end ===========-->*/


/*==========   footer  part start ==========*/
footer{
	background-color: #081621;
}
.footer_first{
	text-align: left;
}
.footer_second{
	text-align: left;
	padding-left: 10px;
}
.footer_third{
	text-align: left;
}
.footer_fourth{
	text-align: left;
}
.footer_fifth{
	text-align: left;
}
.footer_title{
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 2px;
	margin: 50px 0 20px 0;
}
.footer_call {
    padding: 12px 19px;
    border: 1px solid #212E38;
    border-radius: 50px;
}

.footer_call:hover{
	border: 1px solid #EF4A23;
	background-color: #06121A;
	cursor: pointer;
}
.call_number{
	font-size: 16px;
	font-weight: 700;
	color: #EF4A23;
}
.call_time{
	font-size: 12px;
	color: #83897A;
}
.footer_call i{
	color: #fff;
}
.footer_icon{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer_icon::before{
	position: absolute;
	right: 0;
	content: "";
	background-color: #808181;
	height: 80%;
	width: 1px;
	opacity: 0.5;
}
.footer_list li {
	margin: 20px 0;
}
.footer_list li a{
	text-decoration: none;
	color: #808181;
	font-size: 14px;
}
.footer_list li a:hover{
	text-decoration: underline;
	color: #EF4A23;
}
.footer_list .active a{
	color: #EF4A23;
}
.fl_two{
	margin-top: 90px;
}
.footer_contact_info{
	color: #fff;
	font-weight: 500;
}
.footer_contact_info_txt {
    font-size: 13px;
    color: #808181;
    margin-top: 10px;
    line-height: 25px;
}
.footer_fifth ul li{
	color: #808181;
	font-size: 14px;
}
.footer_email{
	font-size: 14px;
	color: #808181;
}
.app{
	font-size: 12px;
	color: #808181;
	line-height: 40px;
}
.exp_img{
	padding: 5px 5px;
	border: 1px solid #808181;
	border-radius: 4px;
}
.exp_img:hover{
	border: 1px solid #fff;
}
.footer_second i{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	width: 40px;
	color: #fff;
	border-radius: 50%;
	background-color: #808181;
}
.footer_second i:hover{
	background-color: #3749bb;
	cursor: pointer;
}
.copyright{
	font-size: 12px;
	color: #808181;
	line-height: 40px;
}
.Powered_by{
	font-size: 12px;
	color: #808181;
	line-height: 40px;
}
/*==========   footer  part end ==========*/
























/* <!--========== responsive part start ===========-->*/
@media (min-width: 320px) and (max-width: 575px){ 

/* <!--========== dropdown part start ===========-->*/

	/* .dropdown-menu{
		margin-top: -120px!important;
		inset: 0px auto auto 20px;
	} */
	.drop_left {
		margin-left: 90%!important;
		padding: -0.2rem 4px;
		margin-top: -80px;
	}
	.logo {
		color: #6d6ae5;
	}
	.dropdown-menu {
		margin-top: -24%!important;
		margin-left: 2%!important;
	}
	.drop_contact{
		margin-top: -50%!important;
	}

/* <!--========== dropdown part end ===========-->*/




/* <!--========== index part start ===========-->*/
	.product_title {
		font-size: 45px;
		text-align: center;
		margin-top: 50px;
		padding-left: 0%;
	}
	.p_com_name {
		font-size: 26px;
		margin-top: 40px;
		text-align: center;
		padding-left: 0%;
		text-shadow: 3px 3px 23px #fff;
	}
	.p_com_txt {
		text-align: center;
		text-shadow: 3px 3px 23px #fff;
	}
	.p_com_loc {
		margin-top: 20px;
		padding-left: 0%;
		text-align: center;
		text-shadow: 3px 3px 23px #fff;
	}
	.p_com_loc_txt {
		text-align: center;
		padding-left: 0%;
		text-shadow: 3px 3px 23px #fff;
	}
	.p_com_mail {
		margin-top: 20px;
		text-align: center;
		padding-left: 0%;
		text-shadow: 3px 3px 23px #fff;
	}
	.p_com_mail_txt {
		font-size: 18px;
		padding-left: 0%;
		text-align: center;
		padding-bottom: 150px;
		text-shadow: 3px 3px 23px #fff;
	}


	.about_title {
		font-family: 'Cooper Light', sans-serif;
		color: #000;
		font-size: 60px;
		margin-top: 20px;
	}
/* <!--========== index part end ===========-->*/


/* <!--========== about part start ===========-->*/

.about_title {
    font-family: 'Cooper Light', sans-serif;
    color: #000;
	text-align: center;
    font-size: 60px;
    margin-top: 20px;
}
.about_txt {
    text-align: center;
    font-size: 24px;
    margin-top: 20px;
}
.presented {
    font-size: 20px;
    margin-top: 100px;
    margin-left: 15%;
    padding-bottom: 100px;
}
/* <!--========== about part end ===========-->*/
/* <!--========== mission part start ===========-->*/

.mission {
 	 font-size: 72px;
}
.mission_content_txt {
    font-size: 24px;
    padding: 0 10%;
}
.mission_con_one {
    margin-top: 150px;
}
.mission_con_two {
    margin-top: 150px;
}
.mission_con_three {
    margin-top: 150px;
}
.mission_footer p {
    margin-top: 30px;
    font-size: 10px;
}
/* <!--========== mission part end ===========-->*/



/* <!--========== vision part start ===========-->*/
.vision_title ul li:last-child {
    font-size: 70px;
}
.vision_list ul li:first-child {
    margin-top: 20px;
}
.vision_list ul li {
    color: #D1D0A0;
    font-size: 18px;
    margin-left: 0%;
}
.products_title {
    font-size: 48px;
    margin-top: 12px;
    text-shadow: 1px 1px 16px aliceblue;
}
.p_l_one p {
    font-size: 32px;
}
.p_l_two p {
    font-size: 32px;
}
.p_l_three p {
    font-size: 32px;
}
.p_l_four p {
    font-size: 32px;
}
.p_l_five p {
    font-size: 32px;
}
.p_l_six p {
    font-size: 32px;
}

/* <!--========== vision part end ===========-->*/




/* <!--========== agri part start ===========-->*/
.agri_title {
    font-size: 58px;
    margin-bottom: 20px;
}
.agri_wheat {
    margin-top: 58px;
    margin-bottom: 58px;
}
/* <!--========== agri part end ===========-->*/



/* <!--========== payment one part start ===========-->*/
.payonetitle {
    font-size: 48px;
    margin-top: 160px;
    margin-bottom: 190px;
}
/* <!--========== payment one part end ===========-->*/


/* <!--========== payment two part end ===========-->*/
.paytwotitle {
    margin-top: 30px;
    font-size: 44px;
}
.paytwo_p_one {
    font-size: 28px;
}
.paytwo_p_two {
    font-size: 28px;
    margin-top: 30px;
}
.paytwo_p_one {
    font-size: 28px;
    margin-top: 30px;
}
.paytwo_p_four {
    font-size: 28px;
    margin-top: 30px;
	margin-bottom: 180px;
}

/* <!--========== payment two part end ===========-->*/


/* <!--========== overview part start ===========-->*/
.over_title {
    font-size: 44px;
    margin-top: 40px;
}
.over_title_txt {
    font-size: 28px;
    text-align: center;
}
.over_txt {
    font-size: 28px;
    text-align: center;
}
.over_img_two {
    margin-top: 30px;
	margin-bottom: 50px;
}
/* <!--========== overview part end ===========-->*/



/* <!--========== contact part start ===========-->*/
.cononepage {
    background-position: center;
}
.cononetitle {
    font-size: 58px;
    margin-top: 294px;
    color: black;
}
.conone_img {
    rotate: calc(-30deg);
    width: 70%;
    margin-left: 14%;
    margin-top: 200px;
}
.conone_add_title {
    margin-top: 73px;
    text-align: center;
}
.conone_add_txt {
    margin-top: 28px;
}



.contwopage {
    background-position: center;
}
.contwotitle {
    font-size: 62px;
    margin-top: 205px;
    margin-bottom: 478px;
}


.conthreepage {
    background-position: center;
}
.con_top {
    margin-top: 100px;
}
.conthreetitle {
    font-size: 60px;
}
.con_center {
    margin-top: 30px;
    margin-bottom: 200px;
    z-index: 2;
}


.conelevenpage {
    background-position: center;
}
.coneleventitle {
    font-size: 56px;
}
.coneleventitletxt {
    font-size: 32px;
    margin-top: 80px;
}
.coneleventxt {
    font-size: 22px;
    margin-bottom: 250px;
}
.contwelvetitletxt {
    font-size: 34px;
    margin-top: 50px;
    margin-bottom: 150px;
}



.con_thirteen_one {
    margin-top: 98px;
	rotate: calc(0deg);
}

.con_thirteen_two {
    margin-top: 100px;
    rotate: calc(0deg);
}
.con_thirteen_three {
    margin-left: 0%;
    rotate: calc(0deg);
}
.conthirteentitle {
    font-size: 48px;
    margin-top: 40px;
    margin-bottom: 280px;
}

.confourteenpage {
    background-position: center;
}

.confourteentitle {
    font-size: 58px;
}
.confourteenone {
    rotate: calc(0deg);
    margin-top: 30px;
    margin-left: 5%;
}
.confourteentxt {
    margin-top: 50px;
    margin-left: 5%;
    font-size: 27px;
}
.confourteentxt_last {
    font-size: 54px;
    margin-top: 54px;
    margin-bottom: 290px;
}
.confifteentitle {
    font-size: 60px;
}
/* <!--========== contact part end ===========-->*/



/* <!--========== automobile part start ===========-->*/
.auto_three_title {
    font-size: 38px;
}
.auto_three_left_img {
    margin-left: 0%;
    width: 90%;
}
.ct {
    margin-top: 10px;
}
.ct_left {
    margin-left: 0%;
}
.auto_title {
    font-size: 28px;
    margin-left: 0%;
}
.auto_title span {
    font-size: 28px;
}
.auto_one_img_one {
    margin-left: 0%;
}
.auto_one_img_last {
    margin-left: 0;
}
/* <!--========== automobile part end ===========-->*/

 }

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px){ 
	
	/* <!--========== dropdown part start ===========-->*/
	.dropdown-menu{
		margin-top: -120px!important;
	}
	.drop_left {
		margin-left: 90%!important;
		padding: -0.2rem 4px;
		margin-top: -80px;
	}
	.logo {
		color: #6d6ae5;
		z-index: 999;
	}
	.dropdown-menu {
		margin-top: -24%!important;
	}
	.drop_contact{
		margin-top: -50%!important;
	}

/* <!--========== dropdown part end ===========-->*/




/* <!--========== index part start ===========-->*/
	.product_title {
		font-size: 45px;
		text-align: center;
		margin-top: 50px;
		padding-left: 0%;
	}
	.p_com_name {
		font-size: 26px;
		margin-top: 40px;
		text-align: center;
		padding-left: 0%;
		text-shadow: 3px 3px 23px #fff;
	}
	.p_com_txt {
		text-align: center;
		text-shadow: 3px 3px 23px #fff;
	}
	.p_com_loc {
		margin-top: 20px;
		padding-left: 0%;
		text-align: center;
		text-shadow: 3px 3px 23px #fff;
	}
	.p_com_loc_txt {
		text-align: center;
		padding-left: 0%;
		text-shadow: 3px 3px 23px #fff;
	}
	.p_com_mail {
		margin-top: 20px;
		text-align: center;
		padding-left: 0%;
		text-shadow: 3px 3px 23px #fff;
	}
	.p_com_mail_txt {
		font-size: 18px;
		padding-left: 0%;
		text-align: center;
		padding-bottom: 150px;
		text-shadow: 3px 3px 23px #fff;
	}


	.about_title {
		font-family: 'Cooper Light', sans-serif;
		color: #000;
		font-size: 60px;
		margin-top: 20px;
	}
/* <!--========== index part end ===========-->*/


/* <!--========== about part start ===========-->*/

.about_title {
    font-family: 'Cooper Light', sans-serif;
    color: #000;
	text-align: center;
    font-size: 60px;
    margin-top: 20px;
}
.about_txt {
    text-align: center;
    font-size: 24px;
    margin-top: 20px;
}
.presented {
    font-size: 20px;
    margin-top: 100px;
    margin-left: 15%;
    padding-bottom: 100px;
}
/* <!--========== about part end ===========-->*/
/* <!--========== mission part start ===========-->*/

.mission {
 	 font-size: 72px;
}
.mission_content_txt {
    font-size: 24px;
    padding: 0 10%;
}
.mission_con_one {
    margin-top: 150px;
}
.mission_con_two {
    margin-top: 150px;
}
.mission_con_three {
    margin-top: 150px;
}
.mission_footer p {
    margin-top: 30px;
    font-size: 10px;
}
/* <!--========== mission part end ===========-->*/



/* <!--========== vision part start ===========-->*/
.vision_title ul li:last-child {
    font-size: 70px;
}
.vision_list ul li:first-child {
    margin-top: 20px;
}
.vision_list ul li {
    color: #D1D0A0;
    font-size: 18px;
    margin-left: 0%;
}
.products_title {
    font-size: 48px;
    margin-top: 12px;
    text-shadow: 1px 1px 16px aliceblue;
}
.p_l_one p {
    font-size: 32px;
}
.p_l_two p {
    font-size: 32px;
}
.p_l_three p {
    font-size: 32px;
}
.p_l_four p {
    font-size: 32px;
}
.p_l_five p {
    font-size: 32px;
}
.p_l_six p {
    font-size: 32px;
}

/* <!--========== vision part end ===========-->*/




/* <!--========== agri part start ===========-->*/
.agri_title {
    font-size: 58px;
    margin-bottom: 20px;
}
.agri_wheat {
    margin-top: 58px;
    margin-bottom: 58px;
}
/* <!--========== agri part end ===========-->*/



/* <!--========== payment one part start ===========-->*/
.payonetitle {
    font-size: 48px;
    margin-top: 160px;
    margin-bottom: 190px;
}
/* <!--========== payment one part end ===========-->*/


/* <!--========== payment two part end ===========-->*/
.paytwotitle {
    margin-top: 30px;
    font-size: 44px;
}
.paytwo_p_one {
    font-size: 28px;
}
.paytwo_p_two {
    font-size: 28px;
    margin-top: 30px;
}
.paytwo_p_one {
    font-size: 28px;
    margin-top: 30px;
}
.paytwo_p_four {
    font-size: 28px;
    margin-top: 30px;
	margin-bottom: 180px;
}

/* <!--========== payment two part end ===========-->*/


/* <!--========== overview part start ===========-->*/
.over_title {
    font-size: 44px;
    margin-top: 40px;
}
.over_title_txt {
    font-size: 28px;
    text-align: center;
}
.over_txt {
    font-size: 28px;
    text-align: center;
}
.over_img_two {
    margin-top: 30px;
	margin-bottom: 50px;
}
/* <!--========== overview part end ===========-->*/



/* <!--========== contact part start ===========-->*/
.cononepage {
    background-position: center;
}
.cononetitle {
    font-size: 58px;
    margin-top: 294px;
    color: black;
}
.conone_img {
    rotate: calc(-30deg);
    width: 70%;
    margin-left: 14%;
    margin-top: 200px;
}
.conone_add_title {
    margin-top: 73px;
    text-align: center;
}
.conone_add_txt {
    margin-top: 28px;
}



.contwopage {
    background-position: center;
}
.contwotitle {
    font-size: 62px;
    margin-top: 205px;
    margin-bottom: 478px;
}


.conthreepage {
    background-position: center;
}
.con_top {
    margin-top: 100px;
}
.conthreetitle {
    font-size: 60px;
}
.con_center {
    margin-top: 30px;
    margin-bottom: 200px;
    z-index: 2;
}


.conelevenpage {
    background-position: center;
}
.coneleventitle {
    font-size: 56px;
}
.coneleventitletxt {
    font-size: 32px;
    margin-top: 80px;
}
.coneleventxt {
    font-size: 22px;
    margin-bottom: 250px;
}
.contwelvetitletxt {
    font-size: 34px;
    margin-top: 50px;
    margin-bottom: 150px;
}



.con_thirteen_one {
    margin-top: 98px;
	rotate: calc(0deg);
}

.con_thirteen_two {
    margin-top: 100px;
    rotate: calc(0deg);
}
.con_thirteen_three {
    margin-left: 0%;
    rotate: calc(0deg);
}
.conthirteentitle {
    font-size: 48px;
    margin-top: 40px;
    margin-bottom: 280px;
}

.confourteenpage {
    background-position: center;
}

.confourteentitle {
    font-size: 58px;
}
.confourteenone {
    rotate: calc(0deg);
    margin-top: 30px;
    margin-left: 5%;
}
.confourteentxt {
    margin-top: 50px;
    margin-left: 5%;
    font-size: 27px;
}
.confourteentxt_last {
    font-size: 54px;
    margin-top: 54px;
    margin-bottom: 290px;
}
.confifteentitle {
    font-size: 60px;
}
/* <!--========== contact part end ===========-->*/



/* <!--========== automobile part start ===========-->*/
.auto_three_title {
    font-size: 38px;
}
.auto_three_left_img {
    margin-left: 0%;
    width: 90%;
}
.ct {
    margin-top: 10px;
}
.ct_left {
    margin-left: 0%;
}
.auto_title {
    font-size: 28px;
    margin-left: 0%;
}
.auto_title span {
    font-size: 28px;
}
.auto_one_img_one {
    margin-left: 0%;
}
.auto_one_img_last {
    margin-left: 0;
}
/* <!--========== automobile part end ===========-->*/
 }

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px){ 
	
	/* <!--========== dropdown part start ===========-->*/
	.dropdown-menu{
		margin-top: -120px!important;
	}
	.drop_left {
		margin-left: 90%!important;
		padding: -0.2rem 4px;
		margin-top: -80px;
	}
	.logo {
		color: #6d6ae5;
	}
	.dropdown-menu {
		margin-top: -24%!important;
	}
	.drop_contact{
		margin-top: -50%!important;
	}

/* <!--========== dropdown part end ===========-->*/




/* <!--========== index part start ===========-->*/
	.product_title {
		font-size: 45px;
		text-align: center;
		margin-top: 50px;
		padding-left: 0%;
	}
	.p_com_name {
		font-size: 26px;
		margin-top: 40px;
		text-align: center;
		padding-left: 0%;
		text-shadow: 3px 3px 23px #fff;
	}
	.p_com_txt {
		text-align: center;
		text-shadow: 3px 3px 23px #fff;
	}
	.p_com_loc {
		margin-top: 20px;
		padding-left: 0%;
		text-align: center;
		text-shadow: 3px 3px 23px #fff;
	}
	.p_com_loc_txt {
		text-align: center;
		padding-left: 0%;
		text-shadow: 3px 3px 23px #fff;
	}
	.p_com_mail {
		margin-top: 20px;
		text-align: center;
		padding-left: 0%;
		text-shadow: 3px 3px 23px #fff;
	}
	.p_com_mail_txt {
		font-size: 18px;
		padding-left: 0%;
		text-align: center;
		padding-bottom: 150px;
		text-shadow: 3px 3px 23px #fff;
	}


	.about_title {
		font-family: 'Cooper Light', sans-serif;
		color: #000;
		font-size: 60px;
		margin-top: 20px;
	}
/* <!--========== index part end ===========-->*/


/* <!--========== about part start ===========-->*/

.about_title {
    font-family: 'Cooper Light', sans-serif;
    color: #000;
	text-align: center;
    font-size: 60px;
    margin-top: 20px;
}
.about_txt {
    text-align: center;
    font-size: 24px;
    margin-top: 20px;
}
.presented {
    font-size: 20px;
    margin-top: 100px;
    margin-left: 15%;
    padding-bottom: 100px;
}
/* <!--========== about part end ===========-->*/
/* <!--========== mission part start ===========-->*/

.mission {
 	 font-size: 72px;
}
.mission_content_txt {
    font-size: 24px;
    padding: 0 10%;
}
.mission_con_one {
    margin-top: 150px;
}
.mission_con_two {
    margin-top: 150px;
}
.mission_con_three {
    margin-top: 150px;
}
.mission_footer p {
    margin-top: 30px;
    font-size: 10px;
}
/* <!--========== mission part end ===========-->*/



/* <!--========== vision part start ===========-->*/
.vision_title ul li:last-child {
    font-size: 70px;
}
.vision_list ul li:first-child {
    margin-top: 20px;
}
.vision_list ul li {
    color: #D1D0A0;
    font-size: 18px;
    margin-left: 0%;
}
.products_title {
    font-size: 48px;
    margin-top: 12px;
    text-shadow: 1px 1px 16px aliceblue;
}
.p_l_one p {
    font-size: 32px;
}
.p_l_two p {
    font-size: 32px;
}
.p_l_three p {
    font-size: 32px;
}
.p_l_four p {
    font-size: 32px;
}
.p_l_five p {
    font-size: 32px;
}
.p_l_six p {
    font-size: 32px;
}

/* <!--========== vision part end ===========-->*/




/* <!--========== agri part start ===========-->*/
.agri_title {
    font-size: 58px;
    margin-bottom: 20px;
}
.agri_wheat {
    margin-top: 58px;
    margin-bottom: 58px;
}
/* <!--========== agri part end ===========-->*/



/* <!--========== payment one part start ===========-->*/
.payonetitle {
    font-size: 48px;
    margin-top: 160px;
    margin-bottom: 190px;
}
/* <!--========== payment one part end ===========-->*/


/* <!--========== payment two part end ===========-->*/
.paytwotitle {
    margin-top: 30px;
    font-size: 44px;
}
.paytwo_p_one {
    font-size: 28px;
}
.paytwo_p_two {
    font-size: 28px;
    margin-top: 30px;
}
.paytwo_p_one {
    font-size: 28px;
    margin-top: 30px;
}
.paytwo_p_four {
    font-size: 28px;
    margin-top: 30px;
	margin-bottom: 180px;
}

/* <!--========== payment two part end ===========-->*/


/* <!--========== overview part start ===========-->*/
.over_title {
    font-size: 44px;
    margin-top: 40px;
}
.over_title_txt {
    font-size: 28px;
    text-align: center;
}
.over_txt {
    font-size: 28px;
    text-align: center;
}
.over_img_two {
    margin-top: 30px;
	margin-bottom: 50px;
}
/* <!--========== overview part end ===========-->*/



/* <!--========== contact part start ===========-->*/
.cononepage {
    background-position: center;
}
.cononetitle {
    font-size: 58px;
    margin-top: 294px;
    color: black;
}
.conone_img {
    rotate: calc(-30deg);
    width: 70%;
    margin-left: 14%;
    margin-top: 200px;
}
.conone_add_title {
    margin-top: 73px;
    text-align: center;
}
.conone_add_txt {
    margin-top: 28px;
}



.contwopage {
    background-position: center;
}
.contwotitle {
    font-size: 62px;
    margin-top: 205px;
    margin-bottom: 478px;
}


.conthreepage {
    background-position: center;
}
.con_top {
    margin-top: 100px;
}
.conthreetitle {
    font-size: 60px;
}
.con_center {
    margin-top: 30px;
    margin-bottom: 200px;
    z-index: 2;
}


.conelevenpage {
    background-position: center;
}
.coneleventitle {
    font-size: 56px;
}
.coneleventitletxt {
    font-size: 32px;
    margin-top: 80px;
}
.coneleventxt {
    font-size: 22px;
    margin-bottom: 250px;
}
.contwelvetitletxt {
    font-size: 34px;
    margin-top: 50px;
    margin-bottom: 150px;
}



.con_thirteen_one {
    margin-top: 98px;
	rotate: calc(0deg);
}

.con_thirteen_two {
    margin-top: 100px;
    rotate: calc(0deg);
}
.con_thirteen_three {
    margin-left: 0%;
    rotate: calc(0deg);
}
.conthirteentitle {
    font-size: 48px;
    margin-top: 40px;
    margin-bottom: 280px;
}

.confourteenpage {
    background-position: center;
}

.confourteentitle {
    font-size: 58px;
}
.confourteenone {
    rotate: calc(0deg);
    margin-top: 30px;
    margin-left: 5%;
}
.confourteentxt {
    margin-top: 50px;
    margin-left: 5%;
    font-size: 27px;
}
.confourteentxt_last {
    font-size: 54px;
    margin-top: 54px;
    margin-bottom: 290px;
}
.confifteentitle {
    font-size: 60px;
}
/* <!--========== contact part end ===========-->*/



/* <!--========== automobile part start ===========-->*/
.auto_three_title {
    font-size: 38px;
}
.auto_three_left_img {
    margin-left: 0%;
    width: 90%;
}
.ct {
    margin-top: 10px;
}
.ct_left {
    margin-left: 0%;
}
.auto_title {
    font-size: 28px;
    margin-left: 0%;
}
.auto_title span {
    font-size: 28px;
}
.auto_one_img_one {
    margin-left: 0%;
}
.auto_one_img_last {
    margin-left: 0;
}
/* <!--========== automobile part end ===========-->*/
 }

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px){  }

/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 139px){  }

/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {  }
/* <!--========== responsive part end ===========-->*/






