.lato-thin {
    font-family: "Lato", system-ui;
    font-weight: 100;
    font-style: normal;
  }
  
  .lato-light {
    font-family: "Lato", system-ui;
    font-weight: 300;
    font-style: normal;
  }
  
  .lato-regular {
    font-family: "Lato", system-ui;
    font-weight: 400;
    font-style: normal;
  }
  
  .lato-bold {
    font-family: "Lato", system-ui;
    font-weight: 700;
    font-style: normal;
  }
  
  .lato-black {
    font-family: "Lato", system-ui;
    font-weight: 900;
    font-style: normal;
  }
  
  .lato-thin-italic {
    font-family: "Lato", system-ui;
    font-weight: 100;
    font-style: italic;
  }
  
  .lato-light-italic {
    font-family: "Lato", system-ui;
    font-weight: 300;
    font-style: italic;
  }
  
  .lato-regular-italic {
    font-family: "Lato", system-ui;
    font-weight: 400;
    font-style: italic;
  }
  
  .lato-bold-italic {
    font-family: "Lato", system-ui;
    font-weight: 700;
    font-style: italic;
  }
  
  .lato-black-italic {
    font-family: "Lato", system-ui;
    font-weight: 900;
    font-style: italic;
  }

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--textColor);
    font-family: "Lato", sans-serif, system-ui;
    font-size: 16px;
    overflow-x: hidden;
}
a {
    color: var(--defaultTextColor);
}
a, a:hover {
    text-decoration: none;
}
p {
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}
img {
    max-width: 100%;
}
.bg-black {
    background-color: #000000;
}
.font_12 {
    font-size: 12px;
}
.font_13 {
    font-size: 13px;
}
.font_14 {
    font-size: 14px;
}
.font_15 {
    font-size: 15px;
}
.font_16 {
    font-size: 16px;
}
.font_17 {
    font-size: 17px;
}
.font_18 {
    font-size: 18px;
}
.font-weight-300 {
    font-weight: 300;
}
.font-weight-400 {
    font-weight: 400;
}
.font-weight-500 {
    font-weight: 500;
}
.font-weight-600 {
    font-weight: 600;
}
.font-weight-700 {
    font-weight: 700;
}

/*Tor bar*/
.font-size-area {
    display: inline-flex;
    column-gap: 8px;
}
.font-size-area .font-size {
    border-right: 1px solid #788091;
    padding-right: 8px;
}
.font-size-area .font-size:last-child {
    border: none;
}

/*Nav bar*/
.navigation.navbar {
    min-height: 85px;
}
.navigation.navbar .navbar-nav {
    display: flex;
    align-items: center;
}
.navigation.navbar .navbar-nav li {
    padding: 0 1rem;
}
.navbar-light .navbar-nav .nav-link {
    color: #565656;
    padding:0;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
}
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--highlightColor);
    font-weight: 600;
}
.navbar-light .navbar-nav .active>.nav-link {
    position: relative;
}
.navbar-light .navbar-nav .active>.nav-link::before {
    content: "";
    height: 3px;
    width: 15px;
    position: absolute;
    top: -3px;
    background: var(--highlightColor);
    border-radius: 5px;
}
.btn.action-btn {
    background-color: var(--highlightColor);
    border: none;
    padding: .375rem .75rem;
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 8px;
    font-weight: 500;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
}
.top-search-icon {
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    position: relative;
    top: 1px;
}


/*Banner*/
.section-space {
    padding-top: 30px;
    margin-bottom: 30px;
}
.top-banner.section-space {
    padding: 0;
    margin: 0;
}
.bannerCarousel {
    height: 480px;
    overflow: hidden;
}
.bannerCarousel .carousel-inner {
    width: 100%;
    height: 100%;
}
.bannerCarousel .carousel-item {
    height: 100%;
}
.bannerCarousel .carousel-item img {
    height: 100%;
    object-fit: cover;
}
.bannerCarousel .carousel-indicators li {
    background-color: #000;
}

.bannerCarousel .carousel-indicators .active {
    background-color: #fff; 
}
.bannerCarousel .carousel-indicators {
    right: auto;
    margin: 0;
    align-items: center;
}
.bannerCarousel .indicator-container {
    position: absolute;
    margin: 0 auto;
    bottom: 80px;
    left: 25px;
    right: 0;
}
.bannerCarousel .carousel-indicators .indicator-item {
    border-radius: 50%;
    width: 8px;
    height: 8px;
    border: none;
    background-color: #FFFFFF;
    opacity: 1;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
}
.bannerCarousel .carousel-indicators .indicator-item.active {
    width: 20px;
    border-radius: 10px;
    background-color: var(--bannerHighlightColor);
}
.bannerCarousel .carousel-indicators .indicator-item {
    border-radius: 50%; 
}
.bannerCarousel .carousel-caption {
    top: 107px;
    left: 0;
    right: 0;
    text-align: left;
    bottom: auto;
    margin-top: 50px;
    z-index: 1;
}
.bannerCarousel .carousel-control-prev, .bannerCarousel .carousel-control-next {
    top: calc(50% - 25px);
    bottom: auto;
    width: 50px;
    height: 50px;
    background-color: var(--sliderControlBg);
    border-radius: 50%;
    z-index: 2;
    opacity: 0.8;
}
.bannerCarousel .carousel-control-prev {
    left: 60px;
}
.bannerCarousel .carousel-control-next {
    right: 60px;
}
.bannerCarousel .carousel-control-prev span {
    position: relative;
    left: -1px;
}
.bannerCarousel .carousel-control-next span {
    position: relative;
    right: -1px;
}
.bannerCarousel .carousel-caption .caption-inner {
    width: 50%;
    min-width: 300px;
}
.bannerCarousel .carousel-item:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 70%;
    z-index: 0;
    opacity: 0.8;
    left: 0;
    background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0));
    background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0));
    background: -o-linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0));
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0));
}
.wrap-threeline {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.btn.link-btn {
    background-color: var(--highlightColor);
    border: none;
    padding: 0.7rem 1.2rem;
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 8px;
    font-weight: 500;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 5px;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
}
.cross-arrow {
    font-size: 12px;
    padding-left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 1px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

.btn.link-btn:hover .cross-arrow {
    rotate: 45deg;
    top: 0;
}

.highlighed-text {
    color: var(--highlightColor);
}
.top-banner .highlighed-text {
    color: var(--bannerHighlightColor);
}
.content-title {
    font-weight: 600;
}

.flag-lines .lines {
    height: 2px;
    width: 100%;
}
.flag-lines .line-black {
    background-color: #000;
}
.flag-lines .line-yellow {
    background-color: #FDB209;
}
.flag-lines .line-red {
    background-color: #D32D27;
}


/* Components list */
.section-title {
    font-size: 30px;
}
.component-box {
    padding: 1.5rem 1.3rem;
    box-shadow: 0px 0px 15px 0px rgba(34, 34, 34, 0.14);
    border-radius: 10px;
    height: 100%;
    position: relative;
    border: 1px solid transparent;
}
.component-box:hover {
    border: 1px solid var(--border);
}
.component-box:before {
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
}
.component-box:hover :before {
    content: "";
    position: absolute;
    height: 3px;
    width: 90%;
    top: 0;
    left: 5%;
    background-color: #333;
    border-radius: 3px;
}

/*Analytics*/

.analytics-section.section-space {
    background: #FFFAF5;
    background: rgb(255,250,245);
    background: linear-gradient(90deg, rgba(255,250,245,1) 0%, rgba(255,245,231,1) 100%);
}
.chart-box {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 30px 0px rgba(34, 34, 34, 0.07);
    overflow: hidden;
}
.chart-area .chart-body {
    min-height: 400px;
}
.chart-title {
    height: fit-content;
    font-weight: 600;
    font-size: 18px;
}
.chart-header {
    position: relative;
}
.chart-header:before {
    content: "";
    position: absolute;
    left: -47px;
    height: 28px;
    width: 30px;
    background-color: var(--primaryColor);
    border-radius: 7px;
}
.chart-actions {
    column-gap: 10px;
}
.chart-actions .action-item {
    padding: 5px;
    border: 1px solid var(--border);
    border-radius: 5px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1F4083;
}
.chart-actions .view-btns {
    border: 1px solid var(--border);
    border-radius: 5px;
    overflow: hidden;
}
.chart-actions .view-btns .action-item {
    border: none;
    border-radius: 0;
}
.chart-actions .view-btns .action-item {
    color: #5E5E5E;
}
.chart-actions .view-btns .action-item.selected {
    background: var(--redBg);
    color: #fff;
}

.load-more-btn .btn {
    background-color: #FFFFFF;
    color: var(--primaryColor);
    border: 1px solid var(--primaryColor);
}


/* Its all about */
.about-detail-box {
    background: #653720;
    background: linear-gradient(93.04deg, #653720 0.66%, #A4694A 131.73%);
    padding-left: 20px;
    border-radius: 16px;
    margin-bottom: 30px;
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}
.right-img {
    overflow: hidden;
    flex: 0 0 auto;
    width: 45%;
    position: relative;
}
.right-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}


/* Footer */
footer {
    background-color: #1C0B02 !important;
}
.social-icons a {
    padding: 10px;
    border: 1px solid #B0A098;
    border-radius: 16px;
    width: 50px;
    height: 50px;
    display: inline-block;
    text-align: center;
}
.contact-item .contact-icons {
    font-size: 19px;
    color: #C78073;
}
.contact-item {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

/* dropdown*/
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #ce9b68;
}

/*Old css*/


.bg-white {
    background-color: #FFF
}

.page-heading {
    font-size: 32px;
    color: #301608;
    font-weight: bold;
}

.padding15 {
    padding: 15px;
}

.no-padding-bottom{
    padding-bottom: 0px !important;
}
.no-padding-top{
padding-top: 0px !important;
}
.page-subheading {
    font-size: 20px;
    font-weight: bold;
    color: #ED9622;
}
.content {
    padding: 15px 15px;
}

.m--margin-top-50 {
    margin-top: 50px;
}

.mandate-bg {
    background: #fefaf9;
}

.mandate-img {
    background-image: url("../../images/mandate.png");
    background-repeat: no-repeat;
    background-position: center;
    min-height: 308px;
}
.page-subheading {
    font-size: 20px;
    font-weight: bold;
    color: #ED9622;
}
.ministry-card-height{
height: 210px;
}
@media only screen and (min-device-width : 769px) and (max-device-width : 1024px) {
.card-body-gray {
    min-height: 204px;
}
}
@media only screen and (min-device-width : 481px) and (max-device-width : 768px) {
.card-body-gray {
    min-height: 246px;
}
}
.card-body-gray {
    background: #F4F3F280;
    color: #301608;
    font-size: 14px;
    min-height: 190px;
    padding: 1rem;
}
.title {
    color: #ED9622;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Report Old Css*/

.card-search-title {
    background-color: #594439;
    color: #fff;
    padding: 10px 15px;
}

.no-padding-right{
    padding-right: 0px !important;
}
.no-padding-left{
    padding-left: 0px !important;
}
.m--margin-top-15 {
    margin-top: 15px;
}
.btn-outline-secondary {
    color: #333;
    border-color: #d7d7d7;
    font-size: 14px;
}
.btn-outline-secondary i {
    color: #ED9622
}
.btn-outline-secondary:hover {
    background: transparent;
    border-color: #ED9622;
    color: #333!important;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
    box-shadow: none!important;
}
.btn-outline-secondary:hover, .btn-outline-secondary:not(:disabled):not(.disabled):active {
    background-color: #fff;
    border-color: #ED9622;
    color: #333;
}
.table th {
    background: #F9F0E8;
    color: #C16C21;
    font-size: 14px;
    vertical-align: middle!important;
    font-weight: 600;
}
.table th, .table td {
    padding: 0.50rem 0.75rem;
}
.table td {
    color: #000000;
    font-size: 14px;
}
.table thead th {
    border-bottom: 2px solid #ebe9e7;
}
.table-bordered th, .table-bordered td {
    border: 1px solid #ebe9e7;
}
.title-grid {
    float: left;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #ced4da !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #f5f5f5 !important;
border: 1px solid #e4e4e4 !important;
}

.select2-container--default .select2-selection--multiple {
border: 1px solid #ced4da !important;
}
.btn-secondary {
    background: #e1e1e1;
    border-color: #e1e1e1;
    color: #333;
    font-size: 14px;
    padding: 0.375rem 1.5rem;
}
.btn-secondary:hover, .btn-secondary:not(:disabled):not(.disabled):active {
    background-color: #C9C9C9;
    border-color: #C9C9C9;
    color: #333;
}
.btn-secondary:focus, .btn-secondary.focus {
    box-shadow: none!important;
}
.btn-primary {
    background: #C16C21;
    border-color: #C16C21;
    color: #fff;
    font-size: 14px;
    padding: 0.375rem 1.5rem;
}
.btn-primary:hover, .btn-primary:not(:disabled):not(.disabled):active {
    background-color: #ED9622;
    border-color: #ED9622;
}
.btn-primary:focus, .btn-primary.focus {
    box-shadow: none!important;
}
.margin-bottom-report{
margin-bottom: 0px !important;
}
.select2-container {
width: 100% !important;
}

.footer-image-logo{
display: flex;
justify-content: space-between;
}

.bg-brown {
    background-color: #c16c21;
}