/*!
Theme Name: custom
Theme URI: http://underscores.me/
Author: vishal
Author URI: #
Description: #
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: custom
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

custom is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

.blog-style1 {
    background-color: var(--thm-white);
    padding: 140px 0px 0px;
    z-index: 2;
}

.blog-style1__top {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 48px;
}

.blog-style1__top .sec-title {
    padding-bottom: 0px;
}

.blog-style1__top .btn-box {
    position: relative;
    display: block;
    top: -4px;
}

.blog-style1__top .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: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-style1__top .btn-box a:hover {
    color: var(--thm-primary-color);
}

.blog-style1__top .btn-box a span {
    margin-right: 5px;
}

.single-blog-style1 {
    position: relative;
    display: block;
}

.single-blog-style1 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-blog-style1 .img-box img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-blog-style1:hover .img-box img {
    filter: blur(5px);
    transform: scale(1.05) rotate(0deg);
}

.single-blog-style1__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(-30px);
    transform-origin: bottom;
    transition: all 500ms ease;
    z-index: 3;
}

.single-blog-style1:hover .single-blog-style1__overlay-icon {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 300ms;
}

.single-blog-style1__overlay-icon a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--thm-white);
    color: var(--thm-black);
    font-size: 25px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style1__overlay-icon a:hover {
    color: var(--thm-white);
    background-color: var(--thm-primary-color);
}

.single-blog-style1 .content-box {
    position: relative;
    display: block;
    background-color: var(--thm-gray-bg);
    padding: 25px 30px 22px;
}

.single-blog-style1 .content-box .meta-box {
    position: relative;
    display: block;
}

.single-blog-style1 .content-box .meta-info {
    position: relative;
    display: flex;
    align-items: center;
}

.single-blog-style1 .content-box .meta-info li {
    position: relative;
    display: flex;
    align-items: center;
}

.single-blog-style1 .content-box .meta-info li+li {
    margin-left: 40px;
}

.single-blog-style1 .content-box .meta-info li::before {
    content: "";
    position: absolute;
    left: -25px;
    bottom: 8px;
    right: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #a9a7a6;
}

.single-blog-style1 .content-box .meta-info li:first-child::before {
    display: none;
}

.single-blog-style1 .content-box .meta-info li .icon {
    position: relative;
    display: block;
    color: #a9a7a6;
    font-size: 14px;
    line-height: 0;
    margin-right: 10px;
}

.single-blog-style1 .content-box .meta-info li .text {
    position: relative;
    display: block;
}

.single-blog-style1 .content-box .meta-info li .text p {
    color: #a9a7a6;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
}

.single-blog-style1 .content-box .title {
    position: relative;
    display: block;
    padding-top: 9px;
}

.single-blog-style1 .content-box .title h3 {
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
}

.single-blog-style1 .content-box .title h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style1 .content-box .title h3 a:hover {
    color: var(--thm-primary-color);
}

.single-blog-style1 .content-box .btn-box {
    position: relative;
    display: block;
    padding-top: 20px;
}

.single-blog-style1 .content-box .btn-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style1 .content-box .btn-box a:hover {
    color: var(--thm-primary-color);
}

.single-blog-style1 .content-box .btn-box a span {
    font-size: 16px;
    line-height: 36px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 10px;
    opacity: 0;
    transform: translateX(-30px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-blog-style1:hover .content-box .btn-box a span {
    opacity: 1;
    transform: translateX(0px);
}


.single-blog-style1 .content-box .category {
    position: absolute;
    bottom: 0px;
    right: 45px;
    background-color: var(--thm-white);
    padding: 12px 10px 0px;
}

.single-blog-style1 .content-box .category::before {
    content: "";
    position: absolute;
    top: 0;
    left: -15px;
    bottom: 0;
    width: 15px;
    height: 26px;
    background-color: var(--thm-white);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.single-blog-style1 .content-box .category::after {
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    bottom: 0;
    width: 15px;
    height: 26px;
    background-color: var(--thm-white);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.single-blog-style1 .content-box .category h4 {
    color: var(--thm-primary-color);
    font-size: 16px;
    line-height: 13px;
    text-transform: uppercase;
}

.blog-page-one {
    padding: 140px 0px 140px;
}
.blog-details {
    background-color: #fff;
    padding: 140px 0px 140px;
}

.single-sidebar-box {
    position: relative;
    display: block;
/*     padding-top: 42px; */
    background: #efefef;
    margin-bottom: 20px;
    padding: 20px;
}

.single-sidebar-box .sidebar-title {
    position: relative;
    display: block;
}

.single-sidebar-box .sidebar-title h3 {
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
}

.single-sidebar-box .sidebar-title .border-line {
    position: relative;
    display: block;
    width: 50px;
    height: 1px;
    background-color: var(--thm-primary-color);
    margin-top: 18px;
}

.single-sidebar-box .sidebar-title .border-line::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
    transform: translateY(-50%);
    z-index: 1;
}



.single-sidebar__categories {
    position: relative;
    display: block;
    padding-top: 30px;
}

.single-sidebar__categories li {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-bottom: 14px;
    margin-bottom: 13px;
}

.single-sidebar__categories li::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 70px;
    height: 1px;
    background-color: #e3e3e3;
    -webkit-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.single-sidebar__categories li:hover::before {
    width: 100%;
}

.single-sidebar__categories li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0px;
    height: 1px;
    background-color: var(--thm-primary-color);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-sidebar__categories li:hover::after {
    width: 70px;
}

.single-sidebar__categories li:last-child {
    margin-bottom: 0px;
}

.single-sidebar__categories li .icon {
    position: relative;
    display: block;
    color: #a9a7a6;
    font-size: 12px;
    line-height: 0;
    margin-right: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-sidebar__categories li:hover .icon {
    color: var(--thm-primary-color);
}

.single-sidebar__categories li h3 {
    color: #a9a7a6;
    font-size: 16px;
    line-height: 26px;
    text-transform: uppercase;
}

.single-sidebar__categories li h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-sidebar__categories li:hover h3 a {
    color: var(--thm-black);
}





.single-sidebar__blog-post {
    position: relative;
    display: block;
    margin-top: 40px;
}

.single-sidebar__blog-post li {
    position: relative;
    display: block;
    padding-left: 100px;
}

.single-sidebar__blog-post li+li {
    margin-top: 20px;
}

.single-sidebar__blog-post li .img-box {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 70px;
}

.single-sidebar__blog-post li .img-box img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-sidebar__blog-post li:hover .img-box img {
    filter: blur(4px);
    transform: scale(1.05) rotate(0deg);
}

.single-sidebar__blog-post li .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(30px);
    transform-origin: bottom;
    transition: all 500ms ease;
    z-index: 3;
}

.single-sidebar__blog-post li:hover .img-box .overlay-icon {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 300ms;
}

.single-sidebar__blog-post li .img-box .overlay-icon a {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-sidebar__blog-post li:hover .img-box .overlay-icon a:hover {
    color: var(--thm-primary-color);
}

.single-sidebar__blog-post li .content-box {
    position: relative;
    display: block;
    top: -6px;
}

.single-sidebar__blog-post li .content-box .date {
    position: relative;
    display: flex;
    align-items: center;
}

.single-sidebar__blog-post li .content-box .date .icon {
    position: relative;
    display: block;
    line-height: 0;
    margin-right: 8px;
}

.single-sidebar__blog-post li .content-box .date .icon img {
    width: auto;
}

.single-sidebar__blog-post li .content-box .date h4 {
    color: #a9a7a6;
    font-size: 16px;
    line-height: 26px;
    text-transform: uppercase;
}

.single-sidebar__blog-post li .content-box .title {
    position: relative;
    display: block;
    padding-top: 6px;
}

.single-sidebar__blog-post li .content-box .title h3 {
    font-size: 18px;
    line-height: 28px;
    text-transform: uppercase;
}

.single-sidebar__blog-post li .content-box .title h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-sidebar__blog-post li .content-box .title h3 a:hover {
    color: var(--thm-primary-color);
}


.single-sidebar__blog-post li .content-box .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 10px;
}

.single-sidebar__blog-post li .content-box .btn-box a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 20px;
    line-height: 18px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-sidebar__blog-post li .content-box .btn-box a:hover {
    color: var(--thm-primary-color);
}
.single-sidebar__tag-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: -5px;
    margin-right: -5px;
    padding-top: 40px;
}

.single-sidebar__tag-box li {
    position: relative;
    display: block;
    float: left;
    margin: 0 5px 10px;
}

.single-sidebar__tag-box li a {
    position: relative;
    display: block;
    padding: 6px 14px 6px;
    background: transparent;
    border: 1px solid #e3e3e3;
    color: var(--thm-body-font-color);
    font-size: 17px;
    line-height: 26px;
    font-weight: 400;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-sidebar__tag-box li:hover a {
    color: var(--thm-black);
    border: 1px solid var(--thm-gray-bg);
    background-color: var(--thm-gray-bg);
}
.wp-block-heading, .blog-details-single p, ul.wp-block-list, .wp-block-image{
	margin-bottom:20px;
}
ul.wp-block-list li {
    list-style: disc;
	margin: 10px 0px;
/*     line-height: 40px; */
}
.breadcrumb-style1 .title h2{font-size:40px;}
ul.wp-block-list{padding-left:20px;}
.blog-details-single a{
	text-decoration:underline;
	color: #ff6e00;
}
ol.wp-block-list {
  padding-left:20px;
	margin-bottom:15px;
}
ol.wp-block-list li {
    list-style: auto;
	margin-bottom:15px;
}
.wp-block-heading {
	font-weight:500;
}