/*** 
=============================================
    Blog Style1 Area Css
=============================================
***/
.blog-style1-area{
    position: relative;
    display: block;
    background: #ffffff;
    padding: 80px 0px;
	padding-top: 60px;
    z-index: 10;
	overflow: visible;
	cursor: default;
}
.blog-style1-area.pdtop{
    padding-top: 150px;
}
.single-blog-style1{
    position: relative;
    display: block;
    margin-bottom: 30px;
}
.single-blog-style1 .img-holder{
    position: relative;
    display: block;
}
.single-blog-style1 .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-right-radius: 11px;
    border-top-left-radius: 11px;
}
.single-blog-style1 .img-holder .inner:after {
    position: absolute;
	display: none;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(255,255,255,0.2); 
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    opacity: 1;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: 1;
}
.single-blog-style1:hover .img-holder .inner:after{ 
    transform: scaleY(1.0);    
}
.single-blog-style1 .img-holder img{
    width: 100%;
    transition: all 100ms linear;
    transition-delay: 0.01s;
	aspect-ratio: 185 / 97;
    background-size: cover;
}
.single-blog-style1:hover .img-holder img {
    transform: scale(1);
    transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}
.single-blog-style1 .text-holder {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 10px 50px 0px rgba(12, 21, 41, 0.15);
    padding: 30px 30px 30px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.single-blog-style1 .text-holder .tag-box{
    position: relative;
    display: block;
    padding-bottom: 13px;
}
.single-blog-style1 .text-holder .tag-box p {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 12px;
    line-height: 25px;
    font-weight: 600;
    text-transform: uppercase;
    background: #eab71c;
    padding: 0 15px;
    border-radius: 5px;
    margin: 0;
}
.single-blog-style1 .text-holder .blog-title {
    color: #0c1529;
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
}
.single-blog-style1 .text-holder .blog-title a{
    color: #0c1529;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-blog-style1 .text-holder .meta-info {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 14px;
}
.single-blog-style1 .text-holder .meta-info li {
    position: relative;
    display: inline-block;
    float: left;
    color: #808080;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    border-right: 1px solid #e5e7ec;
    padding-right: 13px;
    margin-right: 15px;
}
.single-blog-style1 .text-holder .meta-info li:last-child{
    margin-right: 0px;
    padding-right: 0;
    border-right: none;
}
.single-blog-style1 .text-holder .meta-info li a {
    color: #0c1529;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-blog-style1 .text-holder .text {
    position: relative;
    display: block;
    padding-top: 16px;
    padding-bottom: 0px;
}
.single-blog-style1 .text-holder .text p {
    margin: 0;
	margin-bottom: 10px;
	color: #333;
}
.single-blog-style1 .text-holder .button-box{
    position: relative;
    display: block;
}
.single-blog-style1 .text-holder .button-box .btn-one{
    background: #0c1529;
    padding-left: 40px;
    padding-right: 40px;
}
.single-blog-style1 .text-holder .button-box .btn-one:before {
    border: 2px solid #0c1529;
}
/*** 
=============================================
    Blog Grid Style1 Area Css
=============================================
***/
.blog-grid-style1-area{
    position: relative;
    display: block;
    background: #ffffff;
    padding: 150px 0 150px;    
}
.styled-pagination {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-top: 10px;
}
.styled-pagination.pdtop0{
    padding-top: 0;
}
.styled-pagination li{
	position: relative;
	display: inline-block;
    float: none;
	margin: 0 3px;
}
.styled-pagination li a{
	position: relative;
	display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 0%;
    background: #ffffff;
    border: 1px solid #e1e1e1;
	color: #222222;
	font-size: 16px;
	line-height: 48px;
	font-weight: 700;
	text-align: center;
	text-transform:capitalize;
	transition:all 500ms ease;
    font-family: 'Barlow Condensed', sans-serif;
    z-index: 1;
}
.styled-pagination li:hover a,
.styled-pagination li.active a{
    color: #ffffff;
}
.styled-pagination li.prev a,
.styled-pagination li.next a{
    position: relative;
	color: #222222;
    line-height: 48px;
}
.styled-pagination li.prev a i {
    position: relative;
    top: 0px;
    display: inline-block;
    transform: rotate(-90deg);
}
.styled-pagination li.next a i {
    position: relative;
    top: 0px;
    display: inline-block;
    transform: rotate(90deg);
}
.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover{
    color: #ffffff;
}
.blog-grid-style1-area .styled-pagination{
    padding-top: 50px;    
}
/*** 
=============================================
    Blog List Style1 Area style
=============================================
***/
.blog-list-style1-area{
    position: relative;
    display: block;
    background: #ffffff;
    padding: 150px 0 150px;
}
.single-blog-style2 {
    position: relative;
    display: block;
    min-height: 370px;
    padding-left: 250px;
    margin-bottom: 30px;
}
.single-blog-style2 .img-holder{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
}
.single-blog-style2 .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
.single-blog-style2 .img-holder .inner img{
    width: 100%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-blog-style2:hover .img-holder .inner img{
    transform: scale(1.2);
    transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);    
}
.single-blog-style2 .text-holder {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0px 10px 50px 0px rgba(12, 21, 41, 0.15);
    padding: 38px 40px 40px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
.single-blog-style2 .text-holder .tag-box{
    position: relative;
    display: block;
    padding-bottom: 13px;
}
.single-blog-style2 .text-holder .tag-box p {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 12px;
    line-height: 25px;
    font-weight: 600;
    text-transform: uppercase;
    background: #eab71c;
    padding: 0 15px;
    border-radius: 5px;
    margin: 0;
}
.single-blog-style2 .text-holder .blog-title {
    color: #0c1529;
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
}
.single-blog-style2 .text-holder .blog-title a{
    color: #0c1529;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-blog-style2 .text-holder .meta-info {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 14px;
}
.single-blog-style2 .text-holder .meta-info li {
    position: relative;
    display: inline-block;
    float: left;
    color: #808080;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    border-right: 1px solid #e5e7ec;
    padding-right: 13px;
    margin-right: 15px;
}
.single-blog-style2 .text-holder .meta-info li:last-child{
    margin-right: 0px;
    padding-right: 0;
    border-right: none;
}
.single-blog-style2 .text-holder .meta-info li a {
    color: #0c1529;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-blog-style2 .text-holder .text {
    position: relative;
    display: block;
    padding-top: 16px;
    padding-bottom: 26px;
}
.single-blog-style2 .text-holder .text p {
    margin: 0;
}
.single-blog-style2 .text-holder .button-box{
    position: relative;
    display: block;
}
.single-blog-style2 .text-holder .button-box .btn-one{
    background: #0c1529;
    padding-left: 40px;
    padding-right: 40px;
}
.single-blog-style2 .text-holder .button-box .btn-one:before {
    border: 2px solid #0c1529;
}
.blog-list-style1-area .styled-pagination{
    padding-top: 70px;
}
/*** 
=============================================
    Blog Standard Area style
=============================================
***/
.blog-standard-area{
    position: relative;
    display: block;
    background: #ffffff;
    padding: 150px 0 150px;
}
.single-blog-style1.standard{
    margin-bottom: 100px;
}
.single-blog-style1.standard .text-holder{
    padding: 48px 50px 60px;    
}
.single-blog-style1.standard .text-holder .blog-title-big {
    color: #0c1529;
    font-size: 40px;
    line-height: 54px;
    font-weight: 700;
}
.single-blog-style1.standard .text-holder .blog-title-big a{
    color: #0c1529;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
/*** 
=============================================
    Blog Details Area style
=============================================
***/
.blog-details-area{
    position: relative;
    display: block;
    background: #ffffff;
    padding: 150px 0 160px;
}
.blog-details-area .blog-posts{
    position: relative;
    display: block;
}
.blog-details-text-1 {
    position: relative;
    display: block;
    margin-top: -7px;
    margin-bottom: 91px;
}
.blog-details-text-1 p {
    margin-bottom: 28px;
}
.blog-details-image-box{
    position: relative;
    display: block;
}
.blog-details-image-box ul{
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: -5px;
    margin-right: -5px;
}
.blog-details-image-box ul li{
    position: relative;
    display: inline-block;
    float: left;
    margin: 0 5px;
}
.blog-details-image-box ul li .single-box{
    position: relative;
    display: block;
    overflow: hidden;
}
.blog-details-image-box ul li .single-box img{
    width: 100%;
}
.blog-details-text-2 {
    position: relative;
    display: block;
    margin-top: 91px;
}
.blog-details-text-2 h2 {
    font-size: 30px;
    margin-bottom: 26px;
}
.blog-details-text-2 p{}
.blog-details-text-2 ul {
    overflow: hidden;
    margin-top: 21px;
}
.blog-details-text-2 ul li {
    position: relative;
    color: #0c1529;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    font-family: 'Barlow Condensed', sans-serif;
    padding-left: 35px;
    margin-bottom: 9px;
}
.blog-details-text-2 ul li:last-child{
    margin-bottom: 0;
}
.blog-details-text-2 ul li:before {
    position: absolute;
    top: 1px;
    left: 0;
    content: "\f108";
    font-family: Flaticon;
}
.blog-details-text-3 {
    position: relative;
    display: block;
    margin-top: 82px;
    margin-bottom: 91px;
}
.blog-details-text-3 h2{
    font-size: 30px;
    margin-bottom: 27px;
}
.blog-details-text-3 p{}
.categories-social-share-box{
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    flex-wrap: wrap;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 25px 0 25px;
    margin-bottom: 80px;
}
.post-categories-box{
    position: relative;
    display: flex;
    align-content: center;
}
.post-categories-box .title{
    position: relative;
    display: block;
}
.post-categories-box .title h3 {
    color: #0c1529;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    padding: 8px 0 9px;
}
.post-categories-box .categories-items{
    position: relative;
    top: 1px;
    display: block;
    padding-left: 10px;
}
.post-categories-box .categories-items ul {
    overflow: hidden;
    padding: 7px 0;
}
.post-categories-box .categories-items ul li{
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 5px;
}
.post-categories-box .categories-items ul li:last-child{
    margin-right: 0;
}
.post-categories-box .categories-items ul li a{
    color: #808080;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Barlow Condensed', sans-serif;
}
.post-social-share{
    position: relative;
    display: block;
}
.post-social-share ul{
    overflow: hidden;
}
.post-social-share ul li{
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
}
.post-social-share ul li:last-child{
    margin-right: 0;
}
.post-social-share ul li a{
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    background: #466ca9;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    line-height: 45px;
    text-align: center;
}
.post-social-share ul li a.tw{
    background: #55acee;
}
.post-social-share ul li a.gplus{
    background: #dd4b39;    
}
.blog-details-bottom-content {
    position: relative;
    display: block;
}
.comment-box {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 9px;
}
.comment-box .title {
    position: relative;
    display: block;
    padding-bottom: 28px;
}
.comment-box .title h3{
    color: #222222;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
}
.comment-box .outer-box{
    position: relative;
    display: block;
}
.comment-box .single-comment {
    position: relative;
    display: block;
    overflow: hidden;
}
.comment-box .single-comment.marleft110{
    margin-left: 110px;    
}
.comment-box .single-comment.marleft220{
    margin-left: 220px;    
}
.comment-box .single-comment-box {
    position: relative;
    display: block;
    padding-left: 80px;
    margin-bottom: 36px;
}
.comment-box .single-comment-box .img-holder {
    position: absolute;
    left: 0px;
    top: 4px;
    width: 80px;
    height: 80px;
}
.comment-box .single-comment-box .img-holder img{
    width: 100%;
    border-radius: 50%;
}
.comment-box .single-comment-box .text-holder {
    position: relative;
    display: block;
    margin-left: 30px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 31px;
}
.comment-box .single-comment-box .text-holder .top {
    position: relative;
    display: block;
}
.comment-box .single-comment-box .text-holder .top h3 {
    color: #0c1529;
    font-size: 22px;
    line-height: 25px;
    font-weight: 600;
    margin: 0 0 2px;
}
.comment-box .single-comment-box .text-holder .top span{
    font-size: 14px;
}
.comment-box .single-comment-box .text-holder .text {
    position: relative;
    display: block;
    padding-top: 13px;
    padding-bottom: 14px;
}
.comment-box .single-comment-box .text-holder .text p{
    margin: 0;
}
.comment-box .single-comment-box .text-holder .reply {
    position: relative;
    display: block;
}
.comment-box .single-comment-box .text-holder .reply a{
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    transition: all 500ms ease;
}
.comment-box .single-comment-box .text-holder .reply a:hover{
    color: #0c1529;
}
.add-comment-box {
    position: relative;
    display: block;
    padding-top: 53px;
}
.add-comment-box .title {
    position: relative;
    display: block;
    padding-bottom: 32px;
}
.add-comment-box .title h3{
    color: #222222;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
}
.add-comment-box #add-comment-form {
    position: relative;
    display: block;
}
.add-comment-box #add-comment-form .input-box{
    position: relative;
    display: block;
}
.add-comment-box #add-comment-form input[type="text"],
.add-comment-box #add-comment-form input[type="email"],
.add-comment-box #add-comment-form input[type="tel"],
.add-comment-box #add-comment-form textarea {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    width: 100%;
    height: 50px;
    color: #222222;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    padding: 0 25px;
    border-radius: 5px;
    margin-bottom: 30px;
    transition: all 500ms ease;
    font-family: 'Poppins', sans-serif;
}
.add-comment-box #add-comment-form textarea {
    height: 150px;
    padding: 15px 25px;
}
.add-comment-box #add-comment-form input[type="text"]:focus{
    border-color: #171717;    
}
.add-comment-box #add-comment-form input[type="email"]:focus{
    border-color: #171717;    
}
.add-comment-box #add-comment-form textarea:focus{
    border-color: #171717;       
}
.add-comment-box #add-comment-form .button-box {
    position: relative;
    display: block;
}
.add-comment-box #add-comment-form .button-box button{
    padding-left: 40px;
    padding-right: 40px;
    line-height: 60px;
}
.sidebar-wrapper {
    position: relative;
    display: block;
    max-width: 300px;
    width: 100%;
    float: right;
}
.single-sidebar {
    position: relative;
    display: block;
    padding-bottom: 100px;
}
.single-sidebar.pdbtm0{
    padding-bottom: 0;
}
.single-sidebar .title {
    position: relative;
    display: block;
    margin-top: -5px;
    padding-bottom: 37px;
}
.single-sidebar .title h3 {
    color: #0c1529;
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
}
.sidebar-search-box {
    position: relative;
    display: block;
}
.sidebar-search-box form.search-form {
    position: relative;
    display: block;
    width: 100%;
}
.sidebar-search-box .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    background-color: rgb(255, 255, 255);
    border: 1px solid #e5e5e5;
    color: #808080;
    font-size: 16px;
    font-weight: 400;
    padding-left: 19px;
    padding-right: 60px;
    border-radius: 10px;
    transition: all 500ms ease 0s;
    font-family: 'Poppins', sans-serif;
}
.sidebar-search-box .search-form button {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50px;
    height: 60px;
    color: #aaaaaa;
    font-size: 16px;
    line-height: 60px;
    display: block;
    text-align: center;
    border: 0px solid #e1e1e1;
    transition: all 500ms ease 0s;
}
.sidebar-search-box .search-form button i {
    font-size: 16px
}
.sidebar-search-box .search-form input[type="text"]:focus {
    color: #000;
}
.sidebar-search-box .search-form input::-webkit-input-placeholder {
    color: #808080;
}
.sidebar-search-box .search-form input:-moz-placeholder {
    color: #808080;
}
.sidebar-search-box .search-form input::-moz-placeholder {
    color: #808080;
}
.sidebar-search-box .search-form input:-ms-input-placeholder {
    color: #808080;
}
.single-sidebar .sidebar-categories-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: -8px;
}
.single-sidebar .sidebar-categories-box li {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 21px;
    padding-left: 0px;
    font-family: 'Barlow Condensed', sans-serif;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-sidebar .sidebar-categories-box li:last-child{
    margin-bottom: 0;
}
.single-sidebar .sidebar-categories-box li:hover{
    padding-left: 30px;    
}
.single-sidebar .sidebar-categories-box li:before {
    position: absolute;
    top: 1px;
    left: 0;
    font-size: 18px;
    content: "\f108";
    font-family: Flaticon;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    transform: scaleY(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-sidebar .sidebar-categories-box li:hover:before{
    transform: scaleY(1.0);    
}
.single-sidebar .sidebar-categories-box li a {
    color: #0c1529;
    transition: all 500ms ease;
}
.single-sidebar .latest-posts{
    position: relative;
    display: block;
}
.single-sidebar .latest-posts li {
    position: relative;
    display: block;
    margin-bottom: 35px;
}
.single-sidebar .latest-posts li:last-child{
    margin-bottom: 0;
}
.single-sidebar .latest-posts li .inner {
    position: relative;
    display: block;
    min-height: 90px;
    padding-left: 90px;
}
.single-sidebar .latest-posts li .img-box{
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 90px;
    overflow: hidden;
    border-radius: 8px;
}
.single-sidebar .latest-posts li .img-box img{
    width: 100%;
}
.single-sidebar .latest-posts li .img-box .overlay-content {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.90);
    border-radius: 0px;
    opacity: 0;
    transform: perspective(400px) scale(0);
    transform-origin: top;
    transition: all 0.5s ease-in-out 0s;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.single-sidebar .latest-posts li:hover .img-box .overlay-content{
	opacity: 1;
    transform: perspective(400px) scale(1.0); 
    transition: all 0.3s ease-in-out 0.3s;    
}
.single-sidebar .latest-posts li .img-box .overlay-content a{
    color: #ffffff;
    font-size: 14px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-sidebar .latest-posts li .title-box {
    position: relative;
    display: block;
    min-height: 90px;
    padding-left: 20px;
}
.single-sidebar .latest-posts li .title-box p{
    color: #808080;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    margin: 0;
}
.single-sidebar .latest-posts li .title-box h4 {
    font-size: 22px;
    line-height: 24px;
    font-weight: 600;
    margin: 10px 0px 0;
}
.single-sidebar .latest-posts li .title-box h4 a{
    color: #0c1529;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}