/*============ VARIABLES ===========*/
:root {
	--white: #fff;
	--black: #000;
	--shadow: -5px 10px 50px 0 rgba(57, 236, 75, 0.2);
	--orange: #FF6A24;
	--dark: #2e2e2e;
	--brown: #5e4028;
	--soft: #efeeec;
	--font-family: "Montserrat", sans-serif;
}


/*============ 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;
	color: var(--brown);
}
a {
	text-decoration: none;
}
a:hover {
	color: var(--orange);
	transition: color .3s ease-in;
}

.container {
	max-width: 1290px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

.logo-holder {
	display: flex;
	max-width: 160px;
	width: 100%;
	margin-right: 32px;
}
.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: 140%;
	font-weight: 500;
}
.menu-holder li.active a,
.menu-holder li a:hover {
	color: var(--orange);
}

.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(--orange);
}


h2.block-title {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 40px;
	text-transform: uppercase;
	color: #2E2E2E;
	margin-bottom: 32px;
}

.btn {
	outline: none;
	border: none;
	background: var(--orange);
	max-width: 240px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white);
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	text-align: center;
	padding: 16px 30px;
	cursor: pointer;
}
.btn:hover {
	background: var(--dark);
	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(--brown);
}



/*=========== HEADER ===========*/
#header {
	width: 100%;
	z-index: 99;
	padding: 33px 0;
	position: relative;
}
#header .container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
#header .menu-holder {
	max-width: 710px;
	width: 100%;
	justify-content: space-between;
	margin-right: 30px;
	flex-wrap: wrap;
	gap: 10px;
}
#header .tg-btn {
	background-color: transparent;
	width: fit-content;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 13px;
	box-shadow: unset;
}
#header .tg-btn .icon {
	height: fit-content;
	display: flex;
}
#header .tg-btn .title {
	color: var(--white);
	font-size: 16px;
	line-height: 140%;
	font-weight: 500;
}
#header .tg-btn:hover .title{
	color: var(--orange);
}
#header .tg-btn:hover .icon svg path {
	fill: var(--orange);
}



/*=========== MOBILE MNU ===========*/

#header #mobile-mnu {
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 320px;
	padding: 30px;
	transition: all 0.3s ease-in;
	transform: translateX(-350px);
	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(--orange);
}

#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 .menu-holder li a {
	color: var(--white);
}
#header #mobile-mnu .logo-holder {
	margin-bottom: 30px;
}

/*=========== MAINBANNER-BLOCK ===========*/
.mainbanner-block {
	position: relative;
	padding: 235px 0 120px;
	margin-bottom: 65px;
	overflow: hidden;
	top: -120px;
	margin-bottom: -50px;
}
.mainbanner-block{
	background-image: url(../images/mainbanner-image.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center bottom;
}

.mainbanner-block .block-info {
	max-width: 900px;
	width: 100%;
}
.mainbanner-block h1.block-title {
	font-family: var(--font-family);
	font-weight: 900;
	font-size: 60px;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 36px;
}
.mainbanner-block .block-desc {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 14px;
	line-height: 171%;
	color: var(--white);
	margin-bottom: 70px;
}
.mainbanner-block .btn {
	max-width: 100%;
	width: fit-content;
}
.mainbanner-block .mainbanner-image {
	position: absolute;
	width: 50%;
	object-fit: contain;
	object-position: center;
	top: 50%;
	transform: translateY(-50%);
	right: 50px;
	z-index: -1;
}


/*========= ADVANTS BLOCK ==========*/
.advants-block {
	margin-bottom: 65px;
}
.advants {
	display: grid;
	grid-template-columns: repeat(5,1fr);
	grid-gap: 32px;
}
.advant {
	width: 100%;
	background-color: var(--orange);
	padding: 25px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	position: relative;
}
.advant:before{
	content: '';
	display: block;
	width: 10px;
	height: 60px;
	background-color: var(--orange);
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
.advant:nth-child(1){
	background-color: #17341F;
}
.advant:nth-child(2){
	background-color: #233417;
}
.advant:nth-child(3){
	background-color: #342A17;
}
.advant:nth-child(4){
	background-color: #342517;
}
.advant:nth-child(5){
	background-color: #341722;
}
.advant__title {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	color: var(--white);
	padding-right: 20px;
}


/*========== BANNER BLOCK ==========*/
.banner-block {
	margin-bottom: 120px;
}
.banner-block .block-holder {
	background-image: url(../images/news.jpg);
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 50px 108px;
	margin: 0 auto;
}
.banner-block h2.banner-title {
	font-family: var(--font-family);
	font-weight: 900;
	font-size: 40px;
	line-height: 1;
	color: var(--white);
	text-align: center;
}
.banner-block .btn {
	max-width: 315px;
}

/*=========== PRODUCTS BLOCK ==========*/
.products-block {
	overflow: hidden;
	margin-bottom: 130px;
}
.products-block .products {
	overflow: hidden;
	align-items: stretch;
}
.products-block .product {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	background-color: var(--white);
	border-radius: 20px;
	padding: 32px;
}
.products-block .product__image {
	width: 100%;
	object-fit: contain;
	aspect-ratio: 17 / 20;
	margin-bottom: 25px;
}
.products-block .product__title {
	text-align: center;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 14px;
	line-height: 140%;
	color: var(--dark);
	margin-bottom: 24px;
}
.products-block .btn {
	margin-top: auto;
	padding: 12px 30px;
}


/*============ SEO BLOCK ===========*/
.seo-block {
	margin-bottom: 120px;
}
.seo-block h2.block-title {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 30px;
	line-height: 140%;
	color: #2E2E2E;
	margin-bottom: 32px;
	text-transform: none;
}
.seo-block p {
	margin-bottom: 65px;
}
.seo-block li,
.seo-block p {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 14px;
	line-height: 171%;
	color: var(--dark);
}
.seo-block ul {
	margin-bottom: 30px;
}
.seo-block li {
	margin-bottom: 0;
	list-style-position: outside;
	margin-left: 15px;
}
.seo-block b {
	font-weight: 700;
}
.seo-block p.mb15 {
	margin-bottom: 15px;
}
h3 {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 24px;
	line-height: 140%;
	color: var(--dark);
	margin-bottom: 24px;
}

/*========== FOOTER ===========*/
#footer {
	width: 100%;
	background-color: #12170E;
	padding: 64px 0;

}
#footer .container {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: stretch;
}
#footer .soc-holder {
}
#footer .menu-holder {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 28px;
	max-width: 777px;
	width: 100%;
}
#footer .menu-holder li a {
	font-size: 14px;
	font-weight: 600;
}
#footer .site-info {
	margin-right: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	flex-shrink: 0;
}
#footer .logo-holder {
	margin-right: 0;
	margin-bottom: 30px;
}
#footer .soc-block {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 15px;
	width: fit-content;
	margin-bottom: 30px;
	color: white;
}
#footer .info-line {
	display: grid;
	grid-template-columns: repeat(2,auto);
	grid-gap: 10px 40px;
}
#footer .copyright {
	margin-left: auto;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 12px;
	text-align: right;
	color: #818181;
}
#footer .adult {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 14px;
	text-align: right;
	color: #818181;
}
#footer .second{
	display: none;
}

/*=========== MEDIA QUERIES ===========*/
@media (max-width: 1300px) {

}

@media (max-width: 1240px) {
	/*=========== MAINBANNER BLOCK ==========*/
	.mainbanner-block {
		padding: 150px 0 70px;
	}
	.mainbanner-block .block-info {
		width: 80%;
	}
	.mainbanner-block .mainbanner-image {
		right: 20px;
	}
	/*========= BANNER BLOCK ===========*/
	.banner-block .block-holder{
		padding: 30px;
	}
	.banner-block h2.banner-title{
		text-align: left;
	}
	/*========= ADVANTS BLOCK ===========*/
	.advants {
		grid-gap: 30px;
	}

	/*========== PRODUCTS BLOCK ==========*/
	.products-block .products {
		overflow: visible;
	}
}

@media (max-width: 1025px) {
	/*========== HEADER ===========*/
	#header .tg-btn .title {
		display: none;
	}
	#header .menu-holder {
		justify-content: flex-start;
		gap: 10px 20px;
	}

	/*========= ADVANTS BLOCK ===========*/
	.advants {
		grid-template-columns: repeat(3,1fr);
	}

	.advant:last-child {
		grid-column: span 2;
	}
}
@media (max-width: 769px) {
	.shape-1 {
		width: 80%;
		object-fit: cover;
	}


	/*========== HEADER ===========*/
	#header {
		padding: 20px 0;
	}
	#header .menu-holder {
		display: none;
	}
	#header .burger.open_menu {
		display: flex;
	}

	/*========== MAINBANNER BLOCK ==========*/
	.mainbanner-block {
		margin-bottom: 0;
	}
	.mainbanner-block .block-info {
		width: 100%;
		max-width: 100%;
	}
	.mainbanner-block .mainbanner-image {
		width: 46%;
		top: 20px;
		right: -40px;
		transform: unset;
		object-position: center;
	}
	.mainbanner-block h1.block-title {
		font-size: 50px;
		margin-bottom: 70px;
	}


	/*========= ADVANTS BLOCK ===========*/
	.advants {
		grid-template-columns: repeat(2,1fr);
	}


	/*======== FOOTER ==========*/
	#footer .container {
		flex-direction: column;
	}
	#footer .menu-holder {
		margin-bottom: 30px;
		grid-template-columns: repeat(2,1fr);
		grid-gap: 20px;
	}
	#footer .site-info {
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: space-between;
		width: 100%;
	}
	#footer .info-line {
		width: 100%;
		justify-content: space-between;
		margin-top: 60px;
	}

}
@media (max-width: 498px) {
	.logo-holder {
		max-width: 81px;
	}
	h2.block-title {
		font-size: 30px;
	}
	.shape-1 {
		width: 80%;
		object-fit: cover;
		object-position: right top;
		height: 110px;
	}

	/*=========== HEADER ==========*/
	#header {
		padding: 18px 0;
		background-color: #12170E;
	}
	#header .burger.open_menu {
		height: 22px;
		width: 22px;
	}
	#header .burger.open_menu span {
		width: 100%;
		height: 2px;
	}
	#header .container{
		justify-content: flex-start;
	}
	#header .tg-btn {
		padding: 0;
		margin-left: auto;
	}
	#header .tg-btn .icon {
		width: 16px;
		height: 13px;
	}
	#header .tg-btn .icon svg {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}


	/*========== MAINBANNER BLOCK ==========*/
	.mainbanner-block {
		padding: 40px 0 32px;
		top: 0;
		margin-bottom: 30px;
	}
	.mainbanner-block h1.block-title {
		font-size: 30px;
		margin-bottom: 40px;
		padding-right: 80px;
	}
	.mainbanner-block .mainbanner-image {
		width: 200px;
		top: 30px;
		right: -50px;
	}
	.mainbanner-block .btn{
		text-align: left;
		font-size: 14px;
		padding: 25px;
	}

	/*========= ADVANTS BLOCK ===========*/
	.advants-block {
		margin-bottom: 32px;
	}
	.advants {
		grid-template-columns: 1fr;
		grid-gap: 12px;
	}
	.advant {
		padding: 35px 30px;
	}
	.advant:last-child {
		grid-column: unset;
	}
	.advant__title {
		font-size: 14px;
	}

	/*========== BANNER BLOCK =========*/
	.banner-block {
		margin-bottom: 65px;
	}
	.banner-block .block-holder {
		padding: 60px 15px;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.banner-block h2.banner-title {
		font-size: 30px;
		margin-bottom: 30px;
		line-height: 120%;
	}

	/*======== PRODUCTS BLOCK ==========*/
	.products-block {
		margin-bottom: 64px;
	}

	/*========== SEO BLOCK ==========*/
	.seo-block {
		margin-bottom: 64px;
	}
	.seo-block h2.block-title {
		font-size: 21px;
	}
	.seo-block p {
		margin-bottom: 32px;
	}
	.seo-block h3 {
		font-size: 18px;
		margin-bottom: 24px;
	}

	/*========= FOOTER ===========*/
	#footer {
		padding: 16px 0;
	}
	#footer .menu-holder {
		grid-gap: 16px;
		grid-template-columns: 1fr;
	}
	#footer .soc-block__title {
		display: none;
	}
	#footer .second{
		display: flex;
	}
	#footer .site-info .info-line{
		display: none;
	}
	#footer .second .copyright{
		margin-left: 0;
		margin-bottom: 15px;
	}
}

@media (max-width: 376px) {
	/*========== MAINBANNER BLOCK ========*/
	.mainbanner-block .mainbanner-image {
		right: -70px;
	}
}
