#installButtonBlock {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	padding: 10px;
	z-index: 3;
	text-align: center;
	background: rgb(223, 15, 6, .8);
	color: #fff;
}

#installButtonBlock.hidden {
	display: none;
}

#installButton {
	background: #36862d;
	border: none;
	outline: none;
	color: #fff;
	border-radius: 5px;
	padding: 10px;
	cursor: pointer;
	transition: .3s;
}

#installButton:hover,
#installButton:active {
	background: #63E855;
}

#closeInstallButtonBlock {
	position: absolute;
	top: 10px;
	right: 15px;
	color: #fff;
	cursor: pointer;
	font: bold 16px Tahoma,Arial,sans-serif;
}

.flatpickr-current-month {
	display: flex;
	gap: 10px
}

.needFill {
	border-color: #ff0000 !important;
	box-shadow: 0px 0px 3px 2px rgba(236, 14, 14, 0.75) !important;
}

.green {
	color: #63E855;
}

.red {
	color: #DF0F06;
}

._anim-items {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease;
}

._anim-items._active {
	opacity: 1;
	transform: translateY(0);
}

.lang__btn,
.address__btn {
	position: absolute;
	top: 20px;
	right: 20px;
	background: #000;
	border: 1px solid #fff;
	color: #fff;
	border-radius: 5px;
	padding: 10px;
	cursor: pointer;
	z-index: 2;
	transition: .3s;
}

@media (max-width: 540px) {
	.lang__btn {
		top: 10px;
		right: 10px;
	}
}

.lang__btn:hover,
.address__btn:hover,
.lang__btn:active,
.address__btn:active {
	background: #fff;
	color: #333;
}

.address__btn {
	right: 70px;
	width: 42px;
	padding: 8px 14px;
}

.my-icon path {
	fill: white;
	transition: .3s;
}

.address__btn:hover .my-icon path,
.address__btn:active .my-icon path {
	fill: #000;
}

@media (max-width: 540px) {
	.address__btn {
		top: 10px;
		right: 60px;
	}
}

.address__btn svg {
	height: 16px;
}

.lang__block,
.address__block {
	display: none;
	flex-direction: column;
	position: absolute;
	border: 1px solid #fff;
	top: 20px;
	right: 20px;
	z-index: 2;
	border-radius: 6px;
}

.address__block {
	background: #000;
	color:#63E855;
	border: 1px solid #63E855;
	padding: 10px 20px;
	border-radius: 5px;
	line-height: 2rem;
	z-index: 3;
	max-width: 500px;
}

.address__item a {
	color: #63E855;
}

.address__item img {
	width: 100%;
	border-radius: 5px;
	margin-top: 10px;
}

.lang__block.show,
.address__block.show {
	display: flex;
}

.lang__item {
	padding: 5px 10px;
	color: #fff;
	text-align: center;
	cursor: pointer;
	transition: .3s;
	background: #000;
}

.lang__item:first-child {
	border-radius: 5px 5px 0 0;
}

.lang__item:last-child {
	border-radius: 0 0 5px 5px;
}

.lang__item:hover,
.lang__item.active {
	background: #fff;
	color: #000;
}

@media (max-width: 540px) {
	.lang__block,
	.address__block {
		top: 10px;
		right: 10px;
	}
	
	.address__block {
		left: 10px;
		right: 10px;
	}
}

/* ---------- header ---------- */
.header {
	background: #000 url('../img/bg.png') center center no-repeat;
	background-size: cover;
	color: #fff;
	text-align: center;
	min-height: 100vh;
	height: 100%;
	position: relative;
	z-index: 1;
}

@media (max-width: 768px) {
	.header {
		background-size: contain;
		background-position: center bottom;
	}
}

.header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0);
	z-index: -1;
	animation: darkenBackground 3s infinite ease-in-out;
}

@keyframes darkenBackground {
	0%,
	100% {
		background: rgba(0, 0, 0, 0);
	}
	50% {
		background: rgba(0, 0, 0, 0.6);
	}
}

.header__top {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.header__logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 3rem 0 0;
}

.header__logo img {
	width: 190px;
}

.header__info {
	display: flex;
	flex-direction: column;
	font-size: 1.2rem;
	align-items: start;
	gap: 15px;
}

@media (max-width: 540px) {
	.header__info {
		font-size: 1rem;
	}
}

.header__phone,
.header__address {
	text-align: left;
}

.header__title {
	color: #63E855;
	font-size: 2rem;
	margin: 3rem 0;
}

@media (max-width: 768px) {
	.header__title {
		margin: 1.5rem 0;
		font-size: 1.5rem;
	}
}

@media (max-width: 540px) {
	.header__title {
		font-size: 1rem;
	}
}

.header__free {
	font-size: 1.5rem;
	margin: 4rem 0;
}

@media (max-width: 540px) {
	.header__free {
		font-size: 1.2rem;
		margin: 2rem 0;
	}
}

.header__description {
	font-size: 1.5rem;
	margin: 4rem 0;
}

@media (max-width: 540px) {
	.header__description {
		font-size: 1.2rem;
		margin: 2rem 0;
	}
}

.header__button {
	position: relative;
	background: #DF0F06;
	color: #fff;
	border: 0;
	border-radius: 5px;
	font-size: 1.5rem;
	width: 100%;
	max-width: 500px;
	padding: 20px 0;
	cursor: pointer;
	transition: .3s;
	z-index: 2;
}

@media (max-width: 540px) {
	.header__button {
		padding: 10px 0;
	}
}

.header__button:hover,
.header__button:active {
	transform: scale(1.05);
}

.header__messangersOpen {
	position: relative;
	width: calc(100% - 8px);
	max-width: 496px;
	margin: 0 auto;
	padding: 0 2px;
}

.header__messangers,
.header__calendar {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 0 auto;
	max-height: 0;
	opacity: 0;
	background: #fff;
	transition: all 0.5s ease;
	overflow: hidden;
	width: 100%;
	max-width: 500px;
	border: 2px solid #DF0F06;
	border-top: 0;
	border-radius: 0 0 5px 5px;
	z-index: 1;
}

.header__calendar {
	margin-top: -2px;
}

.hm__items {
	/* position: absolute; */
	display: flex;
	justify-content: space-evenly;
}

.header__messangers.show,
.header__calendar.show {
	padding: 10px 0;
	opacity: 1;
	max-height: 140px;
	transition: all 0.5s ease;
}

@media (max-width: 540px) {
	.hm__items.show {
		padding: 30px 0;
		max-height: 120px;
	}
}

.hm__description {
	width: 100%;
	color: #333;
}

.hm__picture img {
	width: 60px;
	cursor: pointer;
	transition: .3s;
}

.hm__picture img:hover,
.hm__picture img:active {
	transform: scale(1.1);
}

.header__form {
	color: #333;
	position: absolute;
	display: flex;
	align-items: center;
	max-width: 0;
	top: 0;
	left: 0;
	height: 100px;
	overflow: hidden;
	opacity: 0;
	transition: all 0.5s ease;
	background: #fff;
	z-index: 1;
	margin-top: 5px;
}

@media (max-width: 540px) {
	.header__form {
		height: 120px;
	}
}

.header__form.show {
	max-width: calc(100% - 8px);
	width: calc(100% - 8px);
	height: 100%;
	margin: -2px 4px 0;
	opacity: 1;
	transition: all 0.5s ease;
}

.hf__body {
	display: flex;
	flex-direction: column;
	align-items: start;
	flex-grow: 1;
	gap: 10px;
	padding-left: 20px;
}

.hf__description {
	text-align: left;
}

@media (max-width: 540px) {
	.hf__description {
		font-size: .9rem;
		line-height: 1.1rem;
	}
}

.hf__field {
	width: 80%;
	display: flex;
	gap: 10px;
}

.hf__control,
.hсf__control {
	display: block;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 10px;
	width: 100%;
	transition: .3s;
	outline: none;
}

.hf__send,
.hсf__send,
.hсf__next {
	background: #DF0F06;
	color: #fff;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	transition: .3s;
}

.hf__send:hover,
.hf__send:active,
.hсf__send:hover,
.hсf__send:active,
.hсf__next:hover,
.hсf__next:active {
	background: #000;
	color: #fff;
}

.hf__control:focus,
.hсf__control:focus {
	border: 1px solid #555;
}

.hf__left {
	cursor: pointer;
	width: 50px;
	text-align: center;
	font-size: 1.3rem;
	border-left: 2px solid #DF0F06;
	color: #DF0F06;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.hf__left svg {
	width: 20px;
}

.hс__form {
	display: flex;
	flex-direction: column;
	color: #000;
}

.hcf__row {
	display: flex;
	gap: 10px;
	justify-content: space-between;
	padding: 0 10px;
}

.hсf__field {
	width: 100%;;
}

.hсf__description {
	margin: 0 0 10px;
}

.hсf__body1.hidden,
.hсf__body2.hidden {
	display: none;
}

.center {
	text-align: center;
	margin-top: 10px;
}

.map_link {
	color: #DF0F06;
	text-decoration: underline;
	transition: .3s;
}

.map_link:hover,
.map_link:active {
	color: #63E855;
}

/* ---------- / header ---------- */
.section {
	padding: 50px 0;
}

.section__title {
	font-size: 3rem;
	text-align: center;
}

@media (max-width: 768px) {
	.section__title {
		font-size: 1.5rem;
	}
}

@media (max-width: 540px) {
	.section__title {
		font-size: 1.5rem;
	}
}

.footer {
	background: #000;
	color: #fff;
}

/* ---------- services ---------- */
.services__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin: 50px 0 0;
}

.services__item {
	display: flex;
	justify-content: start;
	align-items: center;
	background-color: #DF0F06;
	color: #fff;
	padding: 10px;
	text-align: center;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color .5s ease, transform .5s ease;
	text-align: left;
	gap: 10px;
}

.services__item.open {
	background: #000;
	color: #fff;
}

.services__item:hover .services__icon {
	/* transform: scale(1.2); */
}

.services__icon {
	width: 70px;
	height: 70px;
	border: 1px solid #fff;
	border-radius: 50%;
	transition: transform .5s ease;
	display: flex;
	justify-content: center;
	align-items: center;
}

.services__icon img {
	height: 60px;
	width: 70px;
}

.services__title {
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

.services__icon.open {
	margin: 0 auto;
}

.services__title.open {
	display: none;
}

.sm__description {
	text-align: center;
}

.sm__select {
	text-align: center;
}

.services__messangers {
	position: relative;
	width: 100%;
	margin: -23px auto 0;
	border: 2px solid #000;
	border-radius: 0 0 5px 5px;
	overflow: hidden;
	transition: all 0.5s ease;
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px 0;
	grid-column: 1 / -1;
}

.sm__items {
	display: flex;
	justify-content: space-evenly;
	z-index: 1;
}

.sm__picture img {
	width: 60px;
	cursor: pointer;
	transition: .3s;
}

.sm__picture img:hover,
.sm__picture img:active {
	transform: scale(1.1);
}

.services__form {
	color: #333;
	position: absolute;
	display: flex;
	align-items: center;
	max-width: 0;
	top: 0;
	left: 0;
	height: 100px;
	overflow: hidden;
	opacity: 0;
	transition: all 0.5s ease;
	background: #fff;
	z-index: 1;
}

@media (max-width: 540px) {
	.services__form {
		height: 120px;
		margin-top: -10px;
	}
}

.services__form.show {
	max-width: 100%;
	width: 100%;
	opacity: 1;
	transition: all 0.5s ease;
	margin-top: 0;
	height: 100%;
}

.sf__body {
	display: flex;
	flex-direction: column;
	align-items: start;
	flex-grow: 1;
	gap: 10px;
	padding-left: 20px;
}

.sf__description {
	text-align: left;
}

@media (max-width: 540px) {
	.sf__description {
		font-size: .9rem;
		line-height: 1.1rem;
	}
}

.sf__field {
	width: 80%;
	display: flex;
	gap: 10px;
}

.services__calendar {
	position: relative;
	width: 100%;
	grid-column: 1 / -1;
}

.sf__control,
.scf__control {
	display: block;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 10px;
	width: 100%;
	transition: .3s;
	outline: none;
}

.sf__send,
.sсf__send,
.sсf__next {
	background: #DF0F06;
	color: #fff;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	transition: .3s;
}

.sf__send:hover,
.sf__send:active,
.sсf__send:hover,
.sсf__send:active,
.sсf__next:hover,
.sсf__next:active {
	background: #000;
	color: #fff;
}

.sf__control:focus,
.scf__control:focus {
	border: 1px solid #555;
}

.sf__left {
	cursor: pointer;
	width: 50px;
	text-align: center;
	font-size: 1.3rem;
	border-left: 2px solid #000;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sf__left svg {
	width: 20px;
}

.hidden {
	display: none;
}

.sс__form {
	position: relative;
	width: 100%;
	margin: -23px auto 0;
	border: 2px solid #000;
	border-radius: 0 0 5px 5px;
	overflow: hidden;
	transition: all 0.5s ease;
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px 0;
	grid-column: 1 / -1;
}

.scf__response {
	margin: 0 10px;
}

.sсf__description {
	margin: 0 10px 10px;
}

.scf__row {
	display: flex;
	gap: 10px;
	justify-content: space-between;
	padding: 0 10px;
}

.sсf__field {
	width: 100%;
}

.sсf__body1.hidden,
.sсf__body2.hidden {
	display: none;
}

/* ---------- / services ---------- */
/* ---------- masters ---------- */
.masters {
	background: #000;
	color: #fff;
}

.masters__container {
	display: flex;
	gap: 10px;
	justify-content: space-between;
	align-items: center;
	flex-direction: column-reverse;
}

.masters__part1 {
	width: 100%;
}

.masters__part1 img {
	max-width: 100%;
	border-radius: 5px;
}

.masters__part2 {
	text-align: center;
}

.masters__part2 h2 {
	font-size: 3rem;
}

@media (max-width: 540px) {
	.masters__part2 h2 {
		font-size: 1.5rem;
	}
}

.masters__part2 h3 {
	font-size: 2rem;
}

@media (max-width: 540px) {
	.masters__part2 h3 {
		font-size: 1rem;
	}
}

.masters__description {
	margin-bottom: 30px;
}

/* ---------- / masters ---------- */
/* ---------- guarantees ---------- */
.guarantees__container {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.guarantees__part1 {
	width: 100%;
}

.guarantees__part1 img {
	width: 100%;
	border-radius: 5px;
}

.guarantees__part2 {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.guarantees__part2 h2 {
	font-size: 3rem;
}

@media (max-width: 540px) {
	.guarantees__part2 h2 {
		font-size: 1.5rem;
	}
}

.guarantees__description {
	margin-top: 30px;
	text-align: center;
}

/* ---------- / guarantees ---------- */
/* ---------- fast ---------- */
.fast {
	background: #000;
	color: #fff;
}

.fast__container {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.fast__part1 {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.fast__part1 h2 {
	font-size: 3rem;
}

@media (max-width: 540px) {
	.fast__part1 h2 {
		font-size: 1.5rem;
	}
}

.fast__description {
	text-align: center;
	margin: 30px 0;
}

.fast__part2 {
	width: 100%;
}

.fast__part2 img {
	width: 100%;
	border-radius: 5px;
}

/* ---------- / fast ---------- */

.footer {
	border-top: 1px solid #63E855;
	padding: 30px 0;
}

.footer__container {
	display: flex;
	gap: 20px;
	align-items: center;
}


.footer__logo {
	width: 50%;
	display: flex;
	justify-content: end;
}

.footer__logo img {
	width: 150px;
}

.footer__body {
	width: 50%;
	display: flex;
	flex-direction: column;
	line-height: 2rem;
}

@media (max-width: 540px) {
	.footer__container {
		flex-direction: column;
	}

	.footer__logo {
		width: 100%;
		text-align: center;
		justify-content: center;
	}
	
	.footer__body {
		width: 100%;
		text-align: center;
	}
}

.footer__item,
.footer__item a {
	color: #63E855;
}

.footer__name {
	font-size: 1.3rem;
}

.footer__copyright {
	width: 100%;
	text-align: center;
	font-size: .8rem;
	margin-top: 30px;
	color: #ddd;
}