/*********** Container ***********/
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container, .container-md, .container-sm {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}

/*********** Header ***********/
#header {
    padding: 12px 0;
    /*position: absolute;*/
    width: 100%;
    z-index: 200;
    top: 0;
    left: 0;
}
#header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 50px;
    background: #fff;
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    transform: translateY(0);
    transition: all .3s ease-in-out;
    padding: 10px 0;
    animation: slide-down 1s;
}
#header .content--area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    max-width: 267px;
}
.logo img {
    max-width: 100%;
    height: auto;
}
#header .content--area nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}
#header .content--area nav .main--menu {
    display: flex;
    gap: 20px;
}
#header .content--area nav .main--menu>li {
    position: relative;
}
#header .content--area nav .main--menu>li>a {
    padding: 0 15px;
    display: flex;
    align-items: center;
    height: 70px;
    color: #000;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 133%;
    border-radius: 2px;
    position: relative;
}
#header .content--area nav .main--menu>li:hover>a {
    color: red;
}
#header .content--area nav .cta--button {
    display: flex;
}
.button {
    display: inline-block;
    margin: 0;
    text-decoration: none;
    border: none;
    outline: 0;
    text-align: center;
    transition: all .2s ease-in-out;
    overflow: hidden;
    position: relative;
    z-index: 10;
}
.button:hover {
    box-shadow: 0px 10px 13px -3px rgba(0, 0, 0, .2);
    transform: translateY(-3px);
}
.btn-md {
    padding: 16px 31px;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    overflow: hidden;
}
.btn-normal {
    border-radius: 10px;
}
.btn-primary {
    color: #fff;
}
.button::before {
    content: "";
    width: 100%;
    height: 100%;
    bottom: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}
.btn-primary::before {
    background: #d70719;
}
.button::after {
    content: "";
    width: 0;
    height: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    opacity: 0;
    transition: height .1s ease-in-out, width .5s ease-in-out, opacity .6s ease-in-out;
}
.btn-primary::after {
    background: #000;
}
.button:hover::after {
    height: 100%;
    width: 100%;
    opacity: 1;
}
#header .content--area nav .mobile--icon {
    display: none;
    padding: 8px;
    font-size: 25px;
    line-height: 0;
    font-size: 18px;
    font-weight: 600;
    color: red;
    border-radius: 6px;
    border: red solid 1px;
}
.mobile-menu {
    display: none;
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    backdrop-filter: blur(15px);
    z-index: 210;
}
.mobile-menu .close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px;
    font-size: 25px;
    line-height: 0;
    font-size: 15px;
    font-weight: 600;
    color: red;
    border-radius: 6px;
    border: red solid 1px;
}
.mobile-menu .mobile-menu-content {
    padding: 60px 15px 0 15px;
    height: calc(100% - 88px);
}
.mobile-menu ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    height: calc(100% - 40px);
    overflow-y: scroll;
}
.mobile-menu ul li {
    display: block;
    font-size: 15px;
}
.mobile-menu .mobile-menu-content .main--menu li a {
    display: block;
    padding: 12px 15px;
    font-size: 17px;
    color: #fff;
    border-bottom: rgba(124, 124, 124, .2784313725) solid 1px;
}
.mobile-menu .cta--button {
    display: flex;
    justify-content: center;
}
.icon-menu:before {
    content: "\e902";
}

@media only screen and (max-width: 1700px) {
    .btn-md {
        padding: 15px 28px;
    }
}

@media only screen and (max-width: 1500px) {
    .logo {
        max-width: 230px;
    }
    #header .content--area nav {
        gap: 18px;
    }
        #header .content--area nav .main--menu {
        gap: 15px;
    }
    #header .content--area nav .main--menu>li>a {
        font-size: 16px;
    }
}

@media only screen and (max-width: 1400px) {
    .logo {
        max-width: 190px;
    }
    #header .content--area nav .main--menu {
        gap: 0;
    }
    .btn-md {
        padding: 14px 26px;
    }
}

@media only screen and (max-width: 1200px) {
    #header .content--area nav .main--menu {
        display: none;
    }
    #header .content--area nav .cta--button {
        display: none;
    }
    #header .content--area nav .mobile--icon {
        display: block;
    }
}

/*********** Footer ***********/
#footer {
    padding: 110px 0 84px 0;
}
#footer .content--area {
    display: flex;
    justify-content: space-between;
    padding: 0 0 30px 0;
    border-bottom: #e4e4e4 solid 1px;
}
#footer .content--area .logo--area {
    max-width: 344px;
}
#footer .content--area .logo--area .logo {
    display: block;
    margin: 0 0 20px 0;
}
#footer .content--area .logo--area .logo img {
    max-width: 202.049px;
    width: 100%;
}
#footer .content--area .logo--area p {
    color: #837382;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}
#footer .content--area .logo--area .copy-right {
    margin-top: 40px;
    color: #a19ba1;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
}
#footer .content--area .footer-main {
    display: flex;
    gap: 100px;
}
#footer .content--area .footer-main .footer-link .links {
    margin: 0;
    padding: 0;
    line-height: normal;
}
#footer .content--area .footer-main .footer-link .links li {
    margin: 0 0 8px 0;
    line-height: normal;
}
#footer .content--area .footer-main .footer-link .links li a {
    color: #786d77;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
#footer .content--area .footer-main .footer-link .links li a:hover {
    color: #d70719;
}
#footer .content--area h6 {
    margin: 0 0 7px 0;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
#footer .content--area .footer-main .social-media .social-icons {
    margin-top: 10px;
}
#footer .content--area .footer-main .social-media .social-icons li {
    margin: 0 0 14px 0;
}
#footer .content--area .footer-main .social-media .social-icons li:hover {
    color: #d70719;
}
#footer .content--area .footer-main .social-media .social-icons li a {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #786d77;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
#footer .content--area .footer-main .social-media .social-icons li a i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24.662px;
    height: 24.662px;
    font-size: 10px;
    font-weight: 700;
    color: #263238;
    border: #454c72 solid 1px;
    border-radius: 4px;
    line-height: normal;
}
#footer .content--area .footer-main .social-media .social-icons li:hover i {
    color: #d70719;
    border: #d70719 solid 1px;
}
.icon-instagram:before {
    content: "\e904";
}
.icon-linked-in:before {
    content: "\e906";
}
#footer .footer-contact-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 64px;
}
#footer .footer-contact-area address {
    max-width: 496px;
    padding: 0 0 0 42px;
    color: #4e414e;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    position: relative;
}
#footer .footer-contact-area address::before {
    content: "";
    background: url('https://numberhill.in/blog/wp-content/uploads/2026/02/map-icon.svg') no-repeat;
    top: 4px;
    left: 0;
    width: 26px;
    height: 24px;
    position: absolute;
}
#footer .footer-contact-area .contacts {
    display: flex;
    align-items: center;
    gap: 100px;
}
#footer .footer-contact-area .contacts p span {
    display: block;
    color: #786d77;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}
#footer .footer-contact-area .contacts p a {
    color: #444;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
}
#footer .footer-contact-area .contacts p.email a {
    text-decoration: underline;
}
#footer .footer-contact-area .contacts p a:hover {
    color: #d70719;
}

@media only screen and (max-width: 1700px) {
    #footer {
        padding: 90px 0 70px 0;
    }
    #footer .footer-contact-area {
        padding-top: 40px;
    }
    #footer .footer-contact-area address {
        font-size: 15px;
    }
    #footer .footer-contact-area .contacts p span {
        font-size: 15px;
    }
    #footer .footer-contact-area .contacts p a {
        font-size: 22px;
    }
}

@media only screen and (max-width: 1400px) {
    #footer {
        padding: 70px 0 60px 0;
    }
    #footer .content--area .logo--area p {
        font-size: 15px;
    }
    #footer .content--area .footer-main {
        gap: 70px;
    }
    #footer .footer-contact-area .contacts {
        gap: 50px;
    }
    #footer .footer-contact-area .contacts p a {
        font-size: 20px;
    }
}

@media only screen and (max-width: 1200px) {
    #footer {
        padding: 60px 0 30px 0;
    }
    #footer .content--area .footer-main {
        gap: 60px;
    }
}

@media only screen and (max-width: 991px) {
    #footer .content--area {
        flex-direction: column;
        gap: 20px;
    }
    #footer .content--area .logo--area {
        max-width: 100%;
    }
    #footer .content--area .logo--area .logo {
        margin: 0 0 10px 0;
    }
    #footer .content--area .logo--area .logo img {
        max-width: 190px;
    }
    #footer .content--area .logo--area p {
        font-size: 14px;
    }
    #footer .content--area .logo--area .copy-right {
        font-size: 13px;
        margin-top: 20px;
    }
    #footer .content--area .footer-main {
        justify-content: space-between;
    }
    #footer .footer-contact-area {
        flex-direction: column;
        align-items: flex-start;
    }
    #footer .footer-contact-area .contacts {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    #footer .footer-contact-area .contacts p a {
        font-size: 18px;
    }
}

@media only screen and (max-width: 640px) {
    #footer .content--area .footer-main {
        flex-direction: column;
        gap: 30px;
    }
}

/*********** Body ***********/
body {
    font-size: 24px;
    font-family: "Inter", sans-serif;
    color: var(--text-color-1);
    position: relative;
    background: var(--background-color);
    -ms-touch-action: pan-y;
    overflow-x: hidden;
    outline: none;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color .3s, color .1s;
}
a {
    text-decoration: none;
    font-size: 24px;
    line-height: 150%;
    transition: all .3s ease-in-out;
}
a:hover {
    transition: all .3s ease-in-out;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
p {
    font-size: 24px;
}
address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

@media only screen and (max-width: 1400px) {
    p {
        font-size: 16px;
    }
}

@media only screen and (max-width: 991px) {
    a {
        font-size: 15px;
    }
    p {
        font-size: 15px;
    }
}

/*********** Slide-down animation ***********/
@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/*********** Blog Listing Page ***********/
/* Blog Banner Section */
.blog-banner {
    padding: 80px 0;
    position: relative;
    /*top: 94px;
    margin-bottom: 94px;*/
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}
.blog-banner .content--area {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.blog-banner .text--area {
    max-width: 627px;
    padding: 0;
}
.breadcrumb {
    margin: 0 0 20px 0;
    width: 100%;
}
.breadcrumb ul {
    display: flex;
    gap: 70px;
    width: 100%;
}
.breadcrumb ul li {
    color: #210d20;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    position: relative;
}
.breadcrumb ul li a {
    color: #675867;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.breadcrumb ul li a:hover {
    color: #d70719;
}
.breadcrumb ul li:not(:first-child)::before {
    content: "";
    top: 58%;
    left: -50px;
    transform: translateY(-50%);
    background: url('https://numberhill.in/blog/wp-content/uploads/2026/02/breadcrumb-line.svg') no-repeat;
    width: 30px;
    height: 8px;
    position: absolute;
}
.blog-banner .content--area .text--area h1 {
    margin: 0;
    color: #000;
    font-size: 65px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}
@media only screen and (max-width: 1700px) {
    .blog-banner {
        padding: 70px 0;
    }
    .blog-banner .content--area .text--area h1 {
        font-size: 60px;
    }
}
@media only screen and (max-width: 1400px) {
    .blog-banner {
        padding: 60px 0;
    }
    .blog-banner .content--area .text--area h1 {
        font-size: 55px;
    }
}
@media only screen and (max-width: 1200px) {
    .blog-banner {
        /*top: 60px;
        margin-bottom: 60px;*/
    }
    .blog-banner .content--area .text--area h1 {
        font-size: 45px;
    }
}
@media only screen and (max-width: 991px) {
    .blog-banner {
        padding: 40px 0;
    }
    .blog-banner .content--area {
        flex-direction: column;
    }
    .blog-banner .content--area .text--area {
        max-width: 100%;
        text-align: center;
        padding: 0;
    }
    .breadcrumb ul {
        justify-content: center;
    }
    .blog-banner .content--area .text--area h1 {
        font-size: 40px;
    }
}

/* Blog Listing Section */
.blog-list {
    padding: 80px 0;
}
/*.blog-list-holder {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}*/
.blog-list-holder {
    max-height: fit-content;
    overflow-y: auto;
}
.blog-list-holder .blog-card {
    display: flex;
    width: 100%;
    max-width: 402px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.blog-list-holder .blog-card-image-box {
    position: relative;
    display: block;
}
.blog-list-holder .blog-card-image {
    width: 100%;
    max-width: 450px;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    display: block;
    background: #D9D9D9;
}
.blog-list-holder .post-time-head {
    display: inline-flex;
    padding: 3px 8px;
    align-items: center;
    gap: 4px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.40);
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}
.blog-list-holder .post-time-head .post-icon {
    display: flex;
    align-items: center;
}
.blog-list-holder .post-time-head .post-icon img {
    width: 12px;
    height: 12px;
    aspect-ratio: 1/1;
}
.blog-list-holder .post-time-head .reading-time {
    color: #675867;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
}
.blog-list-holder .blog-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}
.blog-list-holder .blog-card-content h2 {
    margin: 0;
}
.blog-list-holder .blog-card-content h2 a {
    display: inline-block;
    color: #000;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 28.8px */
}
.blog-list-holder .blog-card-content .post-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}
.blog-list-holder .blog-card-content .post-details .read-more-btn {
    color: #D70719;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.blog-list-holder .blog-card-content .post-details .read-more-btn .icon-arrow-right {
    display: inline-block; 
    width: 32px;
    height: 14px;
    position: relative;
    vertical-align: middle;
    margin: 0 0 0 12px;
}
.blog-list-holder .blog-card-content .post-details .read-more-btn .icon-arrow-right::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    background: url('https://numberhill.in/blog/wp-content/uploads/2026/02/Arrow-1.svg') no-repeat;
}
.blog-list-holder .blog-card-content .post-details .post-date-main {
    display: flex;
    align-items: center;
    gap: 5px;
}
.blog-list-holder .blog-card-content .post-details .post-date {
    color: #675867;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}
.blog-list-holder .pagination {
    justify-content: center;
    margin-top: 40px;
    gap: 5px;
}
.blog-list-holder .pagination .page-numbers {
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.blog-list-holder .pagination a.page-numbers {
    color: #D70719;
}
@media only screen and (max-width: 991px) {
    .blog-list-holder {
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 767px) {
    .blog-list {
        padding: 60px 0;
    }
    .blog-list-holder .blog-card {
        max-width: 100%;
        align-items: initial;
    }
    .blog-list-holder .blog-card-image {
        max-width: 100%; 
        
    }
}

/* Blog 'Load More' Button */
.load-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
#load-more {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: flex;
    padding: 16px 32px;
    align-items: center;
    gap: 12px;
    border-radius: 100px;
    background: #D70719;
    border: none;
}
#load-more:hover {
    transform: translateY(-3px);
}

/* Blog Sidebar Section */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    
    position: sticky;
    top: 80px;
    align-self: flex-start;
}
.blog-sidebar .search-sidebar-box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    gap: 32px;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #F6CDCD;
    background: #D70719;
    
}
.blog-sidebar .search-sidebar-box h3 {
    color: #FFF;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 28.8px */
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    position: relative;
}
.blog-sidebar .search-sidebar-box h3::after {
    content: "";
    width: 34px;              
    height: 6px;
    background-image: url('https://numberhill.in/blog/wp-content/uploads/2026/02/Line-1.svg');
    background-repeat: no-repeat;
    background-size: contain;
}
.blog-sidebar .search-sidebar-box form {
    width: 100%;
}
.blog-sidebar .search-sidebar-box form label {
    width: 100%;
}
.blog-sidebar .search-sidebar-box form .search-field {
    display: flex;
    width: 100%;
    height: 51px;
    padding: 16px 20px;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 10px;
    border: 1px solid #F6CDCD;
    background: url(https://numberhill.in/blog/wp-content/uploads/2026/02/iconamoon_search-bold.svg) no-repeat right 18px center, linear-gradient(97deg, #FFF 61.46%, #FFEBEB 203.54%);
    color: #675867;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
}
.blog-sidebar .search-sidebar-box form .search-field::placeholder {
    color: #675867;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
}
.blog-sidebar .search-sidebar-box .search-submit {
    display: none;
}
.blog-sidebar .popularblog-sidebar-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    align-self: stretch;
    gap: 32px;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #F6CDCD;
    background: linear-gradient(180deg, #FFF 0%, #FFEBEB 80.85%);
    
}
.blog-sidebar .popularblog-sidebar-box h3 {
    color: #000;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 28.8px */
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    position: relative;
}
.blog-sidebar .popularblog-sidebar-box h3::after {
    content: "";
    width: 34px;              
    height: 6px;
    background-image: url('https://numberhill.in/blog/wp-content/uploads/2026/02/Line-2.svg');
    background-repeat: no-repeat;
    background-size: contain;
}
.blog-sidebar .popularblog-sidebar-box .latest-post-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}
.blog-sidebar .popularblog-sidebar-box .latest-post-item {
    position: relative;
}
.blog-sidebar .popularblog-sidebar-box .latest-post-item:not(:last-child)::after {
    content: "";
    display: block;
    width: 100%;
    height: 14px; 
    background: url("https://numberhill.in/blog/wp-content/uploads/2026/02/Line-3.svg") no-repeat center;
    background-size: contain;
    margin: 24px 0; 
}
.blog-sidebar .popularblog-sidebar-box .latest-post-item a.post-title-link {
    display: inline-block;
    color: #000;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 21.6px */
}
.blog-sidebar .popularblog-sidebar-box .latest-post-item .post-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}
.blog-sidebar .popularblog-sidebar-box .latest-post-item .post-details a.read-more-btn {
    color: #D70719;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.blog-sidebar .popularblog-sidebar-box .latest-post-item .post-details a.read-more-btn .icon-arrow-right {
    display: inline-block;
    width: 32px;
    height: 14px;
    position: relative;
    vertical-align: middle;
    margin: 0 0 0 12px;
}
.blog-sidebar .popularblog-sidebar-box .latest-post-item .post-details a.read-more-btn .icon-arrow-right::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: url(https://numberhill.in/blog/wp-content/uploads/2026/02/Arrow-1.svg) no-repeat;
}
.blog-sidebar .popularblog-sidebar-box .latest-post-item .post-details .post-date-main {
    display: flex;
    align-items: center;
    gap: 5px;
}
.blog-sidebar .popularblog-sidebar-box .latest-post-item .post-details .post-date {
    color: #675867;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

@media only screen and (max-width: 1200px) {
    .blog-sidebar .popularblog-sidebar-box {
        padding: 20px;
    }
}

/* Blog CTA Section */
.blog-cta-section {
    padding: 100px 0;
    overflow: hidden;
    background: #d70719;
    position: relative;
}
.blog-cta-section::before {
    content: "";
    background: url('https://numberhill.in/blog/wp-content/uploads/2026/02/logo-vector-2.svg') no-repeat;
    right: -2px;
    top: -20px;
    width: 531.313px;
    height: 582.713px;
    position: absolute;
    z-index: 10;
    opacity: .3;
}
.blog-cta-section:after {
    content: "";
    background: url('https://numberhill.in/blog/wp-content/uploads/2026/02/logo-vector-2.svg') no-repeat;
}
.blog-cta-section .text--area {
    max-width: 765px;
    position: relative;
    z-index: 60;
}
.blog-cta-section .text--area h3 {
    margin: 0 0 54px 0;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    color: #fff;
    line-height: normal;
}
.blog-cta-section .text--area .cta-buttons {
    display: flex;
    gap: 30px;
}
.btn-lg {
    padding: 27px 51px;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.btn-full {
    border-radius: 100px;
}
.blog-cta-section .text--area .cta-buttons .button.btn-white {
    color: #d70719;
}
.btn-white::before {
    background: #fff;
}
.blog-cta-section .text--area .cta-buttons .btn-secondary {
    color: #fff;
}
.btn-secondary::before {
    background: #000;
}
.blog-cta-section .icon-arrow-right {
    display: inline-block; 
    width: 56.5px;   
    height: 14px;   
    position: relative;
    vertical-align: middle;
    margin: 0 0 0 30px;
}
.blog-cta-section .btn-white .icon-arrow-right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: block;
    background: url('https://numberhill.in/blog/wp-content/uploads/2026/02/Arrow-2.svg') no-repeat;
    background-size: cover;
    background-position: center;
}
.blog-cta-section .btn-secondary .icon-arrow-right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: block;
    background: url('https://numberhill.in/blog/wp-content/uploads/2026/02/Arrow-3.svg') no-repeat;
    background-size: cover;
    background-position: center;
}

@media only screen and (max-width: 1700px) {
    .blog-cta-section {
        padding: 70px 0;
    }
    .blog-cta-section .text--area h3 {
        font-size: 62px;
    }
    .btn-lg {
        padding: 24px 48px;
        font-size: 19px;
    }
}
@media only screen and (max-width: 1400px) {
    .blog-cta-section {
        padding: 60px 0;
    }
    .blog-cta-section .text--area h3 {
        font-size: 58px;
    }
    .btn-lg {
        padding: 22px 44px;
        font-size: 18px;
    }
}
@media only screen and (max-width: 1200px) {
    .blog-cta-section .text--area {
        text-align: center;
        max-width: 100%;
    }
    .blog-cta-section .text--area h3 {
        font-size: 54px;
    }
    .blog-cta-section .text--area .cta-buttons {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}
@media only screen and (max-width: 991px) {
    .blog-cta-section {
        padding: 50px 0;
    }
    .blog-cta-section .text--area h3 {
        margin: 0 0 30px 0;
        font-size: 48px;
    }
    .blog-cta-section .text--area .cta-buttons {
        gap: 15px;
    }
}
@media only screen and (max-width: 768px) {
    .blog-cta-section .text--area h3 {
        font-size: 45px;
    }
    .btn-lg {
        padding: 19px 35px;
        font-size: 17px;
    }
    .blog-cta-section .icon-arrow-right {
        margin: 0 0 0 8px;
    }
}
@media only screen and (max-width: 640px) {
    .blog-cta-section .text--area h3 {
        font-size: 42px;
    }
}
@media only screen and (max-width: 575px) {
    .blog-cta-section .text--area h3 {
        font-size: 32px;
    }
}

/*********** Blog Detail Page ***********/

.blog-detail {
    padding: 80px 0;
}
.blog-detail-holder {
    max-height: fit-content;
    overflow-y: auto;
    margin-bottom: 10px;
}
.blog-detail-holder .blog-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    margin: 0 0 32px;
}
.blog-detail-holder .single-blog-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 10px;
}
.blog-detail-holder .blog-detail-card .post-date-main {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid #F6CDCD;
    background: linear-gradient(180deg, #FFF 0%, #FFEBEB 80.85%);
}
.blog-detail-holder .blog-detail-card .post-date-main .date-icon {
    display: flex;
    align-items: center;
}
.blog-detail-holder .blog-detail-card .post-date-main .post-date {
    color: #675867;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.blog-detail-holder .blog-detail-card .post-time-head {
    display: inline-flex;
    padding: 3px 8px;
    align-items: center;
    gap: 4px;
    border-radius: 20px;
    border: 1px solid #F6CDCD;
    background: linear-gradient(180deg, #FFF 0%, #FFEBEB 80.85%);
}
.blog-detail-holder .blog-detail-card .post-time-head .post-icon {
    display: flex;
    align-items: center;
}
.blog-detail-holder .blog-detail-card .post-time-head .reading-time {
    color: #675867;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.blog-detail-holder h2 {
    color: #000;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin: 0 0 20px;
}
.blog-detail-holder .blog-detail-content p {
    color: #675867;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.blog-detail-holder .blog-detail-content h3 {
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin: 0 0 16px;
}
.blog-detail-holder .blog-detail-content ul {
    list-style-type: disc;
    padding-left: 32px;
}
.blog-detail-holder .blog-detail-content li {
    color: #675867;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 0 0 16px;
}
.blog-detail-holder .blog-detail-content li strong {
    color: #000;
    font-weight: 500;
}
.blog-detail-holder .post-navigation {
    display: flex;
    justify-content: space-between;
}
.blog-detail-holder a:hover {
    color: #D70719;
}
#wpdcom .wpd-auth .wpd-login a {
    font-size: 14px;
}

@media only screen and (max-width: 1700px) {
    .blog-detail-holder h2 { 
        font-size: 59px; 
    }
    .blog-detail-holder .blog-detail-content h3 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 1400px) {
    .blog-detail-holder h2 { 
        font-size: 54px; 
    }
    .blog-detail-holder .blog-detail-content h3 {
        font-size: 36px;
    }
    .blog-detail-holder .blog-detail-content li {
        font-size: 16px;
    }
}

@media only screen and (max-width: 1200px) {
    .blog-detail-holder h2 { 
        font-size: 44px; 
    }
    .blog-detail-holder .blog-detail-content h3 {
        font-size: 34px;
    }
}

@media only screen and (max-width: 991px) {
    .blog-detail-holder h2 { 
        font-size: 39px; 
    }
    .blog-detail-holder .blog-detail-content h3 {
        font-size: 30px;
    }
    .blog-detail-holder .blog-detail-content li {
        font-size: 15px;
    }
}
@media only screen and (max-width: 767px) {
    .blog-detail {
        padding: 60px 0;
    }
}
