body {
	font-family: 'open-sans', Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-style: normal;
	color: #686868;
}
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
@font-face {
	font-family: 'open-sans';
	src: url(../font/open-sans-4.5.0.eot) format('eot'), url(../font/open-sans-4.5.0.woff) format('woff'), url(../font/open-sans-4.5.0) format('woff2'), url(../font/open-sans-4.5.0.ttf) format('truetype'),;
}
@font-face {
	font-family: 'seguisemibold';
	src: url(../font/seguisemibold.ttf) format('truetype'),;
}
img {
	max-width: 100%;
}
a:focus, input:focus, textarea:focus, button:focus {
	text-decoration: none;
	outline: none;
}
a:focus, a:hover {
	text-decoration: none;
}
i, span, a {
	display: inline-block;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	font-family: 'seguisemibold';
	color: #333333;
	margin: 0px;
}
h1 {
	font-size: 48px;
}
h2 {
	font-size: 36px;
}
h3 {
	font-size: 28px;
}
h4 {
	font-size: 22px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
ul, ol {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
p {
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
	color: #686868;
	margin: 0px;
}
.bg_cover {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
}
/*===== All Button Style =====*/
.main-btn {
	display: inline-block;
	font-weight: 700;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 0px;
	padding: 0 45px;
	font-size: 15px;
	line-height: 70px;
	border-radius: 40px;
	color: #fff;
	cursor: pointer;
	z-index: 5;
	-webkit-transition: all 0.4s ease-out 0s;
	-moz-transition: all 0.4s ease-out 0s;
	-ms-transition: all 0.4s ease-out 0s;
	-o-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
	background: linear-gradient(120deg, #6cbe03 40%, #f4a700 80%);
	position: relative;
	overflow: hidden;
	z-index: 5;
	text-transform: uppercase;
}
.main-btn::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: #6cbe03;
	z-index: -1;
	opacity: 0;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.main-btn:hover {
	color: #fff;
}
.main-btn:hover::before {
	opacity: 1;
}
.main-btn.main-btn-2::before {
	opacity: 1;
}
.main-btn.main-btn-2:hover::before {
	opacity: 0;
}
.section-title {
	padding-bottom: 3%;
}
.section-title span {
	font-size: 20px;
	font-weight: 700;
	text-transform: capitalize;
	color: #6cbe03;
	position: relative;
}
.section-title span::before {
	position: absolute;
	content: '';
	left: -66px;
	top: 50%;
	transform: translateY(-50%);
	height: 3px;
	width: 45px;
	background: #6cbe03;
}
.section-title span::after {
	position: absolute;
	content: '';
	right: -66px;
	top: 50%;
	transform: translateY(-50%);
	height: 3px;
	width: 45px;
	background: #6cbe03;
}
.section-title .title {
	font-size: 50px;
	line-height: 55px;
	padding-top: 3%;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.section-title .title {
	font-size: 26px;
	line-height: 47px;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.section-title .title {
	font-size: 26px;
	line-height: 46px;
}
}
 @media (max-width: 767px) {
.section-title .title {
	font-size: 20px;
	line-height: 40px;
}
.section-title span {
	font-size: 16px;
}
}

 @media (max-width: 1400px) {
	  .section-title span, .store-area .store-content span {
    font-size: 18px;
  }

}
.section-title.section-title-2 span {
	color: #fff;
}
.section-title.section-title-2 span::before {
	background: #fff;
}
.section-title.section-title-2 span::after {
	background: #fff;
}
.section-title.section-title-2 .title {
	color: #fff;
}
/*===== page preloader Style =====*/
#loading {
	background: linear-gradient(120deg, #6cbe03 40%, #f4a700 80%);
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 99;
	margin-top: 0px;
	top: 0px;
}
#loading-center {
	width: 100%;
	height: 100%;
	position: relative;
}
#loading-center-absolute {
	position: absolute;
	left: 50%;
	top: 50%;
	height: 20px;
	width: 140px;
	margin-top: -10px;
	margin-left: -70px;
	-webkit-animation: loading-center-absolute 1s infinite;
	animation: loading-center-absolute 1s infinite;
}
.object {
	width: 20px;
	height: 20px;
	background-color: #FFF;
	float: left;
	-moz-border-radius: 50% 50% 50% 50%;
	-webkit-border-radius: 50% 50% 50% 50%;
	border-radius: 50% 50% 50% 50%;
	margin-right: 20px;
	margin-bottom: 20px;
}
.object:last-child {
	margin-right: 0px;
}
#object_one {
	-webkit-animation: object_one 1s infinite;
	animation: object_one 1s infinite;
}
#object_two {
	-webkit-animation: object_two 1s infinite;
	animation: object_two 1s infinite;
}
#object_three {
	-webkit-animation: object_three 1s infinite;
	animation: object_three 1s infinite;
}
#object_four {
	-webkit-animation: object_four 1s infinite;
	animation: object_four 1s infinite;
}
 @-webkit-keyframes loading-center-absolute {
 100% {
 -ms-transform: rotate(360deg);
 -webkit-transform: rotate(360deg);
 transform: rotate(360deg);
}
}
@keyframes loading-center-absolute {
 100% {
 -ms-transform: rotate(360deg);
 -webkit-transform: rotate(360deg);
 transform: rotate(360deg);
}
}
@-webkit-keyframes object_one {
 50% {
 -ms-transform: translate(20px, 20px);
 -webkit-transform: translate(20px, 20px);
 transform: translate(20px, 20px);
}
}
@keyframes object_one {
 50% {
 -ms-transform: translate(20px, 20px);
 -webkit-transform: translate(20px, 20px);
 transform: translate(20px, 20px);
}
}
@-webkit-keyframes object_two {
 50% {
 -ms-transform: translate(-20px, 20px);
 -webkit-transform: translate(-20px, 20px);
 transform: translate(-20px, 20px);
}
}
@keyframes object_two {
 50% {
 -ms-transform: translate(-20px, 20px);
 -webkit-transform: translate(-20px, 20px);
 transform: translate(-20px, 20px);
}
}
@-webkit-keyframes object_three {
 50% {
 -ms-transform: translate(20px, -20px);
 -webkit-transform: translate(20px, -20px);
 transform: translate(20px, -20px);
}
}
@keyframes object_three {
 50% {
 -ms-transform: translate(20px, -20px);
 -webkit-transform: translate(20px, -20px);
 transform: translate(20px, -20px);
}
}
@-webkit-keyframes object_four {
 50% {
 -ms-transform: translate(-20px, -20px);
 -webkit-transform: translate(-20px, -20px);
 transform: translate(-20px, -20px);
}
}
@keyframes object_four {
 50% {
 -ms-transform: translate(-20px, -20px);
 -webkit-transform: translate(-20px, -20px);
 transform: translate(-20px, -20px);
}
}
/*
Sidebar Modal Area Style
======================================================*/
.sidebar-modal {
	position: relative;
}
.sidebar-modal .navbar-nav li a {
	padding: 10px 0px 10px 15px;
}
.sidebar-modal .modal.right .modal-dialog {
	position: fixed;
	margin: auto;
	width: 450px;
	height: 100%;
}
.sidebar-modal .modal.right .modal-content {
	height: 100%;
	overflow-y: auto;
	border-radius: 0;
	border: none;
	background-color: #ffffff;
}
.sidebar-modal .modal.right .modal-body {
	padding: 30px;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget {
	margin-bottom: 35px;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .title {
	position: relative;
	z-index: 1;
	margin-bottom: 35px;
	color: #333;
	font-weight: 600;
	border-bottom: 1px solid #eeeeee;
	padding-bottom: 5px;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .title::before {
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 70px;
	height: 2px;
	border-radius: 5px;
	background: #6cbe03;
	content: '';
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget:last-child {
	margin-bottom: 0;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul {
	padding: 0;
	margin: 0;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul li {
	margin-bottom: 10px;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul li:last-child {
	margin-bottom: 0;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul li a {
	font-size: 14px;
	color: #686868;
	font-weight: 600;
	text-transform: capitalize;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul li a:hover {
	color: #cc8c18;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul.contact-info li {
	position: relative;
	font-weight: 500;
	padding-left: 45px;
	text-transform: uppercase;
	margin-bottom: 10px;
	font-size: 14px;
	color: #24416b;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul.contact-info li span {
	font-size: 13px;
	display: block;
	font-weight: 400;
	color: #818992;
	margin-top: 5px;
	text-transform: initial;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul.contact-info li i {
	position: absolute;
	left: 0;
	top: 0;
	color: #ffffff;
	text-align: center;
	width: 35px;
	height: 35px;
	line-height: 35px;
	font-size: 29px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	background-color: #6cbe03;
	border-radius: 4px;
	font-size: 15px;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul.contact-info li:hover i {
	color: #ffffff;
	background: #cc8c18;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul.contact-info li:last-child {
	margin-bottom: 0;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list {
	text-align: left;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list li {
	display: inline-block;
	padding-right: 5px;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list li a i {
	width: 25px;
	height: 25px;
	display: inline-block;
	text-align: center;
	line-height: 25px;
	border-radius: 4px;
	color: #ffffff;
	background-color: #6cbe03;
	font-size: 12px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list li a i:hover {
	background-color: #cc8c18;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list li:hover {
	color: #cc8c18;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list li a:hover {
	color: #ffffff;
}
.sidebar-modal .modal.right.fade.show .modal-dialog {
	right: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.sidebar-modal .modal.right.fade .modal-dialog {
	right: -320px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.sidebar-modal .modal-header {
	display: inline;
	padding: 0;
	border: none;
}
.sidebar-modal .modal-header .close {
	height: 30px;
	width: 30px;
	color: #6cbe03;
	margin: 0px;
	padding: 0px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border: none;
	opacity: 1;
}
.sidebar-modal .modal-header .close i::before {
	margin-left: 0;
	font-size: 20px;
}
.sidebar-modal .modal-header h2 {
	background-color: #ffffff;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	padding: 30px 25px;
}
.sidebar-modal button:focus {
	outline: 0px;
}
.modal-open .modal {
	z-index: 99999;
}
/*================================================
Search Overlay CSS
=================================================*/
.search-overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}
.search-overlay .search-overlay-layer {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}
.search-overlay .search-overlay-layer:nth-child(1) {
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.search-overlay .search-overlay-layer:nth-child(2) {
	left: 0;
	background-color: rgba(0, 0, 0, 0.4);
	-webkit-transition: all 0.3s ease-in-out 0.3s;
	transition: all 0.3s ease-in-out 0.3s;
}
.search-overlay .search-overlay-layer:nth-child(3) {
	left: 0;
	background-color: rgba(0, 0, 0, 0.7);
	-webkit-transition: all 0.9s ease-in-out 0.6s;
	transition: all 0.9s ease-in-out 0.6s;
}
.search-overlay .search-overlay-close {
	position: absolute;
	top: 40px;
	right: 40px;
	width: 50px;
	z-index: 2;
	text-align: center;
	cursor: pointer;
	padding: 10px;
	-webkit-transition: all 0.9s ease-in-out 1.5s;
	transition: all 0.9s ease-in-out 1.5s;
	opacity: 0;
	visibility: hidden;
}
.search-overlay .search-overlay-close .search-overlay-close-line {
	width: 100%;
	height: 3px;
	float: left;
	margin-bottom: 5px;
	background-color: #ffffff;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.search-overlay .search-overlay-close .search-overlay-close-line:nth-child(1) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.search-overlay .search-overlay-close .search-overlay-close-line:nth-child(2) {
	margin-top: -7px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.search-overlay .search-overlay-close:hover .search-overlay-close-line {
	background: #378218;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.search-overlay .search-overlay-form {
	-webkit-transition: all 0.9s ease-in-out 1.4s;
	transition: all 0.9s ease-in-out 1.4s;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	z-index: 2;
	max-width: 500px;
	width: 500px;
}
.search-overlay .search-overlay-form form {
	position: relative;
}
.search-overlay .search-overlay-form form .input-search {
	display: block;
	width: 100%;
	height: 55px;
	border: none;
	border-radius: 30px;
	padding-left: 20px;
	color: #333333;
	font-size: 16px;
}
.search-overlay .search-overlay-form form button {
	position: absolute;
	right: 5px;
	top: 5px;
	width: 45px;
	color: #ffffff;
	height: 45px;
	border-radius: 50%;
	background-color: #378218;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	border: none;
	font-size: 20px;
	line-height: 45px;
}
.search-overlay .search-overlay-form form button:hover {
	background-color: #333333;
	color: #ffffff;
}
.search-overlay.search-overlay-active.search-overlay {
	opacity: 1;
	visibility: visible;
}
.search-overlay.search-overlay-active.search-overlay .search-overlay-layer {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.search-overlay.search-overlay-active.search-overlay .search-overlay-close {
	opacity: 1;
	visibility: visible;
}
.search-overlay.search-overlay-active.search-overlay .search-overlay-form {
	opacity: 1;
	visibility: visible;
}
 @media(max-width:767px) {
.search-overlay .search-overlay-form {
	width: 80%;
	left: 45%;
}
}
/* Pagination */
.page-pagination {
	text-align: center;
	margin-top: 50px;
	margin-bottom: 30px;
}
.page-pagination li {
	display: inline-block;
	margin: 0 4px 10px;
}
.page-pagination li a {
	width: 50px;
	height: 50px;
	line-height: 46px;
	display: block;
	border: 2px solid #ebebeb;
	text-align: center;
	color: #222;
	font-size: 16px;
	font-weight: 500;
	-webkit-transition: .5s ease;
	-o-transition: .5s ease;
	transition: .5s ease;
}
.page-pagination li span {
	font-size: 12px;
}
.page-pagination li.active a, .page-pagination li a:hover {
	color: #fff;
	border-color: transparent;
}
/*===========================
    2.HEADER css 
===========================*/
.header-area .header-top {
	background: #eef2fb;
}
.header-area .header-top .header-top-content {
	height: 60px;
}
.header-area .header-top .header-top-content .header-top-text p {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
}
 @media (max-width: 767px) {
.header-area .header-top .header-top-content .header-top-text p {
	font-size: 14px;
	line-height: 20px;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.header-area .header-top .header-top-content .header-top-text p {
	font-size: 16px;
	line-height: 28px;
}
}
.header-area .header-top .header-top-content .header-top-text p i {
	color: #6cbe03;
	font-size: 24px;
	padding-right: 14px;
}
.header-area .header-top .header-top-content .header-top-btns ul li {
	display: inline-block;
}
.header-area .header-top .header-top-content .header-top-btns ul li a {
	font-size: 17px;
	color: #a5a5a5;
	margin-left: 10px;
}
.header-area .header-top .header-top-content .header-top-btns ul li a:hover {
	color: #6cbe03;
}
.header-area .header-top .header-top-content .header-top-btns > a {
	line-height: 35px;
	padding: 0 20px;
	color: #fff;
	background: linear-gradient(120deg, #6cbe03 40%, #f4a700 80%);
	border-radius: 30px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	margin-left: 30px;
}
.header-area .header-top .header-top-content .header-top-btns > a i {
	padding-left: 6px;
}
.header-area.header-2-area .header-menu {
	background-color: transparent;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	z-index: 99;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.header-area.header-2-area .header-menu {
	background: #fff;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.header-area.header-2-area .header-menu {
	background: #fff;
}
}
 @media (max-width: 767px) {
.header-area.header-2-area .header-menu {
	background: #fff;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.header-area.header-2-area .header-menu .navigation .navbar .navbar-toggler .toggler-icon {
	background: #333333;
}
}
 @media (max-width: 767px) {
.header-area.header-2-area .header-menu .navigation .navbar .navbar-toggler .toggler-icon {
	background: #333333;
}
}
.header-area.header-2-area .header-menu .navigation .navbar .navbar-nav .nav-item {
	margin: 0 16px;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.header-area.header-2-area .header-menu .navigation .navbar .navbar-nav .nav-item {
	margin: 0 10px;
}
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.header-area.header-2-area .header-menu .navigation .navbar .navbar-nav .nav-item a {
	color: #333333;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.header-area.header-2-area .header-menu .navigation .navbar-btns {
	position: absolute;
	right: 80px;
	top: 50%;
	transform: translateY(-50%);
}
}
 @media (max-width: 767px) {
.header-area.header-2-area .header-menu .navigation .navbar-btns {
	position: absolute;
	right: 60px;
	top: 50%;
	transform: translateY(-50%);
}
}
.header-area.header-2-area .header-menu .navigation .navbar-btns ul li a {
	color: #333333;
}
.header-area.header-2-area .header-menu .navigation .navbar-btns ul li:last-child a {
	color: #fff;
	background: #6cbe03;
	background-image: -moz-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
	background-image: -webkit-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
	background-image: -ms-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
	border-radius: 5px;
	padding: 3px 13px;
}
.header-area.header-3-area .header-top {
	background: #6cbe03;
}
.header-area.header-3-area .header-top .header-top-content .header-top-text ul li {
	display: inline-block;
	margin-right: 24px;
}
.header-area.header-3-area .header-top .header-top-content .header-top-text ul li a {
	color: #fff;
}
.header-area.header-3-area .header-top .header-top-content .header-top-text ul li a i {
	padding-right: 6px;
}
.header-area.header-3-area .header-top .header-top-content .header-top-btns ul li a {
	color: #fff;
}
.header-area.header-3-area .header-top .header-top-content .header-top-btns > a {
	background: #f4a700;
}
.header-area.header-3-area .header-menu {
	background: #fff;
}
.header-area.header-3-area .header-menu .navigation .navbar .navbar-toggler .toggler-icon {
	background: #333333;
}
.header-area.header-3-area .header-menu .navigation .navbar .navbar-nav .nav-item a {
	color: #333333;
}
.header-area.header-3-area .header-menu .navigation .navbar .navbar-nav .nav-item a.active, .header-area.header-3-area .header-menu .navigation .navbar .navbar-nav .nav-item a:hover {
	color: #6cbe03;
}
.header-area.header-3-area .header-menu .navigation .navbar .navbar-btns .header-flag {
	margin-right: 28px;
}
.header-area.header-3-area .header-menu .navigation .navbar .navbar-btns .header-flag a span {
	font-size: 18px;
	font-weight: 600;
	color: #333333;
}
.header-area.header-3-area .header-menu .navigation .navbar .navbar-btns .header-flag a img {
	margin-right: 8px;
}
.header-area.header-3-area .header-menu .navigation .navbar .navbar-btns ul li a {
	color: #333333;
}
.header-info {
	background: #02060e;
}
.header-info .header-info-item {
	height: 120px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
 @media (max-width: 767px) {
.header-info .header-info-item .logo img {
	width: 70%;
}
.header-info .header-info-item {
	height: 80px;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.header-info .header-info-item .logo img {
	width: auto;
}
}
.header-info .header-info-item .header-info .item {
	padding-left: 55px;
	position: relative;
	margin: 0 40px;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.header-info .header-info-item .header-info .item {
	margin: 0 20px;
}
}
.header-info .header-info-item .header-info .item i {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 35px;
	color: #6cbe03;
}
.header-info .header-info-item .header-info .item span {
	color: #9a9a9a;
	display: block;
}
.header-info .header-info-item .header-info .item .title {
	font-weight: 600;
	font-size: 20px;
	color: #fff;
}.header-info .header-info-item .header-info .item .title:hover{color: #6cbe03;}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.header-info .header-info-item .header-info .item .title {
	font-size: 18px;
}
}
.header-menu {
	height: 80px;
	background: #6cbe03;
}
.navigation {
	padding: 0;
	width: 100%;
	z-index: 99;
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.navigation {
	margin-top: 21px;
}
}
 @media (max-width: 767px) {
.navigation {
	margin-top: 21px;
}
}
.navigation .navbar {
	position: relative;
	padding: 0;
}
.navigation .navbar .navbar-toggler .toggler-icon {
	width: 30px;
	height: 2px;
	background-color: #fff;
	margin: 5px 0;
	display: block;
	position: relative;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.navigation .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 7px;
}
.navigation .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
	opacity: 0;
}
.navigation .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
	top: -7px;
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.navigation .navbar .navbar-collapse {
	position: absolute;
	top: 150%;
	left: 0;
	width: 100%;
	background-color: #fff;
	z-index: 8;
	padding: 10px 16px;
	box-shadow: 0 26px 48px 0 rgba(0, 0, 0, 0.15);
}
}
 @media (max-width: 767px) {
.navigation .navbar .navbar-collapse {
	position: absolute;
	top: 150%;
	left: 0;
	width: 100%;
	background-color: #fff;
	z-index: 999999;
	padding: 10px 16px;
	box-shadow: 0 26px 48px 0 rgba(0, 0, 0, 0.15);
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.navigation .navbar .navbar-collapse {
	top: 150%;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.navigation .navbar .navbar-nav {
	margin-right: 0;
}
}
 @media (max-width: 767px) {
.navigation .navbar .navbar-nav {
	margin-right: 0;
}
}
.navigation .navbar .navbar-nav .nav-item {
	position: relative;
	padding-right: 10px;
	margin-right: 15px;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.navigation .navbar .navbar-nav .nav-item {
	margin-right: 30px;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.navigation .navbar .navbar-nav .nav-item {
	margin-right: 0px;
	margin-left: 0px;
}
}
 @media (max-width: 767px) {
.navigation .navbar .navbar-nav .nav-item {
	margin-right: 0px;
	margin-left: 0px;
}
}
.navigation .navbar .navbar-nav .nav-item a {
	font-size: 18px;
	font-weight: 600;
	padding: 0;
	font-family: "Poppins", sans-serif;
	color: #fff;
	text-transform: capitalize;
	position: relative;
	margin: 0;
	line-height: 80px;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.navigation .navbar .navbar-nav .nav-item a {
	font-size: 14px;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.navigation .navbar .navbar-nav .nav-item a {
	padding: 0;
	display: block;
	color: #404040;
	border: 0;
	margin: 0;
	line-height: 45px;
}
}
 @media (max-width: 767px) {
.navigation .navbar .navbar-nav .nav-item a {
	padding: 0;
	display: block;
	color: #404040;
	border: 0;
	margin: 0;
	line-height: 45px;
}
}
.navigation .navbar .navbar-nav .nav-item a:hover {
	color: #fff;
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.navigation .navbar .navbar-nav .nav-item a:hover {
	color: #333333;
}
}
 @media (max-width: 767px) {
.navigation .navbar .navbar-nav .nav-item a:hover {
	color: #333333;
}
}
.navigation .navbar .navbar-nav .nav-item .sub-menu {
	position: absolute;
	left: 0;
	top: 100%;
	width: 220px;
	background-color: #fff;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	z-index: 99;
	-webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
	-moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
	box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
}
.submenu {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	left: 100%;
	top: 0;
	background-color: #fff;
	width: 220px;
}
.submenu li a {
	font-size: 14px !important;
}
.submenu li a:hover {
	color: #6cbe03 !important;
}
.sub-menu li:hover .submenu {
	visibility: visible;
	opacity: 1;
}
.navigation .navbar .navbar-nav li.active::after {
	position: absolute;
	right: 0;
	top: 0;
	font-family: 'FontAwesome';
	font-weight: 400;
	content: '\f107';
	font-size: 15px;
	color: #fff;
	line-height: 85px;
}
.navigation .navbar .sub-menu li.have-submenu::after {
	color: #666565;
	content: '\f105';
	right: 15px;
	top: -20px;
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 400;
	font-size: 15px;
	color: #333;
	line-height: 85px;
}
.navigation .navbar .sub-menu li.have-submenu:hover::after {
	color: #fff;
}
 @media (max-width: 767px) {
.submenu {
	position: inherit;
	left: 0;
	opacity: 1;
	visibility: visible;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.navigation .navbar .navbar-nav .nav-item .sub-menu {
	transition: 0s;
}
}
 @media (max-width: 767px) {
.navigation .navbar .navbar-nav .nav-item .sub-menu {
	transition: 0s;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.navigation .navbar .navbar-nav .nav-item .sub-menu {
	position: relative !important;
	width: 100% !important;
	left: 0 !important;
	top: auto !important;
	opacity: 1 !important;
	visibility: visible !important;
	display: none;
	right: auto;
	-webkit-transform: translateX(0%);
	-moz-transform: translateX(0%);
	-ms-transform: translateX(0%);
	-o-transform: translateX(0%);
	transform: translateX(0%);
	-webkit-transition: all none ease-out 0s;
	-moz-transition: all none ease-out 0s;
	-ms-transition: all none ease-out 0s;
	-o-transition: all none ease-out 0s;
	transition: all none ease-out 0s;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	text-align: left;
	border-top: 0;
}
}
 @media (max-width: 767px) {
.navigation .navbar .navbar-nav .nav-item .sub-menu {
	position: relative !important;
	width: 100% !important;
	left: 0 !important;
	top: auto !important;
	opacity: 1 !important;
	visibility: visible !important;
	display: none;
	right: auto;
	-webkit-transform: translateX(0%);
	-moz-transform: translateX(0%);
	-ms-transform: translateX(0%);
	-o-transform: translateX(0%);
	transform: translateX(0%);
	-webkit-transition: all none ease-out 0s;
	-moz-transition: all none ease-out 0s;
	-ms-transition: all none ease-out 0s;
	-o-transition: all none ease-out 0s;
	transition: all none ease-out 0s;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	text-align: left;
	border-top: 0;
}
}
.navigation .navbar .navbar-nav .nav-item .sub-menu > li {
	position: relative;
}
.navigation .navbar .navbar-nav .nav-item .sub-menu > li .sub-nav-toggler {
	color: #404040;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.navigation .navbar .navbar-nav .nav-item .sub-menu > li a {
	display: block;
	padding: 8px 24px;
	position: relative;
	color: #404040;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	border-radius: 0;
	margin: 0 0;
	line-height: 30px;
}
.navigation .navbar .navbar-nav .nav-item .sub-menu > li a i {
	float: right;
	font-size: 14px;
	margin-top: 5px;
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.navigation .navbar .navbar-nav .nav-item .sub-menu > li a i {
	display: none;
}
}
 @media (max-width: 767px) {
.navigation .navbar .navbar-nav .nav-item .sub-menu > li a i {
	display: none;
}
}
.navigation .navbar .navbar-nav .nav-item .sub-menu > li a .sub-nav-toggler i {
	display: inline-block;
}
.navigation .navbar .navbar-nav .nav-item .sub-menu > li .sub-menu {
	right: auto;
	left: 100%;
	top: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.navigation .navbar .navbar-nav .nav-item .sub-menu > li .sub-menu {
	padding-left: 30px;
}
}
 @media (max-width: 767px) {
.navigation .navbar .navbar-nav .nav-item .sub-menu > li .sub-menu {
	padding-left: 30px;
}
}
.navigation .navbar .navbar-nav .nav-item .sub-menu > li .sub-menu li a::before {
	display: none;
}
.navigation .navbar .navbar-nav .nav-item .sub-menu > li:hover .sub-menu {
	opacity: 1;
	visibility: visible;
}
.navigation .navbar .navbar-nav .nav-item .sub-menu > li:hover .sub-nav-toggler {
	color: #fff;
}
.navigation .navbar .navbar-nav .nav-item .sub-menu > li:hover > a {
	background-color: #6cbe03;
	color: #fff !important;
}
.navigation .navbar .navbar-nav .nav-item .sub-menu > li:hover > a::before {
	opacity: 1;
}
.navigation .navbar .navbar-nav .nav-item:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	top: 100%;
}
.navigation .navbar .navbar-nav .nav-item .sub-nav-toggler {
	display: none;
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.navigation .navbar .navbar-nav .nav-item .sub-nav-toggler {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	padding: 10px 14px;
	font-size: 16px;
	background: none;
	border: 0;
	color: #404040;
}
}
 @media (max-width: 767px) {
.navigation .navbar .navbar-nav .nav-item .sub-nav-toggler {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	padding: 10px 14px;
	font-size: 16px;
	background: none;
	border: 0;
	color: #404040;
}
}
.navigation .navbar .navbar-nav .nav-item .sub-nav-toggler img {
	width: 30%;
}
.navigation .navbar .navbar-nav .nav-item.active a {
	color: #fff;
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.navigation .navbar .navbar-nav .nav-item.active a {
	color: #333333;
}
}
 @media (max-width: 767px) {
.navigation .navbar .navbar-nav .nav-item.active a {
	color: #333333;
}
}
.navigation .navbar .navbar-nav .nav-item.active a::before {
	width: 100%;
}
.navigation .navbar .navbar-nav .nav-item:last-child {
	margin-right: 0;
}
.navigation .navbar .navbar-btns ul {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
}
.navigation .navbar .navbar-btns ul li {
	display: inline-block;
}
.navigation .navbar .navbar-btns ul li a {
	font-size: 18px;
	color: #fff;
	margin-left: 44px;
}
.navigation .navbar .navbar-btns ul li:first-child a {
	margin-left: 0;
}
.navigation .navbar .navbar-btns ul li:last-child a {
	font-size: 30px;
}
.header-flag .flag-wrap {
	position: relative;
	top: 0px;
	margin-right: 40px;
}
.header-flag .flag-wrap .flag-item-top {
	padding-left: 0;
}
.header-flag .flag-wrap .flag-item-top .flag-bar {
	position: relative;
}
.header-flag .flag-wrap .flag-item-top .flag-bar i {
	width: 40px;
	color: #fff;
	margin-top: 2px;
}
.header-flag .flag-wrap .flag-item-top .flag-bar img {
}
.header-flag .flag-wrap .flag-item-top .flag-bar span {
	position: absolute;
	top: 0;
	left: 0;
	color: #fff;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	font-size: 15px;
	font-weight: 500;
	padding-left: 20px;
	display: flex;
	align-items: center;
}
.header-flag .flag-wrap .flag-item-top .flag-bar span i {
	padding-left: 6px;
}
.header-flag .flag-wrap .flag-item-top .flag-item-bottom {
	position: absolute;
		bottom: auto;top:200%;
	padding: 10px !important;
	-webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
	background-color: #ffffff;
	width:120px;
	left: -20px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	visibility: hidden;
	opacity: 0;
	z-index: 2;
	display: block;max-height:500px;overflow:auto;
}
.language-flag span{ font-size:14px;}li.language-flag a:hover span{ color:#6cbe03;}
.header-flag .flag-wrap .flag-item-top .flag-item-bottom::before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	content: "";
	border-top: 0;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #ffffff;
	border-left: 8px solid transparent;
	top: -8px;
	right: 57px;
}
.header-flag .flag-wrap .flag-item-top .flag-item-bottom .flag-item {
	margin-bottom: 10px;
	padding-left: 0;
	margin-right: 0;
	display: block;
	position: unset;
}
.header-flag .flag-wrap .flag-item-top .flag-item-bottom .flag-item:last-child {
	margin-bottom: 0;
}
.header-flag .flag-wrap .flag-item-top .flag-item-bottom .flag-item .flag-link {
	color: #000000;
	display: block;
	font-size: 14px;
	font-weight: 500;
}
.header-flag .flag-wrap .flag-item-top .flag-item-bottom .flag-item .flag-link img {
	width: 20px;
	margin-right: 5px;
}
.header-flag .flag-wrap .flag-item-top .flag-item-bottom .flag-item .flag-link:hover {
	color: #6cbe03;
}
.header-flag .flag-wrap .flag-item-top:hover .flag-bar span {
	color: #6cbe03;
}
.header-flag .flag-wrap .flag-item-top:hover .flag-item-bottom {
	visibility: visible;
	opacity: 1;
	
}

@media(max-width:1400px){
	.header-flag .flag-wrap .flag-item-top .flag-bar span{ position:relative;padding-left: 0;}
	.header-flag .flag-wrap{margin-right:0;}.header-flag .flag-wrap .flag-item-top .flag-bar i{width:20px;}
	}

/*===========================
    3.BANNER css 
===========================*/
.banner-area .banner-item {
	height: auto;
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
}.banner-area .banner-item a{margin:auto;}
.banner-area .banner-item::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(2, 6, 14, 0.5);
}
.banner-area .banner-item .banner-content {
	overflow: hidden;
}
.banner-area .banner-item .banner-content span {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	width: 100%;
	float: left;
}
 @media (max-width: 767px) {
.banner-area .banner-item .banner-content span {
	font-size: 16px;
}
.header-flag .flag-wrap .flag-item-top .flag-item-bottom{width:100%;left:0;padding: 10px;}
.language-flag span{ font-size:12px;}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.banner-area .banner-item .banner-content span {
	font-size: 20px;
}
}
.banner-area .banner-item .banner-content .title {
	font-family: 'seguisemibold';
	float: left;
	font-size: 130px;
	color: #fff;
	line-height: 125px;
	padding-top: 29px;
	padding-bottom: 27px;
}
 @media(max-width:1400px) {
.banner-area .banner-item .banner-content .title {
	font-size: 90px;
	line-height: 95px;
}
}
 @media(max-width:1300px) {
.banner-area .banner-item .banner-content .title {
	font-size: 60px;
	line-height: 65px;
}
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.banner-area .banner-item .banner-content .title {
	font-size: 60px;
	line-height: 65px;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.banner-area .banner-item .banner-content .title {
	font-size: 50px;
	line-height: 55px;
}
.main-btn {
	padding: 0 35px;
	line-height: 50px;
}
}
 @media (max-width: 767px) {

.banner-area .banner-item .banner-content .title {
	font-size: 30px;
	line-height:25px;padding-top:3%;padding-bottom:3%;
}
.main-btn {
	padding: 0 30px;
	line-height: 40px;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.banner-area .banner-item .banner-content .title {
	font-size: 45px;
	line-height: 35px;
}
}
.banner-area .banner-item .banner-content p {
	font-size: 22px;
	float: left;
	width: 100%;
	font-weight: 600;
	color: #fff;
	padding-bottom: 40px;
}
.banner-area .banner-item .banner-content ul {
	float: left;
}
 @media (max-width: 767px) {
.banner-area .banner-item .banner-content p {
	font-size: 16px;line-height:20px;
	padding-bottom: 10px;
}
}
.banner-area .banner-item .banner-content ul li {
	display: inline-block;
}
 @media (max-width: 767px) {
.banner-area .banner-item .banner-content ul li {
	margin-bottom: 20px;
}
}
.banner-area .banner-item .banner-content ul li a {
	margin-right: 10px;
}
.banner-area .slick-arrow {
	position: absolute;
	right: 50px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
	color: #fff;
	height: 60px;
	width: 60px;
	text-align: center;
	line-height: 60px;
	background: #6cbe03;
	font-size: 18px;
	border-radius: 50%;
	cursor: pointer;
}
.banner-area .slick-arrow.next {
	top: 57% !important;
	right: 90px !important;
}
.banner-area.banner-3-area .banner-item {
	background: #f7f9ff;
}
.bann-text {
	position: absolute;
	top: 20%;
	margin: auto;
	left: 0;
	right: 0;
	z-index: 2;
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.banner-area.banner-3-area .banner-item::before {
	width: 35%;
}
}
 @media (max-width: 767px) {
.banner-area.banner-3-area .banner-item::before {
	width: 0;
}
	 .bann-text{top:15%;}

}
.banner-area.banner-3-area .banner-item .banner-content span {
	font-size: 20px;
	color: #6cbe03;
}
 @media (max-width: 767px) {
.banner-area.banner-3-area .banner-item .banner-content span {
	font-size: 13px;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.banner-area.banner-3-area .banner-item .banner-content span {
	font-size: 17px;
}
}
.banner-area.banner-3-area .banner-item .banner-content .title {
	font-size: 100px;
	line-height: 100px;
	color: #333333;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.banner-area.banner-3-area .banner-item .banner-content .title {
	font-size: 80px;
	line-height: 80px;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.banner-area.banner-3-area .banner-item .banner-content .title {
	font-size: 70px;
	line-height: 70px;
	padding-right: 80px;
}
}
 @media (max-width: 767px) {
.banner-area.banner-3-area .banner-item .banner-content .title {
	font-size: 45px;
	line-height: 45px;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.banner-area.banner-3-area .banner-item .banner-content .title {
	font-size: 60px;
	line-height: 60px;
}
}
.banner-area.banner-3-area .banner-item .banner-content p {
	font-size: 22px;
	font-weight: 600;
	color: #686868;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.banner-area.banner-3-area .banner-item .banner-content p {
	font-size: 20px;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.banner-area.banner-3-area .banner-item .banner-content p {
	font-size: 18px;
}
}
 @media (max-width: 767px) {
.banner-area.banner-3-area .banner-item .banner-content p {
	font-size: 16px;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.banner-area.banner-3-area .banner-item .banner-content p {
	font-size: 18px;
}
}
.banner-area-2 .banner-item {
	height: 850px;
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
}
 @media only screen and (min-width: 1200px) and (max-width: 1600px) {
.banner-area-2 .banner-item {
	height: 750px;
}
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.banner-area-2 .banner-item {
	height: 640px;
}
}
.banner-area-2 .banner-item .banner-content {
	overflow: hidden;
}
.banner-area-2 .banner-item .banner-content span {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
}
 @media (max-width: 767px) {
.banner-area-2 .banner-item .banner-content span {
	font-size: 16px;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.banner-area-2 .banner-item .banner-content span {
	font-size: 20px;
}
}
.banner-area-2 .banner-item .banner-content .title {
	font-size: 110px;
	color: #fff;
	line-height: 125px;
	padding-top: 29px;
	padding-bottom: 27px;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.banner-area-2 .banner-item .banner-content .title {
	font-size: 110px;
	line-height: 110px;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.banner-area-2 .banner-item .banner-content .title {
	font-size: 110px;
	line-height: 110px;
}
}
 @media (max-width: 767px) {
.banner-area-2 .banner-item .banner-content .title {
	font-size: 45px;
	line-height: 55px;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.banner-area-2 .banner-item .banner-content .title {
	font-size: 80px;
	line-height: 90px;
}
}
.banner-area-2 .banner-item .banner-content p {
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	padding-bottom: 47px;
}
 @media (max-width: 767px) {
.banner-area-2 .banner-item .banner-content p {
	font-size: 18px;
}
}
.banner-area-2 .banner-item .banner-content ul li {
	display: inline-block;
}
 @media (max-width: 767px) {
.banner-area-2 .banner-item .banner-content ul li {
	margin-bottom: 20px;
}
}
.banner-area-2 .banner-item .banner-content ul li a {
	margin: 0 5px;
}
.banner-area-2 .slick-arrow {
	position: absolute;
	right: 50px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
	color: #fff;
	height: 60px;
	width: 60px;
	text-align: center;
	line-height: 60px;
	background: #6cbe03;
	font-size: 18px;
	border-radius: 50%;
	cursor: pointer;
}
.banner-area-2 .slick-arrow.next {
	top: 57% !important;
	right: 90px !important;
}
.page-title-area {
	height: 450px;
	position: relative;
}
.page-title-area::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(2, 6, 14, 0.6);
}
.page-title-area .page-title-content .title {
	color: #fff;
	font-size: 80px;
}
 @media (max-width: 767px) {
.page-title-area .page-title-content .title {
	font-size: 38px;
}
}
.page-title-area .page-title-content nav {
	display: inline-block;
	margin-top: 12px;
}
.page-title-area .page-title-content nav .breadcrumb {
	background-color: transparent;
	padding: 0;
	margin: 0;
}
.page-title-area .page-title-content nav .breadcrumb li {
	color: #fff;
	font-size: 26px;
	font-weight: 600;
}
 @media (max-width: 767px) {
.page-title-area .page-title-content nav .breadcrumb li {
	font-size: 18px;
}
}
.page-title-area .page-title-content nav .breadcrumb li a {
	color: #fff;
}
.breadcrumb-item + .breadcrumb-item::before {
	display: inline-block;
	color: #fff;
	content: "\f105";
	font-family: 'Font Awesome 5 Pro';
	font-weight: 400;
	padding-right: 18px;
}
.breadcrumb-item + .breadcrumb-item {
	padding-left: 20px;
}
/*===========================
    4.FEATURES css 
===========================*/
.features-area {
	position: relative;
	padding-bottom: 3%;
	z-index: 5;
}
.features-area .features-dot {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.features-area .features-thumb {
	margin-right: 70px;
	position: relative;
	z-index: 5;
}
.features-content p {
	font-size: 16px;
	margin-top: 2%;
	line-height: 25px;
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.features-area .features-thumb {
	margin-right: 0;
	margin-bottom: 30px;
}
}
 @media (max-width: 767px) {
.features-area .features-thumb {
	margin-right: 0;
	margin-bottom: 30px;
}
}
.features-area .features-thumb::before {
	position: absolute;
	content: '';
	top: 50%;
	left: -75px;
	transform: translateY(-50%);
	width: 75px;
	height: 390px;
	background: #6cbe03;
	z-index: -1;
}
.features-area .features-thumb img {
	width: 100%;
}
.features-area .features-content > span {
	font-size: 20px;
	font-weight: 700;
	color: #6cbe03;
	padding-left: 66px;
	position: relative;
}
.features-area .features-content > span::before {
	position: absolute;
	content: '';
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 3px;
	width: 45px;
	background: #6cbe03;
}
.features-area .features-content > .title {
	font-size: 50px;
	line-height: 55px;
	color: #333333;
	padding-top: 3%;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.features-area .features-content > .title {
	font-size: 40px;
	line-height: 46px;
}
}
 @media (max-width: 1400px) {
	 .features-area .features-content > .title {
    font-size: 26px;

  } 
	 }


 @media (max-width: 767px) {
.features-area .features-content > .title {
	font-size: 20px;
	line-height: 40px;
}
.features-area .features-content > span {
	font-size: 16px;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.features-area .features-content > .title {
	font-size: 26px;
	line-height: 45px;
}
}
.features-area .features-content .features-box {
	border: 2px solid #eef2fb;
	padding: 28px 15px 50px;
}
.features-area .features-content .features-box i {
	font-size: 70px;
	color: #6cbe03;
}
.features-area .features-content .features-box .title {
	font-size: 22px;
	padding-top: 5%;
	padding-bottom: 5%;
}
.features-area .features-content .features-box p {
	font-size: 15px;
	color: #686868;
	line-height: 26px;
	padding-bottom: 12px;
}
.features-area .features-content .features-box a {
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	color: #6cbe03;
	position: relative;
}
.features-area .features-content .features-box a::before {
	position: absolute;
	content: '';
	left: 0;
	bottom: -3px;
	height: 2px;
	width: 100%;
	background: #6cbe03;
}
.features-area .features-content .features-active .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
	cursor: pointer;
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 40px;
	background: #6cbe03;
	border-radius: 50%;
	color: #fff;
}
.features-area .features-content .features-active .slick-arrow.prev {
	left: 0px;
}
.features-area .features-content .features-active .slick-arrow.next {
	right: 0px;
}
.features-area.features-content-3-area {
	padding-top: 64px;
	padding-bottom: 67px;
	background: #000;
	position: relative;
}
.features-area.features-content-3-area::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: url(../images/store-pattern.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.features-area.features-content-3-area .features-counter-area {
	padding-top: 0;
}
.features-area.features-content-3-area .features-counter-area .features-counter .title {
	color: #fff;
}
.features-area.features-content-3-area .features-counter-area .features-counter span {
	color: #fff;
}
.features-area.features-content-3-area .features-counter-area .features-counter i {
	text-shadow: none;
}
.features-area.features-content-3-area.counter-about {
	background: #6cbe03;
}
.features-area.features-content-3-area.counter-about .features-counter-area .features-counter i {
	color: #fff;
}
.features-counter {
	position: relative;
	padding: 10%;
	padding-left: 0px;
	box-shadow: 0px 0px 10px 2px #dedede;
	text-align: center !important;
}
@media(max-wo=idth:767px){.features-area .features-content .features-box .title{ font-size:18px;}}


 @media only screen and (min-width: 768px) and (max-width: 991px) {
.features-counter {
	margin-top: 50px;
}
}
 @media (max-width: 767px) {
.features-counter {
	padding-left: 0px;
	padding: 0;
	padding-top: 3%;
	padding-bottom: 3%;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.features-counter {
	padding-left: 0px;
	padding-top: 0;padding-top: 3%;
}
}
.features-counter span {
	font-weight: 600;
	margin-top: 5%;
	color: #686868;
	text-transform: capitalize;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.features-counter span {
	font-size: 14px;
}
}
.features-counter .title {
	font-weight: 400;
	font-size: 50px;
	padding-top: 3px;
}
 @media (max-width: 767px) {
.features-counter .title {
	font-size: 20px;
}
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.features-counter .title {
	font-size: 40px;
}
}
.features-counter i {
	font-size: 50px;
	float: left;
	width: 100%;
	text-align: center;
	color: #6cbe03;
	text-shadow: 0px 16px 30px rgba(99, 177, 0, 0.88);
}
.features-counter-area {
	padding-top: 3%;
}
.features-2-area .features-content {
	margin-left: 80px;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.features-2-area .features-content {
	margin-left: 0;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.features-2-area .features-content {
	margin-left: 0;
}
}
 @media (max-width: 767px) {
.features-2-area .features-content {
	margin-left: 0;
}
}
.features-2-area .features-content span {
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	color: #6cbe03;
	padding-left: 70px;
	position: relative;
}
.features-2-area .features-content span::before {
	position: absolute;
	content: '';
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 3px;
	width: 45px;
	background: #6cbe03;
}
.features-2-area .features-content .title {
	font-size: 50px;
	line-height: 55px;
	padding-top: 23px;
	padding-bottom: 30px;
}
 @media (max-width: 767px) {
.features-2-area .features-content .title {
	font-size: 31px;
	line-height: 40px;
}
}
.features-2-area .features-content p {
	padding-bottom: 42px;
	font-size: 15px;
	padding-right: 10px;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.features-2-area .features-content p {
	padding-right: 0;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.features-2-area .features-content p {
	padding-right: 0;
}
}
 @media (max-width: 767px) {
.features-2-area .features-content p {
	padding-right: 0;
}
}
.features-2-area .features-items {
	margin-left: 76px;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.features-2-area .features-items {
	margin-left: 0;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.features-2-area .features-items {
	margin-left: 0;
	margin-top: 30px;
}
}
 @media (max-width: 767px) {
.features-2-area .features-items {
	margin-left: 0;
	margin-top: 30px;
}
}
.features-2-area .features-items .item {
	padding-left: 110px;
	position: relative;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.features-2-area .features-items .item {
	padding-left: 100px;
}
}
 @media (max-width: 767px) {
.features-2-area .features-items .item {
	padding-left: 0;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.features-2-area .features-items .item {
	padding-left: 110px;
}
}
.features-2-area .features-items .item i {
	position: absolute;
	left: 0;
	top: 5px;
	height: 80px;
	width: 80px;
	text-align: center;
	line-height: 80px;
	color: #fff;
	font-size: 40px;
	border-radius: 50%;
	background: #6cbe03;
	z-index: 10;
}
 @media (max-width: 767px) {
.features-2-area .features-items .item i {
	position: inherit;
	top: -20px;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.features-2-area .features-items .item i {
	position: absolute;
	top: 0px;
}
}
.features-2-area .features-items .item i::after {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	border-radius: 50%;
	z-index: -1;
	background-image: -moz-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
	background-image: -webkit-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
	background-image: -ms-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
	opacity: 0;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.features-2-area .features-items .item .title {
	font-size: 24px;
}
.features-2-area .features-items .item p {
	font-size: 15px;
	padding-top: 10px;
	padding-bottom: 12px;
	padding-right: 40px;
}
 @media (max-width: 767px) {
.features-2-area .features-items .item p {
	padding-right: 0;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.features-2-area .features-items .item p {
	padding-right: 40px;
}
}
.features-2-area .features-items .item a {
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
	color: #686868;
}
.features-2-area .features-items .item a::before {
	position: absolute;
	content: '';
	left: 0;
	bottom: -2px;
	height: 2px;
	width: 100%;
	background: #686868;
}
.features-2-area .features-items .item:hover i::after {
	opacity: 1;
}
.features-3-item-area .features-item-title {
	margin-bottom: 13px;
}
.features-3-item-area .features-item-title span {
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	color: #6cbe03;
	padding-left: 70px;
	position: relative;
}
.features-3-item-area .features-item-title span::before {
	position: absolute;
	content: '';
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 3px;
	width: 45px;
	background: #6cbe03;
}
.features-3-item-area .features-item-title .title {
	font-size: 50px;
	line-height: 55px;
	padding-top: 22px;
}
 @media (max-width: 767px) {
.features-3-item-area .features-item-title .title {
	font-size: 33px;
	line-height: 38px;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.features-3-item-area .features-item-title .title {
	font-size: 50px;
	line-height: 55px;
}
}
.features-3-item-area .features-item-text {
	margin-left: -15px;
	margin-bottom: 13px;
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.features-3-item-area .features-item-text {
	margin-left: 0;
}
}
 @media (max-width: 767px) {
.features-3-item-area .features-item-text {
	margin-left: 0;
}
}
.features-3-item-area .features-item-text p {
	font-size: 15px;
	padding-bottom: 3px;
}
.features-3-item-area .features-item-text a {
	color: #6cbe03;
	font-weight: 700;
	font-size: 15px;
	text-transform: uppercase;
	position: relative;
}
.features-3-item-area .features-item-text a::before {
	position: absolute;
	content: '';
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 2px;
	background: #6cbe03;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.features-3-item-area .features-items {
	margin-top: 30px;
}
}
@media (max-width: 767px) {
.features-3-item-area .features-items {
	margin-top: 30px;
}
}
.features-3-item-area .features-items .item {
	padding-left: 110px;
	position: relative;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.features-3-item-area .features-items .item {
	padding-left: 75px;
}
}
 @media (max-width: 767px) {
.features-3-item-area .features-items .item {
	padding-left: 0;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.features-3-item-area .features-items .item {
	padding-left: 110px;
}
}
.features-3-item-area .features-items .item i {
	position: absolute;
	left: 0;
	top: 5px;
	height: 80px;
	width: 80px;
	text-align: center;
	line-height: 80px;
	color: #fff;
	font-size: 40px;
	border-radius: 50%;
	background: #6cbe03;
	z-index: 10;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.features-3-item-area .features-items .item i {
	height: 60px;
	width: 60px;
	line-height: 60px;
	font-size: 30px;
}
}
 @media (max-width: 767px) {
.features-3-item-area .features-items .item i {
	position: inherit;
	top: -20px;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.features-3-item-area .features-items .item i {
	position: absolute;
	top: 0px;
}
}
.features-3-item-area .features-items .item i::after {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	border-radius: 50%;
	z-index: -1;
	background-image: -moz-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
	background-image: -webkit-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
	background-image: -ms-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
	opacity: 0;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.features-3-item-area .features-items .item .title {
	font-size: 24px;
}
.features-3-item-area .features-items .item p {
	font-size: 15px;
	padding-top: 10px;
	padding-bottom: 12px;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.features-3-item-area .features-items .item p {
	font-size: 13px;
	line-height: 24px;
}
}
 @media (max-width: 767px) {
.features-3-item-area .features-items .item p {
	padding-right: 0;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.features-3-item-area .features-items .item p {
	padding-right: 0px;
}
}
.features-3-item-area .features-items .item a {
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
	color: #686868;
}
.features-3-item-area .features-items .item a::before {
	position: absolute;
	content: '';
	left: 0;
	bottom: -2px;
	height: 2px;
	width: 100%;
	background: #686868;
}
.features-3-item-area .features-items .item:hover i::after {
	opacity: 1;
}
/*===========================
    5.SERVICES css 
===========================*/
.services-area {
	background: #f4f7fe;
	padding-top: 3%;
	position: relative;
	z-index: 10;
}
.services-area .single-services {
	background: #fff;
	text-align: center;
	padding-top: 40px;
	padding-bottom: 40px;
	border-radius: 15px;
	border: 3px solid #fff;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.services-area .single-services .t-img a::before {
	display: none;
}
.services-area .slick-arrow.prev {
	left: 0px;
}
.services-area .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
	cursor: pointer;
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 40px;
	background: #6cbe03;
	border-radius: 50%;
	color: #fff;
}
.services-area .slick-arrow.next {
	right: 0px;
}
.services-area .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
	cursor: pointer;
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 40px;
	background: #6cbe03;
	border-radius: 50%;
	color: #fff;
}

.services-area .col-lg-4{-ms-flex: 0 0 inherit;
    flex: 0 0 inherit;
    max-width:inherit;}
.gallery-area .col-lg-4{-ms-flex: 0 0 inherit;
    flex: 0 0 inherit;
    max-width:inherit;}
.feedback-area .col-lg-4{-ms-flex: 0 0 inherit;
    flex: 0 0 inherit;
    max-width:inherit;}
.blog-area .col-lg-4{-ms-flex: 0 0 inherit;
    flex: 0 0 inherit;
    max-width:inherit;}

 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.services-area .single-services {
	padding-left: 30px;
	padding-right: 30px;
}
}
 @media (max-width: 767px) {
.services-area .single-services {
	padding-left: 10px;
	padding-right: 10px;
}
}
.services-area .single-services .title {
	font-size: 24px;
	padding-top: 32px;
	padding-bottom: 12px;
}
.services-area .single-services p {
	font-size: 16px;
	line-height: 26px;
	padding: 0 25px 13px;
}
 @media (max-width: 767px) {
.services-area .single-services .title {
	font-size: 16px;
}
.services-area .single-services p {
	font-size: 14px;
	line-height: 14px;
}
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.services-area .single-services p {
	padding: 0 0 13px;
}
}
 @media (max-width: 767px) {
.services-area .single-services p {
	padding: 0 0 13px;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.services-area .single-services p {
	padding: 0px 25px 13px;
}
}
.services-area .single-services a {
	font-size: 15px;
	font-weight: 700;
	color: #686868;
	text-transform: uppercase;
	position: relative;
	padding: 0;
}
.services-area .single-services a::before {
	position: absolute;
	content: '';
	left: 0px;
	bottom: -3px;
	height: 2px;
	width: 100%;
	background: #686868;
}
.services-area .single-services:hover {
	border-color: #6cbe03;
}
.services-area .services-icon1 {
	position: absolute;
	top: 120px;
	left: 0;
	z-index: -1;
}
 @media (max-width: 767px) {
.services-area .services-icon1 {
	display: none;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.services-area .services-icon1 {
	display: block;
}
}
.services-area .services-icon1 i {
	height: 300px;
	width: 300px;
	font-size: 135px;
	color: #fff;
	background-image: -moz-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
	background-image: -webkit-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
	background-image: -ms-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
	border-radius: 50%;
	text-align: center;
	line-height: 300px;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.services-area .services-icon1 i {
	height: 100px;
	width: 100px;
	line-height: 100px;
	font-size: 50px;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.services-area .services-icon1 i {
	height: 100px;
	width: 100px;
	line-height: 100px;
	font-size: 50px;
}
}
 @media (max-width: 767px) {
.services-area .services-icon1 i {
	height: 100px;
	width: 100px;
	line-height: 100px;
	font-size: 50px;
}
}
.services-area .services-icon2 {
	position: absolute;
	bottom: 60px;
	right: 10px;
	z-index: -1;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.services-area .services-icon2 {
	bottom: 10px;
}
}
.services-area .services-icon2 i {
	height: 125px;
	width: 125px;
	font-size: 64px;
	color: #fff;
	background-image: -moz-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
	background-image: -webkit-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
	background-image: -ms-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
	border-radius: 50%;
	text-align: center;
	line-height: 125px;
}
.services-3-area {
	padding-top: 122px;
}
.services-3-area .services-box {
	border: 1px solid #dcdcdc;
	padding: 0px 30px 30px 30px;
	margin-top: 30px;
}
.services-3-area .services-box .services-item:hover .services-thumb img {
	transform: scale(1.1);
}
.services-3-area .services-box .services-item .services-thumb {
	overflow: hidden;
}
.services-3-area .services-box .services-item .services-thumb img {
	width: 100%;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	transform: scale(1);
}
.services-3-area .services-box .services-item .services-content {
	padding-top: 35px;
}
.services-3-area .services-box .services-item .services-content .title {
	font-size: 24px;
}
.services-3-area .services-box .services-item .services-content p {
	padding: 11px 20px;
	font-size: 15px;
}
 @media (max-width: 767px) {
.services-3-area .services-box .services-item .services-content p {
	padding: 11px 0;
}
}
.services-3-area .services-box .services-item .services-content a {
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	color: #686868;
	position: relative;
}
.services-3-area .services-box .services-item .services-content a::before {
	position: absolute;
	content: '';
	left: 0;
	bottom: -2px;
	height: 2px;
	width: 100%;
	background: #686868;
}
/*===========================
    9.STORE css 
===========================*/
.store-area {
	background: #6cbe03;
	position: relative;
}
.store-area::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: url(../images/f-products.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.store-area .store-content {
	margin-bottom: 30px;
}
}
 @media (max-width: 767px) {
.store-area .store-content {
	margin-bottom: 3%;
}
}
.store-area .store-content span {
	font-size: 20px;
	font-weight: 700;
	text-transform: capitalize;
	color: #fff;
	padding-left: 65px;
	position: relative;
}
.store-area .store-content span::before {
	position: absolute;
	content: '';
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 3px;
	width: 45px;
	background: #fff;
}
.store-area .store-content .title {
	font-size: 50px;
	line-height: 55px;
	color: #fff;
	letter-spacing: -1px;
	padding-top: 3%;
	padding-bottom: 3%;
}
 @media(max-width:1400px) {
	.store-area .store-content .title{ font-size: 26px;}
	 
	 }



 @media(max-width:767px) {
.store-area .store-content .title {
	font-size: 20px;
	line-height: 25px;
}
.store-area .store-content span {
	font-size: 16px;
}
}



 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.store-area .store-content .title {
	font-size: 40px;
	line-height: 46px;
}
}
.store-area .store-content p {
	color: #fff;
	padding-right: 5px;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.store-area .store-content p {
	font-size: 15px;
}
}
.store-area .store-item {
	padding-top: 3%;
	border-radius: 15px;
}
.store-area .store-item img {
	display: inline-block;
}
.store-area .store-item .store-title {
	padding: 44px 35px 8px;
}
.store-area .store-item .store-title .title {
	font-size: 24px;
	text-align: center;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.store-area .store-item .store-title .title {
	font-size: 20px;
}
}
 @media (max-width: 767px) {
.store-area .store-item .store-title .title {
	font-size: 16px;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.store-area .store-item .store-title .title {
	font-size: 24px;
}
}
.store-area .store-item .store-title span {
	font-size: 14px;
	color: #989898;
}
.store-area .store-item .store-title span i {
	color: #f4a700;
	padding-right: 5px;
}
.store-area .store-item .store-price {
	padding-left: 35px;
	padding-right: 35px;
	padding-bottom: 45px;
}
.store-area .store-item .store-price p {
	font-size: 16px;
	color: #666;
}
 @media(max-width:767px) {
.store-area .store-item .store-price p {
	font-size: 14px;
	line-height: 25px;
}
}
.store-area .store-item .store-price ul li {
	display: inline-block;
}
.store-area .store-item .store-price ul li i {
	color: #f4a700;
	font-size: 14px;
	padding-left: 4px;
}
.store-area .store-active .slick-arrow {
	position: absolute;
	bottom: 29px;
	z-index: 9;
	cursor: pointer;
	height: 60px;
	width: 60px;
	text-align: center;
	line-height: 54px;
	border: 3px solid #fff;
	border-radius: 50%;
	color: #fff;
	font-size: 18px;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.store-area .store-active .slick-arrow {
	bottom: 35px;
}
}
.store-area .store-active .slick-arrow:hover {
	background: #fff;
	color: #6cbe03;
}
.store-area .store-active .slick-arrow.prev {
	left: -385px;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.store-area .store-active .slick-arrow.prev {
	left: -310px;
}
}
.store-area .store-active .slick-arrow.next {
	left: -315px;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.store-area .store-active .slick-arrow.next {
	left: -230px;
}
}
.store-2-area {
	background: #6cbe03;
	position: relative;
}
.store-2-area::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: url(../images/store-pattern.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.store-2-area .section-title .title {
	padding: 25px 10px 0;
}
.store-2-area .store-item {
	padding-top: 30px;
	border-radius: 15px;
	position: relative;
	z-index: 10;
}
.store-2-area .store-item::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: #ff583d;
	z-index: -2;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	border-radius: 15px;
}
.store-2-area .store-item::after {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: #fff;
	z-index: -1;
	border-radius: 15px;
}
.store-2-area .store-item img {
	display: inline-block;
}
.store-2-area .store-item .store-title {
	padding: 44px 35px 8px;
}
.store-2-area .store-item .store-title .title {
	font-size: 24px;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.store-2-area .store-item .store-title .title {
	font-size: 20px;
}
}
 @media (max-width: 767px) {
.store-2-area .store-item .store-title .title {
	font-size: 20px;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.store-2-area .store-item .store-title .title {
	font-size: 24px;
}
}
.store-2-area .store-item .store-title span {
	font-size: 14px;
	color: #989898;
}
.store-2-area .store-item .store-title span i {
	color: #f4a700;
	padding-right: 5px;
}
.store-2-area .store-item .store-price {
	padding-left: 35px;
	padding-right: 35px;
	padding-bottom: 45px;
}
.store-2-area .store-item .store-price p {
	font-size: 18px;
	font-weight: 700;
	color: #fe2000;
}
.store-2-area .store-item .store-price ul li {
	display: inline-block;
}
.store-2-area .store-item .store-price ul li i {
	color: #f4a700;
	font-size: 14px;
	padding-left: 4px;
}
.store-2-area .store-item:hover::before {
	transform: rotate(-6deg);
	left: -14px;
}
/*===========================
    7.GALLERY css 
===========================*/
.gallery-area {
	padding-top: 3%;
	padding-bottom: 3%;
	position: relative;
	z-index: 10;
}
.gallery-area .slick-arrow.prev {
	left: 0px;
}
.gallery-area .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
	cursor: pointer;
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 40px;
	background: #6cbe03;
	border-radius: 50%;
	color: #fff;
}
.gallery-area .slick-arrow.next {
	right: 0px;
}
.gallery-area .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
	cursor: pointer;
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 40px;
	background: #6cbe03;
	border-radius: 50%;
	color: #fff;
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.gallery-area .gallery-item {
	margin-top: 30px;
}
}
 @media (max-width: 767px) {
.gallery-area .gallery-item {
	margin-top: 0;
}
}
.gallery-area .gallery-item .gallery-thumb {
	overflow: hidden;text-align: center;
}
.gallery-area .gallery-item .gallery-thumb img {
	width: 100%;
	transform: scale(1);
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.gallery-area .gallery-item .gallery-content {
	padding-left: 22px;
	position: relative;
	margin-top: 35px;
}
.gallery-area .gallery-item .gallery-content::before {
	position: absolute;
	content: '';
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 100%;
	width: 4px;
	background: #6cbe03;
}
.gallery-area .gallery-item .gallery-content .title {
	font-size: 24px;
	padding-bottom: 2px;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.gallery-area .gallery-item .gallery-content .title {
	font-size: 22px;
}
}
 @media (max-width: 767px) {
.gallery-area .gallery-item .gallery-content .title {
	font-size: 16px;
}
}
.gallery-area .gallery-item .gallery-content span {
	width: 80%;
	color: #666;
	margin-top: 3%;
}
 @media (max-width: 767px) {
.gallery-area .gallery-item .gallery-content span {
	font-size: 14px;
}
}
.gallery-area .gallery-item .gallery-content a {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	border: 2px solid #6cbe03;
	height: 45px;
	width: 45px;
	text-align: center;
	line-height: 43px;
	color: #6cbe03;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.gallery-area .gallery-item .gallery-content a:hover {
	background: #6cbe03;
	color: #fff;
}
.gallery-area .gallery-item:hover .gallery-thumb img {
	transform: scale(1.1);
}
.gallery-area .shape-1 {
	position: absolute;
	left: 225px;
	bottom: 140px;
	z-index: -1;
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.gallery-area .shape-1 {
	left: 30px;
}
}
 @media (max-width: 767px) {
.gallery-area .shape-1 {
	display: none;
}
}
.gallery-area .shape-2 {
	position: absolute;
	right: 155px;
	top: 125px;
	z-index: -1;
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.gallery-area .shape-2 {
	right: 30px;
}
}
 @media (max-width: 767px) {
.gallery-area .shape-2 {
	display: none;
}
}
.gallery-area.gallery-3-area .section-title span {
	margin-left: 65px;
}
.gallery-area.gallery-3-area .section-title span::after {
	display: none;
}
.gallery-area.gallery-3-area .gallery-box {
	position: relative;
	overflow: hidden;
}
.gallery-area.gallery-3-area .gallery-box:hover img {
	transform: scale(1.1);
}
.gallery-area.gallery-3-area .gallery-box img {
	width: 100%;
	transform: scale(1);
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.gallery-area.gallery-3-area .gallery-box .gallery-overlay {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.gallery-area.gallery-3-area .gallery-box .gallery-overlay .item {
	padding-bottom: 37px;
}
.gallery-area.gallery-3-area .gallery-box .gallery-overlay .item .title {
	font-size: 24px;
	color: #fff;
}
 @media (max-width: 767px) {
.gallery-area.gallery-3-area .gallery-box .gallery-overlay .item .title {
	font-size: 20px;
}
}
.gallery-area.gallery-3-area .gallery-box .gallery-overlay .item span {
	color: #fff;
	font-weight: 600;
	padding-top: 8px;
}
.gallery-area.gallery-3-area .gallery-active .slick-arrow {
	position: absolute;
	top: -110px;
	z-index: 9;
	cursor: pointer;
	height: 60px;
	width: 60px;
	text-align: center;
	line-height: 60px;
	font-size: 18px;
	color: #333333;
	border-radius: 50%;
	background-image: -moz-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
	background-image: -webkit-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
	background-image: -ms-linear-gradient(-49deg, #6cbe03 0%, #b0b302 60%, #f4a700 100%);
	z-index: 10;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.gallery-area.gallery-3-area .gallery-active .slick-arrow::before {
	background: #eef2fb;
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	border-radius: 50%;
	z-index: -1;
	opacity: 1;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.gallery-area.gallery-3-area .gallery-active .slick-arrow:hover {
	color: #fff;
}
.gallery-area.gallery-3-area .gallery-active .slick-arrow:hover::before {
	opacity: 0;
}
.gallery-area.gallery-3-area .gallery-active .slick-arrow.prev {
	right: 85px;
}
.gallery-area.gallery-3-area .gallery-active .slick-arrow.next {
	right: 15px;
}
.gallery-page-area {
	padding-top: 123px;
}
.gallery-page-area .project-menu {
	padding-bottom: 13px;
}
.gallery-page-area .project-menu ul li {
	display: inline-block;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	color: #333333;
	font-family: "Poppins", sans-serif;
	margin: 0 14px;
}
 @media (max-width: 767px) {
.gallery-page-area .project-menu ul li {
	font-size: 14px;
	margin: 0 5px;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.gallery-page-area .project-menu ul li {
	font-size: 16px;
	margin: 0 5px;
}
}
.gallery-page-area .project-menu ul li.active {
	color: #6cbe03;
}
.gallery-page-area .gallery-item img {
	width: 100%;
}
/*===========================
  Case css 
===========================*/
.feedback-area {
	padding-bottom: 3%;
	padding-top: 3%;
	background: #02060e;
	position: relative;
}
.feedback-area::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: url(../images/store-pattern.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.feedback-area .section-title {
	padding-bottom: 3%;
}
.feedback-area .section-title .title {
	color: #fff;
}
.feedback-area .feedback-content .feedback-user {
	text-align: center;
}
.feedback-area .feedback-content .feedback-user a {
	width: 100%;
	float: left;
}
.feedback-area .feedback-content .feedback-user img {
	width: 100%;
}
.feedback-content {
	background-color: #fff;
	overflow: hidden;
}
.caseleft {
	width: 100%;
	float: left;
}
.caseright {
	width: 100%;
	float: left;
	padding: 5%;
}
 @media (max-width: 767px) {
.feedback-area .feedback-content .feedback-user {
	text-align: left;
}
}
.feedback-area .feedback-content .feedback-user i {
	font-size: 50px;
	color: #6cbe03;
	padding-top: 33px;
	padding-right: 45px;
}
.feedback-area .feedback-content .feedback-user img {
	display: block;
}
.feedback-area .feedback-content span {
	width: 100%;
	float: left;
}
.feedback-area .feedback-content span a {
	font-size: 24px;
	color: #333;
	font-weight: bold;
}
.feedback-area .feedback-content p {
	width: 100%;
	float: left;
	margin-top: 2%;
	font-size: 16px;
	line-height: 26px;
	color: #666;
}
.feedback-area .feedback-content span a {
	font-size: 24px;
	font-family: 'seguisemibold';
}
 @media (max-width: 767px) {
.feedback-area .feedback-content span a {
	font-size: 16px;
}
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {

}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.feedback-area .feedback-content p {

}
}
 @media (max-width: 767px) {
.feedback-area .feedback-content p {
	font-size: 14px;
	line-height: 20px;
	padding-right: 0;
	margin-left: 0;
}
}
.feedback-area .feedback-active .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
	cursor: pointer;
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 40px;
	background: #6cbe03;
	border-radius: 50%;
	color: #fff;
}
.feedback-area .feedback-active .slick-arrow:hover {
	background: #6cbe03;
	border-color: #6cbe03;
	color: #fff;
}
.feedback-area .feedback-active .slick-arrow.prev {
	left: 0;
}
.feedback-area .feedback-active .slick-arrow.next {
	right: 0;
}
.feedback-area .feedback-active .slick-dots {
	position: absolute;
	left: 50%;
	bottom: -20px;
	transform: translateX(-50%);
}
.feedback-area .feedback-active .slick-dots li {
	display: inline-block;
}
.feedback-area .feedback-active .slick-dots li button {
	font-size: 0;
	background-color: transparent;
	border: 3px solid #4b5f88;
	border-radius: 50%;
	height: 20px;
	width: 20px;
	margin: 0 7px;
}
.feedback-area .feedback-active .slick-dots li.slick-active button {
	border-color: #6cbe03;
}
.feedback-title-area {
	background: #02060e;
	position: relative;
	margin-top: 116px;
	padding-top: 122px;
	padding-bottom: 570px;
}
.feedback-title-area::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: url(../images/store-pattern.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.feedback-title-area .section-title {
	padding-bottom: 55px;
}
.feedback-title-area .feedback-item {
	background: #fff;
	padding: 24px 35px 15px;
	box-shadow: 0px 0px 59.4px 0.6px rgba(2, 6, 14, 0.1);
	margin-top: 30px;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.feedback-title-area .feedback-item {
	padding: 24px 20px 15px;
}
}
 @media (max-width: 767px) {
.feedback-title-area .feedback-item {
	padding: 24px 15px 15px;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.feedback-title-area .feedback-item {
	padding: 24px 35px 15px;
}
}
.feedback-title-area .feedback-item .feedback-info {
	padding-left: 105px;
	position: relative;
}
.feedback-title-area .feedback-item .feedback-info img {
	position: absolute;
	left: 0;
	top: -50px;
	box-shadow: 0px 0px 59.4px 0.6px rgba(2, 6, 14, 0.2);
	overflow: hidden;
	border-radius: 0px 8px 8px 8px;
}
.feedback-title-area .feedback-item .feedback-info .title {
	font-size: 18px;
}
.feedback-title-area .feedback-item .feedback-info span {
	font-size: 14px;
	font-weight: 600;
	color: #6cbe03;
}
.feedback-title-area .feedback-item p {
	font-size: 15px;
	padding-top: 20px;
}
.feedback-title-area .feedback-item .feedback-review ul li {
	display: inline-block;
	font-size: 18px;
	color: #f4a700;
	margin-right: 2px;
}
.feedback-title-area .feedback-item .feedback-review ul.quote li {
	margin-right: 0;
	font-size: 50px;
	color: #6cbe03;
}
.feedback-title-area .feedback-2-active .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: 60px;
	width: 60px;
	text-align: center;
	line-height: 60px;
	background: #fff;
	color: #6cbe03;
	border-radius: 50%;
	cursor: pointer;
	z-index: 9;
	font-size: 18px;
}
.feedback-title-area .feedback-2-active .slick-arrow.prev {
	left: -55px;
}
.feedback-title-area .feedback-2-active .slick-arrow.next {
	right: -55px;
}
.feedback-title-area .feedback-2-active .slick-dots {
	position: absolute;
	left: 50%;
	bottom: -98px;
	transform: translateX(-50%);
}
.feedback-title-area .feedback-2-active .slick-dots li {
	display: inline-block;
}
.feedback-title-area .feedback-2-active .slick-dots li button {
	font-size: 0;
	border: 3px solid #4b5f88;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	background: transparent;
	margin: 0 7px;
}
.feedback-title-area .feedback-2-active .slick-dots li.slick-active button {
	border-color: #6cbe03;
}
/*===========================
zidu=ingyi css 
===========================*/
.faq-area {
	padding-top: 3%;
	padding-bottom: 3%;
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.faq-area .faq-content {
	margin-bottom: 30px;
}
}
 @media (max-width: 767px) {
.faq-area .faq-content {
	margin-bottom: 30px;
}
}
.faq-area .faq-content span {
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	color: #6cbe03;
	padding-left: 70px;
	position: relative;
}
.faq-area .faq-content span::before {
	position: absolute;
	content: '';
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 3px;
	width: 45px;
	background: #6cbe03;
}
.faq-area .faq-content .title {
	font-size: 50px;
	line-height: 55px;
	padding-top: 3%;
	padding-bottom: 3%;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.faq-area .faq-content .title {
	font-size: 40px;
	line-height: 46px;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.faq-area .faq-content .title {
	font-size: 26px;
	line-height: 25px;
}
}
 @media (max-width: 767px) {
.faq-area .faq-content .title {
	font-size: 20px;
	line-height: 25px;
}
.faq-area .faq-content span {
	font-size: 16px;
}
}

.faq-area .faq-content p {
	font-size: 15px;
	padding-right: 50px;
	color: #686868;
	padding-bottom: 3%;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.faq-area .faq-content p {
	font-size: 14px;
	padding-right: 0;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.faq-area .faq-content p {
	padding-right: 0;
}
}
 @media (max-width: 767px) {
.faq-area .faq-content p {
	padding-right: 0;
	line-height: 25px;
}
}
.faq-area .accordion-item {
	margin-top: -10px;
}
.faq-area .accordion-item .accordion .card {
	border: 0 !important;
}
.faq-area .accordion-item .accordion .card .card-header {
	padding: 0;
	background-color: transparent;
	border-bottom: 0 !important;
}
.faq-area .accordion-item .accordion .card .card-header h2 .btn {
	text-decoration: none;
	font-size: 18px;
	font-weight: 600;
	color: #6cbe03;
	padding: 0 !important;
	border-bottom: 2px solid #6cbe03;
	border-radius: 0;
	display: block;
	width: 100%;
	text-align: left;
	line-height: 50px;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.faq-area .accordion-item .accordion .card .card-header h2 .btn {
	font-size: 17px;
}
}
.faq-area .accordion-item .accordion .card .card-header h2 .btn.collapsed {
	padding: 0;
	font-size: 18px;
	font-weight: 600;
	color: #333333;
	text-decoration: none;
	border-bottom: 0;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.faq-area .accordion-item .accordion .card .card-header h2 .btn.collapsed {
	font-size: 17px;
}
}
.faq-area .accordion-item .accordion .card .card-body {
	border-bottom: 0 !important;
	padding: 0;
}
.faq-area .accordion-item .accordion .card .card-body p {
	padding-right: 85px;
	padding-top: 22px;
	padding-bottom: 15px;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.faq-area .accordion-item .accordion .card .card-body p {
	padding-right: 0;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.faq-area .accordion-item .accordion .card .card-body p {
	padding-right: 0;
}
}
 @media (max-width: 767px) {
.faq-area .accordion-item .accordion .card .card-body p {
	padding-right: 0;
}
}
/*===========================
news css 
===========================*/
.blog-area {
	background: #f4f7fe;
	padding-top: 3%;
	padding-bottom: 3%;
	position: relative;
	z-index: 10;
}
.blog-area .blog-item {
	padding: 35px 40px 40px;
	position: relative;
	z-index: 10;
}
.blog-area .blog-item.active::before, .blog-area .blog-item:hover::before {
	background-color: rgba(2, 6, 14, 0.7);
}
.blog-area .blog-item.active span, .blog-area .blog-item:hover span {
	color: #fff;
}
.blog-area .blog-item.active span i, .blog-area .blog-item:hover span i {
	color: #fff;
}
.blog-area .blog-item.active .title, .blog-area .blog-item:hover .title {
	color: #fff;
}
.blog-area .blog-item.active a, .blog-area .blog-item:hover a {
	color: #fff;
}
.blog-area .blog-item.active a::before, .blog-area .blog-item:hover a::before {
	background: #fff;
}
.blog-area .blog-item::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #fff;
	z-index: -1;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.blog-area .blog-item span {
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.blog-area .blog-item span i {
	color: #6cbe03;
	padding-right: 6px;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.blog-area .blog-item .title {
	font-size: 24px;
	line-height: 35px;
	padding-bottom: 18px;
	padding-top: 140px;
	font-weight: 600;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.blog-area .slick-arrow.prev {
	left: 0px;
}
.blog-area .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
	cursor: pointer;
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 40px;
	background: #6cbe03;
	border-radius: 50%;
	color: #fff;
}
.blog-area .slick-arrow.next {
	right: 0px;
}
.blog-area .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
	cursor: pointer;
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 40px;
	background: #6cbe03;
	border-radius: 50%;
	color: #fff;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.blog-area .blog-item .title {
	font-size: 18px;
	line-height: 28px;
}
}
 @media (max-width: 767px) {
.blog-area .blog-item .title {
	font-size: 16px;
	line-height: 25px;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.blog-area .blog-item .title {
	font-size: 16px;
	line-height: 25px;
}
}
.blog-area .blog-item a {
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 700;
	color: #686868;
	position: relative;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.blog-area .blog-item a::before {
	position: absolute;
	content: '';
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 2px;
	background: #686868;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.blog-area .shape-1 {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}
.blog-area .shape-1 img {
	width: 100%;
}
 @media only screen and (min-width: 1200px) and (max-width: 1600px) {
.blog-area .shape-1 img {
	width: 80%;
}
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.blog-area .shape-1 img {
	width: 60%;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.blog-area .shape-1 img {
	width: 50%;
}
}
 @media (max-width: 767px) {
.blog-area .shape-1 img {
	width: 40%;
}
}
.blog-area .shape-2 {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
	text-align: right;
}
.blog-area .shape-2 img {
	width: 100%;
}
 @media only screen and (min-width: 1200px) and (max-width: 1600px) {
.blog-area .shape-2 img {
	width: 80%;
}
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.blog-area .shape-2 img {
	width: 80%;
}
}
/*===========================
FARMS css 
===========================*/
.farms-area {
	position: relative;
	z-index: 10;
	height: 655px;
}

 @media(max-width:1400px) {
	.farms-area { 
		height: auto;padding: 3%;
	}
	 }


 @media(max-width:767px) {
.farms-area {
	height: auto;
	padding: 3%;
}
}
.farms-area::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #02060e;
	opacity: 0.549;
	z-index: -1;
}
.farms-area .farms-content span {
	font-size: 24px;
	color: #fff;
	font-weight: 700;
}
.farms-area .farms-content .title {
	font-size: 70px;
	line-height: 70px;
	color: #fff;
	padding-top: 3%;
	padding-bottom: 3%;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.farms-area .farms-content .title {
	font-size: 40px;
	line-height: 30px;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.farms-area .farms-content .title {
	font-size: 60px;
	line-height: 60px;
}
}
 @media (max-width: 767px) {
.farms-area .farms-content .title {
	font-size: 20px !important;
	line-height: 25px !important;
}
.farms-area .farms-content span {
	font-size: 16px;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.farms-area .farms-content .title {
	font-size: 41px;
	line-height: 44px;
}
}
.farms-area .play {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.farms-area .play a {
	height: 150px;
	width: 150px;
	text-align: center;
	line-height: 150px;
	background: #fff;
	border-radius: 50%;
	color: #6cbe03;
	font-size: 30px;
}
 @media (max-width: 767px) {
.farms-area .play a {
	display: none;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.farms-area .play a {
	display: block;
}
}
/*===========================
    13.FOOTER css 
===========================*/
.footer-area {
	background: #161616;
	padding-top: 3%;width:100%;float:left;
}
.footer-area .footer-top {
	padding-top: 3%;
	padding-bottom: 75px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	border-bottom: 2px solid #1e1e1e;
	margin-bottom: 46px;
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.footer-area .footer-top .footer-menu {
	display: none;
}
}
 @media (max-width: 767px) {
.footer-area .footer-top .footer-menu {
	display: none;
}
}
.footer-area .footer-top .footer-menu ul li {
	display: inline-block;
}
.footer-area .footer-top .footer-menu ul li a {
	font-size: 18px;
	font-weight: 600;
	color: #adadad;
	margin-left: 52px;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.footer-area .footer-top .footer-menu ul li a {
	font-size: 16px;
	margin-left: 30px;
}
}
.footer-area .footer-top .footer-menu ul li a:hover, .footer-area .footer-top .footer-menu ul li a.active {
	color: #fff;
}
.footer-area .footer-content {
	margin-top: 30px;
}
.footer-area .footer-content li {
	display: inline-block;margin-bottom:10px;
}
.footer-area .footer-content li a i {
	color: #5c5c5c !important;
	padding-right: 0px !important;
}
.footer-area .footer-content li a {
	font-size: 14px !important;
	padding-top: 0px !important;
	line-height: 37px !important;
	color: #5c5c5c !important;
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 37px;
	border: 2px solid #2f2f2f;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	margin-right: 3px;
}
.footer-area .footer-content li a:hover {
	background: #6cbe03 !important;
	border-color: #6cbe03 !important;
	color: #fff !important;
}
.footer-area .footer-content li a:hover i {
	color: #fff !important;
}
.footer-area .footer-list {
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.footer-area .footer-list {
	margin-left: 0;
}
}
 @media (max-width: 767px) {
.footer-area .footer-list {
	margin-left: 0;
}
}
.footer-area .footer-list .title {
	font-size: 22px;
	color: #fff;
	padding-bottom: 20px;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.footer-area .footer-list .title {
	font-size: 19px;
}
}
.footer-area .footer-list ul li a {
	color: #bbbbbb;
	font-size: 15px;
	line-height: 32px;
	margin-left: -22px;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.footer-area .footer-list ul li a {
	font-size: 12px;
}
}
.footer-area .footer-list ul li a i {
	opacity: 0;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	padding-right: 6px;
}
.footer-area .footer-list ul li a:hover {
	color: #6cbe03;
	margin-left: 0;
}
.footer-area .footer-list ul li a:hover i {
	opacity: 1;
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.footer-area .footer-list.footer-list-2 {
	margin-left: 0;
}
}
 @media (max-width: 767px) {
.footer-area .footer-list.footer-list-2 {
	margin-left: 0;
}
}
.footer-area .footer-info .title {
	font-size: 28px;
	line-height: 37px;
	font-weight: 500;
	color: #fff;
	padding-bottom: 9px;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.footer-area .footer-info .title {
	font-size: 20px;
	line-height: 30px;
}
}
.footer-area .footer-info ul li a {
	color: #bbb;
	font-size: 18px;
	line-height: 32px;
	padding-top: 8px;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.footer-area .footer-info ul li a {
	font-size: 15px;
}
}
.footer-area .footer-info ul li a i {
	color: #6cbe03;
	padding-right: 6px;
}
.footer-area .footer-copyright {
	background: #111;
	margin-top: 3%;
	border-top: solid 1px rgba(255,255,255,.2);
}
.footer-area .footer-copyright .footer-copyright-content {
	height: 60px;
}
.footer-area .footer-copyright .footer-copyright-content ul {
	float: right;
	line-height: 60px;
}
 @media (max-width: 767px) {
.footer-area .footer-copyright .footer-copyright-content {
	height: auto;
	text-align: center;
}
}
.footer-area .footer-copyright .footer-copyright-content p {
	line-height: 60px;
	font-size: 14px;
	color: #727272;
	margin-right: 50px;
	float: left;
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.footer-area .footer-copyright .footer-copyright-content p {
	padding: 0 30px;
}
}
 @media (max-width: 767px) {
.footer-area .footer-copyright .footer-copyright-content p {
	margin-right: 0;
	padding: 0;
	line-height: 27px;
}
}
.footer-area .footer-copyright .footer-copyright-content p span {
	color: #6cbe03;
}
.footer-area .footer-copyright .footer-copyright-content ul li {
	display: inline-block;
	margin-left: 26px;
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.footer-area .footer-copyright .footer-copyright-content ul li {
	margin-left: 16px;
}
}
 @media (max-width: 767px) {
.footer-area .footer-copyright .footer-copyright-content ul li {
	margin-left: 0px;
	margin: 10px 6px;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.footer-area .footer-copyright .footer-copyright-content ul li {
	margin-left: 0;
	margin: 10px;
}
}
.footer-area .footer-copyright .footer-copyright-content ul li a {
	font-size: 14px;
	color: #717171;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
 @media (max-width: 767px) {
.footer-area .footer-copyright .footer-copyright-content ul li a {
	font-size: 12px;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.footer-area .footer-copyright .footer-copyright-content ul li a {
	font-size: 14px;
}
}
.footer-area .footer-copyright .footer-copyright-content ul li a:hover {
	color: #6cbe03;
}
.footer-area.footer-3-area {
	padding-top: 46px;
	background: #161616;
}
.footer-area.footer-3-area .footer-content p {
	padding-right: 0;
}
.footer-area.footer-3-area .footer-list {
	margin-left: 42px;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.footer-area.footer-3-area .footer-list {
	margin-left: 0;
}
}
 @media (max-width: 767px) {
.footer-area.footer-3-area .footer-list {
	margin-left: 0;
}
}
.footer-area.footer-3-area .footer-info {
	margin-top: 26px;
	margin-left: 58px;
	margin-right: -12px;
}
 @media only screen and (min-width: 992px) and (max-width: 1200px) {
.footer-area.footer-3-area .footer-info {
	margin-left: 30px;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.footer-area.footer-3-area .footer-info {
	margin-left: 0;
	margin-right: 35px;
}
}
 @media (max-width: 767px) {
.footer-area.footer-3-area .footer-info {
	margin-left: 0;
	margin-right: 0px;
}
}
 @media only screen and (min-width: 576px) and (max-width: 767px) {
.footer-area.footer-3-area .footer-info {
	margin-left: 0;
	margin-right: 220px;
}
}
.footer-area.footer-3-area .footer-info .title {
	font-size: 22px;
	color: #fff;
	padding-bottom: 20px;
	font-weight: 700;
	padding-bottom: 5px;
}
.footer-area.footer-3-area .footer-instagram {
	margin-top: 26px;
	margin-left: -30px;
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.footer-area.footer-3-area .footer-instagram {
	margin-left: 0;
}
}
 @media (max-width: 767px) {
.footer-area.footer-3-area .footer-instagram {
	margin-left: 0;
}
}
.footer-area.footer-3-area .footer-instagram .title {
	color: #fff;
	font-size: 22px;
	padding-bottom: 25px;
}
.footer-area.footer-3-area .footer-instagram ul {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}
.footer-area.footer-3-area .footer-instagram ul li {
	margin: 10px 5px 0;
}
.footer-area.footer-3-area .footer-instagram ul li .item {
	position: relative;
}
.footer-area.footer-3-area .footer-instagram ul li .item::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: #6cbe03;
	opacity: 0;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.footer-area.footer-3-area .footer-instagram ul li .item a {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #fff;
	transform: translate(-50%, -50%);
	font-size: 24px;
	opacity: 0;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.footer-area.footer-3-area .footer-instagram ul li .item:hover::before {
	opacity: .7;
}
.footer-area.footer-3-area .footer-instagram ul li .item:hover a {
	opacity: 1;
}
.footer-area.footer-3-area .footer-copyright.footer-copyright-2 {
	background: #161616;
}
.footer-area.footer-3-area .footer-copyright.footer-copyright-2 .footer-copyright-content {
	position: relative;
	line-height: 75px;
	height: auto;
}
.footer-area.footer-3-area .footer-copyright.footer-copyright-2 .footer-copyright-content::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 2px;
	background: #292929;
}
.footer-area.footer-3-area .footer-copyright.footer-copyright-2 .footer-copyright-content p {
	background-color: transparent;
	padding: 0;
	margin: 0;
}
 @media (max-width: 767px) {
.footer-area.footer-3-area .footer-copyright.footer-copyright-2 .footer-copyright-content ul {
	line-height: 10px;
}
}
.footer-area.footer-contact .footer-top {
	padding-top: 80px;
}
/*===========================
    11.BACK TO TOP CSS
===========================*/
.back-to-top {
	position: fixed;
	right: 30px;
	bottom: 30px;
	display: none;
	z-index: 999999;
}
.back-to-top a {
	color: #fff;
	background: linear-gradient(120deg, #6cbe03 40%, #f4a700 80%);
	height: 50px;
	width: 50px;
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	border-radius: 50%;
}
.footer-widget h4 {
	position: relative;
	color: #fff;
}
.footer-widget h4 i {
	display: none;
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	width: 50px;
	height: 30px;
	line-height: 30px;
	text-align: center;
}
#onlineService {
	z-index: 100998;
	display: none;
}
#onlineService {
	position: fixed;
	right: 0;
	bottom: 32%;
	z-index: 100998;
}



 @media(max-width:768px) {
	 
.footer-area .footer-list .title {
	font-size: 20px;
}
.footer-area .footer-info .title {
	font-size: 20px;
}
.footer-area .footer-copyright .footer-copyright-content p {
	width: 100%;
	float: left;
	text-align: center;
}
.footer-area .footer-copyright .footer-copyright-content ul {
	width: 100%;
	float: left;
	text-align: center;
	line-height: 30px;
}
.footer-area .footer-copyright {
	padding-bottom: 60px;
}
.back-to-top {
	display: none !important;
}
.footer-widget h4 i {
	display: block;
}
.list-area {
	display: none !important;
}
.active .list-area li {
	line-height: 30px;
}
.active .social-icons a {
	float: left;
	margin-right: 5px;
}
.active h4 i {
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
}
.active .list-area {
	display: block !important;
}
#onlineService {
	display: block;
}
#onlineService {
	overflow: visible;
}
#onlineService {
	position: fixed;
	bottom: 0;
	left: 50%;
	width: 100%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%)
}
.offside {
	display: flex;
	width: 100%
}
.offside li {
	flex-grow: 1;
	flex: 1;
	text-align: center;
	width: auto;
	height: 60px;
	background: #6cbe03 !important;
	border-bottom: none !important;
	border-right: 1px solid rgba(255,255,255,0.15)
}
.offside li i {
	color: #fff !important;
	font-size: 20px !important;
	line-height: 60px !important;
	padding: 0;
	font-size: 22px !important
}
.offside li.tel {
	width: 47px;
	transform: translateX(0);
	-webkit-transform: translateX(0)
}
.offside li:last-child {
	display: none
}
.offside li p {
	display: none !important
}
.offside li a {
	position: static;
	display: inline-block
}
}
