﻿body {
    font-family: "Roboto", sans-serif;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a:focus {
    text-decoration: none;
}

.top-navigation {
    border-top: 1px solid #B9B9B9;
    position: fixed;
    top: 98px;
    left: 0;
    z-index: 99;
    width: 100%;
    background-color: #ffffff;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.top-navigation.active {
    transform: translateY(0);
    opacity: 1;
}

.top-navigation .top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
}

.top-navigation .top-nav .report-title {
    font-size: 18px;
    font-weight: 500;
    color: #24394E;
}

.top-navigation .top-nav .nav-btns {
    display: flex;
    align-items: center;
}

.top-navigation .top-nav .nav-btns a {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    border-radius: 6px;
    border: 1px solid transparent;
    background: #217B6C;
    background: linear-gradient(-90deg, rgba(33, 123, 108, 1) 0%, rgba(21, 64, 79, 1) 64%);
    padding: 5px 10px;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
    margin-left: 15px;
}

.top-navigation .top-nav .nav-btns a:hover {
    background: #ffffff;
    border: 1px solid #24394E;
    color: #217B6C;
}

.reportinfo-sec {
    margin: 15px 0 0;
}

.reportinfo-sec .info-left {
    display: flex;
       
}

.reportinfo-sec .info-left .report-image {
    max-width: 33%;
    flex: 0 0 33%;
    -ms-flex: 0 0 33%;
}

.reportinfo-sec .info-left .report-image img {
    width: 100%;
    height: auto;
}

.reportinfo-sec .info-left .report-shortinfo {
    margin: 0 0 0 30px;
}

.reportinfo-sec .info-left .report-shortinfo p {
    font-size: 14px;
    margin: 0;
    padding: 4px 0;
}

.reportinfo-sec .info-left .report-shortinfo p.price-info {
    border-bottom: 1px solid #B9B9B9;
}

.reportinfo-sec .info-left .report-shortinfo p span.report-price {
    color: #FF0000;
    font-weight: 700;
}

.line-space {
    border-bottom: 1px solid #B9B9B9;
    box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.25);
    -webkit-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.25);
    position: relative;
    z-index: 9;
}

.report-btn {
    margin: 10px 0 0;
    background: #217B6C;
    background: linear-gradient(-90deg, rgba(33, 123, 108, 1) 0%, rgba(21, 64, 79, 1) 64%);
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
    padding: 5px 10px;
}

.report-btn:hover {
   background: linear-gradient(90deg, rgba(33, 123, 108, 1) 0%, rgba(21, 64, 79, 1) 64%);
   color: #217B6C !important;
   border-radius: 6px !important;
}

.download_sample {
    padding: 6px;
}

.reportinfo-sec .info-right {
    margin: 10px 0 0;
}

.reportinfo-sec .info-right h1 {
    font-size: 24px;
    font-weight: 500;
    color: #217B6C;
    margin-bottom: 15px;
}

.reportinfo-sec .info-right h2 {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    line-height: 27px;
}

.reportinfo-sec .note-para {
    font-size: 12px;
    line-height: 20px;
    color: #FF0000;
    font-style: italic;
    margin: 5px 0 10px;
}

.tooltip_class {
    border: none;
    background: transparent;
}

/* Tooltip box */
.tooltip-inner {
  background-color: #000 !important;
  opacity: 1;
  color: #fff !important;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 6px;
}

/* Tooltip arrow (all directions) */
.tooltip.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #222 !important;
}
.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: #222 !important;
}
.tooltip.bs-tooltip-start .tooltip-arrow::before {
  border-left-color: #222 !important;
}
.tooltip.bs-tooltip-end .tooltip-arrow::before {
  border-right-color: #222 !important;
}



.report-content {
    padding: 0px 0 50px;    
}

.report-content aside {
    position: sticky;
    top: 140px;
    padding-top: 0px;
    z-index: 9;
}


.report-content aside .page-nav .nav-list {
    margin: 0;
    list-style: none;
    padding-left: 0;
}

.report-content aside .page-nav .nav-list li {
    font-weight: 600;
    font-size: 17px;    
    margin: 0;    
}

.report-content aside .page-nav .nav-list li a {
    color: #24394E;
    display: block;
    padding: 0px;
    border-radius: 10px;
}

.report-content aside .page-nav .nav-list li a:hover, .report-content aside .page-nav .nav-list li a.active-main {
    color: #217B6C;
    text-decoration: underline;
    
}

.report-content aside .page-nav .nav-list li:first-child {
    margin: 0;
}

.report-content aside .page-nav .nav-list li:first-child a {
    margin-bottom: 0px;
}

.report-content aside .page-nav .nav-list li:last-child {
    margin-bottom: 0;
}

.report-content aside .page-nav .nav-list .submenu-list {
    list-style: none;
    max-height: 170px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-right: 15px;
    padding-left: 26px;
}

.report-content aside .page-nav .nav-list .submenu-list li {
    font-size: 15px;
    margin: 0;
    color: #000000;
    font-weight: 400;
}

.report-content aside .page-nav .nav-list .submenu-list a {
    padding-left: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
}
.report-content aside .page-nav .nav-list .submenu-list a.active, .report-content aside .page-nav .nav-list .submenu-list a:hover {
    background-color: #217B6C;
    color: #ffffff;
    text-decoration: none;
}

.report-content aside .page-nav .nav-list .submenu-list a.active-main {
    color: #24394E;
    text-decoration: none;
}

.report-content aside .page-nav .nav-list .submenu-list a.active-main:hover {
    background-color: #217B6C;
    color: #ffffff;
    text-decoration: none;
}

.report-content aside .page-nav .nav-list .submenu-list a.active.active-main {
    color: #ffffff;
}

.report-content aside .btns-group {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.report-content aside .btns-group > * {
    width: 100%;
}

.report-content aside .btns-group .dropdown-toggle {
    position: relative;
    width: 100%;
    margin: 6px 0 0;
    border: 1px solid #B9B9B9;
    border-radius: 6px;
    background-color: transparent;
    color: #217B6C;
    font-size: 13px;
    padding: 5px;
    font-weight: 500;
    height: 35px;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
}

.report-content aside .btns-group .dropdown-toggle::after {
    border: 0;
    background-image: url(../images/chevron-up.png);
    position: absolute;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    content: '';
}

.report-content aside .btns-group .dropdown-toggle.show span img {
    transform: rotate(180deg);
    margin-top: 0px;
}

.report-content aside .btns-group .dropdown .dropdown-menu {
    width: 100%;
}

.report-content aside .btns-group .dropdown .dropdown-menu .dropdown-item {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
}

.report-content aside .shareai-links {
    margin: 10px 0 0;
}

.report-content aside .shareai-links p.heading-text {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 10px;
}

.report-content aside .shareai-links .share-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px 10px;
}

.report-content aside .shareai-links .share-btns a {
    width: 48%;
    flex: 0 0 48%;
    -ms-flex: 0 0 48%;
    border: 1px solid #000000;
    border-radius: 20px;
    text-align: center;
    font-size: 15px;
    line-height: 30px;
    font-weight: 700;
    color: #217B6C;
    background-color: transparent;      
}

.report-content aside .shareai-links .share-btns a:hover {
    background-color: #217B6C;
    color: #ffffff;
    border: 1px solid #217B6C;
}

.report-content aside .infograph-img {
    width: 100%;
    margin: 40px 0 0;
}

.report-content aside .infograph-img img {
    width: 100%;
    height: auto;
}

.details-right {
    background-color: #ffffff;
}

.details-right .nav-tabs {
    margin: 0;
    /* border: 2px solid #BBC8CC; */
    border: none;
    position: sticky;
    z-index: 9;
    top: 140px;
    background-color: #ffffff;
    padding-top: 7px;
    transition: opacity 0.4s ease;
    opacity: 1;    
}

.details-right .nav-tabs.fade-out {
    opacity: 0;
    pointer-events: none;
}

.details-right .nav-tabs .nav-item {
    width: 20%;
    flex: 0 0 20%;
    -ms-flex: 0 0 20%;
        
}

.details-right .nav-tabs .nav-item + .nav-item {
    border-left: none;
}

.details-right .nav-tabs .nav-item .nav-link {    
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #24394E;
    width: 100%;
    border-radius: 0;    
    border: 2px solid #BBC8CC;
    position: relative;
}



.details-right .nav-tabs .nav-item + .nav-item .nav-link {
    border-left: none;
}

.details-right .nav-tabs .nav-item .nav-link.active {
    background-color: #24394E;
    font-weight: 700;
    color: #ffffff;
    border-color: #24394E;
}

.details-right .nav-tabs .nav-item .nav-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -13px;
    transform: translateX(-50%);
    width: 30px;
    height: 13px;
    background: #24394E;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.nav-tabs-stuck .nav-link.active::after {
    display: none;
}

.details-right .tab-content {
    padding: 20px 0 0;
}

.details-right .tab-content h3 {
    font-family: "Roboto Slab", serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 26px;
    color: #217B6C;
    margin: 0;
}

.details-right .tab-content .content-area {
    background-color: #ffffff;
    border: 1px solid #BBC8CC;
    border-radius: 6px;
    padding: 15px;
    margin: 0;
}

.details-right .tab-content .content-area1 {
    padding: 0;
    margin: 0;
    background-color: #ffffff;
    border: 1px solid #BBC8CC;
    border-radius: 6px;
    padding-bottom: 15px;
}

.reporthtag {
    font-size: 18px;
}

.details-right .tab-content .content-area p {
    font-size: 16px;
    line-height: 27px;
    color: #000000;
    margin: 15px 0 5px;
}

.graphimg {
    margin-right: 15px !important;
}

.details-right .tab-content .content-area p a {
    color: #198e75;
    text-decoration: underline;
}

.details-right .tab-content .content-area #ContentPlaceHolder1_lbltoc {
    color: #3B5158;
}

.details-right .tab-content .content-area #ContentPlaceHolder1_lbltoc p {
    margin: 0;
    color: #3B5158;
}

.details-right .tab-content .content-area ul {
    margin: 10px 0 0;
    padding-left: 15px;
}

.details-right .tab-content .content-area ul span{
    font-size: 15px;
}

.details-right .tab-content .content-area ul li {
    font-size: 15px;
    line-height: 26px;
    color: #000000;
    margin: 0 0 25px;
    list-style-type: disc !important;
}

.details-right .tab-content .content-area ul.toclist {
    padding-left: 0 !important;
    color: #3B5158;
}

.details-right .tab-content .content-area ul.toclist li {
    list-style-type: none !important;
    margin: 0 !important;
    color: #3B5158;    
} 

.details-right .tab-content .content-area1 .report-title h3 {
    font-family: "Roboto", sans-serif;
}

.details-right .table-info {
    
    margin: 15px 0 0;    
}
.details-right .table {
    width: 100%;
    border-collapse: collapse;
    
  }
.details-right .table th,
.details-right .table td {    
    padding: 15px;
    text-align: left;    
    vertical-align: top;
    border: none;
    background-color: transparent;
  }

.details-right .table th {
    background-color: #217B6C;
    color: #ffffff;
    font-size: 16px;
}

.details-right .table td {
    font-size: 15px;
    line-height: 24px;
}

.details-right .table tr td:first-child {
    font-weight: 700;
    font-size: 16px;
}

.details-right .table td a {
    color:#198e75;
    text-decoration: underline;
}

.details-right .contact-cta {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #217B6C;
    background: linear-gradient(90deg, rgba(33, 123, 108, 1) 59%, rgba(36, 57, 78, 1) 99%);
    border-radius: 25px;
    margin: 4px 0;
    padding: 6px;
}

.details-right .contact-cta .left-area {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
}

.details-right .contact-cta .left-area img {
    margin-right: 10px;
    width: 35px;
}

.details-right .contact-cta .right-area a {
    border-radius: 14px;
    background-color: #ffffff;
    text-decoration: none;
    color: #217B6C;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 12px;
}

.details-right .contact-cta .right-area a:hover {
    background-color: #ffffff;
    color: #217B6C;
}

.details-right .share-btn {
    text-align: right;
}

.details-right .share-btn a {
    font-size: 14px;
    line-height: 3.7;
    padding: 8px 10px;
    font-weight: 700;
    color: #217B6C;
    border: 1px solid #217B6C;
    border-radius: 20px;   
}

.details-right .faq-sec h2 {
    font-family: "Roboto Slab", serif;
    font-weight: 700;
    font-size: 35px;
    line-height: 40px;
    color: #24394E;
    margin: 50px 0 30px;
    text-align: center;
}

.details-right .faq-sec .accordion {
    margin: 0 0 50px;
}

.details-right .faq-sec .accordion-item {
    border-bottom: 1px solid #B9B9B9;
}

.details-right .faq-sec .accordion-header .accordion-button {
    color: #217B6C;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

.details-right .faq-sec .accordion-header .accordion-button span {
    max-width: 750px;
}

.details-right .faq-sec .accordion-header .accordion-button:focus {
    box-shadow: none;
}

.details-right .faq-sec .accordion-header .accordion-button:not(.collapsed) {
    box-shadow: none;
    background-color: transparent;
}

.details-right .faq-sec .accordion-header .accordion-button::after {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #217B6C;
    line-height: 32px;
    background-image: url(../images/arrow-drop-down.png);
    background-size: contain;
}

.details-right .faq-sec .accordion-body {
    font-size: 16px;
    line-height: 26px;
    color: #000000;
    font-weight: 400;
}

.details-right .faq-sec .accordion-body a {
    color: #217b6c;
    font-weight: 600;
    text-decoration: underline;
}

.details-right .faq-sec .accordion-body a:hover {
    text-decoration: none;
}

.responsive-show {
    display: none;
}

.top_space {
    margin-top: 15px !important;
}

ul.breadcrumb {
    margin-top: 0px;
    padding-left: 0;
}

ul.breadcrumb li + li::before {
    content: ">";
    padding: 2px 7px;
    font-weight: 700;
}

ul.breadcrumb li a {
    color: #217B6C;
    text-decoration: underline;
    font-weight: 400;
}

ul.breadcrumb .titleword {
    color: #217B6C;
    text-decoration: underline;
}

/* popup */

#customPopup {
    position: fixed;
    right: -320px; /* start hidden offscreen */
    top: 50%;
    transform: translateY(-50%); /* center vertically */
    height: auto;   /* shrink to content height */    
    width: 330px;   /* smaller width */
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    padding: 30px 15px;
    border-radius: 8px;
    overflow-y: auto;
    transition: right 0.4s ease-in-out;
    background: #217B6C;
    background: linear-gradient(135deg, rgba(33, 123, 108, 1) 56%, rgba(36, 57, 78, 1) 94%);
}
 
/* Show popup with slide-in */
#customPopup.show {
    right: 20px; /* small gap from right edge */
}
 
/* Close button at top-left */
#customPopup .close.mobileclose {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    text-shadow: none;
    color: #fff;
}
 
/* Hide state */
#customPopup.hide {
    right: -320px;
}
 
/* Form elements more compact */
#customPopup label {
    font-size: 14px;
    margin-top: 8px;
    display: none;
}
#customPopup .form-control {
    font-size: 13px;
    padding: 6px 8px;
    width: 100%;
    margin: 0 0 10px;
    background-color: transparent;
    color: rgba(255, 255, 255, 1);
    font-weight: 300;
    height: 35px;
}

#customPopup textarea {
    height: 40px !important;
}
#customPopup select {
    color: rgba(255, 255, 255, 0.7);
}
#customPopup select option {
    background-color: #fff;
    color: #000;
}

#customPopup .form-control::placeholder {
    color: rgba(255, 255, 255, 1);
}
#customPopup .form-control:-ms-input-placeholder { color: #fff; } /* IE 10+ */
#customPopup .form-control::-ms-input-placeholder { color: #fff; } /* Edge */
#customPopup .submitbtn {
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    padding: 8px;
    background: transparent;
    border: 2px solid #fff;
    margin: 15px 0 0;
    border-radius: 6px;
}

#customPopup .submitbtn:hover {
    background: #217B6C;
    background: linear-gradient(-90deg, rgba(33, 123, 108, 1) 0%, rgba(21, 64, 79, 1) 64%);
    border-color: #217B6C;
    color: #ffffff;
}

.custom_close {
    display: inline !important;
}

#customPopup h4 {
    color: #ffffff;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 15px;
}
#ContentPlaceHolder1_lblReportTitle {
    color: #ffffff;
    font-size: 17px;
}

#ContentPlaceHolder1_UpdatePanel1 hr {
    display: none;
}

#ContentPlaceHolder1_lbltoc, .details-right .tab-content .content-area ul.toclist {
    font-size: 15px;
    line-height: 26px;
}



/*Responsive color-profile report page*/

@media screen and (max-width:1366.98px) {
    .reportinfo-sec .info-left .report-image {
        max-width: 40%;
        flex: 0 0 40%;
        -ms-flex: 0 0 40%;
    }
    .reportinfo-sec .info-right, .reportinfo-sec .note-para {
        padding-left: 15px;
    }

    .details-right .tab-content .content-area .graph-img img {
        width: 100%;
        height: auto;
    }

    .report-content aside .btns-group .dropdown-toggle {
        font-size: 16px;
    }
    .reportinfo-sec .info-left .report-shortinfo {
        margin: 0 0 0 20px;
    }
}

@media screen and (max-width:1280.98px) {
    .report-content aside .page-nav .nav-list li {
        font-size: 18px;
    }
}

@media screen and (max-width:1199.98px) {
    .details-right .nav-tabs .nav-item .nav-link {
        padding: 10px;
        font-size: 13px;
    }

    .reportinfo-sec .info-left .report-shortinfo {
        margin: 0 0 0 15px;
    }
    .responsive-hide {
        display: none;
    }
    .responsive-show {
        display: block;        
    }

    .reportinfo-sec .info-left .report-shortinfo p {
        padding: 5px 0;
        font-size: 16px;
    }

    .reportinfo-sec .info-right {
        margin-top: 10px;
    }

    .details-right .tab-content .content-area .graph-area .col-lg-5 {
        width: 60%;
        margin:0 auto;
    }
    .details-right .tab-content .content-area .graph-area .col-lg-7 {
        width: 100%;
        margin-top: 15px;
    }

    .report-content aside .page-nav .nav-list .submenu-list {
        padding-left: 15px;
    }
    .report-content aside .page-nav .nav-list .submenu-list li {
        font-size: 15px;
    }
    .report-content aside .page-nav .nav-list li {
        font-size: 16px;
    }

    .report-content aside .btns-group .dropdown-toggle {
        font-size: 14px;
        text-align: left;
    }
    .report-content aside .btns-group .dropdown-toggle::after {
        width: 20px;
        height: 20px;
    }

    .report-content aside .shareai-links .share-btns a {
        width: 100%;
        flex: 0 0 100%;
        -ms-flex: 0 0 100%;
    }

    
}

@media screen and (max-width:991.98px) {
    .report-content aside .page-nav .nav-list .submenu-list {
        display: none;
    }
    .reportinfo-sec .info-left .report-image {
        max-width: 25%;
        flex: 0 0 25%;
        -ms-flex: 0 0 25%;
    }
    .responsive-hide {
        display: inline-block;
    }

    .responsive-show {
        display: none;
    }

    .reportinfo-sec .info-left {
        justify-content: center;
    }

    .reportinfo-sec .info-left .report-shortinfo p {
        font-size: 15px;
        padding: 10px 0;
    }

    .reportinfo-sec .info-left .report-shortinfo {
        margin-left: 30px;
    }
    .reportinfo-sec .info-right {
        margin-top: 30px;
        text-align: center;
    }
    .reportinfo-sec .info-right h1 {
        font-size: 20px;
        padding: 0;
    }
    .reportinfo-sec .info-right h2 {
        font-size: 14px;
        line-height: 24px;
    }
    .top-navigation {
        top: 97px;
    }
    .top-navigation .top-nav .report-title {
        font-size: 17px;
    }
    .top-navigation .top-nav .nav-btns a {
        font-size: 12px;        
        margin-left: 10px;
    }
    .report-content aside .page-nav .nav-list {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .report-content aside .page-nav .nav-list li {
        margin: 0;
    }
    .report-content aside .page-nav .nav-list li:first-child a {
        margin-bottom: 0;
    }
    .report-content aside .btns-group {
        flex-wrap: nowrap;
        margin: 0;
        justify-content: space-between;
    }
    .report-content aside .btns-group > * {
        width: 48%;
    }
    .report-content aside .btns-group .dropdown-toggle {
        font-size: 16px;
        text-align: center;
    }
    .report-content aside .shareai-links {
        margin: 15px 0 0;
    }
    .report-content aside .shareai-links p.heading-text {
        font-size: 18px;
    }
    
    .report-content aside .shareai-links .share-btns a {
        width: 48%;
        flex: 0 0 48%;
        -ms-flex: 0 0 48%;
    }

    .report-content aside .infograph-img {
        margin: 15px auto 0;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .report-content aside .infograph-img img {
        width: 40%;
        height: auto;
    }
    .details-right .tab-content .content-area p, .details-right .tab-content .content-area ul li {
        font-size: 16px;
        line-height: 28px;
    }
    .details-right .tab-content h3 {
        font-size: 18px;
        line-height: 28px;
    }
    .details-right .table th, .details-right .table td span {
        font-size: 14px;
    }
    .details-right .table td {
        font-size: 14px;
        line-height: 26px;
    }
    .details-right .faq-sec h2 {
        font-size: 35px;
        margin: 30px 0;
    }
    .details-right .faq-sec .accordion-header .accordion-button {
        font-size: 18px;
        line-height: 28px;
    }
    .details-right .faq-sec .accordion-header .accordion-button span {
        max-width: 575px;
    }
    
    .details-right .nav-tabs .nav-item + .nav-item .nav-link {
        padding: 8px;
    }
    .details-right .nav-tabs .nav-item .nav-link {
        min-height: 45px;
    }
    ul.breadcrumb .titleword {
        padding: 0;
    }
    .details-right .tab-content .content-area1 {
        padding: 0 15px;
    }
    
}

@media screen and (max-width:840.98px) {
    .top-navigation {
        top: 130px;
      }
    .details-right .nav-tabs {
        top: 175px;
      }
}

@media screen and (max-width:767.98px) {
    .top-navigation {
        top: 1px;
      }
    .top-navigation .container, .reportinfo-sec .container, .report-content .container {
        max-width: 100%;
    }
     .details-right .nav-tabs {
        top: 45px;
      }
     .navbar-mobile .dropdown-toggle::after {
         display: none;
     }
     .navbar-nav .open .dropdown-menu {
         font-size: 14px;
     }
     .navbar-default .navbar-nav > li > a {
         font-size: 15px;
     }
}

@media screen and (max-width:640.98px) {
    .top-navigation {
        top: 112px;
    }
     .details-right .nav-tabs {
        top: 155px;
      }
     .details-right .nav-tabs .nav-item .nav-link {
         font-size: 12px;
         padding: 5px;
     }
     .details-right .nav-tabs .nav-item + .nav-item .nav-link {
        padding: 5px;
        font-size: 12px;
      }
     .details-right .contact-cta {
         flex-wrap: wrap;
     }
}

@media screen and (max-width:575.98px) {
    .reportinfo-sec .info-left .report-shortinfo p {
        padding: 5px 0;
        font-size: 17px;
    }
    .reportinfo-sec .info-left .report-shortinfo .report-btn {
        margin-top: 10px;
    }
    .reportinfo-sec .info-right h1 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .reportinfo-sec .info-right h2 {
        font-size: 13px;
        line-height: 22px;
    }

    .reportinfo-sec .note-para {
        margin: 5px 0 10px;
        line-height: 22px;
    }
    .top-navigation .top-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .top-navigation .top-nav .report-title {
        font-size: 18px;
        width: 100%;
        text-align: center;
        margin: 0 0 10px;
    }
    .top-navigation .top-nav .nav-btns {
        column-gap: 10px;
    }
    .top-navigation .top-nav .nav-btns a {
        margin-left: 0px;
        font-size: 13px;
    }
    .report-content aside .page-nav .nav-list li {
        font-size: 15px;
    }
    .details-right .nav-tabs {
        top: 200px;
      }
    .details-right .tab-content .content-area ul li {
        margin: 0 0 15px;
    }
    .details-right .tab-content .content-area p, .details-right .tab-content .content-area ul li {
        font-size: 15px;
        line-height: 26px;
    }
    .details-right .tab-content h3 {
        font-size: 17px;
        line-height: 26px;
    }
    .details-right .tab-content .content-area .graph-area .col-lg-5 {
        width: 70%;
    }
    .details-right .table th, .details-right .table td span {
        font-size: 16px;
    }
    .details-right .table td {
        font-size: 15px;
        line-height: 26px;
    }
    .details-right .faq-sec h2 {
        font-size: 28px;
        margin: 20px 0;
    }
    .details-right .faq-sec .accordion-header .accordion-button {
        font-size: 16px;
        line-height: 26px;
    }
    .details-right .faq-sec .accordion-body {
        font-size: 15px;
        line-height: 24px;
    }
}

@media screen and (max-width:480.98px) {
    .report-content aside .page-nav .nav-list li {
        text-align: center;
    }
    .report-content aside .btns-group {
        flex-wrap: wrap;
    }
    .report-content aside .btns-group > * {
        width: 100%;
    }
    .details-right .nav-tabs .nav-item .nav-link {
        min-height: 50px;
    }
    .details-right .contact-cta .left-area {
        margin-bottom: 10px;
    }
    .details-right .contact-cta .left-area {
        text-align: center;
    }
}

@media screen and (max-width:380.98px) {
    .reportinfo-sec .info-left {
        justify-content: flex-start;
    }
    .reportinfo-sec .info-left .report-image {
        max-width: 40%;
        flex: 0 0 40%;
        -ms-flex: 0 0 40%;
    }
    .reportinfo-sec .info-left .report-shortinfo {
        margin-left: 20px;
    }
    .reportinfo-sec .info-right h1 {
        font-size: 17px;
    }
    .reportinfo-sec .info-right h2 {
        font-size: 13px;
        line-height: 22px;
    }
    .report-content aside .page-nav .nav-list li {
        font-size: 14px;
    }
    .report-btn {
        font-size: 15px;
    }
    .report-content aside .btns-group .dropdown-toggle {
        font-size: 15px;
        margin-top: 10px;
    }
    .report-content aside .shareai-links p.heading-text {
        font-size: 17px;
    }
    .report-content aside .shareai-links .share-btns a {
        font-size: 15px;
        line-height: 32px;
    }
    .top-navigation .top-nav .report-title {
        font-size: 17px;
    }
    .top-navigation .top-nav .nav-btns a {
        padding: 5px 10px;
    }
    .details-right .tab-content h3 {
        font-size: 16px;
        line-height: 24px;
    }
    .details-right .tab-content .content-area .graph-area .col-lg-5 {
        width: 100%;
    }
    .details-right .faq-sec h2 {
        font-size: 26px;
        line-height: 40px;
    }
    .details-right .nav-tabs .nav-item .nav-link {
        font-size: 11px;
    }
    .details-right .nav-tabs .nav-item + .nav-item .nav-link {
        font-size: 11px;
    }
}
