/**********************************************************************/
/**********************************************************************/
.page-about {
	position: relative;
}

/**********************************************************************/
.page-about__info {
	margin-top: 50px;
	padding-left: 60px;
}
.page-about .titlearea {
	width: 480px;
	max-width: 100%;
	margin-bottom: 30px;
}
.page-about .about-descr {
	margin-bottom: auto;
}
.page-about .about-descr__short {
	width: 480px;
	max-width: 100%;
}
.page-about .about-descr__short p {
	margin-bottom: 10px;
	font-size: 16px;
	line-height: 26px;
	color: rgba(0, 0, 0, 0.8);
}
body.dark .page-about .about-descr__short p {
	color: rgba(255, 255, 255, 0.8);
}
.page-about .about-descr__full {
	display: none;
	width: 480px;
	max-width: 100%;
}
.page-about .about-descr__full p {
	margin-bottom: 10px;
	font-size: 16px;
	line-height: 24px;
	color: rgba(0, 0, 0, 0.8);
}
body.dark .page-about .about-descr__full p {
	color: rgba(255, 255, 255, 0.8);
}
.page-about .about-descr__btns {
	display: flex;
	flex-wrap: wrap;
	margin-top: 80px;
}
.page-about .about-descr__more {
	width: 185px;
	margin-right: 50px;
    font-size: 22px;
	line-height: 40px;
}
.page-about .about-descr__link {
	margin: auto auto auto 0;
	font: normal 700 21px / 40px "Oswald", sans-serif;
	color: #202020;
	transition: color 0.3s;
}
body.dark .page-about .about-descr__link {
	color: #FFFFFF;
}
.page-about .about-descr__link:hover {
	color: #007EFF !important;
}

/**********************************************************************/
.page-about__imgcol {
	position: relative;
	height: 700px;
	margin-bottom: auto;
}
.page-about__img {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 50vw;
	max-width: 700px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}




/**********************************************************************/
/*********************         RESPONSIVE         *********************/
/**********************************************************************/
@media screen and (max-width: 1024px) {
	/******************************************************************/
	/******************************************************************/
	.page-about__info {
		padding-left: 10px;
	}
	.page-about .about-descr__btns {
		flex-direction: column;
		margin-top: 40px;
	}
	.page-about .about-descr__link {
		margin: 10px auto 0 0;
	}
}


@media screen and (max-width: 767px) {
	/******************************************************************/
	/******************************************************************/
	.page-about__info {
		margin-top: 0;
		margin-bottom: 90px;
	}
	.page-about .titlearea {
		width: 100%;
		padding-top: 0;
		margin-bottom: 0;
	}
	.page-about .titlearea__btn {
		top: 50px;
	}
	.page-about .titlearea__title {
		margin-bottom: 25px;
	}
	.page-about .about-descr {
		margin-bottom: 0;
	}
	.page-about .about-descr__short,
	.page-about .about-descr__full {
		width: 100%;
	}
	.page-about .about-descr__btns {
		flex-direction: row;
		justify-content: center;
		margin-top: 50px;
	}
	.page-about .about-descr__more {
		width: initial;
		margin-right: 30px;
		font-size: 20px;
	}
	.page-about .about-descr__link {
		margin: auto 0;
		font-size: 18px;
	}

	/******************************************************************/
	.page-about__imgcol {
		order: -1;
		height: 340px;
		margin-bottom: 35px;
	}
	.page-about__img {
		left: 50%;
		transform: translateX(-50%);
		width: 100vw;
	}
}