/*============ VARIABLES ===========*/
:root {
	--white: #fff;
	--black: #000;
	--greengradient: linear-gradient(45deg, #74b908 0%, #0dc66d 100%);
	--lightgreen: #74b908;
	--dark: #0e1600;
	--grey: #4d4d4d;
	--lightgrey: #787878;
	--font-family: "Montserrat", sans-serif;
	--darkgradient: radial-gradient(396.8% 21.8% at 28.2% 41.89%, rgb(116, 185, 8) 0%, rgb(116, 185, 8) 100%);
}


/*============ BASE CONFIG =============*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #F5F5F5;
	overflow-x: hidden;
	margin: 0 auto;
	width: auto;
	font-family: var(--font-family);
	font-size: 16px;
	position: relative;
}
a {
	text-decoration: none;
}
a:hover {
	color: var(--lightgreen);
	transition: color .3s ease-in;
}

.container {
	max-width: 1290px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

.logo-holder {
	display: flex;
	max-width: 197px;
	width: 100%;
	margin-right: 100px;
}
.logo-holder img {
	width: 100%;
	object-fit: contain;
}
.menu-holder {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	flex-grow: 1;
}
.menu-holder li {
	list-style-type: none;
}
.menu-holder li a {
	color: var(--white);
	font-size: 14px;
	line-height: 16px;
}
.menu-holder li.active a,
.menu-holder li a:hover {
	color: var(--lightgreen);
}

.soc-holder {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-gap: 25px;
}
.soc-holder .soc {
	display: flex;
}
.soc-holder .soc svg path {
	transition: fill .3s ease-in;
}
.soc-holder .soc:hover svg path {
	fill: var(--lightgreen);
}


h2.block-title {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 30px;
	text-transform: uppercase;
	color: #0e1600;
	margin-bottom: 50px;
}

.btn {
	outline: none;
	border: none;
	background: var(--greengradient);
	max-width: 240px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white);
	font-weight: 600;
	font-size: 14px;
	line-height: 110%;
	text-align: center;
	padding: 20px;
	cursor: pointer;
}
.btn:hover {
	background: var(--lightgreen);
	color: var(--white);
}

input {
	width: 100%;
	outline: none;
	background: #111d16;
	border: 1px solid #111d16;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	color: #adadad;
	padding: 29px 30px;
	border-radius: 10px;
}
input::placeholder {
	color: inherit;
}
input:focus {
	border-color: var(--lightgreen);
}



/*=========== HEADER ===========*/
#header {
	display: flex;
	flex-direction: column;
	width: 100%;
	z-index: 99;
	background-color: var(--dark);
}
#header.header--overlay {
	position: absolute;
	top: 0;
	left: 0;
	background-color: transparent;
}
#header.header--overlay .top-line {
	background-color: var(--dark);
}
#header .container {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
#header .top-line {
	padding: 40px 0;
	background-image: url('../images/toplinebg.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: calc((100% - 600px) / 2) center;
}
#header .top-menu.menu-holder {
	justify-content: flex-start;
	gap: 10px 25px;
}
#header .bot-line {
	background: rgba(0, 0, 0, 0.25);
	padding: 20px 0;
}
#header .bot-line .menu-holder {
	gap: 10px 30px;
}
#header .bot-line .menu-holder li a {
	font-weight: 600;
}
#header .bot-line .menu-holder li:hover a {
	color: var(--dark);
}



/*=========== MOBILE MNU ===========*/

#header #mobile-mnu {
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 400px;
	padding: 30px;
	transition: all 0.3s ease-in;
	transform: translateX(-430px);
	z-index: 9999;
	overflow-y: auto;
	overflow-x: hidden;
	backdrop-filter: blur(4px);
	background: rgba(4, 7, 6, 0.7);
}
#header #mobile-mnu.opened {
	transform: translateX(0);
}
#header .burger.open_menu {
	display: none;
	flex-direction: column;
	background-color: transparent;
	height: 40px;
	width: 40px;
	justify-content: space-evenly;
	align-items: center;
	border-radius: 2px;
	flex-shrink: 0;
	margin-right: 30px;
}
#header .burger.open_menu span {
	background-color: var(--white);
	width: 30px;
	height: 4px;
	transition: all 0.3s ease-in;
	pointer-events: none;
}
#header .burger.open_menu.clicked {
	background-color: transparent;
}
#header .burger.open_menu.clicked span {
	background-color: var(--lightgreen);
}

#header #mobile-mnu #close-mnu {
	font-size: 45px;
	position: absolute;
	right: 10px;
	top: 10px;
	cursor: pointer;
	transform: rotate(45deg);
	display: block;
	color: var(--white);
}
#header #mobile-mnu .menu-holder {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: nowrap;
	gap: 15px;
	margin-bottom: 30px;
	flex-grow: 0;
}
#header #mobile-mnu .bot-menu.menu-holder li a {
	font-weight: 600;
}
#header #mobile-mnu .logo-holder {
	margin-bottom: 30px;
}


/*========== MAINBANNER BLOCK ===========*/
#mainbanner-block {
	padding: 260px 0 145px;
	background: var(--dark);
	background-image: url('../images/mainbannerbg2.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.mainbanner-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 0%;
	z-index: 0;
	opacity: 0.45;
}
#mainbanner-block:before {
	display: none;
}
#mainbanner-block .container {
	position: relative;
	z-index: 2;
}
#mainbanner-block .block-title {
	font-family: var(--font-family);
	font-weight: 800;
	font-size: 40px;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 30px;
}
#mainbanner-block .block-title br {
	display: none;
}
#mainbanner-block .block-title img {
	max-width: 230px;
	width: 100%;
	object-fit: contain;
	margin-right: 20px;
}
#mainbanner-block .block-desc {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	line-height: 171%;
	color: var(--white);
	margin-bottom: 50px;
	max-width: 920px;
	width: 100%;
}

/*=========== ADVANTS BLOCK ===========*/
.advants-block {
	margin-top: -50px;
	margin-bottom: 150px;
	overflow: hidden;

}
.advants-block .advants {
}
.advants-block .advant {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 30px;
	background-color: var(--white);
	padding: 26px 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.advants-block .advant__image {
	object-fit: contain;
	width: 48px;
	height: 48px;
	flex-shrink: 0;
}
.advants-block .advant__title {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	line-height: 171%;
	color: var(--black);
}

/*=========== PRODUCTS BLOCK ===========*/
.products-block {
	margin-bottom: 150px;
	overflow: hidden;
}
.products-block .overflow {
	position: relative;
}
.products-block .products {
	overflow: hidden;
}
.products-block .product {
	background-color: var(--white);
	display: flex;
	flex-direction: column;
	height: 360px;
}
.products-block .product__media {
	position: relative;
	overflow: hidden;
	clip-path: inset(0);
	flex: 1;
	min-height: 0;
}
.products-block .product__ann {
	position: absolute;
	left: 30px;
	top: 0;
	background-color: var(--lightgreen);
	border-radius: 0 0 5px 5px;
	padding: 5px 10px 3px 10px;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 12px;
	color: #ececec;
	z-index: 2;
}
.products-block .product__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
}
.products-block .product__title {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px 14px 12px;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 14px;
	color: var(--black);
	text-align: center;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	background: var(--white);
	box-shadow: 0 -14px 22px 12px rgba(255,255,255,0.9);
	z-index: 1;
}
.products-block .product__btn {
	display: block;
	text-align: center;
	background: var(--greengradient);
	color: var(--white);
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 14px;
	padding: 12px 16px;
	text-decoration: none;
	transition: opacity .2s;
}
.products-block .product__btn:hover {
	opacity: 0.85;
}
.products-block .nav-holder {
	margin: 25px auto 0;
}
.products-block .products-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}
.products-block .products-pagination .swiper-pagination-bullet {
	background-color: var(--white);
	width: 20px;
	height: 3px;
	opacity: 1;
	border-radius: 0;
}
.products-block .products-pagination .swiper-pagination-bullet-active {
	background-color: var(--lightgreen);
}
.products-block .nav-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	width: 25px;
	height: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--white);
	box-shadow: 0 4px 20px 0 rgba(14, 22, 0, 0.1);
}
.products-block .nav-button svg path {
	transition: fill .3s ease-in;
}
.products-block .nav-button:hover svg path {
	fill: var(--lightgreen);
}
.products-block .nav-button.products-button-prev {
	left: -15px;
}
.products-block .nav-button.products-button-next {
	right: -15px;
}
.products-block .nav-button.swiper-button-disabled {
	opacity: 0.5;
	pointer-events: none;
}


/*============ BRANDS BLOCK ============*/
.brands-block {
	padding: 50px 0;
	overflow: hidden;
	background-color: var(--white);
	margin-bottom: 150px;
}
.brands-block .brands {
	margin: 0 auto;
	width: 100%;
}
.brands-block .brand {
	display: flex;
	justify-content: center;
	align-items: center;
}
.brands-block .brand .brand__image {
	width: 100%;
	object-fit: contain;
	object-position: center;
}


/*=========== ARTICLES BLOCK ===========*/
.articles-block {
	background-color: var(--white);
	padding: 50px 0 100px;
}
.articles-block .articles {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-gap: 40px 30px;
	align-items: stretch;
}
.articles-block .article {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.articles-block .article:hover .article__title {
	color: var(--lightgreen);
}
.articles-block .article.hidden {
	display: none;
}
.articles-block .article.large {
	grid-column: span 2;
}
.articles-block .article__image {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 29 / 20;
	margin-bottom: 15px;
}
.articles-block .article.large .article__image {
	aspect-ratio: 62 / 20;
}
.articles-block .article__info {
	width: 100%;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.articles-block .article__date {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 14px;
	line-height: 171%;
	color: #787878;
	margin-bottom: 5px;
}
.articles-block .article__title {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	line-height: 169%;
	color: var(--dark);
	margin-bottom: 30px;
	transition: color .3s ease-in;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.articles-block .article.large .article__title {
	font-size: 21px;
	line-height: 129%;
}
.articles-block .article__desc {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 14px;
	line-height: 171%;
	color: #4d4d4d;
	margin-bottom: 30px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.articles-block .article__stats {
	margin-top: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 30px;
}
.articles-block .article__stat {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 15px;
}
.articles-block .article__stat-icon {
	object-fit: contain;
}
.articles-block .article__stat-value {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 14px;
	color: #0e1600;
}
.articles-block .showmore {
	margin: 50px auto 0;
}


/*============ SEO BLOCK ===========*/
.seo-block {
	padding: 50px 0 60px;
}
.seo-block .container {
	max-width: 100%;
	padding: 0 40px;
}
.seo-block .block-desc {
	max-width: 860px;
	margin: 0 auto;
}
.seo-block p {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 15px;
	line-height: 1.8;
	color: #4d4d4d;
	margin-bottom: 20px;
}
.seo-block h2.block-title {
	margin-top: 40px;
	margin-bottom: 16px;
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
}
.seo-block ul,
.seo-block ol {
	margin-bottom: 24px;
	padding-left: 0;
}
.seo-block li {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 15px;
	line-height: 1.75;
	color: #4d4d4d;
	list-style-position: outside;
	margin-left: 20px;
	margin-bottom: 10px;
}
.seo-block b,
.seo-block strong {
	font-weight: 600;
	color: #2d2d2d;
}
.seo-block p.mb15 {
	margin-bottom: 15px;
}

/*========== MAIN CTA BLOCK ===========*/
.main-cta-block {
	padding: 0 0 60px;
}
.main-cta-banner {
	background: linear-gradient(135deg, #1a3a10 0%, #2d6b1a 60%, #3a8a22 100%);
	border-radius: 0;
	padding: 52px 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}
.main-cta-banner__text {
	color: #fff;
}
.main-cta-banner__title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 12px;
}
.main-cta-banner__sub {
	font-size: 15px;
	line-height: 1.6;
	opacity: 0.8;
	max-width: 540px;
}
.main-cta-banner__btn {
	white-space: nowrap;
	flex-shrink: 0;
	font-size: 16px;
	padding: 16px 36px;
	border-radius: 0;
	background: linear-gradient(135deg, #f5c842 0%, #f5a623 50%, #e08010 100%);
	color: #1a3a10;
	font-weight: 700;
}
.main-cta-banner__btn:hover {
	background: linear-gradient(135deg, #f0be30 0%, #e09415 50%, #c87008 100%);
}
@media (max-width: 768px) {
	.main-cta-banner {
		flex-direction: column;
		padding: 36px 28px;
		text-align: center;
	}
	.main-cta-banner__title {
		font-size: 22px;
	}
	.main-cta-banner__btn {
		width: 100%;
		text-align: center;
	}
}

/*========== FOOTER ===========*/
#footer {
	width: 100%;
	background-color: var(--dark);
	padding: 40px 0;
	background-image: url('../images/footerbg.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: calc((100% - 420px) / 2) center;
}
#footer .container {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px 0;
}
#footer .soc-holder {
	margin-right: 100px;
}
#footer .partners {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 25px;
}
#footer .partners__title {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	color: var(--white);
}
#footer .partners__logo {
	max-width: 120px;
	object-fit: contain;
	object-position: center;
	width: 100%;
}
#footer .footer-right {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 24px;
	margin-right: 35px;
}
#footer .footer-right a {
	font-family: var(--font-family);
	font-size: 13px;
	font-weight: 500;
	color: #818181;
	text-decoration: none;
	white-space: nowrap;
}
#footer .footer-right a:hover {
	color: var(--lightgreen);
}
#footer .copyright {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 12px;
	color: #818181;
	white-space: nowrap;
}
#footer .adult {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 14px;
	text-align: right;
	color: #818181;
}

/*=========== MEDIA QUERIES ===========*/
@media (max-width: 1300px) {
	/*========== HEADER ==========*/
	#header .top-line {
		background-position: left center;
	}

	/*========== FOOTER ==========*/
	#footer {
		background-position: left center;
	}
}

@media (max-width: 1240px) {
	.logo-holder {
		margin-right: 50px;
	}
	.menu-holder {
		flex-wrap: wrap;
		justify-content: space-around;
		gap: 10px 20px;
	}
}

@media (max-width: 1025px) {
	/*========== ARTICLES BLOCK =========*/
	.articles-block .articles {
		grid-gap: 30px 20px;
	}


	/*=========== FOOTER ==========*/
	#footer .soc-holder {
		margin-right: 50px;
	}
	#footer {
		background-size: cover;
		background-position: center center;
	}
}

@media (max-width: 769px) {

	/*=========== HEADER ==========*/
	#header .top-line {
		padding: 20px 0;
	}
	#header .bot-line,
	#header .top-line .menu-holder  {
		display: none;
	}
	#mainbanner-block {
		padding-top: 140px;
	}
	#header .soc-holder {
		margin-left: auto;
	}
	#header .burger.open_menu {
		display: flex;
	}

	/*========== ADVANTS BLOCK ============*/
	.advants-block {
		margin-bottom: 100px;
	}

	/*========= PRODUCTS BLOCK =========*/
	.products-block {
		margin-bottom: 100px;
	}
	.products-block .nav-button {
		display: none;
	}

	/*========== BRANDS BLOCK ===========*/
	.brands-block {
		margin-bottom: 100px;
	}


	/*========= ARTICLES BLOCK ==========*/
	.articles-block .articles {
		grid-template-columns: repeat(2,1fr);
	}


	/*=========== FOOTER =========*/
	#footer {
		padding: 30px 0;
		background-size: cover;
	}
	#footer .lang-selector {
		display: none;
	}
	#footer .footer-right {
		margin-right: 0;
	}
}

@media (max-width: 640px) {
	/*========= PRODUCTS BLOCK =========*/
	.products-block .product {
		height: 300px;
	}

	/*=========== FOOTER =========*/
	#footer .footer-right {
		gap: 16px;
	}
}
@media (max-width: 498px) {
	.logo-holder {
		max-width: 90px;
		margin-right: 20px;
	}
	#header #mobile-mnu {
		width: 100%;
		padding: 20px;
	}
	h2.block-title {
		font-size: 21px;
	}

	input {
		padding: 20px 15px;
	}
	.btn {
		padding: 20px;
		width: fit-content;
	}
	.soc-holder {
		gap: 15px;
	}
	.soc-holder .soc {
		max-width: 16px;
	}
	.soc-holder .soc svg {
		width: 100%;
		height: 100%;
	}


	/*=========== MOBILE MNU ==========*/
	#header .burger.open_menu {
		height: 15px;
		width: 20px;
		justify-content: space-between;
		margin-right: 15px;
	}
	#header .burger.open_menu span {
		width: 20px;
		height: 2px;
	}


	/*=========== MAINBANNER BLOCK =========*/
	#mainbanner-block {
		padding: 90px 0 100px;
	}
	#mainbanner-block .block-title {
		font-size: 30px;
	}
	#mainbanner-block .block-title br {
		display: block;
	}
	#mainbanner-block .block-title img {
		max-width: 160px;
		margin-top: -20px;
	}
	#mainbanner-block .btn {
		width: 100%;
		max-width: unset;
	}

	/*========= PRODUCTS BLOCK =========*/
	.products-block h2.block-title {
		margin-bottom: 22px;
	}
	.products-block .nav-holder {
		margin: 20px auto 0;
	}
	.products-block .product {
		height: 320px;
	}
	.products-block .product__btn {
		padding: 10px 12px;
		font-size: 13px;
	}

	/*========== BRANDS BLOCK ===========*/
	.brands-block {
		padding: 15px 0;
	}

	/*========= ARTICLES BLOCK ==========*/
	.articles-block {
		padding: 50px 0;
	}
	.articles-block .articles {
		grid-template-columns: 1fr;
		grid-gap: 50px;
	}
	.articles-block .article.large {
		grid-column: unset;
	}
	.articles-block .article.large .article__image {
		aspect-ratio: 29 / 20;
	}
	.articles-block .article.large .article__title {
		font-size: 16px;
		line-height: 169%;
	}
	.articles-block .btn.showmore {
		max-width: 100%;
		width: 100%;
	}

	/*========= SEO BLOCK ==========*/
	.seo-block {
		padding: 50px 0 40px;
	}
	.seo-block .container {
		padding: 0 20px;
	}
	.seo-block .block-desc p,
	.seo-block .block-desc li {
		font-size: 14px;
	}

	/*========== MAIN CTA BANNER ==========*/
	.main-cta-banner {
		padding: 28px 20px;
		gap: 20px;
	}
	.main-cta-banner__sub {
		font-size: 13px;
	}

	/*========== FOOTER ===========*/
	#footer {
		padding: 15px 0;
	}
	#footer .soc-holder {
		margin-left: auto;
		margin-right: 0;
	}
	#footer .partners {
		width: 100%;
	}
	#footer .partners__logo {
		max-width: 86px;
	}
	#footer .footer-right {
		margin-left: 0;
		margin-right: auto;
		gap: 8px 12px;
		flex-wrap: wrap;
	}
	#footer .footer-right a {
		white-space: normal;
	}
	#footer .copyright {
		width: 100%;
		white-space: normal;
	}

}
