/* Start banner*/
@import url("components/ArticleBanner.css");
@import url('components/Popups.css');
@import url("components/SocialsWidget.css");
.blog-cont {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px 30px;
}
    .blog-cont h3 {
        color: var(--primary-color);
        font-size: 46px;
        font-style: italic;
    }

    .blog-cont h4 {
        font-size: 22px;
        font-weight: 200;
        line-height: 24px;
        margin-bottom: 20px;
    }
    .blog-cont p {
        font-size: 18px;
        font-weight: 200;
        line-height: 24px;
        margin-bottom: 0;
        text-align: center;
    }
.blog-img {
    width: 100%;
    overflow: hidden;
}
    .blog-img img {
        width: 100%;
        object-fit: cover;
        transform: scale(1);
        transition: 2s all;
    }
.order-12 {
    -ms-flex-order: 12;
    order: 12;
}
.home-video-block {
    width: 100%;
    height: 75vh;
    background-size: cover;
}
@media only screen and (max-width:450px) {
    .home-video-block {
        height: 230px;
    }

}