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

body {
	height: 100%;
	font-family: Raleway, sans-serif;
	font-size: 16px;
	line-height: 27px;
	font-weight: 500;
	color: #444444;
	font-variant-numeric: lining-nums;
	background: -webkit-linear-gradient(315deg, rgb(255, 255, 255) 20%, rgb(253, 253, 255), rgb(255, 255, 255) 80%);
	background: -moz-linear-gradient(315deg, rgb(255, 255, 255) 20%, rgb(253, 253, 255), rgb(255, 255, 255) 80%);
	background: linear-gradient(315deg, rgb(255, 255, 255) 20%, rgb(253, 253, 255), rgb(255, 255, 255) 80%);
}

a {
	text-decoration: none;
	color: inherit;
	display: inline-block;
}

.title-section {
	font-family: "Montserrat", Sans-serif;
	font-size: 43px;
	font-weight: 700;
	line-height: 45px;
	margin-bottom: 50px;
}

.container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}

.container-header {
	max-width: 1800px;
	margin: 0 auto;
	padding: 0 80px;
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translate(100%, 0);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translate(-100%, 0);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}

@keyframes fadeInBottom {
	0% {
		opacity: 0;
		transform: translate(0, 200px);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	30% {
		opacity: 0.1;
	}
	100% {
		opacity: 1;
	}
}

@keyframes scale-up-center {
	0% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

/* -----hamburger------- */

.header {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 50;
}

.header._active {
	animation: fadeInLeft 1s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.header:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.header__body {
	position: relative;
	display: flex;
	justify-content: space-between;
	height: 80px;
	align-items: center;
}

.header__menu {
	height: 65px;
}

.header__logo {
	flex: 0 0 147px;
	overflow: hidden;
	position: relative;
	z-index: 3;
}

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

.header__burger {
	display: none;
}

.header__list {
	display: flex;
	position: relative;
	z-index: 2;
}

.header__list li {
	margin-right: 40px;
}

.header__link {
	font-family: "Montserrat", Sans-serif;
	font-weight: 500;
	line-height: 60px;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 0.7px;
	color: #4f4967;
	transition: all 0.5s;
}

.header__link:hover {
	color: #b78c87;
}

/* -----hamburger end------- */

.header__content {
	display: flex;
	background: url(../images/header-bg.jpg) top right no-repeat;
	background-size: cover;
	position: relative;
	height: 100vh;
	color: #4f4967;
	overflow: hidden;
}

.header__content_bg {
	background: linear-gradient(90deg, rgba(245, 246, 250, 1.9), rgba(245, 246, 250, .01));
    width: 100%;
    overflow: hidden;
    height: 100vh;
    display: flex;
	/*background: hsl(0, 0%, 90%);
	position: absolute;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;*/
}

.header__content._active {
	animation: fadeIn 1.5s;
}

.header__content-inner {
	width: 1800px;
	margin: auto;
	text-align: center;
	padding: 0 78px;
}

.header__title {
	font-family: "Montserrat", Sans-serif;
	font-size: 64px;
	font-weight: 700;
	line-height: 60px;
	text-shadow: 0px 0px 10px #ffffff;
	mix-blend-mode: multiply;
	margin-bottom: 30px;
	text-align: left;
}

.header__title._active {
	animation: fadeInBottom 0.7s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.header__subtitle {
	color: #a2a9c2;
	font-family: "Montserrat", Sans-serif;
	font-size: 46px;
	font-weight: 500;
	line-height: 45px;
	text-shadow: 0px 0px 10px #ffffff;
	mix-blend-mode: multiply;
	margin-bottom: 30px;
	text-align: left;
}

.header__subtitle._active {
	animation: fadeInBottom 0.8s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.header__text {
	font-size: 19px;
	font-weight: 500;
	padding-left: 3px;
	text-align: left;
	margin-bottom: 70px;
}

.header__text._active {
	animation: fadeInBottom 1s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.button {
	padding: 15px 53px 18px;
	border-radius: 50px;
	background-color: #4f4967;
	border: 1px solid #4f4967;
	color: #eeeff4;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.7px;
	transition: all 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.button:hover {
	background-color: rgba(255, 255, 255, 0.5);
	color: #4f4967;
	transition: all 0.5s;
}

.button._active {
	animation: fadeInBottom 1.2s;
}

/* ------ Что такое коучинг --------- */

.coaching {
	padding: 120px 0 100px;
	overflow: hidden;
}

.coaching__item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 50px;
}

.coaching__item-img {
	width: 50%;
}

.coaching__item-imges {
	display: flex;
	height: auto;
	width: 100%;
	border-radius: 5px;
}

.coaching__item-img._active {
	animation: fadeInRight 1s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.coaching__item-content {
	display: flex;
	width: 50%;
}

.coaching__item-content-box {
	z-index: 1;
	box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.06);
	margin: 60px 0px 60px -60px;
	padding: 60px;
	border-radius: 5px;
	background-color: #ffffff;
}

.coaching__item-content-box._active {
	animation: fadeInLeft 1s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.coaching__item-title {
	color: #4f4967;
	text-shadow: 0px 0px 10px #ffffff;
	mix-blend-mode: multiply;
	margin-bottom: 30px;
}

/* ----- SERVICES ------ */

.services {
	padding-bottom: 50px;
}

.services__title,
.price__title,
.about__title,
.wherefore__title {
	color: #4f4967;
	text-align: center;
}

.services__title._active {
	animation: fadeInLeft 0.7s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.services__content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 -10px;
}

.services__inner {
	width: 33.33%;
}

.services__item-content {
	display: flex;
	flex-direction: column;
	min-height: 154px;
	align-content: center;
	text-align: center;
	margin: 10px;
	box-shadow: 0px 2px 30px -2px rgb(0 0 0 / 6%);
	background-color: #fff;
	border-radius: 5px;
	padding: 20px 10px;
}

.services__item-content.c1._active {
	animation: fadeInRight 0.4s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.services__item-content.c2._active {
	animation: fadeInRight 0.6s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.services__item-content.c3._active {
	animation: fadeInRight 0.8s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.services__item-content.c4._active {
	animation: fadeInLeft 1s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.services__item-content.c5._active {
	animation: fadeInLeft 1.2s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.services__item-content.c6._active {
	animation: fadeInLeft 1.4s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.services__item-content.c7._active {
	animation: fadeInRight 1.6s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.services__item-content.c8._active {
	animation: fadeInRight 1.8s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.services__item-content.c9._active {
	animation: fadeInRight 2s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.services__item-img {
	height: 40px;
	width: 40px;
	margin: 0 auto 18px;
}

.services__item-text {
	font-size: 20px;
	line-height: 28px;
	color: #505050;
}

/* ------------------ Call To Action --------------------- */

.call-to-action,
footer {
	display: flex;
	position: relative;
	min-height: 620px;
	background: url(../images/call-to-action-bg.jpg) center center no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.call-to-action__background-overlay {
	background: rgba(79, 73, 103, 0.85);
	width: 100%;
}

.call-to-action__item {
	margin-top: 120px;
}

.call-to-action__item._active {
	animation: fadeInRight 0.7s;
	transition: all cubic-bezier(0.55, 0.06, 0.68, 0.19);
}

.call-to-action__item-title {
	color: #fbfbfb;
	margin-bottom: 30px;
}

.call-to-action__list {
	color: #fbfbfb;
	font-size: 20px;
	line-height: 30px;
	padding-bottom: 18px;
	padding-left: 30px;
}

.call-to-action__list-text {
	position: relative;
	list-style: none;
	padding-bottom: 16px;
}

.call-to-action__list-text::before {
	position: absolute;
	top: 2px;
	left: -27px;
	display: block;
	width: 20px;
	height: 16px;
	pointer-events: none;
	content: url("../images/icon/arrow.svg");
}

.button__call-to-action {
	padding: 15px 53px 18px;
	border-radius: 50px;
	background-color: #ffffff00;
	border: 1px solid #a2a9c2;
	color: #eeeff4;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.7px;
	transition: all 0.5s;
	margin-top: 20px;
}

.button__call-to-action:hover {
	background-color: #ffffff00;
	color: #fff;
	border: 1px solid #fff;
	-webkit-box-shadow: 4px 4px 50px 4px rgba(255, 255, 255, 0.1) inset;
	-moz-box-shadow: 4px 4px 50px 4px rgba(255, 255, 255, 0.1) inset;
	box-shadow: 4px 4px 50px 4px rgba(255, 255, 255, 0.1) inset;
}

/* --------- WAVE --------- */

.header__wave {
	left: 0;
	right: 0;
	bottom: -20px;
	overflow: hidden;
	position: absolute;
}

.wave {
	left: -5px;
	right: -5px;
	bottom: -1px;
	overflow: hidden;
	position: absolute;
}

.wave__img {
	background: url(../images/wave.svg) bottom center no-repeat;
	background-size: cover;
	height: 100px;
}

.wave2 {
	z-index: 1;
	left: -5px;
	right: -5px;
	top: -1px;
	overflow: hidden;
	position: absolute;
}

.wave__img2 {
	background: url(../images/wave2.svg) bottom center no-repeat;
	background-size: cover;
	height: 100px;
}

/* -------------------- PRICES -------------------- */

.price {
	padding: 10px 0;
}

.price__title._active {
	animation: fadeInBottom 1.4s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.price__item-table.pr1._active {
	animation: fadeInBottom 0.6s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.price__item-table.pr2._active {
	animation: fadeInBottom 0.8s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.price__item-table.pr3._active {
	animation: fadeInBottom 1s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.price__item-table.pr4._active {
	animation: fadeInBottom 1.2s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.price__content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 -10px;
}

.price__inner {
	width: 25%;
}

.price__item-table {
	display: flex;
	flex-direction: column;
	align-content: center;
	text-align: center;
	margin: 10px;
	box-shadow: 0px 2px 30px -2px rgb(0 0 0 / 6%);
	background-color: #fff;
	border-radius: 5px;
}

.price__table-title {
	font-size: 21px;
	line-height: 25px;
	font-weight: 500;
	background-color: #fcfcff;
	padding: 25px 10px 20px;
	border-radius: 5px 5px 0 0;
}

.price__table-price {
	font-family: "Montserrat", Sans-serif;
	font-size: 25px;
	line-height: 20px;
	font-weight: 700;
	color: #a2a9c2;
	margin: 10px auto 0;
}

.price--decor {
	position: relative;
}

.price--decor::before {
	position: absolute;
	content: "₽";
	top: -6px;
	left: -20px;
	font-weight: 500;
	font-size: 15px;
}

.price__table-excluded {
	color: #b78c87;
	padding-bottom: 20px;
}

.price__table-period {
	position: relative;
	margin-bottom: -10px;
	font-size: 14px;
}

.price__table-period::before {
	position: absolute;
	content: "";
	bottom: -9px;
	height: 1px;
	left: 0;
	right: 0;
	width: 90%;
	margin: auto;
	background-color: hsla(227, 21%, 70%, 0.1);
}

.price__table-time {
	margin-top: 29px;
	margin-bottom: 10px;
}

.button__price {
	padding: 8px 20px 10px;
	border-radius: 50px;
	background-color: #4f4967;
	border: 1px solid #4f4967;
	color: #eeeff4;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.7px;
	transition: all 0.5s;
	margin: 10px auto 38px;
}

.button__price:hover {
	background-color: #fff;
	color: #4f4967;
}

.price__post-title {
	width: 100%;
	font-family: "Montserrat", Sans-serif;
	font-size: 29px;
	line-height: 5px;
	font-weight: 500;
	text-align: center;
	color: #4f4967;
	margin-top: 90px;
	border-bottom: 1px solid #a2a9c287;
}

.titles--decor {
	background-color: #fefeff;
	margin-top: -7px;
	color: #4f4967;
	position: relative;
	padding: 0px 30px 10px 30px;
}

/* -------------- ABOUT ------------- */

.about {
	padding: 50px 0 100px;
}

.about__title._active {
	animation: fadeInBottom 1s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.about__row {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.about__item-img {
	flex: 0 0 50%;
	overflow: hidden;
	border-radius: 5px;
}

.about__item-img._active {
	animation: fadeInRight 1.5s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
.badge-link {
	position: absolute;
	bottom: -60px;
	left: -2px;
}
.badge {
	cursor: pointer;
	transition: all 0.5s;
}
.badge:hover {
	transform: scale(1.5);
}
.about__img {
	display: block;
	max-width: 110%;
}

.about__item-content {
	flex: 1 1 auto;
}

.about__item-content-box {
	margin: 0 0 0 -60px;
	padding: 50px 40px 10px 60px;
	border-radius: 5px;
	background-color: #ffffff;
	box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.06);
}

.about__item-content-box._active {
	animation: fadeInLeft 1.5s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.about__item-title {
	color: #444444;
	font-family: "Raleway", Sans-serif;
	font-size: 16px;
	line-height: 27px;
}

.about__item-content-box p {
	padding-bottom: 10px;
}

.about__item-sertificate {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -5px;
}

.colorbox img {
	height: 60px;
	width: 87px;
	padding: 5px;
	outline: none;
}

a.colorbox {
	outline: #fff;
}

/* ------------ Почему вам нужен коуч -------------- */

.wherefore__title._active {
	animation: scale-up-center 0.8s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.wherefore__item {
	padding-bottom: 70px;
}

.wherefore__item-content {
	display: flex;
}

.wherefore__list {
	width: 50%;
	list-style: none;
	padding-right: 5%;
}

.wherefore__list-item {
	margin-bottom: 20px;
	padding-left: 30px;
	position: relative;
}

.wherefore__list-item.l1._active {
	animation: fadeInLeft 0.3s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.wherefore__list-item.l2._active {
	animation: fadeInLeft 0.6s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.wherefore__list-item.l3._active {
	animation: fadeInLeft 0.9s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.wherefore__list-item.l4._active {
	animation: fadeInLeft 1.1s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.wherefore__list-item::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	width: 25px;
	height: 25px;
	background-image: url("../images/icon/list.svg");
	background-repeat: no-repeat;
	transition: all 0.5s ease;
}

.wherefore__list-item:hover::before {
	transform: scale(1.5);
}

/* ============   FOOTER  ============= */

.footer__background-overlay {
	background: rgba(79, 73, 103, 0.85);
	width: 100%;
}

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

.footer__item-title {
	color: #fbfbfb;
}

.footer__item-title._active {
	animation: fadeInLeft 0.8s;
	transition: all ease;
}

.social__img {
	height: 25px;
	width: 27px;
}

.footer__social {
	margin-top: -10px;
	margin-bottom: 10px;
}

.footer__social._active {
	animation: scale-up-center 1.5s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.social__link {
	padding: 0 25px;
	opacity: 0.5;
	transition: all 0.5s;
}

.social__link:hover {
	opacity: 1;
	transform: scale(1.2);
}

.contact__form._active {
	animation: fadeInBottom 0.8s;
	transition: all cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.footer__bottom {
	font-family: "Montserrat", Sans-serif;
	font-size: 16px;
	line-height: 27px;
	font-weight: 500;
	border-top: 1px solid rgba(255, 255, 255, 0.247);
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
	opacity: 0.7;
	height: 80px;
}

.footer__bottom-right {
	display: flex;
	align-items: baseline;
}

.footer__bottom a {
	transition: all ease 0.5s;
}

.footer__bottom a:hover {
	color: #b3c9ff;
}

.phone {
	margin: 0 20px;
	font-size: 18px;
}

/*custom css*/
.social__link svg {
    height: 25px;
    width: 27px;
    fill: #fff;
}
/*End custom css*/

/* ======================== ADAPTIVE ======== */

@media (max-width: 1400px) {
	.container-header {
		max-width: 1240px;
		padding: 0 20px;
	}
	.header__content {
		background-position: right 30% top 0%;
	}
	.header__content-inner {
		width: 1240px;
		padding: 0 20px;
	}
	.header__title {
		padding-top: 50px;
	}
	.wave__img {
		background-position: 75% 0%;
	}
	.wave__img2 {
		background-position: right 90% top 0;
	}
	.coaching {
		padding: 100px 0 70px;
	}
}

@media (max-width: 1140px) {
	.title-section {
		font-size: 39px;
		line-height: 38px;
	}
	.header__content {
		background-position: right 30% top 10%;
	}
	.header__title {
		font-size: 54px;
		line-height: 51px;
	}
	.header__subtitle {
		font-size: 39px;
		line-height: 38px;
	}
	.header__text {
		font-size: 17px;
	}
	.button {
		padding: 11px 46px 14px;
		font-size: 17px;
	}
	.coaching {
		padding: 70px 0 50px;
	}
	.coaching__item-content-box {
		padding: 30px;
	}
	.coaching__item-title {
		margin-bottom: 15px;
	}
	.price__inner {
		width: 50%;
	}
	.about__img {
		max-width: 120%;
	}
	.about__item-content-box {
		margin: 0 0 0 -50px;
		padding: 40px 30px 10px 50px;
	}
}

@media (max-width: 1040px) {
	.services__item-content {
		min-height: 182px;
	}
	.about__img {
		max-width: 140%;
		margin-left: -120px;
	}
	.about__item-content-box {
		margin: 0 0 0 -40px;
		padding: 35px 20px 10px 40px;
	}
	.about__item-content-box p {
		line-height: 25px;
	}
}

@media (max-width: 900px) {
	.header__content {
		background-position: 80% 4%;
	}
	.header__content-inner {
		margin-left: 0px;
	}
	.header__title {
		font-size: 46px;
		line-height: 42px;
		margin-bottom: 15px;
	}
	.header__subtitle {
		font-size: 33px;
		line-height: 35px;
		margin-bottom: 15px;
	}
	.header__text {
		font-size: 16px;
		line-height: 27px;
		margin-bottom: 25px;
	}
	.button {
		padding: 10px 40px 12px;
		font-size: 16px;
	}
	.title-section {
		font-size: 28px;
		line-height: 30px;
	}
	.coaching {
		padding: 70px 0 25px;
	}
	.coaching__item-img {
		width: 70%;
		margin-right: -50px;
	}
	.coaching__item-content-box {
		padding: 25px;
	}
	.services__inner {
		width: 50%;
	}
	.about__item-img {
		flex: 0 0 40%;
		border-radius: 5px 0 0 5px;
	}
	.about__img {
		max-width: 200%;
	}
	.about__item-content-box {
		margin: 0 0 0 -20px;
		padding: 30px 20px 10px 30px;
		height: 585px;
		border-radius: 0 5px 5px 0;
	}
	.footer__bottom-right {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}
	.phone {
		margin: 0;
	}
}

/* header-menu */

@media (max-width: 767px) {
	body.lock {
		overflow: hidden;
	}
	.header {
		position: fixed;
	}
	.header:before {
		background-color: rgba(245, 246, 250, 0.97);
		height: 50px;
	}
	.header__body {
		height: 50px;
	}
	.header__logo {
		flex: 0 0 120px;
	}
	.header__burger {
		display: block;
		position: relative;
		width: 30px;
		height: 20px;
		position: relative;
		z-index: 3;
	}
	.header__burger span {
		position: absolute;
		background-color: #a2a9c2;
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		border-radius: 1px;
		top: 9px;
		transition: all 0.3s ease 0s;
	}
	.header__burger:before,
	.header__burger:after {
		content: "";
		background-color: #a2a9c2;
		position: absolute;
		width: 100%;
		height: 2px;
		border-radius: 1px;
		left: 0;
		transition: all 0.3s ease 0s;
	}
	.header__burger:before {
		top: 0;
	}
	.header__burger:after {
		bottom: 0;
	}
	.header__burger.active-m span {
		transform: scale(0);
	}
	.header__burger.active-m:before {
		transform: rotate(45deg);
		top: 9px;
	}
	.header__burger.active-m:after {
		transform: rotate(-45deg);
		bottom: 9px;
	}
	.header__menu {
		position: fixed;
		top: -100%;
		left: 0;
		width: 100%;
		height: 100%;
		overflow: auto;
		transition: all 0.3s ease 0s;
		background-color: #f5f6fa;
		padding: 70px 10px 20px 10px;
	}
	.header__menu.active-m {
		top: 0;
	}
	.header__list {
		display: block;
		border-top: 1px solid rgba(255, 255, 255, 0.7);
		margin-top: -18px;
		padding-top: 18px;
	}
	.header__list li {
		margin: 0 0 20px 0;
		text-align: center;
	}
	.header__link {
		display: block;
		font-size: 24px;
		text-transform: none;
		color: #a2a9c2;
	}
	.coaching__item {
		margin-bottom: 50px;
		flex-flow: wrap;
	}
	.coaching__item-img {
		order: 2;
		width: 100%;
		margin: 0;
	}
	.coaching__item-imges {
		border-radius: 0 0 5px 5px;
	}
	.coaching__item-content {
		width: 100%;
	}
	.coaching__item-content-box {
		margin: 0;
		border-radius: 5px 5px 0 0;
	}
	/* header-menu end */
	.container-header {
		max-width: 100%;
		margin: 0 auto;
		padding: 0 20px;
	}
	.header__content-inner {
		width: 100%;
		position: absolute;
		left: 0;
		bottom: 15%;
	}
	.header__title {
		font-size: 36px;
		line-height: 40px;
		margin-bottom: 10px;
	}
	.header__subtitle {
		font-size: 26px;
		margin-bottom: 10px;
	}
	.header__text {
		max-width: 500px;
		margin-bottom: 30px;
	}
	.wave__img {
		background-position: 90% 0%;
	}
	.title-section {
		font-size: 24px;
		line-height: 28px;
	}
	.call-to-action__item-title {
		text-align: left;
	}
	.price {
		padding: 80px 0;
	}
	.price__post-title {
		font-size: 23px;
		line-height: 37px;
		margin-top: 80px;
	}
	.about__row {
		flex-flow: wrap;
	}
	.about__item-img {
		order: 2;
		width: 100%;
		border-radius: 0 0 5px 5px;
	}
	.about__item-img {
		flex: 0 0 100%;
		border-radius: 0 0 5px 5px;
		max-height: 500px;
	}

	.about__img {
		max-width: 100%;
		margin-left: 0;
		border-radius: 0 0 5px 5px;
	}
	.about__item-content-box {
		order: 1;
		margin: 0;
		padding: 30px 30px 10px;
		border-radius: 0 5px 5px 0;
		height: 100%;
	}
}

@media (max-width: 700px) {
	.footer__bottom {
		flex-direction: column;
		height: auto;
	}
	.footer__bottom-left {
		order: 2;
		padding-bottom: 20px;
		text-align: center;
	}
	.footer__bottom-right {
		order: 1;
	}
	.footer__bottom-right a {
		padding-bottom: 20px;
	}
	.phone {
		padding-top: 30px;
	}
}

@media (max-width: 560px) {
	.services__inner {
		width: 100%;
	}
	.services__item-content {
		min-height: 130px;
	}
	.price__inner {
		width: 100%;
	}
	.wherefore__item-content {
		flex-wrap: wrap;
	}
	.wherefore__list {
		width: 100%;
		padding-right: 0;
	}
	.badge-link {
		bottom: -50px;
	}
	.badge {
		width: 80px;
		height: 80px;
	}
}

@media (max-width: 480px) {
	.title-section {
		margin-bottom: 20px;
	}
	.call-to-action__item-title {
		text-align: center;
	}
	.button__call-to-action {
		padding: 10px 40px 12px;
		font-size: 17px;
		margin: 5px 0 110px;
		position: relative;
		left: 50%;
		transform: translate(-50%, 0);
	}
	.about {
		padding: 40px 0 30px;
	}
	.about__item-img {
		max-height: 350px;
	}
	.wherefore__title {
		padding: 40px 0 0px;
	}
	.footer__item {
		margin-top: 100px;
	}
	.footer__item-title {
		padding-bottom: 20px;
	}
}

@media (max-width: 414px) {
	.header__content {
		background: url(../images/header-bg-mob.jpg) top center no-repeat;
		background-size: cover;
	}
	.header__content-inner {
		position: absolute;
		left: 0;
		bottom: 20%;
	}
	.header__title {
		font-size: 22px;
		margin-bottom: 0;
	}
	.header__subtitle {
		font-size: 18px;
		margin-bottom: 0;
	}
	.wave__img {
		background-position: 90% 0%;
	}
	.about__item-img {
		max-height: 290px;
	}
}
