/*- Reset -*/
	:root{
		--black: #000000;
		--white: #ffffff;
		--gray: #666666;
		--blackRgba: rgba(0,0,0,0.5);
		--whiteRgba: rgba(255,255,255,0.5);
		--green: #305030;
		--orange: #CB6D4D;
		--greenRgba: rgba(48, 80, 48, 0.4);
		--orangeRgba: rgba(203, 109, 77, 0.4);
	}
	@font-face {
		font-family: "18823";
		src: url("../fonts/18823.ttf");
	}
	@font-face {
		font-family: "DihjautiS-Regular";
		src: url("../fonts/DihjautiS-Regular.otf");
	}
	*{
		margin: 0;
		padding: 0;
		border: none;
		outline: none;
		box-sizing: border-box;
		font-family: 'DihjautiS-Regular', 'Roboto', Verdana, sans-serif;
		color: var(--black);
	}
	a{ text-decoration: none; }
	h1, h2, h3, h4, h5, h6{ font-weight: normal; }
	ul{ list-style: none; }
	html, body{
		width: 100%;
		height: 100%;
	}
	body{
		font-size: 20px;
	}
    button{
    	border: none;
    	background: none;
    	outline: none;
    }
	hr{
		width: 50%;
		height: 2px;
    	border: none;
		border-bottom: 3px solid var(--orange);
    	margin: 0 auto 60px;
	}
	.skip-link{ position:absolute; left:-9999px; top:auto; }
	.skip-link:focus{ left:10px; top:10px; z-index:9999; background:#fff; padding:8px; }
/*- Reset -*/
/*- Scroll -*/
	.scroll-10,
	.scroll-none{ overflow: auto; }
	.scroll-10::-webkit-scrollbar-thumb,
	.scroll-none::-webkit-scrollbar-thumb{
	    background-color: var(--gray);
		border-radius: 1px;
	}
	.scroll-10::-webkit-scrollbar{ width: 10px; }
	.scroll-none::-webkit-scrollbar{
	    width: 0px;
	    height: 0px;
	}
/*- Scroll -*/
/*- Main-*/
	.section-wrapper{
		width: calc(100% - (20px * 2));
		max-width: 1200px;
		margin: 0 auto;
	}
	.section-image{
		margin: 0 auto;
		overflow: hidden;
		border-radius: 10px;
		background-color: var(--white);
		width: 70%;
		margin-bottom: 40px;
		box-shadow: 0 0 6px 0 var(--black);
	}
	.section-image img{
		width: 100%;
	}
	.bg-img{
		width: 100%;
		height: 100vh;
		position: fixed;
		overflow: hidden;
	}
	.bg-img:before{
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		padding-top: 100%;
	}
	.bg-img img{
		position: absolute;
		width: 100%;
		height: 100%;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		object-fit: cover;
	    cursor: pointer;
	}
	main{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.section-about-us,
	.section-why-us,
	.section-result{
		background-color: var(--white);
	}
	.section-products{
		background-color: var(--blackRgba);
	}
	.section-products .section-title,
	.section-products .section-description{
		color: var(--white);
	}
	.section-about-us,
	.section-why-us,
	.section-result,
	.section-products{
		padding: 200px 0;
	}
	.section-products .section-description{
		margin-bottom: 60px;
	}
	.section-description{
		color: var(--gray);
	}
	.section-products .section-title{
		margin-bottom: 20px;
	}
	.section-title{
		text-align: center;
		font-weight: bold;
		font-size: 40px;
		color: var(--green);
	}
/*- Main -*/
/*- Main section -*/
	.section-main{
		height: 100%;
		background-color: rgba(0,0,0,0.5);
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.main-meta{
		max-width: 800px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
	}
	h1{
		font-size: 70px;
		line-height: 80px;
		text-align: center;
		width: 100%;
		margin-bottom: 40px;
		color: var(--white);
	}
	.main-meta p{
		font-size: 24px;
		line-height: 26px;
		text-align: center;
		width: 100%;
		margin-bottom: 40px;
		color: var(--white);
	}
	.main-meta a{
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: var(--orange);
		padding: 16px 40px;
		border-radius: 10px;
		text-transform: uppercase;
		color: var(--white);
	}
/*- Main section -*/
/*- Header -*/
	header{
		background-color: var(--green);
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		transition: 0.2s;
		padding: 10px 0;
		z-index: 999;
	}
	header *{
		color: var(--white);
	}
	.header-content{
		width: calc(100% - 20px);
		max-width: 1200px;
		margin: 0 auto;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.right-block{
		display: flex;
		align-items: center;
	}
	.right-block .logo{
		margin-right: 20px;
		display: flex;
		align-items: center;
	}
	.left-block{
		display: flex;
		align-items: center;
		/*gap: 8px;*/
	}
	.left-block ul{
		display: flex;
		align-items: center;
		gap: 16px;
	}
	.left-block a{
		font-size: 18px;
	}
	.logo{
		width: 50px;
	}
/*- Header -*/
/*- Products -*/
	.section-products .section-description{
		text-align: center;
	}
	.products-cards{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.products-cards .card.card-psoriaz{
		width: 100%;
	}
	.products-cards .card{
		width: calc((100% / 2) - 20px);
		box-shadow: 0 0 6px 0 var(--black);
		border-radius: 8px;
		padding: 26px;
		display: flex;
		flex-wrap: wrap;
		background-color: var(--white);
		margin-bottom: 40px;
	}
	.card-image{
		width: 20%;
	}
	.card-image img{
		width: 100%;
	}
	.card-meta{
		width: 80%;
	}
/*- Products -*/
/*- List -*/
	.list-wrapper{
		width: 100%;
	}
	.list-wrapper li{
		color: var(--gray);
		text-align: center;
	}
/*- List -*/
/*- Cards -*/
	.section-cards{
		display: flex;
		flex-wrap: wrap;
	}
	.section-cards .card{
		width: calc(100% / 3);
		padding: 0 20px;
	}
	.card-0 svg,
	.card-2 svg{
		stroke: var(--green);
	}
	.card-1 svg{
		stroke: var(--orange);
	}
	.card-0 .card-icon,
	.card-2 .card-icon{
		background-color: var(--greenRgba);
	}
	.card-1 .card-icon{
		background-color: var(--orangeRgba);
	}
	.card-icon{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 80px;
		height: 80px;
		border-radius: 50%;
		overflow: hidden;
		margin: 0 auto 16px;
	}
	.card-icon svg{
		width: 50%;
	}
	.card-title{
		text-align: center;
		font-weight: bold;
		margin-bottom: 10px;
	}
	.card-desc{
		text-align: center;
		color: var(--gray);
	}
/*- Cards -*/
/*- Gallery -*/
	.section-gallery {
	    display: flex;
	    flex-wrap: wrap;
	    gap: 5px;
	}
	.image-border {
	    width: calc((100% - 20px) / 5);
	    border-radius: 10px;
	    box-shadow: 0 0 8px 0 var(--black);
	    overflow: hidden;
	}
	.image-wrapper{
		width: 100%;
		height: auto;
		position: relative;
		overflow: hidden;
	}
	.image-wrapper:before{
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		padding-top: 100%;
	}
	.image-wrapper img{
		position: absolute;
		width: 100%;
		height: 100%;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		object-fit: cover;
	    cursor: pointer;
	}
	.image-review{
		position: absolute;
		left: 4px;
		bottom: 4px;
		background-color: rgba(0,0,0,0.8);
		width: calc(100% - 8px);
		padding: 10px;
		color: var(--white);
		font-size: 16px;
		max-height: calc(40% - 4px);
		border-radius: 6px;
	}
/*- Gallery -*/
/*- Footer -*/
	footer{
		background-color: var(--green);
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 50px 20px;
	}
	footer *{
		color: var(--white);
	}
	footer h2{
		font-size: 27px;
		margin-bottom: 40px;
	}
	footer span{
		font-size: 24px;
		margin-bottom: 20px;
	}
	footer a{
		margin-bottom: 10px;
		display: flex;
		align-items: center;
	}
	footer a svg{
		margin-right: 10px;
		display: flex;
		align-items: center;
		width: 20px;
	}
	footer a.whats-app svg{
		width: 24px;
	}
	footer h2,
	footer span{
		display: block;
	}
	.coop{
		margin-top: 20px;
		margin-bottom: -20px;
		font-size: 14px;
	}
	.coop span{
		font-size: 14px;
		display: inline;
		color: var(--orange);
	}
/*- Footer -*/
.faq{
	background-color: var(--blackRgba);
	padding-top: 150px;
	min-height: 100%;
	padding-bottom: 20px;
}
.faq h1{
	text-align: center;
	color: var(--white);
	margin-bottom: 20px;
}
.faq-item{
	width: calc(100% - 20px);
	max-width: 900px;
	margin: 0 auto;
	background-color: var(--white);
	padding: 10px;
	margin-top: 20px;
	border-radius: 10px;
}
.faq-item h3{
	font-weight: bold;
	margin-bottom: 10px;
}
.faq-item p{
	color: var(--gray);
}
.faq-item strong{
	color: var(--orange);
}
.contacts-page{
	background-color: var(--blackRgba);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	height: 100%;
}
.contacts-page h1{
	width: 100%;
	text-align: center;
	color: var(--white);
}
.contacts-page p{
	width: 100%;
	text-align: center;
	color: var(--white);
	margin-bottom: 20px;
}
.contacts-page .contacts-block{
	background-color: var(--white);
	border-radius: 10px;
	text-align: center;
	padding: 20px;
}
.contacts-block p,
.contacts-block span,
.contacts-block a{
	color: var(--black);
	display: block;
}
.contacts-block a{
	margin-bottom: 10px;
}
.contacts-block span{
	padding-top: 20px;
	font-size: 16px;
}
.center-block{
	width: calc(100% - 20px);
	max-width: 900px;
}
/* Добавьте в css/style.css */
.scroll-none {
    scroll-behavior: smooth;
}

/* Отключить плавную прокрутку для пользователей, которые предпочитают reduced motion */
@media (prefers-reduced-motion: reduce) {
    .scroll-none {
        scroll-behavior: auto;
    }
}