/*
Theme Name: BBL Themes
Author: Bharat
Description: Custom theme created manually
Version: 1.0
*/
:root {
  --body-color: #333;
  --body-font: "proxima_novaregular", sans-serif;
  --body-fontsemibold: "proxima_novasemibold", sans-serif;
  --body-fontbold: "proxima_novabold", sans-serif;
  --body-fontsize: 14px;
  --heading-color: #333;
  --primary: #003399;
  --bs-primary-rgb: rgb(0, 50, 153);
  --primary-color: #003399;
  --secondary-color: #eb7f27;
  --bs-table-striped-bg: rgba(000, 000, 000, 0.02);
}

/* ----------------------------------- 01 FONTS START ----------------------------------- */

@font-face {
  font-family: "proxima_novaregular";
  src:
    url("../fonts/proxima_nova_regular-webfont.woff2") format("woff2"),
    url("../fonts/proxima_nova_regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "proxima_novasemibold";
  src:
    url("../fonts/proxima_nova_semibold-webfont.woff2") format("woff2"),
    url("../fonts/proxima_nova_semibold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "proxima_novabold";
  src:
    url("../fonts/proxima_nova_bold-webfont.woff2") format("woff2"),
    url("../fonts/proxima_nova_bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "proxima_novaregular_italic";
  src:
    url("../fonts/proxima_nova_regular_italic-webfont.woff2") format("woff2"),
    url("../fonts/proxima_nova_regular_italic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* ---------------------------------- common ---------------------------------- */

html,
body {
  overflow-x: hidden;
}

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

/* a, button, .btn, .nav-link, .featured-box, .featured-box img {
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

body {
  scroll-behavior: smooth;
}

.carousel-item {
  will-change: transform;
} */

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: var(--body-fontsize);
  line-height: 1.42857143;
  font-family: var(--body-font);
  color: var(--body-color);
}

img {
  max-width: 100%;
  vertical-align: middle;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
.h1,
h1 {
  font-size: 36px;
}
.h2,
h2 {
  font-size: 30px;
}
h3 {
  font-size: 21px;
  font-family: var(--body-fontsemibold);
  color: var(--primary-color);
  margin-bottom: 15px;
}
.h4,
h4 {
  font-size: 18px;
}
.h5,
h5 {
  font-size: 16px;
}
.h6,
h6 {
  font-size: 14px;
}
p {
  margin: 0;
  padding: 0 0 15px;
}
a {
  color: var(--primary-color);
  text-decoration: none;
}
a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
hr {
  opacity: 0.1;
}
.bg-primary {
  background-color: var(--primary-color);
}
.primary-text,
.primary-color {
  color: var(--primary-color);
}
.secondary-text,
.secondary-color,
a.secondary-color,
a.secondary-color:hover {
  color: var(--secondary-color);
}

.bodywrapper {
  min-height: 100vh;
}

ul.default {
  list-style-type: none;
  margin: 0 0 20px 10px;
  padding: 0;
}

ul.default li {
  background: url(../images/bullet.jpg) left 6px no-repeat;
  padding: 3px 0 3px 25px;
}
ul.default li a:hover {
  color: #ca6e24;
}
ul.default li ul li {
  background: no-repeat;
  margin-left: 0;
  padding-left: 6px;
}

ul.grouped-list {
  list-style-type: none;
  margin: 0 0 20px 10px;
  padding: 0;
}

ul.grouped-list li {
  margin: 0;
  padding: 5px;
  width: 100%;
  border-bottom: 1px dashed #cccdcd;
  display: flex;
}

ul.grouped-list li:hover {
  background: #f6f6f6;
}

ul.grouped-list li a {
  color: #333;
  text-decoration: none;
  display: flex;
  width: 100%;
}

ul.grouped-list li .shortTitle {
  margin: 0;
  padding: 0;
  width: 20%;
  color: #eb7f27;
}

ul.grouped-list li .desc {
  margin: 0;
  padding: 0;
  width: 75%;
}
/* ----------------------------------- Navtabs styling ----------------------------------- */
.nav-tabs {
  border-bottom: 2px solid #3171ae;
  margin-top: 30px;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  overflow-x: auto;
}

/* for removing the scrollbar */
/* .nav-tabs {
  border-bottom: 2px solid #3171ae;
  margin-top: 30px;
  display: flex;
  overflow: hidden;
  overflow-x: auto;
  gap: 5px 2px;
} */
.nav-link {
  color: var(--primary-color);
  white-space: nowrap;
  padding-right: 8px;
  padding-left: 8px;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  text-decoration: none;
  background-color: #eee;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: #3171ae;
  border-color: #3171ae #3171ae transparent;
  color: #fff;
}

.tab-content {
  padding: 20px;
  background: #f6fbfc;
}
/* ----------------------------------- Form ----------------------------------- */
label {
  margin-bottom: 5p;
}
textarea {
  resize: none;
}
.form-group {
  margin-bottom: 15px;
}
.form-control {
  font-size: var(--body-fontsize);
}
.btn {
    /* display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0; */
    font-size: 14px;
    font-weight: 400;
    /* line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px; */
}
.btn-default {
  background: url(../images/btn-bg.jpg) repeat-x;
  border: 0px;
  color: #fff !important;
    /* height: 40px;
    font-size: 18px;
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 20px;
    border: 0; */
}
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/*.btn-primary::after {*/
/*  content: "→";*/
/*  position: absolute;*/
/*  right: -20px;*/
/*  transition: 0.3s;*/
/*}*/

/*.btn-primary:hover::after {*/
/*  right: 15px;*/
/*}*/

/*.btn-primary:hover {*/
/*  transform: scale(1.05);*/
/*}*/
.btn.disabled,
.btn:disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
}
.text-red {
  color: red;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

/* ----------------------------------- Social Icons ----------------------------------- */
#social {
  margin: 20px 10px;
  text-align: center;
}

.smGlobalBtn {
  /* global button class */
  display: inline-block;
  position: relative;
  cursor: pointer;
  background-color: #fff;
  width: 30px;
  height: 30px;
  padding: 0px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: normal;
  line-height: 2em;
  border-radius: 15px;
}
.social.smGlobalBtn i{
  line-height:2em;
  font-size: 23.5px;
}
.social.smGlobalBtn:has(i) {
    background-color: transparent !important;
}
.facebookBtn {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 25 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23003399' d='M24.78439 0.3395122L24.78439 7.9141463 20.28878 7.9258537C16.764878 7.9258537 16.085854 9.6 16.085854 12.0468293L16.085854 17.4673171 24.48 17.4673171 23.39122 25.9434146 16.085854 25.9434146 16.085854 48 7.329951 48 7.329951 25.9434146 0 25.9434146 0 17.4673171 7.329951 17.4673171 7.329951 11.2156098C7.329951 3.9570732 11.754146 0 18.24 0 21.331902 0 24 0.2341463 24.78439 0.3395122Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px 15px;
}
.linkedinBtn {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 52 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23003399' d='M52 52H41.3156V33.8021C41.3156 28.8128 39.4198 26.0245 35.4707 26.0245C31.1746 26.0245 28.9301 28.9261 28.9301 33.8021V52H18.6333V17.3333H28.9301V22.0029C28.9301 22.0029 32.026 16.2742 39.3826 16.2742C46.7357 16.2742 52 20.7645 52 30.0512V52ZM6.34935 12.794C2.84206 12.794 0 9.92966 0 6.39701C0 2.86436 2.84206 0 6.34935 0C9.85664 0 12.697 2.86436 12.697 6.39701C12.697 9.92966 9.85664 12.794 6.34935 12.794ZM1.03255 52H11.7694V17.3333H1.03255V52Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;
}
.ic-users {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 548.169 548.169' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23003399' d='M109.634 164.452c20.179 0 37.402-7.135 51.674-21.411 14.277-14.275 21.416-31.503 21.416-51.678 0-20.173-7.139-37.401-21.416-51.678-14.272-14.275-31.496-21.414-51.674-21.414-20.177 0-37.401 7.139-51.676 21.414C43.684 53.962 36.545 71.186 36.545 91.363c0 20.179 7.139 37.403 21.413 51.678C72.233 157.313 89.457 164.452 109.634 164.452zM196.569 278.519c21.413 21.406 47.248 32.114 77.516 32.114 30.269 0 56.103-10.708 77.515-32.114 21.409-21.42 32.117-47.258 32.117-77.52 0-30.264-10.708-56.101-32.117-77.515-21.412-21.414-47.246-32.121-77.515-32.121-30.268 0-56.105 10.709-77.516 32.121-21.411 21.411-32.12 47.248-32.12 77.515S175.158 257.102 196.569 278.519zM438.543 164.452c20.17 0 37.397-7.135 51.671-21.411 14.274-14.275 21.409-31.503 21.409-51.678 0-20.173-7.135-37.401-21.409-51.678-14.273-14.275-31.501-21.414-51.671-21.414-20.184 0-37.407 7.139-51.682 21.414-14.271 14.277-21.409 31.501-21.409 51.678 0 20.179 7.139 37.403 21.409 51.678C401.136 157.313 418.359 164.452 438.543 164.452zM512.763 164.456c-1.136 0-5.276 1.999-12.415 5.996-7.132 3.999-16.416 8.044-27.833 12.137-11.416 4.089-22.747 6.136-33.972 6.136-12.758 0-25.406-2.187-37.973-6.567.945 7.039 1.424 13.322 1.424 18.842 0 26.457-7.71 50.819-23.134 73.089 30.841.955 56.056 13.134 75.668 36.552h38.256c15.605 0 28.739-3.863 39.396-11.57 10.657-7.703 15.989-18.986 15.989-33.83 0-67.193-11.796-100.788-35.409-100.784zM470.096 395.284c-1.999-11.136-4.524-21.464-7.57-30.978-3.046-9.521-7.139-18.794-12.271-27.836-5.141-9.034-11.044-16.748-17.706-23.127-6.667-6.379-14.805-11.464-24.414-15.276-9.609-3.806-20.225-5.708-31.833-5.708-1.906 0-5.996 2.047-12.278 6.14-6.283 4.089-13.224 8.665-20.841 13.702-7.615 5.037-17.789 9.609-30.55 13.702-12.762 4.093-25.608 6.14-38.544 6.14-12.941 0-25.791-2.047-38.544-6.14-12.756-4.093-22.936-8.665-30.55-13.702-7.616-5.037-14.561-9.613-20.841-13.702-6.283-4.093-10.373-6.14-12.279-6.14-11.609 0-22.22 1.902-31.833 5.708-9.613 3.812-17.749 8.897-24.41 15.276-6.667 6.372-12.562 14.093-17.705 23.127-5.137 9.042-9.229 18.315-12.275 27.836-3.045 9.514-5.564 19.842-7.566 30.978-2 11.136-3.331 21.505-3.997 31.121-.667 9.613-.999 19.466-.999 29.554 0 22.836 6.945 40.874 20.839 54.098 13.899 13.223 32.363 19.842 55.389 19.842h249.535c23.028 0 41.49-6.619 55.392-19.842 13.894-13.224 20.841-31.262 20.841-54.098 0-10.088-.335-19.938-.992-29.554-.667-9.613-1.998-19.983-3.989-31.118zM169.303 274.088c-15.418-22.27-23.125-46.632-23.122-73.089 0-5.52.477-11.799 1.427-18.842-12.564 4.377-25.221 6.567-37.974 6.567-11.23 0-22.552-2.046-33.974-6.136-11.417-4.093-20.699-8.138-27.834-12.137-7.138-3.997-11.281-5.996-12.422-5.996C11.801 164.456 0 198.051 0 265.24c0 14.844 5.33 26.127 15.987 33.83 10.66 7.707 23.794 11.563 39.397 11.563h38.26c19.607-23.411 44.823-35.591 75.659-36.545z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;
}
/*
.facebookBtn:before {
  font-family: "FontAwesome";
  content: "\f09a";
  color: #4060a5;
}
.linkedinBtn:before {
  font-family: "FontAwesome";
  content: "\f0e1";
  color: #0094bc;
}*/


/* ----------------------------------- Table START ----------------------------------- */
.table {
  margin-bottom: 0;
}
.table th {
  white-space: nowrap;
}
.t-border {
  border: 2px solid #1c8ec6;
}
.table-striped {
  --bs-table-striped-bg: #f6f6f6;
}
.table-striped > tbody > tr:nth-of-type(odd) > * {
  background-color: #f6f6f6 !important;
}
.nowrap-table th,
.nowrap-table td {
  white-space: nowrap;
}
/* ----------------------------------- 03 HEADER START ----------------------------------- */

.top-nav {
  background: #003399;
  padding: 15px 0;
}

.topmenu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: end;
  align-items: center;
}

.topmenu > li {
  display: block;
  padding: 0 10px;
}

.topmenu > li > a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.topmenu > li > a:hover {
  color: #fff;
  opacity: 0.8;
}
.topmenu > li > a.social:hover {
  opacity: 1;
}
.top-nav ul li .dropdown a {
  color: #333;
  font-size: 14px;
  padding: 3px 10px;
  text-decoration: none;
  white-space: nowrap;
}
.topmenu .btn-default,
.topmenu .btn-default:focus,
.topmenu .btn-default:active {
  color: #333 !important;
  background-color: #fff;
  background-image: none;
  border-color: #ccc !important;
}
.inputSearch {
  background: transparent url("../images/search_icon.png") no-repeat 9px center;
  border: none;
  padding: 0;
  width: 35px;
  height: 30px;
  -webkit-border-radius: 10em;
  -moz-border-radius: 10em;
  border-radius: 10em;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  outline: none;
  color: transparent;
}

.inputSearch:focus {
  width: 160px;
  padding-left: 32px;
  color: white;
  background-color: transparent;
  cursor: auto;
  border-color: #66cc75;
  -webkit-box-shadow: 0 0 5px rgba(109, 207, 246, 0.5);
  -moz-box-shadow: 0 0 5px rgba(109, 207, 246, 0.5);
  box-shadow: 0 0 5px rgba(109, 207, 246, 0.5);
  outline: none;
}

header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px #ccc solid;
}

header .container {
  padding-right: 0;
  padding-left: 0;
}
header .navbar-brand {
  font-size: 18px;
  height: auto;
  line-height: 20px;
  padding: 10px 0px 10px 0px;
  display: block;
}
.navbar-nav > li > a {
  color: var(--body-color);
  text-decoration: none;
}
.navbar-nav > li > a:hover {
  color: #000;
  text-decoration: none;
}
.navbar-nav > li > .nav-link {
  font-family: var(--body-fontsemibold);
  text-transform: uppercase;
  font-size: 14px;
  white-space: nowrap;
  padding: 0.5rem;
}
.navbar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}
.navbar-toggler {
  padding: 0.25rem 0.5rem;
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar-collapse {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  width: 100%;
  padding: 0 15px;
  background-color: #fff;
  border-bottom: 3px solid var(--secondary-color);
}
.dropdown-menu {
  font-size: 14px;
}
.navbar-nav > li > .dropdown-menu a,
.navbar-nav > li > .dropdown-menu .dropdown-item {
  font-family: "proxima_novasemibold";
  font-weight: 500;
  text-decoration: none;
}
.navbar-nav > li > .dropdown-menu a:hover,
.navbar-nav > li > .dropdown-menu a:focus,
.navbar-nav > li > .dropdown-menu .dropdown-item:hover,
.navbar-nav > li > .dropdown-menu .dropdown-item:focus {
  color: var(--secondary-color);
  text-decoration: none;
  background-color: transparent;
}
.navbar .dropdown-header {
  color: #333;
  font-family: var(--body-fontsemibold);
  text-transform: none;
  font-weight: normal;
  margin-bottom: 5px;
  padding: 0 0 5px 0;
  position: relative;
  border-bottom: 1px solid #cfcfcf;
}
.navbar .dropdown-header::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.navbar-nav .menuhide {
  display: none !important;
}
.navbar-nav .menuview {
  display: block !important;
}
.mega-dropdown {
  position: static !important;
}
.mega-dropdown-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0 0.5rem;
}
.mega-dropdown-menu ul li {
  padding: 0 16px;
}
.mega-dropdown-menu ul li a {
  padding: 5px;
  display: block;
  color: #777;
}

.mobile-search,
.mobile-nav {
  display: none;
}
.mob-social-links {
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
  display: flex;
}
.mob-social-links > li {
  margin: 0 15px;
}
.mob-social-links li a {
  display: block;
}
.mob-social-links i {
  color: #003399;
  font-size: 25px;
}
.mob-social-links .socialBtn {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  background-color: #fff;
  width: 40px;
  height: 34px;
  padding: 0px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: normal;
  line-height: 2em;
  border-radius: 0px;
  background-size: 25px 25px;
  fill: #003399;
}
.navbar-nav .mobile-dropdown .dropdown-menu {
  position: absolute;
  background: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.mobile-dropdown .btn {
  padding: 0;
}
.mobile-dropdown .btn:focus,
.mobile-dropdown .btn:active {
  outline: 0;
  border: 0;
}
.search-mob {
  background-color: #003399;
  padding: 10px;
}
.search-mob .btn {
  background-color: #fff;
}
.search-mob .btn:focus {
  outline: 0;
  border: 0;
  box-shadow: none;
}
.search-mob .form-control:focus {
  outline: 0;
  border: 0;
  box-shadow: none;
}

/* -----------------------------------FOOTER START ----------------------------------- */
.footer {
  width: 100%;
  background: #1b1b1b;
  color: #fff;
  padding: 20px 0 10px;
}
.footer a {
  color: #fff;
}
.footer p {
  padding-bottom: 5px;
  text-align: center;
}
.footerlinks {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.footerlinks li {
  padding: 0;
  position: relative;
}
.footerlinks li:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 15px;
  background-color: #fff;
  position: absolute;
  top: 3px;
  left: -7px;
}
.footerlinks li:first-child:before {
  display: none;
}
.footsocial {
  list-style-type: none;
  margin: 0 0 -30px;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.footsocial .smGlobalBtn {
  width: 50px;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 35px;
}
.footsocial .facebookBtn {
  background-size: 12px 26px;
}
.footsocial .linkedinBtn {
  background-size: 22px 22px;
}

.subfooter {
  background-color: #292826;
  color: #fff;
  padding: 50px 0 20px;
}
.subfooter h3 {
  color: #fff;
  font-size: 24px;
}
.subfooter ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.subfooter ul li {
  margin: 7px 0;
  padding: 0;
  list-style-type: none;
  font-size: 16px;
}
.subfooter ul li a {
  color: #fff;
}

/* ------------------------------------ 06 SLIDER START ------------------------------------ */
.homeslide {
  background: url("../images/header-bg.jpg") no-repeat #0f5093;
  background-size: cover;
  margin-bottom: 40px;
  border-bottom: 3px solid var(--secondary-color);
}
.homeslide .row {
  min-height: 540px;
  align-items: center;
}
.homeslide h1 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 35px;
}
.homeslide h2 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 35px;
}
.homeslide p {
  color: #fff;
  font-size: 24px;
  border-bottom: 0;
  line-height: 25px;
}
.homeslide .col-lg-6:first-child {
  padding: 0 3% 0 9%;
  text-align: center;
}
.homeslide .col-lg-6:last-child {
  padding: 0 9% 0 3%;
}
.homeslide .carousel-indicators [data-bs-target] {
  width: 15px;
  height: 15px;
  /* Original Like This */
  /* width: 24px;
  height: 10px; */
  border: 1px solid #fff;
  border-radius: 50px;
  background-color: rgba(0, 0, 0, 0);
}
.homeslide .carousel-indicators .active {
  background-color: rgba(255, 255, 255, 1);
}
.homeslide .btn {
  background: url(../images/btn-bg.jpg) repeat-x;
  height: 40px;
  font-size: 18px;
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 20px;
  border: 0;
}

/* ------------------------------------ home featured-box ------------------------------------ */
/* .middle-area .row {
  row-gap: 24px;
}

.carousel-item {
  transition: transform 0.6s ease-in-out !important;

}

.carousel-item img {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
}

.carousel-item .col-lg-6:last-child {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s ease;
}

.carousel-item.active img,
.carousel-item.active .col-lg-6:last-child {
  opacity: 1;
  transform: translateX(0);
}

.carousel-item .col-lg-6:last-child {
  transform: translateX(40px);
  opacity: 0;
  transition: all 0.8s ease;
}


.carousel-item.active img {
  transform: translateX(0);
  opacity: 1;
}

.carousel-item.active .col-lg-6:last-child {
  transform: translateX(0);
  opacity: 1;
}
.carousel-item {
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
} */

.featured-box {
  margin-bottom: 30px;
}
.featured-box .img-block {
  margin-top: 20px;
  margin-bottom: 25px;
}

.featured-box .img-block img,
.carousel-item img {
  width: 100%;
}

h3.featured-title {
  color: var(--primary-color);
  font-size: 18px;
  font-family: var(--body-fontsemibold);
  padding-left: 52px;
  vertical-align: middle;
  display: flex;
  align-items: center;
  height: 40px;
}
.icon-01 {
  background: url(../images/icon-01.jpg) left center no-repeat;
  min-height: 40px;
}

.icon-02 {
  background: url(../images/icon-02.jpg) left center no-repeat;
  min-height: 40px;
}

.icon-03 {
  background: url(../images/icon-03.jpg) left center no-repeat;
  min-height: 40px;
}

.icon-04 {
  background: url(../images/icon-04.jpg) left center no-repeat;
  min-height: 40px;
}

.icon-05 {
  background: url(../images/icon-05.jpg) left center no-repeat;
  min-height: 40px;
}
.icon-06 {
  background: url(../images/icon-06.jpg) left center no-repeat;
  min-height: 40px;
}
.middle-area {
  font-size: 15px;
  margin-bottom: 40px;
}
.maincontent{margin-bottom: 40px;}
.middle-area h3.featured-title {
  text-transform: uppercase;
}

.page-title {
  font-size: 16px;
  transition: all 1s ease-in-out;
  position: relative;
  background-position: center top;
  background-repeat: no-repeat;
}
.page-title h1 {
  color: #fff;
}
.page-title h1 span {
  display: block;
  font-size: 22px;
  text-align: inherit;
}
.title-area {
  display: flex;
  align-items: center;
  height: 204px;
  padding: 70px 20px;
}
.pagehead {
  background-image: url("../images/headerbg-1.jpg");
}
.about-headerbg {
  background-image: url("../images/headerbg-about.jpg");
  background-color: #154887;
}
.investor-relations-headerbg {
  background-image: url("../images/headerbg-investor-relations.jpg");
  background-color: #c84044;
}
.human-resources-headerbg {
  background-image: url("../images/headerbg-human-resources.jpg");
  background-color: #5a9c42;
}
.news-headerbg {
  background-image: url("../images/headerbg-news.jpg");
  background-color: #70348e;
}
.contact-headerbg {
  background-image: url("../images/headerbg-contact.jpg");
  background-color: #ca6c15;
}
.transformers-headerbg {
  background-image: url("../images/headerbg-transformers.jpg");
  background-color: #a979b3;
}
.projects-headerbg {
  background-image: url("../images/headerbg-projects.jpg");
  background-color: #363286;
}
.motors-headerbg {
  background-image: url("../images/headerbg-motors.jpg");
  background-color: #e31e25;
}
.magnet-headerbg {
  background-image: url("../images/headerbg-magnet.jpg");
  background-color: #79b833;
}
.drives-headerbg {
  background-image: url("../images/headerbg-drives.jpg");
  background-color: #ea5421;
}
.breadcrumb-wrap {
  background: #f5f5f5;
  margin-bottom: 40px;
}
.breadcrumb {
  padding: 8px 15px;
}
.breadcrumb > .active {
  color: var(--secondary-color);
}
.content-area {
  padding-bottom: 15px;
}

/* .carousel-item {
  transition: transform 0.6s ease-in-out;
}

.carousel-item img {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.carousel-item.active img {
  opacity: 1;
  transform: translateX(0);
}

.carousel-item .col-lg-6:last-child {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.carousel-item.active .col-lg-6:last-child {
  opacity: 1;
  transform: translateX(0);
} */
/* ----------------------------------- 05 RIGHT START ----------------------------------- */

.nav-side-menu {
  overflow: auto;
  font-size: 15px;
  background-color: #f6f6f6;
  margin-bottom: 20px;
}

.nav-side-menu .toggle-btn {
  display: none;
}

.nav-side-menu ul,
.nav-side-menu li {
  list-style: none;
  padding: 0px;
  margin: 0px;
  cursor: pointer;
}

.nav-side-menu li {
  transition: padding-left 0.4s ease;
  border-bottom: 1px dashed #cccdcd;
  padding: 10px 17px;
}

.nav-side-menu li:hover {
  border-left: 2px #eb7f27 solid;
  padding-left: 20px;
}
.nav-side-menu li a {
  text-decoration: none;
  color: #333333;
  transition: all 1s ease;
}

.nav-side-menu li:hover a {
  color: var(--primary-color);
}
.nav-side-menu ul .active,
.nav-side-menu li .active {
  border-left: 2px solid var(--secondary-color);
}

.nav-side-menu ul.active,
.nav-side-menu li.active a {
  color: var(--primary-color);
}

.nav-side-menu ul:not(collapsed) .arrow:before,
.nav-side-menu li:not(collapsed) .arrow:before {
  /*font-family: "bootstrap-icons";
  content: "\F282";
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
  float: right; */
  content: "";
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3e%3cpath d='M1.5 5l6 6 6-6' stroke='black' fill='none'/%3e%3c/svg%3e")
    no-repeat center;
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  float: right;
  margin-top: 3px;
}

ul.sub-menu {
  padding: 0 15px;
  list-style-type: none;
}

.nav-side-menu ul .sub-menu li,
.nav-side-menu li .sub-menu li {
  background: url(../images/nav-bullet.jpg) 17px 18px no-repeat;
  border: none;
  border-bottom: 1px solid #cccdcd;
  margin-left: 0px;
  font-weight: normal;
  /* padding: 10px 17px 10px 35px;*/
  padding: 10px 17px 10px 33px;
  word-break: break-word;
}
.nav-side-menu ul .sub-menu li:hover,
.nav-side-menu li .sub-menu li:hover {
  background: url(../images/nav-bullet-active.jpg) 17px 18px no-repeat;
}

.nav-side-menu ul .sub-menu li:hover a,
.nav-side-menu li .sub-menu li:hover a,
.nav-side-menu ul .sub-menu li.active a,
.nav-side-menu li .sub-menu li.active a {
  color: var(--secondary-color);
}
.nav-side-menu ul .sub-menu li.active,
.nav-side-menu li .sub-menu li.active {
  color: var(--secondary-color);
  background: url(../images/nav-bullet-active.jpg) 17px 18px no-repeat;
}
.nav-side-menu .sidebar-arrow {
  display: none;
}

/* ----------------------------------- news-event ----------------------------------- */
.news_events {
  border-bottom: 1px #777 solid;
  padding-bottom: 7px;
  padding-top: 15px;
  margin-bottom: 10px;
}
/* .single-news
{
  border-bottom: none;
} */
.news_events a {
  color: #337ab7;
}
.news_events a:hover {
  color: #23527c;
}
.news_date {
  display: block;
  font-size: 13px;
  margin: 5px 0 10px;
}
.read_link {
  font-size: 13px;
  font-weight: bold;
}
/* .readmore a {
  position: relative;
  font-weight: 600;
}

.readmore a::after {
  content: "→";
  margin-left: 8px;
  transition: 0.3s;
}

.readmore a:hover::after {
  margin-left: 15px;
} */

/* ----------------------------------- news-event ----------------------------------- */
.map {
  overflow: hidden;
  width: 100%;
  min-height: 400px;
  resize: none;
}
.map iframe {
  width: 100%;
  min-height: 400px;
}

/*---------------------------Hover Certificate and Catalogue-------------------------*/
.gallbox {
  max-width: 300px;
  margin: 0 auto 30px;
}
.lighttext {
  display: block;
  text-align: center;
  color: #3171ae;
  font-size: 14px;
  line-height: normal;
  margin-top: 10px;
}
.hovereffect {
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
  border-radius: 6px;
  -webkit-box-shadow: 4px 5px 11px -1px rgba(0,0,0,0.5); box-shadow: 4px 5px 11px -1px rgba(0,0,0,0.5);
  margin: 0 5px;
}

/*Hover Effect Mismatch Correct Code According to BB*/
/*.hovereffect {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    float: left;*/
/*    overflow: hidden;*/
/*    position: relative;*/
/*    text-align: center;*/
/*    cursor: default;*/
/*}*/


.hovereffect .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.hovereffect img {
  display: block;
  position: relative;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  /* Custom Here */
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hovereffect h4 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 17px;
  background: rgba(79, 135, 232, 0.6);
  -webkit-transform: translatey(-100px);
  -ms-transform: translatey(-100px);
  transform: translatey(-100px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding: 10px;
}

.hovereffect a.info {
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin: 50px 0 0;
  padding: 7px 14px;
}

.hovereffect a.info:hover {
  box-shadow: 0 0 5px #fff;
}

.hovereffect:hover img {
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.hovereffect:hover .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
}

.hovereffect:hover h4,
.hovereffect:hover a.info {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-transform: translatey(0);
  -webkit-transform: translatey(0);
  transform: translatey(0);
}

.hovereffect:hover a.info {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.enquirycard {
  border-color: #337ab7;
}

.enquirycard .card-header {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

/*---------------------------owl carousel-------------------------*/
#carouselGall .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e");
}
#carouselGall .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
}
#carouselGall .carousel-control-next,
#carouselGall .carousel-control-prev {
  width: 32px;
  height: 32px;
  top: 12px;
}
#carouselGall .carousel-control-prev {
  left: 10px;
}
#carouselGall .carousel-control-next {
  right: 10px;
}

.heading-board {
  background-color: #f6fbfc;
  text-align: center;
  padding: 10px;
}
.owl-carousel-wrap {
  position: relative;
}
.owl-carousel-wrap .owl-nav {
  position: absolute;
  top: 14px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.owl-carousel-wrap .owl-carousel .owl-nav button.owl-next,
.owl-carousel-wrap .owl-carousel .owl-nav button.owl-prev {
  padding: 6px 12px !important;
  font-size: 40px;
  line-height: 15px;
}
.owl-carousel-wrap .owl-carousel .owl-nav button span {
  display: inline-block;
}

.notfound {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 30px 0;
}
.site-map ul.default {
  max-height: 450px;
  overflow-y: auto;
}
.site-map ul.default li ul {
  margin: 0;
}
.site-map a {
  color: #eb7f27;
  text-decoration: none;
}
.site-map a {
  color: #eb7f27;
  text-decoration: none;
}
.site-map a:hover {
  color: #ca6e24;
}

ul.default::-webkit-scrollbar {
  width: 2px;
}

ul.default::-webkit-scrollbar-track {
  background: transparent;
  border-left: 1px solid #f7cf85;
}

ul.default::-webkit-scrollbar-thumb {
  background: #b57600;
}

ul.default::-webkit-scrollbar-thumb:hover {
  /*background: #555;*/
}





/* ------------------------------------- RESPONSIVE STYLE ------------------------------------- */
/* 4K & Ultrawide Desktops (1600px+) */
@media (min-width: 1600px) {
}
@media (min-width: 1400px) {
}
@media (min-width: 1200px) {
  
}
@media (min-width: 992px) {
  header .container {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .navbar-collapse {
    position: static;
    top: inherit;
    left: inherit;
    width: inherit;
    background-color: transparent;
    padding: 0;
    border-bottom: 0px #eb7f27 solid;
  }
  .navbar-nav > li > .dropdown-menu {
    background: #003399;
    border-bottom: 3px #eb7f27 solid;
    border-radius: 0;
    color: #fff;
    top: 63px;
  }
  .navbar-nav > li > .dropdown-menu a,
  .navbar-nav > li > .dropdown-menu .dropdown-item {
    color: #fff;
  }
  .navbar-nav > li > .dropdown-menu a:hover,
  .navbar-nav > li > .dropdown-menu a:focus,
  .navbar-nav > li > .dropdown-menu .dropdown-item:hover,
  .navbar-nav > li > .dropdown-menu .dropdown-item:focus {
    color: #eb7f27;
  }
  .navbar-nav > li > .mega-dropdown-menu {
    top: 100%;
  }
  .navbar-nav .deskhide {
    display: none !important;
  }
  .navbar-nav .deskview {
    display: block !important;
  }
  .navbar .dropdown-header {
    color: #fff;
    font-size: 19px;
    margin-bottom: 15px;
    border-bottom: 1px solid #1f52b5;
  }
  .mega-dropdown-menu {
    padding: 40px 20px;
  }
  .mega-dropdown-menu p {
    color: #fff;
    text-transform: none;
    padding: 0;
  }
  .mega-dropdown-menu ul {
    padding: 0;
  }
  .mega-dropdown-menu ul li {
    padding: 0;
  }
  .mega-dropdown-menu ul li a {
    color: #fff;
  }
  .navbar-header {
    padding: 0;
  }
  .subfooter-about {
    padding: 0 20px 0 0;
  }
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
  .footerlinks {
    justify-content: end;
    align-items: center;
  }
  .footer p {
    padding-bottom: 5px;
    text-align: left;
  }
  .title-area {
    padding-left: 25%;
  }
}

/* Large Tablets / Landscape (992px & 1199px) */
@media (max-width: 1199px) {
  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    width: 100%;
    max-width: inherit;
  }
}

/* Tablet devices (portrait & landscape) */
@media (min-width: 768px) and (max-width: 1024px) {
}
/* Tablets Portrait (768px & 991px) */
@media (max-width: 991px) {
  header {
    position: relative;
    z-index: 9999;
  }
  body.menu-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
  }
  .menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

  .menu-backdrop.show {
    opacity: 1;
    visibility: visible;
  }
  .navbar-nav .dropdown-menu {
    border: 0px;
    padding: 0;
  }
  .nav-side-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.4); /* overlay background */
    transition: left 0.3s ease;
    margin: 0;
  }
  .nav-side-menu .menu-list {
    width: 260px;
    height: 100%;
    background: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* When active */
  .nav-side-menu.open {
    left: 0;
  }
  .nav-side-menu.open::before {
    left: 0;
  }

  /* Arrow button — appended to body by JS, truly fixed to viewport */
  .sidebar-arrow {
    position: fixed;
    left: 0;
    top: 40%;
    z-index: 10000;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 20px;
    color: #fff;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    cursor: pointer;
    transition: left 0.3s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .sidebar-arrow i {
    width: 15px;
    height: 18px;
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36.5 60.5'%3E%3Cpath fill='%23ffffff' fill-rule='evenodd' clip-rule='evenodd' d='M9.4 3.8l26.5 26.5c.3.3.3.8 0 1.1L9.4 58.1c-.3.2-.7.2-1.1 0l-5.9-5.9 20.8-20.8c.2-.2.2-.7 0-1.1L2.5 9.7l5.9-5.9c.3-.3.7-.3 1 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px 18px;
  }
  .sidebar-arrow.open {
    left: 260px;
  }
  /* rotate arrow icon when open */
  .sidebar-arrow.open i {
    transform: rotate(180deg);
  }
  .mobile-nav {
    display: block;
    border-top: 2px #003399 solid;
  }
  .mobile-search {
    display: block;
    padding: 0 0 15px;
  }
}

/* Mobile Landscape */
@media (max-width: 767px) {
  .homeslide .row {
    min-height: 350px;
    padding: 30px;
    text-align: center;
  }
  .homeslide .col-lg-6:first-child {
    padding: 0 3% 0 3%;
  }
  .homeslide .col-lg-6:last-child {
    padding: 0 3% 0 3%;
  }
  .homeslide h2 {
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 28px;
  }
  .homeslide p {
    color: #fff;
    font-size: 18px;
    border-bottom: 0;
    line-height: 25px;
  }
  /*.right-panel .featured-box {
    max-width: 300px;
    margin: 0 auto 30px auto;
  }*/
}

/* Mobile Portrait */
@media (max-width: 640px) {
  header .navbar-brand img {
    max-height: 40px;
  }
  ul.grouped-list li a {
    flex-direction: column;
  }
  ul.grouped-list li .shortTitle,
  ul.grouped-list li .desc {
    width: 100%;
  }
}

/* Small Phones  */
@media (max-width: 480px) {
  .homeslide .row {
    min-height: 500px;
    padding: 30px;
  }
  .homeslide .col-lg-6:first-child {
    padding: 0 0px 30px 0px;
  }
  .homeslide .col-lg-6:last-child {
    padding: 0 0px 30px 0px;
  }
  .homeslide h2 {
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 24px;
  }
  .homeslide p {
    color: #fff;
    font-size: 18px;
    border-bottom: 0;
    line-height: 25px;
  }
}

.img-wrap-left{
  float:left;
  margin:0 25px 18px 0;
  max-width:320px;
  height:auto;
}

.img-wrap-right{
  float:right;
  margin:0 0 18px 25px;
  max-width:320px;
  height:auto;
}

.img-center{
  display:block;
  margin:20px auto;
  max-width:100%;
}

.img-shadow{
  box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.img-border{
  border:4px solid #eee;
  padding:4px;
}

.entry-content::after,
.mce-content-body::after{
  content:"";
  display:block;
  clear:both;
}

html {
  overflow-y: scroll;
}

body.modal-open {
  padding-right: 0 !important;
  overflow: hidden !important;
}

.img-wrapper {
    display: inline-block;
    max-width: 100%;
}

.img-wrapper img {
    width: auto;
    max-width: 100%;
    height: auto;
}
.cs-hover.hovereffect
{
  border-radius: 0 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

/* Remove page/modal scrollbars */
body.modal-open {
    overflow: hidden !important;
    padding-right: 0 !important;
}

.modal {
    padding: 0 !important;
    overflow: hidden !important;
}

.modal-dialog {
    margin: 0 auto;
}

.modal-fit {
    width: auto;
    max-width: fit-content;
}

.modal-content,
.modal-body {
    /* margin: 0;
    padding: 0;
    line-height: 0;
    overflow: hidden; */
}

/* Perfect image fit */
.popup-image {
    display: block;
    max-width: 96vw;
    max-height: 96vh;
    width: auto;
    height: auto;
}

/* Close button */
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    background-color: #fff;
    border-radius: 50%;
    padding: 8px;
}
/*----------PANEL FOR HISTORY---------------------*/

.panel-image img.panel-image-preview {
    width: 100%;
    border-radius: 4px 4px 0px 0px;
}

.panel-heading ~ .panel-image img.panel-image-preview {
    border-radius: 0px;
}

.panel-image ~ .panel-body,
.panel-image.hide-panel-body ~ .panel-body {
    overflow: hidden;
}

.panel-image ~ .panel-footer a {
    padding: 0px 10px;
    font-size: 1.3em;
    color: rgb(100, 100, 100);
}

.panel-image.hide-panel-body ~ .panel-body {
    height: 0px;
    padding: 0px;
}

.year {
    font-size: 14px !important;
    word-break: break-word !important;
}
/*----------END PANEL FOR HISTORY---------------------*/
/*-------------New Panel History------------------------------*/

.timeline {
    position: relative;
    padding: 21px 0px 10px;
    margin-top: 4px;
    margin-bottom: 30px;
    margin-left: 50px;
    max-width: 90%;
}

    .timeline .line {
        position: absolute;
        width: 4px;
        display: block;
        background: #777;
        top: 0px;
        bottom: 0px;
        margin-left: -26px;
    }

    .timeline .separator {
        border-top: 1px solid #777;
        padding: 5px;
        padding-left: 40px;
        font-style: italic;
        font-size: .9em;
        margin-left: 30px;
    }

    .timeline .line::before {
        top: -4px;
    }

    .timeline .line::after {
        bottom: -4px;
    }

    .timeline .line::before,
    .timeline .line::after {
        content: '';
        position: absolute;
        left: -4px;
        width: 12px;
        height: 12px;
        display: block;
        border-radius: 50%;
        background: #777;
    }

    .timeline .panel {
        position: relative;
        margin: 10px 0px 21px 7px;
        clear: both;
    }

        .timeline .panel::before {
            position: absolute;
            display: block;
            top: 8px;
            left: -24px;
            content: '';
            width: 0px;
            height: 0px;
            border: inherit;
            border-width: 12px;
            border-top-color: transparent;
            border-bottom-color: transparent;
            border-left-color: transparent;
        }

        .timeline .panel .panel-heading.icon * {
            font-size: 20px;
            vertical-align: middle;
            line-height: 40px;
        }

        .timeline .panel .panel-heading.icon {
            position: absolute;
            left: -57px;
            display: block;
            width: 40px;
            padding: 0px;
            border-radius: 5px;
            text-align: center;
            float: left;
            min-height: 40px;
        }

    .timeline .panel-outline {
        border-color: transparent;
        background: transparent;
        box-shadow: none;
    }

        .timeline .panel-outline .panel-body {
            padding: 10px 0px;
            text-align: justify;
            text-justify: inter-word;
        }

        .timeline .panel-outline .panel-heading:not(.icon),
        .timeline .panel-outline .panel-footer {
            display: none;
        }

.justify {
    text-align: justify;
    text-justify: inter-word;
}

.year {
    font-size: 14px !important;
    word-break: break-word !important;
}

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05)
}

.panel-body {
    padding: 15px
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.panel-heading>.dropdown .dropdown-toggle {
    color: inherit
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit
}

.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a {
    color: inherit
}

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel>.list-group,.panel>.panel-collapse>.list-group {
    margin-bottom: 0
}

.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0
}

.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.panel-heading+.list-group .list-group-item:first-child {
    border-top-width: 0
}

.list-group+.panel-footer {
    border-top-width: 0
}

.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table {
    margin-bottom: 0
}

.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption {
    padding-right: 15px;
    padding-left: 15px
}

.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child {
    border-top-left-radius: 3px
}

.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child {
    border-top-right-radius: 3px
}

.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child {
    border-bottom-left-radius: 3px
}

.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child {
    border-bottom-right-radius: 3px
}

.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body {
    border-top: 1px solid #ddd
}

.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th {
    border-top: 0
}

.panel>.table-bordered,.panel>.table-responsive>.table-bordered {
    border: 0
}

.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child {
    border-left: 0
}

.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child {
    border-right: 0
}

.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th {
    border-bottom: 0
}

.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th {
    border-bottom: 0
}

.panel>.table-responsive {
    margin-bottom: 0;
    border: 0
}

.panel-group {
    margin-bottom: 20px
}

.panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px
}

.panel-group .panel+.panel {
    margin-top: 5px
}

.panel-group .panel-heading {
    border-bottom: 0
}

.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body {
    border-top: 1px solid #ddd
}

.panel-group .panel-footer {
    border-top: 0
}

.panel-group .panel-footer+.panel-collapse .panel-body {
    border-bottom: 1px solid #ddd
}

.panel-default {
    border-color: #ddd
}

.panel-default>.panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd
}

.panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #ddd
}

.panel-default>.panel-heading .badge {
    color: #f5f5f5;
    background-color: #333
}

.panel-default>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #ddd
}

.panel-primary {
    border-color: #337ab7
}

.panel-primary>.panel-heading {
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7
}

.panel-primary>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #337ab7
}

.panel-primary>.panel-heading .badge {
    color: #337ab7;
    background-color: #fff
}

.panel-primary>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #337ab7
}

.panel-success {
    border-color: #d6e9c6
}

.panel-success>.panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6
}

.panel-success>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #d6e9c6
}

.panel-success>.panel-heading .badge {
    color: #dff0d8;
    background-color: #3c763d
}

.panel-success>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #d6e9c6
}

.panel-info {
    border-color: #bce8f1
}

.panel-info>.panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1
}

.panel-info>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #bce8f1
}

.panel-info>.panel-heading .badge {
    color: #d9edf7;
    background-color: #31708f
}

.panel-info>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #bce8f1
}

.panel-warning {
    border-color: #faebcc
}

.panel-warning>.panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc
}

.panel-warning>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #faebcc
}

.panel-warning>.panel-heading .badge {
    color: #fcf8e3;
    background-color: #8a6d3b
}

.panel-warning>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #faebcc
}

.panel-danger {
    border-color: #ebccd1
}

.panel-danger>.panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1
}

.panel-danger>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #ebccd1
}

.panel-danger>.panel-heading .badge {
    color: #f2dede;
    background-color: #a94442
}

.panel-danger>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #ebccd1
}

/* ----------------------------------- Annual report table ----------------------------------- */
.reports-table {
  font-size: 15px;
}

.reports-table{
    width:100%;
    border-collapse:collapse;
}

.reports-table th,
.reports-table td{
    border:1px solid #dee2e6 !important;
    padding:10px;
    vertical-align:middle;
}

.reports-table tr{
    border:1px solid #dee2e6;
}

.reports-table td:empty{
    border:1px solid #dee2e6;
}

.report-slider-wrap {
  position: relative;
}

.report-slider-wrap .item {
  width: 100%;
}

.swipe ul {
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.swipe ul li:first-child {
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 12px;
}
.swipe ul li:last-child {
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 999;
  right: 0;
  top: 12px;
}

.swipe h2 {
  margin: 0;
}

.swipe .btn {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.heading-board {
  background-color: #f6fbfc;
  text-align: center;
  padding: 10px;
}

.heading-board h2 {
  margin: 0;
  font-size: 30px;
  color: #333;
}

.report-next,
.report-prev {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 28px;
  cursor: pointer;
  color: #222;
}

.report-next {
  justify-self: start;
}

.report-prev {
  justify-self: end;
}

.owl-theme .owl-controls {
  margin-top: 10px;
  text-align: center;
  display: block !important;
}

.owl-theme .owl-controls .owl-buttons div {
  display: inline-block;
  color: #333;
  background: transparent;
  border: 0;
  font-size: 14px;
  line-height: 1;
  padding: 0 10px;
  opacity: 1;
}

.owl-theme .owl-controls .owl-buttons div:hover {
  color: #2f66b3;
}

.nav-tabs > li {
  margin-right: 0;
}

.nav-tabs > li > a {
  padding: 10px 16px;
  background: transparent;
  border: none;
  color: #2f66b3;
  display: block;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover {
  background: #2f66b3;
  color: #fff;
}

.tab-content {
  background: #f6fbfc;
  padding: 18px 20px;
  min-height: 130px;
}

.tab-content ul {
  margin: 0;
  padding-left: 30px;
}

.tab-content a {
  color: #2f66b3;
  text-decoration: none;
}

.tab-content a {
    color: #2f66b3;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .tab-pane.active,
.tab-content > .tab-pane.in.active {
  display: block;
}

.form-group {
    position: relative;
}

.form-control {
    padding-right: 45px;
    border: 1px solid #ccc;
}

/* valid only after touched */
.form-group.valid-field .form-control {
    border: 1px solid #3c763d;
}

/* invalid only after touched */
.form-group.invalid-field .form-control {
    border: 1px solid #a94442;
}

.form-group.valid-field::after {
    content: "✔";
    color: #3c763d;
    position: absolute;
    right: 15px;
    top: 24px;
    font-size: 20px;
}

.form-group.invalid-field::after {
    content: "✖";
    color: #a94442;
    position: absolute;
    right: 15px;
    top: 24px;
    font-size: 20px;
}

.wpcf7-not-valid-tip {
    color: #a94442;
    font-size: 14px;
}
.card-header p:empty,
.card-body p:empty {
    display:none;
    margin:0;
}
.wpcf7-form p {
    margin: 0;
    padding: 0;
}

.wpcf7-form p:empty,
.wpcf7-form br {
    display: none;
}

.search-results-box{ padding-left: 0;margin-top:15px }
.search-results-box > li{ list-style:none; }
td
{
    vertical-align: middle;
}