html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

html {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    display: block;
    max-width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background: #fff;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

header {
    display: block;
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 200;
}

.clear {
    clear: both;
}

/* MAIN */

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1030px;
    }
}

.header-btn {
    display: none;
}

.pre-header {
    display: flex;
    flex-flow: row;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 20px;
    padding-top: 0;
}

.header-top {
    display: block;
    width: 100%;
    position: relative;
    background: #d33d2c;
    background-size: cover;
}

.header-logo:hover,
.header-logo:active{
    text-decoration: none;
}
.header-logo {
    display: inline-block;
    box-sizing: border-box;
    position: relative;
    color: #fff;
    text-decoration: none;
}

.header-logo img {
    width: 100%;
}

.header-logo-text {
    display: flex;
    flex-flow: row;
    align-items: center;
    position: relative;
    color: #fff;
    font-weight: 700;
    font-size: 37px;
    line-height: 1.5;
    text-transform: uppercase;
}
.logo-image img{
    width: 100%;
}
.logo-image{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    width: 50px;
}
.header-logo-desc {
    display: block;
    width: 100%;
    font-weight: 500;
    position: relative;
    color: #fff;
    font-size: 11.1px;
    line-height: 1.5;
    margin: 5px 0 0 0;
    text-align: unset;
}

.header-cover {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.header-nav {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    z-index: 200;
    border-bottom: 2px solid #898989;
}

.header-nav li {
    padding: 25px 0;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    position: relative;
    box-sizing: border-box;
}

.header-nav li:hover:after {
    display: block;
    position: absolute;
    content: '';
    width: 100%;
    height: 3px;
    background: #d33d2c;
    top: calc(100% - 20px);
    left: 0;
}

.header-nav a:hover {
    text-decoration: none;
}

.header-nav a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
}
.header-nav .sub-menu a.has-child:after{
    display: none;
}
.header-nav a.has-child:after{
    display: block;
    content: '';
    position: absolute;
    right: 0;
    top: calc(50% - 8px);
    width: 16px;
    height: 16px;
    background: url(../img/down.svg) center no-repeat;
    background-size: contain;
}
.header-nav a.has-child{
    padding-right: 20px;
}
li:hover .sub-menu{
    display: block;
    left: 0
}
.sub-menu{
    display: none;
    position: absolute;
    top: calc(100% - 5px);
    box-sizing: border-box;
    padding: 10px 0;
    background: rgba(255,255,255,0.9);
}

.sub-menu li{
    padding: 5px 15px;
}
.header-nav .sub-menu li:hover:after{
    display: none;
}
.sub-menu li:hover{
    background: rgba(211,64,44,0.2);
}
.sub-menu a{
    font-size: 12px;
    width: 100%;
    text-align: left;
    white-space: nowrap;
}
.main-content{
    position: relative;
    z-index: 100;
    min-height: 60vh;
}
.slider-cover {
    padding: 20px 100px 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #898989;
}

.slider {
    display: block;
    position: relative;
    box-sizing: border-box;
    background: #ffffff;
}

.main-post-img {
    display: block;
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
}

.main-post-img img {
    width: 100%;
    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
}

.main-post-title {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.main-slider {
    display: block;
    position: relative;
    height: 320px;
}

.main-slider-item {
    display: block;
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
}


.main-post-text {
    display: block;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: justify;
}

.main-slider-item img {
    width: 100%;
    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
}

.quote-image {
    display: block;
    width: 150px;
    position: relative;
}

.quote-main {
    width: calc(100% - 160px);
    box-sizing: border-box;
    padding-right: 15px;
    color: #333333;
    font-size: 16px;
    text-align: right;
    line-height: 1.5;
    font-style: italic;
}

.quote-image img {
    width: 100%;
}

.quote-cover-body {
    display: block;
    position: relative;
    box-sizing: border-box;
    padding: 0 15px;
    margin-bottom: 15px;
}

.quote-cover-bottom {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    box-sizing: border-box;
    padding-left: 15px;
}

.quote-cover-body p {
    display: block;
    color: #000;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.4;
    text-align: justify;
    text-indent: 10px;
    margin-bottom: 15px;
}

.quote-cover-bottom-text p {
    font-size: 11px;
    color: #000;
    font-weight: 500;
    margin-bottom: 5px;
}

.title-wrapper {
    display: inline-block;
    max-width: 320px;
    width: 100%;
    padding: 15px 10px;
    background: url(../img/header.png) center no-repeat;
    background-size: cover;
    margin-bottom: 15px;
    text-align: left;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.main-page-cover{
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}
.main-page-right{
    width: 48%;
}
.main-page-right .news-item .news-item-image,
.main-page-left .news-item .news-item-image{
    height: 240px;
}
.main-page-right .news-item,
.main-page-left .news-item{
    width: 100%;
}
.main-page-left{
    width: 48%;
}
.main-slider-item-title {
    display: block;
    position: absolute;
    width: 100%;
    color: #ffffff;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    left: 0;
    bottom: 0;
    padding: 40px 40px 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.main-slider .owl-nav button.owl-next span,
.main-slider .owl-nav button.owl-prev span {
    display: none;
}

.main-slider .owl-nav button.owl-next,
.main-slider .owl-nav button.owl-prev {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.2);
    background-image: url(../img/alt.svg);
    background-repeat: no-repeat;
    background-position: center;
    outline: none;
    border-radius: 50%;
    top: calc(50% - 160px);
    transition: 0.3s;
}

.main-slider .owl-nav button.owl-next:hover,
.main-slider .owl-nav button.owl-prev:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.main-slider .owl-nav button.owl-next {
    right: -100px;
}

.main-slider .owl-nav button.owl-prev {
    left: -100px;
}

.main-slider .owl-nav button.owl-prev {
    transform: rotate(180deg);
}

.owl-nav {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    left: 0;
    bottom: 10px;
    z-index: 200;
    width: 100%;
    padding: 0 5px;
}
.quote-list-cover{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.quote-item-image{
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.quote-item-image img{
    width: 100%;
}
.quote-item{
    display: inline-block;
    width: 48%;
    margin-bottom: 20px;
}
.news-list-cover {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.news-item {
    display: block;
    width: 32.5%;
    margin-bottom: 20px;
    background: #ffffff;
    box-sizing: border-box;
    position: relative;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.news-item-tag a {
    display: block;
    font-size: 12px;
    line-height: 14px;
    text-decoration: none;
    color: #878787;
    margin-bottom: 5px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
}

.news-item-title {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 15px; 
    overflow: hidden;
    line-height: 17px;
    font-family: 'Open-sans', sans-serif;
    text-decoration: none;
    transition: 0.3s;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 20;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    overflow: hidden;
    height: 80px;
}
.news-play a{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
}
.news-play{
    position: absolute;
    z-index: 20;
    left: calc(50% - 25px);
    top: calc(50% - 25px);
}
.news-play a img{
    height: 30px;
    width: auto;
    transform: rotate(-90deg);
    position: relative;
    top: 0px;
    left: 2px;
}
.news-item-title:hover {
    color: #fff;
    text-decoration: none;
}

.news-item-image {
    display: block;
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-item-image img {
    width: 100%;
    min-height: 100%;
    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
}

.sidebar-search {
    display: block;
    width: 100%;
    background: #ffffff;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 20px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.sidebar-search input {
    width: 100%;
    box-sizing: border-box;
    padding: 5px 10px;
    border: 1px solid rgba(51, 51, 51, 0.3);
    border-radius: 3px;
}

.sidebar-money iframe {
    margin-bottom: -15px;
}

.sidebar-money {
    display: block;
    box-sizing: border-box;
    padding: 10px 10px 0;
    background: #ffffff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.sidebar-news-item {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    margin-top: 20px;
}

.sidebar-news-image {
    display: block;
    width: 70px;
    height: 70px;
    overflow: hidden;
    position: relative;
}

.sidebar-news-image img {
    min-width: 100%;
    height: 100%;
    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
}

.sidebar-news-body {
    display: block;
    width: calc(100% - 85px);
}

.sidebar-news-title {
    display: block;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: #333333;
    font-family: 'Open-sans', Sans-Serif;
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #592f17;
}

.sidebar-category {
    display: block;
    box-sizing: border-box;
    padding: 20px 20px;
    background: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.sidebar-category-title {
    display: block;
    margin-bottom: 15px;
    color: #2fa52f;
    font-size: 18px;
}

.sidebar-category ul li:last-child {
    margin-bottom: 0;
}

.sidebar-category ul li {
    margin-bottom: 5px;
}

.sidebar-category ul li a {
    display: block;
    color: #333333;
    font-size: 14px;
    line-height: 14px;
}

footer {
    display: block;
    width: 100%;
    background: url(../img/header.png) center no-repeat;
    background-size: cover;
    box-sizing: border-box;
    padding: 25px 0;
    margin-top: 20px;
}

.footer-cover {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    flex-flow: row;
    width: 120px;
    align-items: center;
    justify-content: flex-start;
}

.footer-left img:last-child {
    height: 40px;
}

.footer-left img:first-child {
    margin-right: 10px;
}

.footer-left img {
    height: 55px;
}

.footer-text {
    display: block;
    width: calc(100% - 160px);
    color: #ffffff;
    font-size: 12px;
    line-height: 1.5;
    text-align: justify;
}

.footer-social {
    display: flex;
    flex-flow: row;
    align-items: center;
    margin-top: 15px;
    justify-content: flex-end;
}

.footer-social-item:hover {
    background: #23527c;
    color: #dedede;
    text-decoration: none;
}

.footer-social-item:last-child {
    margin-right: 0;
}

.footer-social-item {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin: 0 5px 0;
    width: 30px;
    height: 30px;
    color: #fff;
    background: #333333;
    transition: 0.3s;
}

.footer-links {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.footer-link {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    padding: 0 10px;
}

.footer-social-item.fb {
    background: #3b5998;
}

.footer-social-item.vk {
    background: #4a76a8;
}

.footer-social-item.od {
    background: #ed812b;
}

.footer-link:hover {
    text-decoration: none;
    color: #23527c;
}

.text-content-cover {
    display: block;
    width: 100%;
    position: relative;
    background: #ffffff;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 20px;
}

.text-cover h1 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 24px;
    letter-spacing: -.5px;
    font-weight: 700;
}

.text-cover h2 {
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 24px;
    letter-spacing: -.5px;
}

.text-cover h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 22px;
    letter-spacing: -.5px;
}

.text-cover h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 22px;
    letter-spacing: -.5px;
}

.text-cover h5 {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
    letter-spacing: -.5px;
}

.text-cover h6 {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 18px;
    letter-spacing: -.5px;
}

.text-cover p {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 15px 0;
}

.text-cover img.aligncenter {
    margin: 20px auto;
    display: block;
}

.text-cover img.alignleft {
    float: left;
    margin-right: 20px;
}

.text-cover img.alignright {
    float: right;
    margin-left: 20px;
}

.text-cover img {
    max-width: 100%;
    margin: 20px auto;
}

.text-cover strong {
    font-weight: bold;
}

.text-cover a {
    font-size: 14px;
    line-height: 1.5;
    color: #d33d2c;
    text-decoration: none;
    font-weight: 600;
}

.text-cover ul {
    list-style: initial;
    padding-left: 16px;
    padding-top: 16px;
    margin-bottom: 25px;
}

.text-cover ul li {
    line-height: 1.5;
    font-size: 14px;
    padding: 4px;
}

.clear {
    clear: both;
}

.meta-holder {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
    color: #333333;
}

.meta-holder time {
    margin-right: 20px;
}

.meta-holder i {
    display: inline-block;
    margin-right: 5px;
}

.news-wrapper {
    display: block;
    margin-bottom: 20px;
    color: #333333;
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
}

.pagination .first,
.pagination .last {
    display: none;
}

.pagination ul {
    display: flex;
    flex-flow: row;
}

.pagination ul li {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #d33d2c;
    margin: 0 2px;
    position: relative;
}

.pagination ul li:hover {
    background: #22273b;
}

.pagination ul li:hover a:hover,
.pagination ul li:hover span:hover {
    text-decoration: none;
    background: #d33d2c;
    color: #ffffff;
}

.pagination ul li a,
.pagination ul li span {
    font-size: 14px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #d33d2c;
}

.post-toolbar {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: fixed;
    height: 30px;
    background: #d33d2c;
    top: 0;
    left: 0;
    z-index: 5000;
}

.post-toolbar a {
    margin: 0 10px;
    color: #fff;
}

.owl-dots {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    bottom: -28px;
}

.owl-dots button.owl-dot.active {
    background: #d33d2c;
}

.owl-dots button.owl-dot {
    display: block;
    width: 25px;
    height: 10px;
    border: 2px solid #d33d2c;
    margin: 3px;
}

.slider .main-slider .owl-nav:nth-child(4),
.slider .main-slider .owl-dots:nth-child(5) {
    display: none;
}

.videoWrapper{
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 20px;
}

.videoWrapper iframe{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}