:root {
	--bg-color-brown: #0C0400;
	--bg-color-light-green: #e5faef;
    --bg-color-white: #ffffff;
	--bg-color-gray: #353535;
	--color-text-gray: #525252;
	--color-text-black: #000;
	--color-green: #0c6;
	--color-green-hover: #00e673;
    --color-medium-gray: #6A6C6E;
    --color-orange: #fa3;
	--border: 1px solid #0c6;
}
*{
	box-sizing: border-box;
}
body{
	color: var(--color-text-black);
	/*font-family: "Yeseva One";*/
	font-family: monospace;
	/*background-color: #353535;*/
	background-color: var(--bg-color-light-green);
}
body, li, ol, p, ul {
	margin: 0;
}
body.menu-open {
	overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
}
img {
	max-width: 100%;
	height: auto;
}
figure {
	margin: 0;
}
svg {
	max-width: 100%;
	max-height: 100%;
}
.container{
	max-width: 1400px;
	width: 100%;
	padding: 0 40px;
	margin: 0 auto;
}
.container-article {
    max-width: 843px;
    margin: auto;
}
section{
	/*margin: 112px auto;*/
	/*padding: 0 40px;*/
}
a {
	color: var(--color-green);
	text-decoration: none;
}
.button{
	/*display: inline-block;*/
	padding: 16px 52px;
	border: none;
	/*border-radius: 15px;*/
	background-color: #fa3;
	/*background-color: #ededed;*/
	letter-spacing: 1.2px;
	color: #fff;
	text-align: center;
	font-size: 22px;
	font-weight: 600;
	text-shadow: 2px 2px 5px #737373;
	cursor: pointer;
	white-space: nowrap;
}
.button:hover {
	background-color: var(--color-green-hover);
	transition: 0.3s;
}

.main-menu ul {
	display: flex;
	flex-wrap: wrap;
}
.main-menu a, .footer-menu a{
	color: var(--color-green);
	font-size: 2em;
	font-weight: 700;
	padding: 10px 26px;
}
.main-menu a:hover, .footer-menu a:hover, .mobile-menu-wrap .mobile-menu a:hover{
	text-decoration: underline;
	/*color: #fff;*/
}
header .social-links{
	display: flex;
	gap: 8px;
	align-items:center;
}
header .social-links svg{
	overflow: visible;
}
header .social-links svg:hover path, footer .social-media svg:hover path{
	/*fill: #A97D60;*/
	opacity: 0.7;
}
header .social-links > a {
display: flex; 
}
.desktop-menu {
	display: flex;
}

.mobile-menu {
	display: none;

	.burger-checkbox {
		position: absolute;
		visibility: hidden;
	}
	.burger {
		cursor: pointer;
		display: block;
		position: relative;
		border: none;
		background: transparent;
		width: 40px;
		height: 26px;
	}

	.burger::before,
	.burger::after {
		content: '';
		left: 0;
		position: absolute;
		display: block;
		width: 100%;
		height: 4px;
		border-radius: 10px;
		background: #0c6;
	}
	.burger::before {
		top: 0;
		box-shadow: 0 11px 0 #0c6;
		transition: box-shadow .3s .15s, top .3s .15s, transform .3s;
	}
	.burger::after {
		bottom: 0;
		transition: bottom .3s .15s, transform .3s;
	}
	.burger-checkbox:checked + .burger::before {
		top: 11px;
		transform: rotate(45deg);
		box-shadow: 0 6px 0 rgba(0,0,0,0);
		transition: box-shadow .15s, top .3s, transform .3s .15s;
	}
	.burger-checkbox:checked + .burger::after {
		bottom: 11px;
		transform: rotate(-45deg);
		transition: bottom .3s, transform .3s .15s;
	}

	.menu {
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;   /* растягиваем на весь экран */
		height: 100%;
		background: rgba(255,255,255,0.95);
		transform: translateX(100%);
		transition: transform 0.3s ease;
		display: flex;
		justify-content: center;
		align-items: center;
		z-index: 99;
	}

	.close {
		position: absolute;
		top: 20px;
		right: 20px;
		width: 32px;
		height: 32px;
		cursor: pointer;
	}
	.close::before,
	.close::after {
		content: '';
		position: absolute;
		top: 15px;
		left: 0;
		width: 32px;
		height: 3px;
		background: #000;
		border-radius: 2px;
	}
	.close::before {
		transform: rotate(45deg);
	}
	.close::after {
		transform: rotate(-45deg);
	}

	.menu ul {
		list-style: none;
		padding: 0;
		margin: 0;
		text-align: center;
	}

	.menu li {
		margin: 20px 0;
	}

	.menu a {
		text-decoration: none;
		font-size: 24px;
		color: #000;
	}

	/* показываем меню при checked */
	.burger-checkbox:checked ~ .menu {
		transform: translateX(0);
	}
}



.title{
	font-size: 41px;
	font-weight: 600;
	color: var(--color-green);
	/*font-family: 'ADLaM Display', sans-serif;*/
}
.hero-container{
	display: flex;
	justify-content: space-between;
}
.hero .right {
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-container .left {
	/*display: flex;*/
	/*flex-direction: column;*/
	/*justify-content: center;*/
	/*text-align: center;*/
}
.hero_img{
	height: auto;
}
.hero__title{
	/*text-align: center;*/
	font-size: 53px;
	color: var(--color-green);
}
.hero__text{
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 1.9px;
	line-height: 1.9em;
	margin-bottom: 50px;
}
.hero__button{
	/*margin-top: 52px;*/
}
.blog {
	/*margin: 40px 0;*/
}
.blog h1 {
	color: #fa3;
	font-size: 64px;
    margin-top: 64px;
	margin-bottom: 64px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--bg-color-white);
}
.blog-item {
	display: flex;
	margin-bottom: 64px;
    background-color: var(--bg-color-white);
}
@media (max-width: 768px) {
    .blog-item {
        flex-direction: column;
    }
}
@media (max-width: 480px) {
    .blog h1 {
        font-size: 36px;
        margin-top: 32px;
        margin-bottom: 32px;
        padding-bottom: 16px;
    }
    .blog-item {
        margin-bottom: 32px;
    }
}
.item-content {
	padding: 32px;
    flex: 0 1 70%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
@media (max-width: 480px) {
    .item-content {
        padding: 20px;
    }
}
.item-content h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
}
@media (max-width: 480px) {
    .item-content h2 {
        font-size: 24px;
    }
}
.item-content p {
    color: var(--color-medium-gray);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}
.item-content time {
    display: inline-block;
    color: var(--color-medium-gray);
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 10px;
}
.item-content .readmore {
    margin-top: 20px;
}
.item-content .readmore a {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-green);
    border: 2px solid var(--color-orange);
    padding: 8px 16px;
    transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.item-content .readmore a:hover {
    background: var(--color-green);
    color: #fff;
    border-color: var(--color-green);
    box-shadow: 0 4px 16px rgba(0, 204, 102, 0.15);
}
.item-image {
	flex: 0 1 30%;
    display: flex;
    align-items: stretch;
}
.item-image img {
    height: 100%;
    width: auto;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
    .item-image {
        flex: 0 1 100%;
    }
    .item-image img {
        width: 100%;
        height: 300px;
    }
}
.services-container{
	display: flex;
	flex-direction: column;
}
.services-inner{
	display: flex;
	justify-content: space-between;
	gap: 15px;
}

.services-inner .left,
.services-inner .right {
	min-width: calc((100% / 2) - 10px);
}

.services-inner:first-child{
	margin-bottom: 157px;
}
.services-container .left{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.service-wrap{
	display: flex;
	flex-direction: column;
	gap:32px;
	max-width: 535px;
}

.service-wrap__description{
	font-size: 20px;
	font-weight: 400;
	line-height: 32px;
}
.faq-item{
	cursor: pointer;
	margin-bottom: 32px;
}
.faq-item:last-child{
	margin-bottom: 0;
}
.faq-header {
	display: flex;
	gap: 24px;
}
.faq-header__title {
	font-weight: 500;
	font-size: 1.5rem;
	margin: 0;
}
.faq-header__title:hover{
	color: #0c6;
}
.faq-item__body {
	margin-top: 8px;
	padding-left: 48px;
	/*color: #A97D60;*/
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	will-change: max-height;
	transition: opacity .3s ease-out, max-height .3s ease-out, padding .3s ease-out, margin .3s ease-out;
	box-sizing: content-box;
	font-size: 16px;
	line-height: 1.6;
}
.faq-item.--show .faq-item__body {
	opacity: 1;
}
.faq-item img {
	transform: rotate(-45deg);
	transition: transform 0.3s ease;
}
.faq-item.--show img {
	transform: rotate(0deg);
}
.works__title, .reviews__title, .features__title, .contacts__title{
	margin-bottom: 48px;
}
.works-slider, .reviews-slider{
	position: relative;
}
.glide__arrows{
	position: absolute;
	top: -96px;
	right: 40px;
}
.glide__aroow{
	border: none;
	background: transparent;
}
.glide__aroow:hover{
	cursor: pointer;
}
.glide__aroow:hover path{
	/*stroke: #FAF8EA;*/
}
.glide__aroow:hover circle{
	/*fill: var(--bg-color-light-green);*/
	opacity: 0.5;
}
.works-slider li{
	position: relative;
}
.works-slider img{
	/*border-radius: 15px;*/
}
.works-slider li {
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0);
}
.img-front, .img-back{
	-webkit-perspective: 600px;
	-ms-perspective: 600px;
	perspective: 600px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-clip: padding-box;
	transition: all 0.4s cubic-bezier(0.2, 0.85, 0.4, 1.275) !important;
}
.img-front {
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	z-index: 10;
}
.img-back {
	position: absolute;
	left: 0;
	top: 0;
	height: auto;
	width: 100%;
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	z-index: -1;
}

.works-slider li:hover .img-back {
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	z-index: 1;
}
.works-slider li:hover .img-front {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
	z-index: -1;
}
/*
.works-slider .img-overlay{
    position:absolute;
    border-radius: 15px;
    background: rgba(0, 0, 0, .5);
    right: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 3;
    transition: width .4s;
    height: 98%;
    width: 100%;
}
.works-slider .img-overlay.open{
    opacity: 1;
    visibility: visible;
}
.website-speed-wrap{
    display: none;
    position: absolute;
    z-index: 5;
    top:0;
    width: 100%;
    height: 100%;
}
.img-overlay.open ~ .website-speed-wrap{
    display: block;
}
.website-speed{
    display: flex;
    height: 100%;
    align-items: flex-end;
    justify-content: center;
    padding: 0 40px 13px;
}
.website-speed img{
    border-radius: unset;
}*/

section.services {
	background-color: #fff;
}
section.works {
	/*background-color: #fff;*/
}
section.reviews {
	background: #fff;
	/*padding: 100px 0;*/
}
section.contacts {
	background: #fff;
	/*padding: 100px 0;*/
}
section.reviews, section.works{
	/*padding-right: 0;*/
}

.review{
	position: relative;
	height: 332px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 64px 32px 32px 32px;
	background-color: var(--bg-color-light-green);
	/*background-color: #fff;*/
	border-radius: 20px;
	gap: 24px;
}
.review .review__icon{
	position: absolute;
	left: 32px;
	top: -2px;
}
.review__text{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 7;
	align-self: stretch;
	overflow: hidden;
	color: #201710;
	text-overflow: ellipsis;
	/* Small/Small */
	font-style: italic;
	font-size: 16px;
	font-weight: 400;
	/*line-height: 27px; !* 168.75% *!*/
	line-height: 1.5em;
}
.review__author{
	align-self: flex-end;
	color: var(--color-green);
	font-size: 13px;
	font-weight: 400;
	line-height: 23px;
}
.features__list{
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
	justify-content: space-between;
}
.features__list-item{
	max-width: calc(25% - 32px);
	display: flex;
	flex-direction: column;
	gap: 32px;
	margin-bottom: 32px;
}
.features__list-item .list-header{
	display: flex;
	align-items: center;
	gap: 32px;
}
.features__list-item .list-description{
	font-size: 20px;
	font-weight: 400;
	line-height: 32px;
}
hr{
	border: 1px solid #fff;
	width: calc(100% - 80px);
}
.circle {
	border-radius: 50%;
	width: 48px;
	height: 48px;
	padding: 10px;
	background-color: #fff;
}
.contacts-wrapper{
	display: flex;
	justify-content: space-between;
}
.contacts_form__text{
	font-size: 20px;
	font-weight: 400;
	line-height: 33px;
	max-width: 535px;
	margin-bottom: 30px;
	/*color: #8f8f8f;*/
}
.contacts__button{
	border: none;
	cursor: pointer;
}
input, textarea {
	background: transparent;
	/*border: none;*/
	border: var(--border);
	width: 100%;
	height: 48px;
	/*padding: 0 0 4px 0;*/
	padding: 8px 16px;
	margin-bottom: 32px;
	color: #000;
	font-size: 16px;
	font-weight: 400;
}
input:focus, textarea:focus{
	outline: unset;
	/*border-color: #fff;*/
}
textarea {
	border: var(--border);
	min-height: 4em;
	padding: 8px 16px;
}
::placeholder{
	color: #0c6;
}
.contacts-label{
	font-size: 16px;
	font-weight: 400;
	line-height: 27px;
	color: #A97D60;
	margin-bottom: 10px;

}
.flex-inputs{
	display: flex;
	gap: 40px;
	justify-content: space-between;
}
footer{
	padding: 32px 40px 16px 40px;
	border-top: 1px solid #fff;
}
.footer-container{
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer-wrapper{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer__contacts-data{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
footer .social-media{
	display: flex;
	gap: 8px;
}
footer .email{
	font-size: 16px;
	font-weight: 400;
}
.footer-copyright{
	text-align: center;
	font-size: 10px;
	font-weight: 400;
	line-height: 17px;
}
.overlay{
	background: rgba(0, 0, 0, .5);
	right: 0;
	top: 0;
	opacity: 0;
	visibility: hidden;
	z-index: 3;
	transition: width .4s;
	height: 100%;
	position: fixed;
	width: 100%;
}
.overlay.opened{
	opacity: 1;
	visibility: visible;
}
.contact-form-popup{
	display: none;
	height: 100vh;
	overflow: auto;
	z-index: 10000000000;
	position:fixed;
	align-items:center;
	justify-content:center;
	top:0px;
	left:0px;
	width:100vw;
}
.contact-form-popup.opened{
	display: flex;
}
.contact-form-popup .btn-close{
	text-align: end;
	cursor: pointer;
}
.contact-form-popup .contacts_form{
	max-width: 754px;
	max-height: 700px;
	padding: 40px;
	overflow: auto;
	border-radius: 4px;
	background-color: #fff;
}
.all-reviews {
	display: block;
	text-align: right;
	margin-top: 20px;
}
.com-content-article {
    background-color: var(--bg-color-white);
    margin-top: 64px;
    margin-bottom: 64px;
    padding: 40px 20px;
}
.com-content-article img {
    width: 100%;
    height: 554px;
    object-fit: cover;
}
@media (max-width: 480px) {
    .com-content-article img {
        height: 300px;
    }
}
.com-content-article__heading h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 10px;
}
@media (max-width: 480px) {
    .com-content-article__heading h1 {
        font-size: 32px;
    }
}
.com-content-article__heading .article-datetime {
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}
.com-content-article .item-image {
    margin: 32px 0;
}
.com-content-article__body h2 {
    font-size: 28px;
    line-height: 1.2;
    margin: 25px 0 10px 0;
}
.com-content-article__body h3 {
    font-size: 24px;
    line-height: 1.2;
    margin: 20px 0 10px 0;
}
@media (max-width: 480px) {
    .com-content-article__body h2 {
        font-size: 24px;
    }
    .com-content-article__body h3 {
        font-size: 20px;
    }
}
.com-content-article__body p {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}
.com-content-article__body ul {
    margin: 15px 0;
    padding-left: 25px;
}
@media (max-width: 480px) {
    .com-content-article__body ul {
        padding-left: 15px;
    }
}
.com-content-article__body ul li {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    position: relative;
    padding-left: 24px;
    list-style: none;
}
.com-content-article__body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--color-green);
    border-radius: 50%;
    display: inline-block;
}