@charset "utf-8";

/*--------------------------------------------------------------------------------------------------
CSS Styles for <Project Name>.

version:   1.0
--------------------------------------------------------------------------------------------------*/

/* =Typography
--------------------------------------------------------------------------------------------------*/

/* Variables */
:root {
	--title-spacing: 0.46em;
	--btn-spacing: 3px;
	--address-spacing: 0.2em;
}

/* Setting up the fonts */
* {
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	min-height: 100%;
	height: 100%;
	color: #252f37;
	font-family: 'Manrope', sans-serif;
	font-size: 21px;
	font-weight: normal;
	line-height: 1.6;
	overflow-x: clip;
}

input,
button,
select,
textarea {
	display: block;
	width: 100%;
	padding: 14px 0 21px;
	border: none;
	border-bottom: #E7E7E7 solid 1px;
	border-radius: 0;
	color: #171B24;
	background: #fff;
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 400;
}

input::placeholder,
button::placeholder,
select::placeholder,
textarea::placeholder {
	opacity: 1;
	color: #171B24;
}

textarea {
	height: 125px;
	resize: none;
}

img {
	max-width: 100%;
	height: auto;
}

h1 {
	margin: 0 0 15px;
	color: #3C3C3C;
	font-family: 'Poppins', sans-serif;
	font-size: 80px;
	font-weight: 700;
	line-height: 1.2;
}

h2 {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 0 0 50px;
	color: #171B24;
	font-family: 'Poppins', sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
}

h3 {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 0 0 50px;
	color: #171B24;
	font-family: 'Poppins', sans-serif;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.2;
}

h2 span {
	display: inline-block;
	margin: 0 0 50px;
	padding-left: var(--title-spacing);
	border-bottom: #B1D129 solid 12px;
	color: #6C6C70;
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: var(--title-spacing);
}

.page-green h2 span {
	color: #50b10d;
}

.holder-content {
	position: relative;
	max-width: 1610px;
	margin: 0 auto;
	padding: 0 15px;
}

.btn {
	display: inline-block;
	padding: 12px 30px;
	border: solid 1px transparent;
	color: #fff;
	background: #b1d129;
	text-decoration: none;
	/* box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.2);   */
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	transition: 0.3s;
	vertical-align: top;
}

.btn:hover {
	border: solid 1px #b1d129;
	color: #b1d129;
	background: #fff;
}

.page-green .btn {
	background: #50b10d;
}

.btn:hover {
	border: solid 1px #50b10d;
	color: #50b10d;
	background: #fff;
}

.btn-form {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px 0;
	border: #000 solid 1px;
	color: #F6F6F6;
	background: #000;
	text-transform: uppercase;
	font-size: 13px;
	transition: 0.3s;
}

.btn-form svg path {
	transition: 0.3s;
}

.btn-form svg {
	margin-left: 10px;
}

.btn-form:hover {
	color: #000;
	background: #F6F6F6;
}

.btn-form:hover svg path {
	stroke: #000;
}

.btn-top {
	position: fixed;
	display: flex;
	right: 20px;
	bottom: 20px;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border: #000 solid 1px;
	background: #000;
	transition: 0.3s;
}

.btn-top svg path {
	transition: 0.3s;
}

.btn-top:hover {
	background: #fff;
}

.btn-top:hover svg path {
	stroke: #000;
}

/* End Typography
--------------------------------------------------------------------------------------------------*/
html.active {
	overflow: hidden;
}

html.active #main {
	position: relative;
}

html.active #main::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	z-index: 98;
	width: 100%;
	height: 100%;
	background: rgb(0, 0, 0, 0.5);
}

#main {
	padding: 160px 0 0;
}

.btn-mob {
	position: absolute;
	display: none;
	top: 50%;
	left: 15px;
	transform: translate(0, -50%);
	flex-direction: column;
	justify-content: space-between;
	width: 50px;
	height: 30px;
}

.btn-mob span {
	display: block;
	width: 100%;
	height: 2px;
	background: #B1D129;
}

.btn-mob.active span {
	opacity: 0;
}

.btn-mob span:first-child,
.btn-mob span:last-child {
	transition: 0.5s;
}

.btn-mob.active span:first-child {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	opacity: 1;
}

.btn-mob.active span:last-child {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
	opacity: 1;
}

.header .nav-mob {
	position: fixed;
	top: 126px;
	left: -60%;
	z-index: 99;
	width: 60%;
	height: calc(100% - 126px);
	padding: 30px 15px;
	background: #fff;
	transition: 0.5s;
}

.header .nav-mob.active {
	left: 0;
}

.header .nav-mob ul {
	display: block;
}

.header .nav-mob ul li {
	margin: 0 0 30px;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100%;
	padding: 20px 0;
	background: #fff;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 18px;
	overflow: hidden;
}

.header.header-shadow {
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.header ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header ul li {
	margin: 0 30px;
}

.header ul li a {
	color: #0D0C38;
	text-decoration: none;
}

.header ul li a:hover {
	text-decoration: underline;
}

.header .btn {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0, -50%);
}

.header .holder-content {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
}

.header .holder-content>ul:nth-child(3) {
	justify-self: end;
}

.header .logo {
	justify-self: center;
	margin: 0 50px;
}

.top-block {
	margin: 0 0 100px;
	padding: 100px 0;
	color: #909090;
	font-size: 24px;
	line-height: 1.6;
	overflow: hidden;
}

.top-block .row {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	gap: 15px;
}

.top-block .col {
	width: 50%;
}

.top-block .col:first-child {
	align-self: flex-end;
}

.top-block .col:last-child {
	max-width: 750px;
}

.top-block figure {
	position: relative;
}

.top-block>.row>.col:first-of-type figure::after {
	content: '';
	position: absolute;
	top: -15px;
	left: -78px;
	z-index: -1;
	width: 176px;
	height: 176px;
	background: url(../img/ornament.png) no-repeat;
}

.top-block .list-top-block {
	display: flex;
	column-gap: clamp(15px, 2.5vw, 48px);
	margin: 0 0 57px;
	padding: 24px 0 0;
	color: #0D0C38;
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	font-weight: 500;
}

.top-block .box {
	position: relative;
	margin-bottom: 44px;
	padding: 20px 20px 10px 40px;
	border: #B1D129 solid 1px;
	border-radius: 13px;
	color: #B1D129;
	background: #fff;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.4;
}

.top-block .box:after {
	content: '';
	position: absolute;
	right: 108px;
	bottom: -104px;
	z-index: -1;
	width: 176px;
	height: 176px;
	background: url(../img/ornament.png) no-repeat;
}

.top-block .holder-img {
	display: flex;
	align-items: center;
}

.holder-logo {
	margin: 0 0 100px;
	text-align: center;
}

.holder-logo .row {
	display: flex;
	justify-content: space-between;
	column-gap: clamp(15px, 10.5vw, 186px);
}

.holder-logo>.row>.col:first-child {
	display: inline-block;
	flex: 0 1 430px;
	padding: 39px 15px 0;
	border-top: #B1D129 solid 12px;
}

.holder-logo>.row>.col:nth-child(2) {
	flex: 1 2 auto;
}

.holder-logo>.row>.col:nth-child(2) figure {
	border-radius: clamp(30px, 10.5vw, 130px) 0 clamp(30px, 10.5vw, 130px) 0;
	overflow: hidden;
}

.holder-logo>.row>.col:nth-child(2) figure img {
	width: 100%;
}

.holder-logo>.row>.col>.col {
	margin: 0 0 50px;
}

.holder-logo>.row>.col>.col figure {
	display: none;
}

.box-packaging-palletizing-holder {
	position: relative;
	isolation: isolate;
}

.box-packaging-palletizing-holder::before {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	z-index: -1;
	transform: translateX(-50%);
	width: 100vw;
	height: 100%;
	margin-left: 50%;
	background-image: url("../img/packaging-bgi.png");
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
}

.box-packaging-palletizing-holder .box-palletizing {
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.box-packaging-palletizing-holder .box-palletizing figure {
	position: relative;
}

.box-packaging-palletizing-holder .box-palletizing figure::after {
	content: '';
	position: absolute;
	right: 195px;
	bottom: 58px;
	z-index: -1;
	width: 176px;
	height: 176px;
	background: url("../img/ornament-green.png") no-repeat;
}

.box-packaging {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 0 100px;
}

.box-packaging .col:first-child {
	width: 40%;
}

.box-packaging .col:last-child {
	width: 60%;
}

.box-packaging h2 {
	align-items: flex-start;
}

.box-packaging h2 span {
	width: 100%;
	padding-left: 0;
}

.box-palletizing {
	max-width: 1050px;
	margin: 0 auto 25px;
	text-align: center;
}

.box-palletizing h2 {
	align-items: center;
}

.box-palletizing h2 span {
	padding: 0 clamp(0px, 10.5vw, 60px) 0 clamp(0px, 10.5vw + var(--title-spacing), 60px + var(--title-spacing));
}

.box-choose {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 100px;
}

.box-choose .col {
	max-width: 50%;
}

.box-choose h2 {
	align-items: flex-start;
}

.box-choose h2 span {
	padding: 0 5px 0 calc(5px + var(--title-spacing));
}

.team,
.post-related-posts,
.blog-section {
	color: #171B24;
	text-align: center;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.4;
	overflow: hidden;
}

.team .holder-content,
.post-related-posts .holder-content,
.blog-section .holder-content {
	max-width: 1712px;
	margin: 0 auto;
}

.team h2,
.post-related-posts h3,
.blog-section h2 {
	align-items: center;
}

.team h2 span,
.post-related-posts h3 span,
.blog-section h2 span {
	padding: 0 30px 0 calc(30px + var(--title-spacing));
	text-align: center;
}

.team a,
.post-related-posts a,
.blog-section a {
	color: #171B24;
	text-decoration: none;
}

.team a:hover span {
	text-decoration: underline;
}

.team .row,
.post-related-posts .row,
.blog-section .row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px;
}

.team .row .col,
.post-related-posts .row .col,
.blog-section .row .col {
	width: 20%;
	margin: 0 0 100px;
	padding: 0 12px;
	text-align: left;
}

.team figure,
.post-related-posts figure,
.blog-section figure {
	margin: 0 0 40px;
}

.team .col span,
.post-related-posts .col span,
.blog-section .col span {
	display: block;
	margin-top: 7px;
	color: #B1D129;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
}

.footer {
	padding: 183px 0 80px;
	color: #fff;
	background: #B1D129 url(../img/footer-bg.png) no-repeat;
	background-position: top right;
	background-size: auto 100%;
}

.footer .row {
	display: flex;
	flex-wrap: wrap;
}

.footer .row .col {
	width: 50%;
}

.footer .holder-form {
	max-width: 580px;
	margin: 0 0 100px;
	padding: 50px;
	color: #171B24;
	background: #fff;
}

.footer .col-input-full {
	margin-bottom: 60px;
}

.footer .col-input-full:nth-of-type(5) {
	margin-bottom: 52px;
}

.footer .col-input-full:last-of-type {
	margin-bottom: 0;
}

.footer form .btn {
	position: relative;
	padding: 30px 88px 30px 30px;
	color: #F6F6F6;
	background-color: #171B24;
	background-image: url("data:image/svg+xml;base64, PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAyMCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNMS4yNzMgNi44NWgxNy4yOU0xMi45MzMuOTc1bDUuNjMgNS44NzYtNS42MyA1Ljg3NiIgc3Ryb2tlPSIjRjdGN0Y3IiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+");
	background-position: 60% 50%;
	-webkit-background-size: 20px;
	background-size: 20px;
	background-repeat: no-repeat;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: var(--btn-spacing);
	transition: all 0.3s;
}

.footer form .btn:hover {
	border-color: #000;
	color: #171B24;
	background-color: #fff;
	background-image: url("data:image/svg+xml;base64, PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxOSAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNLjgwNCA3LjA3M2gxNy4yOW0tNS42My01Ljg3NiA1LjYzIDUuODc2LTUuNjMgNS44NzYiIHN0cm9rZT0iIzE3MUIyNCIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPg==");
}

.footer h2 {
	color: #fff;
}

.footer h2 span {
	margin: 0 0 50px;
	color: #F6F6F6;
}

.footer textarea {
	height: 62px;
	margin-top: 70px;
}

.footer address {
	font-size: 21px;
	font-weight: 700;
	line-height: 1.4;
}

.footer address span {
	display: block;
	color: #F6F6F6;
	text-transform: uppercase;
	font-size: 13px;
	line-height: 1.6;
	letter-spacing: var(--address-spacing);
}

.copyright {
	color: #171B24;
	font-size: 13px;
}

@media only screen and (max-width: 990px) {
	.header ul {
		display: none;
	}

	.header .logo {
		grid-column: 1 / -1;
		grid-row: 1 / -1;
		max-width: 103px;
	}

	.btn-mob {
		display: flex;
	}

	.header .btn {
		position: static;
		display: none;
	}

	.header .nav-mob .btn {
		display: inline-block;
		margin: 30px 0;
		padding: 12px 20px;
	}

	.top-block {
		margin: 0 0 50px;
		padding: 0 0 50px;
	}

	.top-block .row {
		flex-direction: column;
	}

	.top-block .col {
		width: 100%;
		text-align: center;
	}

	.top-block .col:last-child {
		max-width: none;
	}

	.top-block .box {
		text-align: left;
	}

	h1 {
		font-size: 50px;
	}

	.top-block .list-top-block {
		display: block;
	}

	.top-block .list-top-block li {
		margin: 0 0 15px;
	}

	.holder-logo {
		margin: 0 0 50px;
	}

	.holder-logo .row {
		flex-wrap: wrap;
		justify-content: center;
	}

	.holder-logo .col {
		width: 100%;
	}

	.box-packaging {
		margin: 0 0 50px;
	}

	.box-packaging .col:first-child,
	.box-packaging .col:last-child {
		width: 100%;
		margin: 0 0 50px;
	}

	.box-palletizing {
		display: flex;
		flex-direction: column-reverse;
		margin-bottom: 50px;
	}

	.box-choose {
		margin: 0 0 50px;
		text-align: center;
	}

	.box-choose h2 {
		align-items: center;
	}

	.box-choose .col {
		max-width: none;
		width: 100%;
	}

	.team .row .col,
	.post-related-posts .row .col,
	.blog-section .row .col {
		width: 33.3%;
		margin: 0 0 50px;
	}

	.footer {
		padding: 100px 0 40px;
	}

	.footer .row .col {
		width: 100%;
	}

	.footer address {
		margin: 0 0 50px;
	}
}

@media only screen and (max-width: 767px) {

	.team .row .col,
	.post-related-posts .row .col,
	.blog-section .row .col {
		width: 50%;
	}
}

@media screen and (max-width: 575px) {
	h2 {
		font-size: 32px;
	}

	h3 {
		font-size: 28px;
	}
}

@media only screen and (max-width: 540px) {

	.team .row,
	.post-related-posts .row,
	.blog-section .row {
		margin: 0;
	}

	.team .row .col,
	.post-related-posts .row .col,
	.blog-section .row .col {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		padding: 0;
	}
}


.single-post {
	max-width: 1000px;
}

.single-post .post-thumbnail {
	text-align: center;
	margin: 0 0 50px;
}

.single-post .breadcrumbs {
	margin: 0 0 50px;
}

.single-post .breadcrumbs a {
	text-decoration: none;
	color: #9b9b9b;
}

.single-post .post-content {
	margin: 0 0 50px;
}

.single-post p {
	margin: 0 0 20px;
}

.single-post h1 {
	font-size: 45px;
}

.single-post ul,
.single-post ol {
	margin: 0 0 20px;
	list-style: disc;
	list-style-position: inside;
}

.entry-meta {
	margin: 0 0 20px;
}

@media only screen and (max-width: 767px) {
	.single-post h1 {
		font-size: 30px;
	}

	.single-post .breadcrumbs {
		margin: 0 0 40px;
		font-size: 14px;
	}
}