@charset "utf-8";

*,
*:after,
*:before {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: normal;
  overflow-x: hidden;
  /* background: #EFF9FF; */
  margin: 0;
  padding: 0;

  background: linear-gradient(90deg, rgba(192, 240, 241, 1) 0%, rgba(255, 255, 255, 1) 46%, rgba(192, 240, 241, 1) 100%);
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a,
a:focus,
a:hover {
  text-decoration: none;
  outline: none;
  -moz-transition: 300ms ease-in-out;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

::-webkit-scrollbar {
  width: 4px;
}

body::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #e1e1e1;
}

::-webkit-scrollbar-thumb {
  background: var(--theme-color);
}

::-moz-selection {
  background-color: var(--primary-color);
  color: var(--white);
}

::-webkit-selection {
  background-color: var(--primary-color);
  color: var(--white);
}

::selection {
  background-color: var(--primary-color);
  color: var(--white);
}

@-moz-document url-prefix() {
  html {
    scrollbar-width: thin;
    scroll-behavior: smooth;
    scrollbar-color: var(--theme-color) #e1e1e1;
  }
}

@media screen and (min-width:1366px) {
  .container {
    max-width: 1300px
  }
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin-bottom: 20px;
}

h1 {
  font-size: 40px;
  line-height: 1.1;
}

h2 {
  font-size: 35px;
  line-height: 1.1;
}

h3 {
  font-size: 30px;
  line-height: 1.1;
}

h4 {
  font-size: 25px;
  line-height: 1.1;
}

h5 {
  font-size: 20px;
  line-height: 1.1;
}

h6 {
  font-size: 18px;
  line-height: 1.1;
}

p {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  margin: 0 0 20px;
}


:root {
  --theme-color: #0259ca;
  --primary-color: #0259ca;
  --black: #000;
  --white: #fff;
}

.rj-btn {
  min-width: 110px;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 500;
  color: #ffffff;
  display: inline-block;
  background: #178800;;
  border-radius: 5px;
  padding: 12px 16px;
  outline: none;
  border: 1px solid transparent;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.rj-btn:hover {
  color: var(--white);
  /* background: var(--primary-color); */
  background: #0259ca;
}

/* ===============Owl-carousel=============== */
.owl-nav [class*="owl-"] {
  position: absolute;
  z-index: 5;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 6px;
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  /* background: var(--theme-color);
  border: 1px solid var(--theme-color); */
  background: #FECB00;
  border: 1px solid #FECB00;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  cursor: pointer;
  opacity: 1;
  -moz-transition: 300ms ease-in-out;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}

.owl-nav .owl-prev {
  left: 0px;
}

.owl-nav .owl-next {
  right: 0px;
}

.owl-next i {
  margin-left: 2px;
}

.owl-nav .owl-prev.disabled,
.owl-nav .owl-next.disabled {
  cursor: not-allowed;
  opacity: 0.4;
  background: #dfdfdf;
}

.owl-nav [class*="owl-"]:not(.disabled):hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--black);
  opacity: 1;
}

.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 50px;
  line-height: 0;
}

.owl-carousel .owl-dots .owl-dot {
  min-width: auto;
  width: 12px;
  height: 12px;
  border: 2px solid transparent;
  background: var(--theme-color);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin: 0px 6px;
  opacity: 0.2;
  -moz-transition: 300ms ease-in-out;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}

.owl-dot.active+.owl-dot {
  opacity: 0.4;
}

.owl-carousel .owl-dots .owl-dot.active {
  opacity: 1;
}

/* ===============Owl-carousel=============== */
/*==== Header Start ====*/
.header {
  /*background: #EFF9FF;*/
  /* background: #ffd784; */
  background: #0259ca;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 9;
  transition: all 0.6s;
  padding: 0;
  margin: 0;
  border-bottom: 2px solid #fecb00;
}

.header .container {
  max-width: 100%;
}

.header .tp-head {
  /* background: var(--theme-color); */
  background: #fecb00;
  padding: 5px 0px;
}

.header .top-pnl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .top-pnl .lt-side {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.header .top-pnl .lt-side .date {
  padding-right: 20px;
}

.header .top-pnl .lt-side .date ul li {
  font-size: 14px;
  line-height: 1.1;
  font-weight: 500;
  /* color: var(--white); */
  color: #292929;
  display: inline-block;
}

.header .top-pnl .lt-side .top-nv {
  padding: 0;
}

.header .top-pnl .lt-side .top-nv ul li {
  font-size: 14px;
  line-height: 1.1;
  font-weight: 500;
  color: var(--white);
  display: inline-block;
  margin-right: 20px;
}

.header .top-pnl .lt-side .top-nv ul li:last-child {
  margin-right: 0;
}

.header .top-pnl .lt-side .top-nv ul li a {
  /* color: var(--white); */
  color: #0f0e0e;
  display: block;
  transition: all 0.6s;
}

.header .top-pnl .lt-side .top-nv ul li a i {
  padding-right: 5px;
}

.header .top-pnl .lt-side .top-nv ul li a:hover {
  /* color: var(--white); */
  color: #201e1e;
}

.header .top-pnl .lt-side .top-nv ul li.active a {
  background: #4857B4;
  border-radius: 4px;
  padding: 7px 10px;
}

.header .top-pnl .rt-side {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.header .top-pnl .rt-side .sc-read {
  padding-right: 35px;
}

.header .top-pnl .rt-side .sc-read a {
  font-size: 14px;
  line-height: 1.1;
  font-weight: 500;
  color: var(--white);
  display: inline-block;
  transition: all 0.6s;
}

.header .top-pnl .rt-side .sc-read a img {
  margin-right: 5px;
}

.header .top-pnl .rt-side .sc-read a:hover {
  color: var(--primary-color);
}

.header .top-pnl .rt-side .tx-size {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.header .top-pnl .rt-side .tx-size h5 {
  font-size: 14px;
  line-height: 1.1;
  font-weight: 500;
  /* color: var(--white); */
  color: #1e1d1d;
  margin: 0 8px 0 0;
}

.header .top-pnl .rt-side .tx-size ul li {
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  display: inline-block;
  margin-right: 5px;
}

.header .top-pnl .rt-side .tx-size ul li:last-child {
  margin-right: 0;
}

.header .top-pnl .rt-side .tx-size ul li:nth-child(1) a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  width: 22px;
  height: 22px;
  border-radius: 8px;
  /* border: 1px solid #4857B4;
  background: #2B3990; */

  border: 1px solid #0259CA;
  background: #0259CA;
}

.header .top-pnl .rt-side .tx-size ul li:nth-child(2) a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  width: 25px;
  height: 25px;
  border-radius: 8px;
  /* border: 1px solid #4857B4;
  background: #4857B4; */
  border: 1px solid #0259CA;
  background: #0259CA;
}

.header .top-pnl .rt-side .tx-size ul li:nth-child(3) a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  /* border: 1px solid #4857B4;
  background: #2B3990; */
  border: 1px solid #0259CA;
  background: #0259CA;
}

.header .top-pnl .rt-side .search-btn {
  margin-right: 35px;
}

.header .top-pnl .rt-side .search-btn a {
  font-size: 14px;
  line-height: 1.1;
  font-weight: 500;
  color: var(--white);
  display: inline-block;
  transition: all 0.6s;
}

.header .top-pnl .rt-side .search-btn a i {
  margin-left: 5px;
}

.header .top-pnl .rt-side .search-btn a:hover {
  color: var(--white);
}

.header .top-pnl .rt-side .lang-sw ul li {
  font-size: 14px;
  line-height: 1.1;
  font-weight: 500;
  display: inline-block;
}

.header .top-pnl .rt-side .lang-sw ul li a {
  position: relative;
  /* color: var(--white); */
  color: #000;
  display: inline-block;
  padding-right: 10px;
  margin-right: 10px;
  transition: all 0.6s;
}

.header .top-pnl .rt-side .lang-sw ul li a:after {
  position: absolute;
  content: '';
  width: 1px;
  height: 100%;
  background: #5666C8;
  right: 0;
  top: 0;
}

.header .top-pnl .rt-side .lang-sw ul li:last-child a {
  padding-right: 0;
  margin-right: 0;
}

.header .top-pnl .rt-side .lang-sw ul li:last-child a:after {
  display: none;
}

.header .top-pnl .rt-side .lang-sw ul li a:hover {
  /* color: var(--white); */
  color: #000;
}

.header .btm-pnl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .btm-pnl .lt-side {
  display: flex;
  align-items: center;
}

.header .btm-pnl .lt-side .logo {
  position: relative;
  width: 200px;
  padding: 5px 5px;
  margin: 0 0 0 -12px;
}

.header .btm-pnl .lt-side .logo a {
  display: block;
}

.header .btm-pnl .lt-side .logo a img {
  width: 100%;
  height: auto;
}

/* .header .btm-pnl .lt-side .logo:after {
  position: absolute;
  content: '';
  width: 1px;
  height: 100%;
  background: #E7E7E7;
  right: -9px;
  top: 0;
} */

.header .btm-pnl .lt-side .logo::after {
  position: absolute;
  content: '';
  width: 1px;
  height: 100%;
  /* background: #CBD7FB; */
  background: #FFF;
  right: -9px;
  top: 0;
  padding: 0px 3px 2px 2px;
}

/* .header .btm-pnl .lt-side h3 {
  font-size: 16px;
  line-height: 1.2;
  color: var(--black);
  margin: 0;
  padding-left: 21px;
} */

.header .btm-pnl .lt-side h3 {
  font-size: 17px;
  line-height: 1.2;
  /* color: #2b3990; */
  color: #fff;
  margin: 0;
  padding-left: 20px;
  font-weight: bold;
}

.header .btm-pnl .lt-side h3 span {
  display: block;
}

.header .btm-pnl .rt-side {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.header .btm-pnl .rt-side .navigation {
  padding: 0;
}

.header .btm-pnl .rt-side .navigation ul li {
  position: relative;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 400;
  display: inline-block;
  border: 2px solid #fff;
  text-align: center;
  padding: 10px 15px;
  border-radius: 20px;
}

.header .btm-pnl .rt-side .navigation ul li a {
  position: relative;
  /* color: var(--black); */
  color: #fff;
  display: block;
  transition: all 0.6s;
  /* margin-right: 30px; */
  margin-right: 0px;
}

.header .btm-pnl .rt-side .navigation ul li:hover {
  background: #fecb00;
  color: #0d0c0c;
}

.header .btm-pnl .rt-side .navigation ul li>a:after {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  background: var(--theme-color);
  left: 0;
  bottom: -4px;
  transition: all 0.6s;
}

.header .btm-pnl .rt-side .navigation ul li>a:hover:after {
  width: 100%;
}

.header .btm-pnl .rt-side .navigation ul li a i {
  /* position: absolute;
  right: -15px;
  top: 4px; */
  font-size: 12px;
}

.header .btm-pnl .rt-side .navigation ul li a:hover {
  /* color: var(--theme-color); */

  /* color: #0259CA; */
  color: #000;
}

.header .navigation .sub-menu {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  /* background: #fff; */
  background: #0259ca;
  position: absolute;
  visibility: hidden;
  border-radius: 15px 0 15px 0;
  display: block;
  width: 260px;
  border: none;
  z-index: 99;
  opacity: 0;
  top: 0px;
  left: 0;
  transform: scale(0);
}

.header .btm-pnl .rt-side .navigation ul li ul.sub-menu li {
  border: 0px solid #fff !important;
  text-align: left !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.header .navigation .sub-menu li {
  display: block !important;
}

.header .navigation .sub-menu li a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 15px 20px;
  margin-right: 0 !important;
}

.header .navigation ul li:hover .sub-menu {
  /* top: 101%; */

  top: 30px;
  opacity: 1;
  margin-top: 0;
  visibility: visible;
  transform: scale(1);
}

.header .navigation .sub-menu li:last-child a {
  border-bottom: 0;
}

.header .navigation .sub-menu a:after {
  display: none;
}

.header .btm-pnl .rt-side .toll-fr {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 0 10px 15px;
}

.header .btm-pnl .rt-side .toll-fr:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: #E7E7E7;
  width: 1px;
  height: 100%;
}

.header .btm-pnl .rt-side .toll-fr .icon {
  width: 33px;
}

.header .btm-pnl .rt-side .toll-fr .icon img {
  width: 100%;
}

.header .btm-pnl .rt-side .toll-fr .text {
  width: calc(100% - 33px);
  padding-left: 12px;
}

.header .btm-pnl .rt-side .toll-fr .text h5 {
  font-size: 14px;
  line-height: 1;
  color: var(--white);
  font-weight: 500;
  background: var(--primary-color);
  border-radius: 6px;
  padding: 3px 6px;
  margin-bottom: 2px;
}

.header .btm-pnl .rt-side .toll-fr .text a {
  font-size: 15px;
  line-height: 1;
  color: var(--black);
  font-weight: 500;
  display: inline-block;
  transition: all 0.6s;
}

.header .btm-pnl .rt-side .toll-fr .text a:hover {
  color: var(--primary-color);
}

.header.is_sticky {
  /* transform: translateY(-42px); */
  z-index: 9999;
}

.mob-open {
  font-size: 20px;
  color: var(--white);
  display: none;
}

.mob_close_menu {
  display: none;
}

.mob_close_menu i {
  font-size: 20px;
  background: var(--theme-color);
  display: block;
  padding: 10px 12px;
  text-align: right;
  color: var(--white);
}

/*==== Banner Start ====*/
.banner {
  position: relative;
}

.wb-news {
  position: absolute;
  left: 0;
  bottom: 10%;
  width: 100%;
}

.wb-news .inn {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 6px;
}

.wb-news .inn .lt-side {
  width: 110px;
  background: var(--primary-color);
  border-radius: 6px;
  padding: 8px 0 8px 15px;
}

.wb-news .inn .lt-side h4 {
  font-size: 18px;
  color: var(--black);
  font-weight: 500;
  margin-bottom: 0;
}

.wb-news .inn .rt-side {
  width: calc(100% - 110px);
  padding-right: 20px;
}

.wb-news .inn .rt-side ul li {
  font-size: 15px;
  font-weight: 400;
  display: inline-block;
}

.wb-news .inn .rt-side ul li a {
  position: relative;
  color: var(--black);
  display: inline-block;
  padding-left: 15px;
  transition: all 0.6s;
}

.wb-news .inn .rt-side ul li a:hover {
  color: var(--theme-color);
}

.wb-news .inn .rt-side ul li a:after {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  top: 8px;
  left: 0;
  background: var(--black);
  border-radius: 50%;
}

/*==== Slider Banner Start ====*/
.common_banner {
  position: relative;
  z-index: 2;
}

.banner_img {
  margin: 0;
  position: relative;
  z-index: 1;
  padding-top: 30%;
}

.banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.bannertext {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  z-index: 2;
  transform: translateY(-50%);
  color: var(--white);
}

.bannertext .qu-icn {
  width: 50px;
  height: 50px;
  background: var(--white);
  color: #212529;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.homeslider .bannertext-in {
  max-width: 610px;
}

.bannertext .heading {
  font-weight: 500;
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 30px;
}

.person-name {
  text-align: right;
  margin-top: 18px;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.5px;
  margin-right: 5vw;
}

/*==== Slider Banner Ends ====*/

/*==== Inner Banner Ends ====*/
.innerBanner {
  background-repeat: no-repeat;
  background-size: cover;
  /* padding: 120px 0px; */
  /* padding: 50px 0px; */
  padding: 25px 0px;
}

.pageTitle {
  /* font-size: 42px; */
  font-size: 35px;
  font-weight: 700;
}

/*==== Inner Banner Ends ====*/

/*==== Notice News Start ====*/
.marqueeNews {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 1;
}

.marqueeNewsWrap {
  overflow: hidden;
  /* background: var(--white); */
  background: #fecb00;
  border-radius: 6px;
}

.highlightText {
  display: flex;
  align-items: center;
  column-gap: 6px;
  flex-shrink: 0;
  font-size: 18px;
  /* background: #0e195e; */
  /* background: #0259ca; */
  background: #897562;
  color: var(--white);
  font-weight: 500;
  border-radius: 6px;
  padding: 8px 16px;
}

.flickity-slider {
  display: flex;
  column-gap: 20px;
}

.b-slider {
  overflow-x: hidden;
  min-width: 100%;
  outline: 0;
}

.b-slider_slide {
  flex-shrink: 0;
  white-space: nowrap;
  margin-right: 40px;
}

.b-slider_ref {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  position: relative;
  z-index: 1;
}

.b-slider_ref::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  margin-right: 8px;
  background-color: currentColor;
}

/*==== Notice News Ends ====*/

/*==== Job Search Ends ====*/
.jobsearch {
  /* background: #d3d3d3; */
  /* background: url('https://bopter.gov.in/assets/web/images/bg/dots-bg.png');
   */
  background: #0259ca;
  padding: 24px;
}

.jobsearch .from-row {
  display: flex;
  gap: 12px;
  max-width: 1000px;
  margin-inline: auto;
}

.jobsearch .from-row>.from-group {
  flex: 1;
}

.jobsearch .from-row>.from-group:has(.rj-btn) {
  flex: 0 0 auto;
}

.form-control {
  height: 46px;
  font-size: 15px;
}

/*==== Job Search Ends ====*/

.cust-paging {
  position: absolute;
  left: 0;
  bottom: 25%;
  width: 100%;
}

.cust-paging .news__dots ul li {
  display: inline-block;
  font-size: 0;
  width: 9px;
  height: 9px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.50);
  margin-right: 8px;
  cursor: pointer;
}

.cust-paging .news__dots ul li:last-child {
  margin-right: 0;
}

.cust-paging .news__dots ul li.slick-active {
  background: var(--white);
}

/*==== Aikyasre Start ====*/
.achievement {
  /* background: url(../images/achivmentbg.jpg) no-repeat left top / cover var(--theme-color); */
  background: #0259ca;
  border-radius: 10px;
  padding: 50px 40px 25px;
  margin: 0 0 50px;
}

.achievement .title {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.achievement .title h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.achievement .title span {
  position: relative;
  color: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: #2B3990;
  display: inline-block;
  padding: 2px 10px;
  z-index: 1;
}

.achievement .title:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 14px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.achievement .box {
  display: flex;
  align-items: center;
  border-radius: 6px;
  background: var(--white);
  margin-bottom: 25px;
  padding: 20px 25px;
  height: 170px;
  box-shadow: rgb(0, 0, 0) 0px 7px 29px 0px;
}

.achievement .box .lt-side {
  width: 100%;
  /* border-right: 5px solid rgba(86, 7, 233, 0.884); */
  border-right: 5px solid rgba(157, 84, 7, 0.88);
  padding: 0;
}

.achievement .box .lt-side h5 {
  /* color: var(--black); */
  /* color: #e14a0f; */
  color: #0259ca;
  display: inline-block;
  border-radius: 5px;
  background: var(--white);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.07);
  padding: 6px 10px;
  margin-bottom: 20px;
  font-weight: bold;
}

.achievement .box .lt-side p {
  line-height: 1;
  color: var(--black);
  margin-bottom: 10px;
}

.achievement .box .lt-side h6 {
  font-size: 15px;
  color: #6A6A6A;
  margin-bottom: 0;
}

.achievement .box .lt-side h6 span {
  font-size: 20px;
  /* color: #2B3990; */
  color: #ffffff;
  ;
  font-weight: 500;
  margin-left: 25px;

  float: inline-end;
  padding: 10px 20px 10px 20px;
  font-weight: bold;
  /* background: rgb(33, 1, 151); */
  background: #897562;
  margin-right: 9px;
  margin-top: -25px;
}

.achievement .box .rt-side {
  width: 30%;
  text-align: center;
  padding: 0;
}

.achievement .box .rt-side h6 {
  font-size: 15px;
  color: var(--black);
  margin-bottom: 5px;
}

.achievement .box .rt-side span {
  font-size: 15px;
  line-height: 1.2;
  color: var(--white);
  display: inline-block;
  background: var(--primary-color);
  border-radius: 6px;
  padding: 3px 5px;
  margin-bottom: 15px;
}

.achievement .box .rt-side h5 {
  color: var(--black);
  font-weight: 500;
  margin-bottom: 0;
}

.dist-service {
  padding-bottom: 50px;
}

.dist-service .box {
  text-align: center;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: var(--white);
  overflow: hidden;
  padding: 30px;


}

.dist-service .box h5 {
  color: var(--black);
  margin-bottom: 20px;
}

.dist-service .box h5 span {
  font-size: 16px;
  display: block;
  padding-top: 10px;
}

/*==== Aikyasre Ends ====*/

/*==== Job Post Start ====*/
.tabs {
  margin: 0px;
  padding: 0px;
  list-style: none;
  border-bottom: 1px solid #0259ca;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tabs li {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  line-height: normal;
  border-radius: 4px 0 0 0;
  text-shadow: 0 0 currentColor;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  color: white;
}


.tabs li:hover {
  /* background: var(--primary-color);
    color: #ffd700; */

  background: #897562;
  color: #fff;
}


/* .tabs li.current {
  background: var(--theme-color);
  color: var(--white);
  text-shadow: none;

  
} */

.tabs li.current {
  background: #897562;
  color: var(--white);
  text-shadow: none;
}

.tab-content {
  display: none;
}

.tab-content.current {
  display: inherit;
}

.jobTabsContent {
  background-color: #FFF7F1;
  padding: 0px 10px 10px 10px;
  margin: 0px 0px 0px 0px;
}

.jobTabsContent .row {
  row-gap: 12px;
}

.jobTabsContent [class*="col-"] {
  border-right: 1px solid #EEF2F6;
}

.jbBox {
  display: grid;
  align-content: center;
  justify-content: center;
  text-align: center;
  row-gap: 8px;
  background: var(--white);
  min-height: 100%;
  padding: 20px;
  color: var(--black);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
}

.imgicon {
  max-width: 50px;
  margin-inline: auto;
}

.knowledge .knowledge-slider .slide-arrow::after {
  content: '';
  display: block;
  background: url(../images/arrow.png) no-repeat center;
  background-size: contain;
  width: 14px;
  height: 25px;
}

.knowledge .knowledge-slider .slide-arrow.prev-arrow::after {
  transform: rotate(180deg);
}

/*==== Job Post Ends ====*/

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.25);
  }

  100% {
    box-shadow: 0 0 0 25px rgba(255, 255, 255, 0);
  }
}

/*==== Success Stories Start ====*/
.succ-stories {
  padding: 0 0 50px;
}

.succ-stories .title h2 {
  text-align: center;
  color: var(--black);
  margin-bottom: 0;
  padding-bottom: 50px;
}

.succ-stories .swiper-slide {
  position: relative;
}

.succ-stories .swiper-slide:before {
  position: absolute;
  content: '';
  right: 6%;
  top: 20%;
  background: url(../images/ach-icn1.svg) no-repeat;
  width: 36px;
  height: 25px;
  z-index: 9;
}

.succ-stories .swiper-slide>img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}

.succ-stories .swiper-slide .text-block {
  position: absolute;
  left: 45px;
  bottom: 30px;
  width: 80%;
  z-index: 1;
}

.succ-stories .swiper-slide .text-block .icon {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.succ-stories .swiper-slide .text-block .icon:after {
  position: absolute;
  content: '';
  right: 0;
  bottom: -2px;
  background: url(../images/ach-icn2.svg) no-repeat;
  width: 29px;
  height: 24px;
}

.succ-stories .swiper-slide .text-block .icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.succ-stories .swiper-slide .text-block h3 {
  font-size: 25px;
  color: var(--white);
  margin-bottom: 15px;
}

.succ-stories .swiper-slide .text-block p {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 15px;
}

.succ-stories .swiper-slide:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 10px;
  opacity: 0.5;
  background: #0C133D;
  backdrop-filter: blur(25px);
  transition: all 0.6s;
}

.succ-stories .swiper-slide-active:after {
  display: none;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 28%;
  right: auto;
  width: 55px;
  height: 55px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.6s;
}

.swiper-button-prev::after,
.swiper-rtl .swiper-button-next::after {
  font-size: 22px !important;
  color: var(--black);
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 28%;
  left: auto;
  width: 55px;
  height: 55px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.6s;
}

.swiper-button-next::after,
.swiper-rtl .swiper-button-prev::after {
  font-size: 22px !important;
  color: var(--black);
}

/*==== Un Achievrs Start ====*/
.un-achievrs {
  background: url(../images/unsbg.jpg) no-repeat left top / cover;
  padding: 55px 0;
  margin: 0;
}

.un-achievrs .tab-block {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: #2B3990;
  padding-bottom: 30px;
}

.un-achievrs .tab-block .nav-tabs {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.08) 0%, rgba(43, 57, 144, 0.00) 100%);
  padding: 10px 18px;
}

.un-achievrs .tab-block .nav-tabs li button {
  font-size: 17px;
  line-height: 1;
  font-weight: 400;
  color: var(--white);
  outline: none;
  border: 0;
  background: none;
  border-radius: 10px;
  padding: 5px 15px;
  transition: all 0.6s;
}

.un-achievrs .tab-block .nav-tabs li button img {
  margin-right: 5px;
}

.un-achievrs .tab-block .nav-tabs li button.active {
  color: var(--black);
  background: var(--white);
}

.un-achievrs .tab-block .notice-box {
  width: 98%;
  max-height: 400px;
  overflow-y: scroll;
  padding: 0 50px;
  margin-top: 20px;
}

.un-achievrs .tab-block .notice-box .block:nth-child(1) {
  padding-top: 0;
}

.un-achievrs .tab-block .notice-box .block {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  padding: 22px 0;
}

.un-achievrs .tab-block .notice-box .block p {
  font-size: 16px;
  line-height: 22px;
  color: var(--white);
  margin-bottom: 15px;
}

.un-achievrs .tab-block .notice-box .block span.date {
  font-size: 14px;
  line-height: 1;
  color: var(--white);
  display: inline-block;
  border-radius: 6px;
  background: #4857B4;
  padding: 10px;
}

.un-achievrs .tab-block .notice-box::-webkit-scrollbar {
  width: 2px;
}

.un-achievrs .tab-block .notice-box::-webkit-scrollbar-track {
  border-radius: 50px;
  background: #3745A1;
}

.un-achievrs .tab-block .notice-box::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background: var(--white);
}


.un-achievrs .slider-pnl h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 50px;
}

.un-achievrs .slider-pnl .inn {
  max-width: 405px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.un-achievrs .slider-pnl .inn:after {
  position: absolute;
  content: '';
  right: 0;
  left: 0;
  bottom: -30px;
  background: url(../images/slider-bg.png) no-repeat left bottom / cover;
  border-radius: 10px;
  width: 87%;
  height: 100%;
  z-index: -1;
  margin: 0 auto;
  opacity: 0.8;
}

.un-achievrs .ach-slider {
  background: url(../images/slider-bg.png) no-repeat right top / cover;
  border-radius: 10px;
  padding: 70px 40px 30px;
  filter: drop-shadow(0px 25px 50px rgba(0, 0, 0, 0.05));
}

.un-achievrs .ach-slider .item {
  background: var(--white);
  border-radius: 10px;
  padding: 0 30px 25px;
  margin-top: 30px;
}

.un-achievrs .ach-slider .item .icon {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
  margin-top: -30px;
}

.un-achievrs .ach-slider .item .icon:after {
  position: absolute;
  content: '';
  right: 0;
  bottom: 0;
  background: url(../images/ach-icn2.svg) no-repeat;
  width: 29px;
  height: 24px;
}

.un-achievrs .ach-slider .item .icon img {
  width: 100%;
  height: 100%;
}

.un-achievrs .ach-slider .item h5 {
  color: var(--black);
  margin-bottom: 5px;
}

.un-achievrs .ach-slider .item span {
  font-size: 16px;
  color: #666;
  display: inline-block;
  margin-bottom: 15px;
}

.un-achievrs .ach-slider .item p {
  font-size: 16px;
  line-height: 18px;
  color: var(--black);
  margin-bottom: 15px;
}


.un-achievrs .ach-slider .slide-arrow {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 1px solid #E8E8E8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.un-achievrs .ach-slider .slide-arrow.next-arrow {
  left: calc(50% + 12.5rem);
}

.un-achievrs .ach-slider .slide-arrow.prev-arrow {
  left: calc(50% - 12.5rem);
  transform: translate(-50%, -50%) rotate(180deg);
}

/*====== Knowledge Css ======*/
.knowledge {
  padding: 60px 0 60px;
  margin: 0;
}

.knowledge .title-wrap {
  text-align: center;
}

.knowledge .title-wrap h2 {
  margin-bottom: 10px;
}

.knowledge .title-wrap h6 {
  font-size: 20px;
  color: var(--white);
  /* background: var(--primary-color); */
  background: #897562;
  display: inline-block;
  border-radius: 10px;
  padding: 8px 10px;
}

.knowledge .knowledge-slider .slick-list {
  margin: 0 -15px;
  padding: 50px 0 !important;
}

.knowledge .knowledge-slider .item {
  padding: 0 15px;
  transition: 0.5s;
}

.knowledge .knowledge-slider .item .item-inr {
  text-align: center;
  background: url(../images/knowl-slder-back.png) no-repeat;
  background-size: 100% 100%;
  padding: 40px 0 28px;
}

.knowledge .knowledge-slider .item .item-inr figure {
  text-align: center;
  margin: 0 0 24px;
}

.knowledge .knowledge-slider .item .item-inr figure img {
  margin: 0 auto;
}

.knowledge .knowledge-slider .item .item-inr .text-info h4 {
  font-size: 22px;
  color: var(--black);
  transition: 0.5s;
}

.knowledge .knowledge-slider .item .item-inr .text-info h4 span {
  display: block;
}

.knowledge .knowledge-slider .item .item-inr .text-info a {
  font-size: 17px;
  font-weight: 400;
  color: var(--white);
  /* background: var(--primary-color); */
  background: #0259ca;
  border-radius: 10px;
  transition: 0.5s;
  padding: 10px 18px;
}

.knowledge .knowledge-slider .item .item-inr .text-info a:hover {
  /* background: var(--theme-color); */
  background: #897562;
  color: var(--white);
}

.knowledge .knowledge-slider .item.slick-slide.slick-current.slick-active.slick-center {
  transform: scale(1.1);
  filter: drop-shadow(0px 10px 8px rgba(0, 0, 0, 0.03));
  z-index: 99;
}

/*.knowledge .knowledge-slider .item.slick-slide.slick-current.slick-active.slick-center .item-inr .text-info h4{ font-size:25px; }*/
.knowledge .knowledge-slider .slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 61px;
  height: 61px;
  background: var(--white);
  border: 1px solid #E8E8E8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.knowledge .knowledge-slider .slide-arrow.next-arrow {
  right: 30%;
}

.knowledge .knowledge-slider .slide-arrow.prev-arrow {
  left: 30%;
}

.knowledge .btn-wrap {
  text-align: center;
  margin-top: 40px;
}

.knowledge .btn-wrap a {
  font-size: 17px;
  font-weight: 400;
  color: var(--black);
  text-decoration-line: underline;
  transition: all 0.6s;
}

.knowledge .btn-wrap a:hover {
  color: var(--theme-color);
}

/*==== Video Css ====*/
.video {
  /* background: var(--theme-color); */
  background: #0259CA;
  padding: 60px 0;
}

.video .left-wrap {
  height: 480px;
  border-radius: 10px;
  overflow: hidden;
}

.video .left-wrap .video-block {
  height: 100%;
}

.video-block iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video .right-wrap {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  padding: 28px 22px 19px 26px;
}

.video .right-wrap ul {
  height: 430px;
  overflow-y: auto;
}

.video .right-wrap ul::-webkit-scrollbar {
  width: 3px;
}

.video .right-wrap ul::-webkit-scrollbar-track {
  border-radius: 50px;
  background: #F1F1F1;
}

.video .right-wrap ul::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background: #F44;
}

.video .right-wrap ul li.li-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.video .right-wrap ul li.li-wrapper:last-child {
  margin: 0;
}

.video .right-wrap ul li.li-wrapper:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 90%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.video .right-wrap ul li.li-wrapper .img-info {
  width: 115px;
  height: 75px;
  border-radius: 10px;
  overflow: hidden;
}

.video .right-wrap ul li.li-wrapper .img-info img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video .right-wrap ul li.li-wrapper .txt-info {
  width: calc(100% - 115px);
  padding-left: 18px;
}

.video .right-wrap ul li.li-wrapper .txt-info h6 {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  /* color: var(--black); */
  color: #0259ca;
  margin-bottom: 5px;
}

.video .right-wrap ul li.li-wrapper .txt-info p {
  font-size: 14px;
  font-weight: 400;
  color: #8C8C8C;
  margin: 0;
}

.video .right-wrap ul li.li-wrapper.active .txt-info h6 {
  color: var(--theme-color);
}

/*=== Gallery Css ====*/
.gallery {
  /*background:url(../images/gallery-back.png) no-repeat center center / cover;*/
  padding: 60px 0;
  position: relative;
  z-index: 9;
}

.gallery .top-wrapper h2 {
  text-align: center;
  margin-bottom: 50px;
}

.gallery .top-wrapper .box {
  overflow: hidden;
  border-radius: 10px;
}

.gallery .top-wrapper .box img {
  width: 100%;
  border-radius: 10px;
  transition: all 0.6s;
}

.gallery .top-wrapper .box:hover img {
  transform: scale(1.1);
}

.gallery .top-wrapper .view-btn {
  margin-top: 40px;
  text-align: center;
}

.gallery .top-wrapper .view-btn ul li {
  display: inline-block;
  margin-right: 20px;
}

.gallery .top-wrapper .view-btn ul li a {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  border-radius: 6px;
  background: var(--primary-color);
  display: inline-block;
  padding: 10px 10px;
  transition: 0.5s;
}

.gallery .top-wrapper .view-btn ul li a:hover {
  background: var(--theme-color);
  color: var(--white);
}

.gallery .btm-wrapper {
  width: 85%;
  margin: 0 auto;
  padding-top: 50px;
}

.gallery .btm-wrapper .item-info {
  background: var(--white);
  border-radius: 10px;
  padding: 29px 82px 52px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 100%;
}

.gallery .btm-wrapper .item-info h2 {
  text-align: center;
  margin-bottom: 35px;
}

.gallery .btm-wrapper .item-info .media-wrap {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.gallery .btm-wrapper .item-info .media-wrap .box {
  max-width: 195px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #FFF;
  filter: drop-shadow(0px 15px 25px rgba(0, 0, 0, 0.05));
  text-align: center;
  padding: 32px 0;
}

.gallery .btm-wrapper .item-info .media-wrap .box a figure {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  background: url(../images/media-back-sape.png) no-repeat;
  justify-content: center;
  margin: 0 auto 14px;
}

.gallery .btm-wrapper .item-info .media-wrap .box a h5 {
  color: var(--black);
  margin: 0;
}

.gallery .btm-wrapper .item-info .media-wrap .box a h5 span {
  display: block;
}

.gallery .btm-wrapper .item-info ul li {
  margin-bottom: 10px;
}

.gallery .btm-wrapper .item-info ul li a {
  font-size: 17px;
  font-weight: 400;
  color: var(--black);
  position: relative;
  display: block;
  padding-left: 18px;
  transition: 0.5s;
}

.gallery .btm-wrapper .item-info ul li a:after {
  position: absolute;
  content: '\f0da';
  font-family: fontawesome;
  font-size: 15px;
  top: 0;
  left: 0;
}

.gallery .btm-wrapper .item-info ul li a:hover {
  color: var(--theme-color);
}

.gallery .btm-wrapper .item-info>a {
  font-size: 17px;
  font-weight: 400;
  background: var(--primary-color);
  color: var(--black);
  display: inline-block;
  border-radius: 10px;
  margin-top: 30px;
  padding: 10px 18px;
  transition: 0.5s;
}

.gallery .btm-wrapper .item-info>a:hover {
  background: var(--theme-color);
  color: var(--white);
}

.infocusSection {
  padding: 20px 0;
  background: url(../images/infocus.png) no-repeat center;
  background-size: cover;
}

.infocusSlider {
  padding: 40px 40px 0;
}

.brandLogo {
  display: block;
  padding: 20px;
  text-align: center;
  color: var(--white);
}

.brandLogo:hover {
  color: var(--primary-color);
}

.brandLogo img {
  max-width: 120px;
  margin: 0 auto 10px;
}

.sectionMarquee {
  padding: 30px 0;
}

/*Social Media Section*/
.social-content {
  position: relative;
  /* margin: 2.5rem auto; */
  text-align: center;
  display: block;
  margin: 0 auto;
  /* background: url('../images/bgd.jpg'); */
  padding: 25px;
}

.jobPost {
  /* background: url('../images/bgd.jpg'); */
  padding: 50px 0px;
  background: #0259ca;
}

.social-content .row {
  row-gap: 30px;
}

.social-frame {
  width: 88.5%;
  position: relative;
  height: 480px;
  /* background-color: #000000; */
  margin: 16px auto;
  display: block;
}

.content-frame {
  position: absolute;
  z-index: 9;
  width: 100%;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  background-color: #f5f5f5;
  overflow: hidden;
  border-radius: 1rem;
  border: 3px solid #f2f3fb;
}

.social-frame::after,
.social-frame::before {
  position: absolute;
  content: "";
  /* background-color: var(--primary-color); */
  background-color: #fecb00;
  bottom: -10px;
  width: 50%;
  height: 85%;
  right: -10px;
  display: block;
}

.social-frame::after {
  /* background-color: var(--theme-color); */
  background-color: #0259CA;
  bottom: auto;
  top: -10px;
  left: -10px;
  right: auto;
  display: block;
}

/*====== Social Media Css ====*/

/*====== Footer Css ====*/
.footer-section {
  color: #fff;
  /* background: #fbd93b; */
  /* background: linear-gradient(357deg, #f2881b 0%, #fae103 100%); */
  /* background: linear-gradient(357deg, #2b3990 0%, #2b3990 100%); */
  background: #0259ca;
}

.footer-top {
  box-shadow: 0 5px 9px rgba(0, 0, 0, .2) inset;
}

.footer-section .footer-top [class*=col-] {
  border-right: 1px solid rgba(0, 0, 0, .15);
  padding-block: 40px;
}

.footer-widget h6 {
  font-size: 18px;
  font-weight: 600;
}

.footer-section p {
  font-size: 15px;
  line-height: 1.7;
}

.footer-bottom p:last-child {
  margin: 0;
}

.footer-menu-grp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sm-logo {
  max-width: 570px;
  margin-left: auto;
}

.footer-menu-grp .nav {
  flex-direction: column;
}

.footer-bottom .text-center a {
  text-decoration: underline;
  color: inherit;
}


.footer-menu-grp .nav-link {
  display: block;
  color: #fff;
  font-size: 15px;
  padding: 6px 0;
  /* font-weight: bold; */
}

.footer-menu-grp .nav-link:hover {
  font-weight: bold;
  color: #F6FFEB;
}


.footer-section .footer-top [class*=col-]:nth-child(even) {
  border-color: transparent;
}


.footer-section .footer-bottom {
  /* background-color: #131866; */
  background-color: #064ba6;
  box-shadow: 0 4px 9px rgba(0, 0, 0, .2) inset;
  padding: 0px 0px;
}


.scrollup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  color: var(--black);
  font-size: 20px;
  bottom: 30px;
  z-index: 100;
  right: 1.75rem;
  width: 50px;
  height: 50px;
  box-shadow: 0 0 12px rgba(0, 0, 0, .15);
  border-radius: 50%;
  background-color: var(--white);
  -moz-transition: 300ms ease-in-out;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}

.scrollup:hover {
  /* background: var(--theme-color); */
  background: #7084FF;
  color: var(--white);
}

/*==== Footer Css End ======*/

/*==== Footer Css End ======*/
/*==== ChatBot Css Start ======*/
.chatBotIcon {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 9;
  box-shadow: 0 0 7px -1px #ccc;
  --width: 60px;
  width: var(--width);
  height: var(--width);
  border-radius: 100%;
  padding: 6px;
  background: var(--white);
  cursor: pointer;
}

.chatBotIcon .text {
  top: -20px;
  padding: 6px 12px !important;
  right: 50px !important;
  width: 170px !important;
  border-radius: 10px 10px 0 !important;
  /* background: var(--theme-color) !important; */
  background: #008008 !important;
  position: absolute !important;
  color: var(--white) !important;
  font-size: 12px !important;
  letter-spacing: 1px;
}

.chatBotIcon .animated {
  animation-duration: 2.5s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

.chatBotBox {
  display: none;
  position: fixed;
  z-index: 9999;
  bottom: 0;
  right: 0;
  width: 325px;
  background: var(--theme-color);
  color: var(--white);
  border-radius: 8px;
}

.chatBoxWrap-in {
  padding: 16px;
  height: 100%;
  display: grid;
  align-items: center;
}

.chatBoxWrap-top {
  display: flex;
  align-items: center;
  column-gap: 8px;
  font-size: 16px;
}

.personChatStart img {
  max-width: 100px;
  margin: 0 auto 10px;
}

.chatBoxWrap-middle {
  text-align: center;
  padding-top: 80px;
}

.logoChatBot img {
  max-width: 50px;
  margin-bottom: 20px;
}

.personChatStart {
  margin-top: 50px;
}

.chatBotBox .rj-btn.submit {
  background: var(--primary-color);
  color: var(--black);
  width: 100%;
  margin-top: 10px;
}

.closeChat {
  text-align: center;
  width: 100px;
  margin: 0 auto;
  position: absolute;
  z-index: 99;
  color: white;
  top: -24px !important;
  left: 0;
  right: 0;
  border-radius: 20px 20px 0px 0px;
  cursor: pointer;
  background-color: var(--theme-color) !important;
  padding: 2px;
}

/*==== ChatBot Css End ======*/

.pub-dash {
  padding: 50px 0;
}

.pub-dash .top-block .box {
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  border-radius: 6px;
  background: var(--white);
  margin-bottom: 15px;
  padding: 15px;
}

.pub-dash .top-block .box h4 {
  font-size: 18px;
  color: var(--black);
  font-weight: 500;
  margin-bottom: 10px;
}

.pub-dash .top-block .box h5 {
  font-size: 17px;
  color: #2B3990;
  font-weight: 500;
  margin-bottom: 0;
}

.pub-dash .top-block .box .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(43, 57, 144, 0.15);
  border: 1px solid rgba(43, 57, 144, 0.2);
  padding: 10px;
  margin: 0 auto 10px;
}

.pub-dash .btm-block {
  padding: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  background: var(--white);
  border-radius: 6px;
}

.pub-dash .btm-block .top-search {
  border-bottom: 1px solid rgba(43, 57, 144, 0.1);
  padding: 30px 40px;
  margin-bottom: 30px;
}

.pub-dash .btm-block .top-search label {
  font-size: 15px;
  margin-bottom: 8px;
}

.pub-dash .btm-block .top-search .form-control {
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.pub-dash .btm-block .top-search .row {
  align-items: flex-end;
}

.pub-dash .btm-block .top-search .btn-group button {
  height: 50px;
}

.pub-dash .btm-block .top-search .btn-group button:nth-child(1) {
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.pub-dash .btm-block .btm-result {
  padding: 0 30px;
}

#map {
  width: 800px;
  height: 500px;
}

.btm-block .info {
  padding: 6px 8px;
  background: white;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.info h4 {
  margin: 0 0 5px;
  color: #777;
}

.legend {
  text-align: left;
  line-height: 18px;
  color: #555;
}

.legend i {
  width: 18px;
  height: 18px;
  float: left;
  margin-right: 8px;
  opacity: 0.7;
}



#onload {
  z-index: 9999;
}

#onload .modal-header {
  border: 0;
  padding: 0;
}

#onload .modal-header .btn-close {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 9;
  opacity: 1;
  border-radius: 50%;
}

#onload .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFF'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

#onload .modal-body {
  padding: 0;
}

/*Breadcrumb Start*/
.breadcrumb {
  background: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  padding: 0px;
  margin: 30px 0 -20px;
  font-weight: 400;
  color: #ffff;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
  z-index: 5;
}

.breadcrumb ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.breadcrumb ul li {
  display: inline-block;
  vertical-align: top;
  margin: 0;
  padding: 0;
  position: relative;
  font: inherit;
}

.breadcrumb ul li:after {
  content: '/';
  display: inline-block;
  vertical-align: middle;
  font-size: 1.1em;
  margin: 0 6px 0 8px;
}

.breadcrumb ul li:last-child {
  margin: 0;
  padding: 0;
}

.breadcrumb ul li:last-child:after {
  display: none;
}

.breadcrumb ul li a {
  color: inherit;
}

.breadcrumb ul li:last-child,
.breadcrumb ul li a:hover {
  /* color: var(--primary-color); */
  color: #fecb00;
}

/*Breadcrumb Ends*/

/*Registration Start*/
.section {
  margin: 50px 0;
}

.userccount {
  background: #f5f7ff;
  /* padding: 50px; */
  padding: 35px 50px;
  border-radius: 0px 0px 10px 10px;
  /* border-bottom: 3px solid var(--theme-color); */
  /* box-shadow: 0px 6px 12px rgba(117, 152, 255, 0.95); */
  border: 1px solid #ffb75a;

}

.whitebg {
  /* background: var(--white); */
  background: none;
}

.form-info {
  font-size: 9px;
  color: #ff0000;
  line-height: 1.3;
  display: block;
  margin-top: 2px;
}

.formpanel {
  margin-top: 20px;
}

.formpanel .formrow {
  margin-bottom: 15px;
}

.formpanel .formrow>label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #999;
}

.formpanel .form-control {
  height: auto;
  border-radius: 0;
  padding: 10px 13px;
  /* border-color: #ddd; */
  border: 1px solid #ff865b !important;
}

.formpanel select.form-control {
  padding: 10px 13px;
  border-radius: 0;
  line-height: normal;
  -moz-appearance: none;
  appearance: none;
}

.formpanel textarea.form-control {
  height: 150px;
}

.formpanel .formrow>label.btn {
  color: var(--white);
}


.formpanel .btn {
  width: 100%;
  /* background: var(--theme-color); */
  background: #cf4902;
  color: var(--white);
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.formpanel .btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.newuser {
  margin-top: 30px;
  text-align: center;
  color: #666;
  font-size: 1.1em;
}

.newuser a {
  font-weight: 600;
}

.userbtns .nav-tabs {
  border-bottom: none;
  margin-bottom: 0;
}

.userbtns .nav-tabs>li {
  width: 100%;
  margin-bottom: 0;
}

.userbtns .nav-tabs>li a {
  border: none;
  border-radius: 5px 5px 0 0;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #222;
  padding: 15px 30px;
  position: relative;
  background: #f2f2f2;
}

.userbtns .nav-tabs>li a:hover,
.userbtns .nav-tabs>li a.active {
  background: var(--theme-color);
  border: none;
  color: var(--white);
}

.userbtns .nav-tabs>li.active a:after {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--theme-color);
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -5px;
}

.userbtns .nav-tabs>li a.active:after {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--theme-color);
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -5px;
}

/*Registration Ends*/

/*Joblist Start*/
/*Joblist Sidebar*/
.jobreqbtn {
  margin-bottom: 20px;
}

.jobreqbtn a {
  display: block;
  padding: 10px 20px;
  text-align: left;
  margin-bottom: 10px;
  /* background: var(--theme-color); */
  background: #0259CA;
  color: var(--white);
}

.jobreqbtn a:hover {
  background: var(--primary-color);
  color: var(--white);
}

.sidebar {
  background: var(--white);
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.sidebar .widget:not(:last-child) {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.sidebar .widget-title {
  font-size: 18px;
  font-weight: 600;
  /* color: var(--theme-color); */
  color: #0259CA;
  margin-bottom: 14px;
}

.hide_vm_ul {
  height: 99px;
  overflow: hidden;
}

.optionlist li {
  margin-bottom: 10px;
}

.optionlist li input[type=checkbox] {
  display: none;
}

.optionlist li label {
  position: relative;
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 2px 20px 2px 30px;
  font-size: 16px;
  line-height: 1.4;
}

.optionlist li input[type=checkbox]+label::before {
  content: '';
  width: 20px;
  height: 20px;
  border: 1px solid #d1d1d1;
  background: var(--white);
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 4px;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.optionlist li input[type=checkbox]:checked+label:before {
  background: var(--theme-color);
}

.optionlist li input[type=checkbox]:checked+label:after {
  content: '\f00c';
  font-family: 'FontAwesome';
  color: var(--white);
  position: absolute;
  font-size: 14px;
  top: 5px;
  left: 3px;
}

.optionlist li span {
  position: absolute;
  right: 0;
  top: 4px;
}

.view_more {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  font-weight: 600;
  color: var(--theme-color) !important;
  margin-top: 8px;
}

.view_more:hover {
  color: var(--black) !important;
}

.hide_vm {
  display: none !important;
}

/*Joblist Post*/
.listpgWraper {
  font-size: 15px;
}

.topstatinfoWrap {
  margin-bottom: 30px;
}

.searchList {
  list-style: none;
  margin-bottom: 30px;
}

.searchList>li {
  background: #fcfdff;
  border-radius: 10px;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border: 1px solid #eee;
  padding: 22px 18px;
  margin-bottom: 15px;
}

.searchList>li.featured {
  background: #f7f5ff;
  border-color: #ddd;
}

.searchList>li:hover {
  box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--primary-color);
}

.searchList>li .jobimg {
  float: left;
  width: 70px;
  margin-right: 15px;
}

.searchList>li .jobimg img {
  border-radius: 10px;
}

.searchList>li h3 {
  margin-bottom: 0;
  display: flex;
  column-gap: 8px;
}

.searchList>li h3 i {
  font-size: 16px;
  color: rgb(231, 1, 1);
  flex-shrink: 0;
  margin-top: 4px;
}

.searchList>li h3 a {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--black);
}

.searchList li .companyName {
  margin: 5px 0;
  color: #969595;
  font-size: 15px;
}

.searchList li .companyName a {
  color: #969595;
}

.searchList li a:hover {
  color: #333;
}

.searchList li .location {
  color: var(--black);
}

.searchList li .location span {
  color: #333;
}

.searchList li .listbtn {
  margin-top: 20px;
  display: flex;
  gap: 5px;
  justify-content: right;
}

.searchList li .listbtn a {
  background: #fff;
  display: block;
  border-radius: 7px;
  color: var(--theme-color);
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 15px;
  text-align: center;
  border: 1px solid var(--theme-color);
  line-height: 36px;
}

.searchList li .listbtn a:hover {
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
}

.searchList li .listbtn .fas.fa-heart {
  color: #da0303;
}

.searchList li .listbtn a.favbtn {
  border-color: #da0303;
}

.searchList li .listbtn a.favbtn:hover {
  background: #eee;
}

.searchList li p {
  font-size: 15px;
  color: #333;
  margin: 10px 0 0 0;
}

.searchList li .cateinfo {
  color: var(--theme-color);
  margin: 10px 0;
}

.searchList li .minsalary {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-top: 25px;
  color: var(--theme-color);
}

.searchList li .minsalary span {
  color: #999;
  font-weight: 400;
}

.fulltime {
  background: #09B02B;;
  color: #fff;
  font-size: 13px;
  display: inline-block;
  padding: 4px 6px;
  border-radius: 3px;
}

label.fulltime[title="Part Time"] {
  background: #f8a60c;
}

label.fulltime[title="Freelance"] {
  background: #ff0000;
}

label.fulltime[title="Contract"] {
  background: #0C86F8;
}

label.fulltime[title="Internship"] {
  background: #9B54F4;
}

label.fulltime[title="First Shift (Day)"] {
  background: #AFCB59;
}

label.partTime[title="First Shift (Day)"] {
  background: #AFCB59;
}

label.partTime[title="Second Shift (Afternoon)"] {
  background: #688CD5;
}

label.partTime[title="Third Shift (Night)"] {
  background: #EF7D7D;
}

label.partTime[title="Rotating"] {
  background: #B09EEB;
}

.freelance {
  background: #ff0000;
  color: #fff;
  font-size: 13px;
  display: inline-block;
  padding: 4px 6px;
}

/*Pagination*/
.pagiWrap .showreslt {
  font-weight: 600;
}

.searchList>li .dropdown-menu {
  z-index: 10;
}

.searchList>li .dropdown-menu li a {
  padding: 10px 15px;
}

.page-link {
  color: var(--theme-color);
}

.page-item.active .page-link {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

/*Joblist Ends*/

/*Job Deatils Start*/
.joninfoWrapper {
  margin-bottom: 50px;
}

.heading {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
}

.jobinfo .heading {
  margin-bottom: 15px;
}

.jobinfo a {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  display: inline-block;
  vertical-align: middle;
  padding: 4px 0;
}

.ptext {
  font-size: 17px;
  color: #4c4c4c;
  margin-block: 4px;
}

.jobButtons .rj-btn {
  font-size: 15px;
  border-radius: 40px;
  background: transparent;
  border-color: currentColor;
  color: var(--theme-color);
  padding-inline: 24px;
}

.jobButtons .rj-btn:hover {
  /* background: var(--theme-color);
  color: var(--white);
  border-color: var(--theme-color); */

  background: #0259CA;
  color: var(--white);
  border-color: #0259CA;
}

.jobButtons .rj-btn.report {
  color: #e01010;
}

.jobButtons .rj-btn.report:hover {
  background: #e01010;
  border-color: #e01010;
  color: var(--white);
}

.job-header {
  background: rgb(255, 255, 255);
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 20px 25px;
  border: 1px solid rgb(238, 238, 238);
}

.job-header:last-child {
  margin-bottom: 0;
}

.jobDetails-content>.row {
  row-gap: 30px;
}

.jobdetail,
.job-header .contentbox,
.mapdetail {
  padding: 40px 36px;
}

.jobdetail {
  padding-bottom: 10px !important;
}

.jobdetail h3,
.mapdetail h3 {
  font-size: 24px;
  /* color: var(--theme-color); */
  color: #0259CA;
  font-weight: 700;
}

.job-header .contentbox h3 {
  font-size: 24px;
  font-weight: 700;
  /* color: var(--theme-color); */
  color: #0259CA;
  margin-bottom: 10px;
}

.job-header .contentbox h3 i,
.jobdetail h3 i,
.companyinfo h3 i,
.mapdetail h3 i {
  color: rgb(204, 204, 204);
  margin-right: 5px;
  font-size: 20px;
}

.jbdetail {
  margin-top: 20px;
}

.jbdetail li {
  margin-bottom: 10px;
  color: rgb(144, 143, 143);
}

.jbdetail li span {
  display: block;
  color: var(--black);
  font-weight: 600;
}

.jbdetail li span.permanent {
  /* color: var(--theme-color); */
  color: #0259CA;
}

.jbdetail li span.freelance {
  color: rgb(240, 114, 0);
  background: none;
  padding: 0px;
}

.job-header .contentbox p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-top: 20px;
  margin-bottom: 0;
  word-wrap: break-word;
}

.benefits p:empty {
  display: none;
}

.jobButtons {
  padding: 20px 25px;
}

.job-header .contentbox ul li {
  padding: 5px 0 5px 25px;
  position: relative;
  line-height: 24px;
}

.job-header .contentbox ul li:before {
  content: '\f00c';
  font-family: 'FontAwesome';
  color: var(--theme-color);
  position: absolute;
  left: 0;
}

ul.skillslist {
  margin-bottom: 0 !important;
}

ul.skillslist li:before {
  display: none;
}

ul.skillslist li {
  display: inline-block;
  padding: 0 !important;
}

ul.skillslist li a {
  display: inline-block;
  background: #eee;
  color: #555;
  padding: 10px 20px;
  margin: 5px 10px 5px 0;
  border-radius: 45px;
  font-weight: 600;
  font-size: 14px;
}

ul.skillslist li a:hover {
  text-decoration: none;
  /* background: var(--theme-color); */
  background: #0259CA;
  color: #fff;
}

.companyinfo h3,
.relatedJobs h3 {
  margin-bottom: 30px;
  color: var(--theme-color);
  font-size: 24px;
  font-weight: 600;
}

.companyinfo {
  margin-bottom: 30px;
  background: #f9f9ff;
  padding: 30px;
  border-radius: 15px;
}

.companyinfoBoxTop {
  display: flex;
  align-items: center;
  gap: 16px;
}

.companylogo {
  width: 100px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.companyinfoBox .title {
  font-size: 21px;
  font-weight: 600;
  color: var(--black);
}

.companyinfoBox .title a {
  color: inherit;
}

address.address {
  display: block;
  margin: 6px 0;
  font-size: 16px;
}

.companyinfoBox .opening a {
  font-weight: 600;
  font-size: 15px;
  color: var(--theme-color);
}

.companyoverview p {
  font-size: 16px;
  line-height: 1.7;
}

.companyoverview p:last-child {
  margin: 0;
}

.relatedJobs h3 {
  color: var(--black);
}

.gmap iframe {
  width: 100%;
  height: 320px;
}

.applybox {
  flex-shrink: 0;
}

/*Job Deatils Ends*/

@media screen and (max-width:1365px) {
  .header .top-pnl .lt-side .top-nv ul li {
    font-size: 13px;
    margin-right: 10px;
  }

  .header .top-pnl .lt-side .date ul li {
    font-size: 13px;
  }

  .header .top-pnl .rt-side .sc-read a {
    font-size: 13px;
  }

  .header .top-pnl .rt-side .tx-size h5 {
    font-size: 13px;
  }

  .header .top-pnl .rt-side .search-btn a {
    font-size: 13px;
  }

  .header .top-pnl .rt-side .lang-sw ul li {
    font-size: 13px;
  }

  .header .btm-pnl .lt-side h3 {
    font-size: 14px;
    padding-left: 20px;
  }

  .header .btm-pnl .rt-side .navigation ul li {
    font-size: 15px;
  }

  .header .btm-pnl .rt-side .navigation ul li a {
    margin-right: 20px;
  }

  .header .btm-pnl .rt-side .navigation ul li a i {
    top: 3px;
    font-size: 10px;
  }

  .ban-slider .item .desc .text-block p {
    font-size: 20px;
  }

  .ban-slider .item .desc .text-block h3 {
    font-size: 18px;
    margin: 0 10% 0 0;
  }

  .online-ap .inn {
    padding: 25px 20px;
  }

  .aikyasre .top-pnl .lt-pnl .btm-block .btn-pnl {
    background: none;
    padding: 0;
  }

  .aikyasre .top-pnl .lt-pnl .btm-block .text-pnl {
    padding-left: 0;
  }

  .aikyasre .top-pnl .lt-pnl .btm-block .btn-pnl {
    text-align: right;
  }

  .aikyasre .top-pnl .lt-pnl .btm-block {
    padding: 10px;
  }

  h4 {
    font-size: 22px;
  }

  .achievement .box {
    flex-wrap: wrap;
  }

  .achievement .box .lt-side {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    text-align: left;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .achievement .box .lt-side h6 span {
    margin-left: 5px;
  }

  .achievement .box .rt-side {
    width: 100%;
  }

  .un-achievrs .tab-block .nav-tabs li button {
    font-size: 16px;
    padding: 5px 10px;
  }

  .gallery .btm-wrapper .item-info {
    padding: 29px 30px 52px;
  }

  .footer .top-wrapper .left-wrap {
    padding: 54px 30px 50px 30px;
  }

  .footer .copy-wrapper .rt-side {
    width: 50%;
  }

  .rj-btn {
    font-size: 16px;
  }

  h1 {
    font-size: 30px;
  }
}

@media screen and (max-width:1199px) {
  .header .top-pnl .lt-side .date {
    display: none;
  }

  .header .btm-pnl .rt-side .toll-fr {
    display: none;
  }

  .knowledge .knowledge-slider .slide-arrow.prev-arrow {
    left: 29%;
  }

  .knowledge .knowledge-slider .slide-arrow.next-arrow {
    right: 29%;
  }

  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    display: none;
  }

  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    display: none;
  }

  .footer-menu-grp {
    gap: 10px;
  }

  .footer-menu-grp .nav-link {
    font-size: 14px;
  }

  .userccount {
    padding: 30px 40px;
  }

  .section {
    margin: 40px 0;
  }

  .authorRow {
    row-gap: 20px;
    justify-content: center;
  }

  .innerBanner {
    padding: 90px 0;
  }

  .pageTitle {
    font-size: 36px;
  }

  .breadcrumb {
    margin: 15px 0 -15px;
  }

  .searchList li .listbtn a {
    font-size: 14px;
  }

  .heading {
    font-size: 32px;
  }

  .jobdetail,
  .job-header .contentbox,
  .mapdetail {
    padding: 30px 24px;
  }

  ul.skillslist li a {
    padding: 6px 18px;
    font-size: 13px;
  }
}

@media screen and (max-width:991px) {
  .header .top-pnl .lt-side {
    display: none;
  }

  .header .top-pnl .rt-side {
    justify-content: space-between;
    width: 100%;
  }

  .header .top-pnl .rt-side .tx-size {
    margin-right: 0;
  }

  .mob-open {
    background: var(--theme-color);
    color: var(--white) !important;
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-left: 24px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
  }

  .mob_close_menu {
    display: block;
  }

  .header .top-pnl .rt-side .sc-read {
    padding-right: 0;
  }

  .header .top-pnl .rt-side .search-btn {
    margin-right: 0;
  }

  .header .btm-pnl .rt-side .navigation {
    padding: 0;
    position: fixed;
    left: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    /* background: var(--white); */
    background: #0259ca;
    height: 100vh;
    z-index: 99;
    transition: all 0.6s;
  }

  .navOpen .mainContainer {
    z-index: 1;
  }

  .header .btm-pnl .rt-side .navigation.open {
    left: 0;
  }

  .header.is_sticky .btm-pnl .rt-side .navigation.open {
    height: calc(100vh + 42px);
  }

  .header .btm-pnl .rt-side .navigation ul li {
    display: block;
  }

  .header .btm-pnl .rt-side .navigation ul li {
    font-size: 15px;
    border: 0px solid #fff !important;
    text-align: left !important;
    padding: 0 !important;
    border-radius: 0px !important;
  }

  .header .navigation ul li:hover .sub-menu {
    top: auto;
    opacity: 1;
    margin-top: 0;
    visibility: visible;
    transform: scale(1);
  }

  .header .btm-pnl .rt-side .navigation ul li a {
    margin-right: 0;
    padding: 12px;
  }

  .header .btm-pnl .rt-side .navigation ul li>a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .header .btm-pnl .rt-side .navigation ul li a>i {
    display: none;
  }

  .header .navigation .sub-menu {
    box-shadow: none;
    transition: all 0.3s ease-in-out;
    /* background: #f7f4f4; */
    background: #0259ca;
    position: inherit;
    visibility: visible;
    border-radius: 0;
    display: block;
    width: 100%;
    border: none;
    z-index: 99;
    opacity: 1;
    top: 0px;
    left: 0;
    transform: scale(1);
  }

  .header .btm-pnl .rt-side .navigation ul li.has-subnav a {
    margin-right: 0 !important;
  }

  span.accordion-btn-wrap {
    width: 10% !important;
  }

  .header .btm-pnl {
    column-gap: 20px;
  }

  .header .btm-pnl .rt-side .toll-fr {
    display: flex;
  }

  .homeslider .bannertext-in {
    max-width: 300px;
    width: 100%;
  }

  .bannertext .qu-icn {
    width: 35px;
    height: 35px;
    font-size: 20px;
    margin-bottom: 15px;
  }

  .bannertext .heading {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .bannertext p {
    font-size: 16px;
  }

  .person-name {
    font-size: 15px;
    text-align: left;
    margin: 0;
  }

  .online-ap {
    position: inherit;
    left: 0;
    bottom: 0;
    width: 100%;
  }

  .online-ap .inn {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    background: #000;
    backdrop-filter: blur(12.5px);
    padding: 27px 30px;
    margin-left: auto;
    text-align: center;
    margin-bottom: 10px;
  }

  .wb-news {
    position: inherit;
    left: 0;
    bottom: 0;
    width: 100%;
    margin-bottom: 15px;
  }

  .achievement {
    padding: 40px 25px 25px;
    margin: 0 0 50px;
  }

  .dist-service {
    padding-bottom: 35px;
  }

  .dist-service .box {
    padding: 20px;
    margin-bottom: 15px;
  }

  .un-achievrs .tab-block .notice-box {
    width: 100%;
    padding: 0 25px;
  }

  .un-achievrs .slider-pnl h2 {
    margin-bottom: 40px;
  }

  .un-achievrs .tab-block {
    margin-bottom: 30px;
  }

  .knowledge .knowledge-slider .item.slick-slide.slick-current.slick-active.slick-center {
    transform: scale(1);
    filter: none;
    z-index: 99;
  }

  .knowledge {
    padding: 50px 0 50px;
    margin: 0;
  }

  .knowledge .knowledge-slider .slick-list {
    margin: 0 -15px;
    padding: 30px 0 0 !important;
  }

  .knowledge .knowledge-slider .slide-arrow.prev-arrow {
    left: -20px;
  }

  .knowledge .knowledge-slider .slide-arrow.next-arrow {
    right: -20px;
  }

  .video .right-wrap {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    padding: 25px 20px;
    margin-top: 15px;
  }

  .video .right-wrap ul li.li-wrapper::after {
    width: 98%;
  }

  .gallery {
    padding: 40px 0 20px;
  }

  .gallery .top-wrapper h2 {
    margin-bottom: 40px;
  }

  .gallery .top-wrapper .box {
    margin-bottom: 15px;
    height: 250px;
  }

  .gallery .top-wrapper .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gallery .top-wrapper .view-btn {
    margin-top: 30px;
  }

  .gallery .btm-wrapper {
    width: 100%;
  }

  .gallery .btm-wrapper .row .col-lg-6:nth-child(1) {
    margin-bottom: 15px;
  }

  .pub-dash #map {
    margin-bottom: 20px;
  }

  .video .right-wrap ul li.li-wrapper .txt-info h6 {
    font-size: 16px;
  }

  .video .right-wrap {
    padding: 25px 15px;
  }

  .video .right-wrap ul li.li-wrapper {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .video .right-wrap ul li.li-wrapper .img-info {
    width: 90px;
    height: 75px;
  }

  .video .right-wrap ul li.li-wrapper .txt-info {
    width: calc(100% - 90px);
    padding-left: 10px;
  }

  .video .right-wrap ul {
    height: 350px;
  }

  h2 {
    font-size: 30px;
  }

  .knowledge .knowledge-slider .item .item-inr .text-info h4 {
    font-size: 18px;
  }

  .banner_img {
    padding-top: 35%;
  }

  .highlightText {
    font-size: 15px;
  }

  .social-frame {
    height: 360px;
  }

  .footer-menu-grp {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .footer-menu-grp .nav:last-child {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
  }

  .footer-section p {
    font-size: 13px;
  }

  p.sm-logo {
    margin-bottom: 8px;
  }

  .topstatinfoWrap {
    margin-bottom: 20px;
  }

  .sidebar-overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    transform: none;
    background: #000000bf;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 300ms ease 0s;
    transition: all 500ms ease 0s;
  }

  .show-sidebar .sidebar-overlay {
    opacity: 1;
    visibility: visible;
  }

  .sidebarWrap {
    position: fixed;
    top: 0;
    left: -330px;
    z-index: 99991;
    max-width: 330px;
    background: #f9f9f9;
    transition: all 300ms ease 100ms;
  }

  .sidebarWrap.show {
    left: 0;
  }

  .sidebarWrap .sidebar-button {
    position: absolute;
    top: 35vh;
    max-width: 36px;
    right: -36px;
    background: var(--white);
    padding: 4px;
  }

  .jobreqbtn,
  .jobreqbtn a {
    margin-bottom: 0;
  }

  .jobreqbtn a {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
  }

  .sidebarWrap .sidebar {
    max-height: calc(100vh - 50px);
    overflow: hidden;
    overflow-y: auto;
  }

  .joninfoWrapper {
    margin-bottom: 30px;
  }
}

@media screen and (max-width:767px) {
  .header .top-pnl .rt-side .sc-read {
    display: none;
  }

  .header .btm-pnl .lt-side .logo {
    width: 180px;
  }

  .header .btm-pnl .rt-side .toll-fr {
    padding: 0;
  }

  .header .btm-pnl .rt-side .toll-fr .text {
    width: auto;
    padding-left: 0;
  }

  .header .btm-pnl .rt-side .toll-fr .icon,
  .header .btm-pnl .rt-side .toll-fr .text h5,
  .header .btm-pnl .rt-side .toll-fr:after {
    display: none;
  }

  .header .btm-pnl .rt-side .toll-fr .text a {
    font-size: 0;
    line-height: normal;
    padding: 0;
    position: relative;
    display: block;
  }

  .header .btm-pnl .rt-side .toll-fr .text a::after {
    content: '';
    display: block;
    background: url('../images/ph.svg') no-repeat center;
    width: 33px;
    height: 33px;
    background-size: contain;
    margin-top: -6px;
  }

  .header .btm-pnl .lt-side h3 {
    font-size: 13px;
  }

  .header .btm-pnl .lt-side h3 {
    font-size: 13px;
  }

  .header .top-pnl .rt-side .search-btn {
    display: none;
  }

  .header .tp-head {
    padding: 5px 0;
  }

  .ban-slider {
    margin: 0 0 20px !important;
  }

  .ban-slider .item>img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  .bannertext .heading {
    font-size: 17px;
    margin-bottom: 15px;
  }

  .ban-slider .item .desc .text-block p {
    font-size: 15px;
  }

  .ban-slider .item .desc .text-block h3 {
    font-size: 14px;
  }

  .wb-news .inn .rt-side ul li {
    font-size: 14px;
  }

  .achievement {
    padding: 40px 20px 25px;
    margin: 0 0 50px;
  }

  .succ-stories .swiper-slide .text-block {
    left: 20px;
    bottom: 20px;
    width: 90%;
  }

  .succ-stories .title h2 {
    padding-bottom: 40px;
  }

  .succ-stories .swiper-slide .text-block .icon {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
  }

  .succ-stories .swiper-slide .text-block h3 {
    font-size: 18px;
    margin-bottom: 7px;
  }

  .succ-stories .swiper-slide .text-block p {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 10px;
  }

  .succ-stories .swiper-slide .text-block a.rj-btn {
    font-size: 14px;
    padding: 10px 15px;
  }

  .succ-stories .swiper-slide>img {
    height: 280px;
    object-fit: cover;
  }

  .un-achievrs .ach-slider .slide-arrow.prev-arrow {
    left: calc(50% - 8.5rem);
  }

  .un-achievrs .ach-slider .slide-arrow.next-arrow {
    left: calc(50% + 8.5rem);
  }

  .knowledge .knowledge-slider .slide-arrow.prev-arrow {
    left: -10px;
  }

  .knowledge .knowledge-slider .slide-arrow.next-arrow {
    right: -10px;
  }

  .knowledge .knowledge-slider .slide-arrow::after {
    width: 10px;
    height: 16px;
  }

  .knowledge .knowledge-slider .slide-arrow {
    width: 45px;
    height: 45px;
  }

  .knowledge .knowledge-slider .slide-arrow img {
    height: 20px;
  }

  .gallery .btm-wrapper .item-info .media-wrap {
    flex-wrap: wrap;
  }

  .gallery .btm-wrapper .item-info .media-wrap .box {
    max-width: 100%;
    width: 100%;
  }

  .gallery .btm-wrapper .item-info .media-wrap .box a h5 span {
    display: inline-block;
  }

  .pub-dash .btm-block .top-search .btn-group {
    margin-top: 10px;
  }

  .pub-dash .btm-block .btm-result {
    padding: 0 20px;
  }

  .achievement .box {
    margin-bottom: 20px;
    padding: 15px 15px;
  }

  .achievement .box .lt-side h5 {
    margin-bottom: 10px;
  }

  .achievement .box .rt-side span {
    margin-bottom: 8px;
  }

  .video .left-wrap {
    height: 350px;
  }

  .un-achievrs .tab-block .nav-tabs li button img {
    margin-right: 4px;
    height: 26px;
  }

  .un-achievrs .tab-block .nav-tabs li button {
    font-size: 15px;
    padding: 5px 8px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  .knowledge .knowledge-slider .slick-list {
    margin: 0;
  }

  .gallery,
  .un-achievrs,
  .video,
  .dist-service {
    overflow-x: hidden;
  }

  .jobsearch .from-row {
    flex-wrap: wrap;
  }

  .jobsearch .from-row>.from-group {
    flex: 0 0 auto;
    width: calc(50% - 7px);
  }

  .jobsearch .from-row>.from-group:has(.rj-btn) {
    width: 100%;
    text-align: center;
  }

  .brandLogo {
    padding: 8px;
  }

  .banner_img {
    padding-top: clamp(250px, 70vh, 360px);
  }

  .brandLogo img {
    max-width: 90px;
  }

  .footer-section .footer-top [class*=col-] {
    border-right: none;
  }

  .footer-section .footer-top [class*=col-]:last-child {
    padding-top: 0px;
  }

  .innerBanner {
    padding: 70px 0;
  }

  .pageTitle {
    font-size: 30px;
  }

  .breadcrumb {
    font-size: 15px;
  }

  .userccount {
    padding: 30px;
  }

  .newuser {
    font-size: 16px;
  }

  .form-content #est_form {
    margin-top: 0 !important;
  }

  .searchList li .listbtn {
    justify-content: start;
  }

  .searchList>li h3 a {
    display: block;
  }

  .searchList li .companyName {
    margin-block: 10px;
  }

  .joninfoWrapper {
    flex-wrap: wrap;
  }

  .heading {
    font-size: 28px;
  }
}

@media screen and (max-width: 575px) {
  .jobTabsContent [class*="col-"] {
    width: 50%;
  }

  .form-control {
    height: 44px;
    font-size: 14px;
  }

  .footer-bottom .row {
    flex-direction: column;
  }

  p.sm-logo {
    text-align: center;
  }

  .searchList li .listbtn a {
    font-size: 13px;
  }

  .companyinfo h3,
  .relatedJobs h3 {
    font-size: 21px;
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 450px) {
  .header .btm-pnl .lt-side .logo {
    width: 150px;
  }

  .jobsearch .from-row>.from-group {
    width: 100%;
  }

  .mob-open {
    font-size: 18px;
    margin-left: 16px;
    width: 36px;
    height: 36px;
  }

  .b-slider_ref {
    font-size: 13px;
  }

  .rj-btn {
    padding-block: 10px;
    font-size: 14px;
  }

  .tabs li {
    font-size: 14px;
  }

  .companyLogo {
    max-width: 200px;
    display: block;
  }

  .footer-section p {
    font-size: 12px;
  }

  .chatBotBox {
    width: 300px;
  }

  .scrollup {
    font-size: 16px;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .chatBotIcon {
    bottom: 70px;
    right: 16px;
    --width: 50px;
  }

  .chatBotIcon .text {
    width: 160px !important;
    font-size: 11px !important;
    letter-spacing: 0.6px;
  }

  .innerBanner {
    padding: 36px 0;
  }

  .pageTitle {
    font-size: 26px;
  }

  body {
    font-size: 15px;
  }

  .formcheck {
    clear: both;
  }

  .sidebarWrap {
    max-width: 280px;
    left: -280px;
  }

  .sidebar {
    padding-inline: 16px;
  }

  .optionlist li label {
    font-size: 15px;
    padding-left: 24px;
  }

  .optionlist li input[type=checkbox]+label::before {
    width: 16px;
    height: 16px;
  }

  .optionlist li input[type=checkbox]:checked+label:after {
    font-size: 12px;
    top: 4px;
    left: 2px;
  }

  .sidebar .widget-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .jobreqbtn a,
  .companyoverview p,
  address.address,
  .job-header .contentbox p {
    font-size: 15px;
  }

  .gmap iframe {
    height: 250px;
  }

  .heading {
    font-size: 24px;
  }

  .companylogo {
    width: 80px;
  }

  .companyinfoBox .title {
    font-size: 18px;
  }

  address.address {
    margin: 4px 0;
    font-size: 14px;
  }

  .companyinfoBox .opening a {
    font-size: 14px;
  }
}

@media only screen and (max-width: 359px) {
  .header .btm-pnl {
    column-gap: 8px;
  }

  .mob-open {
    font-size: 16px;
    margin-left: 8px;
    width: 32px;
    height: 32px;
  }

  .header .btm-pnl .lt-side h3 {
    font-size: 12px;
    padding-left: 14px;
  }
}


.modal-backdrop {
  z-index: 10000;
}

.modal {
  z-index: 11001 !important;
}

.gallery .box,
.videos-gallery .box {
  position: relative;
}

.gallery-title {
  position: absolute;
  bottom: 0px;
  background-color: rgba(0, 0, 0, .5);
  width: 100%;
  display: block;
  text-align: center;
  color: #fff;
  z-index: 9;
  padding: 10px 5px;
}

.gallery-title p {
  margin: 0;
}

.gallery .top-wrapper .box:hover .gallery-title {
  z-index: 9;
}


.videos-gallery .box {
  position: relative;
}

.videos-gallery .box {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.videos-gallery .youtube-icon {
  position: absolute;
}

.videos-gallery .youtube-icon i {
  color: #FF0000;
  font-size: 30px;
}


/****Card Background******/
.bg_card1 {
  /* background: -webkit-linear-gradient(47deg, rgb(205, 255, 115) 41%, rgb(83, 255, 231) 100%) !important;  */
  /* For Safari and Chrome */
  /* background: -moz-linear-gradient(47deg, rgb(205, 255, 115) 41%, rgb(83, 255, 231) 100%) !important;  */
  /* For Firefox */
  /* background: -ms-linear-gradient(47deg, rgb(205, 255, 115) 41%, rgb(83, 255, 231) 100%) !important;  */
  /* For Internet Explorer */
  /* background: linear-gradient(47deg, rgb(205, 255, 115) 41%, rgb(83, 255, 231) 100%) !important;  */
  /* Standard */
  background: #ffffff !important;

}

.bg_card2 {

  /* background: -webkit-linear-gradient(47deg, rgb(252, 255, 102) 35%, rgb(223, 103, 255) 87%) !important;  */
  /* For Safari and Chrome */
  /* background: -moz-linear-gradient(47deg, rgb(252, 255, 102) 35%, rgb(223, 103, 255) 87%) !important;  */
  /* For Firefox */
  /* background: -ms-linear-gradient(47deg, rgb(252, 255, 102) 35%, rgb(223, 103, 255) 87%) !important;  */
  /* For Internet Explorer */
  /* background: linear-gradient(47deg, rgb(252, 255, 102) 35%, rgb(223, 103, 255) 87%) !important; */
  /* Standard */
  background: #ffffff !important;

}

.bg_card3 {

  /* background: -webkit-linear-gradient(47deg, rgb(102, 255, 205) 17%, rgb(175, 255, 0) 87%) !important;  */
  /* For Safari and Chrome */
  /* background: -moz-linear-gradient(47deg, rgb(102, 255, 205) 17%, rgb(175, 255, 0) 87%) !important;  */
  /* For Firefox */
  /* background: -ms-linear-gradient(47deg, rgb(102, 255, 205) 17%, rgb(175, 255, 0) 87%) !important;  */
  /* For Internet Explorer */
  /* background: linear-gradient(47deg, rgb(102, 255, 205) 17%, rgb(175, 255, 0) 87%) !important;  */
  /* Standard */
  background: #ffffff !important;

}

.bg_card4 {

  /* background: -webkit-linear-gradient(47deg, rgb(58, 238, 52) 17%, rgb(0, 230, 197) 87%) !important;  */
  /* For Safari and Chrome */
  /* background: -moz-linear-gradient(47deg, rgb(58, 238, 52) 17%, rgb(0, 230, 197) 87%) !important;  */
  /* For Firefox */
  /* background: -ms-linear-gradient(47deg, rgb(58, 238, 52) 17%, rgb(0, 230, 197) 87%) !important;  */
  /* For Internet Explorer */
  /* background: linear-gradient(47deg, rgb(58, 238, 52) 17%, rgb(0, 230, 197) 87%) !important; */

  /* Standard */
  background: #ffffff !important;

}

.bg_card5 {

  /* background: -webkit-linear-gradient(47deg, rgb(255, 173, 17) 17%, rgb(202, 253, 61) 87%) !important;  */
  /* For Safari and Chrome */
  /* background: -moz-linear-gradient(47deg, rgb(255, 173, 17) 17%, rgb(202, 253, 61) 87%) !important;  */
  /* For Firefox */
  /* background: -ms-linear-gradient(47deg, rgb(255, 173, 17) 17%, rgb(202, 253, 61) 87%) !important;  */
  /* For Internet Explorer */
  /* background: linear-gradient(47deg, rgb(255, 173, 17) 17%, rgb(202, 253, 61) 87%) !important;  */
  /* Standard */
  background: #ffffff !important;

}

.bg_card6 {

  /* background: -webkit-linear-gradient(47deg, rgb(187, 255, 0) 17%, rgb(255, 192, 5) 87%) !important;  */
  /* For Safari and Chrome */
  /* background: -moz-linear-gradient(47deg, rgb(187, 255, 0) 17%, rgb(255, 192, 5) 87%) !important;  */
  /* For Firefox */
  /* background: -ms-linear-gradient(47deg, rgb(187, 255, 0) 17%, rgb(255, 192, 5) 87%) !important;  */
  /* For Internet Explorer */
  /* background: linear-gradient(47deg, rgb(187, 255, 0) 17%, rgb(255, 192, 5) 87%) !important; */
  /* Standard */
  background: #ffffff !important;

}


.companyLogo>img {
  height: 50px !important;
}

.ind_ref {
  /* border: 3px solid #273484;
  padding: 10px; */
  border: 1px solid #0259ca;
  padding: 10px;
  background: #fff;


}

.rep_logo {}


.about_us_content {

  background: #fff;
  padding: 10px 40px;
  margin-top: 30px;
  text-align: justify;
  margin-bottom: 20px;

}

.ct_acrd {
  background: #fff;
  justify-content: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  border: 1px solid #cac6d5;
  padding: 10px;
  height: 140px;
}

.login_page {
  justify-content: center;
  padding: 100px 0px;


}


.login_btn {
  font-size: 25px;
  font-weight: bold;
  margin-top: 35px;
  color: #fff;
  background: #55493d;
  padding: 5px;
  border: 2px solid #55493d;
}


.login_set {
  text-align: center;
  justify-content: center;
  /* border: 5px solid #2b3990; */
  border: 3px solid #806e5c;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-style: groove;
  border-radius: 5px;
  height: 300px;
  max-height: 300px;
  background: #fff;
}

/* .reg_btn {
  font-size: 20px;
  font-weight: bold;
  margin-top: 35px;
  color: #fff;
  background: #390aa2;
  padding: 5px;
  border: 2px solid #8ca9ce;
} */

.reg_btn {
  font-size: 20px;
  font-weight: bold;
  margin-top: 35px;
  color: #fff;
  background: #97744f;
  padding: 5px;
  border: 1px solid #97744f;
}


.login_page_ct {
  background: url('../../logo/login_bg.png');
}


.breadcrumb {
  margin: 0px 0 10px !important;
  padding: 5px !important;
  background: #897562 !important;
}


/* tooltip-****** */

.tool-tip {
  display: inline-block;
  position: relative;
  margin-left: 0.5em;
}

.tool-tip .tool-tip__icon {
  /* background: #210197; */
  background: #f72626;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  font-style: italic;
  font-family: times new roman;
  height: 20px;
  line-height: 1;
  text-align: center;
  width: 20px;
  color: #fff !important;
}

.tool-tip .tool-tip__info {
  display: none;
  background: #0259ca;
  border: 1px solid #0259ca;
  border-radius: 3px;
  font-size: 0.875em;
  padding: 1em;
  position: absolute;
  left: 30px;
  top: 0px;
  width: 250px;
  z-index: 2;
}

.tool-tip .tool-tip__info:before,
.tool-tip .tool-tip__info:after {
  content: "";
  position: absolute;
  left: -10px;
  top: 7px;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #ffb300;
}

.tool-tip .tool-tip__info::after {
  left: -8px;
  border-right-color: #e14a0f;
}

.tool-tip .tool-tip__info .info {
  display: block;
}

.tool-tip .tool-tip__info .info__title {
  color: #ffffff;
  font-weight: bold;
}

.tool-tip:hover .tool-tip__info,
.tool-tip:focus .tool-tip__info {
  display: inline-block;
}

span.info {
  text-align: center;

}

.text-secondary{
  color: #fecb00 !important;
}

.header >.btm-pnl ::after{
  content: "";

}



/* .gov_logo{ */
  /* width: 90px !important;
  height: 125px !important; */

  
/* } */

.gov_logo {
  width: 75px !important;
  height: 100px !important;
}

.h_text {
  /* font-size: 20px; */
  font-size: 15px;
  margin: 0 !important;
  color: #fff;
  font-weight: bold;
}
.h_text2 {
  font-size: 10px;
  margin: 0 !important;
  color: #fff;
  font-weight: bold;
}

.header-text{
  height: max-content;
  width: max-content;
  padding: 25px 0px !important;
}


.logo_d{
  display: flex !important;
}

 .gov_logo2{
  /* width: 200px !important; */
  padding: 0px 5px;
  border: 1px solid #fff;
  margin: 10px 5px;
  background: #0259ca;
  height: 70px !important;
}


.logo2{
  /* border-right: 3px solid #fecb00;
  margin-right: 15px; */

  border-right: 2px solid #fecb00;
  margin-right: 10px;
  padding-right: 5px;


}

.text-center{
  text-align: center !important;
}