@charset "UTF-8";
* {
	padding: 0;
	margin: 0;
	border: 0;
}

*,
*:before,
*:after {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

nav,
footer,
header,
aside {
	display: block;
}

html,
body {
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
	font-family: inherit;
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a,
a:visited {
	text-decoration: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

a:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: 400;
}

.center {
	text-align: center;
}

.header {
	background: var(--white);
	box-shadow: 0px 4px 33px rgba(0, 0, 0, 0.15);
	padding: 0 2%;
}
.header__wrapper {
	display: inline-flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	padding: 17px 0 18px;
}
.header__logo-wrapper {
	margin-right: 15px;
}
.header__logo {
	font-weight: 600;
	font-size: 36px;
	line-height: 44px;
	transition: var(--transition);
}
@media (max-width: 991px) {
	.header__logo {
		font-size: 30px;
		line-height: 34px;
	}
}
@media (max-width: 767px) {
	.header__logo {
		font-size: 24px;
		line-height: 30px;
	}
}
@media (max-width: 410px) {
	.header__logo {
		font-size: 18px;
	}
}
.header__logo:hover {
	transition: var(--transition);
	color: var(--green);
}
@media (max-width: 767px) {
	.header__link-wrapper {
		position: absolute;
		opacity: 0;
		top: 65px;
		left: 100vw;
		background: var(--white);
		height: 100vh;
		padding: 20px 0;
		flex-direction: column;
		align-items: center;
		justify-content: start;
		width: calc(100% + 20px);
		transition: var(--transition);
	}
	.header__link-wrapper.active {
		opacity: 1;
		left: 0;
		text-align: center;
		transition: var(--transition);
		z-index: 100;
		overflow-y: scroll;
	}
}
.header__link-list {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px 40px;
	margin-left: 15px;
	margin-right: 15px;
}
@media (max-width: 1024px) {
	.header__link-list {
		gap: 5px 15px;
	}
}
@media (max-width: 767px) {
	.header__link-list {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 15px 0;
		margin-left: 0;
		margin-right: 0;
	}
}
.header__link {
	font-weight: 500;
	line-height: var(--lh-small);
	transition: var(--transition);
}
.header__link:hover {
	transition: var(--transition);
	color: var(--green);
}
.header__link_active {
	line-height: var(--lh-common-plus);
	color: var(--green);
}
.header__btn-wrapper {
	display: inline-flex;
}
@media (max-width: 767px) {
	.header__btn-wrapper {
		margin-left: auto;
	}
}
@media (max-width: 610px) {
	.header__btn-wrapper {
		display: none;
	}
}
.header__btn {
	box-shadow: 6px 4px 17px rgba(0, 0, 0, 0.19) !important;
}
@media (max-width: 767px) {
	.header__btn {
		padding: 5px 10px !important;
		font-size: 15px !important;
	}
}
.header__link-item_parent {
	position: relative;
}
.header__link-item_parent:hover .header__link-sub-list {
	display: inline-flex;
}
@media (max-width: 767px) {
	.header__link-item_parent .header__link {
		pointer-events: none;
	}
}
.header__link-sub-list {
	display: none;
	position: absolute;
	flex-direction: column;
	left: -10px;
	z-index: 5;
	background-color: var(--white);
	top: 100%;
	box-shadow: 3px 4px 26px rgba(0, 0, 0, 0.08);
	min-width: 85px;
}
@media (max-width: 767px) {
	.header__link-sub-list {
		display: none !important;
		position: relative;
		left: unset;
		z-index: 0;
		top: unset;
		box-shadow: none;
		width: 100%;
		padding-top: 10px;
	}
	.header__link-sub-list.active {
		display: inline-flex !important;
	}
}
.header__link-sub-list-item {
	display: inline-flex;
	align-items: center;
	border-top: 1px solid var(--orange);
}
.header__link-sub-list-item:first-child {
	border-top: none;
}
@media (max-width: 767px) {
	.header__link-sub-list-item {
		width: 100%;
		justify-content: center;
	}
	.header__link-sub-list-item:first-child {
		border-top: 1px solid var(--orange);
	}
	.header__link-sub-list-item:last-child {
		border-bottom: 1px solid var(--orange);
	}
}
.header__link-sub-list-link {
	padding: 5px 10px;
	height: 100%;
	text-align: left;
	transition: var(--transition);
	white-space: nowrap;
}
.header__link-sub-list-link:first-child {
	padding-top: 10px;
}
.header__link-sub-list-link:last-child {
	padding-bottom: 10px;
}
.header__link-sub-list-link:hover {
	color: var(--orange);
	transition: var(--transition);
}
@media (max-width: 767px) {
	.header__link-sub-list-link {
		width: 100%;
		padding: 10px 0 0;
		text-align: center;
	}
}
@media (min-width: 611px) {
	.header__hidden-btn {
		display: none;
	}
}

.header-burger {
	display: none;
}
@media (max-width: 767px) {
	.header-burger {
		display: inline-flex;
		margin-left: 20px;
		position: relative;
		width: 35px;
		height: 14px;
		align-items: center;
		justify-content: end;
	}
	.header-burger:before,
	.header-burger:after {
		content: '';
		background-color: var(--black);
		position: absolute;
		height: 2px;
		transition: var(--transition);
	}
	.header-burger:before {
		width: 35px;
		top: 0;
		transition: var(--transition);
	}
	.header-burger:after {
		width: 25px;
		bottom: 0;
		transition: var(--transition);
	}
}
.header-burger__line {
	background-color: var(--black);
	width: 30px;
	height: 2px;
	transition: var(--transition);
}

.overlay {
	width: 100%;
	height: 100vh;
	position: fixed;
	inset: 0;
	z-index: 5;
	background: rgba(0, 0, 0, 0.71);
}

.footer {
	background-color: var(--green);
	position: relative;
}
.footer__conversion-banner {
	position: relative;
	top: -60px;
	margin-top: 60px;
	margin-bottom: -60px;
}
.footer__wrapper {
	padding: 35px 0 79px;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: stretch;
	width: 100%;
	gap: 30px 0;
}
@media (max-width: 991px) {
	.footer__wrapper {
		padding: 25px 0 50px;
	}
}
.footer__logo-wrapper {
	width: 60%;
}
@media (max-width: 767px) {
	.footer__logo-wrapper {
		width: 100%;
	}
}
.footer__title {
	display: inline-block;
	margin-bottom: 22px;
}
.footer__info-links-wrapper {
	display: inline-flex;
	flex-direction: column;
	width: 100%;
	gap: 21px 0;
}
@media (max-width: 991px) {
	.footer__info-links-wrapper {
		gap: 15px 0;
	}
}
.footer__info-link {
	line-height: 22px;
}
.footer__info-wrapper {
	width: 40%;
}
@media (max-width: 767px) {
	.footer__info-wrapper {
		width: 100%;
	}
}
.footer__info-text {
	font-family: 'Open Sans';
	line-height: 25px;
}

.footer-copyrights {
	text-align: center;
	padding: 5px;
}

:root {
	--green: #00513e;
	--green-bg-rgba: rgba(55, 169, 2, 0.61);
	--black: #0f0f0f;
	--white: #ffffff;
	--yellow: #f9bf0f;
	--grey: #f8f9fb;
	--grey-light: #aebcd1;
	--transition: ease-in-out 0.2s;
	--fz-small: 14px;
	--fz-common: 18px;
	--lh-small: 22px;
	--lh-common: 24px;
	--section-mb: 70px;
}
@media (max-width: 991px) {
	:root {
		--fz-common: 16px;
		--lh-small: 21px;
		--lh-common: 23px;
	}
}
@media (max-width: 767px) {
	:root {
		--fz-small: 13px;
		--fz-common: 15px;
		--lh-small: 20px;
		--lh-common: 22px;
		--section-mb: 55px;
	}
}

h1,
.h1 {
	font-weight: 600;
	font-size: 36px;
	line-height: 44px;
}
@media (max-width: 991px) {
	h1,
	.h1 {
		font-size: 32px;
		line-height: 40px;
	}
}
@media (max-width: 767px) {
	h1,
	.h1 {
		font-size: 30px;
		line-height: 36px;
	}
}

h2,
.h2 {
	font-weight: 500;
	font-size: 24px;
	line-height: 35px;
}
@media (max-width: 991px) {
	h2,
	.h2 {
		font-size: 22px;
		line-height: 28px;
	}
}
@media (max-width: 767px) {
	h2,
	.h2 {
		font-size: 21px;
		line-height: 26px;
	}
}

h3,
.h3 {
	font-weight: 500;
	font-size: var(--fz-common);
	line-height: 22px;
}
@media (max-width: 991px) {
	h3,
	.h3 {
		line-height: 21px;
	}
}
@media (max-width: 767px) {
	h3,
	.h3 {
		line-height: 20px;
	}
}

* {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 400;
	font-size: var(--fz-common);
	line-height: var(--lh-common);
	color: var(--black);
}

.text-white {
	color: var(--white);
}

.text-green {
	color: var(--green);
}

/*растяжка по экрану*/
html,
body {
	height: 100%;
}

body {
	overflow-x: hidden;
}

.page-wrapper {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow-x: hidden;
}

.main {
	flex: 1 1 auto;
}

/*end растяжка по экрану*/
.wrapper {
	width: 1110px;
	margin: 0 auto;
}
@media (max-width: 1130px) {
	.wrapper {
		width: 95%;
	}
}

body.no-scroll {
	overflow: hidden;
}

.btn {
	padding: 11px 22px 12px;
	font-weight: 600;
	border-radius: 20px;
	box-shadow: 3px 4px 15px rgba(0, 0, 0, 0.1);
	background: var(--white);
	color: var(--black);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: -moz-max-content;
	width: max-content;
	min-width: 190px;
	line-height: 22px;
}
@media (max-width: 767px) {
	.btn {
		padding: 8px 20px;
		min-width: 160px;
	}
}

.btn-green {
	background-color: var(--green);
	color: var(--white);
}

.btn-yellow {
	background-color: var(--yellow);
	color: var(--white);
}

.small-title {
	margin-bottom: 10px;
}

.main-section {
	background-image: url('../../img/man-worker-in-hard-hat-isolated-on-green-wall1.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	margin-bottom: var(--section-mb);
}
@media (max-width: 610px) {
	.main-section {
		background-image: none;
		background-color: #d9dadf;
	}
}
.main-section__wrapper {
	padding: 113px 0 136px;
	width: 60%;
}
@media (max-width: 991px) {
	.main-section__wrapper {
		padding: 50px 0 65px;
	}
}
@media (max-width: 610px) {
	.main-section__wrapper {
		width: 100%;
		padding: 40px 0 50px;
	}
}
.main-section__title {
	margin-bottom: 31px;
}
@media (max-width: 991px) {
	.main-section__title {
		margin-bottom: 20px;
	}
}
@media (max-width: 767px) {
	.main-section__title {
		margin-bottom: 15px;
	}
}
.main-section__text {
	margin-bottom: 15px;
}
@media (max-width: 767px) {
	.main-section__text {
		margin-bottom: 10px;
	}
}
.main-section__cases-wrapper {
	display: inline-flex;
	flex-direction: column;
	gap: 15px 0;
	margin-bottom: 25px;
}
@media (max-width: 991px) {
	.main-section__cases-wrapper {
		gap: 10px 0;
		margin-bottom: 20px;
	}
}
@media (max-width: 767px) {
	.main-section__cases-wrapper {
		gap: 5px 0;
		margin-bottom: 15px;
	}
}
.main-section__case-item {
	width: 100%;
	display: inline-flex;
	align-items: center;
	gap: 0 10px;
}
.main-section__img-wrapper {
	width: 20px;
	height: 17px;
}
@media (max-width: 991px) {
	.main-section__img-wrapper {
		width: 18px;
		height: 15px;
	}
}
@media (max-width: 767px) {
	.main-section__img-wrapper {
		width: 16px;
		height: 13px;
	}
}
.main-section__img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
.about-us {
	margin-bottom: var(--section-mb);
}
.about-us__wrapper {
	display: inline-flex;
	flex-wrap: wrap;
	width: 100%;
}
.about-us__images-wrapper {
	width: 50%;
	position: relative;
	min-height: 605px;
}
@media (max-width: 991px) {
	.about-us__images-wrapper {
		order: 2;
		margin: 0 auto;
		width: 100%;
	}
}
.about-us__img {
	position: absolute;
	-o-object-fit: cover;
	object-fit: cover;
}
@media (max-width: 1130px) {
	.about-us__img {
		-o-object-fit: contain;
		object-fit: contain;
	}
}
@media (max-width: 640px) {
	.about-us__img {
		-o-object-fit: cover;
		object-fit: cover;
	}
}
.about-us__img_1 {
	top: 0;
	left: 0;
	width: 305px;
	height: 366px;
}
@media (max-width: 1130px) {
	.about-us__img_1 {
		width: 55%;
	}
}
@media (max-width: 640px) {
	.about-us__img_1 {
		height: 300px;
	}
}
.about-us__img_2 {
	bottom: 0;
	right: 0;
	width: 340px;
	height: 350px;
}
@media (max-width: 1130px) {
	.about-us__img_2 {
		width: 60%;
		bottom: unset;
		top: 40%;
	}
}
@media (max-width: 640px) {
	.about-us__img_2 {
		height: 300px;
	}
}
.about-us__img_3 {
	top: 100px;
	right: 26px;
	width: 192px;
	height: 129px;
}
@media (max-width: 1130px) {
	.about-us__img_3 {
		width: 35%;
	}
}
@media (max-width: 640px) {
	.about-us__img_3 {
		right: 0;
		width: 40%;
	}
}
.about-us__abs-text-wrapper {
	position: absolute;
	background-color: var(--white);
	box-shadow: -3px 6px 24px rgba(0, 0, 0, 0.14);
	bottom: 101px;
	left: 61px;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 180px;
	height: 180px;
}
@media (max-width: 767px) {
	.about-us__abs-text-wrapper {
		padding: 0 10px;
		width: 150px;
		height: 150px;
	}
}
@media (max-width: 640px) {
	.about-us__abs-text-wrapper {
		left: 10%;
		width: 130px;
		height: 130px;
	}
}
.about-us__abs-text-number {
	font-family: 'Roboto';
	font-size: 70px;
	line-height: 77px;
}
@media (max-width: 640px) {
	.about-us__abs-text-number {
		font-size: 50px;
		line-height: 55px;
	}
}
.about-us__abs-text-plus {
	font-family: 'Roboto';
	font-size: 14px;
	line-height: 15px;
}
.about-us__abs-text {
	text-align: center;
}
.about-us__info-wrapper {
	width: 50%;
	padding-left: 30px;
}
@media (max-width: 991px) {
	.about-us__info-wrapper {
		order: 1;
		width: 100%;
		padding-left: 0;
		margin-bottom: 40px;
	}
}
.about-us__title {
	margin-bottom: 10px;
}
.about-us__text {
	margin-bottom: 25px;
}
.about-us__cases-wrapper {
	display: inline-flex;
	width: 100%;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 20px 17px;
	margin-bottom: 30px;
}
@media (max-width: 991px) {
	.about-us__cases-wrapper {
		gap: 15px 0;
	}
}
.about-us__case {
	display: inline-flex;
	align-items: center;
	gap: 0 10px;
}
.about-us__case:nth-of-type(odd) {
	width: 55%;
}
.about-us__case:nth-of-type(even) {
	width: calc(45% - 17px);
}
@media (max-width: 991px) {
	.about-us__case:nth-of-type(odd) {
		width: 50%;
	}
	.about-us__case:nth-of-type(even) {
		width: 50%;
		padding-left: 10px;
	}
}
@media (max-width: 640px) {
	.about-us__case:nth-of-type(odd) {
		width: 100%;
	}
	.about-us__case:nth-of-type(even) {
		width: 100%;
		padding-left: 0;
	}
}
.about-us__case-img-wrapper {
	width: 50px;
	height: 50px;
	min-width: 50px;
	min-height: 50px;
	border-radius: 50%;
	border: 0.5px solid var(--green);
	box-shadow: 1px 2px 15px rgba(0, 0, 0, 0.1);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
@media (max-width: 640px) {
	.about-us__case-img-wrapper {
		width: 40px;
		height: 40px;
		min-width: 40px;
		min-height: 40px;
	}
}
.about-us__case-img {
	width: 24px;
	height: 24px;
}
@media (max-width: 640px) {
	.about-us__case-img {
		width: 20px;
		height: 20px;
	}
}
.about-us__box-text-wrapper {
	background: var(--white);
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
	padding: 20px 15px 24px;
	border-top: 4px solid var(--green);
}
@media (max-width: 640px) {
	.about-us__box-text-wrapper {
		padding: 15px;
	}
}
.about-us__box-text {
	font-size: 14px;
}

.conversion {
	background-color: var(--green);
	margin-bottom: var(--section-mb);
}
.conversion__wrapper {
	display: inline-flex;
	flex-wrap: wrap;
	width: 100%;
	align-items: stretch;
}
.conversion__text-wrapper {
	width: 50%;
	padding: 77px 13px 78px 0;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
}
@media (max-width: 991px) {
	.conversion__text-wrapper {
		padding: 40px 10px 40px 0;
	}
}
@media (max-width: 767px) {
	.conversion__text-wrapper {
		width: 100%;
		padding: 30px 0;
	}
}
.conversion__title {
	margin-bottom: 7px;
}
.conversion__text {
	margin-bottom: 24px;
	font-size: 16px;
}
.conversion__img-wrapper {
	width: 50%;
}
@media (max-width: 767px) {
	.conversion__img-wrapper {
		width: 100vw;
		margin-left: calc(-50vw + 50%);
		max-height: 350px;
	}
}
.conversion__img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
@media (max-width: 767px) {
	.conversion__img {
		width: 100vw;
	}
}

.advantages {
	margin-bottom: var(--section-mb);
}
.advantages__title {
	margin-bottom: 20px;
	text-align: center;
}
.advantages__items-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}
@media (max-width: 767px) {
	.advantages__items-wrapper {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
}
@media (max-width: 480px) {
	.advantages__items-wrapper {
		grid-template-columns: repeat(1, 1fr);
	}
}
.advantages__item {
	background: var(--white);
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
	border-radius: 2px;
	min-height: 247px;
	padding: 30px;
}
@media (max-width: 991px) {
	.advantages__item {
		min-height: unset;
		padding: 25px;
	}
}
@media (max-width: 480px) {
	.advantages__item {
		display: inline-flex;
		align-items: center;
		gap: 0 15px;
	}
}
.advantages__img-wrapper {
	margin-bottom: 20px;
}
@media (max-width: 991px) {
	.advantages__img-wrapper {
		margin-bottom: 15px;
	}
}
@media (max-width: 480px) {
	.advantages__img-wrapper {
		margin-bottom: 0;
	}
}
.advantages__text {
	line-height: 21px;
}

.why-us {
	margin-bottom: var(--section-mb);
}
.why-us__wrapper {
	display: inline-flex;
	flex-wrap: wrap;
	width: 100%;
}
.why-us__text-wrapper {
	width: 50%;
	padding-right: 16px;
}
@media (max-width: 991px) {
	.why-us__text-wrapper {
		width: 60%;
	}
}
@media (max-width: 767px) {
	.why-us__text-wrapper {
		width: 100%;
		margin-bottom: 40px;
	}
}
.why-us__title {
	margin-bottom: 12px;
}
.why-us__text {
	margin-bottom: 58px;
}
@media (max-width: 991px) {
	.why-us__text {
		margin-bottom: 40px;
	}
}
@media (max-width: 767px) {
	.why-us__text {
		margin-bottom: 30px;
	}
}
.why-us__items-wrapper {
	display: inline-flex;
	flex-direction: column;
	width: 100%;
	gap: 6px 0;
}
.why-us__item {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
}
.why-us__item-img-wrapper {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 2px 4px 21px rgba(0, 0, 0, 0.15);
}
@media (max-width: 480px) {
	.why-us__item-img-wrapper {
		width: 60px;
		height: 60px;
	}
}
.why-us__item-img {
	width: 100%;
	height: 80%;
	-o-object-fit: contain;
	object-fit: contain;
}
.why-us__item-text-wrapper {
	padding-left: 30px;
	width: calc(100% - 100px);
}
@media (max-width: 480px) {
	.why-us__item-text-wrapper {
		padding-left: 15px;
		width: calc(100% - 60px);
	}
}
.why-us__item-title {
	font-weight: 500;
	line-height: var(--lh-small);
}
.why-us__img-wrapper {
	width: 50%;
	padding-left: 16px;
}
@media (max-width: 991px) {
	.why-us__img-wrapper {
		width: 40%;
	}
}
@media (max-width: 767px) {
	.why-us__img-wrapper {
		padding-left: 0;
		width: 100vw;
		margin-left: calc(-50vw + 50%);
		max-height: 350px;
	}
}
.why-us__img {
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
@media (max-width: 767px) {
	.why-us__img {
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover;
		width: 100vw;
	}
}

.testimonials {
	margin-bottom: var(--section-mb);
}
.testimonials__small-title {
	text-align: center;
}
.testimonials__title {
	text-align: center;
	margin-bottom: 50px;
	font-weight: 600;
}
@media (max-width: 991px) {
	.testimonials__title {
		margin-bottom: 40px;
	}
}
@media (max-width: 767px) {
	.testimonials__title {
		margin-bottom: 30px;
	}
}
.testimonials__items-wrapper {
	padding-left: 15px !important;
	padding-right: 15px !important;
}
.testimonials__item {
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
	border-radius: 2px;
	min-height: 346px;
	padding: 32px 30px;
}
@media (max-width: 991px) {
	.testimonials__item {
		min-height: unset;
	}
}
.testimonials__header {
	display: inline-flex;
	align-items: flex-start;
	width: 100%;
	margin-bottom: 17px;
}
.testimonials__img-wrapper {
	margin-right: 15px;
	width: 50px;
	height: 50px;
	min-width: 50px;
	min-height: 50px;
	border-radius: 50%;
	background-color: #e6edfe;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.testimonials__img-text {
	font-family: 'Manrope';
	color: #014df5;
	font-weight: 800;
	font-size: 21px;
}
.testimonials__name {
	font-family: 'Manrope';
	font-size: var(--fz-small);
	font-weight: 600;
	letter-spacing: 0.2px;
}
.testimonials__position {
	font-family: 'Manrope';
	font-weight: 600;
	font-size: 12px;
	color: #a7a7a7;
	letter-spacing: 0.2px;
}
.testimonials__rating-wrapper {
	display: inline-flex;
	width: 100%;
	align-items: center;
	gap: 0 7px;
	margin-bottom: 27px;
}
@media (max-width: 991px) {
	.testimonials__rating-wrapper {
		margin-bottom: 20px;
	}
}
.testimonials .swiper-pagination {
	position: initial;
	margin-top: 50px;
}
@media (max-width: 991px) {
	.testimonials .swiper-pagination {
		margin-top: 30px;
	}
}
@media (max-width: 767px) {
	.testimonials .swiper-pagination {
		margin-top: 20px;
	}
}
.testimonials .swiper-pagination-bullet {
	background: rgba(196, 196, 196, 0.46);
	border-radius: 50%;
	width: 10px;
	height: 10px;
	opacity: 1;
}
.testimonials .swiper-pagination-bullet-active {
	background: var(--green);
}

.faq {
	margin-bottom: var(--section-mb);
}
.faq__wrapper {
	display: inline-flex;
	flex-direction: column;
	width: 100%;
}
.faq__title {
	text-align: center;
	margin-bottom: 37px;
}
@media (max-width: 767px) {
	.faq__title {
		margin-bottom: 15px;
	}
}
.faq__item {
	background: var(--grey);
	width: 100%;
	border-radius: 15px;
	overflow: hidden;
	margin-bottom: 20px;
	cursor: pointer;
	padding: 1px;
	transition: var(--transition);
}
@media (max-width: 767px) {
	.faq__item {
		margin-bottom: 15px;
	}
}
.faq__item:last-child {
	margin-bottom: 0;
}
.faq__item[open] {
	padding: 1px;
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
	background: var(--white);
	transition: var(--transition);
}
.faq__item[open] .faq__question {
	color: var(--green);
}
.faq__item[open] .faq__question:after {
	font-weight: 200;
	color: var(--green);
	border: 1px solid var(--green);
	transform: rotate(45deg);
	transition: var(--transition);
}
.faq__question {
	font-weight: 500;
	font-size: 20px;
	padding: 30px;
	display: inline-flex;
	align-items: center;
	width: 100%;
}
@media (max-width: 767px) {
	.faq__question {
		padding: 26px 30px 26px 10px;
	}
}
.faq__question::marker {
	content: none;
}
.faq__question:before {
	content: '?';
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	margin-right: 15px;
	border-radius: 50%;
	background-color: var(--green);
	color: var(--white);
}
.faq__question:after {
	content: '+';
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 auto;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	margin-left: auto;
	color: var(--grey-light);
	border: 1px solid var(--grey-light);
	font-size: 28px;
	font-weight: 200;
	transition: var(--transition);
}
@media (max-width: 767px) {
	.faq__question:after {
		display: none;
	}
}
.faq__answer {
	padding: 0 30px 30px 83px;
	color: var(--black);
	line-height: 22px;
}
@media (max-width: 767px) {
	.faq__answer {
		margin-top: -6px;
		padding: 0 10px 31px;
	}
}
.faq__list-item {
	width: 100%;
	display: inline-flex;
	align-items: start;
	justify-content: start;
	padding: 0 30px 30px 0;
	color: var(--black);
	line-height: 22px;
}
.faq__list-item:before {
	content: '-';
	margin-right: 5px;
}
@media (max-width: 767px) {
	.faq__list-item {
		margin-top: -6px;
		padding: 0 10px 10px 0;
	}
}

.text {
	margin-bottom: var(--section-mb);
}
.text__wrapper {
	display: inline-flex;
	flex-direction: column;
	width: 100%;
	gap: 20px 0;
}
@media (max-width: 767px) {
	.text__wrapper {
		gap: 15px 0;
	}
}
.text__title {
	margin-bottom: 10px;
	text-align: center;
	line-height: 29px;
	font-weight: 600;
}
.text__table th:first-child {
	text-align: left;
}
.text__table th:last-child {
	text-align: right;
}
.text__table th {
	background-color: #fff;
	overflow: hidden;
	padding: 5px 0;
}
.text__table tr {
	position: relative;
	isolation: isolate;
}
.text__table tr:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	z-index: -1;
	border-bottom: 3px dotted #000;
}
.conversion-banner__wrapper {
	background-color: var(--yellow);
	border-radius: 10px;
	padding: 26px 65px;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	justify-content: space-between;
}
@media (max-width: 767px) {
	.conversion-banner__wrapper {
		padding: 20px 30px;
	}
}
.conversion-banner__text-wrapper {
	width: calc(100% - 250px);
}
@media (max-width: 991px) {
	.conversion-banner__text-wrapper {
		width: calc(100% - 200px);
	}
}
@media (max-width: 767px) {
	.conversion-banner__text-wrapper {
		width: calc(100% - 170px);
	}
}
@media (max-width: 640px) {
	.conversion-banner__text-wrapper {
		width: 100%;
		margin-bottom: 15px;
	}
}
.conversion-banner__title {
	margin-bottom: 6px;
	width: 100%;
	display: inline-block;
}
.conversion-banner__text {
	width: 100%;
	display: inline-block;
}

.linking {
}
.linking__wrapper {
}
.linking__title {
	text-align: center;
}
.linking__items-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	grid-gap: 20px 30px;
	margin-top: 60px;
	margin-bottom: 100px;
}
.linking__item {
	width: 255px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 15px;
	border: 2px solid var(--green);
	transition: var(--transition);
	font-size: 16px;
	font-weight: 600;
	line-height: 22px;
}
.linking__item:hover {
	color: var(--white);
	background-color: var(--green);
}

.sticky-phone-btn {
	position: fixed;
	right: 2rem;
	bottom: 2rem;
	z-index: 1;
	border: 1px solid #fff;
	border-radius: 50%;
	background-color: #37a9029c;
	width: 100px;
	height: 100px;
	display: grid;
	place-content: center;
}
.sticky-phone-btn__icon {
	display: block;
	width: 47px;
	height: 47px;
	min-width: 47px;
	min-height: 47px;
	transition: 0.3s;
	-webkit-animation: shake linear 1.5s infinite !important;
	animation: shake linear 1.5s infinite !important;
}
@media (max-width: 991px) {
	.sticky-phone-btn {
		width: 60px;
		height: 60px;
	}
	.sticky-phone-btn__icon {
		width: 27px;
		height: 27px;
		min-width: 27px;
		min-height: 27px;
	}
}
@media (max-width: 768px) {
	.sticky-phone-btn {
		right: 1rem;
		bottom: 1rem;
	}
}
@keyframes shake {
	0% {
		transform: rotateZ(0deg);
		-ms-transform: rotateZ(0deg);
		-webkit-transform: rotateZ(0deg);
	}
	10% {
		transform: rotateZ(-15deg);
		-ms-transform: rotateZ(-15deg);
		-webkit-transform: rotateZ(-15deg);
	}
	20% {
		transform: rotateZ(15deg);
		-ms-transform: rotateZ(15deg);
		-webkit-transform: rotateZ(15deg);
	}
	30% {
		transform: rotateZ(-10deg);
		-ms-transform: rotateZ(-10deg);
		-webkit-transform: rotateZ(-10deg);
	}
	40% {
		transform: rotateZ(7.5deg);
		-ms-transform: rotateZ(7.5deg);
		-webkit-transform: rotateZ(7.5deg);
	}
	50% {
		transform: rotateZ(-6deg);
		-ms-transform: rotateZ(-6deg);
		-webkit-transform: rotateZ(-6deg);
	}
	60% {
		transform: rotateZ(5deg);
		-ms-transform: rotateZ(5deg);
		-webkit-transform: rotateZ(5deg);
	}
	70% {
		transform: rotateZ(-4.28571deg);
		-ms-transform: rotateZ(-4.28571deg);
		-webkit-transform: rotateZ(-4.28571deg);
	}
	80% {
		transform: rotateZ(3.75deg);
		-ms-transform: rotateZ(3.75deg);
		-webkit-transform: rotateZ(3.75deg);
	}
	90% {
		transform: rotateZ(-3.33333deg);
		-ms-transform: rotateZ(-3.33333deg);
		-webkit-transform: rotateZ(-3.33333deg);
	}
	100% {
		transform: rotateZ(0deg);
		-ms-transform: rotateZ(0deg);
		-webkit-transform: rotateZ(0deg);
	}
}

.error-404 {
	position: relative;
	isolation: isolate;
	display: grid;
	place-content: center;
	padding: 100px 0 50px;
}
.error-404__content-wrapper {
	display: grid;
	place-content: center;
	height: 100%;
	grid-gap: 1rem;
	text-align: center;
}
.error-404__404 {
	font-size: 10rem;
	font-weight: bold;
	color: var(--yellow);
}
.error-404__btn {
	margin: 0 auto;
}
