 

/*=============================
	Blog Two Css
===============================*/
.blog-two {
    position: relative;
    display: block;
    padding: 70px 0px 190px;
    /* margin-bottom: -150px; */
    z-index: 1;
}

.blog-two__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.1;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

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

.blog-two__top .sec-title-two {
    padding-bottom: 0;
}

.blog-two__top .btn-box {
    position: relative;
    display: block;
    top: -12px;
}

.blog-two__top .btn-box .thm-btn {
    color: var(--thm-white);
}

.blog-two__top .btn-box .thm-btn::before {
    background: var(--thm-black);
}

.blog-two__single {
    position: relative;
    display: block;
    border-radius: 15px;
    box-shadow: 0px 10px 50px -28px rgba(2, 2, 49, 0.50);
    background: var(--thm-gray-bg);
    margin-bottom: 25px;
}

.blog-two__single-content {
    position: relative;
    display: block;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 15px 20px 3px;
}

.blog-two__single-content h2 {
    font-size: 22px;
    font-weight: 500;
    line-height: 34px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.blog-two__single-content h2 a {
    color: var(--thm-black);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
    color: inherit;
    transition: all 500ms ease;
}

.blog-two__single-content h2 a:hover {
    background-size: 100% 1px;
}

.blog-two__single-content .meta-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 11px;
}

.blog-two__single-content .meta-box li {
    position: relative;
    display: block;
    float: left;
    color: var(--thm-body-font-color);
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
}

.blog-two__single-content .meta-box li+li {
    margin-left: 5px;
}

.blog-two__single-content .meta-box li a {
    color: var(--thm-heading-font-color);
    font-weight: 500;
}

.blog-two__single-content .meta-box li a:hover {
    color: var(--thm-primary);
}


.blog-two__single-content .btn-box {
    position: relative;
    display: block;
    margin-top: 15px;
    margin-bottom: 20px;
}

.blog-two__single-content .btn-box a {
    color: var(--thm-primary);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--thm-heading-font);
}

.blog-two__single-content .btn-box a:hover {
    /* color: var(--thm-black); */
}

.blog-two__single-content .btn-box a span {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    top: 4px;
    padding-left: 8px;
}

.blog-two__single-img {
    position: relative;
    display: block;
}

.blog-two__single-img .overlay-img {
    position: absolute;
    bottom: -20px;
    left: 20px;
    border-radius: 25px;
    z-index: 5;
    padding: 8px 20px;
    color: #1792ce;
    background: #ffffff;
    font-weight: 500;
    border: 1px solid #0707070f;
}

.blog-two__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 25px;
    z-index: 1;
    height: 260px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.blog-two__single-img .inner img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.blog-two__single:hover .blog-two__single-img .inner img {
    transform: scale(1);
}

.blog-two__single-img .inner:before {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.blog-two__single:hover .blog-two__single-img .inner:before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

 

/***
=====================================================
Sidebar Css 
=====================================================
***/
.sidebar {
    position: relative;
    display: block;
    margin-left: 30px;
}

.sidebar__single {
    position: relative;
    display: block;
}

.sidebar__single+.sidebar__single {
    margin-top: 30px;
}

.sidebar__single .title-box {
    position: relative;
    display: block;
    margin-top: -9px;
    margin-bottom: 25px;
}

.sidebar__single .title-box h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    text-transform: capitalize;
}
 
.sidebar__services {
    position: relative;
    display: block;
    background: #f7f7f7;
    border-radius: 20px;
    padding: 35px 30px 35px;
}

.sidebar__services-list {
    position: relative;
    display: block;
}

.sidebar__services-list li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.sidebar__services-list li:last-child {
    margin-bottom: 0;
}

.sidebar__services-list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--thm-white);
    border-radius: 4px;
    color: #6F7174;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    text-transform: capitalize;
    padding: 13px 20px 12px;
    font-family: var(--thm-body-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.sidebar__services-list li a:hover,
.sidebar__services-list li a.active {
    color: #ffffff;
}

.sidebar__services-list li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    border-radius: 4px;
    background-color: var(--thm-primary);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.sidebar__services-list li a:hover::before,
.sidebar__services-list li a.active::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.sidebar__services-list li a span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 28px;
    border-radius: 13px;
    color: var(--thm-black);
    font-size: 15px;
    background: #f7f7f7;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar__services-list li a:hover span,
.sidebar__services-list li a.active span {
    background: var(--thm-black);
    color: #ffffff;
}

.sidebar__brochure {
    position: relative;
    display: block;
    background: #f7f7f7;
    border-radius: 20px;
    padding: 35px 30px 35px;
}

.sidebar__brochure-box {
    position: relative;
    display: block;
}

.sidebar__brochure-single {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 4px;
    padding: 10px 20px 11px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar__brochure-single:hover,
.sidebar__brochure-single.active {
    background: var(--thm-primary);
}

.sidebar__brochure-single+.sidebar__brochure-single {
    margin-top: 10px;
}

.sidebar__brochure-single .left-content {
    position: relative;
    display: flex;
    align-items: center;
}

.sidebar__brochure-single .left-content .icon {
    position: relative;
    display: block;
}

.sidebar__brochure-single .left-content .icon img {
    width: 100%;
}

.sidebar__brochure-single .left-content .text-box {
    position: relative;
    display: block;
    margin-left: 20px;
}

.sidebar__brochure-single .left-content .text-box h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-transform: capitalize;
    font-family: var(--thm-body-font);
}

.sidebar__brochure-single .left-content .text-box ul {
    position: relative;
    display: block;
}

.sidebar__brochure-single .left-content .text-box ul li {
    position: relative;
    display: inline-block;
    padding-right: 10px;
    padding-left: 5px;
}

.sidebar__brochure-single .left-content .text-box ul li:first-child {
    padding-left: 0;
}

.sidebar__brochure-single .left-content .text-box ul li:last-child {
    padding-right: 0px;
}

.sidebar__brochure-single .left-content .text-box ul li::before {
    position: absolute;
    top: 7px;
    right: 0;
    bottom: 7px;
    width: 1px;
    background: #d0ae43;
    content: "";
}

.sidebar__brochure-single .left-content .text-box ul li:last-child:before {
    display: none;
}

.sidebar__brochure-single .left-content .text-box ul li p {
    color: #6F7174;
    font-size: 13px;
    line-height: 23px;
    font-weight: 400;
    font-family: var(--thm-heading-font);
}

.sidebar__brochure-single .btn-box {
    position: relative;
    display: block;
}

.sidebar__brochure-single .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 40px;
    background: #e9ecef;
    border-radius: 13px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar__brochure-single:hover .btn-box a,
.sidebar__brochure-single.active .btn-box a {
    background: var(--thm-black);
}

.sidebar__brochure-single .btn-box a span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 15px;
    line-height: 15px;
    transform: rotate(90deg);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar__brochure-single:hover .btn-box a span,
.sidebar__brochure-single.active .btn-box a span {
    color: #ffffff;
}

 

.sidebar__latest-post {
    position: relative;
    display: block;
    background: #f7f7f7;
    border-radius: 20px;
    padding: 35px 30px 35px;
}

.sidebar__latest-post-list {
    position: relative;
    display: block;
}

.sidebar__latest-post-list li {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e9e9e9;
    padding-top: 20px;
    padding-bottom: 19px;
}

.sidebar__latest-post-list li:first-child {
    padding-top: 0;
}

.sidebar__latest-post-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar__latest-post-list li .img-box {
    position: relative;
    display: block;
    width: 80px;
    border-radius: 4px;
    overflow: hidden;
}

.sidebar__latest-post-list li .img-box img {
    width: 100%;
    width: 100%;
    height: 45px;
}

.sidebar__latest-post-list li .text-box {
    position: relative;
    display: block;
    margin-left: 20px;
    flex: 1;
}

.sidebar__latest-post-list li .text-box p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #1792ce;
}

.sidebar__latest-post-list li .text-box h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    margin-top: 7px;
}

.sidebar__latest-post-list li .text-box h3 a {
    color: var(--thm-black);
}

.sidebar__latest-post-list li .text-box h3 a:hover {
    color: var(--thm-primary);
}

 
/*=============================
	Blog Three Blog CSS
===============================*/
.blog-two--three--blog {
    position: relative;
    display: block;
    padding-bottom: 120px;
}

.blog-two--three--blog .blog-two__single {
    margin-bottom: 50px;
}

.blog-two--three--blog .styled-pagination {
    padding-top: 0px;
}

/*=============================
	Blog Standard Page CSS
===============================*/
.blog-standard-page {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    z-index: 1;
}

.blog-standard-page__content {
    position: relative;
    display: block;
    margin-right: -24px;
}

.blog-standard-page__single {
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.blog-standard-page__single-img {
    position: relative;
    display: block;
    border-radius: 4px;
    overflow: hidden;
    z-index: 1;
}

.blog-standard-page__single-img .video-btn {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.blog-standard-page__single-img .video-btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border: 2px solid var(--thm-white);
    border-radius: 50%;
    color: var(--thm-white);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    font-family: var(--thm-heading-font);
}

.blog-standard-page__single-img .video-btn a:hover {
    color: var(--thm-primary);
    border-color: var(--thm-primary);
}

.blog-standard-page__single-img .logo-box {
    position: absolute;
    top: 30px;
    left: 50px;
    z-index: 5;
}

.blog-standard-page__single-img:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    /* background: rgba(var(--thm-black-rgb), 0.6); */
    opacity: 0;
    z-index: 1;
    content: "";
}

.blog-standard-page__single:hover .blog-standard-page__single-img::before {
    opacity: 1;
}

.blog-standard-page__single-img img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.03);
}

.blog-standard-page__single:hover .blog-standard-page__single-img img {
    transform: scale(1);
}

.blog-standard-page__single-content {
    position: relative;
    display: block;
    background: var(--thm-white);
    box-shadow: 0px 4px 65px 0px rgba(18, 18, 19, 0.06);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 35px 25px 25px;
    z-index: 1;
}

.blog-standard-page__single-content .logo-box {
    position: absolute;
    bottom: 40px;
    right: 50px;
}

.blog-standard-page__single-content .meta-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 19px;
}

.blog-standard-page__single-content .meta-box.style2 {
    background: #f7f7f7;
    border-radius: 4px;
    max-width: 650px;
    width: 100%;
    padding: 13px 50px 13px;
}

.blog-standard-page__single-content .meta-box li {
    position: relative;
    display: block;
    margin-right: 20px;
}

.blog-standard-page__single-content .meta-box li:last-child {
    margin-right: 0px;
}

.blog-standard-page__single-content .meta-box li a {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 500ms ease;
}

.blog-standard-page__single-content .meta-box li a:hover {
    color: var(--thm-primary);
}

.blog-standard-page__single-content .meta-box li a i {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #e9ecef;
    border-radius: 50%;
    color: var(--thm-primary);
    font-size: 15px;
    line-height: 15px;
    margin-right: 10px;
}

.blog-standard-page__single-content h2 {
    font-size: 26px;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 15px;
}

.blog-standard-page__single-content h2 a {
    color: var(--thm-black);
}

.blog-standard-page__single-content h2 a:hover {
    color: var(--thm-primary);
}

.blog-standard-page__single-content p {
    font-weight: 500;
    margin-bottom: 15px;
}

.blog-standard-page__single-content .btn-box {
    position: relative;
    display: block;
    margin-top: 36px;
}

.blog-standard-page__single-content .btn-box .thm-btn::before {
    background: var(--thm-black);
}

.blog-standard-page .styled-pagination {
    padding-top: 10px;
}

/*=============================
	Blog Details CSS
===============================*/
.blog-details {
    position: relative;
    display: block;
    background: var(--thm-white);
    padding: 80px 0px 180px;
    z-index: 1;
}

.blog-details__content {
    position: relative;
    display: block;
    margin-right: -24px;
}
  