* {
	padding: 0;
	margin: 0;
	border: 0;
}
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	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: 17px;
	font-family: 'Nunito';
	font-weight: 400;
	color: #505050;
	overflow-y: scroll;
}

html {
	scroll-behavior: smooth;
}
body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
    height: 100%;
}
main.main {
    flex-grow: 1;
}
button {
	cursor: pointer;
}
a,
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
ul li,
nav li {
	list-style: none;
}
.container {
	width: 1200px;
	margin: 0 auto;
}
.header {
	height: 72px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #fff;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}
.header.shadow {
	-webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.header__wrapper {
	width: 100%;
}
.header__logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}
.header__logo_img {
	width: 70px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header__logo_img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
.header__logo_text {
	font-family: 'Roboto';
	font-size: 50px;
	font-weight: 900;
	color: #3f94fb;
	line-height: 100%;
	vertical-align: middle;
}
.header__logo_text span {
	color: #303030;
}
.header .header__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.header__wrapper {
	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;
}
.header .nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
}
.header .nav-mobile {
	display: none;
}
.header .menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
}
.header .menu__item a {
	color: #505050;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-size: 20px;
}
.header .menu__item a:hover {
	opacity: 0.6;
}
.header__icons {
	display: none;
}
.header__icons .icons {
	margin-top: 0;
}
.btn {
	color: #fff;
	background-color: #3f94fb;
	padding: 14px 20px;
	font-size: 15px;
	border-radius: 4px;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-family: 'Nunito';
	font-size: 20px;
}
.btn:hover {
	background-color: #64a8fa;
}
.btn a {
	background-color: #3f94fb;
}

.burger {
	width: 32px;
	height: 24px;
	cursor: pointer;
	right: 2rem;
	top: 2rem;
	z-index: 20;
	display: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.burger span {
	width: 100%;
	height: 4px;
	background-color: #000;
	border-radius: 12px;
	display: block;
	-webkit-transition: background-color 0.5s ease-in-out;
	transition: background-color 0.5s ease-in-out;
}
.burger span::before,
.burger span::after {
	content: '';
	width: 100%;
	background-color: #000;
	display: block;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	border-radius: 12px;
	height: 4px;
}
.burger span::before {
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
}
.burger span::after {
	-webkit-transform: translateY(10px);
	-ms-transform: translateY(10px);
	transform: translateY(10px);
	margin-top: -4px;
}
.burger.burger_active span {
	background-color: rgba(0, 0, 0, 0);
}
.burger.burger_active span::before {
	-webkit-transform: rotateZ(45deg) translateY(0);
	-ms-transform: rotate(45deg) translateY(0);
	transform: rotateZ(45deg) translateY(0);
}
.burger.burger_active span::after {
	-webkit-transform: rotateZ(-45deg) translateY(0);
	-ms-transform: rotate(-45deg) translateY(0);
	transform: rotateZ(-45deg) translateY(0);
}
.promo {
	margin-top: 92px;
}
.promo__wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 600px;
	grid-template-columns: 1fr 600px;
	-ms-grid-rows: 430px;
	grid-template-rows: 430px;
}
.promo__img {
	width: 530px;
	height: 100%;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
}
.promo__img img {
	width: 100%;
	height: 100%;
  border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	-o-object-fit: cover;
	object-fit: cover;
}
.promo__right {
	height: 100%;
	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: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 30px;
}
.promo__title {
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 55px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #303030;
	text-align: left;
	letter-spacing: 1px;
	line-height: 110%;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.promo__line {
	height: 1px;
	width: 95%;
	background-color: #e5e5e5;
}
.promo__descr {
	font-size: 20px;
}
.services {
	margin-top: 100px;
}
.services__title {
	text-align: center;
	font-size: 40px;
}
.services__wrapper {
	margin-top: 25px;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr 1fr;
	grid-template-columns: 1fr 1fr 1fr;
	-ms-grid-rows: -webkit-max-content;
	-ms-grid-rows: max-content;
	grid-template-rows: -webkit-max-content;
	grid-template-rows: max-content;
}
.service {
	min-height: 235px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
	padding: 10px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.service__title {
	font-size: 25px;
	color: #303030;
}
.service__descr {
	color: #303030;
}
.service__link {
	display: block;
	color: #adb0b6;
	margin-top: auto;
	-webkit-transition: all 0.175s ease;
	transition: all 0.175s ease;
}
/* .service__link:hover {
	color: #3f94fb;
} */
.service:hover {
	-webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.footer {
	margin-top: 120px;
	background-color: #23262d;
	position: static;
}
.footer__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 190px;
	padding: 30px 0 10px;
}
.footer__logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}
.footer__logo_img {
	width: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.footer__logo_img img {
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
.footer__logo_text {
	font-size: 30px;
	line-height: 100%;
	color: #959595;
	font-family: 'Roboto';
	font-weight: 400;
}
.footer__contacts {
	margin-top: 30px;
}
.footer__contacts_title {
	color: #959595;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.footer__contacts-wrapper {
	margin-top: 10px;
}
.footer__phone a {
	color: #959595;
	font-weight: 200;
}
.footer__mail {
	color: #959595;
	font-weight: 200;
}
.footer__address {
	color: #959595;
	font-weight: 200;
}
.footer__right {
	color: #959595;
}
.footer__menu_title {
	text-decoration: underline;
	text-underline-offset: 3px;
}
.footer__menu_list {
	margin-top: 10px;
	font-weight: 200;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
}
.footer__menu_item a {
	color: #959595;
}
.icons {
	margin: 32px 0 32px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.icons a.icon {
	display: block;
	width: 30px;
	height: 30px;
	position: relative;
}
.icons a.icon img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
.icons a::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(34, 34, 34, 0.5); /* цвет и прозрачность тонировки */
  mix-blend-mode: multiply; /* попробуй также overlay, color или screen */
  pointer-events: none;
}
.overlay {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	top: 0;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
	background-color: rgba(0, 0, 0, 0.7);
	position: fixed;
}
.modal-open {
	visibility: visible;
	opacity: 1;
}
@-webkit-keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate(-50%, -50%) scale(0.8);
		transform: translate(-50%, -50%) scale(0.8);
	}
}
@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate(-50%, -50%) scale(0.8);
		transform: translate(-50%, -50%) scale(0.8);
	}
}
.modal {
	background-color: #fff;
	border-radius: 20px;
	max-width: 490px;
	width: 100%;
	padding: 50px;
	position: absolute;
}
.modal-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 20px;
}
.modal-header h2 {
	font-size: 28px;
	font-weight: 700;
}
.close-button {
	position: relative;
	top: -25px;
	font-size: 24px;
	cursor: pointer;
}
.form-group {
	display: block;
	margin: 16px 0;
}
.form-group label {
	font-size: 16px;
	color: #0f1730;
	font-weight: 500;
}
.radio-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 20px 0;
}
.radio-group input[type='radio'] {
	accent-color: #555b6d;
	width: 28px;
	height: 28px;
	vertical-align: middle;
	margin-right: 5px;
}
.radio-group label {
	margin-right: 16px;
	font-size: 16px;
	color: #555b6d;
}
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input[type='number'] {
	-moz-appearance: textfield;
}
input[type='text'],
input[type='number'],
textarea {
	font-family: 'Nunito', sans-serif;
	font-weight: 400;
	width: 100%;
	padding: 10px;
	font-size: 16px;
	border: 1px solid #cfd4e2;
	border-radius: 5px;
	margin: 5px auto;
	outline: none;
}
textarea {
	resize: vertical;
	height: 93px;
	resize: none;
}
.button-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	margin: 30px;
}
.cancel-button,
.add-button {
	font-family: 'Nunito', sans-serif;
	font-weight: 500;
	font-size: 16px;
	background: none;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	padding: 12px 30px;
}
.cancel-button {
	color: #0f1730;
}
.add-button {
	background-color: #0f1730;
	color: #fff;
}
.error-message {
	color: #ff4d4f;
	font-size: 14px;
	margin-top: 5px;
}
.success-message {
	color: #28a745;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 20px;
	text-align: center;
}
.cancel-button:hover {
	color: #ff4d4f;
}
.add-button:hover {
	background-color: #333;
}
.single-promo {
	margin-top: 172px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}
.single-promo__title {
	font-family: 'Nunito';
	font-size: 55px;
    line-height: 1;
}
.single-promo__line {
	height: 1px;
	background-color: #e5e5e5;
	margin: 30px 0 50px;
}
.single-promo__descr {
	font-size: 20px;
}
.single-promo__btn {
	margin-top: 50px;
}
.single-promo__btn_bitrix24 {
	margin-top: 40px;
	display: block;
	width: fit-content;
	background-color: #bdf300;
	color: #262626;
	border-radius: 50px;
}
.single-promo__btn_bitrix24:hover {
	background-color: #c5f912;
}
.about {
	margin-top: 172px;
}
.about__title {
	font-size: 55px;
}
.about__line {
	height: 1px;
	background-color: #e5e5e5;
	margin: 30px 0 50px;
}
.about__content {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}
.about__left-subtitle {
	margin-top: 10px;
	color: #adb0b6;
}
.about__left-descr {
	margin-top: 20px;
	line-height: 120%;
	color: #959595;
}
.about__btn {
	margin-top: 50px;
}
.about__directions {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	-ms-grid-rows: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 30px;
}
.about__direction-number {
	font-size: 65px;
	font-weight: 900;
	color: #adb0b6;
}
.about__direction-title {
	font-weight: 700;
}
.about__direction-descr {
	margin-top: 10px;
	color: #959595;
	line-height: 120%;
}
.blog {
	margin-top: 172px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}
.blog__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 30px;
}
.blog__content {
	width: 820px;
}
.blog__sidebar {
	width: 285px;
	top: 350px;
}
.article {
    color: #303030;
}
.article__title a {
	color: #505050;
}
.article__descr {
	margin-top: 10px;
	line-height: 120%;
}
.article__meta {
	margin-top: 10px;
}
.article__meta-link {
    display: inline;
    color: #3f94fb;
    font-weight: bold;
}
.article__meta-line {
	height: 1px;
	background-color: #e5e5e5;
	margin: 30px 0 50px;
}
.search {
	width: 285px;
	height: 50px;
}
.search__input {
	width: 100%;
	height: 100%;
	padding: 0 20px;
	font-size: 20px;
	color: #505050;
	border: 1px solid #959595;
	border-radius: 4px;
}
.search__input::-webkit-search-cancel-button {
	display: none;
}
.search__input::-webkit-input-placeholder {
	font-size: 20px;
}
.search__input::-moz-placeholder {
	font-size: 20px;
}
.search__input:-ms-input-placeholder {
	font-size: 20px;
}
.search__input::-ms-input-placeholder {
	font-size: 20px;
}
.search__input::placeholder {
	font-size: 20px;
}
.search__input:hover {
	border: 1px solid #3f94fb;
}
.search__input:focus {
	border: 1px solid #3f94fb;
}
.headings__list {
	margin-top: 70px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
}
.headings__item a {
	color: #505050;
}
.headings__item a:hover {
	color: #959595;
}
.pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
}
.pagination__number {
	color: #3f94fb;
	text-decoration: underline;
	text-underline-offset: 3px;
	-webkit-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}
.pagination__number:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}
.pagination__number.current {
	color: #505050;
	text-decoration: none;
	-webkit-transform: unset;
	-ms-transform: unset;
	transform: unset;
}
.pagination__number.dots {
	text-decoration: none;
	-webkit-transform: unset;
	-ms-transform: unset;
	transform: unset;
	letter-spacing: 2px;
}

/* 404 */
.mx-404 {
	margin-top: 72px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.mx-404__wrapper {
	display: flex;
	align-items: center;
	gap: 20px;
}
.mx-404__img {
	max-width: 400px;
}
.mx-404__img img {
	object-fit: contain;
	width: 100%
}
.mx-404__descr {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.mx-404__title {
	font-size: 45px;
}
.mx-404__btn {
	display: block;
	width: fit-content;
	background-color: #4CAF50;
}
.mx-404__btn:hover {
	background-color: #28A745;
}

/* ========Single Post=start======= */
.single-post__content ol, .single-post__content ul {
    margin: 1rem 0 1rem 1.5rem;
    padding: 0;
}
.single-post__content ul li {
    list-style: disc;
}
.single-post__content ol li {
    list-style: decimal;
}
.single-post__content li {
    margin-bottom: 0.3em;
}
.single-post__content a {
    color: #505050;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.single-post__title {
    margin-top: 80px;
}
.single-post__cta {
    margin-top: 40px;
}
.single-post__cta-title {
    font-size: 40px;;
}
.single-post__cta-btn {
    margin-top: 10px;
}

.post-separator {
    margin: 10px 0 10px 0;
}

/* ========Single Post=end========= */


  canvas {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
  }

@media screen and (max-width: 1440px) {
	.container {
		width: 980px;
	}
	.promo__wrapper {
		-ms-grid-columns: 1fr 520px;
		grid-template-columns: 1fr 520px;
		gap: 20px;
	}
	.promo__title {
		font-size: 52px;
	}
	.promo__img {
		width: 440px;
	}
	.blog__content {
		width: 65%;
	}
	.blog__sidebar {
		width: 25%;
	}
	.search {
		width: 100%;
	}

	/* 404 */
	.mx-404__title {
		font-size: 35px;
	}
}
@media screen and (max-width: 1024px) {
	.container {
		width: 730px;
	}
	.header__logo_text {
		font-size: 35px;
	}
	.promo__wrapper {
		margin-top: 40px;
		-ms-grid-columns: 100%;
		grid-template-columns: 100%;
		-ms-grid-rows: auto 1fr;
		grid-template-rows: auto 1fr;
		gap: 40px;
	}
	.promo__left {
		width: 100%;
		height: 200px;
	}
	.promo__img {
		width: 100%;
		height: 100%;
	}
	.services__wrapper {
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
	}
	.about__content {
		-ms-grid-columns: 100%;
		grid-template-columns: 100%;
	}
	.about__left {
		-ms-grid-row: 2;
		grid-row: 2;
	}
	.about__right {
		-ms-grid-row: 1;
		grid-row: 1;
	}
	.blog__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.blog__content {
		width: 100%;
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.blog__sidebar {
		width: 100%;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	.search {
		width: 100%;
	}
	.headings {
		display: none;
	}
	.single-promo__title {
		line-height: 100%;
	}

	/* 404 */
	.mx-404__wrapper {
		gap: 0;
	}
	.mx-404__img {
		width: 40%;
	}
	.mx-404__title {
		font-size: 30px;
		line-height: 1;
	}
}

@media screen and (max-width: 768px) {
	.container {
		width: 92%;
	}
	.header__logo_text {
		display: none;
	}
	.header .menu {
		display: none;
	}
	.header__btn {
		display: none;
	}
	.header__icons {
		display: block;
	}
	.header .nav-mobile {
		display: block;
		background-color: #fff;
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		z-index: 999;
		position: absolute;
		left: 0;
		top: 150%;
		padding: 50px;
		border-radius: 6px;
		-webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
		box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		transform: translateX(-100%);
		-webkit-transition: -webkit-transform 0.3s ease;
		transition: -webkit-transform 0.3s ease;
		transition: transform 0.3s ease;
		transition: transform 0.3s ease, -webkit-transform 0.3s ease;
	}
	.header .nav-mobile.active {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	.header .menu-mobile__item a {
		color: #505050;
		-webkit-transition: all 0.175s ease;
		transition: all 0.175s ease;
		font-size: 20px;
	}
	.header .menu-mobile__item a:hover {
		color: #3f94fb;
	}
	.header .menu-mobile__btn {
		margin-top: 40px;
		padding: 10px;
		font-size: 17px;
	}
	.burger {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.promo__title {
		font-size: 38px;
	}
	.article__title {
		line-height: 100%;
	}
	.article__meta-line {
		margin: 30px 0;
	}
	.footer__wrapper {
		gap: 0;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.footer__right {
		display: none;
	}
	.single-promo__title {
		font-size: 38px;
	}
	.overlay {
		width: 100%;
	}
	.modal {
		width: 92%;
		padding: 20px;
	}
	.modal .close-button {
		top: -12px;
	}

		/* 404 */
	.mx-404__wrapper {
		flex-direction: column;
		align-items: center;
		gap: 30px;
	}
	.mx-404__img {
		width: 50%;
	}
	.mx-404__descr {
		width: fit-content
	}
}
@media screen and (max-width: 480px) {
	.header__logo_text {
		display: none;
	}
	.promo__title {
		font-size: 30px;
		text-align: center;
	}
	.promo__descr {
		text-align: center;
	}
	.promo__btns {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.services__wrapper {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
	.about__directions {
		-ms-grid-columns: 100%;
		grid-template-columns: 100%;
		-ms-grid-rows: -webkit-max-content;
		-ms-grid-rows: max-content;
		grid-template-rows: -webkit-max-content;
		grid-template-rows: max-content;
	}
	.article__title {
		font-size: 22px;
	}
	.single-promo__title {
		font-size: 30px;
	}
	.modal {
		margin-top: 100px;
		height: 550px;
	}
	.modal .modal-header {
		margin-bottom: 0;
	}
	.modal .radio-group {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 7px;
		margin: 5px 0;
	}
	.modal .form-group {
		margin: 0;
	}
	.modal .form-group textarea {
		height: 42px;
	}
	.modal .button-group {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		gap: 5px;
		margin: 0;
	}

	/* 404 */
	.mx-404__descr {
		align-items: center;
	}
	.mx-404__descr {
		text-align: center;
	}
}
