/*** 
=============================================
    Blog Style1 Css
=============================================
***/
.blog-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.blog-style1--gray-bg {
    background-color: var(--thm-gray-bg);
}

.single-blog-style1 {
    position: relative;
    display: block;
    border: 1px solid rgb(34, 34, 34, 0.10);
    padding: 20px 20px 30px;
    margin-bottom: 24px;
}

.single-blog-style1::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    border: 1px solid var(--thm-black);
    opacity: 0;
    transform: perspective(400px) scaleX(0.7);
    transform-origin: center;
    z-index: -1;
}

.single-blog-style1:hover::before,
.single-blog-style1.active::before {
    opacity: 1;
    transform: perspective(400px) scaleX(1.0);
    transition: border-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-blog-style1 .img-holder {
    position: relative;
    display: block;
}

.single-blog-style1 .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-blog-style1 .img-holder .inner img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.single-blog-style1 .img-holder .inner:hover img,
.single-blog-style1.active .img-holder .inner img {
    transform: scale(1.05) rotate(0deg);
}

.single-blog-style1 .img-holder .date-box {
    position: absolute;
    bottom: -25px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 50px;
    height: 50px;
    background-color: var(--thm-base);
    border-radius: 3px;
    z-index: 3;
}

.single-blog-style1 .img-holder .date-box h6 {
    color: #ffffff;
    font-size: 14px;
    line-height: 15px;
}


.single-blog-style1 .text-holder {
    position: relative;
    display: block;
    padding: 30px 10px 0;
}

.single-blog-style1 .category-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    height: 35px;
    border: 1px solid rgba(34, 34, 34, 0.1);
    border-radius: 100px;
    margin-bottom: 25px;
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.single-blog-style1:hover .category-box,
.single-blog-style1.active .category-box {
    border-color: var(--thm-black);
    background-color: var(--thm-black);
}

.single-blog-style1 .category-box span {
    color: var(--thm-base);
    font-size: 14px;
    line-height: 14px;
    font-family: var(--thm-font);
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style1:hover .category-box span,
.single-blog-style1.active .category-box span {
    color: #ffffff;
}

.single-blog-style1 .blog-title {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 34px;
}

.single-blog-style1 .blog-title a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style1 .blog-title a:hover,
.single-blog-style1.active .blog-title a {
    color: var(--thm-base);
}

.single-blog-style1 .text {
    position: relative;
    display: block;
    margin-top: 10px;
}

.single-blog-style1 .bottom-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 21px;
}

.single-blog-style1 .bottom-box .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.single-blog-style1 .bottom-box .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--thm-black);
    color: #ffffff;
    font-size: 22px;
    line-height: 22px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style1:hover .bottom-box .btn-box a,
.single-blog-style1.active .bottom-box .btn-box a {
    background-color: var(--thm-base);
}


.single-blog-style1 .bottom-box .meta-box {
    position: relative;
    display: block;
}

.single-blog-style1 .bottom-box .meta-box .meta-info {
    position: relative;
    display: flex;
    align-items: center;
    line-height: 0;
}

.single-blog-style1 .bottom-box .meta-box .meta-info li {
    position: relative;
    display: block;
}

.single-blog-style1 .bottom-box .meta-box .meta-info li+li {
    margin-left: 25px;
}

.single-blog-style1 .bottom-box .meta-box .meta-info li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font);
    letter-spacing: 0.04em;
    transition: all 200ms linear;
    transition: 0.1s;
}

.single-blog-style1 .bottom-box .meta-box .meta-info li a:hover {
    color: var(--thm-base);
}

.single-blog-style1 .bottom-box .meta-box .meta-info li a span {
    position: relative;
    display: inline-block;
    color: #222222;
    font-size: 18px;
    line-height: 18px;
    top: 1px;
    margin-right: 8px;
    transition: all 200ms linear;
    transition: 0.1s;
}

.single-blog-style1 .bottom-box .meta-box .meta-info li a:hover span {
    color: var(--thm-base);
}


.blog-style1__btn-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 26px;
}

.blog-style1__btn-box .btn-one {
    color: var(--thm-black);
}

.blog-style1__btn-box .btn-one:after {
    border: 1px solid var(--thm-black);
    background-color: transparent;
}












































/*** 
=============================================
    Blog Style2 Css
=============================================
***/
.blog-style2 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 70px;
    z-index: 10;
}

.blog-style2__top {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-bottom: 49px;
}

.blog-style2__top .sec-title {
    padding-bottom: 0;
}

.blog-style2__top .text {
    position: relative;
    top: -4px;
    display: block;
    max-width: 520px;
    width: 100%;
}



/*** 
=============================================
    Blog Page One Css
=============================================
***/
.blog-page-one {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}



/*** 
=============================================
    Blog Page Two Css
=============================================
***/
.blog-page-two {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.blog-page-sidebar-box {
    position: relative;
    display: block;
}




/*** 
=============================================
    Blog Details Area Css
=============================================
***/
.blog-details-page {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 96px;
    z-index: 10;
}

.blog-details-sidebar-box {
    position: relative;
    display: block;
}


.blog-details-page__content {
    position: relative;
    display: block;
}

.blog-details__img-box {
    position: relative;
    display: block;
}

.blog-details__img-box .date-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -25px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 3px;
    background-color: var(--thm-base);
    text-align: center;
}

.blog-details__img-box .date-box h3 {
    color: #ffffff;
    font-size: 14px;
    line-height: 15px;
    font-weight: 400;
}

.blog-details-page__content .meta-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.blog-details-page__content .meta-info .category-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: #ffffff;
    font-size: 14px;
    line-height: 14px;
    font-family: var(--thm-font);
    font-weight: 400;
    height: 35px;
    border: 1px solid var(--thm-black);
    background-color: var(--thm-black);
    border-radius: 100px;
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.blog-details-page__content .meta-info .category-box:hover {
    color: var(--thm-black);
    border-color: var(--thm-base);
    background-color: #ffffff;
}

.blog-details-page__content .meta-info .meta-box {
    position: relative;
    display: block;
    margin-left: 85px;
}

.blog-details-page__content .meta-info .meta-box ul {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-details-page__content .meta-info .meta-box ul li {
    position: relative;
    display: flex;
    align-items: center;
    top: -1px;
}

.blog-details-page__content .meta-info .meta-box ul li+li {
    margin-left: 30px;
}

.blog-details-page__content .meta-info .meta-box ul li .icon {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 14px;
    top: 1px;
}

.blog-details-page__content .meta-info .meta-box ul li .icon span {
    position: relative;
    display: inline-block;
}

.blog-details-page__content .meta-info .meta-box ul li a {
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.56px;
    text-transform: capitalize;
    margin-left: 7px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-details-page__content .meta-info .meta-box ul li:hover a {
    color: var(--thm-base);
}




.blog-details-text-1 {
    position: relative;
    display: block;
    margin-top: 24px;
}

.blog-details-text-1 .inner-title {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.blog-details-text-1 .inner-title h3 {
    color: var(--thm-black);
    font-size: 32px;
    line-height: 42px;
    text-transform: capitalize;
}

.blog-details-text-1 .text {
    position: relative;
    display: block;
}

.blog-details-text-1 .text p {
    margin: 0;
}




.blog-details-text-2 {
    position: relative;
    display: block;
    margin-top: 36px;
}

.blog-details-text-2 h3 {
    color: var(--thm-black);
    font-size: 24px;
    line-height: 32px;
    text-transform: capitalize;
}

.blog-details-text-2 .text-1 {
    position: relative;
    display: block;
    margin-top: 12px;
}

.blog-details-text-2 .text-1 p {
    margin: 0;
}

.blog-details-text-2 .blog-quote {
    position: relative;
    display: flex;
    align-items: start;
    background-color: #F7F7F7;
    padding: 23px 47px 20px;
    padding-right: 65px;
    margin-top: 41px;
}

.blog-details-text-2 .blog-quote .icon {
    position: relative;
    display: block;
    top: 7px;
    line-height: 0;
}

.blog-details-text-2 .blog-quote .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 45px;
    line-height: 45px;
}

.blog-details-text-2 .blog-quote .text {
    position: relative;
    display: block;
    margin-left: 27px;
}

.blog-details-text-2 .blog-quote .text p {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 30px;
    font-family: var(--thm-font-2);
}



.blog-details-text-2 .text-2 {
    position: relative;
    display: block;
    margin-top: 42px;
}

.blog-details-text-2 .text-2 p {
    margin: 0;
}

.blog-details-text-2 .text-3 {
    position: relative;
    display: block;
    margin-top: 35px;
}

.blog-details-text-2 .text-3 ul {
    position: relative;
    display: block;
}

.blog-details-text-2 .text-3 ul li {
    position: relative;
    display: block;
    padding-left: 25px;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-family: var(--thm-font-2);
    font-weight: 400;
}

.blog-details-text-2 .text-3 ul li+li {
    margin-top: 15px;
}

.blog-details-text-2 .text-3 ul li .icon {
    position: absolute;
    top: 4px;
    left: 0;
    line-height: 0;
}

.blog-details-text-2 .text-3 ul li .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 18px;
}





.blog-details-tag-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 41px;
    padding-top: 30px;
    border-top: 1px solid #e9e9e9;
}

.blog-details-tag-box .inner-title {
    position: relative;
    display: block;
    padding-right: 20px;
}

.blog-details-tag-box .inner-title h3 {
    color: var(--thm-black);
    font-size: 16px;
    line-height: 30px;
    text-transform: capitalize;
}

.blog-details-tag-box ul {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.blog-details-tag-box ul li {
    position: relative;
    display: block;
    float: left;
    color: #777777;
    font-size: 16px;
    line-height: 30px;
    font-family: var(--thm-font);
    font-weight: 400;
    text-transform: capitalize;
    background-color: #f7f7f7;
    border-radius: 5px;
    padding: 5px 20px 5px;
    margin-right: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-details-tag-box ul li:last-child {
    margin-right: 0;
}

.blog-details-tag-box ul li:hover {
    color: #ffffff;
    background-color: var(--thm-base);
}




.blog-details-author-box {
    position: relative;
    display: block;
    margin-top: 50px;
}

.blog-details-author-box .blog-details-author {
    position: relative;
    display: flex;
    background-color: var(--thm-black);
    padding: 26px 30px 21px;
}

.blog-details-author-box .blog-details-author .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100px;
    height: 116px;
    top: 4px;
}

.blog-details-author-box .blog-details-author .img-box img {
    width: 100%;
}

.blog-details-author-box .blog-details-author .text-box {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 30px;
}

.blog-details-author-box .blog-details-author .text-box .top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-details-author-box .blog-details-author .text-box .top h3 {
    color: #ffffff;
    font-size: 24px;
    line-height: 30px;
    text-transform: capitalize;
}

.blog-details-author-box .blog-details-author .text-box .top .social-links {
    position: relative;
    display: block;
}

.blog-details-author-box .blog-details-author .text-box .top .social-links ul {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-details-author-box .blog-details-author .text-box .top .social-links ul li {
    position: relative;
    display: block;
}

.blog-details-author-box .blog-details-author .text-box .top .social-links ul li+li {
    margin-left: 30px;
}

.blog-details-author-box .blog-details-author .text-box .top .social-links ul li a {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, 0.30);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-details-author-box .blog-details-author .text-box .top .social-links ul li:hover a {
    color: var(--thm-base);
}

.blog-details-author-box .blog-details-author .text-box .top .social-links ul li a span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 14px;
}

.blog-details-author-box .blog-details-author .text-box .text {
    position: relative;
    display: block;
    margin-top: 9px;
}

.blog-details-author-box .blog-details-author .text-box .text p {
    color: rgba(255, 255, 255, 0.70);
}



.blog-details-page__nav-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgb(31, 36, 46, 0.10);
    border-bottom: 1px solid rgb(31, 36, 46, 0.10);
    padding: 30px 0px 30px;
    margin-top: 50px;
}

.blog-details-page__nav-box .arrow-box {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-details-page__nav-box .arrow-box span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 32px;
    line-height: 32px;
    top: -5px;
}

.blog-details-page__nav-box .arrow-box.left span {
    padding-right: 4px;
}

.blog-details-page__nav-box .arrow-box.right span {
    padding-left: 4px;
}

.blog-details-page__nav-box .arrow-box h5 {
    font-size: 18px;
    line-height: 20px;
    text-transform: capitalize;
}

.blog-details-page__nav-box .arrow-box h5 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-details-page__nav-box .arrow-box h5 a:hover {
    color: var(--thm-base);
}




/*** comments Box Css ***/
.comment-box {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 116px 0 0;
}

.comment-box .inner-title {
    position: relative;
    display: block;
    padding-bottom: 40px;
}

.comment-box .inner-title h2 {
    font-size: 32px;
    line-height: 36px;
}

.comment-box .single-comment {
    position: relative;
    display: block;
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
    padding: 0px 0px 24px;
}

.comment-box .single-comment:last-child {
    border-bottom: 0px solid transparent;
    padding: 0px 0px 0px;
}

.single-comment--style2 {
    margin-top: 30px;
    margin-left: 70px;
}


.comment-box .single-comment-box {
    position: relative;
    display: block;
    padding-left: 70px;
    min-height: 70px;
}

.comment-box .single-comment-box--reply {
    margin-top: 43px;
    margin-left: 100px;
}



.comment-box .single-comment-box .img-holder {
    position: absolute;
    top: 1px;
    left: 0;
    width: 70px;
    height: 83px;
}

.comment-box .single-comment-box .img-holder img {
    width: 100%;
}

.comment-box .single-comment-box .text-holder {
    position: relative;
    display: block;
    padding-left: 20px;
}

.comment-box .single-comment-box .text-holder .top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comment-box .single-comment-box .text-holder .top h3 {
    font-size: 18px;
    line-height: 18px;
    text-transform: capitalize;
}

.comment-box .single-comment-box .text-holder .top a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-gray);
    font-size: 13px;
    line-height: 13px;
    font-family: var(--thm-font);
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 3px;
    background-color: var(--thm-gray-bg);
    padding: 6px 15px 6px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.comment-box .single-comment-box .text-holder .top a:hover {
    color: #ffffff;
    background-color: #F42549;
}

.comment-box .single-comment-box .text-holder .top a span {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 12px;
    line-height: 10px;
    top: 1px;
    margin-left: 5px;
}

.comment-box .single-comment-box .text-holder .text {
    position: relative;
    display: block;
    padding-top: 15px;
}

.comment-box .single-comment-box .text-holder .text p {
    margin: 0;
}




.reply-form-box {
    position: relative;
    display: block;
    padding-top: 107px;
}

.reply-form-box .title {
    position: relative;
    display: block;
    padding-bottom: 35px;
}

.reply-form-box .title h2 {
    font-size: 32px;
    line-height: 36px;
}

.reply-form-box #review-form {
    position: relative;
    display: block;
    background-color: #ffffff;
}

.reply-form-box form .input-box {
    position: relative;
    display: block;
}

.reply-form-box form .input-box label {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 20px;
    font-family: var(--thm-font-2);
    font-weight: 400;
    text-transform: capitalize;
    margin: 0 0 11px;
}

.reply-form-box form input[type="text"],
.reply-form-box form input[type="email"],
.reply-form-box form textarea {
    position: relative;
    display: block;
    background-color: #ffffff;
    width: 100%;
    height: 30px;
    border: 0px solid transparent;
    border-bottom: 1px solid var(--thm-gray-bg);
    color: rgba(119, 119, 119, 0.70);
    font-size: 13px;
    font-family: var(--thm-font);
    font-weight: 400;
    padding: 0px 0px 15px;
    margin-bottom: 30px;
    border-radius: 0px;
    transition: all 500ms ease;
}

.reply-form-box form textarea {
    height: 101px;
    padding: 0px 0px;
    margin-bottom: 12px;
}

.reply-form-box form button {}

.reply-form-box form input[type="text"]:focus {
    border-color: #11161e;
}

.reply-form-box form input[type="email"]:focus {
    border-color: #11161e;
}

.reply-form-box form textarea:focus {
    border-color: #11161e;
}


.reply-form-box form .text {
    position: relative;
    display: block;
}

.reply-form-box form .text p span {
    color: var(--thm-base);
}

.reply-form-box form .btn-one {
    margin-top: 41px;
}

.reply-form-box form .btn-one:before {
    background: var(--thm-base);
}

.reply-form-box form .btn-one::after {
    background: var(--thm-black);
}



.related-blog-content {
    position: relative;
    display: block;
    padding-top: 120px;
}



























































/*** 
=============================================
    End Css
=============================================
***/