

.index_cont {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 0 8px 32px;
}

/** Main Articles with slider **/

#main_article_slider {
    position: static;
}

.main_article {

}

.main_article__container {
    position: relative;
    height: 350px;
    border-radius: 4px;
    overflow: hidden;
}

.main_article__image {
    height: 350px;
}

.main_article__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main_article__content {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 16px 32px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
    cursor: pointer;
}

.main_article__content:hover {
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.90) 90%);
}

.main_article__date {
    color: #fff;
    margin-bottom: 16px;
    font-size: 14px;
}

.main_article__title {
    margin-bottom: 16px;
    width: 100%;
}

.main_article__title a {
    font-family: 'Roboto Slab', serif;
    color: #fff;
    font-size: 35px;
    line-height: 42px;
    text-decoration: none;
    transition: 0.4s;
}

.main_article__title a:hover {
    text-decoration: underline;
}

.main_article__excerpt {
    color: #fff;
    font-size: 15px;
    width: 100%;
    margin-bottom: 16px;
}

.main_article__meta .link_cat {
    margin-right: 8px;
}

.main_article__meta .link_comments {
    color: #fff;
    transition: 0.4s;
}

.main_article__meta .link_comments svg {
    fill: #fff;
    width: 14px;
    height: 14px;
    margin-right: 8px;
    transition: 0.4s;
}

.main_article__meta .link_comments:hover {
    color: #0093d9;
}

.main_article__meta .link_comments:hover svg {
    fill: #0093d9;
}

/** News Blocks **/

.news_container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding: 0 8px 8px 8px;
}

.news_container.blue {
    background-color: #ecf8fe;
}

.news_article {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #e8e8e8;
    background: #fdfdfd;
    width: 31%;
    margin: 1%;
    padding: 8px;
    border-radius: 4px;
}

.news_container.blue .news_article {
    background-color: #f7fcfe;
}

.news_body {
    display: flex;
    margin-bottom: 8px;
}

.news_img {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-right: 5%;
    width: 40%;
}

.news_img img {
    max-width: 100%;
    cursor: pointer;
}

.news_content {
    display: flex;
    width: 55%;
    flex-direction: column;
}

.news_date {
    color: #616161;
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 8px;
}

.news_title {
    margin-bottom: 8px;
}

.news_title a {
    transition: 0.4s;
    color: #000;
    text-decoration: none;
    font-size: 18px;
}

.news_title a:hover {
    color: #0093d9;
    text-decoration: underline;
}

.news_excerpt {
    color: #4f4f4f;
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 8px;
}

.news_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news_tags {
    max-width: 90%;
}

.news_comments svg {
    fill: #8e8e8e;
    transition: 0.4s;
    width: 14px;
    height: 14px;
    margin-right: 4px;
}

.news_comments:hover svg {
    fill: #0093d9;
}

.news_article .link_cat {
    margin-right: 8px;
}

.news_article .locked {
    width: auto;
    display: inline-flex;
}

/** Adaptive for news **/

@media screen and (max-width: 1440px) {
    .news_container {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 1040px) {
    .news_container {
        grid-template-columns: 1fr 1fr;
    }
    .news_article{
        width: 48%;
    }
}

@media screen and (max-width: 680px) {
    .news_container {
        grid-template-columns: 1fr;
    }
}

/** InfoBlocks **/

.infoblock_area {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.infoblock_column {
    margin-bottom: 32px;
    width: 100%;
}

.infoblock_column .blocks {
    display: grid;
}

.infoblock_area .column_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #0e0e0e;
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
    border-bottom: 2px solid #e8e8e8;
    padding: 0 0 8px 2px;
}

.infoblock_area .column_title span {
    margin-right: 8px;
}

.infoblock {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 8px;
    border-bottom: 1px dotted #c2c2c2;
    background-color: #ffffff;
    transition: 0.4s;
    cursor: pointer;
}

.infoblock:nth-of-type(2n) {
    background-color: #fcfcfc;
}

.infoblock:last-of-type {
    border-bottom: none;
}

.infoblock:hover {
    background-color: #f7fcfe;
}

.infoblock .date {
    color: #616161;
    font-size: 13px;
    line-height: 14px;
    font-weight: 300;
    margin-bottom: 8px;
}

.infoblock .title {
    font-family: 'Roboto Slab', serif;
    font-size: 17px;
    line-height: 22px;
}

.infoblock .title a {
    color: #000;
    text-decoration: none;
}

.infoblock .title:hover a {
    text-decoration: underline;
    color: #0093d9;
}

/** Adaptive for Infoblocks **/

@media screen and (max-width: 1240px) {

    .infoblock_area {
        padding: 16px;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 16px;
    }

    .infoblock_area .column_title {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 800px) {
    .infoblock_area {
        grid-template-columns: 1fr;
    }

    .infoblock_column .blocks {
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 10px;
    }

    .infoblock:nth-of-type(2n) {
        background-color: #fff;
    }

    .infoblock:last-of-type {
        border-bottom: 1px dotted #c2c2c2;
    }

}

@media screen and (max-width: 500px) {
    .infoblock_column .blocks {
        grid-template-columns: 1fr;
        grid-column-gap: 0;
    }

    .infoblock:nth-of-type(2n) {
        background-color: #fcfcfc;
    }

    .infoblock:last-of-type {
        border-bottom: none;
    }

}

/** Expert block **/

.experts_block {
    max-width: 1600px;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    width: 100%;
    padding: 40px 0;
    position: static !important;
}

.experts_container {
    display: flex;
    position: static !important;
}

.expert_article {
    display: flex;
    padding: 10px;
    border-left: 1px dotted #b3b3b3;
    width: 100%;
}

.expert_article .article_content {
    display: flex;
    flex-direction: column;
    margin-right: 8px;
    width: 100%;
}

.expert_article .article_title {
    margin-bottom: 16px;
    width: 100%;
    padding-left: 28px;
}

.expert_article .article_title a {
    color: #000;
    font-family: 'Roboto Slab', serif;
    text-decoration: none;
    font-size: 18px;
    transition: 0.4s;
}

.expert_article .article_title a:hover {
    color: #0093d9;
    text-decoration: underline;
}

.expert_article .article_excerpt {
    display: flex;
    width: 100%;
}

.expert_article .article_excerpt .quote {
    margin-right: 8px;
}

.expert_article .article_excerpt .quote svg {
    width: 20px;
    height: 20px;
}

.expert_article .article_excerpt .content {
    color: #626262;
}

.expert_article .expert_meta {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.expert_article .expert_avatar {
    margin-bottom: 8px;
}

.expert_article .expert_name {
    margin-bottom: 8px;
    font-weight: 600;
    color: #000;
}

.expert_article .expert_description {
    margin-bottom: 8px;
    color: #484848;
    font-size: 12px;
    line-height: 14px;
}

.experts_block .owl-prev {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);

    height: 131px;
    width: 48px;
    background-image: url(../images/spr-s555353a5fc.png);
    background-position: 0 -894px;
    background-repeat: no-repeat;

    text-indent: -9999px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease-out;
}

.experts_block .owl-next {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);

    height: 131px;
    width: 48px;
    background-image: url(../images/spr-s555353a5fc.png);
    background-position: 0 -1512px;
    background-repeat: no-repeat;

    text-indent: -9999px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease-out;
}

.experts_block:hover .owl-prev,
.experts_block:hover .owl-next {
    opacity: 0.7;
    visibility: visible;
}

.experts_block .owl-prev:hover,
.experts_block .owl-next:hover {
    opacity: 1;
}

@media screen and (max-width: 1639px) {

    .experts_block {
        max-width: 1400px;
    }

}

@media screen and (max-width: 1439px) {

    .experts_block {
        max-width: 1200px;
    }

}

@media screen and (max-width: 1239px) {

    .experts_block {
        max-width: 992px;
    }

}

@media screen and (max-width: 1039px) {

    .experts_block {
        width: 100%;
        max-width: none;
        padding: 8px;
    }

}

.bottom_articles {
    display: flex;
    margin-bottom: 32px;
}

.bottom_articles > div {
    width: 50%;
}

.trucking_articles {
    margin-right: 32px;
}

.bottom_articles__grid {
    display: flex;
    flex-wrap: wrap;
}

.bottom_article {
    display: flex;
    padding-top: 16px;
    padding-bottom: 8px;
    padding-right: 8px;
    border-bottom: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    width: 50%;
}

.bottom_article:nth-of-type(1) {
    padding-top: 0;
}

.bottom_article:nth-of-type(2) {
    padding-top: 0;
}

.bottom_article:nth-of-type(2n) {
    border-right: none;
    padding-left: 16px;
}

.bottom_article:last-of-type {
    border-bottom: none;
}

.bottom_article:nth-last-of-type(2) {
    border-bottom: none;
}

.bottom_article .image {
    margin-right: 16px;
}

.bottom_article .image img {
    width: 100px;
    height: 100px;
    border-radius: 3px;
}

.bottom_article .content {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.bottom_article .date {
    margin-bottom: 8px;
    color: #616161;
    font-size: 13px;
    line-height: 14px;
}

.bottom_article .title {
    font-family: 'Roboto Slab', serif;
    font-size: 18px;
    line-height: 22px;
}

.bottom_article .title a {
    color: #000;
    text-decoration: none;
    transition: 0.4s;
}

.bottom_article .title a:hover {
    color: #4ec2f4;
    text-decoration: underline;
}

@media screen and (max-width: 1240px) {

    .bottom_articles__grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .bottom_article {
        padding: 8px 8px 8px 0;
        border-right: none;
        border-bottom: 1px dotted #c2c2c2;
    }

    .bottom_article:last-of-type {
        border-bottom: none;
    }

    .bottom_article:nth-of-type(2n) {
        background-color: #fcfcfc;
        padding-left: 0;
    }

    .bottom_article:nth-of-type(2) {
        padding-top: 8px;
    }

    .bottom_article:nth-last-of-type(2) {
        border-bottom: 1px dotted #c2c2c2
    }

}

@media screen and (max-width: 1040px) {
    .bottom_articles {
        padding: 0 16px;
    }
}

@media screen and (max-width: 680px) {
    .bottom_articles {
        flex-direction: column;
    }

    .bottom_articles > div {
        width: 100%;
        margin-bottom: 32px;
    }

    .news_article {
        width: 100%;
        margin: 0;
    }

}

/** Events **/

.events_container {
    display: flex;
    margin-bottom: 32px;
}

.event_item {
    display: flex;
    flex-direction: column;
    padding: 0 32px;
    border-right: 1px dotted #c2c2c2;
    width: 20%;
}

.event_item:first-of-type {
    padding-left: 0;
}

.event_item:last-of-type {
    padding-right: 0;
    border-right: none;
}

.event_img_cont {
    margin-bottom: 12px;
    width: 100%;
}

.event_img_cont img {
    width: 100%;
    height: auto;
    max-height: 200px;
}

.event_title {

}

.event_title a {
    text-decoration: none;
    transition: 0.4s;
    color: #000;
    font-size: 18px;
}

.event_title a:hover {
    color: #4ec2f4;
    text-decoration: underline;
}

@media screen and (max-width: 1240px) {
    .events_container {
        flex-wrap: wrap;
        justify-content: space-evenly;
    }

    .event_item {
        width: 33%;
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 1040px) {
    .events_container {
        padding: 0 16px;
    }
}

@media screen and (max-width: 840px) {
    .event_item {
        width: 50%;
    }
}

@media screen and (max-width: 840px) {
    .event_item {
        width: 100%;
        flex-direction: row;
        border-right: 0;
        padding: 0;
    }

    .event_img_cont {
        width: auto;
        max-width: 180px;
        margin-right: 16px;
    }
}


