.mobile-menu__btn {
	width: 22px;
	height: 16px;
	position: relative;
	margin: 0;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}

.mobile-menu__btn span {
	display: block;
	position: absolute;
	height: 1px;
	width: 100%;
	background: #000;
	border-radius: 5px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

.mobile-menu__btn span:nth-child(1) {
	top: 0px;
}

.mobile-menu__btn span:nth-child(2),
.mobile-menu__btn span:nth-child(3) {
	top: 7.5px;
}

.mobile-menu__btn span:nth-child(4) {
	top: 15px;
}

.mobile-menu .open span:nth-child(1) {
	top: 5px;
	width: 0%;
	left: 50%;
}

.mobile-menu .open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.mobile-menu .open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.mobile-menu .open span:nth-child(4) {
	top: 5px;
	width: 0%;
	left: 50%;
}

.header {
	padding-top: 20px;
	-webkit-transition-duration: .15s;
	transition-duration: .15s;
}

.header .container {
	position: relative;
	z-index: 10;
}

.header__wrapper {
	padding: 12px;
	background: #FFFFFF;
	-webkit-box-shadow: 4px 4px 45px rgba(0, 0, 0, 0.09);
	box-shadow: 4px 4px 45px rgba(0, 0, 0, 0.09);
	border-radius: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-transition-duration: .15s;
	transition-duration: .15s;
}

.header__whats {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	background-image: url("../images/whats.svg");
	width: 32px;
	height: 32px;
}

.header__mobile {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: auto;
	z-index: 5;
	overflow: auto;
	height: 100vh;
	background: #F3F3F3;
	padding: 120px 20px 20px;
	-webkit-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	-webkit-transform: translate(0, -100%);
	transform: translate(0, -100%);
}

.header__mobile .footer__contact::after {
	background-color: #fff;
}

.header__mobile.opened {
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
	bottom: 0;
}

.header__mobile-menu {
	padding: 0;
	margin: 0 0 65px;
	list-style-type: none;
}

.header__mobile-menu li a {
	color: #000;
	font-weight: 400;
	font-size: 16px;
	line-height: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 19px 0;
	text-decoration: none;
	border-bottom: 1px solid #DEDEDE;
}

.header__mobile-menu li a img {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-left: 10px;
	width: 20px;
	height: auto;
}

header.sticky {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 10;
	padding-top: 0;
}

header.sticky .header__wrapper {
	-webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.45);
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.45);
}

body.hidd,
html.hidd {
	overflow: hidden;
}

.main-slider {
	overflow: hidden;
}

.main-slider__wrapper {
	margin-top: 20px;
}

.project {
	width: 290px;
	height: 215px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-radius: 12px;
	overflow: hidden;
	padding: 17px;
	color: initial;
	text-decoration: none;
}

.project::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: linear-gradient(65.49deg, rgba(0, 0, 0, 0.71) 4.28%, rgba(0, 0, 0, 0) 98.7%);
	z-index: 2;
	-webkit-transition-duration: .15s;
	transition-duration: .15s;
}

.project:hover {
	color: initial;
}

.project.swiper-slide:hover::before {
	opacity: 0.3;
}

.project>img {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.project>div {
	position: relative;
	z-index: 2;
}

.project__status {
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 10px;
	line-height: 120%;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background-color: #fff;
	border-radius: 4px;
	padding: 5px 11px;
}

.project__info {
	margin-top: auto;
}

.project__title {
	font-weight: 700;
	font-size: 24px;
	line-height: 120%;
	color: #FFFFFF;
	-webkit-transition-duration: .15s;
	transition-duration: .15s;
}

.project__city {
	font-weight: 500;
	font-size: 12px;
	line-height: 110%;
	color: #FFFFFF;
	margin-top: 10px;
}

.counters {
	margin-top: 45px;
}

.counters__wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.counters__value {
	font-size: 44px;
	line-height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	padding-bottom: 13px;
	position: relative;
}

.counters__value:after {
	content: '';
	position: absolute;
	left: 20px;
	bottom: 0;
	right: 0;
	height: 1px;
	background-color: var(--accent);
}

.counters__value span {
	font-size: 18px;
	line-height: 1;
	margin: 0 0 4px 10px;
}

.counters__desc {
	padding-right: 15px;
	font-weight: 500;
	font-size: 12px;
	margin-top: 14px;
}

.directions {
	margin-top: 45px;
}

.directions__wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.directions__item {
	min-height: 102px;
	padding: 6px 7px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	background: #FFFFFF;
	-webkit-box-shadow: 4px 4px 45px rgba(0, 0, 0, 0.09);
	box-shadow: 4px 4px 45px rgba(0, 0, 0, 0.09);
	border-radius: 12px;
	text-decoration: none;
	color: #fff;
}

.directions__item:hover {
	color: #fff;
}

.directions__top {
	margin-bottom: 5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.directions__counter {
	font-weight: 600;
	font-size: 10px;
	line-height: 120%;
	text-align: center;
	text-transform: uppercase;
	background-color: var(--accent);
	border-radius: 7px;
	padding: 4px 5px;
}

.directions__icon {
	width: 38px;
	height: 38px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #F3F3F3;
	border-radius: 7px;
	padding: 7px;
}

.directions__icon img {
	max-width: 100%;
	max-height: 100%;
}

.directions__title {
	margin-top: auto;
	font-weight: 500;
	font-size: 14px;
	line-height: 120%;
	color: #000000;
	margin-bottom: 5px;
	padding-right: 20px;
}

.plug {
	margin-top: 55px;
}

.plug__wrapper {
	margin-top: 22px;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
	gap: 30px 10px;
}

.plug__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow: hidden;
}

.plug__icon {
	width: 50px;
	height: 50px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	margin-bottom: 27px;
}

.plug__icon img {
	max-width: 100%;
	max-height: 100%;
}

.plug__icon::before {
	content: '';
	position: absolute;
	left: 20px;
	bottom: -16px;
	right: -50vw;
	height: 1px;
	background: #E4E4E4;
}

.form {
	margin-top: 25px;
}

.form .s-title {
	margin-bottom: 25px;
}

.form__wrapper {
	padding: 16px 20px;
	background: linear-gradient(93.3deg, rgba(211, 244, 203, 0.3) 0%, rgba(211, 244, 203, 0.9) 31.25%, rgba(211, 244, 203, 0.21) 67.19%, rgba(211, 244, 203, 0.9) 100%);
	border-radius: 12px;
}

.form__field {
	position: relative;
	margin-bottom: 15px;
}

.form__field input,
.form__field textarea {
	background: #FFFFFF;
	border-radius: 4px;
	height: 63px;
	width: 100%;
	border: none;
	padding: 29px 15px 8px;
	font-size: 16px;
}

.form__field textarea {
	height: 110px;
}

.form__field--pay {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0;
}

.form__field--pay::after {
	content: '';
	width: 34px;
	height: 34px;
	background-image: url("../images/down.svg");
	margin: 7px 0;
}

.form__price {
	display: flex;
	flex-direction: column;
	margin-bottom: 15px;
}
.form__price input {
	display: none;
}
.form__price label + label {
	margin-top: 15px;
}
.form__price-label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 7px;
	border: 1px solid #000000;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 500;
	font-size: 14px;
	line-height: 110%;
}
.form__price input:checked + .form__price-label {
	background: #000000;
	color: #fff;
}
.form__price input:checked + .form__price-label span {
	color: #000;
}
.form__price-label span {
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
	background: #FFFFFF;
	border-radius: 1px;
	flex-shrink: 0;
	margin-left: 20px;
	padding: 4px 10px;
	min-width: 80px;
	display: inline-flex;
	justify-content: center;
}


.form__field-title {
	position: absolute;
	top: 10px;
	left: 15px;
	font-weight: 500;
	font-size: 12px;
	line-height: 110%;
}

.form__checkbox {
	padding-left: 30px;
	background-image: url("../images/check.svg");
	background-repeat: no-repeat;
	background-position: 0 50%;
	background-size: 20px;
	font-weight: 500;
	font-size: 10px;
	line-height: 120%;
	min-height: 20px;
}

.form__checkbox a {
	color: initial;
}

.form__checkbox a:hover {
	color: initial;
	text-decoration: none;
}

.form__submit {
	margin-top: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.form__submit input {
	height: 68px;
	background: #30B72E;
	border-radius: 4px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	font-weight: 700;
	font-size: 16px;
	line-height: 110%;
	color: #fff;
	border: none;
	max-width: 310px;
	-webkit-transition-duration: .15s;
	transition-duration: .15s;
}

.form__submit input:hover {
	color: #fff;
	-webkit-box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.65);
	box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.65);
}

.footer {
	margin-top: 60px;
	padding-bottom: 20px;
}

.footer__wrapper {
	padding-top: 45px;
	border-top: 1px solid #E4E5E8;
}

.footer__contact {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
	padding-right: 50px;
}

.footer__contact::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 48px;
	height: 48px;
	background: #F3F3F3;
	border-radius: 4px;
	background-image: url("../images/tel.svg");
	background-size: 24px;
	background-repeat: no-repeat;
	background-position: 50%;
}

.footer__tel {
	font-weight: 700;
	font-size: 35px;
	line-height: 100%;
	color: initial;
	text-decoration: none;
}

.footer__tel:hover {
	color: var(--accent);
}

.footer__mail {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	line-height: 130%;
	color: #BCBCBC;
	margin-top: 4px;
}

.footer__btns {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-top: 30px;
}

.footer__btns a {
	height: 60px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 4px;
	color: #fff;
	font-weight: 700;
	font-size: 12px;
	line-height: 120%;
	text-decoration: none;
	text-align: center;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.footer__btns a::after {
	content: '';
	width: 24px;
	height: 24px;
	background-size: 100%;
	margin-left: 20px;
}

.footer__btns a.tg {
	background: #6C82CF;
}

.footer__btns a.tg::after {
	background-image: url("../images/tg.svg");
}

.footer__btns a.whats {
	background: #6EBB61;
}

.footer__btns a.whats::after {
	background-image: url("../images/whats.svg");
	-webkit-filter: invert(1);
	filter: invert(1);
}

.footer__copy {
	margin-top: 30px;
}

.footer__copy a,
.footer__copy span {
	font-weight: 500;
	font-size: 10px;
	line-height: 130%;
	color: #BCBCBC;
}

.footer__copy *+* {
	margin-left: 10px;
}

.bread {
	margin: 15px 0 17px;
}

.bread__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	overflow: auto;
	white-space: nowrap;
}

.bread__wrapper>*+*::before {
	content: '';
	background-image: url("../images/left.svg");
	width: 10px;
	height: 10px;
	margin: 0 4px;
}

.bread__wrapper>* {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.bread a,
.bread span {
	font-size: 10px;
	line-height: 120%;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #BFBFBF;
	text-decoration: none;
}

.catalog__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: calc(100% + 10px);
	margin-left: -5px;
	margin-bottom: 15px;
}

.catalog__nav a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 5px 10px;
	font-weight: 600;
	font-size: 10px;
	line-height: 120%;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: #F3F3F3;
	border-radius: 4px;
	color: #000;
	text-decoration: none;
	padding: 4px 10px;
}

.catalog__nav a.active {
	background: #000000;
	color: #fff;
}

.catalog__wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[1];
	grid-template-columns: repeat(1, 1fr);
	gap: 20px;
}

.catalog-card {
	background: #FFFFFF;
	-webkit-box-shadow: 4px 4px 45px rgba(0, 0, 0, 0.09);
	box-shadow: 4px 4px 45px rgba(0, 0, 0, 0.09);
	border-radius: 12px;
	padding: 6px;
	text-decoration: none;
	color: initial;
}

.catalog-card:hover {
	color: initial;
}

.catalog-card__img {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 45%;
	border-radius: 7px;
	overflow: hidden;
}

.catalog-card__img>img {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.catalog-card__info {
	margin-top: 16px;
	padding: 0 14px;
}

.catalog-card__city {
	font-weight: 500;
	font-size: 12px;
	line-height: 110%;
}

.catalog-card__title {
	font-weight: 700;
	font-size: 18px;
	line-height: 120%;
	margin-top: 5px;
}

.catalog-card__pay-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 13px;
}

.catalog-card__pay-item {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 9px 14px;
	border: 1px solid #EBEBEB;
	border-radius: 7px;
}

.catalog-card__pay-item span {
	font-weight: 500;
	font-size: 12px;
	line-height: 110%;
	color: #ADADAD;
}

.catalog-card__pay-item b {
	font-weight: 700;
	font-size: 18px;
	line-height: 120%;
	color: #30B72E;
	margin-top: 5px;
}

.catalog-card__pay-item+div {
	margin-left: 6px;
}

.catalog-card__pay-item:last-child {
	padding-right: 45px;
	background-image: url("../images/heart.svg");
	background-size: 22px;
	background-position: calc(100% - 16px) 50%;
	background-repeat: no-repeat;
}

.catalog-single .project {
	width: 100%;
}

.catalog-single .catalog-card__pay-info {
	margin-top: 20px;
}

.thank .s-title {
	margin-bottom: 17px;
}

.thank p {
	font-size: 18px;
	margin-bottom: 0;
}

.thank__wrapper {
	padding: 55px 20px 25px;
	background: linear-gradient(93.3deg, rgba(255, 236, 238, 0.3) 0%, #FEDDE0 31.25%, rgba(255, 236, 238, 0.21) 67.19%, rgba(255, 236, 238, 0.9) 100%);
	border-radius: 12px;
	position: relative;
}

.thank__wrapper::after {
	content: '';
	background-image: url("../images/heart_big.svg");
	position: absolute;
	right: 17px;
	top: 10px;
	width: 96px;
	height: 83px;
}

.repost {
	color: #fff;
	margin-top: 20px;
}

.repost__wrapper {
	background: #30B72E;
	-webkit-box-shadow: 4px 4px 45px rgba(0, 0, 0, 0.09);
	box-shadow: 4px 4px 45px rgba(0, 0, 0, 0.09);
	border-radius: 12px;
	padding: 15px 20px;
}

.repost__links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 20px;
}

.repost__links a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 1px solid rgba(255,255,255,.5);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 7px;
	width: 53px;
	height: 53px;
	margin-right: 10px;
	-webkit-transition-duration: .15s;
	transition-duration: .15s;
}
.repost__links a img {
	-webkit-transition-duration: .15s;
	transition-duration: .15s;	
}
.repost__links a:hover {
	border-color: #fff;
	background-color: #fff;
}
.repost__links a:hover img {
	filter: invert(47%) sepia(99%) saturate(381%) hue-rotate(70deg) brightness(97%) contrast(97%);
}
.subscribe {
	margin-top: 20px;
}

.subscribe .s-title {
	margin-bottom: 17px;
}

.subscribe__wrapper {
	padding: 55px 20px 20px;
	position: relative;
	background: linear-gradient(93.3deg, rgba(251, 243, 233, 0.54) 0%, #FFEFDC 38.02%, rgba(251, 243, 233, 0.51) 67.19%, rgba(251, 243, 233, 0.9) 100%);
	border-radius: 14px;
}

.subscribe__wrapper::after {
	content: '';
	background-image: url("../images/subscribe.svg");
	position: absolute;
	right: 17px;
	top: 20px;
	width: 76px;
	height: 76px;
}

.subscribe__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 25px;
}

.btn {
	height: 68px;
	background: #30B72E;
	border-radius: 4px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	font-weight: 700;
	font-size: 16px;
	line-height: 110%;
	color: #fff;
	border: none;
	max-width: 310px;
	text-decoration: none;
	-webkit-transition-duration: .15s;
	transition-duration: .15s;
}

.btn:hover {
	color: #fff;
	-webkit-box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.65);
	box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.65);
}

.mt0 {
	margin-top: 0;
}

.mt0 p {
	font-size: 18px;
}

.page-not-found .subscribe__wrapper {
	background: linear-gradient(93.3deg, rgba(238, 238, 238, 0.54) 0%, #EEEEEE 38.02%, rgba(238, 238, 238, 0.51) 67.19%, rgba(238, 238, 238, 0.9) 100%);
}

.page-not-found .subscribe__wrapper::after {
	background-image: url("../images/not_found.svg");
}

.page-not-found p {
	font-size: 18px;
}

/*# sourceMappingURL=project.css.map */