/*# sourceMappingURL=style.css.map */
@font-face {
	font-family: Comfortaa Regular;
	src: url(fonts/Comfortaa-Regular.83c7e0d0.woff2) format("woff2"),
		url(fonts/Comfortaa-Regular.ec8f0303.woff) format("woff");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	unicode-range: U+000-5ff;
}
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic&display=swap);
body * {
	font-family: "Open Sans", sans-serif!important;
}
:root {
	--default: "Open Sans", sans-serif;
	--comforta: "Comfortaa", cursive;
	--blue-bg: #56ccf2;
	--light-blue-bg: #f1fbfe;
	--footer-bottom-bg: #f8f8f8;
	--title-gray: #333;
	--title-blue: #2d9cdb;
	--fonts-gray: #828282;
	--fonts-darkgray: #4f4f4f;
	--fonts-blue: #56ccf2;
	--gray: #828282;
	--darkgray: #4f4f4f;
	--blue: #56ccf2;
	--yellow: #f2c94c;
	--white: #f7f7f7;
	--white-all: #fff;
	--black: #000;
	--border-gray: #e0e0e0;
	--border-blue-hover: #ccf0fb;
	--border-yellow-hover: #f2c94c;
	--shadow-color-yellow: rgba(242, 201, 76, 0.5);
	--shadow-blue: 0px 4px 20px #56ccf2;
	--shadow-color-gray: rgba(0, 0, 0, 0.15);
	--blue-gradient: linear-gradient(222.56deg, #82dbf7 12.71%, #56ccf2);
	--fixme: 1px solid rgba(255, 0, 0, 0.16);
	--bg-light-white: #78d6f5;
	--yellow-light: rgba(242, 201, 76, 0.1);
	--calendar-gray: #bdbdbd;
	--bg_newtask: #dab544;
	--bg-navmenu-activ: #d7f5fd;
	--bg-block-explain: #fdf2f2;
	--color-order-warning: #eb5757;
	--color-success: #27ae60;
	--color-archive: #f2f2f2;
	--color-table: #e6f7fd;
	--color-balance: #e5e5e5;
	--after-balance: #45a3c2;
	--bg-balance: #d5f2fc;
	--main-bg: #f5fcfe;
	--alert: #fefaed;
	--settings-check: #a9acb8;
	--settings-checked: #03a9f4;
	--not-found-bg: #42b1d4;
	--comment-bg: #d9f1f8;
	--review-background: #32b0d9;
}

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

body,
html {
	font: 400 1rem/1.5 Open Sans, sans-serif;
	font: 400 1rem/1.5 var(--default);
	background: #f7f7f7;
	background: var(--white);
	margin: 0;
	padding: 0;
	color: #828282;
	color: var(--fonts-gray);
}

.body__otherpage {
	padding-top: 92px;
}

@media (max-width: 1200px) {
	.body__otherpage {
		padding-top: 82px;
	}
}

a,
a:hover {
	text-decoration: none;
}

p {
	padding: 0;
	margin: 0;
}

input {
	-webkit-appearance: none;
}

.button:disabled {
	background: #e0e0e0;
	background: var(--border-gray);
	box-shadow: none;
}

.nav-toggle {
	cursor: pointer;
	display: none;
	position: absolute;
	right: 0;
	height: 28px;
	width: 28px;
	z-index: 99;
}

@media (max-width: 1200px) {
	.nav-toggle {
		display: inline-block;
	}
}

@media (max-width: 480px) {
	.nav-toggle {
		width: 18px;
		height: 18px;
	}
}

.nav-toggle span.line {
	position: absolute;
	background-color: #f7f7f7;
	background-color: var(--white);
	width: 100%;
	height: 3px;
	border-radius: 1px;
}

@media (max-width: 480px) {
	.nav-toggle span.line {
		height: 2px;
	}
}

.nav-toggle span.line:nth-of-type(2) {
	top: 50%;
	transform: translateY(-50%);
}

.nav-toggle span.line:nth-of-type(3) {
	bottom: 0;
}

.h2title {
	font: 700 2.25rem / normal Comfortaa Regular, cursive;
	font: 700 2.25rem / normal var(--comforta);
	color: #333;
	color: var(--title-gray);
	padding: 0;
	margin: 0;
	text-align: center;
	position: relative;
}

@media (max-width: 1200px) {
	.h2title {
		font-size: 1.875rem;
		width: 100%;
	}
}

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

.h2title:after {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	background-color: #f2c94c;
	background-color: var(--yellow);
	width: 90px;
	height: 2px;
	margin-bottom: -13px;
}

.wrapper {
	margin-right: auto;
	margin-left: auto;
	padding-right: 15px;
	padding-left: 15px;
}

.wrap {
	max-width: 1170px;
}

.topline {
	background: #56ccf2;
	background: var(--blue-bg);
	top: 0;
	width: 100%;
	z-index: 3;
	position: fixed;
}

.header__title {
	font: 700 2.5rem/2.6875rem Comfortaa Regular, cursive;
	font: 700 2.5rem/2.6875rem var(--comforta);
	font-size: 28px;
}

@media (max-width: 600px) {
	.header__title {
		font-size: 1.5rem;
		line-height: normal;
		color: #333;
		color: var(--title-gray);
		padding-top: 10px;
	}
}

@media (max-width: 480px) {
	.header__title {
		width: 80%;
	}
}

.header__title-black {
	display: block;
	color: #000;
	width: 100%;
}

@media (max-width: 1200px) {
	.header__title-black {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.header__title-black {
		width: 100%;
	}
}

.navheader {
	padding: 13px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 4;
}

@media (max-width: 1200px) {
	.navheader {
		padding: 6px 0 0;
	}
}

@media (max-width: 768px) {
	.navheader__logo img {
		max-width: 165px;
	}
}

.navheader__list {
	list-style: none;
	display: flex;
	align-items: center;
	position: relative;
	margin: 0;
	padding: 0;
}

@media (max-width: 1200px) {
	.navheader__list {
		display: none;
	}
}

.navheader__link {
	list-style: none;
	line-height: normal;
	padding: 16px 0;
	margin: 0 16px;
	color: #f7f7f7;
	color: var(--white);
	transition: all 0.2s ease;
}

.navheader__link:hover {
	color: #f2c94c;
	color: var(--yellow);
}

.dropdown__btn {
	position: relative;
	cursor: pointer;
}

.dropdown__btn .dropdown__icon {
	content: url("data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.75 5.875h-.031c.062.063.156.094.281.094a.504.504 0 00.281-.094l4.625-4.594a.355.355 0 00.094-.25.504.504 0 00-.094-.281L9.281.125A.504.504 0 009 .031c-.125 0-.188.032-.25.094L5 3.844 1.25.125A.355.355 0 001 .031C.875.031.781.063.719.125L.094.75A.504.504 0 000 1.031c0 .094.031.188.125.25L4.75 5.875z' fill='%23F2C94C'/%3E%3C/svg%3E");
	padding-left: 6px;
	color: #f2c94c;
	color: var(--yellow);
}

.fieldset__wrap {
	padding: 0;
	margin: 0;
	border: none;
}

.input__gray,
.input__hoveryellow {
	border: 1px solid #e0e0e0;
	border: 1px solid var(--border-gray);
	border-radius: 40px;
	margin-bottom: 20px;
	transition: all 0.1s;
}

.input__gray:hover {
	border-color: #ccf0fb;
	border-color: var(--border-blue-hover);
}

.input__hoveryellow:hover {
	border-color: #f2c94c;
	border-color: var(--border-yellow-hover);
}

.input__text {
	color: #333;
	color: var(--title-gray);
	font-size: 0.875rem;
	line-height: 1.5rem;
	padding: 12px 20px;
	width: 50%;
}

.input__text::-webkit-input-placeholder {
	color: #828282;
	color: var(--gray);
}

.input__text::-moz-placeholder {
	color: #828282;
	color: var(--gray);
}

.input__text:-ms-input-placeholder {
	color: #828282;
	color: var(--gray);
}

.input__text::-ms-input-placeholder {
	color: #828282;
	color: var(--gray);
}

.input__hover {
	outline: none;
}

.input__hover:focus {
	border-color: #f2c94c;
	border-color: var(--yellow);
}

.wrap__flex_sb {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (max-width: 1200px) {
	.wrap__flex_sb-otherpage {
		flex-direction: column;
	}
}

.button {
	font: 600 1rem / normal Open Sans, sans-serif;
	font: 600 1rem / normal var(--default);
	position: relative;
	display: inline-block;
	border: none;
	border-radius: 60px;
	padding: 8px 30px;
	cursor: pointer;
	text-align: center;
	transition: all 0.3s;
	outline: none;
}

.button:focus {
	box-shadow: 0 0 2px 1px #56ccf2;
	box-shadow: 0 0 2px 1px var(--blue);
}

.button_primary {
	background: #f2c94c;
	background: var(--yellow);
	color: #f7f7f7;
	color: var(--white);
}

.button_primary:hover {
	box-shadow: 0 6px 18px rgba(242, 201, 76, 0.5);
	box-shadow: 0 6px 18px var(--shadow-color-yellow);
}

.consultation__title {
	text-align: left;
	color: #f7f7f7;
	color: var(--white);
	line-height: 2rem;
	font-size: 1.875rem;
	margin-bottom: 32px;
	width: 50%;
}

.consultation__title:after {
	content: none;
}

@media (max-width: 1200px) {
	.consultation__title {
		text-align: center;
		margin-bottom: 20px;
		line-height: normal;
		width: 100%;
	}
}

@media (max-width: 480px) {
	.consultation__title {
		font-size: 1.25rem;
	}
}

.freebook {
	background-color: #56ccf2;
	background-color: var(--blue);
	color: #f7f7f7;
	color: var(--white);
	padding: 40px 0;
	position: relative;
}

.freebook:after {
	position: absolute;
	content: url(img/ded_small.5559aa48.svg);
	transform: scale(0.95);
	bottom: -15px;
	right: 20%;
}

@media (max-width: 1800px) {
	.freebook:after {
		right: 10%;
	}
}

@media (max-width: 1200px) {
	.freebook:after {
		display: none;
	}
}

.freebook__title {
	padding-bottom: 20px;
	margin-bottom: 0;
	padding-right: 16px;
	line-height: normal;
	width: 50%;
	font-weight: 700;
}

.freebook__title:after {
	content: none;
}

@media (max-width: 1200px) {
	.freebook__title {
		padding-right: 0;
		width: 100%;
	}
}

@media (max-width: 480px) {
	.freebook__title {
		text-align: left;
		padding-right: 0;
		font-size: 1.25rem;
	}
}

.freebook__form {
	display: flex;
	justify-content: flex-start;
	width: 80%;
}

@media (max-width: 1200px) {
	.freebook__form {
		justify-content: center;
		width: 100%;
	}
}

.freebook__form-email,
.freebook__form-name {
	margin-bottom: 0;
	width: 220px;
	padding-left: 40px;
	position: relative;
	background-image: url(img/form_login.614d62d1.svg);
	background-repeat: no-repeat;
	background-position: 18px 50%;
	margin-right: 20px;
}

@media (max-width: 600px) {
	.freebook__form-email,
	.freebook__form-name {
		width: 290px;
		margin-bottom: 16px;
		margin-right: 0;
	}
}

.freebook__form-email {
	background-image: url(img/form_email.1d002ad6.svg);
}

.freebook__form-btn {
	margin-left: 10px;
	padding: 15px 20px;
}

@media (max-width: 768px) {
	.freebook__form-btn {
		margin-top: 24px;
		margin-left: auto;
		margin-right: auto;
		width: 299px;
	}
}

@media (max-width: 480px) {
	.freebook__form-btn {
		width: 290px;
		margin-top: 8px;
		margin-left: auto;
		margin-right: auto;
	}
}

.freebook__form form {
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	justify-content: center;
}

.freebook__form fieldset {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.footer {
	position: relative;
	color: #333;
	color: var(--title-gray);
	font-weight: 600;
}

.footer a {
	transition: all 0.2s;
}

.footer a:hover {
	color: #f2c94c;
	color: var(--yellow);
}

.footer__top {
	display: flex;
	padding: 60px 0;
	justify-content: space-between;
}

@media (max-width: 768px) {
	.footer__top {
		padding: 60px 0;
		justify-content: space-between;
	}
}

@media (max-width: 600px) {
	.footer__top {
		flex-direction: column-reverse;
		align-items: center;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.footer__top {
		padding-top: 40px;
		padding-bottom: 20px;
	}
}

.footer__contacts {
	width: 260px;
}

@media (max-width: 768px) {
	.footer__contacts {
		width: 50%;
	}
}

@media (max-width: 600px) {
	.footer__contacts {
		margin-bottom: 32px;
		width: 100%;
	}
}

@media (max-width: 480px) {
	.footer__contacts {
		margin-bottom: 128px;
	}
}

.footer__contacts a {
	font-size: 0.875rem;
	color: #4f4f4f;
	color: var(--fonts-darkgray);
	font-weight: 400;
}

.footer__contacts span {
	display: inline-block;
	margin: 0 10px 0 0;
}

.footer__copyright {
	font-size: 0.75rem;
	color: #828282;
	color: var(--gray);
	font-weight: 400;
	width: 75%;
}

@media (max-width: 1200px) {
	.footer__copyright {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.footer__copyright {
		width: 70%;
	}
}

@media (max-width: 600px) {
	.footer__copyright {
		position: absolute;
		bottom: 20px;
		width: 100%;
		margin-top: 64px;
		border-top: 1px solid #e5e5e5;
		border-top: 1px solid var(--color-balance);
		margin-left: -15px;
		margin-right: -15px;
		padding-top: 10px;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.footer__copyright {
		padding: 20px 20px 0;
	}
}

.footer__mainlinks {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

@media (max-width: 1200px) {
	.footer__mainlinks {
		margin-left: 0;
		justify-content: flex-start;
		margin-top: 30px;
	}
}

@media (max-width: 1000px) {
	.footer__mainlinks {
		margin-left: 0;
		justify-content: flex-start;
		margin-top: 30px;
	}
}

@media (max-width: 600px) {
	.footer__mainlinks {
		margin-left: 0;
		margin-bottom: 32px;
	}
}

.footer__mainlinks a {
	margin-bottom: 24px;
	color: #4f4f4f;
	color: var(--fonts-darkgray);
	display: inline-block;
}

@media (max-width: 768px) {
	.footer__mainlinks a {
		margin-bottom: 8px;
	}
}

.footer__mainlinks div {
	display: flex;
	flex-direction: column;
	margin-right: 50px;
}

@media (max-width: 1200px) {
	.footer__mainlinks div {
		margin-right: 32px;
	}
}

@media (max-width: 768px) {
}

.footer__mainlinks div:last-child {
	margin-right: 0;
}

.footer__downlinks a {
	display: inline-block;
	font-size: 0.875rem;
	margin-bottom: 16px;
	font-weight: 400;
}

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

.section-service {
	padding-top: 20px;
	padding-bottom: 30px;
}

@media (max-width: 768px) {
	.section-service {
		padding-top: 0;
	}
}

.breadcrumbs {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
}

.breadcrumbs div {
	color: #56ccf2;
	color: var(--blue);
}

.breadcrumbs div,
.breadcrumbs span {
	font-size: 0.875rem;
	line-height: 1.5rem;
}

.breadcrumbs span {
	list-style: none;
	color: #333;
	color: var(--title-gray);
	margin-right: 15px;
	position: relative;
}

@media (max-width: 480px) {
	.breadcrumbs span {
		font-size: 0.75rem;
		margin-right: 8px;
		line-height: normal;
	}
}

.breadcrumbs a:after {
	position: absolute;
	content: "";
	top: 50%;
	right: -10px;
	transform: translateY(-50%);
	border: 5px solid transparent;
	border-left-color: #f2c94c;
	border-left: 5px solid var(--yellow);
}

@media (max-width: 480px) {
	.breadcrumbs a:after {
		border: 4px solid transparent;
		border-left-color: #f2c94c;
		border-left: 4px solid var(--yellow);
	}
}

.breadcrumbs a span {
	color: #828282;
	color: var(--fonts-gray);
	transition: all 0.2s;
}

.breadcrumbs a span:hover {
	color: #f2c94c;
	color: var(--yellow);
}

.aside-wrap {
	width: 30%;
	max-width: 360px;
	-ms-grid-row-align: stretch;
	align-self: stretch;
}

@media (max-width: 1200px) {
	.aside-wrap {
		width: 100%;
		position: static;
		padding-top: 40px;
	}
}

.aside-categories {
	margin-bottom: 45px;
}

.aside-categories__title {
	font-family: Comfortaa Regular, cursive;
	font-family: var(--comforta);
	font-weight: 700;
	font-size: 1.125rem;
	line-height: normal;
	padding: 13px 0;
	color: #fff;
	background-color: #56ccf2;
	background-color: var(--blue);
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	margin-bottom: 8px;
	text-align: center;
	position: relative;
}

.aside-categories__title:before {
	content: url(img/categories__ico.02e87288.svg);
	display: flex;
	align-items: center;
	justify-content: center;
	background: hsla(0, 0%, 100%, 0.2);
	border-radius: 50%;
	width: 32px;
	height: 32px;
	position: absolute;
	top: 8px;
	left: 16px;
}

.aside-categories__list {
	position: relative;
	margin: 0;
	padding: 0 0 8px;
	list-style: none;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.aside-categories__item {
	padding: 8px 20px;
	transition: all 0.2s;
	display: flex;
}

.aside-categories__item:hover {
	background-color: rgba(86, 204, 242, 0.1);
}

.aside-categories__item a {
	display: block;
	color: #4f4f4f;
	color: var(--fonts-darkgray);
	font-size: 0.875rem;
	line-height: 1.5rem;
}

@media (max-width: 1200px) {
	.aside-categories__item a {
		font-size: 1.125rem;
		line-height: 1.9375rem;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.aside-categories__item a {
		font-size: 0.875rem;
		line-height: 1.5rem;
		text-align: left;
	}
}

.aside-services {
	margin-bottom: 45px;
}

@media (max-width: 1200px) {
	.aside-services {
		margin-bottom: 40px;
	}
}

@media (max-width: 600px) {
	.aside-services {
		display: none;
	}
}

.aside-services__list {
	position: relative;
	margin: 0;
	padding: 30px 25px;
	list-style: none;
	border: 6px solid rgba(86, 204, 242, 0.2);
	border-radius: 20px;
}

.aside-services__title {
	font-family: Comfortaa Regular, cursive;
	font-family: var(--comforta);
	font-weight: 700;
	font-size: 1.125rem;
	line-height: normal;
	background-color: #f7f7f7;
	background-color: var(--white);
	color: #56ccf2;
	color: var(--blue);
	position: absolute;
	left: 50%;
	top: -16px;
	transform: translateX(-50%);
	padding: 0 12px;
	text-align: center;
}

@media (max-width: 1200px) {
	.aside-services__title {
		font-size: 1.5rem;
		top: -24px;
	}
}

.aside-services__item {
	margin-bottom: 16px;
	transition: all 0.2s;
}

@media (max-width: 1200px) {
	.aside-services__item {
		text-align: center;
	}
}

.aside-services__item:last-child {
	margin-bottom: 0;
}

.aside-services__item a {
	font-size: 0.875rem;
	line-height: 1.5rem;
	color: #828282;
	color: var(--gray);
}

@media (max-width: 1200px) {
	.aside-services__item a {
		font-size: 1.125rem;
		line-height: 1.9375rem;
	}
}

.aside-services__item a:hover {
	color: #56ccf2;
	color: var(--blue);
}

.otherpage-wrap {
	width: 70%;
	align-self: flex-start;
	margin-right: 60px;
}

@media (max-width: 1200px) {
	.otherpage-wrap {
		width: 100%;
		margin: 0 auto;
	}
}

.post {
	align-self: flex-start;
}

.wysiwyg p {
	font-size: 1rem;
	line-height: 1.6875rem;
	padding-bottom: 13px;
	color: #000000;
}

@media (max-width: 480px) {
	.wysiwyg p {
		line-height: 1.5rem;
	}
}

.wysiwyg h2 {
	padding: 15px 0;
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.5625rem;
	font-family: Comfortaa Regular, cursive;
	font-family: var(--comforta);
	font-weight: 700;
	color: #333;
	color: var(--title-gray);
}

@media (max-width: 480px) {
	.wysiwyg h2 {
		font-size: 1.125rem;
		line-height: 1.4375rem;
	}
}

.wysiwyg ol {
	counter-reset: myNum;
	padding-left: 10px;
}

.wysiwyg ol li {
	list-style: none;
	color: #828282;
	color: var(--gray);
	font-size: 1rem;
	line-height: normal;
	position: relative;
	margin-bottom: 20px;
	padding-left: 40px;
}

@media (max-width: 480px) {
	.wysiwyg ol li {
		margin-bottom: 18px;
	}
}

.wysiwyg ol li:before {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 8px;
	counter-increment: myNum;
	content: counter(myNum);
	color: #fff;
	background-color: #f2c94c;
	background-color: var(--yellow);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	text-align: center;
	line-height: 1.5625rem;
}

.wysiwyg ol li:last-child {
	margin-bottom: 0;
}

.wysiwyg blockquote {
	border-radius: 6px;
	padding: 24px 60px 24px 100px;
	margin: 10px 0;
	background-color: #eefafe;
	font-size: 1rem;
	line-height: 1.75rem;
	position: relative;
}

.wysiwyg blockquote:before {
	position: absolute;
	content: url(img/blockquote.fa0ce7dd.svg);
	left: 30px;
	top: 16px;
}

@media (max-width: 480px) {
	.wysiwyg blockquote:before {
		left: 10px;
		top: -15px;
		transform: scale(0.7);
	}
}

@media (max-width: 480px) {
	.wysiwyg blockquote {
		font-size: 0.75rem;
		line-height: 1.1875rem;
		padding: 18px 12px 12px;
	}
}

@media (max-width: 768px) {
	.orders__blockIcon::first-child {
		margin-bottom: 20px;
	}
}

input::-webkit-calendar-picker-indicator {
	display: none;
}

.progress {
	position: fixed;
	z-index: 3;
	height: 2px;
	top: 64px;
	left: 0;
	background-color: #f2c94c;
	background-color: var(--yellow);
	transition: all 0.5s;
}

@media (max-width: 768px) {
	.progress {
		top: 51px;
	}
}

.ez-toc-section {
	padding: 20px 0;
	display: block;
}

.aside-banner {
	background: #56ccf2;
	background: var(--blue-bg);
	padding: 20px 25px;
	border-radius: 20px;
	color: #fff;
	color: var(--white-all);
	height: 520px;
	position: relative;
	margin-bottom: 60px;
}

.aside-banner__title {
	font-size: 1.5rem;
	text-align: center;
}

.aside-banner__col,
.aside-banner__title {
	font-family: Comfortaa Regular, cursive;
	font-family: var(--comforta);
	font-weight: 700;
}

.aside-banner__col {
	font-size: 3rem;
}

.aside-banner__block {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 5px;
}

.aside-banner__theme {
	font-size: 1.125rem;
	line-height: 1.625rem;
	padding-left: 8px;
	margin-top: -10px;
}

.aside-banner__img {
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -115px;
}

@media (max-width: 480px) {
	.aside-banner__img {
		transform: scale(0.8);
	}
}

.block-avtor {
	display: flex;
	border: 1px solid #e0e0e0;
	border: 1px solid var(--border-gray);
	border-radius: 20px;
	padding: 30px 25px;
	margin-top: 0;
	margin-bottom: 30px;
}

.block-avtor__img {
	margin: 0 auto;
}

.block-avtor__info {
	padding-left: 16px;
}

.block-avtor__photo {
	width: 80px;
	height: 80px;
}

.block-avtor__photo img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
}

.block-avtor__nickname {
	text-align: center;
	font-weight: 700;
	font-size: 0.875rem;
	color: #4f4f4f;
	color: var(--fonts-darkgray);
}

.block-avtor__name {
	font-family: Comfortaa Regular, cursive;
	font-family: var(--comforta);
	font-weight: 700;
	color: #2d9cdb;
	color: var(--title-blue);
	font-size: 1.5rem;
	line-height: 1.5625rem;
	margin-bottom: 8px;
}

.block-avtor__prof {
	color: #4f4f4f;
	color: var(--darkgray);
	margin-bottom: 15px;
	font-size: 0.875rem;
	line-height: 1.1875rem;
	font-weight: 700;
}

.block-avtor__desc {
	font-size: 1rem;
	line-height: 1.75rem;
	margin-bottom: 15px;
	color: #828282;
	color: var(--fonts-gray);
}

@media (max-width: 480px) {
	.block-avtor {
		flex-wrap: wrap;
	}
}

@media (max-width: 768px) {
	.aside-wrap-desctop {
		display: none;
	}
}

@media (max-width: 940px) {
}

.aside-categories__img {
	margin-top: 5px;
	max-width: 54px;
	height: auto;
	margin-right: 10px;
}

.footer-icon {
	display: flex;
	margin-top: 15px;
	margin-bottom: 15px;
}

@media (max-width: 600px) {
	.footer-icon-center {
		justify-content: center;
	}
}

.footer-icon-whatsapp {
	background: url(img/whatsapp1.35a439bf.svg) no-repeat 0 0 / cover;
	width: 30px;
	height: 30px;
	display: block;
	margin-right: 8px;
	border-radius: 50%;
}

.footer-icon-whatsapp:hover {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.footer-icon-viber {
	background: url(img/viber1.0c6755ff.svg) no-repeat 0 0 / cover;
	width: 30px;
	height: 30px;
	display: block;
	margin-right: 8px;
	border-radius: 50%;
}

.footer-icon-viber:hover {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.footer-icon-telegram {
	background: url(img/logos_telegram.b13085f7.svg) no-repeat 0 0 / cover;
	width: 30px;
	height: 30px;
	display: block;
	border-radius: 50%;
}

.footer-icon-telegram:hover {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

img {
	max-width: 100%;
	width: auto;
	height: auto;
}

@media (max-width: 480px) {
	.footer__contacts {
		margin-bottom: 0;
	}

	.footer__mainlinks {
		flex-direction: column;
	}

	.footer__mainlinks div {
		margin-right: 0;
	}

	.section-service {
		padding-bottom: 0;
	}
}

.commits {
	margin-top: 15px;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
}

.commits__title {
	margin-bottom: 15px;
	font-size: 24px;
}

.commits__item + .commits__item {
	padding-top: 25px;
}

.commits__item.hide .commits__add {
	display: none;
}

.commits__item + .commits__item {
	margin-top: 20px;
	border-top: 1px solid #eaeaea;
}

.commits__item:first-child {
	padding-top: 0;
}

.commits__head {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}

.commits__face {
	width: 50px;
	height: 50px;
	margin-right: 10px;
	background-color: gray;
	overflow: hidden;
}

.commits__face img {
	display: block;
	width: 100%;
}

.commits__name {
	font-size: 14px;
}

.commits__date {
	font-size: 12px;
}

.commits__description {
	color: #000;
	line-height: 24px;
}

.commits__media {
	margin-top: 10px;
}

.commits__success {
	display: inline-block;
	padding: 5px 15px;
	margin-top: 20px;
	font-style: italic;
	font-size: 12px;
	background-color: #e2e2e2;
}

.commits__media img {
	display: block;
	max-width: 100%;
}

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

.commits__item_hide {
	display: none;
}

.commits_error {
	border-color: red;
}

.commits__sucses {
	background-color: #a1caa6;
	color: #fff;
	display: inline-block;
	padding: 7px 20px;
	margin-top: 15px;
	font-style: italic;
}

.mybtn {
	display: inline-block;
	padding: 10px 25px;
	font-size: 12px;
	color: #ffffff;
	background-color: #b10000;
	text-decoration: none;
	opacity: 0.9;
	text-transform: uppercase;
}

.mybtn:hover {
	transform: scale(0.98);
	opacity: 1;
}

@media (max-width: 480px) {
	.commits__description {
		font-size: 14px;
	}

	.block-avtor__img {
		margin-bottom: 15px;
	}

	.commits__sucses {
		font-size: 12px;
	}

	.footer__mainlinks {
		margin-top: 0;
	}

	.p0 {
		padding-right: 0;
		padding-left: 0;
	}

	.block-avtor {
		margin-top: 10px;
	}
}

body {
	margin: 0;
}

.ryle {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 100;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 830px;
	height: 100vh;
	background-color: #9dc979;
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
	font-family: sans-serif;
	-webkit-transition: 0.6s ease-in;
	-o-transition: 0.6s ease-in;
	transition: 0.6s ease-in;
}

.ryle_active {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

.ryle__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.ryle__close:hover {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.ryle__close:hover span {
	background-color: #000;
}

.ryle__close span {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
}

.ryle__close span:first-child {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.ryle__close span:last-child {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.ryle__box {
	position: relative;
	margin-left: -359px;
	width: 718px;
	height: 718px;
}

.ryle__media {
	width: 100%;
	height: 100%;
	position: relative;
	background-image: url("img/bg.png");
	background-repeat: no-repeat;
	-webkit-transition: 5s -webkit-transform;
	transition: 5s -webkit-transform;
	-o-transition: 5s transform;
	transition: 5s transform;
	transition: 5s transform, 5s -webkit-transform;
}

.ryle__media_active {
	-webkit-transform: rotate(1290deg) scale(1);
	-ms-transform: rotate(1290deg) scale(1);
	transform: rotate(1290deg) scale(1);
}

.ryle__item {
	position: absolute;
	top: 50%;
	left: 50%;
	padding-left: 40px;
	width: 100%;
	max-width: 300px;
	color: #fff;
	font-weight: 700;
	max-width: 176px;
	text-align: center;
	font-size: 22px;
}

.ryle__item:nth-of-type(1) {
	-webkit-transform: rotate(-60deg) translate(143px, -98px);
	-ms-transform: rotate(-60deg) translate(143px, -98px);
	transform: rotate(-60deg) translate(143px, -98px);
}

.ryle__item:nth-of-type(2) {
	-webkit-transform: rotate(-30deg) translate(100px, -60px);
	-ms-transform: rotate(-30deg) translate(100px, -60px);
	transform: rotate(-30deg) translate(100px, -60px);
}

.ryle__item:nth-of-type(3) {
	-webkit-transform: rotate(0deg) translate(80px, -10px);
	-ms-transform: rotate(0deg) translate(80px, -10px);
	transform: rotate(0deg) translate(80px, -10px);
}

.ryle__item:nth-of-type(4) {
	-webkit-transform: rotate(30deg) translate(90px, 45px);
	-ms-transform: rotate(30deg) translate(90px, 45px);
	transform: rotate(30deg) translate(90px, 45px);
}

.ryle__item:nth-of-type(5) {
	-webkit-transform: rotate(60deg) translate(117px, 85px);
	-ms-transform: rotate(60deg) translate(117px, 85px);
	transform: rotate(60deg) translate(117px, 85px);
}

.ryle__item:nth-of-type(6) {
	-webkit-transform: rotate(90deg) translate(169px, 109px);
	-ms-transform: rotate(90deg) translate(169px, 109px);
	transform: rotate(90deg) translate(169px, 109px);
}

.ryle__item:nth-of-type(7) {
	-webkit-transform: rotate(120deg) translate(234px, 100px);
	-ms-transform: rotate(120deg) translate(234px, 100px);
	transform: rotate(120deg) translate(234px, 100px);
}

.ryle__item:nth-of-type(8) {
	-webkit-transform: rotate(150deg) translate(277px, 63px);
	-ms-transform: rotate(150deg) translate(277px, 63px);
	transform: rotate(150deg) translate(277px, 63px);
}

.ryle__item:nth-of-type(9) {
	-webkit-transform: rotate(180deg) translate(297px, 20px);
	-ms-transform: rotate(180deg) translate(297px, 20px);
	transform: rotate(180deg) translate(297px, 20px);
}

.ryle__item:nth-of-type(10) {
	-webkit-transform: rotate(210deg) translate(287px, -47px);
	-ms-transform: rotate(210deg) translate(287px, -47px);
	transform: rotate(210deg) translate(287px, -47px);
}

.ryle__item:nth-of-type(11) {
	-webkit-transform: rotate(240deg) translate(259px, -85px);
	-ms-transform: rotate(240deg) translate(259px, -85px);
	transform: rotate(240deg) translate(259px, -85px);
}

.ryle__item:nth-of-type(12) {
	-webkit-transform: rotate(270deg) translate(207px, -108px);
	-ms-transform: rotate(270deg) translate(207px, -108px);
	transform: rotate(270deg) translate(207px, -108px);
}

.ryle__arrow {
	position: absolute;
	top: 50%;
	margin-top: -40px;
	right: -80px;
	width: 160px;
	height: 80px;
	background-image: url("img/arrow.png");
	background-repeat: no-repeat;
	background-size: cover;
}

.ryle__info {
	margin: auto 50px auto auto;
	text-align: center;
	max-width: 275px;
}

.ryle__title {
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 24px;
	text-align: center;
	color: #111;
}

.ryle__look {
	display: inline-block;
	padding: 15px 30px;
	background-color: #111;
	color: #fff;
	text-align: center;
	border-radius: 3px;
	cursor: pointer;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	text-transform: uppercase;
	background: -o-linear-gradient(313deg, #5567c9, #da6144);
	background: linear-gradient(137deg, #5567c9, #da6144);
}

.ryle__look:hover {
	background-color: #272727;
	text-indent: 10px;
	padding-right: 20px;
}

.ryle__discount {
	visibility: hidden;
	opacity: 0;
	margin-top: 20px;
	font-size: 22px;
	color: #fff;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.ryle__discount_active {
	visibility: visible;
	opacity: 1;
}

@media (max-width: 1280px) {
	.ryle {
		width: 768px;
	}
}

@media (max-width: 768px) {
	.ryle {
		width: 100vw;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		overflow-y: auto;
	}

	.ryle__box {
		margin-left: -239px;
		min-width: 460px;
		min-height: 460px;
		width: 460px;
		height: 460px;
	}

	.ryle__media {
		background-size: cover;
	}

	.ryle__info {
		margin-right: 15px;
	}

	.ryle__arrow {
		right: -62px;
		width: 100px;
		height: 50px;
	}

	.ryle__item {
		font-weight: 400;
		font-size: 11px;
		padding-left: 15px;
		max-width: 129px;
	}

	.ryle__item:nth-of-type(1) {
		-webkit-transform: rotate(-60deg) translate(93px, -67px);
		-ms-transform: rotate(-60deg) translate(93px, -67px);
		transform: rotate(-60deg) translate(93px, -67px);
	}

	.ryle__item:nth-of-type(2) {
		-webkit-transform: rotate(-30deg) translate(65px, -43px);
		-ms-transform: rotate(-30deg) translate(65px, -43px);
		transform: rotate(-30deg) translate(65px, -43px);
	}

	.ryle__item:nth-of-type(3) {
		-webkit-transform: rotate(0deg) translate(52px, -13px);
		-ms-transform: rotate(0deg) translate(52px, -13px);
		transform: rotate(0deg) translate(52px, -13px);
	}

	.ryle__item:nth-of-type(4) {
		-webkit-transform: rotate(30deg) translate(59px, 31px);
		-ms-transform: rotate(30deg) translate(59px, 31px);
		transform: rotate(30deg) translate(59px, 31px);
	}

	.ryle__item:nth-of-type(5) {
		-webkit-transform: rotate(60deg) translate(77px, 57px);
		-ms-transform: rotate(60deg) translate(77px, 57px);
		transform: rotate(60deg) translate(77px, 57px);
	}

	.ryle__item:nth-of-type(6) {
		-webkit-transform: rotate(90deg) translate(110px, 73px);
		-ms-transform: rotate(90deg) translate(110px, 73px);
		transform: rotate(90deg) translate(110px, 73px);
	}

	.ryle__item:nth-of-type(7) {
		-webkit-transform: rotate(120deg) translate(154px, 67px);
		-ms-transform: rotate(120deg) translate(154px, 67px);
		transform: rotate(120deg) translate(154px, 67px);
	}

	.ryle__item:nth-of-type(8) {
		-webkit-transform: rotate(150deg) translate(182px, 41px);
		-ms-transform: rotate(150deg) translate(182px, 41px);
		transform: rotate(150deg) translate(182px, 41px);
	}

	.ryle__item:nth-of-type(9) {
		-webkit-transform: rotate(180deg) translate(195px, 14px);
		-ms-transform: rotate(180deg) translate(195px, 14px);
		transform: rotate(180deg) translate(195px, 14px);
	}

	.ryle__item:nth-of-type(10) {
		-webkit-transform: rotate(210deg) translate(189px, -30px);
		-ms-transform: rotate(210deg) translate(189px, -30px);
		transform: rotate(210deg) translate(189px, -30px);
	}

	.ryle__item:nth-of-type(11) {
		-webkit-transform: rotate(240deg) translate(171px, -56px);
		-ms-transform: rotate(240deg) translate(171px, -56px);
		transform: rotate(240deg) translate(171px, -56px);
	}

	.ryle__item:nth-of-type(12) {
		-webkit-transform: rotate(270deg) translate(137px, -73px);
		-ms-transform: rotate(270deg) translate(137px, -73px);
		transform: rotate(270deg) translate(137px, -73px);
	}
}

@media (max-width: 480px) {
	.ryle__box {
		margin-left: -270px;
		margin-top: -120px;
	}

	.ryle__title {
		font-size: 18px;
		margin-bottom: 10px;
	}
}

.all-form {
	font-family: sans-serif;
	width: 100%;
	max-width: 620px;
	color: #000;
	font-size: 16px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 30px;
	margin-bottom: 30px;
}

.all-form__time {
	text-align: center;
	font-size: 20px;
	font-weight: 700;
}

.all-form__time > span {
	display: block;
}

.all-form__count {
	color: red;
	margin-top: 15px;
}

.all-form__body {
	padding: 25px 45px;
	margin-top: 15px;
	background-color: #fff;
	-webkit-box-shadow: 4px 5px 10px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 4px 5px 10px 0px rgba(0, 0, 0, 0.25);
}

.all-form__title {
	font-size: 33px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 20px;
	line-height: 40px;
}

.all-form__title span {
	color: #50b27c;
}

.all-form__label > span {
	display: block;
	margin-bottom: 5px;
}

.all-form__label + .all-form__label {
	margin-top: 20px;
}

.all-form__field {
	display: block;
	width: 100%;
	height: 50px;
	border: 1px solid #d1d1d1;
	border-radius: 3px;
	padding: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.all-form__footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 40px;
}

.all-form__btn {
	padding: 15px 5px;
	border-radius: 3px;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	margin-right: 40px;
	background-color: #53b57f;
	background: rgb(90, 188, 134);
	background: -o-linear-gradient(
		top,
		rgba(90, 188, 134, 1) 0%,
		rgba(66, 163, 110, 1) 50%
	);
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(rgba(90, 188, 134, 1)),
		color-stop(50%, rgba(66, 163, 110, 1))
	);
	background: linear-gradient(
		180deg,
		rgba(90, 188, 134, 1) 0%,
		rgba(66, 163, 110, 1) 50%
	);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	cursor: pointer;
	border: 0;
	font-size: 16px;
}

.all-form__btn:hover {
	text-indent: 10px;
	padding-right: 30px;
	-webkit-box-shadow: inset 10px 0px 20px 0px rgba(0, 0, 0, 0.4);
	box-shadow: inset 10px 0px 20px 0px rgba(0, 0, 0, 0.4);
}

.all-form__price-new {
	margin-right: 15px;
	color: #49aa75;
	font-size: 20px;
}

.all-form__price-old {
	font-size: 14px;
	color: #8c8c8c;
	text-decoration: line-through;
}

@media (max-width: 480px) {
	.all-form__footer {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.all-form__btn {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
		font-size: 15px;
	}

	.all-form__body {
		padding: 25px;
	}
}

.float > span {
	display: block;
	float: left;
	margin-right: 15px;
	margin-bottom: 5px;
}

img {
	display: block;
}

.commits__description img {
	display: block;
	margin: 10px 0 0;
}
.prod-img {
	width: 90%;
	max-width: 450px;
	margin: 0 auto;
}
.prod-img-2 {
	width: 90%;
	max-width: 400px;
	margin: 0 auto;
}
.price-block {
	text-align: center;
	font-size: 20px;
	margin: 15px 0;
}
.price-block b {
	color: red;
	padding-left: 6px;
}
.order_form {
	width: 100%;
	max-width: 350px;
	margin: 0 auto;
}
.inp {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	border: 1px #bbb solid;
	font-size: 16px;
	padding-left: 10px;
	margin-bottom: 10px;
	height: 46px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}
.order_form button {
	width: 100%;
}
@media screen and (max-width: 768px) {
	.freebook {
		 display: none;
	}

	.footer__top {
		 padding-top: 20px;
	}
}