@charset "utf-8";
/*===== ОБО МНЕ =====*/

/*
d03370
*/


body{
	background: #fff;
}

/*===== WRAPPER =====*/
body > .wrapper{	
	position: relative;
	width: 100%;
	height: 100%;
}
body .cont_wrap{
	width: 100%;
	
	padding: 150px 50px 50px 50px;
	box-sizing: border-box;
}
@media screen and (max-width: 1200px){
	body .cont_wrap{		
		padding: 150px 25px 25px 25px;
	}
}
@media screen and (max-width: 990px){
	body .cont_wrap{		
		padding: 80px 15px 15px 15px;
	}
}




/*==== ОБЩЕЕ  ====*/

/* ЗАГОЛОВОК */
.header{
	margin-bottom: 30px;
	
	text-align: center;
	
	color: #333;
	font-family: Roboto;
	font-style: normal;
	font-weight: 900;
	font-size: 40px;
	line-height: 60px;
	text-transform: uppercase;
}










/*===== ЛОГОТИП И ШАПКА =====*/
.topper{
	border-bottom: 1px solid rgba(204, 204, 204, 0.2);
}
.topper .logo{
	background: url('/alex/images/logo/soyl_logo_black.png');
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center center;
}
.menu > tbody > tr > td .wrap{
	color: #000;
}
.menu > tbody > tr > td .wrap:hover, 
.menu > tbody > tr > td .wrap.selected{
	color: #fff;
}




/*===== ТАБЛИЦА РАЗМЕТКИ =====*/
.razm{
	width: 95%;
	margin: 0px auto;
}
@media screen and (max-width: 1200px){
	.razm{
		width: 100%;
		margin: 0px auto;
	}
}
.razm > tbody > tr > td{
	border: 0px solid blue;
	
	vertical-align: top;
}
.razm > tbody > tr > td.right{
	width: 1px;
	
	padding-left: 35px;
}
@media screen and (max-width: 1000px){
	.razm > tbody > tr > td.right{
		padding-left: 0px;
		
		text-align: center;
	}
	.razm > tbody > tr > td.right .right_col{
		display: inline-block;
	}
}



/*===== ПОСТЫ БЛОГА =====*/

/* ТАБЛИЦА ПОСТА */
.post_w{	
	border-radius: 15px;
	
	padding: 35px;
	box-sizing: border-box;
	
	margin-bottom: 35px;
	
	background-color: #f3f0f6;
}
@media screen and (max-width: 440px){
	.post_w{		
		padding: 15px;
	}
}
.post_tbl > tbody > tr > td{
	border: 0px solid #aaa;
}
.post_tbl > tbody > tr > td.img{
	width: 35%;
	
	vertical-align: top;
	cursor: pointer;
}
@media screen and (max-width: 770px){
	.post_tbl > tbody > tr > td.img{
		width: auto;
		
		text-align: center;
	}
}
.post_tbl > tbody > tr > td.img > .wrap{	
	border-radius: 15px;
	
	box-sizing: border-box;
	
	position: relative;
	
	overflow: hidden;
}
.post_tbl > tbody > tr > td.img .cover{
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	
	position: absolute;
	z-index: 1;
	left: 0px;
	top: 0px;
	
	opacity: 0;
	
	background: #d03370;
	
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.post_tbl > tbody > tr > td.img:hover .cover{
	opacity: 0.8;
}
.post_tbl img.img{	
	border-radius: 15px;
	
	width: 100%;
	height: auto;
	box-sizing: border-box;
		
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
.post_tbl > tbody > tr > td.img:hover img.img{
	transform: scale(1.1, 1.1);
}
.post_tbl > tbody > tr > td.text{
	padding-left: 25px;
}
@media screen and (max-width: 770px){
	.post_tbl > tbody > tr > td.text{
		padding-left: 5px;
		padding-top: 10px;
		
		text-align: center;
	}
}
.post_tbl .post_header{
	margin-bottom: 15px;
	
	color: #333;
	font-family: Roboto;
	font-style: normal;
	font-weight: 900;
	font-size: 22px;
	cursor: pointer;
	text-align: left;
	text-transform: uppercase;
	
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
@media screen and (max-width: 770px){
	.post_tbl .post_header{
		text-align: center;
	}
}
.post_tbl .post_header:hover{
	color: #d03370;
}
.post_tbl .desc{
	margin-bottom: 18px;
	
	font-family: Roboto;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 27px;
}
@media screen and (max-width: 770px){
	.post_tbl .desc{
		text-align: center;
	}
}
.post_tbl .dots{
	display: inline-block;
	
	cursor: pointer;
}

/* КНОПКА ПОДРОБНЕЕ */
.post_tbl .read_button{
	border-radius: 5px;
	
	display: inline-block;
	
	padding: 12px 25px 9px 25px;
	
	background: #d03370;
	box-shadow: 0 3px 0 #B50046;
	
	color: #fff;
	cursor: pointer;
	font-family: ProximaNovaRegular;
	font-size: 16px;
	font-weight: 200;
	
	text-transform: uppercase;
	
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.post_tbl  .read_button:hover{
	background: #E63C7E;
	box-shadow: 0 3px 0 #D10051;
}






































