@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: "Inter", sans-serif;
    font-size: 14px;
}



.scrollbar::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #fff;
}

.scrollbar::-webkit-scrollbar
{
	width: 8px;
}

.scrollbar::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #00000052;
}



.text-justify {
    text-align: justify
}

.f-color {
    background-color: #1877F2;
}

.i-color {
    background: #1DA1F2;
}

.l-color {
    background-color: #0A66C2;
}

:root {
    --black: #000;
    --darkblue: #01294C;
    --lightblue: #00477F;
    --darksky: #13B8BE;
    --lightsky: #18D2D9;
    --white: #fff;
    --grey: #ABAAAA;
    --darkyellow: #F3BB03;
    --lightyellow: #FFD344;
}

.top-nav {
    background-color: var(--darkblue);
    padding: 9px 0;
}

.left_side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.left_side p:first-child {
    margin-right: 20px
}

.left_side p {
    color: #766e6eb3;
    margin-bottom: 0;
}

header {
    background-color: var(--white)
}

header .nav-item .nav-link {
    color: var(--black);
    padding-right: 0 !important;
    padding-left: 26px !important;
    text-transform: capitalize;
    font-weight: 500;
}

.logo img {
    max-height: 50px;
    width: 100%;
}

.navbar-nav .dropdown-menu {
    --bs-dropdown-min-width: 19rem !important;
    padding: 10px 15px;
    transform: translateX(-50%);
    left: 50%;
    background-color: var(--white);
    top: 52px;
    box-shadow: 0px 4px 4px 0px #00000061;
    border: 0;
    border-top: 1px solid var(--darkblue);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.sub_menu {
    padding: 0;
    list-style: none;
}

.sub_menu li {
    margin: 6px 0;
}

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

.sub_menu li a {
    font-size: 14px;
    color: #000;
    text-decoration: none;
    transition: .3s linear;
    width: 100%;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 5px;
}

.sub_menu li a:hover {
    background-color: #cccccc73;
}

#search-wrapper {
    display: flex;
    align-items: stretch;
    border-radius: 25px;
    background-color: #E8E8E8;
    overflow: hidden;
    max-width: 250px;
    padding: 2px 6px;
    margin-right: 20px;

    button {
        border: none;
        background: transparent;
    }
}

#search {
    border: none;
    background-color: #E8E8E8;
    width: 250px;
}

#search:focus {
    outline: none;
}

.search-icon {
    margin: 10px;
    color: rgba(0, 0, 0, 0.564);
}

#search-button {
    border: none;
    cursor: pointer;
    color: #fff;
    background-color: #1dbf73;
    padding: 0px 10px;
}

.contact_btn {
    border-radius: 10px;
    background-color: var(--lightsky);
    color: #fff;
    padding: 6px 16px;
    font-size: 14px;
}

.contact_btn:hover {
    background-color: var(--darksky);
    color: #fff;
}


.hero_sec {
    padding: 32px 0;
    background-image: url('https://d2zw4n2v8slk10.cloudfront.net/s3-uploads/static/home-banner.webp');
    background-size: cover;
    background-position: center;
    width: 100%;
    background-repeat: no-repeat;

}

.banner_content {
    max-width: 606px;
}

.main_head {
    font-size: 40px;
    font-weight: 600;
}

#home_slider.owl-carousel.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
}

.common_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    font-size: 18px;
    text-decoration: none;
    background-color: var(--lightsky);
    color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.common_btn span {
    display: flex;
    align-items: center;
}

.common_btn:hover {
    background-color: var(--darksky);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.industry_box {
    background-color: #fff;
    padding: 20px 7px;
    border-radius: 20px;
    text-align: center;
    /* margin-bottom: 20px; */
    transition: all 0.2s linear;
    height: calc(100% - 0px);
    width: 100%;
    display: block;
    color: #141519;
    text-decoration: none;
    box-shadow: 0px 0px 9.4px #00000024;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--lightsky);
}

.bg_grey {
    background-color: #E8E8E8;
}

.industry_box:hover {
    background-color: var(--darkblue);
    color: #fff;
}

.industry_box p {
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 20px;
    font-size: 13px;
}

.industry_box img {
    margin: auto;
}

.industry_box img:nth-child(2) {
    display: none;
}

.industry_box:hover img:nth-child(1) {
    display: none;
}

.industry_box:hover img:nth-child(2) {
    display: block;
}





.consulting_cont {
    background-color: var(--darkblue);
    padding: 22px;
    border-radius: 20px;
}

.consulting_data {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 10px;
    text-decoration: none;
    border-radius: 10px;

}

.consulting_data:hover span {
    color: var(--lightsky);
}

.consulting_data:hover {
    background-color: #ffffff33;
}

.consulting_data p {
    font-size: 13px;
}


.consulting_box {
    background-color: var(--lightblue);
    padding: 20px;
    border-radius: 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.hr_line {
    color: #C0C0C0;
    width: 57%;
    margin: auto;
    border-width: 2px;
}






.latest_insight {
    background-color: var(--darkblue);
    padding: 40px;
    border-radius: 20px;
}

.latest_insight_box {
    text-decoration: none;
    padding: 9px;
    display: inline-block;
    width: 100%;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: 0.3s linear;
    height: 100%;
}

.latest_insight_box:hover {
    border: 2px solid #fff;
}

.latest_insight_box:hover .latest_insight_img img {
    transform: scale(1.1);
    transition: 0.3s linear;
}

.latest_insight_img {
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
}

.latest_insight_img img {
    aspect-ratio: 19/16;
    width: 100%;
    object-fit: cover;
}

.latest_insight_box p:nth-child(2) {
    font-weight: 600;
}

.latest_insight_box p:last-child {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-align: justify;
}






.client-logo {
    position: relative;
    filter: grayscale(1);
    transition: .1s linear;
    cursor: pointer;
    background-color: #fff;
    margin: 20px 10px;
    border-radius: 10px;
}

.client-logo:hover {
    filter: grayscale(0);
}





.testimonial_sec {
    position: relative;
}

.testimonial_sec::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 236px;
    background-color: var(--lightblue);
    top: 60%;
    z-index: -1;
}

#testimonial_slider {
    padding: 28px 0 0 0;
    overflow: hidden;
}

#testimonial_slider .owl-stage-outer {
    overflow: visible !important;
}

#testimonial_slider .owl-stage {
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

#testimonial_slider .owl-item {
    transform: scale(0.85);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}


.testimonial_box {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    /* max-width: 350px; */
    transition: all 0.3s ease-in-out;
}


#testimonial_slider .owl-item.active.center .testimonial_box {
    transform: scale(1.3);
}

#testimonial_slider.owl-theme .owl-nav [class*=owl-] {
    width: 30px;
    height: 30px;
    background-color: var(--grey);
    border-radius: 50%;
    position: absolute;
    color: #fff;
}

#testimonial_slider.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: var(--darksky);
}

#testimonial_slider.owl-carousel .owl-nav button.owl-prev {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

#testimonial_slider.owl-theme .owl-nav [class*=owl-] span {
    font-size: 34px;
    line-height: 25px;
}

#testimonial_slider.owl-carousel .owl-nav button.owl-next {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.testimonial_img img {
    width: 70px !important;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 15px;
}

.testimonial_box .desig {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial_box .company {
    position: relative;
}

.testimonial_box .company::after {
    content: "";
    position: absolute;
    width: 52px;
    height: 3px;
    background-color: var(--darkblue);
    bottom: -10px;
    transform: translateX(-50%);
    left: 50%;
}

.testimonial_box .company,
.testimonial_box .review {
    color: #616162;
}




.breadcrumb_bg {
    background-color: #F2F1F1;
}

.breadcrumb-item a {
    text-decoration: none;
    color: var(--darkblue);
    font-weight: 600;
}

.banner {
    background-size: cover;
    height: 225px;
    background-position: 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner span {
    color: var(--lightsky);
}

.about_banner {
    background-image: url('https://d2zw4n2v8slk10.cloudfront.net/s3-uploads/static/about-banner.webp');
}

.mx-512 {
    max-width: 512px;
}

.mx-467 {
    max-width: 467px;
}

.mx-500 {
    max-width: 500px;
}

.mx-540 {
    max-width: 660px;
}

.vision_box {
    background-color: var(--lightblue);
    height: 100%;
    padding: 20px;
}

.borders {
    border-radius: 10px;
    overflow: hidden;
    min-height: 156px;
}









.blog_sec {
    padding: 60px 0
}

.blog_content {
    box-shadow: 3px 4px 12px -4px #000;
    border-radius: 14px;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    height: calc(100% - 21px);
    background: white;
}

.blog_content .blog_text {
    padding: 7px 17px 0 17px
}

.blog_content:hover .blog_img img {
    transform: scale(1.5)
}

.latest_date {
    color: var(--darkblue);
    font-weight: 600;
}

.blog_content:hover .latest_date {
    color: var(--lightsky);
}

.blog_content .blog_head {
    text-decoration: none;
    color: #000;
    margin: 6px 0;
    display: inline-block;
    font-weight: 600;
    font-size: 19px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.blog_img {
    overflow: hidden;
    display: inline-block;
    width: 100%
}

.blog_img img {
    height: 208px;
    width: 100%;
    transition: .4s linear;
    object-fit: cover;
}

.blog_content p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-align: justify
}



.privacy_policy {
    background-image: url('https://d2zw4n2v8slk10.cloudfront.net/s3-uploads/static/privacy-policy.webp');
}

.sub_title {
    font-size: 20px;
    font-weight: 600;
}

.terncondition_banner {
    background-image: url('https://d2zw4n2v8slk10.cloudfront.net/s3-uploads/static/terms-conditions.webp');
}





.contact_banner {
    background-color: var(--lightblue);
    padding: 30px 0;
}

.contact_form {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    max-width: 830px;
}

.contact_form .form-control {
    border-radius: 10px;
    border: 1px solid #616162;
    padding: 7px 15px;
    height: 48px;
}

.contact_form input::placeholder {
    font-size: 14px;
}

.contact_form h1 {
    font-size: 20px;
    font-weight: 600;
}

.contact-form-info {
    display: flex;
    align-items: center;
}

.contact_head {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.contact-call-icons {
    background-color: var(--skyblue);
    color: #fff;
    margin-right: 14px;
    width: 9%;
    display: flex;
}

.contact-call-info {
    width: 90%;
}

.contact-call-info p {
    color: #C0C0C0;
}

.contact-call-info a {
    color: #C0C0C0;
    text-decoration: none;
}

.contact-call-icons i {
    color: #00ACBF;
}

ul.social_media_icons {
    padding-left: 0;
    list-style: none;
    display: flex;
}

ul.social_media_icons li a {
    text-decoration: none;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
}


.sample_form {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    max-width: 830px;
}

.sample_form .form-control {
    border-radius: 10px;
    border: 1px solid #616162;
    padding: 7px 15px;
    height: 42px;
}

.sample_form input::placeholder {
    font-size: 14px;
}

.sample_form h1 {
    font-size: 20px;
    font-weight: 600;
}

.sample_form select {
    font-size: 14px;
    color: #595c5f;
}

.sample_form textarea {
    font-size: 14px;
}


.report-container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}


.latest_report_sec {
    padding: 30px 0;
    background: #eeeeee4d;
}

.latest_report_outer {
    padding: 25px;
    box-shadow: 0px 0px 9px 0 #0000003d;
    border-radius: 20px;
    color: inherit;
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
    width: 100%;
}

.latest_report_outer:hover {
    color: #fff;
    background-color: var(--darkblue);
}

.latest_report_outer:hover .fw-sbold {
    color: var(--darksky);
}

.white2theme-linkbox .fw-sbold {
    color: var(--lightblue);
}

.search_by_sectors.sticky-top {
    top: 86px;
    z-index: 11;
    margin-bottom: 20px;
}

.sticky-top {
    top: -1px;
}

.contact-side-info {
    display: flex;
}

.contact_side_head {
    font-size: 18px;
    font-weight: 600;
    color: var(--darkblue);
}

.contact-side-icons {
    background-color: var(--skyblue);
    color: #fff;
    margin-right: 14px;
    width: 9%;
    display: flex;
}

.contact-side-info {
    width: 90%;
}

.contact-side-info p {}

.contact-side-info a {
    color: #000;
    text-decoration: none;
}

.contact-side-icons i {
    color: #00ACBF;
}

.search_by_sectors {
    box-shadow: 0px 0px 9px 0px #00000042;
    border-radius: 20px;
    overflow: hidden;
}

.industriy_search {
    padding: 18px;
    background-color: var(--darkblue);
}

.industriy_search h2 {
    font-size: 25px;
    color: var(--lightsky);
}

.content_side_content {
    background: #fff;
    padding: 30px;

}

.indus_category {
    padding-left: 15px;
}

.indus_category li {
    margin-bottom: 12px;
}

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

.indus_category li::marker {
    color: #fff;
}

.indus_category li a {
    color: #fff;
    text-decoration: none;
}

.pagination {
    justify-content: center;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.pagination li {}









.pricing-card {
    border: 1px solid var(--lightblue);
    border-radius: 10px;
    text-align: center;
    transition: 0.5s linear;
    overflow: hidden;
}

.pricing-card:hover {
    /* transform: scale(1.05); */
    background-color: var(--lightblue);
    color: #fff;
}

.pricing-card:hover .plan_price {
    transform: translateY(-10px);
    transition: 0.4s linear;
}

.featured {
    /* transform: scale(1.1); */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pricing-card h3 {
    background-color: var(--lightblue);
    padding: 15px;
    font-size: 20px;
}

.pricing_inner {
    padding: 20px 30px;
}

.buy_plan {
    padding: 9px 25px;
    background-color: var(--lightsky);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border-radius: 5px;
    border: none;
}

.buy_plan:hover {
    background-color: var(--darksky);
}

.pricing-card ul {
    text-align: left;
    padding-left: 0.8rem;
}

#blinking-button {
    animation: blink 1.3s linear infinite;
}

@keyframes blink {
    0% {
        background-color: var(--lightsky);
    }

    100% {
        background-color: var(--darksky);
    }
}


.cart_sec {
    background-color: var(--lightblue);
}

.cart_outer {
    background-color: #F2F1F1;
    padding: 20px;
    border-radius: 10px;
}




.blog_banner {
    background-image: url('https://d2zw4n2v8slk10.cloudfront.net/s3-uploads/static/blog-banner1.webp');
}

.blog_detail_banner {
    background-image: url('https://d2zw4n2v8slk10.cloudfront.net/s3-uploads/static/blog-banner.webp');
}

.blog_detail_sec {
    background-color: #D9D9D9;
}

.blog_detail_left {
    background-color: #fff;
    padding: 25px;
    box-shadow: 0px 10px 12px 0px #00000026;

    img {
        width: 100%;
        height: 450px;
        object-fit: cover;
    }
}

.blog_detail_left h2 {
    font-size: 20px;
    font-weight: 600;
}

.blog_detail_left p {
    text-align: justify;
}













/* =============== footer css start ================ */

footer {
    background-color: var(--black);
    padding: 40px 0 20px 0px;
    border-bottom: 1px solid #fff;
}

.footer_content {}

.bottom_footer {
    background-color: var(--black);
}

.footer_head {
    font-size: 20px;
    color: var(--white)
}

.footer_links {
    padding-left: 0;
    list-style: none;
}

.footer_links li {
    margin-bottom: 5px;
}

.footer_links li a {
    color: #C0C0C0;
    text-decoration: none;
}



.contact-info {
    display: flex;
}

.call-icons {
    background-color: var(--skyblue);
    color: #fff;
    margin-right: 14px;
    width: 9%;
}

.call-info {
    width: 90%;
}

.call-info p {
    color: #C0C0C0;
}

.call-info a {
    color: #C0C0C0;
    text-decoration: none;
}

.call-icons i {
    color: #00ACBF;
}

ul.social_media {
    padding-left: 0;
    list-style: none;
    display: flex;
}

ul.social_media li a {
    text-decoration: none;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
}




/*================================== new css atttach ====================================> */


/* industry page css */

.banner_contents {
    /* width: 100%; */

    span {
        font-size: 20px;
    }
}

.cont_info {
    h5 {
        font-size: 20px;
        font-weight: 600;
    }

    p {
        margin-top: 20px;
        font-size: 15px;

        #toggleButton {
            color: var(--lightblue);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
        }
    }
}

/* side navbar */
.sear_industy_nav {
    position: sticky;
    top: 80px;
    z-index: 2;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
    margin: 0px;
    /* margin-left: 10px; */
    background-color: var(--white);

    .search_bar {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 18px;
        background-color: var(--lightblue);
        border-radius: 10px 10px 0px 0px;
        box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);

        button {
            border: none;
            background: transparent;
        }

        #search-wrapper1 {
            text-align: center;
            padding: 8px 15px;
            margin-right: 0px;
            background-color: #F2F1F1;
            display: flex;
            align-items: stretch;
            border-radius: 25px;
            overflow: hidden;

            input {
                background-color: #F2F1F1;
            }
        }


    }






    .sector {
        padding: 0px;

        h6 {
            font-size: 20px;
            margin-left: 10px;
        }

        ul {
            margin: 0px;
            padding: 0px;

            li {
                background-color: var(--lightgray);
                list-style-type: none;
                margin-left: 0px;
                padding: 5px 10px;
                border-radius: 0px;
                font-size: 15px;
                transition: all .2s linear;
                align-items: center;
                border: 1px solid #bebbbb;

                i{
                    font-size: 14px;
                }

                a {
                    color: var(--black);
                    text-decoration: none;
                    display: block;
                    transition: all .2s linear;
                    font-weight: 600;
                }

                &:hover {
                    background: #f2eeee;

                    a {
                        color: #1b90fc;
                        font-weight: 600;
                    }

                    i {
                        color: #1b90fc;
                    }
                }
            }
        }

        hr {
            margin-bottom: 0px;
        }

        .dot {
            height: 15px;
            width: 15px;
            background-color: #010101;
            border-radius: 50%;
            display: inline-block;
        }

    }

    .proof {
        padding: 5px 15px;
        margin-top: 10px;

        h6 {
            font-size: 14px;

        }
    }




}

.jump_content{
    .sector{
        max-height: 211px;
        overflow-y: auto;
    }
}

.research_link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

/* main box of industry */
.research_publiser {
    margin-bottom: 20px;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 15px;
    transition: all .2s linear;
    background-color: var(--white);

    a {
        color: initial;
        text-decoration: none;
    }

    p {
        font-size: 15px;
        text-align: justify;
    }

    .reacher_id {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;

        p {
            font-size: 15px;
            color: #949292;
            margin: 0px;

            span {
                color: var(--lightblue);
                font-weight: 600;
            }
        }
    }

    .research_btns {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;



        .buy_btn {
            background-color: var(--darkyellow);
            animation: changeColor 2s infinite;
        }
    }

    .commbtn {
        font-size: 15px;
        color: var(--white);
        width: 180px !important;
        padding: 8px 10px;
        text-decoration: none;
        border-radius: 5px;
        display: block;
        text-align: center;
        transition: all .1s linear;
    }

    .request_btn {
        background: var(--lightsky);



        &:hover {
            background-color: var(--darksky);
            box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);

        }
    }

    &:hover {
        background-color: var(--lightblue);

        p {
            color: white;
        }

        .reacher_id p span {
            color: var(--lightsky);
        }
    }
}


.reportdet {
    .commbtn {
        font-size: 16px;
        color: black;
        width: 100% !important;
        padding: 7px 10px;
        text-decoration: none;
        border-radius: 2px;
        display: block;
        text-align: center;
        transition: all .1s linear;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .request_btn {
        background: #ff9f00;
        font-size: 16px;

        &:hover {
            box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25)
        }
    }
}



.flexwarp {
    flex-wrap: wrap-reverse;
}

/* animation of the reacher buy buttons */
@keyframes changeColor {
    0% {
        background-color: var(--darkyellow);
    }

    100% {
        background-color: var(--lightyellow);
    }
}



/*====================== industry details page =========================> */

.related_reports{
    h2{
        font-weight: 700;
        font-size:20px;
        line-height: 23px;
    }
}

.report_banner h1 {
    font-size: 17px;
    line-height: 26px;
    font-weight: 500;
    text-align: justify;
    color: var(--white);
}

.industry-details {
    background: var(--darkblue);
    padding: 30px 0;

    .bottom_bredcrumb {
        background-color: var(--white);
        margin: 0px 2px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 8px 15px;
        margin-top: 25px;
    }

    .bottom_bredcrumb p {
        margin: 0px;
        padding-bottom: 0px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 4px;
        font-size: 15px;
    }

    .bold_head {
        color: var(--lightblue);
        font-size: 15px;
        font-weight: 600;
    }

    .slash {
        color: #D9D9D9;
        margin-left: 13px;
    }
}

/* sidebar */
.search_bar1 {
    background-color: #f2eeee;
    padding: 5px 18px;
    border-radius: 5px 5px 0px 0px;
    /* box-shadow: 0 0 9px rgba(0, 0, 0, 0.2); */
    border: 1px solid #bebbbb;

    p {
        color: var(--lightsky);
        padding: 8px 2px;
        margin-bottom: 0px;

        .bold_head1 {
            color: black;
            font-size: 16px;
            font-weight: 700;
            line-height: 23px;
        }
    }


    .research_btns {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-direction: column;
        gap: 15px;
        padding-top: 15px;
        padding-bottom: 6px;

        .commbtn {
            font-size: 20px;
            color: var(--white);
            width: 100% !important;
            padding: 7px 10px;
            text-decoration: none;
            border-radius: 10px;
            display: block;
            text-align: center;
            transition: all .1s linear;
            font-weight: 500;
        }

        .request_btn {
            background: var(--lightsky);
            border: 2px solid var(--lightsky);

            &:hover {
                background-color: var(--darksky);
                box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
                border: 2px solid var(--darksky);
            }
        }

        .buy_btn {
            background-color: var(--darkyellow);
            animation: changeColor 2s infinite;
        }

        &:hover {
            background-color: var(--lightblue);

            p {
                color: white;
            }

            .reacher_id p span {
                color: var(--lightsky);
            }
        }
    }



}

.sector {
    ul {
        li {

            p {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                margin-bottom: 0px;

                i {
                    font-size: 7px;
                    color: var(--black);
                    margin-right: 10px;
                }
            }
        }
    }
}

.tab_buttons {

    ul {
        margin: 0px;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: flex-start;

        li {
            a {
                text-decoration: none;
                color: inherit;

                p {
                    color: var(--lightblue);
                    font-weight: 600;
                    padding-bottom: 0px;
                    margin-bottom: 0px;
                    background: var(--white);
                    display: inline-block;
                    padding: 12px 15px;
                    border-radius: 10px 10px 0px 0px;
                    border: 1px solid var(--lightblue);
                }
            }
        }
    }
}


.industry_detailss {
    .report_wrap {
        padding: 15px 25px;
        box-shadow: 0px 10px 12.7px rgba(0, 0, 0, 0.21);
        background-color: var(--white);

        .accordion-item {
            h2 {
                font-size: 17px;
                font-weight: 500 !important;
                line-height: 23px;
                margin-bottom: 0px !important;
            }
        }


        .repdetails {
            ul {
                text-align: left;
        padding-bottom: 0px !important;
        margin-bottom: 0px !important;

                li {
                    margin-bottom: 0.2rem;
                    text-align: justify;
                    margin-bottom: 10px;
                        line-height: 23px;
                        font-size: 15px;
                        color: black;
                }
            }

            ol {
                text-align: left;
        padding-bottom: 0px !important;
        margin-bottom: 0px !important;

                li {
                    margin-bottom: 0.2rem;
                    text-align: justify;
                    margin-bottom: 10px;
                        line-height: 23px;
                        font-size: 15px;
                        color:black
                }
            }

            p {
                font-size: 15px;
                line-height: 23px;
                font-weight: 400;
                text-align: justify;
            }

            table {
                background: #F8F8F8;
                margin-bottom: 1rem;

            }

            tbody,
            td,
            tfoot,
            th,
            thead,
            tr {
                border: 1px solid;
            }

            table {
                width: 100% !important;

                th,
                td {
                    /* border: 1px solid #ABAAAA; */
                    border-collapse: collapse;
                    padding: 8px 15px;
                    text-align: center !important;

                    p {
                        margin-bottom: 0px !important;
                        text-align: center !important;
                        color: black !important;
                    }
                }

                th {
                    font-size: 15px;
                    color: #000000;
                    font-weight: 500;
                    width: 32%;
                }

                td {
                    color: #616162;
                    font-size: 15px;
                }

                ul {
                    margin: 0px;
                    padding: 0px;
                    padding-left: 20px;

                    li {
                        margin-bottom: 0px;

                        p {
                            text-align: left !important;
                        }
                    }
                }
            }

            h1 {
                font-size: 17px;
           line-height: 26px;
                font-weight: 500;
            }


            h2 {
                font-size: 17px;
                font-weight: bold;
                line-height: 23px;
                margin-bottom: 1rem;
                color: #102F4C;
                strong{
                    font-weight: bold;
                }
            }

            h3 {
                font-size: 15px;
                font-weight: 700;
                line-height: 20px;
                margin-bottom: 0.5rem;
                strong{
                    font-weight: 700;
                }
            }


            h4 {
                font-size: 14px;
                font-weight: 500;
                line-height: 20px;
                margin-bottom: 0.8rem;
            }

            h5 {
                font-size: 20px;
                line-height: 24px;
                font-weight: 700;
                margin-bottom: 1.1rem;
            }


        }


        img {
            width: 100%;
        }
    }
}



/* market overview */
.market_overview {
    /* padding: 10px; */

    h4 {
        font-size: 20px;
        font-weight: 600;
        color: #24A5DF;
    }

    h5 {
        font-size: 20px;
        font-weight: 600;
    }

    h6 {
        font-weight: 600;
        font-size: 15px;
        color: var(--lightblue);
    }

    .pointse {
        font-weight: 600;
        font-size: 15px;
        color: var(--lightblue);
    }

    .buttonse {
        padding: 10px 0px;

        a {
            background: #24A5DF;
            color: white;
            padding: 10px 35px;
            border-radius: 10px;
            text-decoration: none;
            font-size: 20px;
            font-weight: 500;
            margin-left: 15px;
            transition: all .1s linear;

            &:hover {
                box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
            }
        }

    }

    div {


        p {
            font-size: 15px;
            text-align: justify;
        }
    }



    img {
        width: 100%;
    }

    .global_dynamic {

        p {
            padding-bottom: 10px;
        }
    }


}


/* <============================== faq ============================> */
.faq-section1 {
    .accordion-body ul li a {
        color: black;
        font-weight: 700;
    }
    h2{
        font-size: 17px;
        line-height: 23px;
        font-weight: bold;
        margin-bottom: 1rem;
    }

    .iconss {
        height: 100%;
    }

    .accordion-item {
        padding-bottom: 10px;
    }

    .faq-section .accordion {
        width: 100%;
    }

    .accordion-button {
        background-color: #E8E8E8;
        color: black;
        display: flex;
        align-items: center;
        justify-content: space-between;

        h5 {
            font-size: 15px;
            font-weight: 500;
            margin: 0px;
        }
    }

    .accordion-button:not(.collapsed) {
        background-color: var(--lightblue);
        color: white !important;
    }

    .accordion-button:not(.collapsed) .fa-plus {
        display: none;
    }

    .accordion-button:not(.collapsed) .fa-window-minimize {
        display: inline-block;
    }

    .accordion-button.collapsed .fa-plus {
        display: inline-block;
    }

    .accordion-button.collapsed .fa-window-minimize {
        display: none;
    }

    .accordion-button:not(.collapsed)::after {
        background-image: none;
        transform: none;
        color: white !important;
    }

    .accordion-button:focus {
        box-shadow: none;
    }

    .faq-section .accordion-button h5 {
        color: var(--white);
        margin-right: 13px;
    }

    .accordion-body {
        background-color: white;
    }

    .accordion-button::after {
        display: none;
    }

    .accordion-button {
        border-radius: 5px !important;
    }


}



.table_content_form {
    select {
        width: 100%;
        padding: .375rem .75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: var(--bs-body-color);
        background-color: var(--bs-body-bg);
        background-clip: padding-box;
        border: var(--bs-border-width) solid var(--bs-border-color);
        border-radius: var(--bs-border-radius);
        transition: border-color .15sease-in-out, box-shadow .15sease-in-out;
        max-height: 200px !important;
    }
}

.model_btn {
    color: var(--white) !important;
    background: var(--lightblue) !important;
}

.model_close {
    position: absolute;
    top: -8px;
    right: -8px;

    button {
        border: none;
        outline: none;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: var(--lightblue);
        text-align: center;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

        i {
            font-size: 18px;
            color: white;
        }
    }
}

.modal_title {
    padding: 0px 10px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: var(--lightblue);

}

.modal-header {
    background: var(--lightgray);
}



.fixed-bottom-div {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    width: 100%;
    z-index: 20;
    display: none;

    a{
        width: 50%;
        padding: 10px 15px;
        text-align: center;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        display: inline-block;
    }
}

.buy_mob_show{
    display: none !important;
}












.rlt_rp_outer {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.rlt_rp_outer img {
    display: block;
    width: 100%;
    height: auto;
}

.rlt_rp_inner {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px 10px;
    background: linear-gradient(to bottom, #00477f17 0%, #00477f 79%, #00477f 100%);
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.rlt_rp_inner p {
    font-size: 18px;
    color: #fff;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.related_report_cont {
    background-color: var(--darkblue);
    padding: 27px 25px 20px 25px;
    border-radius: 20px;
}


#related_report_slider.owl-theme .owl-nav [class*=owl-] {
    width: 30px;
    height: 30px;
    background-color: var(--white);
    border-radius: 50%;
    position: absolute;
    color: var(--black);
    margin: 0;
}

#related_report_slider.owl-theme .owl-nav [class*=owl-]:hover {
    color: var(--darksky);
}

#related_report_slider.owl-carousel .owl-nav button.owl-prev {
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
}

#related_report_slider.owl-theme .owl-nav [class*=owl-] span {
    font-size: 34px;
    line-height: 25px;
}

#related_report_slider.owl-carousel .owl-nav button.owl-next {
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
}

.kenn-shop-description {
    width: 100%;
    font-size: 17px;
    line-height: 1.8;
    padding: 14px;

    p {
        margin: 0px;
    }
}

.kenn-shop-description ol li {
    background: #f3f3f3;
    margin-top: 5px;
    padding: 8px;
}

.macroeconomic_analysis_banner {
    background-image: url('https://d2zw4n2v8slk10.cloudfront.net/s3-uploads/static/Macroeconomic-Analysis.webp');
}

.competitive-analysis-and-benchmarking-banner {
    background-image: url('https://d2zw4n2v8slk10.cloudfront.net/s3-uploads/static/Competitive-Analysis-Benchmarking.webp');
}

.customized-research-banner {
    background-image: url('https://d2zw4n2v8slk10.cloudfront.net/s3-uploads/static/CustomizedResearch.webp');
}

.environmental-social-and-governance-analysis-banner {
    background-image: url('https://d2zw4n2v8slk10.cloudfront.net/s3-uploads/static/Environmental-Social-Governance-Analysis.webp');
}

.go-to-market-strategy-india-banner {
    background-image: url('https://d2zw4n2v8slk10.cloudfront.net/s3-uploads/static/Go-to-Market-Strategy–India.webp');
}

.healthcare-pipeline-and-epidemiology-analysis-banner {
    background-image: url('https://d2zw4n2v8slk10.cloudfront.net/s3-uploads/static/Healthcare-Pipeline-Epidemiology-Analysis.webp');
}

.product-analysis-banner {
    background-image: url('https://d2zw4n2v8slk10.cloudfront.net/s3-uploads/static/Product-Analysis.webp');
}

.supply-and-demand-analysis-banner {
    background-image: url('https://d2zw4n2v8slk10.cloudfront.net/s3-uploads/static/Supply-Demand-Analysis.webp');
}

.conus_left {
    padding: 20px;
    background-color: #fff;
    border-top: 1px solid #949292;
    box-shadow: 0px 10px 12.5px 0px #00000047;
}

.conus_left p {
    text-align: justify;
}

.conus_left h2 {
    font-weight: 600;
    font-size: 25px;
}

.conus_left h3 {
    font-weight: 600;
    font-size: 20px;
    color: var(--darksky);
}

.conus_left ul li {
    text-align: justify;
    margin-bottom: 10px;
}

.cons_bg {
    background-color: #F2F1F1;
}

.Experience {
    background-color: var(--darkblue);
    padding: 20px;
}

.Experience h2 {
    font-size: 40px;
    color: #fff;
}

.Experience_value {
    background-color: #D9D9D9;
    padding: 26px 20px;
    height: 100%;
}

.hour_project {
    background: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
}

.hour_project h2 {
    font-size: 40px;
    color: var(--darkblue);
}

.blog_text .title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-weight: 600;
}

.client_btns {}

.client_btns a {
    border: 1px solid #949292;
    padding: 12px;
    text-decoration: none;
    font-weight: 600;
    color: var(--lightblue);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: var(--white);
}

.client_btns a:hover {
    background-color: var(--lightblue);
    color: var(--white);
}

.con_img img {
    height: 184px;
}

.connet_btns {
    padding: 20px 16px;
    background-color: var(--darkblue);
}

.connet_btns a {
    background-color: var(--darkyellow);
    color: #000;
    padding: 8px 8px;
    font-size: 13px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    width: 100%;
    border-radius: 5px;
    animation: changeColor 2s infinite;
}

.connet_btns a:hover {
    background-color: var(--lightyellow);
}

.thanks_banner {
    background-image: url('https://d2zw4n2v8slk10.cloudfront.net/s3-uploads/static/thanks-banner.webp');
    padding: 30px 0;
    background-size: cover;
    background-blend-mode: overlay;
    background-color: #00000030;
}

.thanks_message {
    text-align: center;
    max-width: 50%;
    margin: auto;
}





.pagination li a {
    border-radius: 10px;
    width: 45px;
    height: 45px;
    background-color: #D9D9D9;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 11px;
}

.pagination li a:hover {
    background-color: var(--darksky);
    color: #fff;
}

.pagination .pren {
    background-color: var(--darkblue);
}

.pagination .page-link {
    z-index: 3;
    border-radius: 10px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 11px;
    border: none;
}

/* pagination */

.active>.page-link,
.page-link.active {
    z-index: 3;
    border-radius: 10px;
    width: 45px;
    height: 45px;
    background-color: var(--darksky);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 11px;
    border: none;

}


.outer_loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
}

#loader {
    border: 13px solid #f3f3f3;
    border-radius: 50%;
    border-top: 13px solid var(--darksky);
    width: 80px;
    height: 80px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
    display: none;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#client_logo_slider {
    .owl-nav {
        display: none !important;
    }
}


.cart-table {
    table {
        width: 100%;

        td {
            width: 100%;
        }
    }
}



.blog_sidebar {
    padding: 15px 15px;
    background-color: var(--white);
    border-radius: 10px;
    position: sticky;
    top: 100px;



}

.blog_sidebar h5 {
    color: var(--lightblue);
    font-weight: 600;
}

.modify_content {
    display: flex;
    justify-content: center;
    color: #000;
    text-decoration: none;
    border: 1px solid #C0C0C0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 9px;

    img {
        aspect-ratio: 19/14;
        width: 100%;
    }
}

.modify_content:hover p {
    background-color: #C0C0C0;
}

.modify_content:hover .blg_img img {
    transform: scale(1.1);
    transition: 0.3s linear;
}

.modify_content .blg_img {
    width: 36%;
    overflow: hidden;
}

.modify_content .blg_img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.modify_content p {
    width: 64%;
    padding: 6px 10px;
    font-size: 12px;
    background-color: #fff;
    font-weight: 500;
}

.proof h6 {
    font-size: 15px;
    color: var(--lightblue);
    font-weight: 600;
    text-align: center;
}

.reportdetails-btn {
    a {
        padding: 7px;
        width: 100%;
    }
}

.buynow-btn {
    background: #e97777;
    border-color: #e97777;
    color: #fff;
    width: 100%
}

.buynow-btn a {
    text-decoration: none;
    color: #fff
}

.buynow-btn:hover {
    background-color: #d05858;
    border-color: transparent;
    color: #fff
}

.relateheading {
    font-size: 20px;
    font-weight: 600;
}


a.request_sample_btn {
    background: #00477F;
    color: white;
    border-color: #00477F;
    padding: 7px 18px;
    text-decoration: none
}

.report_content {
    padding: 22px 20px;
    background: rgb(255, 255, 255, 0.1)
}

.banner_btns {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.request-btsss {
    background: #ff9f00 !important;
    border: 1px solid #ff9f00;
    font-weight: bold;
    font-size: 14px;
    color: white !important;
}

.request-btsss:hover {
    background: #ff9f00
}

.custom_btn {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px
}

.bgs_color {
    background: #00477F
}

.bgs_color:hover {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25)
}

.btn-close {
    position: absolute;
    top: 9px;
    right: 10px;
    z-index: 11;
}

.sky-color {
    background: #102f4c
}

.sky-color:hover {
    background: #054157;
    color: #fff
}

.modal-headers {
    padding: 17px 14px 0 14px
}

.modal-headers h1 i {
    font-size: 21px;
    color: #e97777
}

.modal-headers h4 {
    margin-top: 5px;
    font-size: 13px;
    text-align: center
}

.modal-body.enquiry_form {
    padding: 23px 33px
}

.enquiry_form label {
    font-weight: 500
}

.error {
    color: red;
    font-size: 13px;
}

.tankns_popups {
    height: 255px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    flex-direction: column;
    background-color: #fff
}

.tankns_popups h3 {
    font-size: 24px;
    color: #011d3f;
    font-weight: 600;
    margin-bottom: 10px
}

.tankns_popups p {
    font-size: 17px;
    margin-bottom: 0
}

.baere_btn2 {
    background: #ff9f00;
    color: white;
    border-color: #ff9f00;
    padding: 7px 12px;
    font-size: 15px;
    border-radius: 4px;
}

.baere_btn2:hover {
    background: #ff9f00 !important;
    color: white !important;
}

.baere_btn1 {
    background: #ff9f00;
    color: white;
    border-color: #ff9f00;
    padding: 7px 12px;
    font-size: 15px;
    border-radius: 4px;
}

.baere_btn1:hover {
    background: #ff9f00 !important;
    color: white !important;
}

hr{
    margin:0.8rem 0;
}



.not_found_form {
	padding: 25px 20px;
	border-radius: 5px;
	border-top: 3px solid #074c65
}

.fs-12,
.not_found_form .text-danger {
	font-size: 12px
}

.con_rfp_btn,
.fs-13,
.not_found_form select {
	font-size: 13px
}

.not_found_form input::placeholder,
.not_found_form textarea::placeholder {
	font-size: 13px
}
.bg_greys {
    background-color: #f3f3f3
}

.ordercls {
    max-width: 86%
}

.ordercls h1 {
    font-size: 48px;
    color: #074c65;
    font-weight: 700
}

.ordercls h2 {
    color: #074c65;
    font-size: 24px;
    font-weight: 600
}

.shadow-md {
    box-shadow: 0 0 10px rgba(0, 0, 0, .25)
}


.not_found_btn {
    background-color: var(--lightblue);
    padding: 5px;
    border-radius: 3px;
    outline: 0;
    border: none;
    font-weight: 600;
	padding:5px 15px;
	border-radius: 2px;
    color: white;
}

.btn:hover,
.form-select:hover,
.not_found_btn:hover {
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25)
}

.reporttableee tr td:first-child {
    font-weight: 700;
    color: black !important;
    font-size: 15px;
    width: 50%;
}
.reporttableee tr td p {
    color: black !important;
    font-size: 15px;
}


.row-shifter{
    margin-bottom: 15px;
}

.rdwhychooseus{
    h2{
        background: var(--darkblue);
        color: white;
        border-radius: 10px 10px 0px 0px;
        padding:15px 14px;
        margin-bottom: 0px;
        font-size: 17px;
        font-weight: bold;

    }
    ul{
        padding: 0px;
    }
    li{
        border: 1px solid rgb(202, 202, 202);
        border-top: none;
        list-style: none;
        padding: 10px 12px;
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 10px;
        p{
            padding: 0px;
        margin-bottom: 0px;
        font-size: 15px;
        }
        b{
            font-size: 15px;
        }
        span{
            i{
                color: var(--lightblue);
                font-size: 16px;
                padding-top: 3px;
            }
        }
    }
    li:last-child {
        border-radius: 0px 0px 10px 10px;
    }

}

.sampetitle{
    background-color: white;
    padding: 30px;
    border-radius: 10px;

    h5{
        color: rgb(33, 37, 41);
        font-size: 20px;
        font-weight: 600;
    }
    p{
        font-size: 17px;
    }
}



/* =================== new css for industry analysis =================== */


.industry_analysis_wrap{
    img{
        width: 80% !important;
        height: 430px;
        margin: auto;
        box-shadow: 0 4px 8px rgb(0 0 0 / .1), 0 8px 20px rgb(0 0 0 / .15);
    }
}
.base-table{
    thead tr th{
            background-color: #194670;
             color: #fff !important;
             width: 50% !important;
             font-weight: 700;
    }
}


.baere_btn2 {
    background: var(--lightsky);
    color: white;
    border-color: var(--lightsky);
    padding: 7px 12px;
    font-size: 15px;
    border-radius: 4px;
}

.baere_btn2:hover {
    background:var(--darksky) !important;
    color: white !important;
}

.contact_btn_bt{
    border-radius: 10px;
    background-color: var(--darkblue);
    color: #fff;
    padding: 6px 16px;
    font-size: 14px;
}

.contact_btn_bt:hover {
    background-color: var(--darkblue);
    color: #fff;
}

.industrypopup .request-btsss{
    background-color: var(--lightsky) !important;
    border: 1px solid var(--lightsky);
}

