@charset "utf-8";

body {
	padding: 0;
	margin: 0;
	font-family: "roboto", helvetica, arial, sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	color: #000;
}

a {
	text-decoration: none;
	color: #252525;
}

a:hover,
a:focus {
	text-decoration: none !important;
	color: #222;
}

a,
input,
button {
	outline: none !important;
}

ul {
	list-style-type: none;
}

@media (min-width:1400px) {
	.container {
		max-width: 1140px;
	}
}

@media (min-width:1441px) {
	.container {
		max-width: 1320px;
	}
}

header {
	position: fixed;
	top: 0;
	left: 0;
	padding: 0;
	margin: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, .85);
	box-shadow: 0;
	z-index: 999;
}

header.fixed {
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
}

.header-inner {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

@media (min-width:992px) {
	.header-inner {
		align-items: flex-end;
	}
}

.logo {
	margin: 4px 0;
}

.logo img {
	width: 64px;
	height: auto;
}

@media (min-width:992px) {
	.logo {
		margin: 9px 0;
	}

	.logo img {
		width: auto;
		height: auto;
	}
}

.item-right {
	display: flex;
	align-items: center;
	padding-bottom: 0;
}

@media (min-width:992px) {
	.item-right {
		padding-bottom: 10px;
	}
}

.menu {
	display: none;
}

.mobile-menu {
	display: block;
}

@media (min-width:992px) {
	.mobile-menu {
		display: none;
	}

	.menu {
		display: block;
		margin-right: 30px;
	}
}

.navbar-nav .nav-item {
	margin: 0 20px;
}

.navbar-nav .nav-link {
	font-family: Helvetica, sans-serif, Arial;
	font-size: 17px;
	color: #8c7e89;
	padding: 4px !important;
	border: 1px solid rgba(255, 255, 255, 0);
	transition: border-top-color 0.1s 0.27s linear,
		border-right-color 0.1s 0.18s linear,
		border-bottom-color 0.1s 0.09s linear,
		border-left-color 0.1s 0s linear;
}

.navbar-nav .nav-link.active {
	border-color: #a2e96d;
}

.navbar-nav .nav-link:hover {
	border-top-color: #a2e96d;
	border-right-color: #a2e96d;
	border-bottom-color: #a2e96d;
	border-left-color: #a2e96d;
	transition: border-top-color 0.1s 0.27s linear,
		border-right-color 0.1s 0.18s linear,
		border-bottom-color 0.1s 0.09s linear,
		border-left-color 0.1s 0s linear;
}

.language {
    min-width:32px;
	position: relative;
}

.language-icon {
	position: relative;
	font-size: 17px;
	color: #8c7e89 !important;
	padding: 4px;
	border: 1px solid #a2e96d;
}

.member-box {
	display: none;
	position: absolute;
	top: 119%;
	left: -10px;
	z-index: 1;
}

.member-inner {
	position: relative;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, .2);
	padding: 4px 8px;
	border-radius: 5px;
	z-index: 9;
}

.member-inner::before {
	content: '';
}

.member-inner li {
	display: flex;
	border-bottom: 1px solid #eee;
}

.member-inner li:last-child {
	border: none;
}

.member-inner a {
	color: #8c7e89;
	padding: 4px 8px;
	border: 1px solid #fff;
}

.member-inner a:hover {
	color: #a2e96d;
}

.mobile-navbar .nav-item {
	margin: 10px 20px;
}

.mobile-navbar .nav-link {
	display: initial;
}

.navbar-brand {
	margin: 0 20px 30px 20px;
	display: flex;
	justify-content: center;
}

.offcanvas-header {
	justify-content: flex-end;
}

.banner {
	position: relative;
	overflow: hidden;
}

.banner-text {
	position: absolute;
	top: 66px;
	width: 100%;
	height: calc(75vh - 66px);
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

@media (min-width:576px) {
	.banner-text {
		height: calc(100vh - 66px);
	}
}

@media (min-width:992px) {
	.banner-text {
		top: 106px;
		height: calc(100vh - 106px);
	}
}

.text-box {
	background-color: rgba(0, 0, 0, .2);
	padding: 8px 10px;
	margin-left: 10px;
}

@media (min-width:576px) {
	.text-box {
		width: 70%;
		margin-left: 30px;
	}
}

@media (min-width:992px) {
	.text-box {
		width: auto;
		margin-left: 50px;
	}
}

@media (max-width:450px) {
	.text-box {
		width: 68%;
	}
}

@media (max-width:374px) {
	.text-box {
		width: 80%;
	}
}

.banner-text h3 {
	margin: 0;
	font-size: 24px;
	color: #fff;
	font-weight: bold;
}

@media (min-width:576px) {
	.banner-text h3 {
		font-size: 36px;
	}
}

@media (min-width:992px) {
	.banner-text h3 {
		font-size: 46px;
	}
}

.index-video {
	display: flex;
	justify-content: center;
	align-items: center;
}

.index-video video {
	height: 75vh;
	object-fit: cover;
}

@media (min-width:576px) {
	.index-video video {
		height: 100vh;
	}
}

.piece-box {
	padding: 50px 0;
	overflow: hidden;
}

@media (min-width:992px) {
	.piece-box {
		padding: 100px 0;
	}
}

.title-style {
	font-weight: 300;
	font-size: 30px;
	color: #58595b;
}

.title-style .title-2 {
	font-size: 40px;
	color: #b4da65;
	font-weight: bold;
	margin-top: -10px;
}

.title-3 {
	margin: 0 !important;
	color: #fff !important;
}

.text-style {
	max-width: 100%;
	margin-top: 30px;
}

@media (min-width:992px) {
	.text-style {
		max-width: 60%;
	}
}

.text-style p {
	font-size: 16px;
	font-weight: 300;
	color: #58595b;
}

.text-style p strong {
	color: #58595b;
	font-weight: bold;
}

@media (min-width:576px) {
	.title-style {
		font-size: 40px;
	}

	.title-style .title-2 {
		font-size: 50px;
		margin-top: -30px;
	}

	.text-style p {
		font-size: 18px;
	}
}

@media (min-width:992px) {
	.title-style {
		font-size: 48px;
	}

	.title-style .title-2 {
		font-size: 60px;
	}

	.text-style p {
		font-size: 20px;
	}
}

@media (min-width:1441px) {
	.title-style {
		font-size: 54px;
	}

	.title-style .title-2 {
		font-size: 80px;
	}
}

.text-style-1 {
	max-width: 100% !important;
	margin: 0 !important;
}

.text-style-1 p,
.text-style-1 strong {
	color: #fff !important;
}

.text-style-1 strong {
	font-size: 24px;
}

.text-style-1 p {
	font-size: 22px;
	text-shadow: 0 2px 2px rgba(0, 0, 0, .3) !important;
}

@media (min-width:576px) {
	.text-style-1 strong {
		font-size: 30px;
	}

	.text-style-1 p {
		font-size: 25px;
	}
}

@media (min-width:992px) {
	.text-style-1 strong {
		font-size: 34px;
	}

	.text-style-1 p {
		font-size: 30px;
		text-shadow: none !important;
	}
}

@media (min-width:1441px) {
	.text-style-1 strong {
		font-size: 45px;
	}

	.text-style-1 p {
		font-size: 35px;
	}
}

.btn-box {
	margin-top: 20px;
}

@media (min-width:992px) {
	.btn-box {
		margin-top: 40px;
	}
}

.btn-primary {
	border-radius: 0;
	background-color: rgba(0, 0, 0, 0) !important;
	border-color: #a2e96d !important;
	padding: 8px 20px;
	position: relative;
	overflow: hidden;
	transition: all ease .8s;
	z-index: 1;
}

.btn-primary::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 60%;
	height: 100%;
	background-color: #a2e96d;
	transition: all ease .8s;
	z-index: -1;
}

.btn-primary::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 60%;
	height: 100%;
	background-color: #a2e96d;
	transition: all ease .8s;
	z-index: -1;
}

.btn-primary:hover {
	color: #a2e96d;
	transition: all ease .8s;
}

.btn-primary:hover::before,
.btn-primary:hover::after {
	width: 0;
	transition: all ease .8s;
}

.home-about {
	background-image: url(../images/about-bj-m.png);
	background-position: center calc(100% - 70%);
	background-repeat: no-repeat;
	background-size: 100%;
	object-fit: cover;
}

@media (min-width:768px) {
	.home-about {
		background-position: center;
		background-size: cover;
		background-image: url(../images/about-bj-md.png);
	}
}

@media (min-width:992px) {
	.home-about {
		background-image: url(../images/about-bj.png);
		background-size: 100%;
	}
}


.about-img {
	position: relative;
	z-index: -1;
}

@media (min-width:992px) {
	.about-img {
		position: relative;
		float: right;
		margin-top: -100px;
		margin-right: 0;
	}
}

@media (min-width:1200px) {
	.about-img {
		margin-top: -140px;
	}
}

@media (min-width:1400px) {
	.about-img {
		margin-top: -220px;
		margin-right: -120px;
	}
}

.about-img span {
	position: relative;
	float: right;
	font-weight: bold;
	margin-top: 10px;
	z-index: 9;
}

.about-img-info {
	position: relative;
}

.xs-item-1,
.xs-item-2 {
	position: absolute;
	border-radius: 100%;
	background-color: #b4da65;
	opacity: .45;
	z-index: 0;
}

.xs-item-1 {
	left: -30px;
	top: 45%;
	width: 60px;
	height: 60px;
}

.xs-item-2 {
	right: -80px;
	bottom: -40px;
	width: 120px;
	height: 120px;
}

@media (min-width:992px) {
	.xs-item-1 {
		left: -50px;
		top: 45%;
		width: 110px;
		height: 110px;
	}

	.xs-item-2 {
		right: -100px;
		bottom: -50px;
		width: 200px;
		height: 200px;
	}
}

.about-btn {
	margin-bottom: 50px;
}

@media (max-width:767px) {
	.mobiel-none {
		display: none;
	}
}

.home-mission {
	background-image: url(../images/mission.png);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: cover;
	object-fit: cover;
	height: 100%;
	padding: 50px 0;
}

@media (min-width:576px) {
	.home-mission {
		padding: 100px 0;
	}
}

@media (min-width:992px) {
	.home-mission {
		padding: 150px 0 450px;
	}
}

@media (min-width:1441px) {
	.home-mission {
		padding: 250px 0 350px;
	}
}

.mission-inner {
	min-height: 400px;
	display: flex;
	flex-direction: column-reverse;
}

@media (min-width:992px) {
	.mission-inner {
		flex-direction: row;
	}
}

@media (min-width:992px) {
	.home-brands {
		padding: 70px 0 100px;
	}
}

.brand-inner {
	padding: 0 15px;
	margin: 20px 0 30px 0;
}

@media (min-width:992px) {
	.brand-inner {
		padding: 0 50px;
		margin: 0px 0 40px 0;
	}
}

@media (min-width:1200px) {
	.brand-inner {
		padding: 0px 80px;
	}
}

.brand-inner-1 {
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}

.brand-top {
	display: flex;
	flex-direction: column;
}

@media (min-width:992px) {
	.brand-top {
		flex-direction: row;
		align-items: flex-end;
	}
}

.brand-text {
	padding-left: 0;
	margin-bottom: 0;
	font-size: 16px;
	color: #58595b;
	font-weight: 300;
	max-width: 100%;
}

@media (min-width:992px) {
	.brand-text {
		padding-left: 80px;
		margin-bottom: 25px;
		max-width: 800px;
		font-size: 18px;
	}
}

.icon-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	margin: 10px;
}

.btn1-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

@media (min-width:992px) {
	.btn1-box {
		margin-top: 60px;
	}
}

.icon-logo img {
	transition: all ease .8s;
}

.icon-logo:hover img {
	transition: all ease .8s;
	transform: scale(0.9);
}

.down-item,
.close {
	display: none;
}

.more.on {
	display: none;
}

.close.on {
	display: block;
}

.home-contact {
	background-image: url(../images/from.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	object-fit: cover;
}

.title-t {
	font-size: 24px;
	font-weight: bold;
}

@media (min-width:768px) {
	.title-t {
		font-size: 36px;
	}
}

@media (min-width:992px) {
	.title-t {
		font-size: 44px;
	}
}

@media (min-width:1441px) {
	.title-t {
		font-size: 52px;
	}
}

.mobiel-t {
	display: block;
}

.web-t {
	display: none;
}

@media (min-width:576px) {
	.mobiel-t {
		display: none;
	}

	.web-t {
		display: block;
	}
}

.form-box {
	display: none;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin-top: -10px;
}

@media (min-width:1200px) {
	.form-box {
		padding: 0 50px;
	}
}

.form-box.on {
	display: block;
}

.eq-btn {
	font-size: 18px;
	background-color: #a2e96d;
	transition: all ease .4s;
}

@media (min-width:768px) {
	.eq-btn {
		font-size: 20px;
	}
}

.eq-btn:hover {
	background-color: rgba(255, 255, 255, .9) !important;
}

.eq-btn.active {
	display: none;
	transition: all ease .4s;
}

.form-box form {
	position: relative;
	background-color: #fff;
	padding: 50px 15px;
	color: #58595b !important;
	font-weight: 300 !important;
}

@media (min-width:1200px) {
	.form-box form {
		padding: 30px 50px;
	}
}

@media (min-width:1200px) {
	.form-box form {
		padding: 30px 60px;
	}
}

@media (min-width:1441px) {
	.form-box form {
		padding: 30px 120px;
	}
}

.form-item {
	margin: 10px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.form-item input,
.form-item textarea {
	border-radius: 0;
	padding: 10px;
}

@media (min-width:768px) {

	.form-item input,
	.form-item textarea {
		border-radius: 0;
		padding: 10px 30px;
	}
}

.form-item span {
	width: 100%;
}

.form-item .form-check-box {
	width: 100%;
}

@media (min-width:576px) {
	.form-item span {
		width: 20%;
	}

	.form-item .form-check-box {
		width: 80%;
	}
}

.form-item .form-control,
.form-check-label,
.form-item span {
	font-weight: 300 !important;
	font-size: 14px !important;
	color: #58595b;
}

@media (min-width:1200px) {

	.form-item .form-control,
	.form-check-label,
	.form-item span {
		font-size: 15px !important;
	}
}

@media (min-width:1441px) {

	.form-item .form-control,
	.form-check-label,
	.form-item span {
		font-size: 16px !important;
	}
}

.form-check-box {
	display: flex;
	align-items: center;
}

.form-check-box .form-check {
	display: flex;
	align-items: center;
}

@media (min-width:576px) {
	.form-check-box .form-check {
		padding-left: 0px !important;
		margin: 0 15px !important;
	}
}

@media (min-width:1200px) {
	.form-check-box .form-check {
		margin: 0 16px !important;
	}
}

.form-check-box .form-check:last-child {
	margin-right: 0 !important;
}

.form-check-input {
	width: 14px;
	height: 14px;
	padding: 4px !important;
	margin-right: 5px;
}

.form-check-input:checked {
	background-color: #b4da65 !important;
	border-color: #b4da65 !important;
}


.form-item1 {
	justify-content: flex-start;
}

@media (min-width:768px) {
	.form-item1 {
		justify-content: flex-end;
	}
}

.btn-box1 {
	display: flex;
	align-items: center;
	height: 100%;
}

.btn-send {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 8px 30px;
	font-size: 18px;
	font-weight: bold;
}

@media (min-width:1441px) {
	.btn-send {
		padding: 10px 40px;
		font-size: 24px;
	}
}

.close-btn {
	position: absolute;
	right: 0;
	top: 0;
}

.close-btn i {
	color: #fff;
	background-color: #ed1b24;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
}

@media (max-width:575px) {

	.form-item-1,
	.form-check-box {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
}

#captcha-1 iframe {
	transform: scale(0.7);
	transform-origin: 0 0;
}

@media (min-width:425px) {
	#captcha-1 iframe {
		transform: scale(1.0);
		transform-origin: 0 0;
	}
}

.footer {
	background-color: #8ec63f;
}

.footer-text {
	padding: 14px 15px;
	color: #fff;
	font-size: 15px;
}

#back-to-top {
	position: fixed;
	right: 3%;
	bottom: 8%;
	z-index: 999;
}

.back-to-top {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background-color: #b4da65;
	border-radius: 5px;
}

.back-to-top .fa {
	color: #fff;
}

/* -------- */
.delighter .li {
	opacity: 0;
	transform: translatey(15%);
	transition: all .7s ease-out;
}

.delighter.started .li {
	opacity: 1;
	transform: none;
}

.delighter.started .li:nth-child(1) {
	transition: all .7s ease-out .05s;
}

.delighter.started .li:nth-child(2) {
	transition: all .7s ease-out .15s;
}

.delighter.started .li:nth-child(3) {
	transition: all .7s ease-out .25s;
}

.delighter.started .li:nth-child(4) {
	transition: all .7s ease-out .35s;
}

.delighter.started .li:nth-child(5) {
	transition: all .7s ease-out .45s;
}

.delighter.started .li:nth-child(6) {
	transition: all .7s ease-out .55s;
}

.delighter.started .li:nth-child(7) {
	transition: all .7s ease-out .65s;
}

.delighter.started .li:nth-child(8) {
	transition: all .7s ease-out .75s;
}

.animate.up {
	transform: translatey(10%);
	opacity: 0;
	transition: all .85s ease-out;
}

.animate.up.started {
	transform: none;
	opacity: 1;
}

.delighter .li1 {
	opacity: 0;
	transform: translatey(15%);
	transition: all .7s ease-out;
}

.delighter.started .li1 {
	opacity: 1;
	transform: none;
}

.delighter.started .li1:nth-child(1) {
	transition: all .7s ease-out .05s;
}

.delighter.started .li1:nth-child(2) {
	transition: all .7s ease-out .1s;
}

.delighter.started .li1:nth-child(3) {
	transition: all .7s ease-out .15s;
}

.delighter.started .li1:nth-child(4) {
	transition: all .7s ease-out .2s;
}

.delighter.started .li1:nth-child(5) {
	transition: all .7s ease-out .25s;
}

.delighter.started .li1:nth-child(6) {
	transition: all .7s ease-out .3s;
}

.delighter.started .li1:nth-child(7) {
	transition: all .7s ease-out .35s;
}

.delighter.started .li1:nth-child(8) {
	transition: all .7s ease-out .4s;
}

.delighter.started .li1:nth-child(9) {
	transition: all .7s ease-out .45s;
}

.delighter.started .li1:nth-child(10) {
	transition: all .7s ease-out .5s;
}

.delighter.started .li1:nth-child(11) {
	transition: all .7s ease-out .55s;
}

.delighter.started .li1:nth-child(12) {
	transition: all .7s ease-out .6s;
}

.delighter.started .li1:nth-child(13) {
	transition: all .7s ease-out .65s;
}

.delighter.started .li1:nth-child(14) {
	transition: all .7s ease-out .7s;
}

/* inner */
.top-box {
	height: 66px;
}

@media (min-width:992px) {
	.top-box {
		height: 106px;
	}
}

.product1,
.product1-inner,
.product2 {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	object-fit: cover;
}

.product1 {
	background-image: url(../images/product-bj.png);
	padding: 50px 0 100px;
}

.product2 {
	background-image: url(../images/product-bj2.png);
	background-position: bottom !important;
	padding-bottom: 100px;
}

@media (min-width:992px) {
	.product2 {
		background-size: 100%;
	}
}

.product1-inner {
	background-image: url(../images/pro-in-bj.png);
	padding: 30px 20px 10px;
	position: relative;
}

@media (min-width:992px) {
	.product1 {
		padding: 100px 0 200px;
	}

	.product1-inner {
		padding: 60px 28px 30px;
	}
}

.product1-inner::before {
	content: '';
	position: absolute;
	bottom: -48px;
	left: 0;
	height: 68px;
	width: 100%;
	background-image: url(../images/in-befo.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	mix-blend-mode: multiply;
}

@media (min-width:768px) {
	.product1-inner::before {
		bottom: -58px;
	}
}

.card {
	border: none;
	background-color: rgba(0, 0, 0, 0);
	/* margin-bottom: 24px; */
}

.cars-list {
	margin-bottom: 30px;
}

@media (min-width:992px) {
	.cars-list {
		margin-bottom: 0;
	}
}

.inner-img {
	position: relative;
	overflow: hidden;
}

.inner-img img {
	width: 100%;
	transition: all .5s;
}

.card-title {
	position: absolute;
	bottom: 0;
	padding: 0 20px 10px;
	width: 100%;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	line-height: 25px;
}

.card-title i {
	font-style: normal;
	font-size: 25px;
}

.card-text,
.inner-text {
	font-size: 16px;
	font-weight: 300;
	color: #6a4d00;
	text-align: justify;
	margin-top: 10px;
}

@media (min-width:576px) {
	.card-title {
		font-size: 25px;
		line-height: 30px;
	}

	.card-title i {
		font-size: 35px;
	}

	.card-text,
	.inner-text {
		font-size: 18px;
	}
}

@media (min-width:992px) {
	.card-title {
		font-size: 35px;
		line-height: 45px;
	}

	.card-title i {
		font-size: 45px;
	}

	.card-text,
	.inner-text {
		font-size: 20px;
	}
}

@media (min-width:1441px) {
	.card-title {
		font-size: 45px;
		line-height: 55px;
	}

	.card-title i {
		font-size: 55px;
	}

	.card-text,
	.inner-text {
		font-size: 22px;
	}
}

.card:hover .inner-img img {
	transform: scale(1.1);
}

@media (max-width:991px) {

	.card-ps,
	.card-pe {
		padding: 0 !important;
	}
}

.inner-title {
	font-size: 24px;
	color: #b4da65;
	font-weight: bold;
	padding: 15px 0;
}

.inner-title span {
	font-size: 30px;
}

@media (min-width:576px) {
	.inner-title {
		font-size: 24px;
	}

	.inner-title span {
		font-size: 40px;
	}
}

@media (min-width:992px) {
	.inner-title {
		font-size: 40px;
	}

	.inner-title span {
		font-size: 60px;
	}
}

@media (min-width:1441px) {
	.inner-title {
		font-size: 60px;
	}

	.inner-title span {
		font-size: 80px;
	}
}

.inner-text {
	color: #58595b !important;
}

.inner-list {
	margin-top: 30px;
}

@media (min-width:992px) {
	.inner-list {
		margin-top: 60px;
	}
}

.card-1 {
	background-color: #fff;
	padding: 15px;
}

.card-text1 {
	margin: 0;
	padding: 15px;
	font-size: 18px;
	font-weight: bold;
	color: #b4da65;
	background-color: #fff;
	background-image: none;
}

@media (min-width:992px) {
	.card-text1 {
		font-size: 20px;
	}
}

@media (min-width:1441px) {
	.card-text1 {
		font-size: 24px;
	}
}

.inner-img1 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.inner-img1::before {
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	background-image: url(../images/fd.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	opacity: 0;
	z-index: 1;
	transition: all .5s;
}

.inner-img1::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .3);
	opacity: 0;
	transition: all .5s;
}

.card:hover .card-text1 {
	background-color: #fff;
	background-image: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(224, 242, 216, .5));
	transition: all .5s;
}

.card-box:hover {
	box-shadow: 0 0 18px rgba(0, 0, 0, .1);
	transition: all .5s;
}

.card:hover .inner-img1::after,
.card:hover .inner-img1::before {
	opacity: 1;
	transition: all .5s;
}

@media (min-width:992px) {
	.inner-title1 {
		font-size: 55px;
		line-height: 55px;
	}
}

@media (min-width:1441px) {
	.inner-title1 {
		font-size: 76px;
		line-height: 76px;
	}
}

.text-ul li {
	font-size: 20px;
	text-align: left;
}

@media (min-width:992px) {
	.text-ul li {
		font-size: 24px;
	}
}

@media (min-width:1400px) {
	.text-ul li {
		font-size: 27px;
	}
}

@media (max-width:768px) {
	.inner-title1 {
		padding: 0;
	}
}

.inner-bottom {
	padding-bottom: 100px;
}

.li-box {
	padding: 30px 0 60px;
}

.extrus {
	background-color: #8ec63f;
	margin-top: 50px;
}

.inner-text-w {
	color: #fff !important;
}

.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.inner-pdd {
	background-image: url(../images/in-img1.png);
}

.inner-extrus {
	background-image: url(../images/in-img2.png);
}

.inner-pr {
	background-image: url(../images/in-img3.png);
}

.inner-ch {
	background-image: url(../images/in-img4.2.png);
	background-position: left !important;
}

.inner-qa {
	background-image: url(../images/in-img5.png);
	background-position: calc(100% - 30%) !important;
}

.inner-log {
	background-image: url(../images/in-img6.png);
}

.flex-bj {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	object-fit: cover;
	position: relative;
	overflow: hidden;
}

.inner-extrus,
.inner-ch,
.inner-log {
	background-attachment: initial !important;
}

@media (min-width:768px) {
	.inner-ch {
		background-image: url(../images/in-img4.png);
		background-position: center !important;
	}

	.inner-extrus,
	.inner-ch,
	.inner-log {
		background-attachment: fixed !important;
	}
}

@media (min-width:992px) {
	.inner-qa {
		background-position: center !important;
	}
}

.pt-s {
	padding-top: 100px !important;
}

@media (min-width:992px) {
	.p-s {
		padding: 200px 0 !important;
	}

	.p-s-1 {
		padding: 120px 0 !important;
	}

	.pt-s {
		padding-top: 300px !important;
	}
}

.inner-box {
	background-color: rgba(0, 0, 0, .3);
	padding: 30px 20px;
	max-width: 100%;
}

.inner-box-qa {
	max-width: 80%;
}

@media (min-width:768px) {
	.inner-box {
		max-width: 600px;
	}

	.inner-box-lo {
		max-width: 550px;
	}

	.inner-box-pdd {
		max-width: 640px;
	}

	.inner-box-qa {
		max-width: 60%;
	}
}

.inner-box-none {
	background-color: rgba(0, 0, 0, 0) !important;
}

.tt-shadow {
	text-shadow: 0 3px 5px rgba(0, 0, 0, .2);
}

.te-shadow {
	text-shadow: 0 2px 3px rgba(0, 0, 0, .8);
}

.flex-row {
	display: flex;
	justify-content: end;
}

.flex-row-1 {
	justify-content: flex-start;
}

@media (min-width:992px) {
	.flex-log {
		padding: 150px 0 !important;
	}
}

.inner-pr {
	padding: 0;
}

@media (min-width:992px) {
	.inner-pr {
		padding: 30px 0;
	}
}

.inner-text strong {
	font-weight: bold;
}

#demo-test-gallery figcaption {
	display: none;
}

.pswp__caption .pswp__caption__center small {
	display: none;
}

.gallery-list {
	margin-bottom: 24px;
}

.pswp__caption__center {
	max-width: 840px !important;
	text-align: center !important;
}

.pswp__caption__center b {
	font-size: 20px !important;
	color: #fff !important;
}





.text-not-found { font-size:23px; }
@media (max-width: 768px){
    .text-not-found { margin-bottom:0; font-size:20px; }
    .inner-item-padding {
        padding: 0px 0 36px;
    }
}



/* contact us start */
@media(min-width:1440px){
    .contact-box { margin-bottom:100px; }
}
.text-danger { font-weight:normal; color:#e16470!important; }

.c-title { font-size:80px; color:#b4da65; }
.c-text { font-size:20px; color:#58595b; font-weight:normal!important; }


.office-name { font-size:20px; font-weight:bold; color:#58595b; }
.c-address, .c-telephone a, .c-email a { font-size:20px; color:#58595b; font-weight:normal!important; }
.s-p-10 p { margin-bottom:10px; }
.form-title { color:#b4da65; font-size:43px; }
@media(max-width:1440px){
    .c-title { font-size:60px; }
}
@media(max-width:768px){
    .c-title { font-size:40px; }
    .office-name { font-size:22px; }
    .c-address, .c-telephone a, .c-email a { font-size:18px; }
    .form-title { font-size:30px; }
}
.form-item-2 { display:block; }

.captcha-box { max-height:46px; }
@media(max-width:768px){
    #enquiry-form { margin-bottom:50px; }
    .c-address, .c-telephone a, .c-email a { font-size:16px; }
    .c-text { font-size:16px; }
}
/* contact us end */

.sp-p p { margin-bottom:0; }

.pswp__caption__center p { margin-bottom:0; }

.member-box { min-width:85px!important; }