* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
@font-face {
    font-family: 'Roboto';
    src: local('Roboto'), local('Roboto-Regular'), url('/wp-content/themes/ithm/roboto/Roboto.woff2') format('woff2'), url('/wp-content/themes/ithm/roboto/Roboto.woff') format('woff'), url('/wp-content/themes/ithm/roboto/Roboto.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: local('Roboto Medium'), local('Roboto-Medium'), url('/wp-content/themes/ithm/roboto/Robotomedium.woff2') format('woff2'), url('/wp-content/themes/ithm/roboto/Robotomedium.woff') format('woff'), url('/wp-content/themes/ithm/roboto/Robotomedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
	font-display: swap;
}
body {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: .075em;
    font-family: Roboto;
    width: 100%;
    color: #151515;

}
a{
	color: #6046b6;
}
a:hover{
	text-decoration: none;
}
a,
input {
     -webkit-transition: all 0.3s ease 0s;
     -moz-transition: all 0.3s ease 0s;
     -o-transition: all 0.3s ease 0s;
     transition: all 0.3s ease 0s;
}
.container {
    margin: 0 auto;
    padding: 0 15px;
}
input,
textarea,
select,
a {
	outline: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
.btn,
input[type="submit"] {
    background: #ffe745;
    color: #151515;
    padding: 20px 55px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
    text-decoration: none;
}
.btn:hover,
input[type="submit"]:hover{
    color: #ffffff;
    background: #73cca1;
}
input[type="submit"] {
    border: none;
    cursor: pointer;
}
/* Header
-----------------------------------------------------------------------------*/
header {
    background: #f5f5f5;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .logo:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    background: #ffffff;
    transform: skewX(16deg);
    transform-origin: 50% 100%;
    will-change: transform;
    pointer-events: none;
    z-index: 1;
}
header .logo {
    position: relative;
    height: 100%;
    padding: 11px 70px 11px 0px;
    flex-shrink: 0;
}
header .logo a {
    position: relative;
    z-index: 2;
}
header .logo img {
    width: 234px;
    height: 50px;
}
header nav {
    margin-left: auto;
    margin-right: 30px;
}
header nav ul {
    display: flex;
    margin-bottom: 0;
}
header nav ul li {
    list-style: none;
    margin-right: 35px;
    position: relative;
}
header nav ul li:last-child{
    margin-right: 0;
}
header nav > ul > li > a {
    font-size: 18px;
    line-height: 1.34;
    letter-spacing: .075em;
    text-transform: none;
    color: #151515;
    display: block;
    text-decoration: none;
    font-weight: 500;
    padding: 26px 0;
    position: relative;
}
header nav > ul > li > a:before {
    position: absolute;
    content: '';
    bottom: 0;
    right: 100%;
    width: 10px;
    height: 6px;
    background: #6046b6;
    opacity: 0;
    transition: all .2s ease, right 0s ease .2s;
}
header nav > ul > li:hover > a::before {
    right: 0;
    opacity: 1;
    width: 100%;
    transition: right .2s ease, width .2s ease .2s;
}
header nav ul li:hover ul {
    display: block;
}
@media (min-width: 992px){
    header nav ul li ul{
        position: absolute;
        z-index: 9;
        background: #f5f5f5;
        padding: 20px;
        flex-wrap: wrap;
        display: none;
    }
    header nav ul li ul li {
        width: 100%;
        margin-right: 0;
        white-space: nowrap;
        margin-bottom: 10px;
    }
    header nav ul li ul li:last-child{
        margin-bottom: 0;
    }
    header nav ul li ul li a {
        font-size: 16px;
        line-height: 1.34;
        letter-spacing: .025em;
        text-transform: none;
        color: #151515;
        display: block;
        text-decoration: none;
        padding: 0;
        position: relative;
        font-weight: 500;
    }
    header nav ul li ul li a:hover{
        text-decoration: underline;
    }
}
.mobile_nav_btn {
    display: none;
}
header .search_btn{
    height: 28px;
    width: 28px;
    border-radius: 0;
    transition: 0.3s;
    background: transparent;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
    -webkit-transform: rotate( 
-135deg
 );
    transform: rotate( 
-135deg
 );
}

header .search_btn:before, header .search_btn:after {
    display: inline-block;
    border-radius: 0;
    transition: 0.3s;
    background: transparent;
    content: '';
    position: absolute;
    width: 45%;
    top: 0;
    bottom: 0;
    margin: auto;
}
header .search_btn:before {
    height: 2px;
    left: 0;
    background: #151515;
    border-radius: 2.85714px;
    width: 10px;
}
header .search_btn:after {
    right: 0;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    border: 2px solid #151515;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}
header .search_btn:before:hover,
header .search_btn:after:hover {
    background: #6046b6;
} 
/* Middle
-----------------------------------------------------------------------------*/
.breadcrumps {
    background: #f5f5f5;
    padding: 10px 0;
    margin-bottom: 20px;
}
.breadcrumps a {
    text-decoration: none;
    color: #777777;
}
.breadcrumps a:hover{
    color: #6046b6;
}
.breadcrumps span.arrow {
	background: url(images/arrow_bread.png) no-repeat scroll 0 0 transparent;
    display: inline-block;
    width: 8px;
    height: 6px;
    margin: 0 4px 0 5px;
    position: relative;
    top: -1px;
}
.breadcrumps span.arrow:last-child {
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.top_article button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 80px;
    height: inherit;
}
.top_article .item {
    height: 560px;
    color: #FFF;
}
.top_article .item .container{
    height: 560px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}
.top_article .item.leaves{
    background: url(images/front/bg_leaves.jpg) no-repeat scroll center 0 transparent;
}
.top_article .item.shishki{
    background: url(images/front/podelki_iz_shishek.jpg) no-repeat scroll center 0 transparent;
}
.top_article .item.vitinanki{
    background: url(images/front/vitinanki.jpg) no-repeat scroll center 0 transparent;
}
.top_article .item.ng{
    background: url(images/front/podelki_na_ng.jpg) no-repeat scroll center 0 transparent;
}
.top_article .item .title {
    text-decoration: none;
    font-size: 6em;
    color: #FFFF;
    line-height: 1;
}
.top_article .item .description {
    font-size: 20px;
    letter-spacing: 3px;
    margin: 30px 0 50px;
    width: 100%;
}
.top_article .arrow {
    background: url(images/arrow.png) no-repeat scroll 0 0 transparent;
    position: absolute;
    top: 50%;
    margin-top: -20px;
    width: 49px;
    height: 40px;
    z-index: 99;
    cursor: pointer;
}
.top_article .arrow.prev{
    left: 30px;
    -moz-transform: rotate(180deg); /* Для Firefox */
    -ms-transform: rotate(180deg); /* Для IE */
    -webkit-transform: rotate(180deg); /* Для Safari, Chrome, iOS */
    -o-transform: rotate(180deg); /* Для Opera */
    transform: rotate(180deg);
}
.top_article .arrow.next{
    right: 30px;
}

.site_menu {
    padding: 80px 0 50px;
}
.title_block {
    text-align: center;
    font-size: 45px;
    margin-bottom: 45px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.site_menu .content_meu {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
}
.site_menu .content_meu .item {
    padding: 0 15px;
    width: 33.33%;
    margin-bottom: 30px;
}
.site_menu .content_meu .item a {
    position: relative;
    display: block;
    overflow: hidden;
}
.site_menu .content_meu .item a img {
    transition: all .2s ease;
    transform: scale(1.1);
}
.site_menu .content_meu .item a:hover img {
    transform: scale(1);
}
.site_menu .content_meu .item a div {
    position: absolute;
    top: 0;
    z-index: 2;
    width: 100%;
    left: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
}
.site_menu .content_meu .item a span {
    color: #FFF;
    font-size: 24px;
}
.about_site{
    background: url(images/bg_front_text.jpg) no-repeat scroll center 0 transparent;
    background-size: cover;
    padding: 80px 0 60px;
}
.about_site * {
    color: #ffffff !important;
}
.about_site p:last-child{
    margin-bottom: 0;
}
.our_team {
    padding: 80px 0;
}
.our_team .title_block{
    margin-bottom: 0;
}
.our_team .arrow.prev {
    left: 220px;
    -moz-transform: rotate(180deg); /* Для Firefox */
    -ms-transform: rotate(180deg); /* Для IE */
    -webkit-transform: rotate(180deg); /* Для Safari, Chrome, iOS */
    -o-transform: rotate(180deg); /* Для Opera */
    transform: rotate(180deg);
}
.our_team .arrow.next {
    right: 220px;
}
.our_team .arrow  {
    background: url(images/icon_slider_arrow.png) no-repeat scroll 0 0 transparent;
    position: absolute;
    width: 25px;
    height: 20px;
    top: 40px;
    z-index: 9;
    cursor: pointer;
}
.our_team .slick-list{
    padding-top: 100px !important;
}
.our_team .team_item {
    text-align: center;
    opacity: .3;
}
.our_team .team_item.slick-center {
    opacity: 1;
}
.our_team .team_item .team_item_inside{
    padding: 0 20px;
}
.our_team .team_item .team_item_caption  {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    padding: 38px 25px 46px;
    z-index: 1;
}

.our_team .team_item .team_item_caption::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 8px;
    background: #f5f5f5;
    box-shadow: none;
    transition: all .4s ease;
    z-index: -1;
}
.our_team .team_item.slick-center .team_item_caption::before {
    top: -70px;
     bottom: 40px;
    background: #ffffff;
    box-shadow: 0 0 24px 0 rgb(0 0 0 / 7%);
}
.our_team .team_item .team_item_text {
    display: flex;
    overflow: hidden;
    height: 140px;
    transition: all .4s ease;
    will-change: transform;
    margin-bottom: 10px;
    transform: none;
}
.our_team .team_item.slick-center .team_item_text {
    transform: translate3d(0, -80px, 0);
}
.our_team .team_item .team_item_figure {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate3d(-50%, 20px, 0);
    visibility: hidden;
    opacity: 0;
}
.our_team .team_item .team_item_figure img {
    border-radius: 50%;
}
.our_team .team_item.slick-center .team_item_figure {
    transform: translate3d(-50%, 0, 0);
    transition: all .3s ease .1s;
    visibility: visible;
    opacity: 1;
}
.our_team .team_item .team_item_author a {
    color: #151515;
}
.our_team .team_item .team_item_author {
    letter-spacing: .05em;
    text-transform: none;
    margin-top: 25px;
    font-size: 18px;
    margin-bottom: 5px;
}
.our_team .team_item .team_item_status {
    font-size: 14px;
    letter-spacing: .05em;
    color: #6046b6;
}

.site_statistic{
    background: url(images/bg_statistic.jpg) no-repeat scroll center top transparent;
    color: #FFF;
    padding: 60px 0;
}
.site_statistic .content_statistic{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.site_statistic .item {
    text-align: center;
    padding: 0 35px;
    padding-top: 80px;
}
.site_statistic .item.articles {
    background: url(images/icon_master_class.png) no-repeat scroll center top transparent;
}
.site_statistic .item.drawing {
    background: url(images/icon_drawing.png) no-repeat scroll center top transparent;
}
.site_statistic .item.expert {
    background: url(images/icon_expert.png) no-repeat scroll center top transparent;
}
.site_statistic .item.comment {
    background: url(images/icon_comment.png) no-repeat scroll center top transparent;
}
.site_statistic .item .title_item {
    font-size: 20px;
}
.site_statistic .item .value_item {
    font-size: 35px;
    font-weight: 500;
}
.best_articles {
    margin: 60px 0 30px;
}

.feedback form{
    text-align: center;
    position: relative;
}
.wpcf7 .ajax-loader{
    position: absolute;
    left: 50%;
    bottom: 12px;
    margin: 0;
    margin-left: -12px;
}
form input[type="text"],
form textarea,
form input[type="email"] {
    display: block;
    width: 100%;
    min-height: 60px;
    padding: 16px 25px;
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: .075em;
    color: #777777;
    background-color: #ffffff;
    background-image: none;
    border-radius: 0;
    -webkit-appearance: none;
    transition: .3s ease-in-out;
    border: 1px solid #e1e1e1;
    font-family: Roboto;
}
form input[type="text"]:focus,
form textarea:focus,
form input[type="email"]:focus{
    border: 1px solid #cccccc;
}
form .wpcf7-form-control-wrap.your-name{
    margin-right: 30px;
}
form .wpcf7-form-control-wrap.your-name,
form .wpcf7-form-control-wrap.your-email {
    width: calc(50% - 18px);
    margin-bottom: 30px;
    display: inline-block;
}
form .wpcf7-form-control-wrap.your-message{
    margin-bottom: 30px;
    display: block;
}
form textarea {
    height: 120px;
    resize: vertical;
}

.category {
    margin-top: 40px;
}

h1, h2, h3, h4 {
     font-weight: 500;
    line-height: 1.2;
    letter-spacing: .025em;
    margin-bottom: 24px;
}
strong {
    font-weight: 500;
}
ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 24px;
}
p {
    margin-bottom: 24px;
    line-height: 1.5;
}
h1 {
    margin-bottom: 40px;
}
.article_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
} 
.article_content main {
    width: calc(100% - 400px);
}
article {
    color: #151515;
    letter-spacing: 0;
    font-size: 18px;
}
article h1 {
    font-size: 40px;
}
article h2 {
    font-size: 30px;
}
article h3 {
    font-size: 26px;
}
article h4 {
    font-size: 22px;
}

article blockquote{
    background: rgba(96, 70, 182, 0.2);
    padding: 20px 25px;
    border-left: 5px solid #6046b6;
    border-right: 5px solid #6046b6;
    margin-bottom: 24px;
}
article blockquote p:last-child{
    margin-bottom: 0;
}
article ul,
article ol{
    padding-left: 24px;
}
article ul li {
    text-indent: -24px;
    padding-left: 24px;
}
article ul li:before {
    position: relative;
    display: inline-block;
    left: 0;
    top: -1px;
    content: '';
    height: 9px;
    width: 9px;
    margin-right: 15px;
    border-radius: 50%;
    background: rgba(96, 70, 182, 1);
}
.about_site article blockquote {
    background: rgba(255, 231, 69, 0.2);
    border-left: 5px solid #ffe745;
    border-right: 5px solid #ffe745;
}
.about_site article ul li:before {
    background: #ffe745;
}
article ol{
    counter-reset: point;
}
article ol li {
    position: relative;
    padding-left: 39px;
    margin-bottom: 10px;
}
article ol li:before {
    content: counter(point);
    counter-increment: point 1;
    position: absolute;
    width: 27px;
    height: 27px;
    text-align: center;
    background: rgba(96, 70, 182, 1);
    color: #FFF;
    margin-right: 10px;
    border-radius: 50%;
    left: 0;
}

.author_article {
    border: 1px solid #ebebeb;
    padding: 20px;
    margin: 50px 0;
}
.author_article .title_author {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}
.author_article .content_author {
    display: flex;
    align-items: center;
}
.author_article .content_author .author_avar {
    flex-shrink: 0;
    margin-right: 20px;
}
.author_article .content_author .author_avar img {
    border-radius: 50%;
}
.author_article .content_author{
    font-size: 14px;
    margin: 5px 0;
}
.author_article .content_author .author_statistic div {
    display: inline-block;
}
.author_article .content_author .author_statistic .whrite_articles {
    margin-left: -4px;
}
.author_article .content_author .author_statistic .whrite_articles span{
    font-size: 20px;
}
.author_article .content_author .fio {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.author_article .content_author span {
    font-weight: 500;
}
.author_article .content_author .post {
    margin: 5px 0 10px 0;
}
.author_article .content_author .ask_author {
    display: inline-block;
    padding: 6px 21px;
    font-size: 16px;
    cursor: pointer;
    letter-spacing: 0.5px;
}
.diplomas_certificates div {
    display: flex;
    flex-wrap: wrap;
}
.diplomas_certificates div img {
    max-height: 300px;
    margin-right: 20px;
}
.diplomas_certificates div img {
    margin-bottom: 20px;
}
.diplomas_certificates{
    margin-bottom: 20px;
}

.comments-area .title_h3_style {
    margin-bottom: 30px;
}
.title_h3_style {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: .025em; 
    margin-bottom: 20px;
}
.comment-respond {
    margin-top: 40px;
}
.comment-respond label {
    display: block;
    margin-bottom: 6px;
}
.comment-respond .comment-form-author {
    margin: 20px 0 25px;
}
.comment_group .comment  {
    border: 1px solid #e1e1e1;
    padding: 20px;
    margin-bottom: 30px;
    transition: all 0.25s;
}
.comment_group .comment:hover{
    box-shadow: 0 0 25px #e1e1e1;
    border-color: transparent;
}
.comment_group .comment_author {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 7px;
    letter-spacing: 0.5px;
}
.comment_group .comment_author span{
    font-size: 12px;
    font-weight: 400;
    color: #5555;
    letter-spacing: 0;
    margin-left: 2px;
}
.comment_group .comment .comment_text{
    font-size: 16px;
}
.comment_group .comment p:last-child{
    margin-bottom: 0;
}
.comment_group .form-submit{
    margin-top: 20px;
}
.share_article_social {
    text-align: center;
    margin-top: 30px;
}
.share_article_social .title_social {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 500;
}
article .share_article_social ul li {
    text-indent: 0;
}
article .share_article_social ul li:before{
    display: none;
}
.views_post .content_views {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.views_post .content_views .views_row {
    padding: 0 15px;
    width: 33.33%;
}
.views_post .content_views .views_row a.image_row{
    overflow: hidden;
    display: block;
}
.views_post .content_views .views_row a.image_row img{
    transition: all 0.5s;
}
.views_post .content_views .views_row a.image_row:hover img{

    transform: scale(1.1);
}
.views_post .views_row {
    margin-bottom: 30px;
}
.views_post .views_row .title {
    text-align: center;
    padding: 20px 0;
    background: #f5f5f5;
}
.views_post .views_row .title a {
    color: #151515;
    display: block;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.2px;
    padding: 0 10px;
}
.views_post .views_row .title a:hover {
    color: #6046b6;
}


/*Pager*/
.pager a,
.pager span {
	padding: 8px 15px;
	margin: 0 2px 5px 2px;
	display: inline-block;
}
.pager a {
    border: 1px solid #cccccc;
    color: #404040;
	text-decoration: none;
}
.pager span,
.pager a:hover {
    background: #6046b6;
    border: 1px solid #6046b6;
    color: #ffffff;
}

.author_content {
    margin-top: 40px;
}
.author_content .information {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
}
.author_content .information .author_avar{
    flex-shrink: 0;
    margin-right: 20px;
}
.author_content .information .author_avar img {
    border-radius: 50%;
}
.author_content .information .biography_author {
    width: calc(100% - 135px)
}

.article_navigation {
    background: #6046b6;
    padding: 20px;
    color: #FFF;
    margin-bottom: 20px;
}
.article_navigation .title_navigation {
    font-size: 22px;
    margin-bottom: 15px;
}
.article_navigation nav ol{
    padding-left: 0;
    margin-bottom: 0;
}
.article_navigation nav ol li {
    padding-left: 0;
    list-style: decimal;
    list-style-position: inside;
    margin-bottom: 5px;
}
.article_navigation nav ol li:last-child{
    margin-bottom: 0;
}
.article_navigation nav ol li:before {
    display: none;
}
.article_navigation nav ol li a {
    color: #FFF;
    text-decoration: none;
}
.article_navigation nav ol li a:hover{
    text-decoration: underline;
}
/*Верстка сайт бара*/
aside {
    width: 344px;
}
aside .views_post .views_row .title {
    padding: 12px 0;
}
aside .title_releted_block {
    font-weight: 500;
    font-size: 23px;
    text-align: center;
    margin-bottom: 20px;
}
.bottom_post .title_releted_block {
    font-weight: 500;
    font-size: 26px;
    margin-bottom: 20px;
    margin-top: 30px;
}
/*Страница контакты*/
.team_project {
    display: flex;
    flex-wrap: wrap;
}
.team_project .team_item {
    width: 25%;
    padding: 0 15px;
    text-align: center;
    margin-bottom: 20px;
}
.team_project .team_item img {
    border-radius: 50%;
}
.team_project .team_item .team_item_author{
    margin: 15px 0;
}
/*Верстка формы*/

.tiled-gallery,
.dgwt-jg-gallery {
    margin-bottom: 18px;
    margin-top: -5px;
}

footer {
    background: #38393b;
    color: #FFF;
    padding: 40px 0 35px;
    margin-top: 60px;
}
footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
footer a:hover,
footer .navigation_footer ul li a:hover,
footer a.mail:hover {
    color: #ffe745;
    text-decoration: none;
}
footer .logo {
    background: url(images/logo_footer.png) no-repeat scroll 0 0 transparent;
    width: 234px;
    height: 50px;
}
footer a.mail {
    color: #FFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
footer a.mail:before {
    content: "";
    background: url(images/icon_mail.png) no-repeat scroll center center rgba(255, 255, 255, 0.1);
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    margin-right: 12px;
}
footer .social {
    display: flex;
}
footer .social a{
    width: 35px;
    height: 35px;
    margin-left: 12px;
}
footer .social a:hover{
    background-color: #6046b6 !important;
}
footer .social a.vk{
    background: url(images/icon_vk.png) no-repeat scroll center center rgba(255, 255, 255, 0.1);
}
footer .social a.fb{
    background: url(images/icon_fb.png) no-repeat scroll center center rgba(255, 255, 255, 0.1);
}
footer .social a.od{
    background: url(images/icon_od.png) no-repeat scroll center center rgba(255, 255, 255, 0.1);
}
footer .social a.yt{
    background: url(images/icon_yt.png) no-repeat scroll center center rgba(255, 255, 255, 0.1);
}
footer .social a.tl{
    background: url(images/icon_tl.png) no-repeat scroll center center rgba(255, 255, 255, 0.1);
}

footer .bottom_group {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 40px;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
}
footer .navigation_footer div{
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 16px;
}
footer .navigation_footer ul {
    display: flex;
    flex-wrap: wrap;
    width: 710px;
    margin-bottom: 0;
}
footer .navigation_footer ul li {
    width: 50%;
    margin-bottom: 5px;
}
footer .navigation_footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}
footer .copyrait{
    color: rgba(255, 255, 255, 0.8);
    width: 340px;
    font-size: 12px;
    margin-bottom: 5px;
}

.search_box {
    position: fixed;
    width: 100%;
    background: #f5f5f5;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
    height: 100%;
}
.search_box .inside_search_box{
    height: 100%;
    align-items: center;
    display: flex;
}
.search_box .container {
    position: relative;
    width: 100%;
}
.search_box .container .close {
    cursor: pointer;
    width: 40px;
    height: 40px;
    margin-bottom: 40px;
    margin-left: auto;
    position: relative;
    cursor: pointer;
}
.search_box .container .close:after {
    content: "";
    height: 100%;
    width: 2px;
    position: absolute;
    background: #cccccc;
    top: 10px;
    left: 20px;
}
.search_box .container .close:before {
    content: "";
    height: 100%;
    width: 2px;
    position: absolute;
    background: #cccccc;
    top: -5px;
    left: 20px;
}
.search_box .container .close:before{
    transform: rotate(45deg) translate(4px, 4px);
}
.search_box .container .close:after {
    transform: rotate(-45deg) translate(7px, -7px);
}
.search_box .container form {
    display: flex;
}




.special_gallery {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    background: #59737d;
    width: 100%;
    height: 100%;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    text-align: center;
    -webkit-transition: opacity .30s ease-in-out;
    -moz-transition: opacity .30s ease-in-out;
    -ms-transition: opacity .30s ease-in-out;
    -o-transition: opacity .30s ease-in-out;
    transition: opacity .30s ease-in-out;
}
.special_gallery .container {
    width: 100%;
}
.special_gallery .close {
    background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NTUwMDQ1RTQ2QkQ0MTFFQjlCMUZCNjQ5QjU0MzBFQzAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NTUwMDQ1RTU2QkQ0MTFFQjlCMUZCNjQ5QjU0MzBFQzAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1NTAwNDVFMjZCRDQxMUVCOUIxRkI2NDlCNTQzMEVDMCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo1NTAwNDVFMzZCRDQxMUVCOUIxRkI2NDlCNTQzMEVDMCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pojk/tcAAAGuSURBVHjaxJjPSsQwEMbTInj0RXwCQfDgUS97FHwD38W7INgirMIigt2WZb14qgs+jgh6ME5wg7E00/yZSQa+Q5ts+tsvzUxSIaUUWx2Dbo3rXKpA5/pa39wHfcnf6DLC1fIvjjTgCehT/o8uM5yOM9XwKMejywynYqMad0GNpcNzAri55dmvoD2zY5PBSZtzPag0F0kOyApxrhiuYlOrBJA2uDcTzgbI7WSNOLcz7I8NZINsuafVFVDpiRASc876O5eBKZzEVquIBcScdMmTdyHO+QKGOlnHwPkC+q5ubFoLLkAsT7YheY4DEHPyGnQ5Vb5SAGKQXnmOE9AVsg+FowBUukLgFrHjlyI+3pG2j+jRmXYlVLVbcMNFQ1LDPSBtbSrAuUP5stXuNTegT/ki2U+ybjYpIF3hbiJq6yoGkvwMQb0zD3UupHwFQYa+c6HpyRvSF64nqN1ekKF5jgtyPQVYJYDzctJ1WgvJ8/FoMk+SnyGIzzil6nBPeYYgnu4XtWFdjmwTN6AD0LdIE6egZuT+Qv+Dw0TvnI+Ts+EimW075ILTUt/ML/T1jwADAJWDdk9pBEcEAAAAAElFTkSuQmCC) 0 0 no-repeat;
    position: absolute;
    width: 40px;
    height: 40px;
    top: 40px;
    right: 40px;
    cursor: pointer;
}


.special_gallery.show {
    z-index: 999;
    opacity: 1;
}
.special_gallery .special_gallery_title {
    color: #ffffff;
    font-size: 23px;
    margin-bottom: 0;
}
@media (max-width: 992px){
    .special_gallery .special_gallery_title {
        font-size: 16px;
        font-weight: 500;
        line-height: 20px;
    }
    .special_gallery .special_gallery_description {
        font-size: 13px;
    }
    .special_gallery .special_gallery_content {
        padding: 0 30px;
    }    
    .special_gallery .special_gallery_content a {
        padding: 0 !important;
    }
}

.special_gallery .special_gallery_description{
    color: #FFF;
    margin-bottom: 15px;
}
.special_gallery .special_gallery_content {
    padding: 0 50px;
}
.special_gallery .special_gallery_content a {
    padding: 0 15px;
    text-align: center;
   /* height: 200px;*/
    overflow: hidden;
}
.special_gallery .special_gallery_content a img  {
    display: inline-block;
}
.special_gallery .special_gallery_content button.slick-arrow {
    background: transparent no-repeat 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAmCAYAAADAzmuWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAxBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6ODcwMDkyRTQ2NTdEMTFFQjg3RDM4MjlENzQ5QTZFRUQiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ODcwMDkyRTM2NTdEMTFFQjg3RDM4MjlENzQ5QTZFRUQiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiBXaW5kb3dzIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9IkIxNTBBMDQ5N0U5MDc1NkUwMjRGM0ZGQkY2QTk1MEY3IiBzdFJlZjpkb2N1bWVudElEPSJCMTUwQTA0OTdFOTA3NTZFMDI0RjNGRkJGNkE5NTBGNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PlO//CYAAAFgSURBVHjaYvj//z8PEG/9DwGPgNgciBkoxSBixX9MYEcNgx/8xw6cKDGYiYGB4RYDdrAXiJ0ZyAVA06WB+OV/3MCP3KAAYRkChgeQazAISwDxQzyGR5JrMAgLAfF9PIYHkmswCPMB8U1KXY5LgpDL48g1GIQFCbg8iVyDQZgTiC/jMTybXINBmAOIz+ExPJNcg2H4OCkuJ8VgViA+j8fwXHINBmFGAi6vJNdgmOFH8RheTa7BMLwbj+EllNYU83EYfJeJgTLwHYc4MwsFhq4F4iAccvPIDYIdeMK3k9zIwxdp7eQmt8N4DK0hN4PswmNoFblZ+iAeQ8vJLYSIysKkGAwqLs/iMbSQnIKeUAGfQ07VxEagYE8npzIl5NI4cqp/ULV/DY+haeQ0WEDV/T1quBTZYEKGxpDbKNxMzcYgMQ1vf0ob3hewlKc+QLyRoioAaLooUqn1GohdqNG5AQgwANabqfuWKw30AAAAAElFTkSuQmCC');
    border: none;
    text-indent: -9999px;
    overflow: hidden;
    width: 22px;
    height: 38px;
    position: absolute;
    top: 50%;
    margin-top: -19px;
    cursor: pointer;
}
.special_gallery .special_gallery_content button.slick-prev.slick-arrow {
    left: 0;
    -moz-transform: rotate(180deg); /* Для Firefox */
    -ms-transform: rotate(180deg); /* Для IE */
    -webkit-transform: rotate(180deg); /* Для Safari, Chrome, iOS */
    -o-transform: rotate(180deg); /* Для Opera */
    transform: rotate(180deg);
}
.special_gallery .special_gallery_content button.slick-next.slick-arrow {
    right: 0;
}
.site_block {
    margin-bottom: 20px;
}


.fix_post,
.fix_post_new {
    top: 100%;
    position: fixed;
    -webkit-transition: transform 0.3s ease 0s;
    -moz-transition: transform 0.3s ease 0s;
    -o-transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
    left: 50%;
    z-index: 99;
    min-width: 100px;
    min-height: 50px;
    -moz-transform: translateY(0) translateX(-50%); /* Для Firefox */
    -ms-transform: translateY(0) translateX(-50%); /* Для IE */
    -webkit-transform: translateY(0) translateX(-50%); /* Для Safari, Chrome, iOS */
    -o-transform: translateY(0) translateX(-50%); /* Для Opera */
    transform: translateY(0) translateX(-50%);
}

.fix_post.show,
.fix_post_new.show {
    -moz-transform: translateY(-100%) translateX(-50%); /* Для Firefox */
    -ms-transform: translateY(-100%) translateX(-50%); /* Для IE */
    -webkit-transform: translateY(-100%) translateX(-50%); /* Для Safari, Chrome, iOS */
    -o-transform: translateY(-100%) translateX(-50%); /* Для Opera */
    transform: translateY(-100%) translateX(-50%);
}

/*

@media (min-width: 600px) {
    .fix_post.show,
    .fix_post_new.show {
        min-width: 320px;
        min-height: 100px;
    }
}

@media (max-width: 599px) {
    .fix_post.show,
    .fix_post_new.show {
        min-width: 320px;
        min-height: 100px;
    }
}
*/
.fix_post.show.hide_s,
.fix_post_new.show.hide_s,
.popular_news.show.hide_s {
    display: none !important;
}

.fix_post .close,
.fix_post_new .close {
    position: absolute;
    top: 0;
    right: 0;
    width: 34px;
    height: 34px;
    background: #000;
    display: block;
    cursor: pointer;
    z-index: 9;
}

.fix_post .close:after,
.fix_post_new .close:after {
    content: "X";
    position: absolute;
    text-align: center;
    left: 0;
    top: 0;
    color: #FFF;
    width: 100%;
    font: bold 18px/34px Arial;
}
.site_block{
    margin-bottom: 20px;
}
.special_gallery .site_block {
    max-width: 800px;
    margin: 20px auto;
}
.breadcrumps_style {
    min-height: 280px;
}