
img{
    border: none;
    outline:none;
    max-width: 100%;
    border-radius: 3px;
}

.no-padding{
    padding: 0;
}

.padding-15{padding: 15px;}
.padding-20{padding: 20px;}
.box-padding{padding: 0 50px;}
.pb-80{padding-bottom: 80px;}
.pt-40{padding-top: 40px;}

.bg-white{ background-color: #fff; }
.bg-grey{ background-color: #f9fafa;}
.bg-dark{ background-color: #242323!important;}
.bg-green{ background-color: #4ca80b!important;}
.bg-red{ background-color: #ff5575!important;}
.bg-yellow{ background-color: #f9ae00!important;}
.bg-blue{ background-color: #058aff!important;}
.bg-purple{ background-color: #7d3b98!important;}
.bg-dark{ background-color: #242323!important;}
.bd-top{ border-top: 1px solid #e5e5e5;}
.bd-bottom{ border-bottom: 1px solid #e5e5e5;}
.color-red{ color: #f5756c; }
.color-green{ color: #00a950; }
.mb-10{ margin-bottom: 10px; }
.mb-15{ margin-bottom: 15px; }
.mb-20{ margin-bottom: 20px; }
.mb-25{ margin-bottom: 25px; }
.mb-30{ margin-bottom: 30px; }
.mb-35{ margin-bottom: 35px; }
.mb-40{ margin-bottom: 40px; }
.mb-45{ margin-bottom: 45px; }
.mb-50{ margin-bottom: 50px; }



.overlay{
    width: 100%;
    position: relative;
    z-index: 1;
}
.overlay:before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

/* Preloader Styles */




/* Button Style */

.post-btn{
    background-color: #ff5575;
    font-family: "Lato",sans-serif;
    color: #fff;
    font-size: 12px;
    border-radius: 2px;
    line-height: 35px;
    display: inline-block;
    letter-spacing: 0.2px;
    padding: 0 25px;
}
.post-btn:hover{
    opacity: 0.8;
    color: #fff;
}
.post-btn.btn-blue{
    background-color: #00afd8;
}
.post-btn.btn-green{
    background-color: #00a950;
}
.post-btn.btn-yellow{
    background-color: #f9ae00;
}
/*========== Tittle Heading ==========*/
.tittle-heading{
    background-color: #fafafc;
    border: 1px solid #eee;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    width: 100%;
    height: 55px;
    line-height: 55px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.tittle-heading:before{
    background-color: #d90a2c;
    position: absolute;
    content: "";
    width: 30%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}
.tittle-heading:after{
    background-color: #fafafc;
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    left: 27%;
    top: -103px;
    transform: rotate(60deg);
}
.tittle-heading h2{
    color: #fff;
    font-size: 16px;
    margin: 0;
    height: 50px;
    line-height: 50px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.tittle-heading img{
    float: right;
    width: 20px;
    z-index: 1;
}


/* ==========================================================================
   3.0 Main Slider Section
   ========================================================================== */
.main-slider-section{
    background-color: #fff;
    padding-top: 30px;
    padding-bottom: 40px;
}
.mini-block,
.slide-wrap{
    width: 50%;
    float: left;
}
.main-slide .slide-wrap:first-child{
    padding-right: 5px;
}
.slide-wrap .mini-block:nth-child(2n + 1){
    padding-right: 5px;
}
.slide-wrap .mini-block:nth-child(1),
.slide-wrap .mini-block:nth-child(2){
    padding-bottom: 5px;
}
.slide-wrap{
    position: relative;
    height: 470px;
}
.slide-wrap-inner{
    position: relative;
    overflow: hidden;
    height: 470px;
}
.slide-wrap-inner .post-img{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    left: 0;
    top: 0;
    transition: all 0.2s ease-in-out;
}
.slide-wrap-inner:hover .post-img{
    transform: scale(1.05);
    
}
.slide-content{
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    bottom: 0;
    padding: 30px;
    z-index: 2;
}
.overlay{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 65%;
    transition: opacity 0.2s;
    background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.85));
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.slide-content h3{
    margin: 0;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: -0.5px;
}
.slide-content h3 a{
    color: #fff;
}
.hover-line{
    position: relative;
    display: inline;
    background: -webkit-gradient(linear,left top,right top,from(currentColor),to(currentColor));
    background: -webkit-linear-gradient(left,currentColor 0%,currentColor 100%);
    background: -o-linear-gradient(left,currentColor 0%,currentColor 100%);
    background: linear-gradient(to right,currentColor 0%,currentColor 100%);
    background-size: 0px 2px;
    background-position: 0 95%;
    -webkit-transition: background-size .25s cubic-bezier(.785,.135,.15,.86) 0s;
    -o-transition: background-size .25s cubic-bezier(.785,.135,.15,.86) 0s;
    transition: background-size .25s cubic-bezier(.785,.135,.15,.86) 0s;
    padding: .1% 0;
    background-repeat: no-repeat;
}
.slide-wrap-inner:hover .hover-line{
    background-size: 100% 2px;
}
.post-author,
.slide-content .post-date{
    margin-bottom: 10px;
    font-size: 12px;
    color: #fff;
    margin-right: 15px;
}
.post-author i,
.slide-content .post-date i{
    background-color: #f74f4f;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50%;
    font-size: 12px;
    text-align: center;
    color: #fff;
    display: inline-block;
    margin-right: 8px;
}
.post-author i{
    background-color: #fda400;
}
.post-author:hover{
    color: #fff;
}
.post-cat{
    background-color: #058aff;
    padding: 3px 15px;
    color: #fff;
    font-size: 12px;
    border-radius: 2px; 
    position: absolute;
    left: 30px;
    top: 30px;
}
.post-cat:hover{
    opacity: 0.8;
    color: #fff;
}
.slide-content .post-date{
    color: #fff;
    display: inline-block;
}
.mini-block{
    width: 50%;
    height: 240px;
}
.mini-block .slide-wrap-inner{
    height: 235px;
}
.mini-block .slide-content h3{
    font-size: 18px;
    line-height: 25px;
}
.mini-block .slide-content{
    padding: 20px;
}
.mini-block .post-cat{
    left: 20px;
    top: 20px;
}
/*========== Slider Navigation ==========*/
.main-slider{
    position: relative;
}
.owl-controls .owl-nav div{
    background-color: #fff;
    position: absolute;
    width: 20px;
    height: 40px;
    line-height: 40px;
    font-size: 10px;
    text-align: center;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.2s ease-in-out;
    visibility: hidden;
    opacity: 0;
}
.owl-controls .owl-nav div:hover{
    background-color: #d90a2c;
    color: #fff;
}
.owl-carousel:hover .owl-controls .owl-nav div{
    visibility: visible;
    opacity: 1;
}
.owl-carousel .owl-controls .owl-nav div.owl-next{
    left: auto;
    right: 0;
}
/* ==========================================================================
   4.0 Post Carousel
   ========================================================================== */
.post-carousel{
    position: relative;
}
.post-card{
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 300px;
}
.post-carousel .post-card h3 a{
    color: #fff;
}
.post-card .post-thumb{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease-in-out;
}
.post-card:hover .post-thumb{
    transform: scale(1.03);
    opacity: 0.9;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    
}
.post-card .post-meta{
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    bottom: 0;
    padding: 20px;
    z-index: 2;
}
.post-card .post-cat{
    position: absolute;
    width: auto;
    height: auto;
    left: 20px;
    top: 20px;
}
.post-card h3{
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}
.post-card h3 a{
    color: #393e46;
}
.post-card:hover .hover-line{
    background-size: 100% 2px;
}
#post-carousel-2 .post-card h3{
    font-size: 18px;
}
.post-block-inner{
    background-color: #fff;
    padding: 30px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 1px solid #eee;
    border-top: 0;
    display: block;
}
.post-block-inner .post-list-container .big-post h3 a{
    color: #fff;
}
.post-list-container .list-post,
.post-list-container .big-post{
    width: 50%;
    float: left;
}
.post-list-container .big-post{
    padding-right: 20px;
}
.post-list-container .big-post .post-card{
    min-height: 443px;
}
.post-list-container .big-post h3{
    font-size: 22px;
    line-height: 32px;
}
.post-list-container .list-post h3{
    color: #393e46;
    font-size: 14px;
    letter-spacing: -0.2px;
    margin: 0;
}
.list-post .post-card{
    padding-left: 130px;
    min-height: 80px;
}
.list-post .post-card:not(:last-of-type){
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
    margin-bottom: 20px;
}
.list-post .post-card .post-thumb{
    width: 120px;
    height: 80px;
    transform: scale(1);
}
.list-post .post-card .post-meta{
    position: inherit;
    padding: 0;
    padding-left: 10px;
    margin-top: 5px;
}
.list-post .post-date{
    font-family: "Poppins",sans-serif;
    font-size: 12px;
    color: #777;
    margin-bottom: 5px;
    font-weight: 500;
}
.list-post .post-date i{
    margin-right: 8px;
    font-weight: bold;
}

.tech-post .list-post,
.tech-post .big-post{
    width: 100%;
    padding-right: 0;
}
.tech-post .big-post .post-card{
    min-height: auto;
}
.tech-post .list-post .post-card:nth-child(2n + 1){ padding-right: 20px; }
.tech-post .list-post .post-card:nth-child(3),
.tech-post .list-post .post-card:nth-child(4){
    margin-bottom: 0;
    padding-bottom: 0;
}
.tech-post .big-post .post-meta{}
.tech-post .big-post .post-card .post-cat{
    left: 30px;
}
.tech-post .post-card .post-meta{
    position: inherit;
    padding: 0;
    margin-left: 10px;
}
.tech-post .post-card .post-meta h3 a{
    color: #393e46;
}
.tech-post .post-card .col-lg-6:last-child{
    padding-left: 0;
}
.tech-post .list-post{
    margin-top: 30px;
}
.tech-post .list-post .post-card{
    width: 50%;
    float: left;
}
.tech-post .list-post .post-card{
    margin-bottom: 15px;
    border: none;
}
.tech-post .list-post .post-card .post-date{
    color: #777;
}

.grid-post .xs-padding{
    padding-bottom: 30px;
}
.grid-post .post-card{
    position: inherit;
    border-radius: 5px;
    -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
}
.grid-post .post-card{}
.grid-post .post-thumb{
    width: 100%;
    height: 350px;
}
.grid-post .post-meta{
    position: inherit;
    padding: 30px;
}
.grid-post .post-meta h3{
    font-size: 18px;
}
.grid-post .post-meta h3 a{
    color: #393e46;
}


@media (max-width: 768px){
    .grid-post .post-meta,
    .post-block-inner{
        padding:  20px;
    }
}

.sidebar-posts{
    position: relative;
    min-height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}
.sidebar-posts:last-child{
    margin-bottom: 0;
    border: none;
    padding: 0;
}
.sidebar-posts .post-thumb{
    width: 120px;
    height: 80px;
    position: absolute;
    left: 0;
    top: 0;
}
.sidebar-posts .post-thumb img{
    max-width: 100%;
}
.sidebar-posts .post-meta{
    padding-left: 130px;
    margin-top: 5px;
}
.sidebar-posts .post-meta h3{
    color: #393e46;
    font-size: 14px;
    letter-spacing: -0.2px;
    margin: 0;
}
.sidebar-posts:hover .hover-line{
    background-size: 100% 2px;
}
.sidebar-posts .post-meta h3 a{
    color: #393e46;
}
.sidebar-posts .post-meta .post-date{
    font-family: "Poppins",sans-serif;
    font-size: 12px;
    color: #777;
    margin-bottom: 5px;
    font-weight: 500;
}
.sidebar-posts .post-meta .post-date i{
    margin-right: 5px;
}

.widget-tittle{
    background-color: #fafafc;
    border: 1px solid #eee;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    width: 100%;
    height: 55px;
    line-height: 55px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -1px;
}
.widget-tittle h3{
    margin: 0;
    font-size: 16px;
}
.widget-tittle img{
    float: right;
    width: 20px;
}
.widget-box{
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #eee;
    padding: 20px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.category-list li{
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.category-list li:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
.category-list li a{
    font-family: "Poppins",sans-serif;
    font-weight: 600;
    color: #393e46;
    letter-spacing: -0.2px;
    font-size: 14px;
}
.category-list li:hover .hover-line{
    background-size: 100% 2px;
}
.category-list li span{
    font-family: "Poppins",sans-serif;
    width: 40px;
    line-height: 20px;
    padding: 0 10px;
    text-align: center;
    color: #fff;
    display: inline-block;
    border-radius: 3px;
    font-size: 12px;
    margin: 0;
}
@media (max-width:992px){.sm-padding{padding:15px}.slide-wrap{width:100%}.main-slide .slide-wrap:first-child{padding-right:0;margin-bottom:5px}}@media all and (max-width:767px){.xs-padding{padding:15px}.sidebar-wrap{padding-left:0}.post-list-container .big-post,.post-list-container .list-post,.tech-post .list-post .post-card{width:100%}.post-list-container .big-post{padding-right:0;padding-bottom:20px}.post-list-container .big-post .post-card{min-height:320px}.tech-post .list-post .post-card:nth-child(3){margin-bottom:15px}.tech-post .list-post .post-card:nth-child(odd){padding-right:0}.tittle-heading:before{width:50%}.tittle-heading:after{left:42%}}@media all and (max-width:580px){.slide-wrap{height:auto}.slide-wrap-inner{height:235px}.mini-block{width:100%}.slide-wrap .mini-block:nth-child(odd){padding-right:0}.slide-content h3{font-size:18px;line-height:25px}}