
/* ======= Blog style ======= */
.blog .item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}
.blog .section-title {
    color: #fff;
}
.blog .item:hover img {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(75%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
.blog .item:hover .con {
    bottom: 0;
}
.blog .item img {
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-filter: brightness(100%);
}
.blog .item .date {
    display: inline-block;
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    padding: 10px 10px 5px 10px;
    text-align: center;
    background: var(--primary-color);
}
.blog .item .date span {
    font-family: 'Poppins', sans-serif;
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    line-height: 1.5em;
    margin-bottom: 0px;
}
.blog .item .date i {
    font-family: 'Poppins', sans-serif;
    display: block;
    font-size: 18px;
    font-style: normal;
    color: #fff;
    line-height: 1.5em;
    font-weight: 500;
}
.blog .item .con {
    margin: -160px 20px 90px;
    padding: 25px;
    border-radius: 0;
    overflow: hidden;
    -webkit-transition: .2s cubic-bezier(.3, .58, .55, 1);
    transition: .2s cubic-bezier(.3, .58, .55, 1);
    bottom: -90px;
    position: relative;
    background: #fff;
}
.blog .item .con .category {
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 5px;
    letter-spacing: 2px;
}
.blog .item .con .category a {
    margin-right: 5px;
    position: relative;
    color: var(--primary-color);
}
.blog .item .con .category a:hover {
    color: var(--primary-color);
}
.blog .item .con .category a:last-child {
    margin-right: 0;
}
.blog .item .con .category a:last-child:after {
    display: none;
}
.blog .item .con h5,
.blog .item .con h5 a {
    color: #0f2454;
    font-size: 20px;
    margin-bottom: 0px;
    font-weight: 600;
    line-height: 1.5em;
}
.blog .item .con h5:hover,
.blog .item .con h5 a:hover {
    color: #0f2454;
}
.blog .item .con p {
    color: #fff;
    font-size: 17px;
}
.blog .item .con i {
    color: #fff;
    font-size: 20px;
}

/* pagination */
.blog-pagination-wrap {
    padding: 0;
    margin: 0;
    text-align: center;
}
.blog-pagination-wrap li {
    display: inline-block;
    margin: 0 5px;
}
.blog-pagination-wrap li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 37px;
    text-align: center;
    color: #676977;
    font-weight: 400;
    background: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    border-radius: 100%;
    border: 1px solid #f4f5f8;
}
.blog-pagination-wrap li a i {
    font-size: 11px;
}
.blog-pagination-wrap li a:hover {
    opacity: 1;
    text-decoration: none;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
}
.blog-pagination-wrap li a.active {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
}
@media screen and (max-width: 768px) {
    .blog-pagination-wrap {
        padding: 0;
        margin: 0;
        text-align: center;
    }
}

/* ======= Blog 2 style ======= */
.blog2 .item {
    margin-bottom: 30px;
}
.blog2 .post-img {
    position: relative;
    overflow: hidden;
}
.blog2 .post-img:hover img {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
.blog2 .post-img a {
    display: block;
}
.blog2 .post-img img {
    -webkit-transition: all .5s;
    transition: all .5s;
}
.blog2 .post-img .date {
    display: inline-block;
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    padding: 12px 12px;
    text-align: center;
    background: var(--primary-color);
}
.blog2 .post-img .date span {
    font-family: 'Poppins', sans-serif;
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 500;
    line-height: 1.5em;
}
.blog2 .post-img .date i {
    font-family: 'Barlow', sans-serif;
    display: block;
    font-size: 20px;
    font-style: normal;
    color: #fff;
    font-weight: 600;
}
.blog2 .post-cont {
    padding: 30px 0;
}
.blog2 .post-cont .tag {
    display: block;
    font-weight: 400;
	font-size: 13px;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
	margin-bottom: 5px;
}
.blog2 .post-cont h5 {
    font-size: 30px;
    margin-bottom: 20px;
}
.blog2 .post-cont h5 a {
    color: #0f2454;
}
.blog2 .post-cont h5 a:hover {
    color: #0f2454;
}
.blog2 .post-cont p{
    margin-bottom: 20px;
}
.blog2 .post-cont .date {
    font-family: 'Barlow', sans-serif;
    margin-top: 0px;
    font-size: 13px;
    text-align: right;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 5px;
}
.blog2 .post-cont .date a {
    color: var(--primary-color);
}
.blog2 .post-cont i {
    color: #ccc;
	margin: 0 10px;
	font-size: 13px;
}
/* blog sidebar */
.blog2-sidebar .widget {
    background: #f4f5f8;
    padding: 30px;
    margin-bottom: 30px;
    overflow: hidden;
}
.blog2-sidebar .widget ul {
    margin-bottom: 0;
    padding: 0;
}
.blog2-sidebar .widget ul li {
    margin-bottom: 15px;
    color: #676977;
    font-size: 16px;
    line-height: 1.5em;
}
.blog2-sidebar .widget ul li a {
    color: #676977;
}
.blog2-sidebar .widget ul li a.active {
    color: var(--primary-color);
}
.blog2-sidebar .widget ul li a:hover {
    color: var(--primary-color);
}
.blog2-sidebar .widget ul li:last-child {
    margin-bottom: 0;
}
.blog2-sidebar .widget ul li i {
    font-size: 9px;
    margin-right: 10px;
}
.blog2-sidebar .widget .recent li {
    display: block;
    overflow: hidden;
}
.blog2-sidebar .widget .recent .thum {
    width: 90px;
    overflow: hidden;
    float: left;
}
.blog2-sidebar .widget .recent a {
    display: block;
    margin-left: 105px;
}
.blog2-sidebar .widget-title {
    margin-bottom: 20px;
}
.blog2-sidebar .widget-title h6 {
    padding-bottom: 5px;
    border-bottom: 1px solid #e6eaf6;
    font-size: 20px;
    line-height: 1.75em;
    margin-bottom: 15px;
    color: #0f2454;
}
.blog2-sidebar .search form {
    position: relative;
}
.blog2-sidebar .search form input {
    width: 100%;
    padding: 10px;
    border: 0;
    background: #fff;
	margin-bottom: 0;
}
.blog2-sidebar .search form button {
    position: absolute;
    right: 0;
    top: 0;
    background-color: transparent;
    color: #0f2454;
    border: 0;
    padding: 10px;
    cursor: pointer;
}
.blog2-sidebar .tags li {
    margin: 3px !important;
    padding: 8px 20px;
    background-color: #fff;
    border: 1px solid #fff;
    color: #676977 !important;
    float: left;
}
.blog2-sidebar ul.tags li a {
    font-size: 16px;
    color: #676977;
}
.blog2-sidebar ul.tags li:hover,
.blog2-sidebar ul.tags li a:hover {
    background-color: var(--primary-color);
    color: #fff;
}
.butn-dark {
    position: relative;
    line-height: 1.2em;
    padding-top: 13px;
    padding-bottom: 13px;
}
.butn-dark a {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Barlow', sans-serif;
    background: var(--primary-color);
    color: #fff;
    padding: 14px 25px;
    margin: 0;
    position: relative;
}
.butn-dark a:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 100%;
    z-index: 1;
    background: #1288a2;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.butn-dark a span {
    position: relative;
    z-index: 2;
}
.butn-dark a span i {
    font-size: 10px;
    margin-left: 3px;
}
.butn-dark a:hover:after {
    width: 100%;
    left: 0;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}
.butn-dark a:hover span {
    color: #fff;
}


/* ======= Post style ======= */
.blog-post-section {
    padding-top: 120px;
}
/* Post Comment */
.comments-area {
    padding: 30px 0;
}
.item-form {
    background: #f4f5f8;
    padding: 45px 25px;
}
.comments-area .comments-title {
    font-size: 24px;
    color: #0f2454;
    line-height: 1.2em;
    font-weight: 600;
}
ol.comment-list {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
ol.comment-list li.comment {
    position: relative;
    padding: 0;
}
ol.comment-list li.comment .comment-body {
    position: relative;
    padding: 20px 30px 20px 90px;
    margin-left: 40px;
    color: red;
    position: relative;
}
ol.comment-list li.comment .comment-author {
    display: block;
    margin-bottom: 0px;
}
ol.comment-list li.comment .comment-author .avatar {
    position: absolute;
    top: 20px;
    left: -40px;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background-color: #f4f5f8;
}
ol.comment-list li.comment .comment-author .name {
    display: inline-block;
    font-size: 18px;
    color: #0f2454;
    line-height: 1.2em;
    font-weight: 600;
    margin-bottom: 0;
}
ol.comment-list li.comment .comment-author .says {
    display: none;
    color: #676977;
}
ol.comment-list li.comment .comment-meta {
    color: #676977;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 400;
}
ol.comment-list li.comment .comment-meta a {
    color: var(--primary-color);
}
ol.comment-list li.comment .comment-meta:before,
ol.comment-list li.comment .reply a:before {
    font-family: "FontAwesome";
    font-size: 16px;
    vertical-align: top;
}
ol.comment-list li.comment p {
    font-size: 16px;
    margin: 0 0 15px;
    color: #676977;
}
ol.comment-list li.comment .reply a {
    position: absolute;
    top: 50px;
    right: 30px;
    margin-top: -5px;
    font-size: 14px;
    color: #676977;
}
ol.comment-list li.comment .reply a:hover {
    color: var(--primary-color)
}
ol.comment-list li .children {
    list-style: none;
    margin-left: 80px;
}
ol.comment-list li .children li {
    padding: 0;
}

/* blockquote */
blockquote {
    padding: 45px;
    display: block;
    position: relative;
    background-color: #f4f5f8;
    overflow: hidden;
    margin: 35px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75em;
    color: #676977;
}
blockquote p {
    font-family: inherit;
    margin-bottom: 0 !important;
    color: inherit;
    max-width: 650px;
    width:100%;
    position:relative;
    z-index:3;
}
blockquote:before {
    content: '\e645';
    font-family: 'Themify';
    position: absolute;
    right: 40px;
    bottom: 40px;
    font-size: 110px;
    opacity: 0.07;
    line-height: 1;
    color: #0f2454;
}
blockquote p {
    margin-bottom: 0;
}
blockquote p a {
    color:inherit;
}
blockquote cite {
    display:inline-block;
    font-size: 16px;
    position:relative;
    padding-left: 60px;
    border-color:inherit;
    line-height:1;
    margin-top: 22px;
    font-style:normal;
    color: var(--primary-color);
    font-weight: 400;
}
blockquote cite:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 45px;
    height: 1px;
    border-top: 1px solid; 
    border-color:inherit;
    color: var(--primary-color);
}

/* text field */
.blog-detail input[type="password"]:focus,
.blog-detail input[type="email"]:focus,
.blog-detail input[type="text"]:focus,
.blog-detail input[type="file"]:focus,
.blog-detail input[type="radio"]:focus,
.blog-detail input[type="checkbox"]:focus,
.blog-detail textarea:focus {
    outline: none;
}
.blog-detail input[type="password"],
.blog-detail input[type="email"],
.blog-detail input[type="text"],
.blog-detail input[type="file"],
.blog-detail textarea,
    .contact input[type="password"],
.contact input[type="email"],
.contact input[type="text"],
.contact input[type="file"],
.contact textarea {
    outline: none;
    max-width: 100%;
    margin-bottom: 0px;
    padding: 20px;
    height: auto;
    background: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    border-radius: 0px;
    display: block;
    width: 100%;
    line-height: 1.5em;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #676977;
}
.blog-detail input:focus,
.blog-detail textarea:focus {
    border-bottom-width: 1px;
    border-color: var(--primary-color);
}
.blog-detail input[type="submit"],
.blog-detail input[type="reset"],
.blog-detail input[type="button"],
.blog-detail button,
.contact button {
    text-shadow: none;
    box-shadow: none;
    line-height: 1.75em;
    transition: background-color .15s ease-out;
    background: transparent;
    border: 0px solid transparent;
}
.blog-detail input[type="submit"]:hover,
.blog-detail input[type="reset"]:hover,
.blog-detail input[type="button"]:hover,
.blog-detail button:hover
.contact button:hover {
    border: 0px solid transparent;
}
.blog-detail select {
    padding: 10px;
    border-radius: 5px;
}
@media only screen and (max-width: 767px) {
    .comments-area .padding-30 {
        padding: 15px;
    }
    ol.comment-list li.comment .comment-body {
        margin-bottom: 30px;
        margin-left: 30px;
    }
    ol.comment-list li.comment .comment-author .avatar {
        left: -35px;
        height: 70px;
        width: 70px;
    }
    ol.comment-list li .children {
        margin-left: 20px;
    }
    ol.comment-list li.comment .reply a {
        position: static;
    }
}
@media only screen and (max-width: 480px) {
    ol.comment-list li.comment .comment-body {
        margin-left: 26px;
    }
    ol.comment-list li.comment .comment-author .avatar {
        left: -15px;
        top: 12px;
        width: 60px;
        height: 60px;
    }
    ol.comment-list li.comment .comment-body {
        padding-left: 55px;
    }
}