

:root { 
     --primary-color: #ed3237;
  --primary-color-red-one: #f23545;
  --primary-color-red-two: #f23030;
  --primary-color-red-three: #bf0404;

    --primary-color-light: #e5e8f880;
  --body-color: #696969;
  --heading-color: #3d3d56;
  --base-color-blue: #093976;
  --base-color-blue-one: #0a4273;
  --base-color-black-one: #0d0d0d;
  --navbar-height: 100px;
  --font-primary: "Saira", sans-serif;
  --font-secondary: "Montserrat", sans-serif;
}
 

/* === Blog-Pages-CSS === */
.blog-box {
    border-radius: 8px;
    -webkit-box-shadow: 0px 4px 45px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 4px 45px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    background-color: #e5e8f880;
    border: 1px solid #919cd3;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative; 
}
.blog-box::before {
    content: '';
    bottom: 0px;
    right: -20px;
    width: 170px;
    height: 170px;
    background-image: url(../../shape-ear.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    position: absolute;
    opacity: 0.2;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.blog-box:hover::before {
    transform: scale(1.5);
}

.blog-box:hover {
    background-color: #e5e8f8c7;
    border: 1px solid var(--base-color-blue);
}

.blog-box .thumb {
    margin: 0;
}

.blog-box .content {
    padding: 30px 30px 20px;
}
.blog-box .content figure{
    overflow: hidden;
    margin-bottom: 20px;
    -webkit-transition: .3s linear;
    -o-transition: .3s linear;
    transition: .3s linear;
    border-radius: 10px;
}
.blog-box .content figure img{
    -webkit-transition: .3s linear;
    -o-transition: .3s linear;
    transition: .3s linear;
}
.blog-box .content:hover figure img {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

.blog-box .content .title {
    font-size: 18px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.blog-box .content .desc p{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.blog-box .content > .meta{
    margin-top: 0;
    margin-bottom: 0;
}

.blog-box .content .title a {
    color: var(--heading-color);
}
.blog-box .content .desc {
    margin-bottom: 15px;
}
.blog-box .content .readbtn {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 0;
}
.blog-box .content .readbtn:hover {
    color: var(--primary-color-red-three);
}

.blog-box .content .title a:hover {
    color: var(--primary-color);
}

.meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 32px -15px -15px -15px;
}

.blox-box .meta {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.meta li {
    margin: 0 15px 15px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.meta li .icon {
    color: var(--primary-color);
    margin-right: 8px;
}

.pagination {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: -12px;
    margin-top: 40px;
}

.pagination a {
    min-width: 56px;
    min-height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 24px;
    background-color: #F7F7F7;
    color: var(--heading-color);
    margin: 12px;
    border-radius: 5px;
}

.pagination a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* === Error-Page-CSS === */
.error-page-wraper {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 100px 0;
    background: url('../images/inner-pages/404-bg.jpg') no-repeat scroll center center / cover;
}


/* === FAQ-Page-CSS === */
.faq-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 220px;
}

.faq-tabs li {
    width: 100%;
}

.faq-tabs li button {
    width: 100%;
    text-align: center;
    border: none;
    background: #FFF5F2;
    color: var(--heading-color);
    font-weight: 600;
    margin: 8px 0;
    padding: 12px 24px;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.faq-tabs li button:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    z-index: -1;
}

.faq-tabs li button:hover {
    color: var(--heading-color);
}

.faq-tabs li button.active {
    color: #ffffff;
}

.faq-tabs li button.active:before {
    width: 100%;
}


.accordion .item {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 8px 35px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 8px 35px rgba(0, 0, 0, 0.07);
    border-radius: 6px;
    margin-bottom: 20px;
}

.accordion .item:last-child {
    margin-bottom: 0;
}

.accordion .item .title {
    font-size: 20px;
    font-weight: 600;
    padding: 20px 24px;
    margin: 0;
    cursor: pointer;
}

.accordion .item .title a {
    display: block;
    color: var(--heading-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.accordion .item .title a:after {
    content: "\e963";
    font-family: 'landshop';
    float: right;
    line-height: 1;
    width: 32px;
    height: 32px;
    background-color: var(--heading-color);
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 14px;
}

.accordion .item .title a[aria-expanded="true"]:after {
    content: "\e962";
    background-color: var(--primary-color);
}

.accordion .item .desc p {
    padding: 0 24px 24px 24px;
}
  
/* === Blog-Details-Area === */
.blog-details .thumb {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid var(--base-color-blue-one);
}

.blog-details .meta {
    margin-bottom: 6px;
}

.blog-details .title {
    font-size: 34px;
} 
.blog-details .faq-wrapper {
    background-color: #e5e8f880;
    border: 1px solid #919cd3;
    border-radius: 8px;
    padding: 30px;
}
.blog-section .sidebar-main{
    position: sticky;
    top: 150px;
}
 .blog-details .content .desc .icon-list li{
    gap: 15px; 
    display: block;
 }
 .blog-details .content .desc .icon-list li b{
    text-wrap: nowrap;
 }
.tags a {
    background-color: #F6F6F6;
    padding: 8px 18px;
    display: inline-block;
    border-radius: 5px;
    margin: 5px;
    color: #696969;
}

.tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tags a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.social a {
    margin: 10px;
    color: var(--body-color);
}
 
/* === Sidebar-Widget === */
.sidebar-main .widget {
    background-color: #FFF5F2;
    margin-bottom: 40px;
    border-radius: 8px;
    padding: 32px;
}

.sidebar-main .widget:last-child {
    margin-bottom: 0;
}

.search-form button {
    width: 64px;
    height: 64px;
    border: none;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 0 5px 5px 0;
    font-size: 24px;
}

.search-form {
    display: flex;
    align-items: center;
    box-shadow: 0px 8px 35px rgba(0, 0, 0, 0.08);
}

.search-form .input-control {
    width: calc(100% - 64px);
    min-height: 64px;
    padding: 0 24px;
    border: none;
    border-radius: 5px 0 0 5px;
    color: var(--heading-color);
}

.widget-author .thumb {
    width: 150px;
    height: 150px;
    border-radius: 100px;
    overflow: hidden;
    border: 8px solid #ffffff;
    background-color: #ffffff;
    box-shadow: 0px 15px 65px rgba(0, 0, 0, 0.1);
    margin-bottom: 32px;
}

.widget-author {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.widget-author .desc {
    margin-bottom: 32px;
}

.widget-categories ul li a:after {
    content: "\e948";
    font-family: 'landshop';
    font-size: 80%;
}

.widget-categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget-categories ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-categories ul li {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(19, 19, 19, 0.1);
}

.widget-categories ul li:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.widget .widget-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
}

.popular-posts {
    list-style: none;
    margin: 0;
    padding: 0;
}

.popular-posts li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.popular-posts li:last-child {
    margin-bottom: 0px;
}


.popular-posts li .post-pic {
    width: 90px;
    min-width: 90px;
    margin-right: 20px;
    overflow: hidden;
    border-radius: 4px;
}
.popular-posts li .post-pic img{
    height: 70px;
    width: auto;
    object-fit: cover;
}

.popular-posts li .title {
    font-size: 20px;
}

.popular-posts li .title a {
    color: #ffffff9c;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.popular-posts li .title a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.popular-posts li .title {
    margin-bottom: 6px;
}

.popular-posts li .post-meta-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-family: var(--body-font-family);
    font-size: calc(var(--body-font-size) - 1px);
}

.popular-posts li .post-meta-item .icon {
    line-height: 1em;
    margin-right: 10px;
}

.tagcloud {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -5px;
}


.tagcloud a {
    background-color: #ffffff;
    color: var(--body-color);
    padding: 6px 20px;
    margin: 5px;
    font-size: 20px;
    border-radius: 5px;
}

.tagcloud a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}
p#notFoundMsg{
    color: #fff;
}