@font-face {
	font-family: Montserrat-Black;
	src: url(../fonts/Montserrat-Black.ttf);
}
@font-face {
	font-family: Montserrat-ExtraBold;
	src: url(../fonts/Montserrat-ExtraBold.ttf);
}
@font-face {
	font-family: Montserrat-Regular;
	src: url(../fonts/Montserrat-Regular.ttf);
}
@font-face {
	font-family: Montserrat;
	src: url(../fonts/Montserrat-Medium.ttf);
}
* {
	box-sizing: border-box;
}
html, body {
	overflow-x: hidden;
}
body {
	font-family: Montserrat, sans-serif;
	font-size: 18px;
	line-height: 24px;
	background-color: #EDEDED;
}
.up {
	width: 35px;
	height: 35px;
	transform: rotate(45deg);
	border-top: 5px solid #E30615;
	border-left: 5px solid #E30615;
	opacity: 0;
	position: fixed;
	z-index: -1;
	right: 50px;
	bottom: 40px;
	cursor: pointer;
	transition: .2s;
}
@media (max-width: 600px) {
	.up {
		width: 25px;
		height: 25px;
		right: 30px;
		bottom: 15px;
	}
}
.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
	text-align: center;
	padding: 15px;
	opacity: 0;
	z-index: -1;
	transition: .2s;
}
.popup-body {
	border-radius: 6px;
	box-shadow: 0 5px 15px rgb(0 0 0 / 50%);
	background-color: #fff;
	max-width: 440px;
	padding: 30px 40px;
	position: relative;
	margin: 0 auto;
	transition: .2s;
}
.popup.active {
	opacity: 1;
	z-index: 9999;
}
.popup.active .popup-body {
	transform: translateY(80px);
}
.popup-close {
	background-color: #fff;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: -35px;
	font-size: 24px;
	line-height: 30px;
	font-weight: bold;
	padding-top: 20px;
}

.container {
	padding: 0 15px;
	max-width: 990px;
	margin: 0 auto;
	position: relative;
}
header {
	padding: 40px 0 30px;
}
h1, h2 {
	font-family: Montserrat-ExtraBold, sans-serif;
	font-size: 64px;
	line-height: 58px;
	letter-spacing: -5px;
	text-transform: uppercase;
}
h1 {
	margin: 0 0 30px;
}
h2 {
	margin: 20px 0;
}
h1 span,
h2 span {
	color: #E30615;
}
.price-popup .popup-body {
	max-width: 900px;
	max-height: 85vh;
}
.price-popup .popup-text {
	overflow: auto;
	max-height: 70vh;
}
.popup [type="text"],
.popup [type="email"],
.popup [type="submit"] {
    display: block;
    border: 2px solid #E30615;
    border-radius: 40px;
    font-family: Montserrat-ExtraBold, sans-serif;
    font-size: 18px;
    line-height: 24px;
    padding: 15px 20px;
    margin: 20px 0;
    outline: none;
    width: 100%;
}
.popup [type="submit"] {
    color: #fff;
    text-align: center;
    background-color: #E30615;
    cursor: pointer;
    text-transform: uppercase;
    margin: 20px 0 0;
}
.popup br {
    display: none;
}
.club-popup h3,
.indi-popup h3 {
	text-transform: uppercase;
	margin-bottom: 30px;
}
.club-button,
.email-button {
    background-color: #E30615;
    border: 2px solid #E30615;
    border-radius: 40px;
    font-family: Montserrat-ExtraBold, sans-serif;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    text-transform: uppercase;
    padding: 15px 20px;
    margin: 50px auto;
    color: #fff;
    transition: .2s;
    cursor: pointer;
    display: block;
}
.club-button:hover,
.email-button:hover {
    background-color: #fff;
    color: #E30615;
}
@media (max-width: 500px) {
	.club-button,
	.email-button {
		font-size: 18px;
    	line-height: 24px;
	}
}
.main-hero h1 {
	letter-spacing: -3px;
}
.hero-slogan {
	font-size: 28px;
	line-height: 36px;
	/*font-weight: bold;*/
	max-width: 650px;
	height: 220px;
	padding-top: 25px;
}
.main-hero-pic {
	position: absolute;
	right: -150px;
	top: -100px;
}
main.main-hero {
	display: block;
	position: relative;
}
main.main-hero:before {
	content: '';
	display: block;
	border-radius: 50%;
	background-color: #fff;
	position: absolute;
	z-index: -1;
    width: 1000px;
    height: 1000px;
    left: -180px;
    top: -380px;
}
.main-hero-btn-wrap {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	padding-top: 30px;
}
.main-hero-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 1px solid #E30615;
	border-radius: 30px;
	font-weight: bold;
	font-size: 24px;
	line-height: 30px;
	width: 100%;
	padding: 2px 10px;
	transition: .3s;
}
.main-hero-btn:hover {
	background-color: #E30615;
	color: #fff;
}
.main-hero-btn:first-child,
.main-hero-btn:nth-child(2) {
	max-width: 270px;
}
.main-hero-btn:last-child {
	max-width: 380px;
}

.podhod {
	padding-top: 220px;
}
.main-hero-text-wrap {
	display: flex;
	justify-content: space-between;
	padding: 30px 0 50px;
	border-bottom: 1px solid #E30615;
	position: relative;
}
/*.main-hero-text-wrap > p {
	width: 49%;
	margin: 0;
}*/
.main-hero-text-big {
	width: 50%;
	flex-shrink: 0;
	font-size: 28px;
	line-height: 34px;
	margin: 13px 25px 0 0;
}
.hero-bold {
	font-size: 30px;
	line-height: 38px;
	font-weight: bold;
	/*padding-top: 15px;*/
	margin-bottom: 20px;
}
.podhod .hero-author-quote p {
	text-align: right;
	font-weight: bold;
}
@media (max-width: 1000px) {
	.main-hero-pic {
		right: -200px;
	}
	.main-hero-btn-wrap {
		flex-wrap: wrap;
		justify-content: center;
	}
	.main-hero-btn br {
		display: none;
	}
	.main-hero-btn:first-child,
	.main-hero-btn:nth-child(2) {
		height: 65px;
	}
}
@media (max-width: 950px) {
	.main-hero-pic {
		right: -240px;
	}
}
@media (max-width: 900px) {
	.main-hero-pic {
		right: -280px;
	}
	.podhod {
		padding-top: 30px;
	}
	.main-hero-text-wrap {
		padding: 10px 0 30px;
	}
}
@media (max-width: 850px) {
	.hero-slogan {
		margin: 50px auto;
		text-align: center;
		height: auto;
	}
	.main-hero-pic {
		position: static;
		display: block;
		max-width: 100%;
		margin: 0 auto;
	}
}
@media (max-width: 800px) {
	.main-hero-text-wrap {
		flex-wrap: wrap;
	}
	.main-hero-text-wrap .main-hero-text-big {
		width: 100%;
		margin: 15px 0;
	}
}
@media (max-width: 600px) {
	.hero-subtitle {
		text-align: center;
		margin: -15px 0 50px;
	}
	.hero-slogan {
		margin: 20px auto;
		font-size: 24px;
		line-height: 32px;
		padding-top: 0;
	}
	.main-hero-btn:first-child,
	.main-hero-btn:nth-child(2) {
		max-width: 380px;
	}
	.main-hero-text-big,
	.hero-bold {
	    font-size: 26px;
	    line-height: 32px;
	}
	.podhod .hero-author-quote {
		margin-top: 50px;
	}
}

.hero-for {
	padding-top: 70px;
	position: relative;
}
.hero-for-wrap {
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}
.hero-for-item {
	width: 23%;
}
.hero-for-item h4 {
	margin-bottom: 15px;
	border: 1px solid #E30615;
	border-radius: 30px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	padding: 15px;
	transition: .3s;
}
.hero-for-item h4:hover {
	background-color: #E30615;
	color: #fff;
}
.hero-for-pic {
	position: absolute;
	right: -120px;
	bottom: -420px;
}
@media (max-width: 900px) {
	.hero-for-wrap {
		flex-wrap: wrap;
	}
	.hero-for-item {
		width: 48%;
	}
	.hero-for-pic {
		position: static;
		display: block;
		max-width: 100%;
		margin: 30px auto;
	}
}
@media (max-width: 500px) {
	.hero-for-item {
		width: 100%;
	}
}

.hero-author {
	padding-top: 90px;
}
.hero-author-wrap {
	display: flex;
	align-items: center;
}
.hero-author-text {
	position: relative;
}
.hero-author-text h4 {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 20px;
}
.hero-author-pic {
	margin-right: 30px;
}
.hero-author-quote {
	position: relative;
	font-size: 24px;
	line-height: 30px;
	margin: 60px 0;
}
.hero-author-quote:before {
	content: url('../img/q-top.png');
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
}
.hero-author-quote:after {
	content: url('../img/q-bottom.png');
	position: absolute;
	z-index: -1;
	bottom: 0;
	right: 0;
}
@media (max-width: 800px) {
	.hero-author {
		padding-top: 40px;
	}
	.hero-author-wrap {
		flex-wrap: wrap;
	}
	.hero-author-pic {
		width: 100%;
		margin: 0;
	}
	.hero-author-pic img {
		display: block;
		margin: 20px auto;
		max-width: 100%;
	}
}
@media (max-width: 600px) {
	.hero-author-quote {
		margin-top: 0;
	}
}

.price {
	padding: 50px 0 40px;
}
.price-wrap {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.price-item {
	width: 48%;
	display: flex;
	flex-direction: column;
}
.price-item h3 {
	margin-bottom: 0;
	border: 1px solid #E30615;
	border-radius: 30px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	padding: 15px;
	transition: .3s;
}
.price-item h3:hover {
	background-color: #E30615;
	color: #fff;
}
.money {
	font-size: 24px;
	line-height: 30px;
	text-align: center;
	margin-top: auto;
}
.price-detail {
	color: #000;
	display: block;
	text-align: center;
}
.price-detail:hover {
	text-decoration: none;
}
.hidden-text {
	display: none;
}
@media (max-width: 600px) {
	.price-item {
		width: 100%;
		margin-bottom: 50px;
	}
}

.hero-result {
	padding: 50px 0 10px;
	position: relative;
}
.hero-result:before {
    content: '';
    display: block;
    width: 660px;
    height: 660px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    z-index: -1;
    left: -400px;
    top: -150px;
}
.hero-result-text {
	font-size: 30px;
	line-height: 38px;
	font-weight: bold;
	padding-top: 10px;
}
.hero-result-item {
	display: inline-block;
	margin: 0 15px 15px 0;
	padding: 15px;
	border-radius: 30px;
	border: 1px solid #E30615;
	transition: .3s;
}
.hero-result-item:hover {
	background-color: #E30615;
	color: #fff;
}
@media (max-width: 900px) {
	.hero-result-text br {
		display: none;
	}
}
@media (max-width: 600px) {
	.hero-result-text {
		font-size: 24px;
		line-height: 30px;
	}
}
@media (max-width: 500px) {
	.hero-result-item {
		width: 100%;
		text-align: center;
	}
}

.hero-feedback {
	padding: 30px 0;
}
.hero-feedback h2 {
	margin-bottom: 50px;
}
.hero-feedback-slider .slick-prev,
.hero-feedback-slider .slick-next {
	top: auto;
	bottom: -25px;
}
.hero-feedback-slider .slick-prev {
	left: 35%;
}
.hero-feedback-slider .slick-next {
	right: 35%;
}
.hero-feedback-slider .slick-prev:before,
.hero-feedback-slider .slick-next:before {
    color: #E30615;
    font-weight: bold;
    font-size: 50px;
}
.hero-feedback-slider .slick-prev:before {
	content: '<';
}
.hero-feedback-slider .slick-next:before {
	content: '>';
}
.hero-feedback-head {
	display: flex;
	align-items: center;
	padding: 0 0 20px;
}
.hero-feedback-photo {
	margin-right: 20px;
}
.hero-feedback-name h4 {
	margin: 0 0 10px 0;
	font-size: 24px;
	line-height: 30px;
}
.hero-feedback-text {
	font-size: 20px;
	line-height: 28px;
	position: relative;
	margin-bottom: 20px;
}
.hero-feedback-text:before {
	content: url('../img/q-top.png');
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
}
.hero-feedback-text:after {
	content: url('../img/q-bottom.png');
	position: absolute;
	z-index: -1;
	bottom: 0;
	right: 0;
}
@media (max-width: 650px) {
	.hero-feedback-name br {
		display: none;
	}
}
@media (max-width: 500px) {
	.hero-feedback-slider .slick-prev {
		left: 15%;
	}
	.hero-feedback-slider .slick-next {
		right: 15%;
	}
	.hero-feedback-head {
		flex-wrap: wrap;
	}
	.hero-feedback-photo {
		width: 100%;
		margin: 0;
	}
	.hero-feedback-photo img {
		display: block;
		margin: 0 auto 20px;
	}
	.hero-feedback-name {
		width: 100%;
		text-align: center;
	}
}

.hero-club,
.hero-consult {
	padding: 30px 0;
}

footer {
	background-color: #000;
	padding: 50px 0 90px;
	color: #fff;
	position: relative;
	margin-top: 100px;
}
footer a {
	color: #E30615;
	text-decoration: none;
}
footer a:hover {
	text-decoration: underline
}
.foot-logo {
	display: block;
	margin-bottom: 25px;
}
.foot-text {
	display: flex;
	justify-content: space-between;
}
.foot-text p {
	margin-bottom: 0;
}
@media (max-width: 1000px) {
	.foot-logo {
		margin: 0 auto 25px;
	}
	.foot-text {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}
@media (max-width: 600px) {
	h1, h2 {
		font-size: 40px;
		line-height: 40px;
		text-align: center;
		letter-spacing: -3px;
	}
	.popup-body {
		padding: 15px 25px;
	}
	header {
		padding: 20px 0;
	}
	footer {
		margin-top: 30px;
		padding: 50px 0 70px;
	}
}

.steps {
	font-size: 14px;
	line-height: 18px;
	max-width: 580px;
	margin: -20px auto 30px;
}