@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #9D0B0E;
    --blue-bg: #002B5B;
    --light-text: #111111;
    --dark-text: #000000;
    --white-text: #fff;
}

body {
    margin: 0;
}

h1,
h2,
h3 {
    font-family: 'Libre Baskerville';
    font-weight: 400;
}

h1 {
    font-size: 50px;
    line-height: 65px;
}

h2 {
    font-size: 40px;
    line-height: 50px;
}

h3 {
    font-size: 26px;
    line-height: 32px;
}

h4 {
    font-size: 20px;
    line-height: 32px;
}

p,
a,
.primery-btn,
.transpernt-btn,
.blue-btn {
    font-family: 'Montserrat';
    font-weight: 500;
    text-decoration: none;
}

h4,
a {
    font-family: 'Montserrat';
    line-height: 100%;
}

p {
    font-size: 16px;
    font-family: 'Montserrat';
    line-height: 30px;
}

a,
p {
    font-size: 16px;
}

.primery-btn,
.transpernt-btn,
.blue-btn {
    font-size: 18px;
    font-family: 'Montserrat';
    line-height: 20px;
    padding: 10px 21px;
    border-radius: 10px 0 10px 0px;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: capitalize;
}

.primery-btn {
    background: var(--white-text);
    color: var(--dark-text);
    border: 1px solid #fff;
}

.primery-btn:hover {
    background: transparent;
    color: var(--white-text);
    border: 1px solid #fff;
}

.primery-btn:hover svg path {
    fill: var(--white-text);
}

.transpernt-btn {
    border: 1px solid #fff;
    background: transparent;
    color: var(--white-text);
}

.blue-btn {
    background: var(--blue-bg);
    color: var(--white-text);
    min-width: 202px;
    border: 1px solid #002B5B;
    text-decoration: none;
}

.blue-btn:hover {
    background: transparent;
    color: #002B5B;
    border: 1px solid #002B5B;
}

.container {
    max-width: 1340px;
    padding: 0 20px;
}

/* ============== Annusment bar  ============== */

.annusment-bar {
    background-color: var(--primary-color);
    padding: 8px 0px;
}

.right-side-view {
    gap: 20px;
}

.phone a {
    display: flex;
    gap: 5px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    margin: 0;
    align-items: center;
}

.media-icon {
    display: flex;
    gap: 20px;
}

/* ============== Header  ============== */
nav.navbar {
    background: var(--white-text);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 99999;
    box-shadow: 0 0px 4px 0 #ccc;
    transition: 0.4s;
}

.navbar-nav .nav-item .nav-link {
    padding: 0;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: var(--dark-text);
}

.navbar-nav {
    gap: 27px;
}

/* Hero Banner section  */

.carousel-item {
    background-image: url(/sites/default/files/inline-images/banner1.png);
    background-position: center;
    padding: 80px 0;
}

.carousel-item::after {
    background: linear-gradient(90deg, #002B5B 11.27%, rgba(0, 43, 91, 0) 68.96%);
    position: absolute;
    height: 100%;
    width: 100%;
    content: '';
    top: 0;
    left: 0;
}

.content-box {
    position: relative;
    z-index: 1;
}

.content-box {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.content-box h1 {
    margin-bottom: 30px;
    max-width: 700px;
}

.content-box p {
    margin-bottom: 30px;
    max-width: 583px;
}

.buttons-outers {
    display: flex;
    gap: 15px;
}

.scroll-text {
    position: absolute;
    right: 60px;
    bottom: 80px;
    transform: rotate(90deg);
    transform-origin: right bottom;
    letter-spacing: 2px;
    color: var(--white-text);
    text-transform: uppercase;
    cursor: default;
    animation: moveUpDown 2s infinite ease-in-out;
    z-index: 2;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 12px;
    line-height: 30px;
}

.scroll-text a {
    color: #fff;
}

.scroll-text::after {
    content: '';
    height: 1px;
    width: 33px;
    background: var(--white-text);
    position: absolute;
    bottom: 15px;
    right: -44px;
}



@keyframes moveUpDown {

    0%,
    100% {
        transform: rotate(90deg) translateX(0);
    }

    50% {
        transform: rotate(90deg) translateX(-10px);
    }
}

.Sectors .row {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    margin: 0 2px;
}

.Sectors-outer h4 {
    margin: 0;
    font-weight: 500;
    line-height: 26px;
    text-align: center;
    min-height: auto;
    font-size: 18px;
}

*/
/* Firm */

section.Firm {
    padding: 120px 0;
    background: #fff;
}

.blog-card-outer {
    border: 1px solid #0000000D;
    background: var(--white-text);
    border-radius: 10px;
    overflow: hidden;
    transition: .4s;
    position: relative;
}

.blog-card-outer:hover {
    box-shadow: 0 4px 10px 0 #ccc;
}

.blog-card-outer:hover {
    box-shadow: 0 4px 10px 0 #ccc;
}

.feature-image-outer {
    overflow: hidden;
}

.blog-card-outer:hover .feature-image-outer img {
    transform: scale(1.2);
}

.content-blog {
    padding: 25px;
}


.content-blog .publish-date {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    color: var(--dark-text);
    margin: 0;
}

.content-blog .blog-titel {
    font-weight: 400;
    font-size: 22px;
    line-height: 1.5em;
    color: var(--light-text);
    margin: 0;
    margin-top: 20px;
    min-height: 66px;
}

.content-blog .blog-text {
    margin: 30px 0 20px 0;
    color: var(--dark-text);
    line-height: 30px;
}

.content-blog a {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 7px;
    padding: 7px 10px;
    background: #8B0A0A;
    width: fit-content;
    border-radius: 6px 0;
}

.content-blog a svg path {
    fill: #fff;
}

.What-we-do.related-services .box-outer a {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin: 20px;
    gap: 7px;
    padding: 7px 10px;
    background: #8B0A0A;
    width: fit-content;
    border-radius: 6px 0;
}

.What-we-do.related-services .box-outer a svg path {
    fill: #fff;
}

.What-we-do.related-services .box-outer a.all-side {
    background: transparent;
    padding: 0;
    margin: 0;
    width: 100%;
}

/* ============== Footer  ============== */

.footer-main {
    padding: 120px 0 20px 0;
    background: #002B5B;
}

.footer-list h4 {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
    color: var(--white-text);
    margin-bottom: 20px;
}

.footer-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-list ul li a {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    text-decoration: none;
    color: var(--white-text);
}

.footer-list p {
    color: var(--white-text);
    line-height: 1.5em;
    margin: 16px 0 !important;
}

.subscribe input {
    height: 44px;
    padding: 10px 31px 10px 10px;
    outline: none;
}

.subscribe svg {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.subscribe {
    position: relative;
}

.footer-list .btn-btn {
    background: #8B0A0A;
    border: 0;
    max-width: 135px;
    height: 40px;
    border-radius: 10px 0px 10px 0;
    color: var(--white-text);
    font-family: Montserrat;
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
    border: 1px solid #8B0A0A;
    transition: .4s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-list .btn-btn:hover {
    border: 1px solid #fff;
    background: transparent;
}

/* ============== About us  ============== */

.about-hero {
    background-image: url(/sites/default/files/inline-images/about-banner.png);
    background-size: cover;
    padding: 80px 0;
    position: relative;
}

.about-hero::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, #002B5B 23%, rgba(0, 43, 91, 0) 100%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

section.about-hero.service-hero::after {
    background: linear-gradient(90deg, #002B5B 17.93%, rgba(17, 2, 107, 0) 79.35%);
}

.about-hero .content-Head {
    position: relative;
    z-index: 1;
}

.about-hero .content-Head h1,
.about-hero .content-Head p {
    color: var(--white-text);
}

section.history {
    background: var(--white-text);
    padding: 80px 0;
}

.image-inner-history img {
    height: 550px;
    border-radius: 10px;
    object-fit: cover;
}

.image-inner-history {
    padding-right: 25px;
}

.detials-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-side p {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #000;
    align-items: center;
}

.info-side p a {
    color: #000;
    font-size: 14px;
}

section.locations {
    background: #FAFAFA;
    padding: 80px 0;
}

.location-inner {
    background: #f2f2f2;
    padding: 20px;
    height: 100%;
}

.info-side p:last-child {
    margin: 0;
}

.location-inner>img {
    width: 100%;
    height: 261px;
    object-fit: cover;
}

.loction-detials {
    padding: 20px 20px 0;
}

.loction-detials h3 {
    font-size: 28px;
    margin: 15px 0 20px 0;
}

section.Privacy-info {
    padding: 80px 0;
    background: #fff;
}

.Privacy-info .accordion-button {
    padding: 15px 10px;
    font-family: Libre Baskerville;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #111111;
    background-color: #FAFAFA;
}

.Privacy-info .accordion-item {
    border-bottom: 1px solid #0000001a !important;
}

.Privacy-info .accordion-button:focus {
    box-shadow: none;
    background: #FAFAFA !important;
}

.Privacy-info .accordion-button:not(.collapsed) {
    background: #FAFAFA;
}

.Privacy-info .accordion-body {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
    /* padding: 10px; */
}

.info-image img {
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.info-image {
    padding-left: 30px;
}

.term-Con {
    padding: 80px 0;
    background: #FAFAFA;
}

.ethical-rule {
    padding: 80px 0;
    background: #fff;
}

.content-head a {
    color: #9D0B0E;
    text-decoration: none;
}

.con-text p a {
    color: #9D0B0E;
    text-decoration: none;
}

.map-info {
    max-width: 209px;
    width: 100%;
}

.map-info iframe {
    width: 100% !important;
}

.box-outer>img {
    height: 30px;
    width: 30px;
}

.red-btn {
    background: #8B0A0A;
    border: 0;
    width: 202px;
    height: 52px;
    border-radius: 10px 0;
    color: var(--white-text);
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    transition: 0.4s;
    border: 1px solid #8B0A0A;
    line-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.red-btn:hover {
    border: 1px solid #8b0a0a;
    background-color: transparent;
    color: #8b0a0a;
}

/* ============== service page ============== */

.service-hero .content-Head p {
    max-width: 470px;
}

.service-hero {
    background-image: url(/sites/default/files/inline-images/services-banner.png);
    padding: 80px 0;
    background-position: center;
}

.What-we-do .box-outer p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

section.What-we-do.services-page {
    padding: 90px 0 120px 0;
}

section.Sectors.services-page {
    padding: 90px 0 120px 0;
    background: #E6E3F94D;
}


/* ============== Single Service Page ==============  */

.single-service {
    background-image: url(../images/services-banner.png);
    padding: 80px 0;
    background-position: center;
}

section.otp-content {
    padding: 80px 0;
    background: #fff;
}

.breadcrum {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    gap: 10px;
    align-items: center;
}

.breadcrum a {
    text-decoration: none;
    color: #FFFFFF;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    /* line-height: 30px; */
    text-transform: capitalize;
}

.What-we-do .row {
    flex-wrap: wrap;
    gap: 32px;
    justify-content: start;
    margin: 0 2px;
}

.What-we-do .box-outer {
    width: calc(25% - 24px);
    background: #fff;
    box-shadow: 0px 44px 44px 0px #00000017;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: .4s;
    border: 1px solid #0000001A;
}

.box-outer>img {
    height: 30px;
    width: 30px;
}

.What-we-do .box-outer h4 {
    color: var(--dark-text);
    margin: 20px 0 20px 0;
    line-height: 26px;
    font-weight: 500;
    min-height: 52px;
}

.What-we-do .box-outer a {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    text-decoration: none;
    color: var(--primary-color);
    align-items: center;
}

section#Analysis {
    padding: 80px 0;
}

.side-content-listing h5 {
    font-family: Libre Baskerville;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #000;
    margin: 0;
}

.table-content ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-direction: column-reverse;
    margin-top: 30px;
}

.table-content ul li a {
    text-decoration: none;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid #00000033;
    line-height: 100%;
    padding-bottom: 10px;
    padding-right: 20px;
    color: #000;
    width: 100%;
    display: inline-block;
    line-height: 18px;
    max-width: 250px;
}

.content-tba-inner img {
    height: 307px;
    width: 100%;
    margin-bottom: 40px;
    object-fit: cover;
}

.content-tba-inner h4 {
    font-family: Libre Baskerville;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    margin: 0;
}

.content-tba-inner ul {
    padding-left: 20px;
    margin-top: 16px;
}

.content-tba-inner ul li {
    font-family: Montserrat;
    font-weight: 500;
    line-height: 35px;
}

section.What-we-do.related-services {
    background: #E6E3F94D;
    padding: 80px 0;
}

section.key-contects {
    background: #002B5B;
    padding: 80px 0;
}

.people-inner {
    position: relative;
    width: 33.33%;
}

.people-inner img {
    width: 100%;
    height: 253px;
    border-radius: 10px;
    object-fit: cover;
}

.people-inner h4 {
    font-family: Libre Baskerville;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    margin: 20px 0 10px 0;
}

.people-inner p {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 30px;
    color: #fff;
    margin: 0;
}

section.key-contects .Content-head h5 {
    color: #fff;
    border-bottom-color: #fff;
}

.Content-head h5 {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: var(--primary-color);
    border-bottom: 1px solid #9D0B0E;
    display: inline-block;
    padding-bottom: 6px;
    margin: 0;
}

section.key-contects .Content-head h2 {
    color: #fff;
}

.people-outer {
    display: flex;
    gap: 20px;
}

div#tca {
    scroll-margin-top: 111px;
}

section#expertise {
    scroll-margin-top: 90px;
}

section#Contacts {
    scroll-margin-top: 80px;
}

a.link-toc.active {
    color: #9D0B0E;
    border-bottom-color: #9D0B0E;
}

/* ============== Our people page css ============== */

.our-people {
    background-image: url(/sites/default/files/inline-images/our-people.png);
}

.inner-filter {
    border-radius: 10px;
    box-shadow: 0px 2px 2px 0px #0000001A;
    position: relative;
    background: #fff;
}

.filter-bar {
    display: flex;
    gap: 40px;
    padding: 15px 50px;
    margin: -34px 0 0 0;
}


.filter-bar .filter-item {
    width: 25%;
}

.filter-bar .filter-item select {
    width: 100%;
    border: 0;
    outline: none;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: #000000;
}

.filter-item.position-relative input {
    width: 100%;
    border: 0;
    padding: 4px 23px 0 0;
    outline: none;
    font-family: 'Montserrat';
}

.filter-item.position-relative .search-icon {
    position: absolute;
    right: 10px;
}

section.filter-section .people-outer {
    margin-top: 90px;
    gap: 150px;
}

section.filter-section .people-outer h4 {
    color: #002B5B;
}

section.filter-section .people-outer p {
    color: #000;
}

section.filter-section {
    padding: 0 0 80px 0;
}

.filter-mobile {
    display: none;
}

.mobile-canva-filter {
    position: fixed;
    top: 0;
    background: #fff;
    z-index: 99999;
    height: 100vh;
    max-width: 100%;
    right: -112%;
    /* padding: 20px; */
    transition: 0.5s;
    display: none;
}

.mobile-canva-filter select {
    width: 100%;
    height: 43px;
    border-radius: 10px;
    border: 1px solid #cccccc5c;
    padding: 10px;
    outline: none;
}

.mobile-canva-filter .col-12 {
    margin-bottom: 13px;
    padding: 0 20px;
}


.mobile-canva-filter .filter-item {
    border: 1px solid #cccccc5c;
    padding: 8px;
    border-radius: 10px;
    outline: none;
}

.top-crose {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 020px;
    padding: 18px 30px;
}

.top-crose h3 {
    margin: 0;
    line-height: normal;
}

.mobile-canva-filter.active {
    right: 0;
}

.copy-right {
    border-top: 1px solid #FFFFFF33;
    padding-top: 20px;
    display: none;
}

section.footer-btm-side {
    background: #9D0B0E;
    padding: 9px 0;
}

section.footer-btm-side ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    line-height: normal;
}

section.footer-btm-side ul a {
    text-decoration: none;
    color: #fff;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 12px;
    line-height: normal;
}

section.footer-btm-side ul li {
    line-height: normal;
}

/* ==============Single people css ============== */
section.About-people {
    background: #002B5B;
    padding: 70px 0;
}

section.About-people .col-lg-6 h1 {
    color: #fff;
}

section.About-people .col-lg-6 p {
    color: #fff;
    font-weight: 400;
}

section.About-people .col-lg-6 p span {
    font-weight: 600;
    display: block;
}

section.About-people h5 {
    color: #fff;
    font-family: Libre Baskerville;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    width: 100%;
}

.content-deatils {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    /* flex-direction: column; */
    gap: 20px;
    flex-wrap: wrap;
}

.content-deatils .phone a {
    gap: 12px;
    line-height: 20px;
}

section.Expertise-about-pp {
    padding: 20px 0 0px 0;
    background-image: linear-gradient(90deg, #E6E3F94D 58.4%, #ffffff 40%);
}

.profile {
    background: #fff;
    margin: -340px 0 0 0;
    border-radius: 10px 10px 0 0;
}

.profile .inner-profile {
    padding: 20px 24px;
}

.inner-pro-box h5 {
    font-family: Libre Baskerville;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #002B5B;
}

.inner-pro-box ul li {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 30px;
    color: #000;
}

.inner-pro-box ul {
    padding-left: 25px;
}

.profile img {
    height: 320px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.experti-inner-left {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    width: 50%;
}

.experti-inner-left a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #0000001A;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    width: 100%;
    max-width: 336px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-top: 20px;
}

section.key-strenghts {
    background: #FBF8F8;
    padding: 60px 0;
}

section.key-strenghts h3 {
    margin-bottom: 20px;
}

section.key-strenghts ul {
    padding-left: 20px;
    margin: 0;
}

section.key-strenghts ul li {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 30px;
    color: #000000;
}

section.key-strenghts.Notable-Experi {
    background: #fff;
}

section.Analysis-people {
    background: #E6E3F94D;
    padding: 80px 0;
    border-top: 1px solid #fff;
}

section.filter-section.insights .filter-bar .filter-item {
    width: 100%;
}

.drop-outer .drp-head {
    font-family: Libre Baskerville;
    font-weight: 400;
    font-size: 22px;
    line-height: 50px;
    color: #111 !important;
    text-decoration: underline;
    text-underline-offset: 13px;
    text-decoration-color: #9D0B0E;
}

.drop-outer .drp-head a {
    padding: 0 !important;
}

.drop-outer ul li a {
    padding: 0;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 14px;
    line-height: 32px;
    color: #000;
}

.drop-outer>.tax-insight>img {
    height: 170px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 10px;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background: transparent;
    color: #000;
}


/* ====== custom css ======= */


.header-main.header-navigation {
    background: var(--white-text);
    /* padding: 14px 0; */
    position: sticky;
    top: 0;
    z-index: 99999;
    box-shadow: 0 0px 4px 0 #ccc;
    transition: 0.4s;
}

.header-main.header-navigation>div {
    display: flex;
    justify-content: space-between;
    margin: auto;
    max-width: 1340px;
    padding: 0 20px;
    align-items: center;
}

.tbm {
    background-color: transparent;
    position: static;
}

.tbm-link.level-1 {
    color: #000;
}

button.tbm-submenu-toggle.always-show {
    width: fit-content;
    background: transparent;
}

.tbm-item.level-1 {
    border-right: none;
}

.tbm-main .tbm-nav.level-0 {
    gap: 27px;
}

.tbm-link.level-1:hover,
.tbm-link.level-1:focus {
    background-color: transparent;
}

.tbm-link.level-1 {
    color: #000;
    padding: 0;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: var(--dark-text);
    text-decoration: none;
    text-transform: capitalize;
}

.tbm-submenu.tbm-item-child .tbm-row {
    max-width: 1340px;
    padding: 0 20px;
    margin: auto;
}

.tbm-block ul {
    padding-left: 0;
    list-style: none;
}

.tbm-block ul li a {
    padding: 0;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 14px;
    line-height: 32px;
    color: #000;
    text-decoration: none;
}

.tbm-block h2 {
    font-family: Libre Baskerville;
    font-weight: 400;
    font-size: 22px;
    line-height: 50px;
    color: #111 !important;
    text-decoration: underline;
    text-underline-offset: 13px;
    text-decoration-color: #9D0B0E;
}

footer.site-footer {
    padding: 60px 0 20px 0;
    background: #002B5B;
}

footer.site-footer>div {
    max-width: 1340px;
    padding: 0 20px;
    margin: auto;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
}

div#block-bissessur-footerbranding {
    width: 25%;
}

div#block-bissessur-newsletter {
    width: 18%;
}

footer.site-footer nav {
    width: auto;
}

.footer.site-footer nav h2 {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 20px;
}

footer.site-footer h2 {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
    color: var(--white-text);
    margin-bottom: 20px;
}


footer.site-footer ul li a {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    text-decoration: none;
    color: var(--white-text);
    text-transform: capitalize;
    transition: 0.4s;
}

footer.site-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

div#block-bissessur-copyright {
    width: 100%;
}



.tbm.tbm--mobile.animate .always-show .tbm-item.open>.tbm-submenu {
    display: block !important;
}

.tbm.tbm--mobile .tbm-collapse {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    right: 0;
    height: 100vh;
    overflow: auto;
    padding-top: 58px;
}

.tbm.tbm--mobile.animate .always-show .tbm-item>.tbm-submenu {

    display: none !important;
}

.tbm.tbm--mobile .tbm-button {
    display: block;
    position: relative;
    z-index: 9999999;
}

.tbm--mobile-show {
    position: fixed !important;
    top: 10px;
    right: 10px;
}

.tbm.tbm--mobile .tbm-button {
    padding: 0 !important;
    background: transparent !important;
    border: 0;
    margin: 0;
}

.tbm-button-container {
    margin: 0;
}

.tbm-button-container span {
    height: 2px;
}

.tbm-button-container span:nth-child(4) {
    bottom: 4px !important;
}

.tbm.tbm--mobile .tbm-nav {
    background: transparent;
}

.tbm.tbm--mobile .tbm-item {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tbm.tbm--mobile .tbm-item {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    /* padding: 15px 10px; */
}


.tbm.tbm--mobile .tbm-block {
    padding: 0rem;
}

.discover-head {
    padding: 80px 20px 40px;
}

.views-element-container>div>div {
    width: 100%;
}

div#block-bissessur-views-block-home-services-expertise-block-1>div {
    max-width: 1340px;
    padding: 0 20px;
    margin: auto;
}

div#block-bissessur-views-block-home-services-expertise-block-1 .views-view-grid .views-row {
    float: none;
    gap: 20px !important;
    display: flex;
    flex-direction: row-reverse;
}

div#block-bissessur-views-block-home-services-expertise-block-1 .views-view-grid .views-col {
    float: none;
    width: calc(25% - 15px) !important;
    background: #F3F6FB;
    /* box-shadow: 0px 44px 44px 0px #00000017; */
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: 0.4s;
    border: 1px solid #0000001A;
}

/* div#block-bissessur-views-block-home-services-expertise-block-1 .views-row.clearfix.row-2 {
    margin-top: 20px;
} */
div#block-bissessur-views-block-home-services-expertise-block-1 .views-view-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
}

div#block-bissessur-views-block-home-services-expertise-block-1 .views-field.views-field-title span.field-content a {
    color: var(--dark-text);
    margin: 20px 0 20px 0;
    line-height: 26px;
    font-weight: 500;
    min-height: 52px;
    text-decoration: none;
    font-size: 20px;
}

.views-element-container {
    display: none;
}

div#block-bissessur-views-block-insights-block-1 {
    display: block;
    padding-bottom: 80px;
}

#block-bissessur-views-block-firm-updates-block-1 {
    display: block;
}

#block-bissessur-views-block-home-services-expertise-block-1 {
    display: block;
}

#block-bissessur-views-block-firm-updates-block-1 {
    padding: 0px 0 80PX;
    background: #fff;
}

#block-bissessur-views-block-firm-updates-block-1>div {
    max-width: 1340px;
    margin: auto;
    padding: 0 20px;
}

#block-bissessur-views-block-firm-updates-block-1>div>div {

    display: flex;
    gap: 24px;
    margin: auto;
}

#block-bissessur-views-block-firm-updates-block-1 .fu-thumb img {
    width: 100%;
    height: 276px;
    transition: 0.4s;
    object-fit: cover;
}

#block-bissessur-views-block-firm-updates-block-1>div>div {
    display: flex;
    gap: 24px;
    margin: auto;
    flex-wrap: wrap;
}

#block-bissessur-views-block-firm-updates-block-1 p {
    margin: 0;
    color: var(--dark-text);
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

#block-bissessur-views-block-firm-updates-block-1 .fu-content {
    padding: 20px 30px;
}

#block-bissessur-views-block-firm-updates-block-1 .fu-title a {
    font-weight: 400;
    font-size: 22px;
    color: var(--light-text);
    margin: 0;
    margin-top: 20px;
    font-family: 'Libre Baskerville';
    text-decoration: none;
    line-height: 100%;
    min-height: 80px;
}

#block-bissessur-views-block-firm-updates-block-1 .fu-date {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    color: var(--dark-text);
    margin: 0;
}


#block-bissessur-views-block-firm-updates-block-1 p:empty {
    display: none;
}

#block-bissessur-views-block-firm-updates-block-1 h3.fu-title {
    margin: 20px 0;
    min-height: auto;
}

a.read-more-firm {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-top: 12px;
    gap: 7px;
    padding: 7px 10px;
    background: #8B0A0A;
    width: fit-content;
    border-radius: 6px 0;
}

p.fu-desc {
    display: none !important;
}

.firm-head-outer {
    padding: 80px 0 40px;
}


a.areas-expertise-thumb img {
    height: 30px;
    width: 30px;
}

h3.areas-expertise-title a {
    font-family: Montserrat;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: none;
    color: #000;
}

.areas-expertise-readmore {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 7px;
    padding: 7px 10px;
    background: #8B0A0A;
    width: fit-content;
    border-radius: 6px 0;
}



div#block-bissessur-views-block-industries-sectors-block-1 {
    display: block;
    padding: 0 0 80px 0;
}

div#block-bissessur-views-block-industries-sectors-block-1>div>div {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

div#block-bissessur-views-block-industries-sectors-block-1>div {
    max-width: 1340px;
    margin: auto;
    padding: 0 20px;
}

.Sectors-outer-new {
    position: relative;
    height: 106px;
    overflow: hidden;
}

.Sectors-outer-new .fu-thumb img {
    width: 100%;
    height: 106px;
    border: 1px solid #0000001A;
    position: absolute;
    object-fit: cover;
    transition: 0.4s;
}

.Sectors-outer-new:hover .fu-thumb img {
    transform: scale(1.2);
}

div#block-bissessur-views-block-industries-sectors-block-1 .views-row {
    width: calc(25% - 15px);
}


.Sectors-outer-new .fu-content {
    position: relative;
    z-index: 9;
    height: 106px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.Sectors-outer-new::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000A6;
    z-index: 8;
    content: '';
    height: 100%;
    width: 100%;
}

div#block-bissessur-views-block-industries-sectors-block-1>div>div header {
    display: none;
}

.Sectors-outer-new .fu-title a {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    text-decoration: none;
    text-align: center;
}

a.arrow-sectors {
    position: absolute;
    top: 10px;
    right: 10px;
    transition: 0.4s;
}

.sector-outer-head {
    padding: 40px 0 30px;
}

.Sectors-outer-new h3 {
    margin: 0;
    text-align: center;
    line-height: 15px;
}


.last-head-analis {
    padding: 80px 0 40px 0;
    background: #E6E3F94D;
}

.firm-head-outer h2 {
    margin-top: 20px;
}

#block-bissessur-servicesheadmain {
    padding: 80px 0 20px;
    background-color: #fff;
}

#block-bissessur-servicesheadmain+div#block-bissessur-views-block-home-services-expertise-block-1 {
    padding: 0 0 80px 0;
    background-color: #fff;
}

#block-bissessur-sectorsservicehead {
    background: #E6E3F94D;
    padding: 80px 0 40px;
}

#block-bissessur-sectorsservicehead+div#block-bissessur-views-block-industries-sectors-block-1 {
    background: #E6E3F94D;
}

#block-bissessur-views-block-regional-focus-block-1 {
    display: block;
    padding: 0 0 80px 0;
}

#block-bissessur-views-block-regional-focus-block-1>div>div {
    max-width: 1340px;
    padding: 0 20px;
    margin: auto;
}

#block-bissessur-views-block-regional-focus-block-1 .views-row {
    display: flex;
    gap: 0 19px;
    flex-wrap: wrap;
}

.focus-outer-main {
    width: calc(25% - 15px) !important;
    border: 1px solid #0000001A;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding: 15px;
    justify-content: center;
    min-height: 86px;
    transition: 0.4s;
}

.focus-outer-main .fu-thumb img {
    width: 73px;
    height: auto;
}

.focus-regional {
    display: flex;
    gap: 18px;
    align-items: center;
}

.focus-regional h3.fu-title {
    margin: 0;
    line-height: 1;
}

.focus-regional h3.fu-title a {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #002B5B;
    margin: 0;
    text-decoration: none;
}

div#block-bissessur-regionalfocus {
    padding: 80px 0 40px;
}

div#block-bissessur-views-block-our-people-block-1 {
    display: block;
    padding: 0px 0 90px;
}

.people-card .people-img img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
    object-position: top;
}

div#block-bissessur-views-block-our-people-block-1>div {
    max-width: 1340px;
    margin: auto;
    padding: 0 20px;
}


/* form#views-exposed-form-our-people-block-1 {
    display: none;
} */

.people-card h3.people-title a {
    font-family: Libre Baskerville;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: #002B5B;
    text-decoration: none;
}

.people-card h3.people-title {
    margin: 20px 0 10px 0;
}

div#block-bissessur-views-block-our-people-block-1 .views-view-grid.vertical {
    gap: 0 150px;
    display: flex;
    flex-wrap: wrap;
}

.main-people {
    width: calc(33.33% - 100px) !important;
}

.people-card p.people-designation {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #000;
}


.breadcrum span {
    text-decoration: none;
    color: #FFFFFF;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    /* line-height: 30px; */
    text-transform: capitalize;
}

.feature-image-outer img {
    height: 277px;
    transition: 0.4s;
    object-fit: cover;
}

p.blog-text+p {
    margin: 30px 0 20px 0;
    color: var(--dark-text);
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

footer.site-bottom-footer {
    background: #9D0B0E;
    padding: 5px 0;
}

footer.site-bottom-footer>div {
    max-width: 1340px;
    margin: auto;
    padding: 0 20px;
}

footer.site-bottom-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 5px 20px;
    flex-wrap: wrap;
}

footer.site-bottom-footer ul li a {
    text-decoration: none;
    color: #fff;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 12px;
    line-height: normal;
}

section#Analysis .button-outer {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.people-inner a {
    text-decoration: none;

}

.box-outer.focus-detail h4 {
    min-height: auto;
}

.box-outer.focus-detail img {
    object-fit: contain;
    width: 90px;
    height: auto;
}

.box-outer.sector-ind-detail {
    padding: 0;
    border-radius: 5px;
    overflow: hidden;
}

.box-outer.sector-ind-detail img {
    height: 150px;
    width: 100%;
    object-fit: cover;
}

.box-outer.sector-ind-detail h4 {
    margin: 0;
    min-height: 72px;
    padding: 20px 20px 0;
}

.box-outer.sector-ind-detail a {
    padding: 10px 20px 20px 20px;
}

form#views-exposed-form-our-people-block-1 {
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 2px 2px 0px #0000001A;
    padding: 12px 30px;
    gap: 30px;
    border-radius: 10px;
    align-items: center;
    margin: -30px 0 80px 0;
    /* z-index: 99999; */
    position: relative;
    background: #fff;
}

form#views-exposed-form-our-people-block-1>.form-item .bef-checkboxes.form-checkboxes {
    background: #fff;
    position: absolute;
    width: 100%;
    z-index: 1;
    padding: 10px;
    border-radius: 4px;
    margin: 0;
    box-shadow: 0 4px 4px 0 #cccccc40;
    border: 1px solid #00000085;
}

form#views-exposed-form-our-people-block-1 label {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: #000000;
    margin-bottom: 10px;
    box-shadow: none !important;
}


form#views-exposed-form-our-people-block-1 select {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    border: 0;
    line-height: 14px;
    /* padding: 0; */
}

.js-form-item.form-item.form-type-textfield.js-form-type-textfield.form-item-title.js-form-item-title label {
    display: block;
}


.js-form-item.form-item.form-type-textfield.js-form-type-textfield.form-item-title.js-form-item-title .form-text {
    margin: 0;
    border: 0;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: #000;
    outline: none;
    width: 100%;
    padding: 6px 0px;
}

form#views-exposed-form-our-people-block-1 .form-submit {
    background: var(--blue-bg);
    color: var(--white-text);
    border: none;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Montserrat';
    line-height: 20px;
    padding: 8px 15px;
    border-radius: 5px 0 5px 0px;
}

section.about-hero.disclaimer {
    background-color: #002b5b;
    background-image: none;
}

.data-main-outer {
    padding: 100px 0;
}

.data-main-outer .container-cstm {
    max-width: 1000px;
    margin: auto;
    padding: 0 20px;
}

div#block-bissessur-simplenewssubscription {
    width: 25%;
}

div#block-bissessur-simplenewssubscription input#edit-mail-0-value {
    width: 100%;
    height: 44px;
    padding: 10px 40px 10px 10px;
    outline: none;
    font-family: 'Montserrat';
}

div#edit-mail-0-value--description {
    display: none;
}

div#edit-message {
    display: none;
}

a#edit-manage {
    display: none;
}

form#simplenews-subscriptions-block-b2698886-63f5-43dc-9624-5549ffcec98c label.js-form-required.form-required {
    color: #fff;
    margin-bottom: 24px;
    font-family: 'Montserrat';
    font-weight: 500;
}


.search-block-form {
    display: none;
}

div#block-bissessur-simplenewssubscription .form-submit {
    background: transparent;
    color: #000;
    border: none;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Montserrat';
    line-height: 20px;
    padding: 10px 21px;
    margin-top: 10px;
    background-image: url(/sites/default/files/inline-images/arrow-btm.png );
    background-repeat: no-repeat;
    font-size: 0;
    background-position: center;
    margin: 0;
}

section.Firm.Analysis-people .button-outer a {
    display: inline;
    background: #8b0a0a;
    text-align: center;
    border-color: #8b0a0a;
    color: #fff !important;
}

section.Firm.Analysis-people .button-outer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-block-form.active-search {
    position: fixed;
    top: 0px;
    z-index: 999990;
    height: 100%;
    width: 100%;
    padding: 16px;
    justify-content: center;
    display: flex;
    height: 100%;
    background: rgb(0 0 0 / 81%);
    align-items: center;
}


.search-block-form.active-search form#search-block-form {
    max-width: 700px;
    width: 100%;
    display: flex;
    gap: 15px;
}

form#search-block-form .js-form-item.form-item.form-type-search.js-form-type-search.form-item-keys.js-form-item-keys.form-no-label {
    width: 100%;
}

form#search-block-form .js-form-item.form-item.form-type-search.js-form-type-search.form-item-keys.js-form-item-keys.form-no-label .form-search {
    width: 100%;
    height: 44px;
    padding: 10px 31px 10px 10px;
    outline: none;
    background: #fff;
    border: 1px solid #002b5b;
    border-radius: 3px;
}

form#search-block-form div#edit-actions {
    height: fit-content;
}

form#search-block-form div#edit-actions .form-submit {
    background: var(--blue-bg);
    color: var(--white-text);
    border: none;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Montserrat';
    line-height: 20px;
    padding: 10px 21px;
    border-radius: 10px 0 10px 0px;
    height: 44px;
    min-width: 138px;
}

body.search-active {
    overflow-y: hidden;
}


nav.pager ul.pager__items.js-pager__items {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 50px;
    padding-bottom: 60px;
}

nav.pager ul.pager__items.js-pager__items li.pager__item a {
    color: #9D0B0E;
}

span.search-close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    background: #9D0B0E;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
}

span.search-close-icon img {
    height: 20px;
}

form#search-form+h2+ol li {
    width: calc(25% - 19px);
    /* padding: 20px; */
    /* border: 1px solid rgba(0,0,0,0.1); */
    border-left: 0;
    border-top: 0;
}

form#search-form {
    max-width: 100%;
    margin: auto;
    padding: 50px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background: #f2f2f2;
}

form#search-form+h2 {
    max-width: 1340px;
    margin: auto;
    padding: 0 20px;
    text-align: center;
    margin-top: 60px;
    text-transform: capitalize;
}

form#search-form+h2+ol {
    max-width: 1340px;
    padding: 0 20px;
    margin: auto;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

form#search-form+h2+ol li {
    width: calc(25% - 19px);
}

h2.my-result-title {
    line-height: 100% !important;
}

h2.my-result-title a {
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.my-result-body {
    font-family: 'Montserrat';
    font-size: 14px;
}

a#edit-help-link {
    display: none;
}

a#edit-help-link {
    display: none;
}

form#search-form div#edit-basic {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 15px;
}


form#search-form label {
    display: block;
    color: #000;
    font-size: 16px;
    font-family: 'Montserrat';
    margin-bottom: 10px;
}

form#search-form input#edit-keys {
    width: 100%;
    height: 44px;
    padding: 10px 31px 10px 10px;
    outline: none;
    background: #fff;
    border: 1px solid #002b5b;
    border-radius: 3px;
    font-family: 'Montserrat';
}

input#edit-submit {
    background: var(--blue-bg);
    color: var(--white-text);
    border: none;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Montserrat';
    line-height: 20px;
    padding: 10px 21px;
    border-radius: 10px 0 10px 0px;
    height: 44px;
    min-width: 138px;
}

form#search-form+h2+ol li:nth-child(4n) {
    border-right: 0;
}

form#search-form+h2+ol {
    max-width: 1340px;
    padding: 0 20px;
    margin: auto;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

div#block-bissessur-views-block-insights-block-1>div {
    max-width: 1340px;
    margin: auto;
    padding: 0 20px;
}


.insign-row.views-row {
    gap: 50px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.insign-row.views-row .views-col {
    width: calc(33.33% - 34px) !important;
    border: 1px solid #0000000D;
    background: #F7F7F9;
    border-radius: 10px;
    overflow: hidden;
}

.insign-row.views-row .firm-updates-card.insights-main img {
    width: 100%;
    height: 276px;
    object-fit: cover;
}

.insign-row .fu-content {
    padding: 25px;
    background: #F7F7F9;
}

.insign-row .fu-content p.fu-date {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    color: var(--dark-text);
    margin: 0;
}

.insign-row .fu-content h3.fu-title {
    margin: 20px 0;
}

.insign-row .fu-content h3.fu-title a {
    font-weight: 400;
    font-size: 22px;
    color: var(--light-text);
    margin: 0;
    margin-top: 20px;
    font-family: 'Libre Baskerville';
    text-decoration: none;
    line-height: 100%;
    min-height: 80px;
}

.insign-row.fu-content p {
    margin: 0;
    color: var(--dark-text);
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

form#views-exposed-form-insights-block-1 {
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 2px 2px 0px #0000001A;
    padding: 12px 45px;
    border-radius: 7px;
    align-items: center;
    margin: -40px 0 60px 0;
    gap: 20px;
    position: relative;
    background: #fff;
}

form#views-exposed-form-insights-block-1 label {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: #000000;
    margin-bottom: 10px;
    box-shadow: none !important;
}

form#views-exposed-form-insights-block-1 select {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    border: 0;
    /* line-height: 14px; */
}

form#views-exposed-form-insights-block-1 .form-submit {
    background: var(--blue-bg);
    color: var(--white-text);
    border: none;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Montserrat';
    line-height: 20px;
    padding: 10px 21px;
    border-radius: 10px 0 10px 0px;
}

.primery-btn svg,
.transpernt-btn svg,
.blue-btn svg {
    transition: 0.5s;
}



.transpernt-btn:hover svg path {
    fill: var(--dark-text);
}

.transpernt-btn:hover {
    background-color: var(--white-text);
    color: var(--dark-text);
}

.simplenews-subscriber-form form .form-actions.form-wrapper {
    position: absolute;
    bottom: 2px;
    right: 0px;
}

.simplenews-subscriber-form form {
    position: relative;
}

.content-deatils a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.areas-expertise-readmore:hover svg {
    margin-left: 5px;
}

.areas-expertise-readmore svg {
    transition: 0.4s;
}

a.all-side {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* z-index: 999999; */
}

.firm-updates-card {
    position: relative;
}

.tbm-submenu.tbm-item-child .drop-outer a {
    color: #9d0b0e;
}

header#site-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 99;
}

#block-bissessur-views-block-firm-updates-block-1 .views-row {
    border: 1px solid #0000000D;
    background: var(--white-text);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.4s;
    width: calc(33% - 14px);
}

#block-bissessur-views-block-firm-updates-block-1 .views-row:hover {
    box-shadow: 0 4px 15px 0px #ccc;
}

#block-bissessur-views-block-firm-updates-block-1 .views-row:hover .fu-thumb img {
    transform: scale(1.1);
}

#block-bissessur-views-block-firm-updates-block-1 .fu-thumb {
    overflow: hidden;
}

div#block-bissessur-views-block-home-services-expertise-block-1 .views-view-grid .views-col:hover {
    box-shadow: 0 4px 7px 0px #ccc;
}

.Sectors-outer-new:hover a.arrow-sectors {
    transform: rotate(45deg);
}

.focus-outer-main:hover {
    box-shadow: 0 4px 40px 0 #ccc;
}

/* div#block-bissessur-views-block-home-services-expertise-block-1 .views-view-grid .views-col:hover .areas-expertise-readmore svg {
    margin-left: 5px;
} */

.people-card {
    position: relative;
}

.tbm-button-container span {
    background: #000 !important;
}

.What-we-do .box-outer:hover {
    box-shadow: 0 4px 4px 0 #ccc;
}

.What-we-do .box-outer a svg {
    transition: .4s;
}

.What-we-do .box-outer:hover a svg {
    margin-left: 5px;
}


form#user-login-form {
    padding: 35px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: #ffffff;
    margin: 60px auto;
    box-shadow: 0px 4px 22px 0 #ccc;
    border-radius: 5px;
}

form#user-login-form .form-item label {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 14px;
    color: #000000;
    margin-bottom: 5px;
    display: block;
}

form#user-login-form .form-item input {
    width: 100%;
    height: 44px;
    padding: 10px 31px 10px 10px;
    outline: none;
    background: #fff;
    border: 1px solid #002b5b;
    border-radius: 3px;
}

form#user-login-form div#edit-actions {
    display: flex;
    justify-content: center;
}

div#cookiesjsr .cookiesjsr-banner.active {
    background: #000;
    padding: 30px 40px;
}

button.cookiesjsr-btn {
    border-radius: 10px 0;
    font-size: 18px;
    font-family: 'Montserrat';
    line-height: 20px;
    padding: 10px 21px;
    border-radius: 10px 0 10px 0px;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--dark-text) !important;
    text-transform: capitalize;
}

.cookiesjsr-banner--info {
    margin: 0;
}

.right-side-view a img {
    width: 13px;
    height: 13px;
}

.scroll-text a {
    font-size: 12px;
}

header.site-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 99;
}

form#views-exposed-form-insights-block-1>.form-item {
    position: relative;
    width: 33%;
}

form#views-exposed-form-our-people-block-1>.form-item {
    width: 25%;
    position: relative;
}

button.tbm-submenu-toggle::after {
    position: absolute;
    content: '';
    background-image: url(/sites/default/files/inline-images/drop-down.svg);
    left: 0;
    top: -3px;
    background-position: center;
    background-size: contain;
    height: 10px;
    width: 10px;
    margin-left: 4px;
    background-repeat: no-repeat;
}

.tbm-submenu-toggle:before {
    display: none;
}

.tbm-main .tbm-nav.level-0 .tbm-item.level-1 .tbm-link-container a {
    padding: 40px 0;
}

.tbm-submenu {
    opacity: 0 !important;
    display: block !important;
    visibility: hidden !important;
}

.header-main li:hover .tbm-submenu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
}

.tbm-link-container {
    align-items: center !important;
}

.footer-list img {
    max-width: 172px;
    height: auto;
}

.about-hero p {
    max-width: 600px;
}

.last-head-analis .Content-head h2 {
    margin-top: 20px;
}

.discover-head h2 {
    margin-top: 20px !important;
}

.main-expert-outer h3 {
    margin: 0;
    line-height: 25px;
}

.main-expert-outer {
    align-items: flex-start;
    gap: 15px;
}

.areas-expertise-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.main-expert-outer .areas-expertise-thumb {
    margin-top: 6px;
}

.content-Head h1 {
    text-transform: capitalize;
}

.services-include {
    padding: 20px;
    background: #f2f2f2;
}

.services-include ul {
    margin: 0;
}

form#views-exposed-form-insights-block-1 select:focus {
    box-shadow: none !important;
}

a.read-more-firm svg path {
    fill: #fff;
}

.loction-detials h3 span {
    font-size: 20px;
}

.info-side img {
    height: 24px;
    width: 24px;
}

.people-role {
    font-weight: 600;
    font-size: 17px;
    font-family: 'Montserrat';
}

/* a.linked-in-icon {
    display: block;
} */

a.linked-in-icon img {
    height: 30px;
}

.people-function {
    margin-top: 3px;
    margin-bottom: 6px;
    color: #000;
    font-size: 16px;
    font-family: 'Montserrat';
}

.people-location {
    margin-bottom: 10px;
    color: #000;
    font-size: 14px;
    font-family: 'Montserrat';
}

a.view-bio {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 7px;
    padding: 7px 10px;
    background: #8B0A0A;
    width: fit-content;
    border-radius: 6px 0;
    border: 1px solid #8b0a0a;
    transition: 0.4s;
}

a.view-bio:hover {
    background: transparent;
    color: #8b0a0a;
}

a.view-bio:hover svg path {
    fill: #8b0a0a;
}

a.view-bio svg path {
    transition: 0.4s;
}

.peopele-row {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.form-text {
    width: 100% !important;
}

section.key-strenghts.Notable-Experi p:last-child {
    margin: 0;
}

section.About-people p.roleee {
    margin: 5px 0 0;
    font-weight: 600;
    font-size: 18px;
}

svg.home-svg {
    height: 20px;
    width: 20px;
}

svg.item-svg {
    height: 10px;
    width: 18px;
}

.firm-updates .breadcrum li:last-child a svg {
    display: none;
}

.fu-thumb {
    position: relative;
}

h5.cat_ins {
    position: absolute;
    top: 24px;
    background: #fff;
    padding: 6px 10px;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Montserrat';
    text-transform: capitalize;
    border-radius: 0 10px 10px 0;
}

form#views-exposed-form-our-people-block-1 .form-actions.js-form-wrapper.form-wrapper {
    display: flex;
    gap: 10px;
}

div#block-bissessur-views-block-expert-analysis-blog-block-1 {
    display: block;
    background: #E6E3F94D;
    padding: 0 0 80px 0;
}

form#views-exposed-form-our-people-block-1 select:focus {
    box-shadow: none !important;
}

div#block-bissessur-views-block-location-block-1 {
    display: block;
    background: #FAFAFA;
    padding: 0 0 80px 0;
}

div#block-bissessur-views-block-location-block-1>div {
    max-width: 1340px;
    margin: auto;
    padding: 0 20px;
}

.map-row .map-col {
    width: calc(50% - 13px) !important;
    position: relative;
}

.info-side p:empty {
    display: none;
}

.contect-outer {
    display: flex;
    gap: 18px;
    font-size: 14px;
    color: #000;
    align-items: center;
}

.map-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.loction-detials h3 a {
    font-size: 24px;
    margin: 15px 0 20px 0;
    color: #000;
    font-family: 'Libre Baskerville';
}

div#block-bissessur-loctionabout {
    background: #fafafa;
    padding: 80px 0 40px;
}

section.loction-head h2 {
    margin: 0;
}

.info-data-loc p:empty {
    margin: 0;
}

section.map-conteact {
    padding: 80px 0;
}

.map-outer-main p iframe {
    width: 100%;
    height: 500px;
}

section.map-conteact .d-flex {
    gap: 0;
    align-items: center;
    background: #f0f7fa;
}

.map-inner-out {
    width: 50%;
    background: #f0f7fa;
    height: 100%;
}

.map-outer-main p {
    margin: 0;
}

.map-outer-main {
    height: 500px;
}

.contact-info-main {
    padding: 50px;
}

.info-data-loc span {
    font-weight: 600;
    font-family: 'Montserrat';
    font-size: 18px;
}

h3.title-main {
    margin-bottom: 18px !important;
}

section#Contacts .people-role {
    color: #fff;
}

section.key-contects.loc-main-detail .Content-head h2 {
    color: #000;
}

section.key-contects.loc-main-detail {
    background: #f2f2f2;
}

section.key-contects.loc-main-detail .people-inner h4 {
    color: #000;
}

section.key-contects.loc-main-detail .people-inner p {
    color: #000;
}

section.key-contects.loc-main-detail .people-role {
    color: #000 !important;
    text-transform: capitalize;
}

.regional-focus .box-outer a {
    margin: 0 !important;
}

section#expertise .box-outer a {
    margin: 0;
}


div#block-bissessur-views-block-expert-analysis-blog-block-1>div {
    max-width: 1340px;
    margin: auto;
    padding: 0 20px;
}

div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row {
    display: grid !important;
    grid-template-columns: 68% 30%;
    /* grid-template-rows: 1fr 1fr; */
    gap: 30px;
    width: 100%;
}

div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row .views-col:first-child {
    grid-column: 1;
    grid-row: 1 / 3;
    height: 570px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 100% !important;
}

div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row .views-col:first-child .expert-analysis::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35.68%, #000000 84.85%);
    border-radius: 10px;
}

div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row .views-col:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    width: 100% !important;
}

div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row .views-col:nth-child(2) img {
    height: 130px;
}

div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row .views-col:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    width: 100% !important;
}

div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row .views-col:nth-child(3) img {
    height: 130px;
}

div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row .views-col:first-child .expert-analysis {
    height: 100%;
    position: relative;
}

div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row .views-col:first-child .expert-analysis .expert-image {
    height: 100%;
}

div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row .views-col:first-child .expert-analysis .expert-image img {
    height: 100%;
}

div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row .views-col .expert-analysis .expert-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: .4s;
}

div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row .views-col:first-child .expert-content {
    position: absolute;
    bottom: 0;
    z-index: 9;
    padding: 20px;
}


div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row .views-col:first-child p,
div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row .views-col:first-child h3 a,
div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row .views-col:first-child a,
div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row .views-col:first-child a svg path {
    color: #fff !important;
    fill: #fff;
}

div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row .views-col .expert-content h3 {
    line-height: normal;
    margin: 0;
}

div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row .views-col .expert-content h3 a {
    font-family: Libre Baskerville;
    font-weight: 400;
    font-size: 18px;
    line-height: 11px;
    color: #111111;
    text-decoration: none;
}

div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row .views-col:nth-child(2) p.expert-desc {
    display: none;
}

div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row .views-col:nth-child(3) p.expert-desc {
    display: none;
}

div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row .views-col .expert-content p.expert-date {
    margin: 15px 0 0px;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
}

div#block-bissessur-views-block-expert-analysis-block-1>div>div .views-row:first-child .expert-analysis:hover .expert-image img {
    transform: scale(1.1);
}

button.mail-btn {
    background: transparent;
    border: 0;
    padding: 0;
    line-height: 1;
}

.phone {
    line-height: 1;
}

button.mail-btn img {
    height: 17px;
    width: 13px;
}

section.Privacy-info.new-home {
    background: #E6E3F94D;
}

section#expertise .box-outer.sector-ind-detail a {
    margin: 20px;
}

.box-outer.sector-ind-detail {
    display: flex;
    /* justify-content: space-between; */
}

.box-outer.focus-detail {
    justify-content: space-between;
}

.role_div {
    font-weight: 600;
    font-size: 18px;
    font-family: 'Montserrat';
    color: #fff;
}

.crt_date {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.crt_date span {
    color: #fff;
    font-family: Montserrat;
}

.crt_date .cat_val {
    background: #9d0b0e;
    padding: 4px 17px;
    border-radius: 37px;
    text-transform: capitalize;
}

.accordion-collapse p a {
    color: #9d0b0e;
}

form#views-exposed-form-insights-block-1 .form-actions.js-form-wrapper.form-wrapper {
    display: flex;
    gap: 10px;
}

div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row.clearfix.row-1::after {
    display: none;
}

section#dic-about h2 {
    margin-bottom: 30px;
}

.tbm-block ul li a:hover {
    color: #9d0b0e;
}

footer.site-footer ul li a:hover {
    color: #9d0b0e;
}

.breadcrum span.current {
    text-transform: capitalize;
    display: inline-block;
    width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.breadcrum li:last-child a {
    text-transform: capitalize;
    display: inline-block;
    width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.breadcrum li {
    line-height: 1 !important;
}

ul.js-pager__items.pager {
    list-style: none;
}

ul.js-pager__items.pager li {
    display: flex;
    justify-content: center;
}

ul.js-pager__items.pager li a.button {
    background: var(--blue-bg);
    color: var(--white-text);
    border: 1px solid #002B5B;
    text-decoration: none;
    padding: 11px 29px;
    border-radius: 10px 0;
}

form#views-exposed-form-our-people-block-1>.form-item summary {
    list-style: none;
    position: relative;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    box-shadow: none !important;
}

form#views-exposed-form-our-people-block-1>.form-item summary::after {
    position: absolute;
    content: '';
    height: 10px;
    width: 10px;
    right: 0;
    top: 50%;
    border: 1px solid #000;
    border-top: none;
    border-left: 0;
    transform: translateY(-50%) rotate(45deg);
}


form#views-exposed-form-our-people-block-1>.form-item .bef-checkboxes.form-checkboxes .form-type-checkbox {
    display: flex;
    align-items: self-start;
    gap: 5px;
    margin-bottom: 14px;
}

form#views-exposed-form-our-people-block-1>.form-item .bef-checkboxes.form-checkboxes .form-type-checkbox label.option {
    margin: 0;
    line-height: 1.2;
    cursor: pointer;
}

form#views-exposed-form-our-people-block-1>.form-item .bef-checkboxes.form-checkboxes .form-type-checkbox:last-child {
    margin: 0;
}

form#views-exposed-form-our-people-block-1>.form-item .bef-checkboxes.form-checkboxes .form-type-checkbox input {
    accent-color: #9d0b0e;
    height: 16px;
    min-width: 16px;
}


form#views-exposed-form-insights-block-1>.form-item summary {
    list-style: none;
    position: relative;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    box-shadow: none !important;
}

form#views-exposed-form-insights-block-1>.form-item summary::after {
    position: absolute;
    content: '';
    height: 10px;
    width: 10px;
    right: 0;
    top: 50%;
    border: 1px solid #000;
    border-top: none;
    border-left: 0;
    transform: translateY(-50%) rotate(45deg);
}


form#views-exposed-form-insights-block-1>.form-item .bef-checkboxes.form-checkboxes .form-type-checkbox {
    display: flex;
    align-items: self-start;
    gap: 5px;
    margin-bottom: 14px;
}

form#views-exposed-form-insights-block-1>.form-item .bef-checkboxes.form-checkboxes .form-type-checkbox label.option {
    margin: 0;
    line-height: 1.2;
    cursor: pointer;
}

form#views-exposed-form-insights-block-1>.form-item .bef-checkboxes.form-checkboxes .form-type-checkbox:last-child {
    margin: 0;
}

form#views-exposed-form-insights-block-1>.form-item .bef-checkboxes.form-checkboxes .form-type-checkbox input {
    accent-color: #9d0b0e;
    height: 16px;
    min-width: 16px;
}



form#views-exposed-form-insights-block-1>.form-item .bef-checkboxes.form-checkboxes {
    background: #fff;
    position: absolute;
    width: 100%;
    z-index: 1;
    padding: 10px;
    border-radius: 4px;
    margin: 0;
    box-shadow: 0 4px 4px 0 #cccccc40;
    border: 1px solid #00000085;
}


/* new css  */
p:empty {
    margin: 0 !important;
}

section#Analysis .blue-btn {
    background: #8b0a0a;
    border: 1px solid #8b0a0a;
}

section#Analysis .blue-btn:hover {
    color: #fff;
}

.service-detail-outre p {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 30px;
    color: #000;
}

.services-include li {
    font-family: Montserrat !important;
    font-weight: 500 !important;
    font-size: 14px;
    line-height: 30px !important;
    color: #000;
}

div#tca.content-tba-inner p {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 30px;
}

div#tca.content-tba-inner li {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 30px;
}

a.linked-in-icon {
    position: absolute;
    right: 0;
    margin-top: 25px;
}

.subscribe button#newsletterbutton {
    background: #8B0A0A;
    border: 0;
    max-width: 215px;
    height: 40px;
    border-radius: 10px 0px 10px 0;
    color: var(--white-text);
    font-family: Montserrat;
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
    border: 1px solid #8B0A0A;
    transition: .4s;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.subscribe button#newsletterbutton:hover {
    background: transparent;
    border-color: #fff;
}

/* Pop Up Newsletter  */


.spb_center {
    margin-top: 0px !important;
    transform: translate(-50%, -50%);
}

.spb-popup-main-wrapper {
    position: fixed;
    padding: 20px !important;
    border: none !important;
    z-index: 999999;
    background-color: #fff !important;
    border-radius: 8px;
    margin: 0 !important;
}

.webform-submission-form label {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    display: block;
    margin-bottom: 3px;
}

.webform-submission-form label input {
    width: 100% !important;
}

.webform-submission-form input,
.webform-submission-form select,
.webform-submission-form textarea {
    width: 100%;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #cccccc;
    margin-bottom: 15px;
    color: #000;
    box-shadow: none !important;
    font-family: 'Montserrat';
    font-size: 16px;
    outline: none;
    padding: 10px;
    line-height: 1.1em;
}

.webform-submission-form input#edit-submit--2 {
    background: #8B0A0A;
    color: #fff;
    line-height: 1;
    width: 100%;
    border-radius: 10px 0px 10px 0;
    max-width: 200px;
    margin: 0;
}

.webform-submission-form div#edit-actions--2 {
    justify-content: center;
    display: flex;
}

.webform-submission-form fieldset.webform-composite-hidden-title {
    margin-top: 0;
    margin-bottom: 0;
}

.webform-submission-form fieldset.webform-composite-hidden-title {
    margin-top: 0;
    margin-bottom: 0;
}

.webform-submission-form .form-item-privacy-consent {
    display: flex;
    gap: 7px;
    align-items: center;
}

.webform-submission-form input#edit-privacy-consent {
    height: 18px;
    width: 18px;
    margin: 0;
}

.spb_close {
    border: 1px solid;
    margin: 0px;
    padding: 0;
    color: #fff;
    display: flex;
    background: #8b0a0a;
    position: absolute;
    right: -8px;
    top: -21px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-size: 0;
    height: 30px;
    width: 30px;
}

input#edit-submit--3 {
    background: #8B0A0A;
    color: #fff;
    line-height: 1;
    width: 100%;
    border-radius: 10px 0px 10px 0;
    max-width: 200px;
    margin: 0;
}

div#edit-actions--3 {
    display: flex;
    justify-content: center;
}

p.short-disc-people {
    margin: 0;
    color: var(--dark-text);
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin-top: 10px;
}

div#article-content h2 {
    scroll-margin-top: 100px;
}

#block-bissessur-webform-contact-form-email {
    display: none;
}

div#form_email_head_popup img {
    height: 13px;
    width: 13px;
    cursor: pointer;
}

div#form_email_head_popup {
    line-height: 0 !important;
}

div#edit-markup p {
    font-size: 14px;
    line-height: 22px;
    margin: 0;
}

div#edit-markup p {
    font-size: 14px;
    line-height: 22px;
    margin: 0;
}

.webform-submission-form .form-item-privacy-consent label.option.js-form-required.form-required {
    font-size: 14px;
    margin: 0;
    line-height: 1;
}

.webform-submission-form .form-item-privacy-consent a {
    color: #8b0a0a;
    font-size: 14px;
}

#spb-block-bissessur-webform-contact-form-email .spb-popup-main-wrapper.spb_center {
    height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
}

#spb-block-bissessur-webform-contact-form-email .spb_close {
    right: 3px;
    top: -13px;
}

.inner-profile li {
    font-family: 'Montserrat';
    font-size: 14px !important;
}

#block-bissessur-webform {
    display: none;
}

div#block-bissessur-views-block-home-services-expertise-new-block-1 {
    display: block !important;
}

section#Analysis p.blog-text {
    margin: 10px 0;
    color: var(--dark-text);
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.spb_close::after {
    content: '';
    position: absolute;
    height: 15px;
    width: 2px;
    background: #fff;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}


.spb_close::before {
    content: '';
    position: absolute;
    height: 15px;
    width: 2px;
    background: #fff;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.cstm_insights-expertise {
    font-family: 'Montserrat';
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.accordion-collapse {
    padding: 10px;
}

.outer-main-ex_sec br {
    display: none;
}

.experti-left.outer-main-ex_sec {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

div#block-bissessur-webform h2 {
    color: #000;
    text-align: center;
}

div#block-bissessur-webform-contact-form-email h2 {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}

.side-content-listing {
    position: sticky;
    top: 100px;
}

div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row .views-col:first-child h3.expert-title a {
    font-size: 22px;
}

div#block-bissessur-views-block-expert-analysis-blog-block-1 .views-row .views-col:first-child h3.expert-title {
    margin: 10px 0;
}

div#block-bissessur-views-block-insights-news-block-1 {
    /* display: block; */
    padding-bottom: 80px;
}

div#block-bissessur-views-block-insights-news-block-1>div {
    max-width: 1340px;
    margin: auto;
    padding: 0 20px;
}

div#article-content p a {
    color: #9d0b0e;
}

.insign-row p.fu-desc-short {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

div#article-content h2 strong {
    font-weight: 400 !important;
}
form#search-block-form .form-submit {
    display: inline;
    background: #002b5b;
    text-align: center;
    border-color: #002b5b;
    color: #fff !important;
    border: 0;
    height: 44px;
    padding: 10px 30px;
    border-radius: 10px 0;
}
.breadcrumb-item+.breadcrumb-item::before {
    display: none;
}

ul.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    gap: 10px;
    align-items: center;
}

.breadcrumb .breadcrumb-item a {
    color: #fff;
}

/* .breadcrumb .breadcrumb-item .current {
    color: #fff;
    text-transform: capitalize;
    display: inline-block;
    width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
} */

.breadcrumb-item {
    padding: 0 !important;
    line-height: 1;
}