:root{
    --primary: #4e94ba;
    --secondry: #63c47a;
    --tertiary: #bb54a3;
    --black: #000;
    --white: #fff;
    --light-gray: #f5f5f5;
    --red:#ff4b18;
    --body: 'Open Sans';
    --heading: 'Open Sans';
}

/* Fonts */

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/open-sans-v43-latin-300.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v43-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-weight: 500;
  src: url('../fonts/open-sans-v43-latin-500.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-weight: 600;
  src: url('../fonts/open-sans-v43-latin-600.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-weight: 700;
  src: url('../fonts/open-sans-v43-latin-700.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-weight: 800;
  src: url('../fonts/open-sans-v43-latin-800.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-weight: 300;
  src: url('../fonts/roboto-v48-latin-300.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-weight: 400;
  src: url('../fonts/roboto-v48-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-weight: 500;
  src: url('../fonts/roboto-v48-latin-500.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-weight: 600;
  src: url('../fonts/roboto-v48-latin-600.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-weight: 700;
  src: url('../fonts/roboto-v48-latin-700.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-weight: 800;
  src: url('../fonts/roboto-v48-latin-800.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-weight: 900;
  src: url('../fonts/roboto-v48-latin-900.woff2') format('woff2');
}

/** header */
.site-header{
  background-color: transparent;
  padding: 25px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.site-header .header-logo{
    max-width: 234px;
}
.site-header .header-logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.site-header__inner__nav .header-nav{
    column-gap: 20px;
}
.site-header__inner__nav .header-nav li{
    position: relative;
}
.site-header__inner__nav .header-nav li a{
    font-size: 16px;
    color: var(--secondry);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}
.site-header__inner__nav .header-nav li a:hover{
    color: var(--primary);
}
.site-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.3s;
    width: 100%;
    z-index: 9;
    animation: fadeInDown 0.5s ease-in-out 0s 1 normal none running;
    padding: 10px 0;
    background-color: var(--light-gray);
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.5);
}
.site-header.sticky .header-main{
    align-items: center !important;
}
.site-header.sticky .header-logo{
    max-width: 170px;
}
.site-header .header-nav > li.current_page_item > a {
    font-weight: 800;
}
.site-header .header-nav > li.current-menu-ancestor > a {
    color: var(--primary);
    font-weight: 800;
}
.site-header .header-nav > li.current-menu-ancestor .current-menu-ancestor > a {
    background: var(--secondry) !important;
    color: var(--light-gray) !important;
}
.site-header .header-nav > li.current-menu-ancestor .current-menu-item > a {
    background: var(--secondry);
    color: var(--light-gray) !important;
}
.site-header .header-nav .current-menu-parent a.__mPS2id,
.site-header .header-nav .current-menu-item a.__mPS2id {
    background: var(--secondry) !important;
    color: #fff !important;
}
.site-header .header-nav .current-menu-parent a.__mPS2id:hover,
.site-header .header-nav .current-menu-item a.__mPS2id:hover {
    background: var(--secondry) !important;
}
.site-header .header-nav li:hover .sub-menu{
    display: block;
}
.site-header .header-nav li .sub-menu {
    top: 100%;
    padding: 0;
    background: var(--primary);
    width: 220px;
    border: none;
    border-radius: 0;
    font-size: 16px;
    position: absolute;
    margin: 0;
    display: none;
}
.site-header .header-nav li .sub-menu li .sub-menu{
    display: none;
}
.site-header .header-nav li .sub-menu li:hover .sub-menu{
    display: block;
}
.site-header .header-nav li .sub-menu li {
    margin-bottom: 0;
    padding: 0;
    position: relative;
}
.site-header .header-nav li .sub-menu li a {
    padding: 8px 24px 8px 10px;
    color: var(--light-gray) !important;
    display: block;
    font-size: 14px;
}
.site-header .header-nav li .sub-menu li a:hover {
    color: var(--light-gray)!important;
    background: var(--secondry) !important;
}
.site-header .header-nav li .sub-menu li:hover>.sub-menu {
    display: block;
    margin-top: 0;
    top: 0;
}
.site-header .header-nav li:last-child>.sub-menu {
    left: 100%;
}

/* footer */
.site-footer{
    background-color: var(--primary);
}
.footer-logo{
    max-width: 368px;
}
.footer-logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-promo-box *{
    color: var(--white);
}
.footer-promo-box h2{
    font-weight: 800;
    font-size: 50px;
}
.footer-promo-box p{
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 30px;
    max-width: 490px;
}
.footer-promo-box p:last-child{
    margin-bottom: 0;
}

.footer-bottom{
    padding-bottom: 46px;
}
.footer-link .footer-nav{
    flex-wrap: wrap;
    row-gap: 16px;
}
.footer-link .footer-nav li{
    padding: 0 15px;
    border-right: 1px solid var(--white);
    line-height: 1;
}
.footer-link .footer-nav li:first-child{
    padding-left: 0;
}
.footer-link .footer-nav li:last-child{
    border-right: none;
    padding-right: 0;
}
.footer-link .footer-nav li a{
    color: var(--white);
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1;
    display: inline-block;
}
.footer-link .footer-nav li a:hover{
    color: var(--secondry);
}
.social-links a:hover{
    opacity: 0.5;
}
.social-links .icon-img{
    width: 40px;
    height: 40px;
}
.social-links .icon-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.site-main {
    padding-top: 175px;
}

/* Hero banner */
.hero-content p{
    font-size: 18px;
}
.hero-banner .wpb_single_image{
    margin-top: -100px;
}
.hero-banner ul li{
    font-size: 18px;
    margin-bottom: 10px;
}
.hero-banner ul li:last-child{
    margin-bottom: 0;
}

/* inbound */
.section-inbound *{
    color: var(--white);
}
.inbound-content h2{
    font-weight: 800;
}
.inbound-content h4{
    font-weight: 400;
}
.inbound-info .wpb_text_column .wpb_wrapper{
    padding-left: 75px;
    position: relative;
}
.inbound-info .wpb_text_column .wpb_wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 36px;
    background-image: url(../../assets/images/right-arrow.png);
    background-repeat: no-repeat;
}
.inbound-info .wpb_text_column  h6{
    padding-bottom: 12px;
}


/* section works */
.section-works{
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.05), 0 4px 6px rgba(0, 0, 0, 0.05);
}
.work-row .wpb_single_image{
    width: 95px;
    margin: 0 auto ;
}

.work-row .vc_separator {
    position: relative;
}
.work-row .vc_separator::before {
    content: '';
    width: 24px;
    height: 24px;
    border-radius: 100%;
    background-color: var(--secondry);
    position: absolute;
    top: -12px;
    left: 0;
}
.work-row .vc_do_custom_heading{
    font-weight: 800;
}
.work-row .wpb_text_column{
    color: var(--black);
}

/* Why choose section */
.why-choose-row > .wpb_column > .vc_column-inner > .wpb_wrapper{
    padding: 73px 32px 58px;
    background-color: var(--primary);
    border-radius: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.why-choose-row > .wpb_column > .vc_column-inner > .wpb_wrapper .theme-btn{
    margin-top: auto;
}
.why-choose-row > .wpb_column *{
    color: var(--white);
}
.why-choose-row > .wpb_column:nth-child(even) > .vc_column-inner > .wpb_wrapper{
    background-color: var(--red);
}

/* about section */
.about-content *{
    color: var(--white);
}
.about-content h4{
    font-weight: 400;
}
.about-info .wpb_column > .vc_column-inner > .wpb_wrapper{
    background-color: var(--white);
    border-radius: 30px;
    padding: 40px 50px;
}
.about-info .wpb_column .vc_do_custom_heading{
    color: var(--primary);
}

/* faqs */
.faqs-row .wpb_column{
    width: auto;
    max-width: 300px;
}
.faqs-row .wpb_column > .vc_column-inner > .wpb_wrapper{
    background-color: var(--white);
    padding: 16px 18px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.faqs-row .wpb_column .vc_do_custom_heading{
    color: var(--secondry);
}
.faqs-row .wpb_text_column {
    margin-top: auto;
}

/* Expert section  */
.expert-row .wpb_column *{
    color: var(--white);
}
.expert-row .wpb_column > .vc_column-inner > .wpb_wrapper{
   background-color: var(--tertiary);
    border-radius: 38px;
    padding: 30px 30px 63px;
    position: relative;
    height: 100%;
}
.expert-row .wpb_column > .vc_column-inner > .wpb_wrapper::before{
    content: '';
    width: 170px;
    height: 115px;
    background-image: url(../../assets/images/expert-pattern.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: -1px;
    left: -1px;
}

.expert-row .wpb_column .wpb_single_image {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0;
    left: 30px;
}
.expert-row .wpb_column .wpb_single_image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.expert-row .wpb_column h4{
    width: 65%;
    margin-left: auto;
    height: 82px;
}
.expert-row .wpb_column h4 strong{
    font-weight: 400;
}
.expert-row .wpb_column .vc_separator {
    padding-top: 24px;
    padding-bottom: 24px;
}
.expert-row .wpb_column a{
    font-weight: 700;
}
.expert-row .wpb_column:nth-child(3n - 1) > .vc_column-inner > .wpb_wrapper{
    background-color: var(--primary);
}
.expert-row .wpb_column:nth-child(3n) > .vc_column-inner > .wpb_wrapper{
    background-color: var(--secondry);
}

/* Welcome section */
.welcome-section{
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.05), 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* let me section */
.let-me-section *{
    color: var(--white);
}

/* team section */
.team-section *{
    color: var(--primary);
}
.team-section ol{
    list-style-type: decimal;
    padding-left: 20px;
    margin-bottom: 16px;
}
.team-section ol:last-child{
    margin-bottom: 0;
}
.team-section ol li + li{
    margin-top: 8px;
}
.team-section ol li::marker{
    font-weight: 700;
}
.team-section .wpb_single_image .wpb_wrapper{
    width: 100%;
}
.team-section .wpb_single_image .wpb_wrapper .vc_single_image-wrapper{
    width: 100%;
}
.team-section .wpb_single_image .wpb_wrapper .vc_single_image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-section .theme-btn {
    width: 100%;
}
.team-section .theme-btn .vc_btn3 {
    display: block !important;
    width: 100%;
}

/* included section */
.included-section *{
    color: var(--light-gray);
}
.included-content h4{
    font-weight: 400;
}
.included-info .wpb_wrapper{
    padding-left: 75px;
    position: relative;
}
.included-info .wpb_wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 36px;
    background-image: url(../../assets/images/right-arrow.png);
    background-repeat: no-repeat;
}
.included-info h6{
    margin-bottom: 10px;
}
.included-info p{
    font-family: 'Roboto';
    font-size: 18px;
}
.included-section-second .included-info .wpb_wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 36px;
    background-image: url(../../assets/images/red-roundand-arrow.png);
    background-repeat: no-repeat;
}

/* inner faqs section */
.inner-faqs-section .faqs-row .wpb_column .vc_do_custom_heading{
    color: var(--primary);
}

/* contact page */
.contact-info *{
    color: var(--primary);
}
.contact-form{
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.05), 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form .input-wrapper{
    margin-bottom: 30px;
}
.contact-form .input-wrapper label{
    padding-bottom: 10px;
    font-weight: 500;
}
.contact-form .input-wrapper input,
.contact-form .input-wrapper textarea{
    width: 100%;
    outline: none;
    padding: 10px 15px;
    border: 1px solid #c9c9c9;
    background-color: var(--white);
    border-radius: 0;
}
.contact-form .input-wrapper textarea{
    height: 140px;
    resize: none;
}
.contact-form .input-btn input{
    padding: 14px 50px;
    border: 1px solid var(--primary);
    background: var(--primary);
    border-radius: 0;
    outline: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    transition: all 0.3s;
}
.contact-form .input-btn input:hover{
    background: var(--light-gray);
    color: var(--primary);
}
.contact-form .wpcf7-response-output{
    color: var(--red);
    border-color: var(--red) !important;
}
/* email sales section */
.email-sales-section{
    border-bottom: 1px solid var(--light-gray);
}
.email-sales-section > .wpb_column > .vc_column-inner > .wpb_wrapper{
    background-color: var(--light-gray);
    padding: 50px 70px 50px 30px;
    border-radius: 22px;
}   
.email-sales-content .wpb_single_image {
    max-width: 132px;
}
.email-sales-content *{
    color: var(--primary);
}
.email-sales-content .theme-btn{
    display: block !important;
}
.email-sales-content .theme-btn .vc_btn3{
    display: block !important;
    background: var(--white) !important;
    color: var(--primary) !important;
    border: 1px solid var(--white) !important;
    text-transform: uppercase !important;
}
.email-sales-content .theme-btn .vc_btn3:hover{
    background: var(--primary) !important;
    color: var(--white) !important;
    border: 1px solid var(--primary) !important;
}

/* sales modal table  */
.section-sales-model{
    background-color: var(--white);
}
.sales-model-content::-webkit-scrollbar {
    width: 100%;
    height: 5px;
}

.sales-model-content::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 30px;
}

.sales-model-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 30px;
}
.sales-model-table{
    border: 1px solid #d9d9d9;
    margin-bottom: 0;
}
.sales-model-table tr th,
.sales-model-table tr td{
    width: 33.33%;
    background-color: var(--light-gray);
    padding: 12px 10px;
}
.sales-model-table tr th img,
.sales-model-table tr td img{
    padding-top: 3px;
    padding-right: 8px;
}
.sales-model-table tr th{
    font-size: 20px;
    font-weight: 700;
    color: var(--light-gray);
}
.sales-model-table tr th:first-child{
    color: var(--primary);
}
.sales-model-table tr th:last-child{
    border-right: none;
}
.sales-model-table tr th{
    border-right: 1px solid #d9d9d9;
}
.sales-model-table tr td{
    border-top: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
}
.sales-model-table tr th:nth-child(2),
.sales-model-table tr td:nth-child(2){
    background-color: var(--primary);
}
.sales-model-table tr th:nth-child(3),
.sales-model-table tr td:nth-child(3){
    background-color: var(--red);
    border-right: none;
}
.sales-model-table tr td{
    color: var(--light-gray);
}
.sales-model-table tr td:first-child{
    color: #3d3b39;
    font-weight: 600;
}
.section-sales-model p a{
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: underline;
}
.section-sales-model p a:hover{
    color: var(--secondry);
    text-decoration: none;
}

/* Blog page */
.blog-hero *{
    color: var(--primary);
}
.blog-hero-content h1{
    margin-bottom: 16px;
}
.blog-hero-content p{
    font-size: 18px;
}
.blog-main{
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.05), 0 4px 6px rgba(0, 0, 0, 0.05);
}
.blog-searchbar{
    padding-bottom: 50px;
}
.blog-searchbar-content{
    font-size: 18px;
    color: var(--primary);
}
.blog-search .form-control{
    outline: none;
    background-color: var(--white);
    border: 1px solid var(--primary);
    border-radius: 30px;
    box-shadow: none;
    padding: 7px 40px 7px 15px;
    width: 290px;
    background-image: url(../../assets/images/search.png);
    background-repeat: no-repeat;
    background-position: center right 15px;
}

/* .blog-categories ul{
    flex-wrap: wrap;
    margin: 0 -5px;
    row-gap: 10px;
}
.blog-categories ul li{
    padding: 0 5px;
    max-width: 25%;
    flex: 0 0 25%;
} */

 .blog-categories ul {
    display: grid !important;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: hidden;
    padding: 0 0 10px;
    cursor: grab;
}

 .blog-categories ul:has(:nth-child(5)) {
    grid-template-rows: repeat(2, auto);
}

 .blog-categories ul:has(:nth-child(8)) {
    grid-auto-flow: column;
    grid-auto-columns: calc(25% - 8px);
    overflow-x: auto;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: none;
}

.blog-categories li {
    width: 100%;
    box-sizing: border-box;
}

.blog-categories ul li p{
    text-align: center;
    color: var(--light-gray);
    padding: 34px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
}
 .blog-categories ul::-webkit-scrollbar {
    width: 100%;
    height: 5px;
}

.blog-categories ul::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 30px;
}

.blog-categories ul::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 30px;
}
.blog-categories ul li.unactive p{
    filter: grayscale(1);
}
.recent-post-link{
    color: var(--primary) !important;
    display: block;
    height: 100%;
}
.recent-post-card{
    max-width: 300px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    height: 100%;
}
.recent-post-img{
    aspect-ratio: 1.45;
    display: block;
}
.recent-post-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recent-post-card h5{
    color: var(--primary);
    font-size: 22px;
}
.recent-post-btn{
    margin-top: auto;
}
.recent-post-card span{
    display: inline-block;
    position: relative;
    padding-right: 18px;
    color: var(--primary);
    text-transform: uppercase;
    transition: all 0.3s;
}
.recent-post-card span::after{
    content: '';
    position: absolute;
    top: 45%;
    right: 10px;
    width: 7px;
    height: 7px;
    border-top: 1px solid var(--primary);
    border-right: 1px solid var(--primary);
    transform: rotate(45deg) translateY(-50%);
}
.recent-post-link:hover .recent-post-card span{
    padding-right: 20px;
}
.blog-post .row{
    row-gap: 40px;
    column-gap: 120px;
}
.blog-post .load-more-button a{
    margin-top: 50px;
}

/* Blog detail */

.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  margin-bottom: 14px;
}
.blog-content p + h2,
.blog-content p + h3,
.blog-content p + h4,
.blog-content p + h5,
.blog-content p + h6,
.blog-content ul + h2,
.blog-content ul + h3,
.blog-content ul + h4,
.blog-content ul + h5,
.blog-content ul + h6,
.blog-content ol + h2,
.blog-content ol + h3,
.blog-content ol + h4,
.blog-content ol + h5,
.blog-content ol + h6 {
  margin-top: 30px;
}
.blog-content a {
  text-decoration: underline;
  color: var(--black);
}
.blog-content a:hover {
  text-decoration: none;
  color: var(--primary);
}
.blog-content ol {
  list-style-type: decimal;
}
.blog-content ol li a,
.blog-content ul li a {
  text-decoration: underline;
}
.blog-content ul,
.blog-content ol {
    margin-top: 0;
    margin-bottom: 16px;
    list-style-type: disc;
    padding-left: 18px;
}
.blog-content ul:last-child,
.blog-content ol:last-child {
    margin-bottom: 0;
}
.blog-content ul li,
.blog-content ol li {
    text-align: left;
    margin-bottom: 10px;
}
.blog-content img {
  margin: 20px 0px;
}
.blog-detail-content .pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  border-top: 1px solid #565656;
  padding-top: 30px;
  column-gap: 30px;
}
.blog-detail-content .pagination .previous-post {
  width: 50%;
}
.blog-detail-content .pagination .previous-post a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-weight: 600;
}
.blog-detail-content .pagination .previous-post a:hover{
    color: var(--primary);
}
.blog-detail-content .pagination .previous-post a:before {
  content: '';
  background-image: url(../../assets/images/right-arrow-1.png);
  width: 25px;
  height: 14px;
  background-repeat: no-repeat;
  background-size: 25px;
  transform: rotate(180deg);
  transition: all 0.3s;
  filter: brightness(0);
  flex: 0 0 25px;
}
.blog-detail-content .pagination .previous-post a:hover::before {
  filter: brightness(1);
}
.blog-detail-content .pagination .next-post {
  margin-left: auto;
  width: 50%;
}
.blog-detail-content .pagination .next-post a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
  color: var(--black);
  font-weight: 600;
}
.blog-detail-content .pagination .next-post a::after {
  content: '';
  background-image: url(../../assets/images/right-arrow-1.png);
  width: 25px;
  height: 14px;
  background-repeat: no-repeat;
  background-size: 25px;
  filter: brightness(0);
  flex: 0 0 25px;
}
.blog-detail-content .pagination .next-post a:hover{
    color: var(--primary);
}
.blog-detail-content .pagination .next-post a:hover::after {
  filter: brightness(1);
}

.blog-post-content{
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}
.post-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.post-img::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.post-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.post-title{
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 100px 50px;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.post-meta{
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}
/* .single-post .header-main{
    align-items: center !important;
} */
 .no-recent-found{
    font-size: 18px;
 }

/* why choose inner */
.why-choose-inner{
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.05), 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Directory page */
.directory-search{
    column-gap: 10px;
}
.directory-search .search-input{
    width: 100%;
    max-width: 500px;
}
.directory-search .search-input input,
.directory-search .search-input select{
    padding: 10px 15px;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    background-color: var(--white);
    outline: none;
    box-shadow: none;
    color: #3d3b39;
}
.directory-search .search-button{
    width: 100%;
    max-width: 180px;
}
.directory-search .search-button button{
    padding: 10px 20px;
    outline: none;
    border: 1px solid var(--primary);
    background: var(--primary);
    width: 100%;
    text-align: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    border-radius: 5px;
}
.directory-search .search-button button:hover{
    background: var(--white);
    color: var(--primary);
}
.directory-search .search-input input::placeholder{
    color: #3d3b39;
}
.location-title{
    text-transform: uppercase;
    color: var(--primary);
}
/* .location-list{
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: calc(20% - 8px);
    gap: 10px;
    overflow-x: auto;
    padding: 0 0 10px;
}
.location-list li{
    width: 100%;
    box-sizing: border-box;
} */

.location-list {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(5, 1fr);
    overflow-x: hidden;
    padding: 0 0 10px;
    cursor: grab;
}

.location-list:has(:nth-child(6)) {
    grid-template-rows: repeat(2, auto);
}

.location-list:has(:nth-child(11)) {
    grid-auto-flow: column;
    grid-auto-columns: calc(20% - 8px);
    overflow-x: auto;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: none;
}

.location-list li {
    width: 100%;
    box-sizing: border-box;
}

.location-list li p{
    width: 100%;
    height: 100%;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    text-transform: uppercase;
    cursor: pointer;
    box-sizing: border-box;
    word-break: break-word;
    min-height: 140px;
    line-height: 1.2;
}
.location-list::-webkit-scrollbar {
    width: 100%;
    height: 5px;
}
.location-list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 30px;
}
.location-list::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 30px;
}
.loaction-breadcrumb{
    padding-bottom: 30px;
}
.loaction-breadcrumb .back-to{
    display: inline-block;
    /* padding-right: 10px;
    margin-right: 10px; */
    position: relative;
    text-transform: uppercase;
}
/* .loaction-breadcrumb .back-to::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: var(--primary);
} */
.loaction-breadcrumb .select-industry{
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
}
.specialism-breadcumb{
    color: var(--primary);
}
.breadcrumb-line{
    margin: 0 3px;
    color: var(--primary);
}
.di-cat-pagination{
    /* justify-content: center; */
}
.di-cat-pagination-sec{
    position: relative;
    padding: 0 30px;
    margin-top: 40px;
}
.di-cat-pagination-sec .swiper-button-disabled{
    opacity: 0.5;
}
.category-prev-btn,
.category-next-btn{
    width: 25px;
    position: absolute;
    top: 49%;
    left: 0;
    transform: translateY(-50%);
}
.category-next-btn{
    right: 0;
    left: auto;
    transform: translateY(-50%) rotate(180deg);
}
.di-cat-pagination-slider{
    overflow: hidden;
}
.di-cat-pagination a{
    font-size: 18px;
    color: var(--primary);
    display: inline-block;
    margin: 0 5px;
    font-weight: 500;
    width: auto;    
}
.di-cat-pagination-slider .swiper-wrapper {
    justify-content: center;   /* poore slides ko center karo */
}

.di-cat-pagination a:hover{
    color: var(--secondry);
}
.di-cat-pagination a.active{
    font-weight: 700;
    color: var(--secondry);
}

.business-info a{
    color: var(--primary);
}
.business-info > div{
    margin-bottom: 30px;
}
.business-info > div:last-child{
    margin-bottom: 0;
}
.business-content{
    background-color: var(--white);
    padding: 30px 30px 16px 30px;
    column-gap: 40px;
    border-radius: 30px;
    position: relative;
}
.business-content::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    height: 140px;
    background-image: url(../../assets/images/expert-pattern-1.svg);
    background-repeat: no-repeat;
}
.business-img{
    width: 148px;
    height: 148px;
    margin-top: 60px;
}
.business-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}
.business-text{
    flex: 1;
    padding-bottom: 49px;
}
.business-text p{
    font-size: 20px;
    margin-bottom: 8px;
}
.business-text p:last-child{
    margin-bottom: 0;
}
.business-text .editor-content{
    margin-bottom: 16px;
}
.business-text .editor-content:last-child{
    margin-bottom: 0;
}
.business-text .bio-text p{
    font-size: 16px;
    
}
.business-text .bio-text p em{
font-style: normal;
}
.di-post-pagination{
    display: flex;
}
.di-post-pagination a{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1;
}
.di-post-pagination .di-post-next{
    margin-left: auto;
}

.directory-detail-content{
    background-color: var(--white);
    padding: 30px 110px 40px 30px;
    border-radius: 30px;
    position: relative;
}
.directory-detail-content::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    height: 140px;
    background-image: url(../../assets/images/expert-pattern-1.svg);
    background-repeat: no-repeat;
}
.directory-detail-img{
    margin-top: 60px;
}
.directory-detail-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}
.directory-detail-text *{
    color: var(--primary);
}
.directory-detail-text a{
    text-decoration: underline;
}
.specialisms_directory{
    margin-top: 20px;
}
.backtodirecotry{
    padding-top: 50px;
}
.backtodirecotry a{
    font-weight: 700;
    text-decoration: none;
}
.backtodirecotry a:hover{
    color: var(--secondry);
}
.directory-detail-text h2, 
.directory-detail-text h3, 
.directory-detail-text h4, 
.directory-detail-text h5, 
.directory-detail-text  h6{
    margin-bottom: 18px;
}
.directory-detail-text h4, 
.directory-detail-text h5, 
.directory-detail-text  h6{
    font-size: 26px;
}
.directory-detail-text h2:last-child, 
.directory-detail-text h3:last-child, 
.directory-detail-text h4:last-child, 
.directory-detail-text h5:last-child, 
.directory-detail-text  h6:last-child{
    margin-bottom: 0;
}
.directory-detail-text ul,
.directory-detail-text ol{
    list-style-type: disc;
    margin-left: 19px;
    margin-bottom: 16px;
}
.directory-detail-text ol{
    list-style-type: auto;
}
.directory-detail-text ul:last-child,
.directory-detail-text ol:last-child{
  margin-bottom: 0;
}
.directory-detail-text ul li,
.directory-detail-text ol li{
    margin-bottom: 8px;
}
.directory-detail-text ul li:last-child,
.directory-detail-text ol li:last-child{
    margin-bottom: 0;
}
.contact-form-section{
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.05);
}
.form_shortcode h4{
    color: var(--primary);
    margin-bottom: 24px;
}
.post-results strong{
    font-size: 26px;
    color: var(--primary);
}
.location-list.active,
.blog-categories ul {
  cursor: grabbing;
}

.error-page p{
    font-size: 18px;
}
.not-found a{
    text-decoration: underline;
}