.b-main {
	padding-bottom: 0;
}


/*********************************************/
/***** Header BEGIN *****/
/*********************************************/
.b-header {
    background-color: #FFFFFF;
}
.b-header__line {
    padding: 16px 0;
	color: #A6A6A6;
}
.b-header.sticky .b-header__line {
    display: none;
}
@media(max-width:481px){
    .b-header__line {
        display: none;
	}
}
.b-header__main {
    position: relative;
    width: 100%;
    background-color: #FFFFFF;
	padding: 0;
    z-index: 1;
    -webkit-transition: all 1s ease-in 0s;
    -moz-transition: all 1s ease-in 0s;
    -ms-transition: all 1s ease-in 0s;
    -o-transition: all 1s ease-in 0s;
    transition: all 1s ease-in 0s;
}
.b-header.sticky .b-header__main {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}
@media(max-width:481px){
    .b-header__main, .b-header.sticky .b-header__main {
        position: fixed !important;
        top: 0;
        left: 0;
        z-index: 1;
    }
}

.b-header__nav {
    border-top: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
    padding: 16px 0;
}
.b-header.sticky .b-header__nav {
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
}



/****** b-logo BEGIN ******/
.b-logo, .b-logo__big {
	font-size: 0;
}
.b-logo__big {
    text-align: center;
}
.b-logo {
    display: none;
}
@media(max-width:481px){
    .b-logo {
        display: block;
    }
}
.b-header.sticky .b-header__main .b-logo {
    position: absolute;
    top: 8px;
    display: block;
    max-width: 200px;
    z-index: 2;
    text-align: left;
}
/* S */
@media(max-width:768px){
	.b-header.sticky .b-header__main .b-logo {
        top: 16px;
		text-align: left;
	}
}
.b-logo__link {
    display: block;
    cursor: pointer;
}
/****** END b-logo ******/



/****** toggle-menu BEGIN ******/
.b-toggle-menu {
    display: none;
	cursor: pointer;
}
@media(max-width:768px){
	.b-toggle-menu{
		display: inline-block;
		text-align: right;
	}
}
/****** END toggle-menu ******/

/*********************************************/
/***** END Header *****/
/*********************************************/





/*********************************************/
/***** Menu BEGIN *****/
/*********************************************/
.b-menu {
    position: relative;
	font-size: 0;
	text-align: center;
}
/* L */
@media(max-width:1200px){
	.b-menu {
		margin-top: 12px;
		text-align: center;
	}
}
@media(max-width:768px){
    .b-menu {
		margin-top: 12px;
		text-align: left;
	}
}
/* S */
@media(max-width:768px){
	.b-menu.js-toggle{
		height: 0;
		overflow: hidden;
        margin-top: 0;
	}
}

.b-menu__item {
	position: relative;
	display: inline-block;
	margin: 0 16px;
	line-height: 1;
    vertical-align: top;
    font-size: 16px;
    font-family: "Times New Roman";
    text-align: center;
    text-transform: uppercase;
}
.b-menu__item:first-child{
}
.b-menu__item:hover .b-menu__submenu{
	display: block;
}
.b-menu__item_rtl .b-menu__submenu{
	right: 0;
	left: auto;
}
.b-menu__item_rtl .b-submenu__submenu{
	right: 100%;
	left: auto;
}
/* L */
@media(max-width:1200px){
	.b-menu__item {
		margin-left: 15px;
		margin-right: 15px;
	}
}
/* S */
@media(max-width:768px){
	.b-menu__item {
		display: block;
		margin: 0;
		border-top: 1px solid #E4E4E4;
        text-align: left;
	}
	.b-menu__item_arrow:after{
		content: '\f105';
		position: absolute;
		right: 5px;
		top: 15px;
		font: normal normal normal 14px/1 FontAwesome;
		line-height: 1;
		color: #999;
	}
	.b-menu__item_arrow:hover:after{
		content: '\f107';
	}
}

.b-header.sticky .b-header__main .b-menu__item {
    margin: 0 8px;
}

/***** Social Item *****/
.b-menu__item-social {
    position: absolute;
    top: 0;
    right: 26px;
    margin: 0;
}
/***** Search Item *****/
.b-menu__item-search {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
}
@media(max-width:768px){
    .b-menu__item-social, .b-menu__item-search {
		display: none;
	}
}


.b-menu__link{
	position: relative;
	display: inline-block;
	vertical-align: top;
	color: #000;
    text-decoration: none;
    -webkit-transition: all 1s ease-in 0s;
    -moz-transition: all 1s ease-in 0s;
    -ms-transition: all 1s ease-in 0s;
    -o-transition: all 1s ease-in 0s;
    transition: all 1s ease-in 0s;
}
.b-menu__link:hover{
	color: #AD6C60;
}
.b-menu__link:after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #AD6C60;
    margin-top: 2px;
    -webkit-transition: all 1s ease-in 0s;
    -moz-transition: all 1s ease-in 0s;
    -ms-transition: all 1s ease-in 0s;
    -o-transition: all 1s ease-in 0s;
    transition: all 1s ease-in 0s;
}
.b-menu__link:hover:after,
.b-menu__link:focus:after {
    width: 100%;
}
@media(max-width:768px){
    .b-menu__link:before, .b-menu__link:after, .b-menu__link:hover:after, .b-menu__link:focus:after {
    	display: none;
	}
}
.b-menu__item_active .b-menu__link{
	color: #AD6C60;
}
/* S */
@media(max-width:768px){
	.b-menu__link{
		display: block;
		padding: 12px 0;
	}
	.b-menu__item_active .b-menu__link:after{
		display: none;
	}
}
.b-menu__item:first-child .b-menu__link {
    width: 16px;
    height: 16px;
    background: url("/uploads/images/icon/home.png") no-repeat;
    text-indent: -99999px;
}


.b-menu__submenu {
	display: none;
	position: absolute;
	z-index: 10;
	top: 13px;
	left: 0;
	padding-top: 7px;
}
/* S */
@media(max-width:768px){
	.b-menu__submenu{
		position: static;
		padding: 0;
	}
}



/***** Submenu BEGIN *****/
.b-submenu{
	background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
}
/* S */
@media(max-width:768px){
	.b-submenu{
		border: 0;
	}
}


.b-submenu__item{
	position: relative;
}
.b-submenu__item:hover > .b-submenu__submenu{
	display: block;
}
.b-submenu__item_arrow:after{
	content: '\f105';
	position: absolute;
	right: 5px;
	top: 8px;
	line-height: 1;
	color: #999;
    font: normal normal normal 14px/1 FontAwesome;
}
/* S */
@media(max-width:768px){
	.b-submenu__item{
		padding-left: 30px;
	}
	.b-submenu__item_arrow:hover:after{
		content: '\f107';
	}
}


.b-submenu__link{
	display: block;
	padding: 10px 20px;
	white-space: nowrap;
	color: #000;
    text-decoration: none;
}

.b-submenu__link:hover{
	background-color: #F4F4F4;
}
@media(max-width:768px){
	.b-submenu__link{
		padding: 10px 0;
		white-space: normal;
	}
	.b-submenu__link:hover{
		background: none;
	}
}


.b-submenu__submenu{
	display: none;
	position: absolute;
	top: -1px;
	left: 100%;
}
@media(max-width:768px){
	.b-submenu__submenu{
		position: static;
	}
}
/*********************************************/
/***** END Menu *****/
/*********************************************/





/*********************************************/
/***** Banner BEGIN *****/
/*********************************************/
.b-banner-main {
    position: relative;
    margin: 0 auto;
    padding-top: 40px;
}
@media(max-width:768px){
    .b-banner-main {
        display: none;
    }
}
.b-banner-main__item {
	position: relative;
}
/* Only one banner is visible while js is loading */
.b-banner-main.no-js .b-banner-main__item:not(:first-child) {
	display: none;
}
.b-banner-main__image {
	margin: 0;
}
.b-banner-main__info {
	position: absolute;
	top: 0;
	height: 100%;
    text-align: center;
}
.b-banner-main__info-helper {
	display: block/*table*/;
    width: 55%/*45%*/;
	height: auto/*100%*/;
    border: 1px solid #FFFFFF;
    margin: 0 auto;
    margin-top: 2.5%;
    padding: 1em;
    vertical-align: middle;
    text-align: center;
}
.b-banner-main__info-helper-2 {
    display: inline-block/*table-cell*/;
    vertical-align: middle;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 1em;
}
.b-banner-main__title {
	margin-bottom: 0.5em;
    line-height: 1;
	color: #353535;
    font-size: 38px;
}
/* S */
@media(max-width:768px) {
	.b-banner-main__title{
		font-size: 35px;
	}
}
/* XS */
@media(max-width:480px) {
	.b-banner-main__title{
		font-size: 20px;
	}
}
.b-banner-main__text {
	margin-bottom: 1.5em/*25px*/;
	color: #666666;
}
/* M */
@media(max-width:960px) {
	.b-banner-main__text{
		display: none;
	}
}
.b-banner-main__button {
    display: inline-block;
    border: 1px solid #454545/*F5F5F5*/;
    border-radius: 2px;
    padding: 12px 30px;
    color: #454545;
    font-size: 14px;
    text-decoration: none;
    -webkit-transition: all 1s ease-in 0s;
    -moz-transition: all 1s ease-in 0s;
    -ms-transition: all 1s ease-in 0s;
    -o-transition: all 1s ease-in 0s;
    transition: all 1s ease-in 0s;
}
/* L */
@media(max-width:768px) {
	.b-banner-main__button{
		/* Link on whole image instead a single button */
		position: absolute;
		z-index: 100;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		font-size: 0;
		background-color: transparent;
		background-color: rgba(0,0,0,0);
	}
	.b-banner-main__button:hover {
		background-color: transparent;
		background-color: rgba(0,0,0,0);
	}
}
.b-banner-main__prev,
.b-banner-main__next {
	position: absolute;
	top: 45%;
	display: block;
}
.b-banner-main__prev {
	left: 5%;
    border-radius: 0 2px 2px 0;
}
.b-banner-main__next {
	right: 5%;
    border-radius: 2px 0 0 2px;
}
.b-banner-main .slick-dots {
	position: absolute;
	bottom: 5%;
	display: block;
	width: 100%;
	text-align: center;
}
.b-banner-main .slick-dots li {
	position: relative;
	display: inline-block;
	margin: 0 3px;
}
.b-banner-main .slick-dots button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 12px;
	cursor: pointer;
	color: transparent;
	border: 0;
	background-color: #FFFFFF;
	background-color: rgba(255, 255, 255, 0.3);
}
.b-banner-main .slick-dots .slick-active button {
	background-color: #FFFFFF;
}
/*********************************************/
/***** END Banner *****/
/*********************************************/





/*********************************************/
/***** Dashboard BEGIN *****/
/*********************************************/
.b-dashboard {
    position: relative;
    background-color: #F5F5F5;
    border: 1px solid #E4E4E4;
    margin: 0 auto;
}
.b-dashboard__item{
    position: relative;
}
/* Only one banner is visible while js is loading */
.b-dashboard.no-js .b-dashboard__item:not(:first-child) {
    display: none;
}
.b-dashboard__image {
    max-width: 40%;
    max-height: 40%;
    margin: 0;
}

.b-dashboard__item:nth-child(5n-4) .b-dashboard__image {
    float: left;
}
.b-dashboard__item:nth-child(5n-3) .b-dashboard__image {
    float: right;
}
.b-dashboard__item:nth-child(5n-2) .b-dashboard__image {
    float: left;
}
.b-dashboard__item:nth-child(5n-1) .b-dashboard__image {
	float: right;
}
.b-dashboard__item:nth-child(5n) .b-dashboard__image {
	float: left;
}

.b-dashboard__item:nth-child(5n-4) .b-dashboard__info-helper {
    margin: 0 0 0 42.5%;
    padding: 0 0 0 40px;
}
.b-dashboard__item:nth-child(5n-3) .b-dashboard__info-helper {
    margin: 0 42.5% 0 0;
    padding: 0 0 0 60px;
}
.b-dashboard__item:nth-child(5n-2) .b-dashboard__info-helper {
    margin: 0 0 0 42.5%;
    padding: 0 0 0 40px;
}
.b-dashboard__item:nth-child(5n-1) .b-dashboard__info-helper {
    margin: 0 42.5% 0 0;
    padding: 0 0 0 60px;
}
.b-dashboard__item:nth-child(5n) .b-dashboard__info-helper {
    margin: 0 0 0 42.5%;
    padding: 0 0 0 40px;
}

.b-dashboard__info {
	position: absolute;
	top: 0;
	height: 100%;
    text-align: center;
}
.b-dashboard__info-helper {
	display: table;
    width: 50%;
	height: 100%;
    text-align: left;
}
.b-dashboard__info-helper-2 {
	display: table-cell;
	vertical-align: middle
}
.b-dashboard__title {
	margin-bottom: 20px;
    line-height: 1;
	color: #353535;
    font-size: 38px;
}

.b-dashboard__ico {
	float: left;
	margin-right: 20px;
}
.b-dashboard__info {
	overflow: hidden;
}
.b-dashboard__title {
	margin-bottom: 20px;
    line-height: 1;
	color: #353535;
    font-size: 38px;
}
.b-dashboard__link {
	color: #000;
	text-decoration: underline;
}
.b-dashboard_ico-color:nth-child(3n-2) .b-dashboard__ico{
	color: #3E9BD8;
}
.b-dashboard_ico-color:nth-child(3n-1) .b-dashboard__ico{
	color: #6AB521;
}
.b-dashboard_ico-color:nth-child(3n) .b-dashboard__ico{
	color: #F27A21;
}

.b-dashboard__prev,
.b-dashboard__next {
    position: absolute;
	top: 45%;
	display: block;
}
.b-dashboard__prev {
	left: -1px;
    border-radius: 0 2px 2px 0;
    border-top: 1px solid #E4E4E4;
    border-right: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
    border-left: 1px solid #FFFFFF;
}
.b-dashboard__next {
	right: -1px;
    border-radius: 2px 0 0 2px;
    border-top: 1px solid #E4E4E4;
    border-right: 1px solid #FFFFFF;
    border-bottom: 1px solid #E4E4E4;
    border-left: 1px solid #E4E4E4;
}

.b-dashboard .slick-dots {
    position: absolute;
	bottom: 5%;
	display: block;
	width: 100%;
	text-align: center;
}
.b-dashboard .slick-dots li {
	position: relative;
	display: inline-block;
	margin: 0 3px;
}
.b-dashboard .slick-dots button {
	display: block;
	width: 12px;
	height: 12px;
	background-color: #454545;
    background-color: rgba(69, 69, 69, 0.3);
	border: 1px solid #FFFFFF;
	border-radius: 12px;
    cursor: pointer;
    line-height: 0;
    font-size: 0;
    color: transparent;
}
.b-dashboard .slick-dots .slick-active button {
	background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
}
/*********************************************/
/***** END Dashboard *****/
/*********************************************/





/*********************************************/
/***** Hometext BEGIN *****/
/*********************************************/
.b-hometext {
}
.b-hometext__title {
    margin-bottom: 16px;
    line-height: 1;
    color: #AD6C60;
    font-size: 32px;
    font-weight: normal;
}
.b-hometext__btn {
	margin-top: 25px;
}

.b-hometext__image {
    display: block;
    max-width: 70%;
    margin: 0 0 0 30%;
    text-align: right;
}
.b-hometext__image-img {
    display: block;
    -webkit-transition: all 1s ease-in 0s;
    -moz-transition: all 1s ease-in 0s;
    -ms-transition: all 1s ease-in 0s;
    -o-transition: all 1s ease-in 0s;
    transition: all 1s ease-in 0s;
    
    -webkit-transform: rotateY(-180deg); /* Для Safari, Chrome, iOS */
    -moz-transform: rotateY(-180deg); /* Для Firefox */
    -ms-transform: rotateY(-180deg); /* Для IE */
    -o-transform: rotateY(-180deg); /* Для Opera */
    transform: rotateY(-180deg);
}
.b-hometext__image-img:hover {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
}
/* S */
@media(max-width:768px) {
	.b-hometext__image {
		display: none;
	}
}
/*********************************************/
/***** END Hometext *****/
/*********************************************/





/*********************************************/
/***** Gallery widget BEGIN *****/
/*********************************************/
.b-gallery-w {
    position: relative;
    text-align: center;
}
.b-gallery-w:after {
	content: "";
	display: table;
	clear: both;
}
.b-gallery-w__item {
	position: relative;
	/* Styles while js loading */
	/*float: left;
	width: 20%;*/
    width: 100%;
    max-width: 264px;
    height: auto;
    max-height: 198px;
    overflow: hidden;
}
@media(max-width:800px){
    .b-gallery-w__item {
        max-width: 100%;
        max-height: 173px;
    }
}
.b-gallery-w__item:hover .b-gallery-w__zoom {
	display: block;
    visibility: visible !important;
    opacity: 1;
}
.b-gallery-w__zoom {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
	left: 10px;
	display: block;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.8);
    visibility: hidden;
    opacity: 0;
	color: #FFFFFF;
    -webkit-transition: all 1s ease-in 0s;
    -moz-transition: all 1s ease-in 0s;
    -ms-transition: all 1s ease-in 0s;
    -o-transition: all 1s ease-in 0s;
    transition: all 1s ease-in 0s;
}
.b-gallery-w__zoom-wrap-outer {
	display: table;
	height: 100%;
	width: 100%;
}
.b-gallery-w__zoom-wrap-inner {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
.b-gallery-w__image {
	display: block;
}

.b-gallery-w__prev,
.b-gallery-w__next {
    position: absolute;
	top: -45px;
	display: block;
    width: 35px;
    height: 35px;
    padding: 2px 0
}
.b-gallery-w__prev {
	left: 47%;
}
.b-gallery-w__next {
	right: 47%;
}
@media(max-width:800px){
    .b-gallery-w__next {
        right: 35px;
    }
}
@media(max-width:800px){
    .b-gallery-w__prev {
        right: 80px;
        left: auto;
    }
}

.instagram {
    background-color: #FFFFFF;
    padding: 4px 2em;
    text-align: left;
}
/*********************************************/
/***** END Gallery widget *****/
/*********************************************/





/*********************************************/
/***** Blog widget BEGIN *****/
/*********************************************/
.b-blog-w {
}
.b-blog-w__item {
    /* border-top: 1px solid #FF2744; */
    /* border-bottom: 1px solid #FF2744; */
    margin-bottom: 50px;
}
.b-blog-w__item-version2 {
    background: url("/uploads/images/bg/corner1.png") no-repeat top right, 
                    url("/uploads/images/bg/corner2.png") no-repeat bottom left;
    margin-bottom: 50px;
    padding: 1em;
}
.b-blog-w__image {
    display: block;
    width: 100%;
    /*float: left;
    max-width: 50%;
    border-left: 2px solid #AD6C60;*/
    height: 100%;
    overflow: hidden;
    margin: 0 1em 0 0;
    padding: 0;
}
.b-blog-w__image-img {
    display: block;
}
.b-blog-w__info {
    display: block;
    margin-bottom: 0.5em;
    padding-top: 1em;
    color: #908E8E;
    font-size: 0.9em;
}
.b-blog-w__category {
    display: inline-block;
    color: #1779B9;
}
.b-blog-w__category:hover {
    color: #AD6C60;
}
.b-blog-w__date {
    display: inline-block;
}
.b-blog-w_icon {
    display: inline-block;
}
.b-blog-w_showed {
    display: inline-block;
}
.b-blog-w_link {
    display: inline-block;
    color: #AD6C60;
    text-decoration: none;
}

.b-blog-w__title {
    margin-bottom: 5px;
	line-height: 1.25;
    font-size: 1.5em;
}
.b-blog-w__title-link {
    color: #AD6C60;
    text-decoration: none;
    -webkit-transition: all 1s ease-in 0s;
    -moz-transition: all 1s ease-in 0s;
    -ms-transition: all 1s ease-in 0s;
    -o-transition: all 1s ease-in 0s;
    transition: all 1s ease-in 0s;
}
.b-blog-w__title-link:hover {
    color: #1779B9;
}
/*********************************************/
/***** END Blog widget *****/
/*********************************************/





/*********************************************/
/***** Blog Main BEGIN *****/
/*********************************************/
.b-blog-main-w {
    position: relative;
    margin: 0 auto;
}
.b-blog-main-w__item {
    position: relative;
    border: 5px solid #FFFFFF;
    margin: 0 0 50px 0;
}
.b-blog-main-w__image{
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 0;
}
.b-blog-main-w__image img{
    display: block;
}
.b-blog-main-w__info {
    display: block;
    margin-bottom: 0.5em;
    padding-top: 1em;
    color: #908E8E;
    font-size: 0.9em;
}
.b-blog-main-w__category {
    display: inline-block;
    color: #1779B9;
}
.b-blog-main-w__category:hover {
    color: #AD6C60;
}
.b-blog-main-w__date {
    display: inline-block;
}
.b-blog-main-w_icon {
    display: inline-block;
}
.b-blog-main-w_showed {
    display: inline-block;
}
.b-blog-main-w_link {
    display: inline-block;
    color: #AD6C60;
    text-decoration: none;
}
.b-blog-main-w__title {
    display: inline-block;
    margin-bottom: 5px;
	line-height: 1.3;
    font-size: 1.3em;
}
.b-blog-main-w__title-link {
    color: #AD6C60;
    font-weight: normal;
    text-decoration: none;
    -webkit-transition: all 1s ease-in-out 0s;
    -moz-transition: all 1s ease-in-out 0s;
    -ms-transition: all 1s ease-in-out 0s;
    -o-transition: all 1s ease-in-out 0s;
    transition: all 1s ease-in-out 0s;
}
.b-blog-main-w__title-link:hover {
    color: #1779B9;
}

.b-blog-main-w__prev,
.b-blog-main-w__next{
    position: absolute;
    top: 30%;
    display: block;
}
.b-blog-main-w__prev{
	left: 5px;
}
.b-blog-main-w__next{
	right: 5px;
}

.b-blog-main-w .slick-dots{
    position: absolute;
	bottom: 5%;
	display: block;
	width: 100%;
	text-align: center;
}
.b-blog-main-w .slick-dots li{
	position: relative;
	display: inline-block;
	margin: 0 3px;
}
.b-blog-main-w .slick-dots button{
	font-size: 0;
	line-height: 0;
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 12px;
	cursor: pointer;
	color: transparent;
	border: 0;
	background-color: #000;
    background-color: rgba(0, 0, 0, 0.5);
    /*background-color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.3);*/
}
.b-blog-main-w .slick-dots button:hover{
    background-color: #000;
}
.b-blog-main-w .slick-dots .slick-active button{
	background-color: #000;
}
/*********************************************/
/***** END Blog Main *****/
/*********************************************/





/*********************************************/
/***** Blog Related widget BEGIN *****/
/*********************************************/
.b-blog-related {
}
.b-blog-related__item {
    margin-bottom: 2em;
}
.b-blog-related__image {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0 0.5em 0 0;
    padding: 0;
}
.b-blog-related__image-img {
    display: block;
}       
.b-blog-related__date {
    display: block;
    margin-bottom: 5px;
	color: #999;
    font-size: 11px;
	text-transform: uppercase;
}
.b-blog-related__title {
	margin-bottom: 5px;
	line-height: 1.3;
    font-size: 1.3em;
}
.b-blog-related__title-link {
    color: #AD6C60;
    text-decoration: none;
    -webkit-transition: all 1s ease-in 0s;
    -moz-transition: all 1s ease-in 0s;
    -ms-transition: all 1s ease-in 0s;
    -o-transition: all 1s ease-in 0s;
    transition: all 1s ease-in 0s;
}
.b-blog-related__title-link:hover {
    color: #1779B9;
}
/*********************************************/
/***** END Blog Related widget *****/
/*********************************************/





/*********************************************/
/***** Popular Blog widget BEGIN *****/
/*********************************************/
.b-blog-popular-w {
/* Popular Items, sorted by amount of views */
}
.b-blog-popular-w__item {
    position: relative;
    display: block;
    border-bottom: 1px solid #E4E4E4;
    margin-bottom: 1.5em;
    padding-bottom: 1em;
}
.b-blog-popular-w__item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.b-blog-popular-w__image {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0 1em 0 0;
    padding: 0;
}
.b-blog-popular-w__image-img {
    position: relative;
    display: block;
}      
.b-blog-popular-w__date {
    display: block;
    margin-bottom: 5px;
	color: #999;
    font-size: 11px;
	text-transform: uppercase;
}
.b-blog-popular-w__title {
    margin-top: 1em;
	margin-bottom: 0.5em;
	line-height: 1.3;
    color: #000000 !important;
    font-size: 1.2em;
}
.b-blog-popular-w__title-link {
    color: #AD6C60;
    text-decoration: none;
    -webkit-transition: all 1s ease-in 0s;
    -moz-transition: all 1s ease-in 0s;
    -ms-transition: all 1s ease-in 0s;
    -o-transition: all 1s ease-in 0s;
    transition: all 1s ease-in 0s;
}
.b-blog-popular-w__title-link:hover {
    color: #1779B9;
}
/*********************************************/
/***** END Popular Blog widget *****/
/*********************************************/





/*********************************************/
/***** Latest Blog widget BEGIN *****/
/*********************************************/
.b-blog-latest-w {
/* Latest Items, sorted by amount of last */
}
.b-blog-latest-w__item {
    position: relative;
    display: block;
    border-bottom: 1px solid #E4E4E4;
    margin-bottom: 1.5em;
    padding-bottom: 1em;
}
.b-blog-latest-w__item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.b-blog-latest-w__image {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0 1em 0 0;
    padding: 0;
}
.b-blog-latest-w__image-img {
    position: relative;
    display: block;
}       
.b-blog-latest-w__date {
    display: block;
	margin-bottom: 5px;
	color: #999;
    font-size: 11px;
	text-transform: uppercase;
}
.b-blog-latest-w__title {
    margin-top: 1em;
	margin-bottom: 0.5em;
	line-height: 1.3;
    color: #000000 !important;
    font-size: 1.2em;
}
.b-blog-latest-w__title-link {
    color: #AD6C60;
    text-decoration: none;
    -webkit-transition: all 1s ease-in 0s;
    -moz-transition: all 1s ease-in 0s;
    -ms-transition: all 1s ease-in 0s;
    -o-transition: all 1s ease-in 0s;
    transition: all 1s ease-in 0s;
}
.b-blog-latest-w__title-link:hover {
    color: #1779B9;
}

.b-blog-latest-w__image:hover .b-blog-latest-w__zoom {
    display: block;
    visibility: visible !important;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.b-blog-latest-w__zoom {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
	left: 10px;
	display: block;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.8);
	color: #FFFFFF;
    -webkit-transition: all 1s ease-in 0s;
    -moz-transition: all 1s ease-in 0s;
    -ms-transition: all 1s ease-in 0s;
    -o-transition: all 1s ease-in 0s;
    transition: all 1s ease-in 0s;
    
    -webkit-transform: scale(0); 
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0); 
}
.b-blog-latest-w__zoom-wrap-outer {
	display: table;
	height: 100%;
	width: 100%;
}
.b-blog-latest-w__zoom-wrap-inner {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
.b-blog-latest-w__icon {
    border: 1px solid #E4E4E4;
    padding: 0.5em;
}
/*********************************************/
/***** END Latest Blog widget *****/
/*********************************************/





/*********************************************/
/***** Review widget BEGIN *****/
/*********************************************/
.b-review-w {
    text-align: center;
}
.b-review-w__photo{
	margin-bottom: 10px;
}
.b-review-w__img{
	/* cancel slick-carusel default img display block */
	display: inline !important;
	border-radius: 50%;
}
.b-review-w__desc{
	margin-bottom: 15px;
    font-size: 16px;
}
.b-review-w__name{
	color: #000;
    font-weight: bold;
}
.b-review-w__url{
	margin-left: 5px;
    color: #1779B9;
}
.b-review-w__prev,
.b-review-w__next{
    display: inline-block;
	margin: 35px 5px 0;
}
/*********************************************/
/***** END Review widget *****/
/*********************************************/





/*********************************************/
/***** Partner widget BEGIN *****/
/*********************************************/
.b-partner-w {
	padding: 0 35px;
	text-align: center;
}
.b-partner-w__item{
	margin: 0 20px 0 20px;
}
.b-partner-w__prev,
.b-partner-w__next{
	position: absolute;
	top: 0;
	display: inline-block;
	margin: 5px 0;
}
.b-partner-w__prev{
	left: 0;
}
.b-partner-w__next{
	right: 0;
}
/*********************************************/
/***** END Partner widget *****/
/*********************************************/





/*********************************************/
/***** Footer BEGIN *****/
/*********************************************/

.b-footer-bottom-helper {
	min-height: 100%;
    background-color: #EEE0E5;
    background-image: url("/uploads/images/bg/bg-banner.png");
    background-attachment: fixed;
    background-repeat: repeat;
    background-position: top;
	overflow: hidden;
}
@media(max-width:1280px){
    .b-footer-bottom-helper {
        background-size: 125%;
    }
}
/* M */
@media(max-width:960px){
	.b-footer-bottom-helper {
		min-height: auto;
		overflow: auto;
	}
}
.b-footer-bottom-helper-2 {
    background: transparent;
	padding-bottom: 300px;
}
/* M */
@media(max-width:960px){
	.b-footer-bottom-helper-2 {
		padding-bottom: 0;
	}
}



.b-footer {
	height: 300px;
	margin-top: -300px;
    background: transparent;
	color: #A6A6A6;
}
/* M */
@media(max-width:960px){
	.b-footer {
		height: auto;
		margin-top: 0;
	}
}
.b-footer__inner {
	height: 250px;
    background-color: #222;
	padding-bottom: 2em;
    color: #A6A6A6;
}
/* M */
@media(max-width:960px){
	.b-footer__inner{
		height: auto;
	}
}

.b-footer__section{
	padding-top: 2em;
	font-size: 0.9em;
}

.b-footer__title {
	margin-bottom: 1em;
	color: rgba(255, 255, 255, 0.5);
    font-size: 1.25em;
    font-weight: 600;
    text-transform: uppercase;
}
.b-footer__item {
	margin-top: 1em;
    color: rgba(255, 255, 255, 0.25);
}
.b-footer__item-description {
    max-width: 420px;
    font-size: 1.1em;
    font-family: "Times","Times New Roman";
    font-style: italic;
}


/****** b-socgroups BEGIN ******/
.b-socgroups {
	margin-left: -10px;
}
.b-socgroups:after {
	content: "";
	display: table;
	clear: both;
}
.b-socgroups__item {
	float: left;
	width: 40px;
	height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.25);
	line-height: 40px;
    border-radius: 2px;
	margin-left: 10px;
	color: rgba(255, 255, 255, 0.5);
    text-align: center;
	text-decoration: none;
    -webkit-transition: all 1s ease-in 0s;
    -moz-transition: all 1s ease-in 0s;
    -ms-transition: all 1s ease-in 0s;
    -o-transition: all 1s ease-in 0s;
    transition: all 1s ease-in 0s;
}
/****** FaceBook ******/
.b-socgroups__item_fb:hover {
	background-color: #3B5998;
    color: #FFFFFF;
}
/****** Instagram ******/
.b-socgroups__item_ig:hover {
    background-color: #527FA4;
    color: #FFFFFF;
}
/****** Google + ******/
.b-socgroups__item_gp:hover {
	background-color: #DD4B39;
    color: #FFFFFF;
}
/****** Twitter ******/
.b-socgroups__item_tw:hover {
    background-color: #29C3FF;
    color: #FFFFFF;
}
/****** VK ******/
.b-socgroups__item_vk:hover {
	background-color: #4C89B8;
    color: #FFFFFF;
}
.b-socgroups__item_email:hover {
    background-color: #FF2744;
    color: #FFFFFF;
}
/****** END b-socgroups ******/



/****** b-menu-footer BEGIN ******/
.b-menu-footer__item{
	margin-bottom: 0.5em;
}
.b-menu-footer__item-link {
    color: rgba(255, 255, 255, 0.25);
    text-decoration: underline;
}
.b-menu-footer__item-link:hover {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}
/****** END b-menu-footer ******/


.b-footer__line {
    color: rgba(255, 255, 255, 0.5);
}
.b-footer__line-link {
    background-color: #FF2744;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    margin: 0 auto;
	padding: 14px 0 10px;
    color: rgba(255, 255, 255, 0.5);
}
.b-footer__line-left, .b-footer__line-right {
    display: inline-block;
}
.b-footer__line-left {
    padding: 0 0 0 20px;
    text-align: left;
}
.b-footer__line-right {
	float: right;
    padding: 0 20px 0 0;
    text-align: right;
}
/* S */
@media(max-width:768px){
	.b-footer__line-left {
		text-align: left;
	}
	.b-footer__line-right {
		float: none;
        padding: 0 0 0 20px;
		text-align: left;
	}
}



/****** b-userbar BEGIN ******/
.b-userbar{
	font-size: 0;
}
.b-userbar__item{
	display: inline-block;
	font-size: 13px;
	line-height: 1.3;
	padding: 0 20px;
	border-left: 1px solid #494949;
	vertical-align: middle;
	max-width: 200px;
}
.b-userbar__item:first-child{
	border-left: 0;
	padding-left: 0;
}
.b-userbar__item:last-child{
	padding-right: 0;
}
.b-userbar__icon{
	display: inline-block;
	vertical-align: middle;
}
.b-userbar__link{
	text-decoration: none;
	display: inline-block;
	vertical-align: middle;
}
/****** END b-userbar BEGIN ******/


/****** b-engine BEGIN ******/
.b-engine{
	font-size: 0.9rem;
}
/****** END b-engine ******/
/*********************************************/
/***** END Footer *****/
/*********************************************/





/*********************************************/
/***** Breadcrumbs BEGIN *****/
/*********************************************/
.b-breadcrumbs {
    background-color: #FFFFFF;
    font-size: 0.8em;
    color: #999;
}
@media(max-width:768px){
    .b-breadcrumbs {
        margin-top: 74px;
    }
}
.b-breadcrumbs__list {
    border-bottom: 1px solid #E4E4E4;
    padding: 1em 0;
}
.b-breadcrumbs__item {
	float: left;
}
.b-breadcrumbs__item:not(:last-child):after {
	content: '/';
	margin: 0 0.5em 0 0.5em;
}
/* S */
@media(max-width:768px){
	.b-breadcrumbs__item:last-child {
		/*display: none;*/
	}
}
.b-breadcrumbs__item-link {
    color: #AD6C60;
	text-decoration: underline;
    -webkit-transition: all 1s ease-in-out 0s;
    -moz-transition: all 1s ease-in-out 0s;
    -ms-transition: all 1s ease-in-out 0s;
    -o-transition: all 1s ease-in-out 0s;
    transition: all 1s ease-in-out 0s;
}
.b-breadcrumbs__item-link:hover{
	color: #1779B9;
    text-decoration: none;
}
/*********************************************/
/***** END Breadcrumbs *****/
/*********************************************/





/*********************************************/
/***** Category Content BEGIN *****/
/*********************************************/
.b-content__description {
    margin-bottom: 2.5em;
    line-height: 1;
    color: #999;
    font-size: 1.15em;
    text-align: center;
    font-weight: normal;
    text-transform: none;
}

.b-content__list {
    position: relative;
    background-color: #FFFFFF;
    /*padding: 2em 1.6em 1em 1.6em;*/
}

.b-content__item{
    margin-top: 2em;
	padding-top: 2em;
	border-top: 1px solid #E4E4E4;
}
.b-content__item:first-child{
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}
.b-content__item-image {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0 0 2em 0;
    padding: 0;
}
.b-content__item-image-img {
    display: block;
}

/* S */
@media(max-width:768px){
    .b-content__item-text {
		display: none;
	}
}

.b-content__item-title{
	margin-bottom: 0.6em;
	line-height: 1.2;
    font-size: 1.7em;
}
.b-content__item-title-link{
	color: #105787;
}
.b-content__item-title-link:hover{
	color: #1779b9;
}

/***** Category Item Blog BEGIN *****/
.b-fisrt__item {
    margin-bottom: 50px;
}
.b-fisrt__item:first-child {
    width: 66.6%;
}
@media(max-width:481px){
    .b-fisrt__item:first-child {
        width: auto;
    }
}
.b-fisrt__item-full:first-child {
    width: 100%;
}
.b-content__item-blog{
    display: inline-block;
    margin: 0 0 1em 0;
    padding: 0 0 1em 0;
    vertical-align: top;
}
.b-content__item-blog:first-child{
}

/***** END Category Item Blog *****/

.b-content__item-category{
    color: #999;
    font-size: 0.9em;
    font-style: italic;
}
.b-content__item-category-title{
	margin-right: 5px;
}
.b-content__item-category-link{
	color: #999;
}
.b-content__noitems{
}
.b-content__pagination{
	margin-top: 2em;
}



.b-content__section {
    background-color: #FFFFFF;
    padding: 0 1.5em 1.5em 0;
}
.b-content__section-page {
    background-color: #FFFFFF;
    padding: 1.5em 1.5em 1.5em 0;
}
.b-content__section-image {
    position: relative;
}
.b-content__section-image-img {
    display: block;
}
/*********************************************/
/***** END Category Content *****/
/*********************************************/





/*********************************************/
/***** Content BEGIN *****/
/*********************************************/
.b-content{
    padding-top: 2.5em;
    padding-bottom: 2.5em;
}
.b-content__title{
	margin-bottom: 0.25em;
    line-height: 1;
	color: #454545;
    font-size: 2.2em;
    text-align: center;
    font-weight: normal;
    text-transform: uppercase;
}
.b-content__title:before, .b-content__title:after {
    position: absolute;
    content: '';
    width: 80px;
    height: 8px;
    margin-top: 12px;
}
.b-content__title:before {
    background: url("/uploads/images/bg/mamant-border-left.png") 0 1px no-repeat;
    margin-left: -90px;
}
.b-content__title:after {
    background: url("/uploads/images/bg/mamant-border-right.png") 0 1px no-repeat;
    margin-left: 10px;
}
.b-content__title-page {
    margin-bottom: 1em;
    line-height: 1.5;
	color: #333333;
    font-size: 2.2em;
    font-family: "Times","Times New Roman";
    font-weight: normal;
    text-align: left;
    text-transform: uppercase;
}

/***** Category Name-Link *****/
.b-content__title-category { 
    position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    display: block;
    background-color: rgba(255, 255, 255, 0.8);
    margin: 0 !important;
    padding: 1em 2em;
    letter-spacing: 1px;
    line-height: 1;
    color: #AD6C60;
    font-weight: 600;
    text-transform: uppercase;
}

.b-content__title-link {
    letter-spacing: 1px;
    line-height: 1;
    color: #AD6C60 !important;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
    -webkit-transition: all 1s ease-in-out 0s;
    -moz-transition: all 1s ease-in-out 0s;
    -ms-transition: all 1s ease-in-out 0s;
    -o-transition: all 1s ease-in-out 0s;
    transition: all 1s ease-in-out 0s;
}
.b-content__title-link:hover{
	color: #1779B9;
    text-decoration: none;
}

.b-content__icon {
    display: inline-block;
    background-color: #AD6C60;
    margin: 0 0 0 5px;
    padding: 5px;
    color: #FFFFFF;
    -webkit-transition: all 1s ease-in-out 0s;
    -moz-transition: all 1s ease-in-out 0s;
    -ms-transition: all 1s ease-in-out 0s;
    -o-transition: all 1s ease-in-out 0s;
    transition: all 1s ease-in-out 0s;
}
.b-content__title-link:hover .b-content__icon {
    margin: 0 0 0 15px;
}
/***** Category Name-Link *****/



/*** Search Page ***/
.b-search__info-page {
    background-color: #F5F5F5;
    border: 1px solid #E4E4E4;
    margin-bottom: 2em;
    padding: 0.5em;
}
.b-search__info-results {
}
.b-search__info-results span {
    color: #AD6C60;
    font-weight: 600;
}

.b-search__item {
    margin-top: 2em;
	padding-top: 2em;
	border-top: 1px solid #E4E4E4;
}
.b-search__item:first-child {
    margin-top: 2em;
    padding-top: 2em;
	border-top: 0 none;
}
.b-search__item-image {
    position: relative;
    display: block;
    float: left;
    max-width: 30%;
    margin: 0 2em 0 0;
}
/* S */
@media(max-width:768px){
	.b-search__item-image{
		display: none;
	}
}
.b-search__item-image-img {
    display: block;
}
.b-search__item-title {
    margin-bottom: 0.6em;
	line-height: 1.2;
    font-size: 1.7em;
}
.b-search__item-title-link {
	color: #AD6C60;
    text-decoration: none;
}
.b-search__item-title-link:hover {
	color: #1779B9;
}
.b-search__item-category {
    margin: 0 0 0.8em 0;
}
.b-search__item-category-link {
    color: #1779B9;
    font-weight: 600;
    text-decoration: none;
}
.b-search__item-category-link:hover {
    color: #AD6C60;
}



/******* AddInfo *******/
.b-content__addinfo {
    margin-top: 2em;
    padding: 0;
}
.b-content__addinfo-blog {
    /*margin-top: 2em;
    margin-bottom: 2em;*/
    padding: 0;
}

.b-content__noitems{
    background-color: #FFFFFF;
    padding: 1.6em;
}
.b-content__pagination{
    margin-top: 2em;
}
/******* AddInfo *******/



/******* Author *******/
.b-content__addinfo-author {
    background-color: #F5F5F5;
    border: 1px solid #E4E4E4;
    padding: 1em;
}
.author .title, .author .title a {
    display: inline-block;
    color: #E28181;
}
.author .line {
    float: right;
    width: 92%;
    height: 1px;
    background-color: #999;
    border: none;
    margin-top: 11px;
}
.b-author__image {
    float: left;
    margin: 1em 1em 1em 0;
}
.b-author__image img {
    width: 100%;
    max-width: 100px;
    border-radius: 50%;
    margin-bottom: 2em;
}
.b-author__title {
    line-height: 1;
    color: #666;
    font-size: 1.5em;
}
.b-author__text {
    color: #999;
}
/******* Author *******/



/****** Blog Info BEGIN ******/
.b-content__bloginfo{
	border-top: 1px solid #E4E4E4;
	border-bottom: 1px solid #E4E4E4;
    margin-top: 2em;
	padding: 1.3em 0 1.3em 0;
}
.b-content__bloginfo-section{
	font-size: 0;
	white-space: nowrap;
}
.b-content__bloginfo_right{
	float: right;
}
/* S */
@media(max-width:768px){
	.b-content__bloginfo_left{
		margin-bottom: 20px;
	}
	.b-content__bloginfo_right{
		float: none;
	}
}
.b-content__bloginfo-title{
	display: block;
	vertical-align: middle;
	margin-right: 16px;
    margin-bottom: 16px;
	font-size: 1rem;
}
.b-content__bloginfo-list{
	display: inline-block;
	vertical-align: middle;
	white-space: normal;
	font-size: 1rem;
}



/****** Tags BEGIN ******/
.b-tags {
	margin: -5px 0 0 -5px;
}
.b-tags:after {
	content: "";
	display: table;
	clear: both;
}
.b-tags__item {
	float: left;
    background-color: #AD6C60;
    border-radius: 5px;
	margin: 5px 5px 0 0;
	padding: 0.4em 0.8em;
    color: rgba(255, 255, 255, 0.5) !important;
	font-size: 0.9em;
    text-decoration: none;
    -webkit-transition: all 1s ease-in 0s;
    -moz-transition: all 1s ease-in 0s;
    -ms-transition: all 1s ease-in 0s;
    -o-transition: all 1s ease-in 0s;
    transition: all 1s ease-in 0s;
}
.b-tags__item:hover {
    color: rgba(255, 255, 255, 1) !important;
    text-decoration: underline;
}

/****** Tags Footer BEGIN ******/
.b-tags-footer {
    margin: 0 5px 5px 0;
}
.b-tags-footer:after {
	content: "";
	display: table;
	clear: both;
}
.b-tags__item-footer {
	display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 5px;
	margin: 5px 5px 0 0;
	padding: 0.4em 0.8em;
	color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    -webkit-transition: all 1s ease-in 0s;
    -moz-transition: all 1s ease-in 0s;
    -ms-transition: all 1s ease-in 0s;
    -o-transition: all 1s ease-in 0s;
    transition: all 1s ease-in 0s;
}
.b-tags__item-footer:hover {
    background-color: rgba(255, 255, 255, 0.25);
	color: rgba(255, 255, 255, 1);
}

.b-share{
	margin-left: -5px;
}
.b-share__handle{
	margin-left: 5px;
}



/****** Content Addinfo BEGIN ******/
.b-addinfo{
	color: #999;
	font-size: 0.9em;
}
.b-addinfo__item{
	float: left;
	margin-right: 1em;
}
.b-addinfo__list .b-addinfo__item:last-child{
	margin-right: 0;
}
.b-addinfo__item-icon{
	color: #D0D0D0;
}



/****** Sub categories Menu ******/
.b-subcats{
}
.b-subcats__item:not(:last-child){
	/*margin-bottom: 0.5em;*/
}
.b-subcats__item {
    border-bottom: 1px solid #E4E4E4;
    padding: 4px 0 4px 8px;
}
.b-subcats__item__active {
    background-color: #1779B9;
}
.b-subcats__item__active .b-subcats__item-link{
    color: #FFFFFF;
}



/* Latest comments to all articles */
.b-comment-w{
}
.b-comment-w__item-text{
	margin-bottom: 0.4em;
	font-size: 0.9em;
}
.b-comment-w__item-addinfo:not(:last-child){
	margin-bottom: 1.5em;
}
/*********************************************/
/***** END Content *****/
/*********************************************/





/*********************************************/
/***** Pagination BEGIN *****/
/*********************************************/
.b-pagination{
}
.b-pagination__item {
	display: inline-block;
	vertical-align: middle;
	margin: 0 5px;
}
.b-pagination__item:first-child{
	margin-left: 0;
}
.b-pagination__item a,
.b-pagination_page-active{
	display: inline-block;
	height: 35px;
	line-height: 35px;
    vertical-align: middle;
	color: #333;
	text-decoration: none;
}
.b-pagination_page a,
.b-pagination_page-active
{
	width: 35px;
	text-align: center;
}
.b-pagination_page-active{
	background-color: #F5F5F5;
}
.b-pagination__arrow{
	position: relative;
	top: 3px;
    color: #999;
}
.b-pagination_first{
	margin-right: 20px;
}
.b-pagination_last{
	margin-left: 20px;
}
/*********************************************/
/***** END Pagination *****/
/*********************************************/



/*********************************************/
/***** Comments BEGIN *****/
/*********************************************/
.b-comments {
}
.b-comments__message_info {
	margin-bottom: 1.5em;
}
.b-comments__form {
    border: 1px solid #E4E4E4;
	/*margin-bottom: 2em;*/
}
#b-comments__form-anchor {
	position: absolute;
	margin-top: -250px;
}
/* S */
@media(max-width:768px){
	#b-comments__form-anchor {
		margin-top: -50px;
	}
}

.b-comments__list {
	margin-bottom: 2em;
}
.b-comments__post {
	margin-top: 1.5em;
	padding-top: 1.5em;
	border-top: 1px solid #E4E4E4;
}
.b-comments__post:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}
.b-comments__post-header {
	padding-bottom: 5px;
	font-size: 0;
}
.b-comments__post-author {
	display: inline-block;
	margin-right: 10px;
	vertical-align: top;
	font-size: 1rem;
	font-weight: bold;
	color: #000;
}
.b-comments__post-date {
	display: inline-block;
	margin-right: 10px;
	vertical-align: top;
	color: #999;
    font-size: 1rem;
}
.b-comments__post-rate {
	display: inline-block;
	margin-top: 4px;
	vertical-align: top;
	font-size: 1rem;
}
.b-comments__post-text {
	margin-bottom: 10px;
}
.b-comments__post-vote {
	color: #999;
    font-size: 0;
}
.b-comments__post-vote-item {
	display: inline-block;
	margin-right: 20px;
	vertical-align: top;
	color: #999;
    font-size: 1rem;
	text-decoration: none;
}
.b-star-number {
}
.b-star-number__ico {
	float: left;
	margin-left: 1px;
	color: #FFB300;
}
.b-star-number__ico:first-child {
	margin-left: 0;
}

.b-star-rating {
	font-size: 0;
}
.b-star-rating__wrap {
	display: inline-block;
	font-size: 1rem;
}
.b-star-rating__wrap:after {
	content: "";
	display: table;
	clear: both;
}
.b-star-rating__ico {
	float: right;
	padding-left: 2px;
	cursor: pointer;
	color: #FFB300;
}
.b-star-rating__ico:last-child {
	padding-left: 0;
}
.b-star-rating__input {
	display: none;
}
.b-star-rating__ico:hover:before,
.b-star-rating__ico:hover ~ .b-star-rating__ico:before,
.b-star-rating__input:checked ~ .b-star-rating__ico:before {
	content: "\f005";
}
/*********************************************/
/***** END Comments *****/
/*********************************************/





/*********************************************/
/***** Gallery BEGIN *****/
/*********************************************/
.b-gallery{
}
.b-gallery__menu{
	margin-bottom: 1em;
	font-size: 0.9em;
	text-align: right;
	text-transform: uppercase;
}
/* M */
@media(max-width:960px){
	.b-gallery__menu{
		text-align: left;
	}
}

.b-gallery__menu-item{
	display: inline-block;
	vertical-align: top;
	margin: 0 0 0.5em 1em;
}
.b-gallery__menu-item:first-child{
	margin-left: 0;
}
.b-gallery__menu-link.mod-active{
	border-bottom: 2px solid #5CABD6;
}
.b-gallery__description{
	margin-bottom: 2em;
}
.b-gallery__category-album{
	margin-bottom: 4em;
    text-align: center;
}
.b-gallery__category-album-image{
    position: relative;
	display: block;
	margin-bottom: 1.5em;
}
.b-gallery__category-album-img,
.b-gallery__category-album-image-link{
	display: block;
}
.b-gallery__category-album-title{
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 0.5em;
}
.b-gallery__category-album-text{
	font-size: 0.9em;
}
.b-gallery__photo{
	position: relative;
	margin-bottom: 4em;
}
/* XS */
@media(max-width:480px){
	.b-gallery__photo:after{
		content: '';
		display: block;
		position: absolute;
		z-index: 10;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background: transparent;
	}
}

.b-gallery__photo-link,
.b-gallery__photo-img{
	display: block;
}
.b-gallery__photo-text{
	margin-bottom: 0.5em;
	font-size: 0.9em;
}
.b-gallery__photo-link{
	position: relative;
}
.b-gallery__photo-link:hover .b-gallery__zoom{
	display: block;
}
.b-gallery__zoom{
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(30, 39, 47);
	background-color: rgba(30, 39, 47, 0.8);
	color: #FFFFFF;
}
.b-gallery__zoom-wrap-outer{
	display: table;
	height: 100%;
	width: 100%;
}
.b-gallery__zoom-wrap-inner{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
/*********************************************/
/***** END Gallery *****/
/*********************************************/





/*********************************************/
/***** Sidebar BEGIN *****/
/*********************************************/
.b-sidebar {
    padding-left: 20px;
}
/* M */
@media(max-width:960px){
	.b-sidebar{
        border: 0;
	    padding: 0;
	}
}
@media(max-width:768px){
    .b-sidebar{
        border: 0;
	    padding: 0;
        padding-left: 0;
	}
}
.b-sidebar__section {
    background-color: #F5F5F5;
    border: 1px solid #E4E4E4;
    margin-bottom: 3em;
    padding: 1.5em;
}
.b-sidebar__section-bg {
    padding: 0;
}
.b-sidebar__section_search-w {
	margin-bottom: 3em;
}


/****** Search Form BEGIN ******/
.b-search-w_blog {
}
.b-search__info {
	margin-bottom: 2em;
}
.b-search-w_blog__submit {
	border: 0;
	background-color: transparent;
}
/*********************************************/
/***** END Sidebar *****/
/*********************************************/





/*********************************************/
/***** fancyBox BEGIN *****/
/*********************************************/
.fancybox-overlay{
	background: rgba(0,0,0,0.7);
}
.fancybox-nav span{
	font-size: 3em;
	margin-top: -1em;
	display: block;
}
.fancybox-nav.fancybox-prev{
	left: 0;
}
.fancybox-nav.fancybox-next{
	right: 0;
}
.fancybox-nav.fancybox-prev span:before{
	content: "\f104"
}
.fancybox-nav.fancybox-next span:before{
	content: "\f105";
}
.fancybox-nav.fancybox-prev span{
	left: 10px;
}
.fancybox-nav.fancybox-next span{
	right: 10px;
}
.fancybox-nav span {
	visibility: visible;
}
#fancybox-loading div:before{
	content: "\f110";
	font-size: 3em;
	color: #FFFFFF;
	-webkit-animation: fa-spin 1.5s infinite linear;
  	animation: fa-spin 1.5s infinite linear;
}
#fancybox-loading{
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	cursor: pointer;
	z-index: 8060;
}
.fancybox-close:before{
	padding: 10px;
	content: "\f00d";
	font-size: 2em;
}
.fancybox-close{
	position: absolute;
	top: 35px;
	right: 25px;
	cursor: pointer;
	z-index: 8040;
}
.fancybox-inner p{
	padding-right: 20px; /*close button over text*/
}
.fancybox-title{
	padding: 5px;
}
/*********************************************/
/***** END fancyBox *****/
/*********************************************/





/*********************************************/
/***** Scroll Up BEGIN *****/
/*********************************************/
#scrollUp {
    bottom: 100px;
    right: 0;
    width: 40px;
    height: 40px;
    background: url("/uploads/images/icon/totop.png") no-repeat rgba(255, 39, 68, 1);
    border: 1px solid #FFFFFF;
    border-radius: 3px 0 0 3px;
    opacity: 1;
}
#scrollUp:hover {
    opacity: 0.5;
}
/*********************************************/
/***** END Scroll Up *****/
/*********************************************/





/*********************************************/
/***** Scribe BEGIN *****/
/*********************************************/
.scribe {
    display: none;
}
.scribe-input {
    color: #707070; 
}
.scribemail {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 2px;
    padding: 0.5em;
    color: #333333;
}
.scribe-submit {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    background-color: #AD6C60;
    border: 1px solid #E4E4E4;
    border-radius: 2px;
    padding: 0.5em;
    color: #F7F7F7;
    -webkit-transition: all 1s ease-in-out 0s;
    -moz-transition: all 1s ease-in-out 0s;
    -ms-transition: all 1s ease-in-out 0s;
    -o-transition: all 1s ease-in-out 0s;
    transition: all 1s ease-in-out 0s;
}
.scribe-submit:hover {
    background-color: #F7F7F7;
    color: #333333;
}
/*********************************************/
/***** END Scribe *****/
/*********************************************/





/*********************************************/
/***** Tab Comments BEGIN *****/
/*********************************************/
/* Базовый контейнер табов */
.tabs {
    min-width: 320px;
    max-width: 800px;
    background-color: #FFFFFF;
    margin: 0 auto; 
    padding: 0px;
}
@media(max-width:768px){
    .tabs {
        width: auto;
        max-width: auto;
        min-width: 1px;
    }
}
/* стили секций с содержанием */
.section {
    display: none;
    border: 1px solid #E4E4E4;
    padding: 1em;
}
.tabs input {
    display: none;
}
/* стили вкладок (табов) */
.tabs .label {
    display: inline-block;
    background-color: #F1F1F1;
    border: 1px solid #DDDDDD;
    border-radius: 3px 3px 0 0;
    margin: 0 0 -1px;
    padding: 15px 25px;
    color: #AAAAAA;
    font-weight: 600;
    text-align: center;
}
/* шрифт-иконки от Font Awesome в формате Unicode */
.tabs .label:before {
    margin-right: 10px;
    font-family: "fontawesome";
    font-weight: normal;
}
.tabs .label[for*="1"]:before {
    content: "\f27a";
}
.tabs .label[for*="2"]:before {
    content: "\f230";
}
.tabs .label[for*="3"]:before {
    content: "\f0e6";
}
.tabs .label[for*="4"]:before {
    content: "\f189";
}
/* изменения стиля заголовков вкладок при наведении */
.tabs .label:hover {
    cursor: pointer;
    color: #888;
}
/* стили для активной вкладки */
.tabs input:checked + label {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-top: 1px solid #AD6C60;
    border-bottom: 1px solid #FFFFFF;
    color: #555555;
}
/* активация секций с помощью переключателя :checked */
#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4 {
    display: block;
}
/* медиа запросы для различных типов носителей */  
@media(max-width:768px){
    .tabs .label {
        font-size: 0;
  }
    .tabs .label:before {
        margin: 0;
        font-size: 18px;
  }
}
@media(max-width:768px){
    .tabs .label {
        padding: 6px 18px;
  }
}
/*********************************************/
/***** END Tab Comments *****/
/*********************************************/





/*********************************************/
/***** Popup BEGIN *****/
/*********************************************/
.b-popup-w {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transition: all 1s ease-in-out 0s;
    -moz-transition: all 1s ease-in-out 0s;
    -ms-transition: all 1s ease-in-out 0s;
    -o-transition: all 1s ease-in-out 0s;
    transition: all 1s ease-in-out 0s;
}
.b-popup-w__item { 
    position: relative;
    width: 100%;
    max-width: 600px;
    background-color: #FFFFFF;
    margin: 3em auto;
    padding: 0;
    border: 1px solid #DDDDDD;
}

.b-popup-w__item-box {
    margin: 1em;
    padding: 1em;
    text-align: center;
}
.b-popup-w__title {
    margin-bottom: 1em;
    color: #222222;
    font-size: 2em;
    text-align: center;
}
.b-popup-w__title-post {
    margin-bottom: 1em;
    font-size: 1.5em;
    text-align: center;
}
    
/******* кнопка закрытия *******/
.close {
    position: absolute;
    top: -12px;
    right: -12px;
    display: block;
    width: 35px;
    height: 35px;
    background: url("/uploads/images/icon/close.png") no-repeat;
	cursor: pointer;
    text-align: center;
    text-decoration: none;
    text-indent: -9999px;
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    
    -webkit-transition: all 1s ease-in-out 0s;
    -moz-transition: all 1s ease-in-out 0s;
    -ms-transition: all 1s ease-in-out 0s;
    -o-transition: all 1s ease-in-out 0s;
    transition: all 1s ease-in-out 0s;
}
.close:hover {
    transform: rotateX(0deg);
}

/******* Line Color *******/
.nashville-bar {
    display: block;
    float: left;
    height: 11px;
    width: 25%;
}
.nashville-red-bar {
    background-color: #ef3e36;
}
.nashville-green-bar {
    background-color: #abb92e;
}
.nashville-orange-bar {
    background-color: #f57826;
}
.nashville-blue-bar {
    background-color: #17b4e9;
}
/*********************************************/
/***** END Popup *****/
/*********************************************/





/*********************************************/
/***** Menu Social BEGIN *****/
/*********************************************/
.m-socgroups{
    display: inline-block;
    vertical-align: top;
    text-align: left;
}
.m-socgroups__item{
    display: inline-block;
    background: transparent;
	margin: 0 0 0 10px;
    line-height: 1;
    vertical-align: top;
	color: #848484;
    text-align: center;
	text-decoration: none;
    -webkit-transition: all 1s ease-in-out 0s;
    -moz-transition: all 1s ease-in-out 0s;
    -ms-transition: all 1s ease-in-out 0s;
    -o-transition: all 1s ease-in-out 0s;
    transition: all 1s ease-in-out 0s;
}
/****** FaceBook ******/
.m-socgroups__item_fb:hover{
    color: #3B5998;
}
/****** Instagram ******/
.m-socgroups__item_ig:hover {
    color: #527FA4;
}
/****** Google + ******/
.m-socgroups__item_gp:hover{
    color: #DD4B39;
}
/****** Twitter ******/
.m-socgroups__item_tw:hover{
    color: #29C3FF;
}
/****** VK ******/
.m-socgroups__item_vk:hover{
    color: #4C89B8;
}
/*********************************************/
/***** END Menu Social *****/
/*********************************************/





/*********************************************/
/***** Socgroups Popup BEGIN *****/
/*********************************************/
.s-socgroups {
    display: block;
}
.s-socgroups__item {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
    border: 1px solid #E4E4E4;
    border-radius: 2px;
	margin-right: 10px;
    color: #FFF;
    text-align: center;
	text-decoration: none;
    -webkit-transition: all 0.5s ease-in 0s;
    -moz-transition: all 0.5s ease-in 0s;
    -ms-transition: all 0.5s ease-in 0s;
    -o-transition: all 0.5s ease-in 0s;
    transition: all 0.5s ease-in 0s;
}
/****** FaceBook ******/
.s-socgroups__item_fb {
    color: #3B5998;
}
.s-socgroups__item_fb:hover {
    background-color: #3B5998;
    color: #FFF;
}
/****** Instagram ******/
.s-socgroups__item_ig {
    color: #527FA4;
}
.s-socgroups__item_ig:hover {
    background-color: #527FA4;
    color: #FFF;
}
.s-socgroups__item_gp:hover { /*Google +*/
	background-color: #DD4B39;
    color: #FFF;
}
.s-socgroups__item_tw:hover { /*Twitter*/
    background-color: #29C3FF;
    color: #FFF;
}
.s-socgroups__item_vk:hover { /*VK*/
	background-color: #4C89B8;
    color: #FFF;
}
/*********************************************/
/***** END Socgroups Popup *****/
/*********************************************/





/*********************************************/
/***** Menu Search BEGIN *****/
/*********************************************/
.searchicon {
    position: relative;
    width: 16px;
    height: 16px;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
}
.searchicon.active {
    color: #009933;
}

/******* Icon *******/
.searchicon .icon-search, .searchicon .icon-times {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 1s ease-in-out 0s;
    -moz-transition: all 1s ease-in-out 0s;
    -ms-transition: all 1s ease-in-out 0s;
    -o-transition: all 1s ease-in-out 0s;
    transition: all 1s ease-in-out 0s;
}
.searchicon .icon-search {
    visibility: visible;
    opacity: 1;
}
.searchicon .icon-times {
    visibility: hidden;
    opacity: 0;
}
.searchicon.active .icon-search {
    visibility: hidden;
    opacity: 0;
}
.searchicon.active .icon-times {
    visibility: visible;
    opacity: 1;
}
.searchbox {
    position: absolute;
    top: 0/*42px*/;
    right: 0;
    width: 310px;
    height: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 1s ease-in-out 0s;
    -moz-transition: all 1s ease-in-out 0s;
    -ms-transition: all 1s ease-in-out 0s;
    -o-transition: all 1s ease-in-out 0s;
    transition: all 1s ease-in-out 0s;
    z-index: -1;
}
.searchbox.js-toggle {
    position: absolute;
    top: 37px;
    right: 0;
    display: block;
    width: 310px;
    height: auto;
    background-color: #FFFFFF;
    padding: 0;
    visibility: visible;
    opacity: 1;
    z-index: 1;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%); 
    -o-transform: translateY(0%);
    transform: translateY(0%);
}
.searchbox-input {
    width: 100%;
    height: 51px;
    border: 1px solid #E4E4E4;
    border-top: 0;
    line-height: 1;
    padding: 0 25px 0 1em;
}
.search-submit {
    position: absolute;
    top: 0;
    right: 0;
    width: 51px;
    height: 51px;
    background-color: #AD6C60;
    border: 0;
    padding: 0;
    color: #FFFFFF;
}
/*********************************************/
/***** END Menu Search *****/
/*********************************************/





/*********************************************/
/***** Page FB Comments *****/
/*********************************************/
.fb-comments {
    width: 100%;
    /*max-width: 665px;*/
    background-color: #F7F7F7;
    border-top: 1px solid #E4E4E4;
    margin: 3.5em 0 0 0;
}
@media(max-width:800px){
    .fb-comments{
        display: block;
        width: 100%;
        margin: 2em 0 0 0;
    }
}
@media(max-width:768px){
    .fb-comments{
        display: block;
        width: 100%;
        margin: 2em 0 0 0;
    }
}
@media(max-width:640px){
    .fb-comments{
        display: block;
        width: 541px;
        margin: 2em 0 0 0;
    }
}
@media(max-width:480px){
    .fb-comments{
        display: block;
        width: 397px;
        margin: 2em 0 0 0;
	}
}
@media(max-width:360px){
    .fb-comments{
        display: block;
		width: 240px;
        margin: 2em 0 0 0;
	}
}
@media(max-width:320px){
	.fb-comments{
        display: block;
		width: 240px;
        margin: 2em 0 0 0;
	}
}

@media(max-width:640px){
    .fb_iframe_widget span{
        width: 397px;
    }
}
@media(max-width:640px){
    .fb_iframe_widget{
        width: 397px;
    }
}

@media(max-width:640px){
    .fb_iframe_widget iframe{
        width: 397px;
    }
}
@media(max-width:640px){
    .fb_iframe_widget{
        width: 397px;
    }
}

/* Full width Facebook comments from danilin.biz  */
.fb-comments,
.fb-comments iframe[style],
.fb-like-box,
.fb-like-box iframe[style],
.fb-comments span,
.fb-comments iframe span[style],
.fb-like-box span,
.fb-like-box iframe span[style] {
    width: 100% !important;
    margin-bottom: 3.5em;
}
/*********************************************/
/***** END FB Comments *****/
/*********************************************/





/*********************************************/
/***** VK Comments BEGIN *****/
/*********************************************/
.vk-comments {
    width: 100%;
    background: none;
    margin: 3.5em 0 0 0;
}
@media(max-width:800px){
    .vk-comments{
        display: block;
        width: 100%;
        margin: 2em 0 0 0;
    }
}
@media(max-width:768px){
    .vk-comments{
        display: block;
        width: 100%;
        margin: 2em 0 0 0;
    }
}
@media(max-width:640px){
    .vk-comments{
        display: block;
        width: 541px;
        margin: 2em 0 0 0;
    }
}
@media(max-width:480px){
    .vk-comments{
        display: block;
    	width: 397px;
        margin: 2em 0 0 0;
	}
}
@media(max-width:360px){
    .vk-comments{
        display: block;
		width: 240px;
        margin: 2em 0 0 0;
	}
}
@media(max-width:320px){
	.vk-comments{
        display: block;
		width: 240px;
        margin: 2em 0 0 0;
	}
}

/* Full width VK comments from danilin.biz  */
#vk_comments,
#vk_comments iframe {
    width: 100% !important;
    margin-bottom: 3.5em;
}
/*********************************************/
/***** END VK Comments *****/
/*********************************************/





/*********************************************/
/***** Instagram BEGIN *****/
/*********************************************/
.instagram {
    width: 100% !important;
    min-height: 375px
    border: 0 none;
    overflow: hidden;
}
/*********************************************/
/***** END Instagram *****/
/*********************************************/