/*** 

=============================================

    Blog Style1 Css

=============================================

***/

.blog-style1 {

    background-color: var(--thm-white);

    padding: 120px 0px 60px;

}



.blog-style1__single {

    position: relative;

    display: block;

    margin-bottom: 60px;

}



.blog-style1__single-inner {

    position: relative;

    display: block;

    -webkit-transition: all 0.4s ease;

    -o-transition: all 0.4s ease;

    transition: all 0.4s ease;

    z-index: 1;

}



.blog-style1__single:hover .blog-style1__single-inner {

    transform: translateY(-55px);

}



.blog-style1__single-inner .category-box {

    position: relative;

    display: inline-flex;

    align-items: center;

    border-top-left-radius: 4px;

    background-color: #25C6F5;

    padding: 5px 20px 5px;

}



.blog-style1__single-inner .category-box::before {

    content: "";

    position: absolute;

    top: 0;

    right: -20px;

    bottom: 0;

    width: 20px;

    background-color: #25C6F5;

    clip-path: polygon(0 0, 0 100%, 100% 100%);

}



.blog-style1__single-inner .category-box .icon {

    position: relative;

    display: block;

    line-height: 0;

}



.blog-style1__single-inner .category-box .icon i {

    position: relative;

    display: inline-block;

    color: var(--thm-white);

    font-size: 14px;

}



.blog-style1__single-inner .category-box .title {

    position: relative;

    display: block;

    padding-left: 9px;

}



.blog-style1__single-inner .category-box .title h6 {

    color: var(--thm-white);

    font-size: 14px;

    line-height: 24px;

    font-weight: 600;

    text-transform: uppercase;

}



.blog-style1__single-inner .img-box {

    position: relative;

    display: block;

    overflow: hidden;

    border-top-right-radius: 4px;

    z-index: 1;

}



.blog-style1__single-inner .img-box::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    bottom: 0;

    right: 0;

    opacity: 0;

    background-color: var(--thm-black-bg);

    transition: opacity 0.5s ease;

    transition: all 0.5s ease;

    z-index: 1;

}



.blog-style1__single:hover .blog-style1__single-inner .img-box::before {

    opacity: 0.9;

}



.blog-style1__single-inner .img-box img {

    width: 100%;

    transform: scale(1.0);

    transition: all 1500ms ease;

}



.blog-style1__single:hover .blog-style1__single-inner .img-box img {

    transform: scale(1.05) rotate(0deg);

}



.blog-style1__single-inner .img-box .overlay-icon {

    position: absolute;

    display: flex;

    align-items: center;

    justify-content: center;

    top: 0;

    left: 0;

    bottom: 0px;

    right: 0;

    opacity: 0;

    transform: perspective(400px) rotateY(0deg) translateY(50px);

    transform-origin: bottom;

    transition: all 500ms ease;

    z-index: 3;

}



.blog-style1__single:hover .blog-style1__single-inner .img-box .overlay-icon {

    opacity: 1;

    transform: perspective(400px) rotateY(0deg) translateY(0px);

    transition-delay: 300ms;

}



.blog-style1__single-inner .img-box .overlay-icon a {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    width: 55px;

    height: 55px;

    border-radius: 4px;

    background-color: var(--thm-white);

    color: var(--thm-black);

    font-size: 22px;

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.blog-style1__single-inner .img-box .overlay-icon a:hover {

    color: var(--thm-white);

    background-color: transparent;

}



.blog-style1__single-inner .img-box .overlay-icon a::before {

    position: absolute;

    top: 0;

    left: 0;

    bottom: 0;

    right: 0;

    content: "";

    border-radius: 4px;

    transform: scale(0.0);

    transform-origin: center;

    transform-style: preserve-3d;

    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);

    background-color: var(--thm-primary-color);

    z-index: -1;

}



.blog-style1__single-inner .img-box .overlay-icon a:hover::before {

    transform: scaleX(1.0);

}







.blog-style1__single-inner .content-box {

    position: relative;

    display: block;

    border-bottom-left-radius: 4px;

    border-bottom-right-radius: 4px;

    background-color: var(--thm-white);

    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);

    padding: 28px 25px 28px;

    z-index: 2;

}



.blog-style1__single-inner .content-box h3 {

    font-size: 22px;

    line-height: 32px;

    font-weight: 600;

}



.blog-style1__single-inner .content-box h3 a {

    color: var(--thm-black);

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.blog-style1__single-inner .content-box h3 a:hover {

    color: #25C6F5;

}



.blog-style1__single-inner .content-box .meta-box {

    position: relative;

    display: block;

    padding: 15px 0px 24px;

}



.blog-style1__single-inner .content-box .meta-box .meta-info {

    position: relative;

    display: flex;

    align-items: center;

}



.blog-style1__single-inner .content-box .meta-box .meta-info li {

    position: relative;

    display: flex;

    align-items: center;

}



.blog-style1__single-inner .content-box .meta-box .meta-info li+li {

    margin-left: 25px;

}



.blog-style1__single-inner .content-box .meta-box .meta-info li .icon {

    position: relative;

    display: block;

    line-height: 0;

}



.blog-style1__single-inner .content-box .meta-box .meta-info li .icon i {

    position: relative;

    display: inline-block;

    color: #25C6F5;

    font-size: 14px;

    font-weight: 700;

}



.blog-style1__single-inner .content-box .meta-box .meta-info li .text {

    position: relative;

    display: block;

    padding-left: 9px;

}



.blog-style1__single-inner .content-box .meta-box .meta-info li .textp {

    color: #8e8f96;

}



.blog-style1__single-inner .content-box .text-box {

    position: relative;

    display: block;

    border-top: 1px solid var(--thm-border-color);

    padding-top: 23px;

}



.blog-style1__single-inner .content-box .text-box p {

    margin: 0;

}



.blog-style1__single .btn-box {

    position: absolute;

    left: 30px;

    bottom: 0;

    right: 30px;

    text-align: center;

    transform: translateY(-20px);

    opacity: 0;

    -webkit-transition: all 0.4s ease;

    -o-transition: all 0.4s ease;

    transition: all 0.4s ease;

    z-index: 1;

}



.blog-style1__single:hover .btn-box {

    opacity: 1;

    transform: translateY(0px);

}



.blog-style1__single .btn-box .btn-one {

    color: var(--thm-black);

    line-height: 35px;

    border-top-left-radius: 0;

    border-top-right-radius: 0;

    width: 100%;

    justify-content: center;

}



.blog-style1__single .btn-box .btn-one:hover {

    color: var(--thm-white);

}



.blog-style1__single .btn-box .btn-one::before {

    background-color: #25C6F5;

}



.blog-style1__single .btn-box .btn-one::after {

    background-color: var(--thm-gray-bg);

}







/*** 

=============================================

    Blog Style2 Css

=============================================

***/

.blog-style2 {

    background-color: var(--thm-white);

    padding: 120px 0px 112px;

}



.blog-style2__single {

    position: relative;

    display: block;

}



.blog-style2__single .category-box {

    position: relative;

    display: inline-flex;

    align-items: center;

    border-top-left-radius: 4px;

    background-color: var(--thm-secondary-color);

    padding: 5px 20px 5px;

}



.blog-style2__single .category-box::before {

    content: "";

    position: absolute;

    top: 0;

    right: -20px;

    bottom: -1px;

    width: 20px;

    background-color: var(--thm-secondary-color);

    clip-path: polygon(0 0, 0 100%, 100% 100%);

}



.blog-style2__single .category-box .icon {

    position: relative;

    display: block;

    line-height: 0;

}



.blog-style2__single .category-box .icon i {

    position: relative;

    display: inline-block;

    color: var(--thm-white);

    font-size: 14px;

}



.blog-style2__single .category-box .title {

    position: relative;

    display: block;

    padding-left: 9px;

}



.blog-style2__single .category-box .title h6 {

    color: var(--thm-white);

    font-size: 14px;

    line-height: 24px;

    font-weight: 600;

    text-transform: uppercase;

}



.blog-style2__single .img-box {

    position: relative;

    display: block;

    overflow: hidden;

    z-index: 1;

}



.blog-style2__single .img-box::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    bottom: 0;

    right: 0;

    opacity: 0;

    background-color: var(--thm-black-bg);

    transition: opacity 0.5s ease;

    transition: all 0.5s ease;

    z-index: 1;

}



.blog-style2__single:hover .img-box::before {

    opacity: 0.9;

}



.blog-style2__single .img-box img {

    width: 100%;

    transform: scale(1.0);

    transition: all 1500ms ease;

}



.blog-style2__single:hover .img-box img {

    transform: scale(1.05) rotate(0deg);

}



.blog-style2__single .content-box {

    position: relative;

    display: block;

    border-bottom-left-radius: 4px;

    border-bottom-right-radius: 4px;

    background-color: var(--thm-white);

    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);

    padding: 28px 40px 28px;

    z-index: 2;

}



.blog-style2__single .content-box h3 {

    font-size: 26px;

    line-height: 36px;

    font-weight: 600;

}



.blog-style2__single .content-box h3 a {

    color: var(--thm-black);

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.blog-style2__single .content-box h3 a:hover {

    color: var(--thm-primary-color);

}



.blog-style2__single .content-box .meta-box {

    position: relative;

    display: block;

    padding: 15px 0px 24px;

}



.blog-style2__single .content-box .meta-box .meta-info {

    position: relative;

    display: flex;

    align-items: center;

}



.blog-style2__single .content-box .meta-box .meta-info li {

    position: relative;

    display: flex;

    align-items: center;

}



.blog-style2__single .content-box .meta-box .meta-info li+li {

    margin-left: 25px;

}



.blog-style2__single .content-box .meta-box .meta-info li .icon {

    position: relative;

    display: block;

    line-height: 0;

    color: var(--thm-primary-color);

    font-size: 14px;

    font-weight: 700;

}



.blog-style2__single .content-box .meta-box .meta-info li .text {

    position: relative;

    display: block;

    padding-left: 9px;

}



.blog-style2__single .content-box .meta-box .meta-info li .text p {

    color: #8e8f96;

}



.blog-style2__single .content-box .text-box {

    position: relative;

    display: block;

    border-top: 1px solid var(--thm-border-color);

    padding-top: 25px;

}



.blog-style2__single .content-box .text-box p {

    margin: 0;

}



.blog-style2__single--style2 {

    -webkit-transition: all 0.4s ease;

    -o-transition: all 0.4s ease;

    transition: all 0.4s ease;

    padding-bottom: 30px;

}



.blog-style2__single--style2:hover {

    transform: translateY(-55px);

}



.blog-style2__single--style2 .btn-box {

    position: absolute;

    left: 25px;

    bottom: 0px;

    right: 25px;

    opacity: 0;

    transform: translateY(-30px);

    transition: all 300ms linear;

    transition-delay: 0.1s;

}



.blog-style2__single--style2:hover .btn-box {

    opacity: 1;

    transform: translateY(25px);

}



.blog-style2__single--style2 .btn-box .btn-one {

    display: block;

    text-align: center;

    color: var(--thm-black);

    border-top-left-radius: 0;

    border-top-right-radius: 0;

    padding-top: 10px;

    padding-bottom: 10px;

    line-height: 35px;

}



.blog-style2__single--style2 .btn-box .btn-one:hover {

    color: var(--thm-white);

}



.blog-style2__single--style2 .btn-box .btn-one::after {

    background-color: var(--thm-gray-bg);

}



.blog-style2__single--style2 .btn-box .btn-one::before {

    background-color: var(--thm-primary-color);

}



.blog-style2__btn-box {

    position: relative;

    display: block;

    line-height: 0;

    padding-top: 14px;

}



.blog-style2__btn-box a {

    position: relative;

    display: inline-flex;

    align-items: center;

    color: var(--thm-black);

    font-size: 16px;

    line-height: 26px;

    font-family: var(--thm-font-2);

    font-weight: 600;

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.blog-style2__btn-box a:hover {

    color: var(--thm-primary-color);

}



.blog-style2__btn-box a i {

    font-size: 20px;

    margin-right: 8px;

}







/*** 

========================

    Blog Style3 Css

========================

***/

.blog-style3 {

    background-color: var(--thm-white);

    padding: 120px 0px 90px;

}



.single-blog-style3 {

    position: relative;

    display: block;

    overflow: hidden;

    border-radius: 4px;

    border: 1px solid #e4eced;

    background-color: var(--thm-white);

    padding: 0px 27px 30px;

    margin-bottom: 30px;

    transition: background-color 0.5s ease;

    transition: all 0.5s ease;

}



.single-blog-style3:hover {

    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);

}



.single-blog-style3 .category-box {

    position: relative;

    display: inline-flex;

    align-items: center;

    border-bottom-left-radius: 4px;

    border-bottom-right-radius: 4px;

    background-color: var(--thm-gray-bg);

    padding: 5px 20px 5px;

    transition: background-color 0.5s ease;

    transition: all 0.5s ease;

}



.single-blog-style3:hover .category-box {

    background-color: var(--thm-primary-color);

}



.single-blog-style3 .category-box .icon {

    position: relative;

    display: block;

    color: var(--thm-primary-color);

    font-size: 14px;

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.single-blog-style3:hover .category-box .icon {

    color: var(--thm-white);

}



.single-blog-style3 .category-box .title {

    position: relative;

    display: block;

    margin-left: 10px;

}



.single-blog-style3 .category-box .title h6 {

    color: var(--thm-black);

    font-size: 14px;

    line-height: 24px;

    font-weight: 600;

    font-family: var(--thm-font-2);

    text-transform: uppercase;

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.single-blog-style3:hover .category-box .title h6 {

    color: var(--thm-white);

}



.single-blog-style3 .title-box {

    position: relative;

    display: block;

    padding: 23px 0px 21px;

}



.single-blog-style3 .title-box h3 {

    font-size: 22px;

    line-height: 32px;

    font-weight: 600;

}



.single-blog-style3 .title-box h3 a {

    color: var(--thm-black);

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.single-blog-style3 .title-box h3 a:hover {

    color: var(--thm-primary-color);

}



.single-blog-style3 .img-box {

    position: relative;

    display: block;

}



.single-blog-style3 .img-box .inner {

    position: relative;

    display: block;

    overflow: hidden;

    border-radius: 4px;

    opacity: 1;

    transform: scaleY(1.0);

    -webkit-transition: all 0.4s ease;

    -o-transition: all 0.4s ease;

    transition: all 0.4s ease;

    z-index: 2;

}



.single-blog-style3:hover .img-box .inner {

    opacity: 0;

    transform: scaleY(0);

}



.single-blog-style3 .img-box .inner img {

    width: 100%;

}



.single-blog-style3 .img-box .overlay-content {

    position: absolute;

    top: 0;

    left: -27px;

    right: -27px;

    bottom: 0;

    opacity: 0;

    border-radius: 4px;

    border: 1px solid #e4eced;

    background-color: var(--thm-gray-bg);

    padding: 33px 27px 33px;

    transform: scaleY(0);

    -webkit-transition: all 0.4s ease;

    -o-transition: all 0.4s ease;

    transition: all 0.4s ease;

    z-index: 2;

}



.single-blog-style3:hover .img-box .overlay-content {

    opacity: 1;

    transform: scaleY(1.0);

}



.single-blog-style3 .img-box .overlay-content .btn-box {

    position: relative;

    display: block;

    line-height: 0;

}



.single-blog-style3 .img-box .overlay-content .btn-box a {

    position: relative;

    display: inline-flex;

    align-items: center;

    color: var(--thm-black);

    font-size: 16px;

    line-height: 25px;

    font-family: var(--thm-font-2);

    font-weight: 600;

    padding-top: 17px;

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.single-blog-style3 .img-box .overlay-content .btn-box a:hover {

    color: var(--thm-primary-color);

}



.single-blog-style3 .img-box .overlay-content .btn-box a i {

    margin-right: 8px;

}



.single-blog-style3 .author-box {

    position: relative;

    display: flex;

    align-items: center;

    padding-top: 30px;

}



.single-blog-style3 .author-box .img {

    position: relative;

    display: block;

    width: 42px;

    height: 42px;

    overflow: hidden;

    border-radius: 50%;

}



.single-blog-style3 .author-box .text-box {

    position: relative;

    display: block;

    padding-left: 15px;

}



.single-blog-style3 .author-box .text-box p {

    color: var(--thm-black);

    line-height: 21px;

}



.single-blog-style3 .author-box .text-box ul {

    position: relative;

    display: flex;

    align-items: center;

}



.single-blog-style3 .author-box .text-box ul li {

    position: relative;

    display: block;

}



.single-blog-style3 .author-box .text-box ul li::before {

    content: "";

    position: absolute;

    left: -12px;

    bottom: 8px;

    right: 0;

    width: 2px;

    height: 2px;

    background-color: var(--thm-body-font-color);

}



.single-blog-style3 .author-box .text-box ul li:first-child::before {

    display: none;

}



.single-blog-style3 .author-box .text-box ul li+li {

    margin-left: 25px;

}



.single-blog-style3 .author-box .text-box ul li p {

    color: #8c9b9d;

    font-size: 16px;

    line-height: 27px;

    font-family: var(--thm-font);

    font-weight: 400;

}







/*** 

===========================

    Blog Style4 Css

===========================

***/

.blog-style4 {

    background-color: var(--thm-white);

    padding: 120px 0px 120px;

}



.blog-style4__bg {

    position: absolute;

    top: 120px;

    left: 0;

    bottom: 120px;

    width: calc((100% - 670px) / 2);

    background-color: var(--thm-black);

    border-radius: 0px 4px 4px 0px;

    z-index: -1;

}



.blog-style4__img-box {

    position: absolute;

    left: -8px;

    bottom: 120px;

}



.blog-style4__img-box img {

    width: auto;

}



.blog-style4__inner {

    position: relative;

    display: block;

    margin-top: 120px;

    padding-left: 400px;

    margin-bottom: 120px;

}



.blog-style4__content {

    position: absolute;

    top: 0;

    left: 0;

    max-width: 370px;

    width: 100%;

    border-radius: 4px;

    background-color: var(--thm-gray-bg);

    padding: 40px 40px 40px;

}



.blog-style4__content .sec-title {

    padding-bottom: 29px;

}



.blog-style4__content .sec-title h2 {

    font-size: 36px;

}



.blog-style4__content .newsletter-box {

    position: relative;

    display: block;

    border-top: 1px solid #d8e0d8;

    padding-top: 33px;

}



.blog-style4__content .newsletter-box h3 {

    font-size: 26px;

    line-height: 35px;

    font-weight: 600;

    margin-bottom: 4px;

}



.blog-style4__content .newsletter-box p {

    margin: 0;

}



.blog-style4__form {

    position: relative;

    display: block;

    padding-top: 23px;

}



.blog-style4__form form {

    position: relative;

    display: block;

}



.blog-style4__form form .form-group {

    position: relative;

    display: block;

}



.blog-style4__form form .form-group .icon {

    position: absolute;

    top: 16px;

    left: 20px;

    color: var(--thm-primary-color);

    font-size: 20px;

    z-index: 1;

}



.blog-style4__form form .form-group input[type="email"] {

    position: relative;

    display: block;

    background: var(--thm-white);

    border: none;

    width: 100%;

    height: 55px;

    color: #656567;

    font-size: 16px;

    font-weight: 400;

    font-style: normal;

    padding-left: 50px;

    padding-right: 10px;

    border-radius: 4px;

    transition: all 500ms ease;

    font-family: var(--thm-font);

}



.blog-style4__form form .form-group input[type="email"]::-webkit-input-placeholder {

    color: #656567;

}



.blog-style4__form form .form-group input[type="email"]:-moz-placeholder {

    color: #656567;

}



.blog-style4__form form .form-group input[type="email"]::-moz-placeholder {

    color: #656567;

}



.blog-style4__form form .form-group input[type="email"]:-ms-input-placeholder {

    color: #656567;

}



.blog-style4__form form .checked-box1 {

    margin-top: 14px;

}



.blog-style4__form form .btn-box {

    position: relative;

    display: block;

    line-height: 0;

    padding-top: 25px;

}



.blog-style4__form form .btn-box .btn-one {

    color: var(--thm-black);

}



.blog-style4__form form .btn-box .btn-one:hover {

    color: var(--thm-white);

}



.blog-style4__form form .btn-box .btn-one::after {

    border-radius: 4px;

    background-color: transparent;

    border: 1px solid var(--thm-primary-color);

}







.blog-style4__Post {

    position: relative;

    display: block;

}



.blog-style4__Post .big-title {

    position: absolute;

    top: -120px;

    left: 15px;

    right: -20000px;

}



.blog-style4__Post .big-title .blog-scrolling-text {

    position: relative;

    display: block;

    overflow: hidden;

    top: -15px;

}



.blog-style4__Post .big-title ul {

    position: relative;

    display: flex;

    align-items: center;

    flex-wrap: nowrap;

    width: fit-content;

}



.blog-style4__Post .big-title ul li {

    position: relative;

    float: left;

    margin-left: 40px;

    color: #eff6ef;

    font-size: 110px;

    line-height: 1.1em;

    font-family: var(--thm-font-2);

    font-weight: 600;

    text-transform: uppercase;

}





.single-blog-style4 {

    position: relative;

    display: block;

}



.single-blog-style4 .category-box {

    position: relative;

    display: inline-flex;

    align-items: center;

    border-top-left-radius: 4px;

    background-color: var(--thm-black-bg);

    padding: 5px 20px 5px;

}



.single-blog-style4 .category-box::before {

    content: "";

    position: absolute;

    top: 0;

    right: -20px;

    bottom: -1px;

    width: 20px;

    background-color: var(--thm-black-bg);

    clip-path: polygon(0 0, 0 100%, 100% 100%);

}



.single-blog-style4 .category-box .icon {

    position: relative;

    display: block;

    line-height: 0;

}



.single-blog-style4 .category-box .icon i {

    position: relative;

    display: inline-block;

    color: var(--thm-primary-color);

    font-size: 14px;

}



.single-blog-style4 .category-box .title {

    position: relative;

    display: block;

    padding-left: 9px;

}



.single-blog-style4 .category-box .title h6 {

    color: var(--thm-white);

    font-size: 14px;

    line-height: 24px;

    font-weight: 600;

    text-transform: uppercase;

}





.single-blog-style4 .img-box {

    position: relative;

    display: block;

    overflow: hidden;

    border-top-right-radius: 4px;

    z-index: 1;

}



.single-blog-style4 .img-box::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    bottom: 0;

    right: 0;

    opacity: 0;

    background-color: var(--thm-black-bg);

    transition: opacity 0.5s ease;

    transition: all 0.5s ease;

    z-index: 1;

}



.single-blog-style4:hover .img-box::before {

    opacity: 0.9;

}



.single-blog-style4 .img-box img {

    width: 100%;

    transform: scale(1.0);

    transition: all 1500ms ease;

}



.single-blog-style4:hover .img-box img {

    transform: scale(1.05) rotate(0deg);

}



.single-blog-style4 .content-box {

    position: relative;

    display: block;

    border-bottom-left-radius: 4px;

    border-bottom-right-radius: 4px;

    background-color: var(--thm-white);

    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);

    padding: 31px 28px 30px;

    z-index: 2;

}



.single-blog-style4 .content-box h3 {

    font-size: 22px;

    line-height: 32px;

    font-weight: 600;

}



.single-blog-style4 .content-box h3 a {

    color: var(--thm-black);

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.single-blog-style4 .content-box h3 a:hover {

    color: var(--thm-primary-color);

}



.single-blog-style4 .content-box .meta-box {

    position: relative;

    display: block;

    padding: 15px 0px 25px;

}



.single-blog-style4 .content-box .meta-box .meta-info {

    position: relative;

    display: flex;

    align-items: center;

}



.single-blog-style4 .content-box .meta-box .meta-info li {

    position: relative;

    display: flex;

    align-items: center;

}



.single-blog-style4 .content-box .meta-box .meta-info li+li {

    margin-left: 25px;

}



.single-blog-style4 .content-box .meta-box .meta-info li .icon {

    position: relative;

    display: block;

    line-height: 0;

    color: var(--thm-primary-color);

    font-size: 14px;

    font-weight: 700;

}



.single-blog-style4 .content-box .meta-box .meta-info li .text {

    position: relative;

    display: block;

    padding-left: 9px;

}



.single-blog-style4 .content-box .meta-box .meta-info li .text p {

    color: #96a196;

}



.single-blog-style4 .content-box .text-box {

    position: relative;

    display: block;

    border-top: 1px solid #e4ebe4;

    padding-top: 23px;

}



.single-blog-style4 .content-box .text-box p {

    margin: 0;

}



.blog-style4-carousel.owl-nav-style-one.owl-theme .owl-stage-outer {

    margin-right: -400px;

    padding-bottom: 20px;

    padding-left: 15px;

}



.blog-style4-carousel.owl-nav-style-one.owl-theme .owl-nav {

    position: absolute;

    bottom: -100px;

    right: 0;

}



.blog-style4-carousel.owl-nav-style-one.owl-theme .owl-nav::before {

    content: "";

    position: absolute;

    top: 27px;

    width: 545px;

    left: -555px;

    height: 1px;

    background-color: #e4ebe4;

}



.blog-style4-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {

    background-color: transparent;

    border: 1px solid #e4ebe4;

}



.blog-style4-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover {

    border: 1px solid var(--thm-primary-color);

}



.blog-style4-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]::before {

    top: -1px;

    left: -1px;

    bottom: -1px;

    right: -1px;

}



.blog-style4-carousel .owl-dots {

    position: absolute;

    left: 80px;

    bottom: -64px;

    counter-reset: slides-num;

}



.blog-style4-carousel .owl-dots::after {

    position: absolute;

    right: 0px;

    top: 0px;

    content: "0"counter(slides-num);

    display: inline-block;

    font-size: 14px;

    color: #a0a8a2;

    font-weight: 600;

    font-family: var(--thm-font-2)

}



.blog-style4-carousel .owl-dots:before {

    position: absolute;

    content: '';

    right: 23px;

    top: 7px;

    width: 2px;

    height: 11px;

    background: #a0a8a2;

    transform: rotate(10deg);

}



.blog-style4-carousel .owl-dots button span {

    display: none !important;

}



.blog-style4-carousel .owl-dots button {

    position: absolute;

    top: -3px;

    right: 45px;

    counter-increment: slides-num;

    color: var(--thm-black);

    font-size: 26px;

    font-weight: 600;

    font-family: var(--thm-font-2);

}



.blog-style4-carousel .owl-dots button.active:before {

    position: absolute;

    content: counter(slides-num);

}



.blog-style4-carousel .owl-dots button.active:after {

    position: absolute;

    content: '0';

    top: 0px;

    right: 0px;

}







/*** 

===========================

    Blog Page One Css

===========================

***/

.blog-page-one {

    background-color: var(--thm-white);

    padding: 120px 0px 120px;

}







/*** 

===========================

    Blog Page two Css

===========================

***/

.blog-page-two {

    background-color: var(--thm-white);

    padding: 120px 0px 120px;

}







/*** 

===========================

    Blog Page Three Css

===========================

***/

.blog-page-three {

    background-color: var(--thm-white);

}



.blog-page-three-content {

    position: relative;

    display: block;

    padding-top: 120px;

    padding-bottom: 120px;

}



.left-adjust{

    border-left: 1px solid #e3e4ea;

    margin-left: 50px;

    padding-left: 49px;

}



.right-adjust{

    border-right: 1px solid #e3e4ea;

    margin-right: 50px;

    padding-right: 49px;

}



.blog-page-three-single {

    position: relative;

    display: block;

    margin-bottom: 50px;

}



.blog-page-three-single .category-box {

    position: relative;

    display: inline-flex;

    align-items: center;

    border-top-left-radius: 4px;

    background-color: var(--thm-secondary-color);

    padding: 5px 20px 5px;

}



.blog-page-three-single .category-box::before {

    content: "";

    position: absolute;

    top: 0;

    right: -20px;

    bottom: -1px;

    width: 20px;

    background-color: var(--thm-secondary-color);

    clip-path: polygon(0 0, 0 100%, 100% 100%);

}



.blog-page-three-single .category-box .icon {

    position: relative;

    display: block;

    line-height: 0;

}



.blog-page-three-single .category-box .icon i {

    position: relative;

    display: inline-block;

    color: var(--thm-white);

    font-size: 14px;

}



.blog-page-three-single .category-box .title {

    position: relative;

    display: block;

    padding-left: 9px;

}



.blog-page-three-single .category-box .title h6 {

    color: var(--thm-white);

    font-size: 14px;

    line-height: 24px;

    font-weight: 600;

	margin-bottom: 0px;

    text-transform: uppercase;

}



.blog-page-three-single .img-box {

    position: relative;

    display: block;

    overflow: hidden;

	text-align: center;

    border-top-right-radius: 4px;

    z-index: 1;

}



.blog-page-three-single .img-box::before {

    position: absolute;

    content: '';

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-color: var(--thm-black-bg);

    opacity: 0;

    z-index: 1;

    transition: opacity 0.5s ease;

    transition: all 0.5s ease;

}



.blog-page-three-single:hover .img-box::before {

    opacity: 0.90;

}



.blog-page-three-single .img-box img {

    transform: scale(1.0);

    transition: all 1500ms ease;

	display: inline-block;

}



.blog-page-three-single:hover .img-box img {

    transform: scale(1.05) rotate(0deg);

}



.blog-page-three-single .img-box .overlay-icon {

    position: absolute;

    display: flex;

    align-items: center;

    justify-content: center;

    top: 0;

    left: 0;

    bottom: 0px;

    right: 0;

    opacity: 0;

    transform: perspective(400px) rotateY(0deg) translateY(50px);

    transform-origin: bottom;

    transition: all 500ms ease;

    z-index: 3;

}



.blog-page-three-single:hover .img-box .overlay-icon {

    opacity: 1;

    transform: perspective(400px) rotateY(0deg) translateY(0px);

    transition-delay: 300ms;

}



.blog-page-three-single .img-box .overlay-icon a {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    width: 55px;

    height: 55px;

    border-radius: 4px;

    background-color: var(--thm-white);

    color: var(--thm-black);

    font-size: 24px;

    transition: all 200ms linear;

    transition-delay: 0.1s;

    z-index: 1;

}



.blog-page-three-single .img-box .overlay-icon a:hover {

    color: var(--thm-white);

    background-color: transparent;

}



.blog-page-three-single .img-box .overlay-icon a::before {

    position: absolute;

    top: 0;

    left: 0;

    bottom: 0;

    right: 0;

    content: "";

    border-radius: 4px;

    transform: scale(0.0);

    transform-origin: center;

    transform-style: preserve-3d;

    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);

    background-color: var(--thm-primary-color);

    z-index: -1;

}



.blog-page-three-single .img-box .overlay-icon a:hover::before {

    transform: scaleX(1.0);

}



.blog-page-three-single .content-box {

    position: relative;

    display: block;

    border-bottom-left-radius: 4px;

    border-bottom-right-radius: 4px;

    background-color: var(--thm-white);

    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);

    padding: 32px 40px 33px;

}



.blog-page-three-single .content-box h3 {

    font-size: 30px;

    line-height: 40px;

	margin-bottom: 0px;

    font-weight: 600;

}



.blog-page-three-single .content-box h3 a {

    color: var(--thm-black);

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.blog-page-three-single .content-box h3 a:hover {

    color: var(--thm-primary-color);

}



.blog-page-three-single .content-box .meta-box {

    position: relative;

    display: block;

    border-bottom: 1px solid #e3e4ea;

    padding: 13px 0px 24px;

}



.blog-page-three-single .content-box .meta-box .meta-info {

    position: relative;

    display: flex;

    align-items: center;

}



.blog-page-three-single .content-box .meta-box .meta-info li {

    position: relative;

    display: flex;

    align-items: center;

}



.blog-page-three-single .content-box .meta-box .meta-info li+li {

    margin-left: 25px;

}



.blog-page-three-single .content-box .meta-box .meta-info li .icon {

    position: relative;

    display: block;

    line-height: 0;

    color: var(--thm-primary-color);

    font-size: 14px;

    font-weight: 700;

}



.blog-page-three-single .content-box .meta-box .meta-info li .text {

    position: relative;

    display: block;

    padding-left: 9px;

}



.blog-page-three-single .content-box .meta-box .meta-info li .text p {

    color: #8e8f96;

}



.blog-page-three-single .content-box .text-box {

    position: relative;

    display: block;

    padding-top: 23px;

}



.blog-page-three-single .content-box .text-box p {

    margin: 0;

}



.blog-page-three-single .btn-box {

    position: relative;

    display: block;

    line-height: 0;

    margin: 0px 40px 0px;

}



.blog-page-three-single .btn-box .btn-one {

    display: flex;

    align-items: center;

    text-align: center;

    justify-content: center;

    color: var(--thm-black);

    border-top-left-radius: 0;

    border-top-right-radius: 0;

    padding-top: 10px;

    padding-bottom: 10px;

    line-height: 35px;

}



.blog-page-three-single .btn-box .btn-one:hover {

    color: var(--thm-white);

}



.blog-page-three-single .btn-box .btn-one::after {

    background-color: var(--thm-gray-bg);

}



.blog-page-three-single .btn-box .btn-one::before {

    background-color: var(--thm-primary-color);

}



.blog-page-three-single .btn-box .btn-one i {

    position: relative;

    display: inline-block;

    color: var(--thm-white);

    font-size: 16px;

    line-height: 16px;

    opacity: 0;

    transform: translateX(-5px);

    -webkit-transition: all 0.4s ease;

    -o-transition: all 0.4s ease;

    transition: all 0.4s ease;

}



.blog-page-three-single .btn-box .btn-one:hover i {

    opacity: 1;

    transform: translateX(0px);

}



.blog-page-three .styled-pagination.pdtop30 {

    padding-top: 10px;

}







/*===== Sidebar Css======*/

.sidebar-box-style1 {

    position: relative;

    display: block;

    margin-left: -30px;

    padding-top: 120px;

    padding-bottom: 120px;

}



.sidebar-search-box-one {

    position: relative;

    display: block;

}



.wp-block-search__inside-wrapper {

	position: relative;

}



.sidebar-search-box-one form.search-form,

.wp-block-search__inside-wrapper{

    position: relative;

    display: block;

    width: 100%;

}



.sidebar-search-box-one .search-form input[type="text"],

.wp-block-search__inside-wrapper input{

    position: relative;

    display: block;

    width: 100%;

    height: 55px;

    border-radius: 4px;

    background-color: var(--thm-white);

    border: 1px solid #e3e4ea;

    color: var(--thm-body-font-color);

    font-size: 16px;

    font-weight: 400;

    font-family: var(--thm-font);

    padding-left: 25px;

    padding-right: 70px;

    transition: all 500ms ease 0s;

}



.wp-block-search__inside-wrapper input{

	padding-right: 95px;

}



.sidebar-search-box-one .search-form input[type="text"]:focus,

.wp-block-search__inside-wrapper input:focus{

    color: var(--thm-black);

    border-color: var(--thm-primary-color);

}



.sidebar-search-box-one .search-form input::-webkit-input-placeholder,

.wp-block-search__inside-wrapper input::-webkit-input-placeholder{

    color: #a5b1ad;

}



.sidebar-search-box-one .search-form input:-moz-placeholder,

.wp-block-search__inside-wrapper input:-moz-placeholder {

    color: #a5b1ad;

}



.sidebar-search-box-one .search-form input::-moz-placeholder,

.wp-block-search__inside-wrapper input::-moz-placeholder {

    color: #a5b1ad;

}



.sidebar-search-box-one .search-form input:-ms-input-placeholder,

.wp-block-search__inside-wrapper input:-ms-input-placeholder {

    color: #a5b1ad;

}



.sidebar-search-box-one .search-form button,

.wp-block-search__inside-wrapper button {

    position: absolute;

    top: 0px;

    right: 25px;

    bottom: 0px;

    background-color: transparent;

    color: var(--thm-black);

    font-size: 20px;

    font-weight: 700;

    transition: all 500ms ease 0s;

	border: none;

}



.wp-block-search__inside-wrapper button {

	font-size: 16px;

	font-weight: 600;

	padding: 0px;

}



.sidebar-search-box-one .search-form button i {

    position: relative;

    top: 0px;

}



.sidebar-search-box-one .search-form input[type="text"]:focus+button,

.sidebar-search-box-one .search-form button:hover,

.wp-block-search__inside-wrapper button:hover {

    color: var(--thm-primary-color);

}







.single-sidebar-box {

    position: relative;

    display: block;

}



.single-sidebar-box .sidebar-title {

    position: relative;

    display: block;

}



.single-sidebar-box .sidebar-title h3,

.widget h2,

.widget .wp-block-search__label{

    font-size: 22px;

    line-height: 32px;

    font-weight: 600;

    margin-bottom: 11px;

	color: var(--thm-heading-font-color);

    font-family: var(--thm-font-2);

}



.single-sidebar-box .sidebar-title .shape {

    position: relative;

    display: block;

    line-height: 0;

}



.single-sidebar-box .sidebar-title .shape img {

    width: auto;

}



.sidebar-categories-box {

    position: relative;

    display: block;

    margin-top: 35px;

    border-radius: 4px;

    background-color: var(--thm-gray-bg);

    padding: 22px 25px 23px;

}



.sidebar-categories-box .list-item {

    position: relative;

    display: block;

}



.sidebar-categories-box .list-item li {

    position: relative;

    display: flex;

    align-items: center;

    cursor: pointer;

    border-bottom: 1px solid #d2d4db;

    padding-bottom: 13px;

    margin-bottom: 11px;

}



.sidebar-categories-box .list-item li:last-child {

    border-bottom: 0px solid transparent;

    padding-bottom: 0px;

    margin-bottom: 0px;

}



.sidebar-categories-box .list-item li .icon {

    position: relative;

    display: block;

    color: #a0a3b1;

    font-size: 16px;

    line-height: 16px;

    top: 2px;

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.sidebar-categories-box .list-item li:hover .icon {

    color: var(--thm-primary-color);

    transform: rotate(45deg);

}



.sidebar-categories-box .list-item li .text {

    position: relative;

    display: block;

    padding-left: 12px;

}



.sidebar-categories-box .list-item li .text a {

    color: var(--thm-body-font-color);

    font-size: 14px;

    line-height: 24px;

    font-family: var(--thm-font-2);

    font-weight: 600;

    text-transform: uppercase;

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.sidebar-categories-box .list-item li:hover .text a {

    color: var(--thm-primary-color);

}







.sidebar-blog-post {

    position: relative;

    display: block;

    padding-top: 28px;

}



.sidebar-blog-post ul {

    position: relative;

    display: block;

}



.sidebar-blog-post ul li {

    position: relative;

    display: block;

    padding-bottom: 26px;

    margin-bottom: 24px;

}



.sidebar-blog-post ul li::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 70px;

    height: 1px;

    background-color: #e3e4ea;

}



.sidebar-blog-post ul li:last-child {

    padding-bottom: 0;

    margin-bottom: 0;

}



.sidebar-blog-post ul li:last-child::before {

    display: none;

}



.sidebar-blog-post ul li .title {

    position: relative;

    display: block;

    margin-bottom: 11px;

}



.sidebar-blog-post ul li .title h3 {

    font-size: 18px;

    line-height: 28px;

    font-weight: 600;

}



.sidebar-blog-post ul li .title h3 a {

    color: var(--thm-black);

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.sidebar-blog-post ul li .title h3 a:hover {

    color: var(--thm-primary-color);

}



.sidebar-blog-post ul li .date-box {

    position: relative;

    display: flex;

    align-items: center;

}



.sidebar-blog-post ul li .date-box .icon {

    position: relative;

    display: block;

    line-height: 0;

}



.sidebar-blog-post ul li .date-box .icon i {

    position: relative;

    display: inline-block;

    color: var(--thm-primary-color);

    font-size: 16px;

    line-height: 16px;

}



.sidebar-blog-post ul li .date-box .text {

    position: relative;

    display: block;

    padding-left: 10px;

}



.sidebar-blog-post ul li .date-box .text p {

    color: #8e8f96;

}



.sidebar-blog-post ul li .overlay-img {

    position: absolute;

    right: 0;

    bottom: -4px;

    overflow: hidden;

    width: 100px;

    height: 100px;

    opacity: 0;

    border-radius: 50%;

    transform: translateX(10px);

    -webkit-transition: all 0.4s ease;

    -o-transition: all 0.4s ease;

    transition: all 0.4s ease;

    z-index: -1;

}



.sidebar-blog-post ul li:hover .overlay-img {

    opacity: 1;

    transform: translateY(0px);

}



.sidebar-blog-post ul li .overlay-img img {

    width: 100%;

}







.sidebar-blog-tag {

    position: relative;

    display: block;

    padding-top: 35px;

}



.sidebar-blog-tag ul {

    position: relative;

    display: block;

    overflow: hidden;

    border-radius: 4px;

    margin-left: -2.5px;

    margin-right: -2.5px;

}



.sidebar-blog-tag ul li {

    position: relative;

    display: block;

    float: left;

    margin: 0 2.5px 5px;

}



.sidebar-blog-tag ul li a {

    position: relative;

    display: block;

    padding: 5px 14px 6px;

    border-radius: 6px;

    background: var(--thm-gray-bg);

    border: 1px solid var(--thm-gray-bg);

    color: var(--thm-body-font-color);

    font-size: 16px;

    line-height: 22px;

    font-weight: 400;

    font-family: var(--thm-font);

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.sidebar-blog-tag ul li:hover a {

    color: var(--thm-primary-color);

    border: 1px solid var(--thm-primary-color);

    background-color: var(--thm-white);

}







/*** 

=============================

    Blog Page Four Css

=============================

***/

.blog-page-four {

    background-color: var(--thm-white);

}



.blog-page-four-content {

    position: relative;

    display: block;

    border-right: 1px solid #e3e4ea;

    padding-right: 50px;

    margin-right: 50px;

    padding-top: 120px;

    padding-bottom: 120px;

}



.blog-page-four-single {

    position: relative;

    display: block;

    margin-bottom: 40px;

}



.blog-page-four-single .category-box {

    position: relative;

    display: inline-flex;

    align-items: center;

    border-top-left-radius: 4px;

    background-color: var(--thm-secondary-color);

    padding: 5px 20px 5px;

}



.blog-page-four-single .category-box::before {

    content: "";

    position: absolute;

    top: 0;

    right: -20px;

    bottom: -1px;

    width: 20px;

    background-color: var(--thm-secondary-color);

    clip-path: polygon(0 0, 0 100%, 100% 100%);

}



.blog-page-four-single .category-box .icon {

    position: relative;

    display: block;

    line-height: 0;

}



.blog-page-four-single .category-box .icon i {

    position: relative;

    display: inline-block;

    color: var(--thm-white);

    font-size: 14px;

}



.blog-page-four-single .category-box .title {

    position: relative;

    display: block;

    padding-left: 9px;

}



.blog-page-four-single .category-box .title h6 {

    color: var(--thm-white);

    font-size: 14px;

    line-height: 24px;

    font-weight: 600;

    text-transform: uppercase;

}



.blog-page-four-single__inner {

    position: relative;

    display: flex;

    align-items: center;

    background-color: var(--thm-white);

    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);

    padding: 35px 35px 35px;

}



.blog-page-four-single__inner .img-box {

    position: relative;

    display: block;

    overflow: hidden;

    border-radius: 4px;

}



.blog-page-four-single__inner .img-box img {

    width: 100%;

}



.blog-page-four-single__inner .content-box {

    position: relative;

    display: block;

    padding-left: 40px;

    flex: 1;

}



.blog-page-four-single__inner .content-box h3 {

    font-size: 26px;

    line-height: 35px;

    font-weight: 600;

}



.blog-page-four-single__inner .content-box h3 a {

    color: var(--thm-black);

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.blog-page-four-single__inner .content-box h3 a:hover {

    color: var(--thm-primary-color);

}



.blog-page-four-single__inner .content-box .meta-box {

    position: relative;

    display: block;

    border-bottom: 1px solid #e3e4ea;

    padding: 13px 0px 18px;

}



.blog-page-four-single__inner .content-box .meta-box .meta-info {

    position: relative;

    display: flex;

    align-items: center;

}



.blog-page-four-single__inner .content-box .meta-box .meta-info li {

    position: relative;

    display: flex;

    align-items: center;

}



.blog-page-four-single__inner .content-box .meta-box .meta-info li+li {

    margin-left: 25px;

}



.blog-page-four-single__inner .content-box .meta-box .meta-info li .icon {

    position: relative;

    display: block;

    line-height: 0;

    color: var(--thm-primary-color);

    font-size: 14px;

    font-weight: 700;

}



.blog-page-four-single__inner .content-box .meta-box .meta-info li .text {

    position: relative;

    display: block;

    padding-left: 9px;

}



.blog-page-four-single__inner .content-box .meta-box .meta-info li .text p {

    color: #8e8f96;

}



.blog-page-four-single__inner .content-box .text-box {

    position: relative;

    display: block;

    padding-top: 20px;

}



.blog-page-four-single__inner .content-box .text-box p {

    margin: 0;

}



.blog-page-four .styled-pagination.pdtop30 {

    padding-top: 20px;

}









/*** 

=============================

    Blog Single Page Css

=============================

***/

.blog-single-page {

    background-color: var(--thm-white);

}



.blog-single-content {

    position: relative;

    display: block;

    padding-top: 120px;

    padding-bottom: 120px;

}



.blog-details-content__single {

    position: relative;

    display: block;

}



.blog-single-img {

    position: relative;

    display: block;

}



.blog-single-img .category-box {

    position: relative;

    display: inline-flex;

    align-items: center;

    border-top-left-radius: 4px;

    background-color: var(--thm-secondary-color);

    padding: 5px 20px 5px;

}



.blog-single-img .category-box::before {

    content: "";

    position: absolute;

    top: 0;

    right: -20px;

    bottom: -1px;

    width: 20px;

    background-color: var(--thm-secondary-color);

    clip-path: polygon(0 0, 0 100%, 100% 100%);

}



.blog-single-img .category-box .icon {

    position: relative;

    display: block;

    line-height: 0;

}



.blog-single-img .category-box .icon i {

    position: relative;

    display: inline-block;

    color: var(--thm-white);

    font-size: 14px;

}



.blog-single-img .category-box .title {

    position: relative;

    display: block;

    padding-left: 9px;

}



.blog-single-img .category-box .title h6 {

    color: var(--thm-white);

    font-size: 14px;

    line-height: 24px;

    font-weight: 600;

    text-transform: uppercase;

}



.blog-single-img .img-box {

    position: relative;

    display: block;

    overflow: hidden;

    border-radius: 0px 4px 4px 4px;

	margin-bottom: 43px;

}



.blog-single-text-box1 {

    position: relative;

    display: block;

}



.blog-single-text-box1 p {

    margin: 0;

}



.blog-single-text-box1 p:first-child::first-letter {

    position: relative;

    display: inline-flex;

    float: left;

    align-items: center;

    justify-content: center;

    width: 45px;

    height: 45px;

    border-radius: 4px;

    background-color: var(--thm-primary-color);

    color: var(--thm-white);

    font-size: 24px;

    line-height: 24px;

    font-weight: 600;

    font-family: var(--thm-font);

    text-transform: uppercase;

    margin-top: 7px;

    margin-right: 20px;

    padding: 8px 10px 8px

}



.blog-single-text-box1 p+p {

    margin-top: 26px;

}



.blog-single-quote-box {

    position: relative;

    display: block;

    padding-top: 43px;

}



.blog-single-quote-box .top {

    position: relative;

    display: block;

    overflow: hidden;

    border-radius: 4px;

    background-color: var(--thm-secondary-color);

    padding: 33px 40px 31px;

    padding-right: 95px;

}



.blog-single-quote-box .top .shape {

    position: absolute;

    top: 35px;

    right: 30px;

}



.blog-single-quote-box .top .title {

    position: relative;

    display: block;

}



.blog-single-quote-box .top .title h3 {

    color: var(--thm-white);

    font-size: 22px;

    line-height: 32px;

    font-weight: 500;

}



.blog-single-quote-box .bottom {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-radius: 0px 0px 4px 4px;

    background-color: var(--thm-gray-bg);

    padding: 12px 30px 12px;

    margin-left: 40px;

    margin-right: 40px;

}



.blog-single-quote-box .bottom .left {

    position: relative;

    display: flex;

    align-items: center;

}



.blog-single-quote-box .bottom .left .cercale {

    position: relative;

    display: block;

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background-color: transparent;

    border: 2px solid var(--thm-primary-color);

}



.blog-single-quote-box .bottom .left h6 {

    color: var(--thm-primary-color);

    font-size: 14px;

    line-height: 24px;

    font-weight: 600;

    text-transform: uppercase;

    margin-left: 5px;

	margin-bottom: 0px;

}



.blog-single-quote-box .bottom .right {

    position: relative;

    display: block;

}



.blog-single-quote-box .bottom .right a {

    position: relative;

    display: inline-block;

    color: var(--thm-body-font-color);

    font-size: 16px;

    line-height: 26px;

    font-weight: 400;

    font-family: var(--thm-font);

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.blog-single-quote-box .bottom .right a:hover {

    color: var(--thm-primary-color);

}



.blog-single-text-box2 {

    position: relative;

    display: block;

    padding-top: 52px;

}



.blog-single-text-box2 h3 {

    font-size: 30px;

    line-height: 40px;

    font-weight: 600;

}



.blog-single-text-box2 .text {

    position: relative;

    display: block;

    padding-top: 23px;

}



.blog-single-text-box2 .text p {

    margin: 0;

}



.blog-single-text-box3 {

    position: relative;

    display: block;

    padding-top: 31px;

}



.blog-single-text-box3 .title {

    position: relative;

    display: flex;

    align-items: center;

}



.blog-single-text-box3 .title .icon {

    position: relative;

    display: block;

    top: 2px;

    margin-right: 15px;

}



.blog-single-text-box3 .title .icon i {

    position: relative;

    display: inline-block;

    color: var(--thm-primary-color);

    font-size: 24px;

    line-height: 24px;

}



.blog-single-text-box3 .title h3 {

    font-size: 22px;

    line-height: 32px;

    font-weight: 600;

}



.blog-single-text-box3 .text {

    position: relative;

    display: block;

    padding-top: 18px;

}



.blog-single-text-box3 .text p {

    margin: 0;

}



.blog-single-text-box3 .list-item {

    position: relative;

    display: block;

    padding-top: 21px;

}



.blog-single-text-box3 .list-item li {

    position: relative;

    display: flex;

    align-items: center;

}



.blog-single-text-box3 .list-item li+li {

    margin-top: 7px;

}



.blog-single-text-box3 .list-item li .icon {

    position: relative;

    display: block;

    line-height: 0;

    margin-right: 15px;

    top: 1px;

}



.blog-single-text-box3 .list-item li .icon i {

    position: relative;

    display: inline-block;

    color: var(--thm-secondary-color);

    font-size: 17px;

}



.blog-single-text-box3 .list-item li p {

    margin: 0;

}



.blog-single-text-box4 {

    position: relative;

    display: block;

    padding-top: 31px;

}



.blog-single-text-box4 .title {

    position: relative;

    display: flex;

    align-items: center;

}



.blog-single-text-box4 .title .icon {

    position: relative;

    display: block;

    top: 2px;

    margin-right: 15px;

}



.blog-single-text-box4 .title .icon i {

    position: relative;

    display: inline-block;

    color: var(--thm-primary-color);

    font-size: 24px;

    line-height: 24px;

}



.blog-single-text-box4 .title h3 {

    font-size: 22px;

    line-height: 32px;

    font-weight: 600;

}



.blog-single-text-box4 .text {

    position: relative;

    display: block;

    padding-top: 18px;

}



.blog-single-text-box4 .text p {

    margin: 0;

}



.single-blog-post-tag {

    position: relative;

    display: block;

    padding-top: 49px;

}



.single-blog-post-tag .title {

    position: relative;

    display: block;

    padding-left: 22px;

}



.single-blog-post-tag .title .icon {

    position: absolute;

    top: 4px;

    left: 0;

    line-height: 0;

}



.single-blog-post-tag .title .icon i {

    position: relative;

    display: inline-block;

    color: var(--thm-primary-color);

    font-size: 16px;

}



.single-blog-post-tag .title h4 {

    font-size: 16px;

    line-height: 26px;

    font-weight: 600;

}



.single-blog-post-tag ul {

    position: relative;

    display: block;

    overflow: hidden;

    margin-left: -2.5px;

    margin-right: -2.5px;

    padding-top: 19px;

}



.single-blog-post-tag ul li {

    position: relative;

    display: block;

    float: left;

    margin: 0 2.5px 0px;

}



.single-blog-post-tag ul li a {

    position: relative;

    display: block;

    padding: 7px 15px 6px;

    border-radius: 4px;

    background: var(--thm-gray-bg);

    color: var(--thm-body-font-color);

    font-size: 16px;

    line-height: 22px;

    font-weight: 400;

    font-family: var(--thm-font);

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.single-blog-post-tag ul li:hover a {

    color: var(--thm-white);

    background-color: var(--thm-black-bg);

}



.blog-single-author-box {

    position: relative;

    display: block;

    border-radius: 4px;

    border: 1px solid #e4e5eb;

    padding: 40px 40px 23px;

    margin-top: 60px;

}



.blog-single-author {

    position: relative;

    display: flex;

    align-items: flex-start;

}



.blog-single-author .img-box {

    position: relative;

    display: block;

    overflow: hidden;

    width: 120px;

    height: 120px;

    border-radius: 4px;

}



.blog-single-author .img-box img {

    width: 100%;

}



.blog-single-author .text-box {

    position: relative;

    display: block;

    padding-left: 40px;

    flex: 1;

    top: -6px;

}



.blog-single-author .text-box__top {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 14px;

}



.blog-single-author .text-box__top .left {

    position: relative;

    display: block;

}



.blog-single-author .text-box__top .left h5 {

    color: var(--thm-primary-color);

    font-size: 14px;

    line-height: 24px;

    text-transform: uppercase;

    margin-bottom: 2px;

}



.blog-single-author .text-box__top .left h3 {

    font-size: 22px;

    line-height: 32px;

    font-weight: 600;

}



.blog-single-author .text-box__top .right {

    position: relative;

    display: block;

}



.blog-single-author .text-box__top .right .social-links {

    position: relative;

    display: block;

}



.blog-single-author .text-box__top .right .social-links ul {

    position: relative;

    display: flex;

    align-items: center;

}



.blog-single-author .text-box__top .right .social-links ul li {

    position: relative;

    display: block;

}



.blog-single-author .text-box__top .right .social-links ul li+li {

    margin-left: 10px;

}



.blog-single-author .text-box__top .right .social-links ul li a {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    width: 42px;

    height: 42px;

    border-radius: 4px;

    background-color: transparent;

    border: 1px solid #e3e4ea;

    color: var(--thm-black);

    font-size: 18px;

    line-height: 42px;

    transition: all 300ms linear;

    transition-delay: 0.1s;

    z-index: 1

}



.blog-single-author .text-box__top .right .social-links ul li a:hover {

    color: var(--thm-white);

    border: 1px solid var(--thm-primary-color);

}



.blog-single-author .text-box__top .right .social-links ul li a::before {

    position: absolute;

    top: 0px;

    left: 0px;

    bottom: 0px;

    right: 0px;

    background-color: var(--thm-primary-color);

    content: "";

    opacity: 0;

    transform: scale(0.5);

    transform-style: preserve-3d;

    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);

    z-index: -1;

}



.blog-single-author .text-box__top .right .social-links ul li a:hover::before {

    opacity: 1;

    transform: scale(1);

}



.blog-single-author .text-box .text-box__bottom {

    position: relative;

    display: block;

}



.blog-single-author .text-box .text-box__bottom p {

    margin: 0;

}



.blog-single-author .text-box .text-box__bottom a {

    position: relative;

    display: inline-flex;

    align-items: center;

    color: var(--thm-black);

    font-size: 16px;

    line-height: 26px;

    font-family: var(--thm-font-2);

    font-weight: 600;

    text-transform: capitalize;

    margin-top: 17px;

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.blog-single-author .text-box .text-box__bottom a:hover {

    color: var(--thm-primary-color);

}



.blog-single-author .text-box .text-box__bottom a span {

    color: var(--thm-black);

    font-size: 20px;

    line-height: 20px;

    margin-right: 5px;

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.blog-single-author .text-box .text-box__bottom a:hover span {

    color: var(--thm-primary-color);

}



.blog-prev-next-option {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 60px;

}



.blog-prev-next-option::before {

    content: "";

    position: absolute;

    top: 0;

    left: 50%;

    bottom: 0;

    width: 1px;

    background-color: #e3e4ea;

}



.blog-prev-next-option .single-box {

    position: relative;

    display: block;

}



.blog-prev-next-option .single-box.left {

    text-align: left;

}



.blog-prev-next-option .single-box.right {

    text-align: right;

}



.blog-prev-next-option .single-box .title-box {

    position: relative;

    display: block;

    padding-bottom: 0;

}



.blog-prev-next-option .single-box .title-box .button-box {

    position: relative;

    display: block;

    line-height: 0;

    padding-bottom: 11px;

}



.blog-prev-next-option .single-box .title-box .button-box a {

    position: relative;

    display: inline-flex;

    align-items: center;

    color: #a0a3b1;

    font-size: 16px;

    line-height: 26px;

    font-family: var(--thm-font-2);

    font-weight: 600;

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.blog-prev-next-option .single-box .title-box .button-box a:hover {

    color: var(--thm-primary-color);

}



.blog-prev-next-option .single-box .title-box .button-box a span {

    position: relative;

    top: -1px;

    display: inline-block;

    font-size: 16px;

    line-height: 16px;

}



.blog-prev-next-option .single-box.left .title-box .button-box a span {

    margin-right: 7px;

    transform: rotate(180deg);

}



.blog-prev-next-option .single-box.right .title-box .button-box a span {

    margin-left: 7px;

}



.blog-prev-next-option .single-box .title-box h3 {

    font-size: 18px;

    line-height: 28px;

    font-weight: 600;

	margin-bottom: 0;

}



.blog-prev-next-option .single-box .title-box h3 a {

    color: var(--thm-black);

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.blog-prev-next-option .single-box .title-box h3 a:hover {

    color: var(--thm-primary-color);

}



.back-to-blog-post-btn {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 4px;

    background-color: var(--thm-gray-bg);

    margin-top: 40px;

}



.back-to-blog-post-btn a {

    position: relative;

    display: inline-flex;

    align-items: center;

    color: var(--thm-black);

    font-size: 16px;

    line-height: 60px;

    font-family: var(--thm-font-2);

    font-weight: 600;

    transition: all 200ms linear;

    transition-delay: 0.1s;

}



.back-to-blog-post-btn a:hover {

    color: var(--thm-primary-color);

}



.back-to-blog-post-btn a span {

    position: relative;

    display: inline-block;

    color: var(--thm-primary-color);

    font-size: 18px;

    margin-right: 9px;

    top: -1px;

}







.add-comment-box {

    position: relative;

    display: block;

    padding-top: 53px;

}



.add-comment-box .inner-title {

    position: relative;

    display: block;

}



.add-comment-box .inner-title h3 {

    font-size: 26px;

    line-height: 36px;

    font-weight: 600;

    margin-bottom: 8px;

}



.add-comment-box .inner-title p {

    margin: 0;

}



.add-comment-box #add-comment-form {

    position: relative;

    display: block;

}



.add-comment-box #add-comment-form .input-box {

    position: relative;

    display: block;

    margin-bottom: 20px;

}



.add-comment-box #add-comment-form .input-box .field-label {

    position: relative;

    display: block;

}



.add-comment-box #add-comment-form .input-box .field-label p {

    margin: 0;

}



.add-comment-box #add-comment-form input[type="text"],

.add-comment-box #add-comment-form input[type="email"],

.add-comment-box #add-comment-form textarea {

    position: relative;

    display: block;

    border-radius: 4px;

    border: 1px solid #dde6e3;

    background: transparent;

    width: 100%;

    height: 55px;

    color: #a0a3b1;

    font-size: 16px;

    font-family: var(--thm-font);

    font-weight: 400;

    font-style: normal;

    text-transform: capitalize;

    padding: 0 20px;

    transition: all 500ms ease;

}



.add-comment-box #add-comment-form textarea {

    height: 120px;

    padding: 14px 20px;

}



.add-comment-box #add-comment-form input[type="text"]:focus {

    border-color: var(--thm-primary-color);

}



.add-comment-box #add-comment-form input[type="email"]:focus {

    border-color: var(--thm-primary-color);

}



.add-comment-box #add-comment-form textarea:focus {

    border-color: var(--thm-primary-color);

}



.add-comment-box #add-comment-form .checked-box1 input[type="checkbox"]+label span {

    top: 5px;

    width: 15px;

    height: 15px;

    background-color: var(--thm-gray-bg);

    border: 1px solid var(--thm-border-color);

    border-radius: 4px;

}



.add-comment-box #add-comment-form .checked-box1 label span:before {

    width: 7px;

    height: 7px;

    margin: 3px auto 0px;

}



.add-comment-box #add-comment-form .checked-box1 label {

    padding-left: 25px;

}



.add-comment-box #add-comment-form .button-box {

    position: relative;

    display: block;

    line-height: 0;

    padding-top: 35px;

}



.add-comment-box #add-comment-form .button-box .btn-one::before {

    background: var(--thm-primary-color);

}



.add-comment-box #add-comment-form .button-box .btn-one::after {

    background: var(--thm-secondary-color);

}



.coverup-comment-item .comment{

	display: flex;

	gap: 30px;

	flex-wrap: wrap;

	margin-bottom: 30px;

	padding-bottom: 30px;

	border-bottom: 1px solid #dde6e3;

}



.comment-inner > .coverup-comment-item:last-child .comment{

	margin-bottom: 0;

	padding-bottom: 0px;

	border-bottom: 0px;

}



.coverup-comment-item .comment .thumb-box{

	flex-shrink: 0;

	max-width: 80px;

}



.te-lower-coment__wrap{

	flex: 1;

	max-width: calc(100% - 120px);

}



.coverup-comment-item .te-lower-coment__wrap .c-title{

	font-size: 16px;

	font-weight: 600;

	margin-bottom: 10px;

	display: flex;

	justify-content: space-between;

	align-items: center;

}



.coverup-comment-item .te-lower-coment__wrap .c-title span{

	font-size: 14px;

	color:  var(--thm-primary-color);

}



.comment-reply-link{

	font-size: 14px;

	margin-top: 10px;

	color:  var(--thm-primary-color);

	display: block;

}



.coverup-comment-item .coverup-comment-item{

	margin-left: 80px;

}



.coverup-comment-item .add-comment-box{

	padding-top: 0;

	margin-bottom: 35px;

}



blockquote{

	padding: 40px;

	background-color: #0ccfa2;

	border-radius: 5px;

	margin-bottom: 25px;

}



blockquote p{

	color: #ffffff;

}



.mt_30{

	margin-top: 30px;

}



.mb_33{

	margin-bottom: 33px;

}



@media only screen and (max-width: 600px){

	.coverup-comment-item .comment{

		flex-direction: column;

	}

	.te-lower-coment__wrap{

		max-width: 100%;

	}

	.coverup-comment-item .coverup-comment-item{

		margin-left: 0px;

	}

}





/*** 

=============================================

    End Css

=============================================

***/