/*google-font*/

/*@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;600;700;800&display=swap');*/

html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

:root {
  --main-bg-color: #097fd7;
  --white: #fff;
  --sky: #616ed6;
  --hover-color: #616ed6;
  --yellow-color: #ff0;
  --green: #4ca204;
  --sky2:#097fd7;
}

p {
  font-family: 'Mukta-Light' !important;
}

/*google-font*/
@font-face {
  font-family: 'mukta-bold';
  src: url('../fonts/Mukta-Bold.ttf');
}

@font-face {
  font-family: 'Mukta-Light';
  src: url('../fonts/Mukta-Light.ttf');
}

@font-face {
  font-family: 'Mukta-ExtraBold';
  src: url('../fonts/Mukta-ExtraBold.ttf');
}

@font-face {
  font-family: 'Mukta-Medium';
  src: url('../fonts/Mukta-Medium.ttf');
}

@font-face {
  font-family: 'Mukta-Regular';
  src: url('../fonts/Mukta-Regular.ttf');
}

/* page-loader */
.loader {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  position: relative;
}

.loader:before, .loader:after {
  content: "";
  width: 100%;
  height: 100%;
  border-width: 50px;
  border-style: double;
  border-color: transparent;
  border-right-color: transparent;
  border-right-color: #3f52cc;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  animation: spin 1s infinite;
  animation-delay: -0.25s;
}

.loader:after {
  left: 0;
  border-right-color: transparent;
  border-left-color: #3f52cc;
  animation: spin 1s infinite;
  animation-delay: 0;
}

@keyframes spin {
  0% {
    transform: rotate(360deg);
  }

}

.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: .8;
}

#loading {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  opacity: 0.7;
  background-color: #fff;
  z-index: 99;
}

#loading-image {
  position: absolute;
  top: 100px;
  left: 240px;
  z-index: 100;
}

/* page-loader-end */
.primary-btn {
  background-color: var(--main-bg-color);
  color: var(--white);
}

body {
  background-color: #f7f7f9;
  font-family: 'Mukta-Light';
}

section {
  margin: 50px 0;
}

/*coming-soon start*/
@-webkit-keyframes blinker {
  from {
    opacity: 1.0;
  }

  to {
    opacity: 0.0;
  }

}

.blink {
  -webkit-animation-name: blinker;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(.5, 0, 1, 1);
  -webkit-animation-duration: 1.7s;
  color: #fff;
  font-family: 'mukta-bold';
  font-size: 60px;
}

.coming-soon {
  background-image: url(../images/coming-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  background-position: center;
  justify-content: center;
}

/*.coming-soon_box
{
  background: #fff2;
    width: 50%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}*/

/*coming-soon end*/

/*top header*/
.top {
  padding: 0px 0;
}

.top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header {
  background-color: #e6e6e6;
  transition: 0.9s ease-in-out forwards;
  /*position: sticky;*/
  top: 0;
  z-index: 9999;
  width: 100%;
}

.sticky {
  position: sticky;
  /* position: fixed;
  top: -60px;
  left: 0;
   animation: goDown 0.9s ease-in-out forwards;
  width: 100%;
  z-index: 99; */

  /*background-color: var(--main-bg-color);*/
  box-shadow: 2px 3px 5px #0005;
}

/*.sticky .middle {
display: none;
}
*/

/* .sticky .menu li a {
padding: 7px 9px;
font-size: 14px;
} */
@keyframes goDown {
  0% {
    top: -60px;
  }

  100% {
    transform: translateY(60px);
  }

}

.sticky #mySidenav {
  display: none;
}

.top {
  border-bottom: 1px solid 1px solid #7a7a7a3b;
}

.top_right-logo {
  text-align: left;
  float: right;
}

.top_right-logo img {
  width: 70px;
}

.middle-content {
  color: #fff;
}

.middle a {
  text-decoration: none;
}

.middle {
  background-color: var(--white);
  padding: 10px 0;
}

.light {

  /* background-color: #fff;*/
  color: #000 !important;
  width: 15px;
}

.logo-text h1 {
  font-size: 30px;
  margin-bottom: 0;
  font-weight: bold;
  font-family: 'Mukta-Bold';
  color: #000;
}

.logo-text p {
  color: #000;
  font-weight: bold;
  margin-top: 0px;
  font-size: 25px;
  margin-bottom: 0;
}

.top .logo-text p {
  font-size: 1.5rem;
  margin: 0;
  font-family: 'Mukta-Bold';
}

.top .middle-content {
  color: #fff;
}

.logo-content {
  display: flex;
  align-items: center;
}

.logo-content img {
  width: 70px;
}

.logo-text {
  margin-left: 20px;
}

/*.page-control
{
 overflow-x: hidden;
}*/
.page-control .list {
  display: flex;
  padding: 0px 0;
  justify-content: flex-end;
  margin: 0; /* align-items: center;*/
}

.page-control .menu li a {
  padding: 2px 0;
}

.page-control .menu li a {
  background-color: transparent;
  color: #000 !important;
}

.searchBox {
  animation: searchBox-reveal 1.4s;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;/*  min-width: 32px;*/
  border-radius: 8px;
  transition: all 0.2s;
}

.searchBox:hover > .searchInput {
  transition: all 0.5s cubic-bezier(0.16, 0.2, 0.32, 1.4);
  width: 200px;
  padding: 4px 12px;  /* margin-left: 10px; */
}

.searchBox .fa-magnifying-glass {
  font-size: 14px;
}

.searchInput {
  background: none;
  border: none;
  outline: none;
  float: left;
  color: #000;
  background-color: #fff;
  font-size: 12px;
  transition: 0.4s;
  width: 0px;  /*height: 20px;*/
  position: relative;
  right: -7px;
}

.searchButton {
  color: #000;
  background-color: #e6e6e6;
  outline: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  padding: 8px 5px; /* border: 1px solid #fff;*/
  position: relative;
}

.searchButton img {
  width: 10px;
}

input::placeholder {
  color: #000;
  opacity: 0.5;
}

.font-control {
  padding-left: 0;
  display: flex;
}

.font-control li {
  display: flex;
  justify-content: space-between;
  padding: 0px 3px;
  font-weight: bold; /* border: 1px solid #a9a9a9;*/
  margin: 2px;
  height: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;  /*background-color: #616ed6;*/
}

/*.font-control li:hover {
 background-color: #000;
}*/
.color-control {
  padding-left: 0;
  display: flex;
}

.color-control li {
  display: flex;
  justify-content: space-between;
  padding: 0px 0px;
  font-weight: bold;
  color: #fff; /* border: 1px solid #a9a9a9;*/
  margin: 2px;
  font-size: 14px;
  cursor: pointer;
  height: 20px;
  display: flex;
  align-items: center;
}

.color-control .dark {
  background-color: #000;
  width: 20px;
  color: #fff !important;
  display: flex;
  justify-content: center;
}

.page-control .list li {
  list-style: none;
  color: #000;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center; /* border-right: 1px solid #000;*/
}

.color-control li:hover {
  background-color: #616ed6;
  color: #fff !important;
}

.page-control .list li a {
  color: #000;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu {
  display: block;
}

.m-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.list-item {
  padding: 5px; /* margin-right: 15px;*/
  border-right: 1px solid #bababa;
}

.list-item:last-child {
  border-right: 0;
}

.list-item .fa-solid {
  font-size: 10px;
}

.menu li {
  display: inline-block;
  position: relative;
  z-index: 100;
  padding: 0;
}

.menu li:first-child {
  margin-left: 0;
}

.menu li a {
  font-weight: 600;
  text-decoration: none;
  padding: 9px 6px;
  display: block;
  color: #fff;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out 0s;
  font-family: 'Mukta-Bold';
  text-shadow: 1px 1px 0px #0005;
}

.mixSlide-open-close-fullscreen {
  display: none !important;
}

.menu li a:hover, .menu li:hover>a {
  color: #fff;
  background: #005a9d;
}

.menu ul {
  visibility: hidden;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: 170px;
  position: absolute;
  left: 0px;
  background: #fff;
  z-index: 99;
  transform: translate(0, 20px);
  transition: all 0.2s ease-out;
}

.menu ul:after {
  bottom: 100%;
  left: 20%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 6px;
  margin-left: -6px;
}

.menu ul li {
  display: block;
  float: none;
  background: none;
  margin: 0;
  padding: 0;
}

.menu ul li a {
  font-size: 12px;
  font-weight: normal;
  display: block;
  color: #797979;
  background: #fff;
}

.menu ul li a:hover, .menu ul li:hover>a {
  background: #9ca3da;
  color: #fff;
}

.menu li:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
}

.menu ul ul {
  left: 169px;
  top: 0px;
  visibility: hidden;
  opacity: 0;
  transform: translate(20px, 20px);
  transition: all 0.2s ease-out;
}

.menu ul ul:after {
  left: -6px;
  top: 10%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #fff;
  border-width: 6px;
  margin-top: -6px;
}

.menu li>ul ul:hover {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
}

.responsive-menu {
  display: none;
  width: 100%;
  padding: 20px 15px;
  background: #374147;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}

.responsive-menu:hover {
  background: #374147;
  color: #fff;
  text-decoration: none;
}

.menu li .active {
  background-color: #005a9d !important;
}

a.active {

  /* background:#005a9d; */

  /* color: #fff !important; */
}

.down-arrow {
  font-size: 11px;
  margin-left: 6px;
}

@media (min-width:768px) and (max-width:979px) {
  .mainWrap {
    width: 768px;
  }

  .menu ul {
    top: 37px;
  }

  .menu li a {
    font-size: 12px;
  }

  a.homer {
    background: #374147;
  }

}

@media (max-width:767px) {
  .mainWrap {
    width: auto;
    padding: 50px 20px;
  }

  .menu {
    display: none;
  }

  .responsive-menu {
    display: block;
  }

  nav {
    margin: 0;
    background: none;
  }

  .menu li {
    display: block;
    margin: 0;
  }

  .menu li a {
    background: #fff;
    color: #797979;
  }

  .menu li a:hover, .menu li:hover>a {
    background: #9ca3da;
    color: #fff;
  }

  .menu ul {
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    transform: initial;
  }

  .menu li:hover>ul {
    visibility: visible;
    opacity: 1;
    position: relative;
    transform: initial;
  }

  .menu ul ul {
    left: 0;
    transform: initial;
  }

  .menu li>ul ul:hover {
    transform: initial;
  }

}

.more-nav {
  align-items: center;
  justify-content: space-around;
  width: 70px;
  font-weight: bold;
}

.menu {
  display: block;
  position: relative;
  padding-left: 0;
  margin-bottom: 0;
}

.dsc {
  background-color: #cc1717;
  color: #fff;
  border-radius: 50px;
  text-align: center;
}

/*top header end*/

/*navbar*/
.navbar {
  padding: 0;
}

.nav-bar {
  background-color: var(--sky2);  /*box-shadow: 10px 13px 32px #00000057;*/
}

.nav-bar .nav-link {
  text-transform: uppercase;
  font-weight: 600;
  padding: 15px;
}

.nav-link.active {
  background-color: #000;
  color: var(--white) !important;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  background-color: var(--sky2);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  z-index: 99999;
  border-left: 1.5px solid #fff;
}

.new-menu li {
  list-style: none;
}

.new-menu {
  padding-left: 0;
  margin: 10px;
  margin-top: 80px;
}

.sidenav a {
  padding: 8px;
  text-decoration: none;
  color: #fff;
  display: block;
  transition: 0.3s;
  font-size: 16px;
  font-weight: bold;
  text-shadow: 1px 1px #000;
  letter-spacing: 0.9px;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  width: 30px;
  height: 30px;
  border: 1.5px solid #fff;
  display: flex;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
}

.sidenav .closebtn:hover {
  background-color: var(--hover-color);
}

.sidenav {
  padding-top: 15px;
}

.sidenav a {
  font-size: 18px;
}

/* banner-start */
.banner-slider {
  max-height: 500px;
  min-width: 100%;
  overflow: hidden;
}

.banner-slider img {
  width: 100%;
}

.banner-slider .owl-nav {
  position: absolute;
  right: 9%;
  bottom: 1%;
  z-index: 9999;
}

.banner-slider .owl-nav button {
  background: #00000078 !important;
  width: 26px !important;
  font-size: 24px;
  height: 36px;
}

.banner-slider .owl-nav button:hover {
  background-color: #000 !important;
}

.banner-slider .owl-nav button .fa-solid {
  color: #fff;
  line-height: 36px;
}

.banner-slider .owl-nav button span {
  color: #fff;
  font-size: 23px;
  font-weight: bold;
}

.banner-slider .owl-dots {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 2%;
}

/* banner-end */

/* whats-new */
.wht-new {
  width: 100%;
}

.wht-new .text-scroll {
  display: flex;
  border-bottom: 1.5px solid #05066b;
  border-top: 1.5px solid #05066b;
}

.wht-new .text-scroll .left {
  background-color: var(--green);
  width: 14%;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 10px 0;
  padding-left: 22px;
  border-right: 1px solid #05066b;
}

.fc-day-number {
  text-decoration: none;
  color: #000 !important;
}

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  font-weight: bold;
  font-size: 18px;
}

.fc-center h2 {
  font-weight: bold;
  color: #004980;
}

.fc-state-active {
  background: var(--bs-yellow) !important;
}

.fc-today-button {
  text-transform: capitalize !important;
}

.fc-button {
  text-transform: capitalize !important;
}

.fc-today-button {
  background: var(--green) !important;
  color: #fff !important;
}

.fc td, .fc th {
  border-color: #a5a5a5 !important;
  background: #ffebd1 !important;
}

.wht-new .text-scroll .left h4 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 1px 1px #000;
}

.wht-new .text-scroll .middle {
  width: 76%;
  padding: 10px 0;
  border: 1px solid #e6e6e6;
  display: inherit;
  background: #fff;
}

.wht-new .text-scroll .right {
  background-color: var(--main-bg-color);
  width: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  border-left: 1px solid;
}

.wht-new .text-scroll .right:hover {
  background-color: var(--hover-color);
  z-index: 999;
}

.wht-new .text-scroll .right h4 {
  text-align: center;
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.wht-new .text-scroll .right a {
  color: #fff;
  text-decoration: none;
}

.wht-new .text-scroll .middle marquee p img {
  width: 40px;
}

.wht-new .text-scroll .middle marquee p {
  padding: 0;
  margin: 0;
  margin-right: 12px;
}

.wht-new .text-scroll .middle marquee p a {
  text-decoration: none;
  color: #000;
  font-weight: 400;
}

/* left-abt-start */
.about-mis_vis h3 {
  font-family: 'mukta-bold';
  margin-bottom: 20px;
}

.left-abt {
  background-color: #fff;
  padding: 20px;
  border: 2px solid #0002;
  max-height: 340px;
  height: 340px;
  position: relative;
}

.left-abt .text-pragraph {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*.left-abt .primary-btn {
position: absolute;
bottom: 20px;
}*/
.primary-btn {
  transition: 0.3s;
  background-color: var(--main-bg-color);
  color: #fff;
}

.box-content .primary-btn {
  position: relative;
  bottom: -33px;
}

.box-content h4 {

  /* margin-top: 25px;*/
  font-family: 'Mukta-Bold';
}

.left-abt h4 {
  font-weight: 600;
}

.abt-btn {
  position: absolute;
  bottom: 10px;
  right: 15px;
}

.miss-btn {
  position: absolute;
  bottom: 43px;
  right: 15px;
}

.viss-btn {
  position: absolute;
  bottom: 43px;
  right: 15px;
}

.primary-btn:hover {
  background-color: var(--hover-color);
  color: var(--white);
}

.left-abt p {
  font-size: 16px !important;
}

.box-abt {
  background-color: #fff;
  padding: 20px;
  border: 2px solid #0002;
  position: relative;
  max-height: 340px;
  height: 340px;
  overflow: hidden;
}

.box-abt p {
  font-size: 14px;
  display: -webkit-box;
  max-width: 400px;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.image-icon {
  position: absolute;
  left: -65px;
  top: -75px;
  border-radius: 66px;
  width: 150px;
  height: 150px;
}

.image-icon img {
  position: absolute;
  right: 25px;
  top: 80px;
  width: 51px;
}

/*.box-content {
 position: relative;
 top: 20%;
}
*/
.icon-sky {
  background-color: var(--sky);
}

.icon-red {
  background-color: #d66161;
}

/*director*/
.director-carousel {
  background-image: url('../images/colorful-geometric-cardboards.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px 0;
}

.director-carousel a {
  color: #000;
  text-decoration: none;
}

.director .title {
  font-weight: bold;
  font-family: 'Mukta-Bold';
  position: relative;
}

.director .title::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 11px;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-top: 1px solid #5a5a5a;
  border-bottom: 1px solid #5a5a5a;
}

.director .title::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 1px;
  bottom: -15px;
  margin: 0 auto;
  left: 0;
  right: 0;
  background: var(--green);
}

.director-carousel .owl-prev {
  position: absolute;
  top: 35%;
  left: -30px;
  color: #fff;
}

.director-carousel .owl-next {
  position: absolute;
  top: 35%;
  right: -30px;
  color: #fff;
}

.director-carousel .owl-nav button .fa-solid {
  color: #fff;
  font-size: 25px
}

.director-carousel .owl3 .item {
  background-color: #fff;
  padding: 20px 2px 20px;
  border-radius: 5px;
  height: 160px;
  margin: 0px 10px;
}

.director-carousel .owl3 .item img {
  margin: 0 auto;
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.director-carousel .owl3 .item h5 {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}

.custom-border {
  text-align: center;
}

.wings-content {
  margin-top: 90px;
}

.wings {
  width: 200px;
  background-color: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 60px;
  position: relative;
  min-height: 90px;
  max-height: 130px;
  border-bottom: 2.5px solid #FF9800;
  box-shadow: 2px 6px 9px #898989;
  transition: 0.4s;
  cursor: pointer;
}

.wings a {
  text-decoration: none;
  color: #000;
}

.wings:hover {
  background-color: var(--main-bg-color);
  transform: translateY(-5px);
}

.wings:hover h5 {
  color: #fff;
}

.wings:hover .wings-img {
  box-shadow: 0px 1px 16px #cbcbcb;
}

.wings h5 {
  font-size: 15px;
  margin-top: 35px;
  margin-bottom: 50px;
  font-weight: bold;
  font-family: 'Mukta-Bold';
}

.wings .wings-img {
  width: 60px;
  border-radius: 50px;
  margin: 0 auto;
  border: 1.5px solid #0009;
  height: 60px;
  overflow: hidden;
  position: absolute;
  top: -25px;
  right: 0;
  left: 0;
  background-color: #fff;
}

.wings .wings-img img {
  margin: 0 auto;
  width: 100%;
  height: 60px;
  object-fit: contain;
}

/*notice start*/
.notice {
  margin-left: 60px;
}

.notice-board {
/*  overflow-y: auto;*/
  height: 500px;
}

.tabs-content marquee {
  height: 185px;
}

.tabs-content marquee ul {
  padding: 0;
}

.tabs-content marquee ul li {
  font-size: 14px;
  margin-bottom: 10px;
  list-style: none;
}

.tabs-content marquee ul li a {
  text-decoration: none;
  color: #000;
}

.notice-board .media {
  display: flex;
  justify-content: space-between;
  height: 100px;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 2px 3px 10px #8a8a8a;
}

.notice-board .media .media-left {
  width: 25%;
}

.notice-board .media .media-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notice-board .media .media-body {
  width: 75%;
  padding: 15px;
  border-bottom: 5px solid #ff9800;
  padding-left: 18px;
}

.notice-board .media .media-body h4 {
  font-weight: bold;
}

.notice-board .media .media-body p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
}

/* main-notice start */
.main-notice {

  /* background-color: var(--main-bg-color); */
  padding: 50px 0;
  background-image: url('../images/service-bg.jpg');
  height: 100%;
  background-size: contain;
}

/* 
.main-notice .content {
margin: 30px;
} */
.main-notice h2 {
  font-weight: bold;
  font-family: 'Mukta-Bold';
  position: relative;
}

.main-notice h2::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 11px;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-top: 1px solid #5a5a5a;
  border-bottom: 1px solid #5a5a5a;
}

.main-notice h2::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 1px;
  bottom: -15px;
  margin: 0 auto;
  left: 0;
  right: 0;
  background: var(--green);
}

.clearfix:after {
  content: '.';
  height: 0;
  font-size: 0;
  line-height: 0;
  display: block;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

.main-notice .tabs-content {
  background: #eee;
  font-family: sans-serif;
}

.main-notice .tabs-menu {
  background: #0074a2;
}

.main-notice .tabs-menu ul {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0;
  margin-bottom: 0;
}

.main-notice .tabs-menu ul li {
  text-align: center;
  width: 25%;
  box-shadow: 4px 3px 6px #0003;
}

.main-notice .tabs-menu ul li a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}

.main-notice .tabs-menu ul li a.active-tab-menu {
  background: #005a9d;
  color: #fff;
}

.tabs {
  display: none;
  padding: 5px 30px;
  height: 250px;
}

.first-tab {
  display: block;
}

.active-tab-menu {
  position: relative;
}

.main-notice .tabs-menu ul {
  list-style: none;
  padding-left: 0;
}

.active-tab-menu:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0dd";
  position: absolute;
  bottom: -25px;
  right: 0;
  left: 0;
  text-align: center;
  color: #005a9d;
  font-size: 44px;
}

/*calender-event*/
#calendar {
  max-width: 600px;
  padding: 10px 10px;
  background-color: #fff;
  position: absolute;
  border: 2px solid #d5d5d5;
}

.calender-notice {
  position: relative;
}

.calender-cont::after {
  content: '';  /* background-color: var(--main-bg-color); */
  width: 55%;
  position: absolute;
  left: 0;
  height: 565px;
  z-index: -1;
  min-height: 500px;
}

.calender-title h3 {
  font-weight: 600;
  margin-bottom: 45px;
  font-family: 'Mukta-Bold';
  position: relative;
}

.calender-title h3::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 11px;
  bottom: -20px;
  left: 0;
  border-top: 1px solid #5a5a5a;
  border-bottom: 1px solid #5a5a5a;
}

.calender-title h3::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 1px;
  bottom: -15px;
  left: 0;
  background: var(--green);
}

.notice-title h3 {
  font-weight: 600;
  margin-bottom: 45px;
  font-family: 'Mukta-Bold';  /* margin-top: 55px; */
  position: relative;
}

.notice-title h3::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 11px;
  bottom: -20px;
  left: 0;
  border-top: 1px solid #5a5a5a;
  border-bottom: 1px solid #5a5a5a;
}

.notice-title h3::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 1px;
  bottom: -15px;
  left: 0;
  background: var(--green);
}

.bg-img {
  position: absolute;
  left: -87px;
  top: -9px;
}

.video-photo {
  background-color: #bfddf4;
  padding: 40px 0;
  color: #fff;
  height: auto;  /* background-image: url(../images/bg13.jpg); */
  background-size: cover;  /* background-attachment: fixed; */
}

.video-photo h2 {
  font-weight: 600;
  margin-bottom: 45px;
  font-family: 'Mukta-Bold';
  position: relative;
  color: #000;
}

.video-photo h2::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 11px;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-top: 1px solid #5a5a5a;
  border-bottom: 1px solid #5a5a5a;
}

.video-photo h2::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 1px;
  bottom: -15px;
  margin: 0 auto;
  left: 0;
  right: 0;
  background: var(--green);
}

.gallery {
  text-align: center;
  background-color: #fff;
  height: 290px;
  padding: 20px;
  position: relative;
  border-radius: 5px;
  border: 1px solid #9f9f9f;
}

.video-photo img {
  width: 80%;
}

.video-photo .nav-link {
  color: #fff;
  margin-right: 2px;
  border-radius: 0;
}

.video-photo .primary-btn {
  border: 1px solid #fff;
  background-color: var(--main-bg-color);
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  width: 100px;
  margin: 0 auto;
}

.video-photo .primary-btn:hover {
  background-color: var(--hover-color);
  color: var(--white);
}

.iec h3 {
  color: #000;
  font-family: 'Mukta-Medium';
  font-size: 18px;
}

.tab-pane {
  background-color: var(--sky);
  text-align: center;
}

.video-photo .nav-link.active {
  color: #000 !important;
}

.viw-all {
  color: #fff;
  text-decoration: none;
}

.logo-slider-section h2 {
  font-weight: 600;
  margin-bottom: 45px;
  font-family: 'Mukta-Bold';
  position: relative;
}

.logo-slider-section h2::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 11px;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-top: 1px solid #5a5a5a;
  border-bottom: 1px solid #5a5a5a;
}

.logo-slider-section h2::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 1px;
  bottom: -15px;
  margin: 0 auto;
  left: 0;
  right: 0;
  background: var(--green);
}

.portal-slider .owl-carousel .item {
  width: 140px !important;
}

.portal-slider .owl-carousel .owl-nav {
  top: 20% !important;
}

.logo-slider {
  background-color: #0003;
  padding: 10px 0;
}

.logo-slider .owl-carousel .item {
  width: 150px;
  height: 85px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #0005;
  background-color: #fff;
}

.owl2 .owl-nav [class*='owl-']:hover {
  width: 20px;
  height: 20px;
  line-height: 5px;
}

.portal-slider .owl-carousel .item {
  border-radius: 10px;
}

.portal-slider {
  margin: 20px 0 !important;
  padding: 20px 0;
}

.logo-slider-section {
  margin: 0px 0 !important;
}

.logo-slider .owl-carousel .owl-item {
  margin-right: 0 !important;
  border-right: 0 !important;
}

.logo-slider .owl-carousel img {
  width: 100px !important;
  height: 65px !important;
  margin: 0 auto;
  object-fit: contain;
  height: 100%;
}

.portal-slider .owl-carousel img {
  width: 80px !important;
}

.logo-slider .owl-carousel .owl-nav {
  position: absolute;
  top: 25%;
  width: 100%;
}

.logo-slider .owl-carousel  .owl-prev {
  position: absolute;
  left: 0;
}

.logo-slider .owl-carousel  .owl-next {
  position: absolute;
  right: 0;
}

.logo-slider .owl-carousel .owl-nav {
  position: absolute;
  top: 25%;
}

/* .logo-slider .owl-theme .owl-nav [class*='owl-']:hover {
background-color: #00013ae3;
width: 40px;
height: 35px;
line-height: 0px;
} */
.owl4 .owl-carousel .owl-nav {
  top: 17% !important;
}

.owl4 .owl-next {
  position: absolute;
  right: -50px !important;
  background: #097fd7 !important;
  color: #fff !important;
  width: 30px;
  height: 30px;
  line-height: 10px !important;
}

.owl4 .owl-next:hover {
  background-color: var(--hover-color);
  color: var(--white);
}

.owl4 .owl-prev {
  position: absolute;
  left: -50px !important;
  background: #097fd7 !important;
  color: #fff !important;
  width: 30px;
  height: 30px;
  line-height: 10px !important;
}

.owl4 .owl-prev:hover {
  background-color: var(--hover-color);
  color: var(--white);
}

/*footer*/
.footer {
  background-color: var(--main-bg-color);
  padding-top: 40px;
  background-color: #00006e;
  background-image: linear-gradient(359deg, #000000ed, #ffffff29);
}

.footer h3 {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 1.5px;
}

.footer h3::after {
  content: '';
  height: 2px;
  width: 100px;
  background-color: #e7a430;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(44deg, #00000042, #0b0b0b8f);
  top: 33px;
}

.footer p {
  color: #d9d9d9;
  margin-top: 20px;
  font-size: 13px;
}

.footer ul {
  margin-top: 20px;
  padding-left: 0px;
}

.footer ul li {
  color: #d9d9d9;
  list-style: none;
}

.footer ul li span {
  font-weight: bold;
  font-size: 18px;
}

.visit {
  margin-top: 20px;
  list-style: none;
}

.footer ul li a {
  color: #cbcbcb;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.footer ul li a:hover {
  letter-spacing: 0.1px;
  color: var(--yellow-color);
}

.footer ul li a .fa-angle-double-right {
  font-size: 10px;
}

.bottom-footer {
  text-align: center;
  background-color: #000;
  padding: 15px 0;
  margin-top: 20px;
}

.bottom-footer h5 {
  color: #ababab;
  font-size: 14px;
  margin: 0 auto;
  width: 80%;
}

.bottom-footer img {
  width: 5%;
  margin-left: 10px;
}

#button {
  display: inline-block;
  background-color: #FF9800;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  text-decoration: none;
}

#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 43px;
  color: #fff;
}

#button:hover {
  cursor: pointer;
  background-color: #333;
}

#button:active {
  background-color: #555;
}

#button.show {
  opacity: 1;
  visibility: visible;
}

.gallery-title h3 {
  font-family: 'Mukta-Medium';
  margin-bottom: 20px;
  color: #000;
  font-size: 18px;
}

.video-gallery {
  border-right: 1px solid #fff3;
  border-left: 1px solid #fff3;
  padding: 0px 30px;
  height: 100%;
}

.media-image {
  margin: 0 auto;
  width: 60%;
}

/* light-box-photo-start */
@media screen and (min-width:991px) {
}

.img-wrapper {
  position: relative;
  margin-bottom: 15px;
}

.img-wrapper img {
  width: 100%;
}

.img-overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  cursor: pointer;
}

.img-overlay i {
  color: #fff;
  font-size: 2em;
}

#overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  z-index: 99999;
}

#overlay img {
  margin: 0;
  width: 80%;
  height: auto;
  object-fit: contain;
  padding: 25px;
  border: none;
}

@media screen and (min-width:768px) {
  #overlay img {
    width: 60%;
  }

}

@media screen and (min-width:1200px) {
  #overlay img {
    width: 50%;
  }

}

#nextButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
}

#nextButton:hover {
  opacity: 0.7;
}

@media screen and (min-width:768px) {
  #nextButton {
    font-size: 3em;
  }

}

#prevButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
}

#prevButton:hover {
  opacity: 0.7;
}

@media screen and (min-width:768px) {
  #prevButton {
    font-size: 3em;
  }

}

#exitButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  position: absolute;
  top: 15px;
  right: 15px;
}

#exitButton:hover {
  opacity: 0.7;
}

@media screen and (min-width:768px) {
  #exitButton {
    font-size: 3em;
  }

}

/* light-box-photo-end*/
.online-portal h2 {
  font-weight: 600;
  margin-bottom: 45px;
  font-family: 'Mukta-Bold';
  position: relative;
}

.online-portal h2::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 11px;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-top: 1px solid #5a5a5a;
  border-bottom: 1px solid #5a5a5a;
}

.online-portal h2::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 1px;
  bottom: -15px;
  margin: 0 auto;
  left: 0;
  right: 0;
  background: var(--green);
}

.online-portal marquee {
  border: 2px solid var(--main-bg-color);
}

.online-portal marquee::after {
  content: '';
  width: 200px;
  right: 0;
  position: absolute;
  height: 10px;
  background-color: #0002;
}

/*.online-portal {
margin-left: 30px;
}*/
.online-portal h3 {
  font-family: 'mukta-bold';
}

.online-portal ul {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
}

.online-portal ul li {
  margin: 0px;
  padding: 20px 30px;
  border-left: 2px solid var(--main-bg-color);
}

.online-portal ul li:last-child {
  border-right: 2px solid var(--main-bg-color);
}

.online-portal ul li a img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.online-portal ul li a {
  color: #fff;
  text-decoration: none;
}

.online-portal ul li a:hover {
  color: var(--sky);
}

.online-portal ul li a .fa-arrows-up-down-left-right {
  margin-right: 10px;
  font-size: 10px;
}

.video-photo .tab-pane img {
  width: 90%;
  height: 250px;
  object-fit: cover;
  margin: 20px;
}

.video-photo .video {
  background-color: #fff;
  display: flex;
  align-items: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/*About page*/
.main {
  min-height: 100vh;
}

.main .banner img {
  width: 100%;
}

.breadcrumb {
  display: inline-block;
  padding: 0 0px 0 0;
  margin: 0;
  background: transparent;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 25px;
}

.breadcrumb li {
  float: left;
  background: #2f2f9d;
  border-radius: 0;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
}

.breadcrumb li:nth-child(even) {
  background: rgba(0, 0, 0, 0.8);
}

.breadcrumb li:last-child {
  padding: 6px 25px;
  color: #fff;
  z-index: 1;
  letter-spacing: 0.6px;
  position: relative;
}

.breadcrumb li:last-child:before {
  content: "";
  display: block;
  width: 100%;
  height: 101%;
  background: var(--main-bg-color);
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%) skew(-20deg);
}

.breadcrumb li:before {
  display: none;
}

.breadcrumb li a {
  display: block;
  padding: 6px 25px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}

@media only screen and (max-width:767px) {
  .breadcrumb li a, .breadcrumb li:last-child {
    font-size: 13px;
    padding: 10px 20px;
  }

}

@media only screen and (max-width:480px) {
  .breadcrumb li a, .breadcrumb li:last-child {
    padding: 5px 15px;
  }

}

@media only screen and (max-width:360px) {
  .breadcrumb li a, .breadcrumb li:last-child {
    font-size: 12px;
    padding: 5px;
  }

}

/*About page end*/

/*contact-us start*/
.main .banner-title {
  color: #fff;
  font-family: 'mukta-bold';
  font-weight: bold;
}

.main .banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  height: 200px;
}

.main .contact {
  background: #fff;
  padding: 20px;
}

.contact-title h4 {
  font-size: 20px;
  font-weight: bolder;
  font-family: 'mukta-bold';
  margin: 0;
}

.contact-title p {
  font-weight: bold;
  font-size: 17px;
}

.contact-left p {
  font-size: 16px;
  margin: 0;
  font-family: 'Mukta-Medium';
}

.contact-right ul {
  padding-left: 0;
}

.contact-right ul li {
  list-style: none;
  margin-bottom: 5px;
  font-family: 'Mukta-Medium';
}

.contact-right ul li a {
  text-decoration: none;
}

.contact-right ul li .ico {
  background: var(--sky);
  width: 40px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 7px;
  border-radius: 5px;
  font-size: 15px;
}

.location_icon {
  width: 53px;
  height: 50px;
  background: #ff9800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 7px;
  border-radius: 5px;
  font-size: 23px;
}

.location_icon span {
  color: #fff;
}

.contact-details .google-map {
  margin-top: 30px;
}

/*contact-us end*/

/* tabs */

/*notice table*/
.tabs {
  background: #fff;
  border: 1px solid #0002;
}

.panel {
  font-family: 'Mukta-Medium';
  padding: 0;
  border: none;
  box-shadow: 0 .3rem .8rem rgba(0, 0, 0, .12);
}

.panel .panel-heading {
  background: #fff;
  padding: 25px 25px 10px;
  border-radius: 0;
}

.panel .panel-heading .title {
  color: #32393f;
  font-size: 28px;
  font-weight: 400;
  line-height: 30px;
  text-transform: capitalize;
  margin: 0;
}

.panel .panel-heading .btn {
  font-size: 15px;
  padding: 6px 15px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease 0s;
}

.panel .panel-heading .btn:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.panel .panel-body {
  border-radius: 0;
}

.panel .panel-body .table thead tr th {
  color: #f4f4f4;
  font-size: 18px;
  font-weight: 400;
  padding: 5px 15px;
  font-family: 'Mukta-Bold';
}

.pagination li {
  width: 25px;
  height: 25px;
  background-color: #ff9800;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 3px;
}

.pagination li:hover {
  background-color: var(--main-bg-color);
}

.pagination li a:hover {
  color: #fff;
}

.panel-body table thead {
  background-color: #cb7f00 !important;
}

.panel .panel-body .table thead tr th:last-child {
  width: 200px;
}

.panel .panel-body .table tbody tr td {
  color: #555;
  background: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 10px;
  vertical-align: middle;
  border-color: #e7e7e7;
  text-align: center;
}

.panel .panel-body .table .user_icon {
  width: 50px;
  height: 50px;
  margin: 0 5px 0 0;
  border-radius: 100px;
  display: inline-block;
}

.panel .panel-body .table .user_icon img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.panel .panel-body .table tbody td span.label {
  font-size: 13px;
}

.panel .panel-body .table tbody .action-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.panel .panel-body .table tbody .action-list li {
  margin: 0 3px;
  display: inline-block;
}

.panel .panel-body .table tbody .action-list li a {
  color: #f41127;
  background-color: rgb(244 17 39 / 0.11);
  font-size: 18px;
  border: none;
  transition: all 0.3s ease;
}

.panel .panel-body .table tbody .action-list li:last-child a {
  color: #0d6efd;
  background-color: rgb(13 110 253 / 0.11);
}

.panel .panel-body .table tbody .action-list li a:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.panel .panel-footer {
  background-color: #fff;
  padding: 10px 25px 25px;
  border: none;
}

.pagination {
  margin: 0;
}

.pagination li a {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 32px;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0 2px;
  border-radius: 30px;
  border: none;
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

@media only screen and (max-width:767px) {
  .panel .panel-heading {
    text-align: center;
  }

  .panel .panel-heading .title {
    margin: 0 0 15px;
  }

  .panel .panel-heading .text-right {
    text-align: center;
  }

}

/*schemes*/
.schemes {
  margin-top: 40px;
}

/*photo-gallery*/
.photo_gallery img {
  width: 100%;
  border: 1px solid var(--main-bg-color);
  height: 260px;
  object-fit: cover;
}

.img-wrapper img {
  height: 200px;
  object-fit: cover;
}

.photo_gallery a {
  text-decoration: none;
  color: #000;
}

.photo_gallery .title {
  color: var(--main-bg-color);
  font-family: 'Mukta-Medium';
  margin-top: 15px;
}

.video_gallery .video {
  margin-bottom: 20px;
}

.video_gallery .video .title {
  color: var(--main-bg-color);
  font-family: 'Mukta-Medium';
}

/*screenreder*/
.bg-blue {
  background-color: var(--main-bg-color);
}

.ico_img {
  width: 4%;
}

.mission_vision h2 {
  font-family: 'mukta-bold';
}

@keyframes down-btn {
  0% {
    bottom: 20px;
  }

  100% {
    bottom: 0px;
  }

  0% {
    opacity: 0;
  }

  100% {
    opaicty: 1;
  }

}

@-webkit-keyframes down-btn {
  0% {
    bottom: 20px;
  }

  100% {
    bottom: 0px;
  }

  0% {
    opacity: 0;
  }

  100% {
    opaicty: 1;
  }

}

@-moz-keyframes down-btn {
  0% {
    bottom: 20px;
  }

  100% {
    bottom: 0px;
  }

  0% {
    opacity: 0;
  }

  100% {
    opaicty: 1;
  }

}

@-o-keyframes down-btn {
  0% {
    bottom: 20px;
  }

  100% {
    bottom: 0px;
  }

  0% {
    opacity: 0;
  }

  100% {
    opaicty: 1;
  }

}

body {
  margin: 0;
}

.category-name {
  font-family: sans-serif;
  width: -webkit-fill-available;
  text-align: center;
  font-size: 40px;
}

.card-category-2 ul, .card-category-3 ul, .card-category-4 ul, .card-category-5 ul  .card-category-6 ul {
  padding: 0;
}

.card-category-2 ul li, .card-category-3 ul li, .card-category-4 ul li, .card-category-5 ul li, .card-category-6 ul li {
  list-style-type: none;
  display: inline-block;
  vertical-align: top;
}

.card-category-2 ul li, .card-category-3 ul li {
  margin: 10px 5px;
}

.card-category-1, .card-category-2, .card-category-3, .card-category-4, .card-category-5, .card-category-6 {
  font-family: sans-serif;
  margin-bottom: 45px;
  text-align: center;
}

.card-category-1 > div, .card-category-2 > div:not(:last-child) {
  margin: 10px 5px;
  text-align: left;
}

/* Image Card */
.img-card {
  position: relative;
  border-radius: 5px;
  text-align: left;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
  -o-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
}

.img-card .card-image {
  position: relative;
  margin: auto;
  overflow: hidden;
  border-radius: 5px 5px 0px 0px;
  height: 200px;
}

.img-card .card-image img {
  width: 100%;
  border-radius: 5px 5px 0px 0px;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}

.img-card .card-image:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.img-card .card-text {
  padding: 0 15px 15px;
  line-height: 1.5;
}

.img-card .card-link {
  padding: 20px 15px 30px;
  width: -webkit-fill-available;
}

.img-card .card-link a {
  text-decoration: none;
  position: relative;
  padding: 10px 0;
}

.img-card .card-link a:after {
  top: 30px;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  width: 0;
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  -moz-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  -o-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

.img-card .card-link a:hover:after {
  width: 100%;
  left: 0;
}

.img-card.iCard-style1 .card-title {
  position: absolute;
  font-family: 'Open Sans', sans-serif;
  z-index: 1;
  top: 10px;
  left: 10px;
  font-size: 30px;
  color: #fff;
}

.img-card.iCard-style1 .card-text {
  color: #795548;
}

.img-card.iCard-style1 .card-link a {
  color: #FF9800;
}

.img-card.iCard-style1 .card-link a:after {
  background: #FF9800;
}

.img-card.iCard-style2 .card-title {
  padding: 15px;
  font-size: 25px;
  font-family: 'Roboto', sans-serif;
}

.img-card.iCard-style2 .card-image {
  margin-bottom: 15px;
}

.img-card.iCard-style2 .card-caption {
  text-align: center;
  top: 80%;
  font-size: 17px;
  color: #fff;
  position: absolute;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  z-index: 1;
}

.img-card.iCard-style2 .card-link a {
  border: 1px solid;
  padding: 8px;
  border-radius: 3px;
  color: black;
  font-size: 13px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.img-card.iCard-style2 .card-link a:hover {
  background: black;
}

.img-card.iCard-style2 .card-link a:hover span {
  color: #fff;
}

.img-card.iCard-style3 {
  text-align: center;
}

.img-card.iCard-style3 .card-title {
  top: 80%;
  font-size: 30px;
  color: #fff;
  position: absolute;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  z-index: 1;
}

.img-card.iCard-style3 .card-text {
  color: #636060;
}

.img-card.iCard-style3 .card-link {
  border-top: 1px solid #e8e8e8;
}

.img-card.iCard-style3 .card-link a {
  color: #585858;
}

.img-card.iCard-style3 .card-link a:after {
  background: #585858;
}

.img-card.iCard-style4 {
  text-align: right;
}

.img-card.iCard-style4 .card-caption {
  position: absolute;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  z-index: 1;
  top: 10px;
  right: 10px;
  color: #fff;
}

.img-card.iCard-style4 .card-title {
  width: 100%;
  padding: 20px 0px 12px 0;
  color: #E91E63;
}

.img-card.iCard-style4 .card-title span {
  font-size: 25px;
  margin-right: 12px;
}

.img-card.iCard-style4 .toggle {
  cursor: pointer;
  padding: 8px 0px 13px 0px;
  width: 55px;
}

.img-card.iCard-style4 .toggle span, .img-card.iCard-style4 .toggle span:nth-child(2), .img-card.iCard-style4 .toggle span:nth-child(3) {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #E91E63;
  cursor: pointer;
}

.img-card.iCard-style4 .toggle span:nth-child(1) {
  right: 15px;
}

.img-card.iCard-style4 .toggle span:nth-child(2) {
  right: 27px;
}

.img-card.iCard-style4 .toggle span:nth-child(3) {
  right: 39px;
}

.img-card.iCard-style4 .card-text {
  opacity: 0;
  line-height: 0;
  padding-bottom: 0;
  color: #4c4c4c;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}

.img-card.iCard-style4 .toggle.active ~ .card-text {
  opacity: 1;
  line-height: 1.5;
  padding-bottom: 10px;
}

.img-card.iCard-style4 .card-link {
  border-top: 1px solid #e8e8e8;
}

.img-card.iCard-style4 .card-link a {
  color: #E91E63;
}

.img-card.iCard-style4 .card-link a:after {
  background: #E91E63;
}

.card-category-5 .per-card-2 .card-content .card-text {
  line-height: 1.5;
  color: #585858;
  font-size: 15px;
}

.card-category-5 .per-card-2 .card-content .social-icons {
  text-align: center;
  padding-top: 20px;
}

.card-category-5 .per-card-2 .card-content .social-icons i {
  padding: 10px;
  font-size: 30px;
  color: #430ca5;
  cursor: pointer
}

.card-category-5 .per-card-2 .card-content .social-icons i:hover {
  color: black;
}

.card-category-5 .per-card-3 {
  width: 400px;
  height: 240px;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.card-category-5 .per-card-3:hover .card-content .social-icons {
  opacity: 1;
  height: 100%;
}

.card-category-5 .per-card-3:hover .social-icons .card-btn {
  bottom: 0px !important;
  -webkit-animation: down-btn 1.5s;
  -moz-animation: down-btn 1.5s;
  -o-animation: down-btn 1.5s;
  animation: down-btn 1.5s;
}

.card-category-5 .per-card-3 .card-image {
  position: relative;
  background: #009688;
  padding-left: 20px;
  text-align: left;
}

.card-category-5 .per-card-3 .card-image img {
  height: 90px;
  border-radius: 50px;
  padding: 5px;
  margin-right: 10px;
}

.card-category-5 .per-card-3 .card-image .per-name {
  position: absolute;
  top: 40%;
  text-transform: uppercase;
  letter-spacing: 7px;
  font-size: 20px;
  color: #fff;
}

.card-category-5 .per-card-3 .card-content {
  text-align: center;
  padding: 20px;
  position: relative;
}

.card-category-5 .per-card-3 .card-content .per-position {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #009688;
}

.card-category-5 .per-card-3 .card-content .card-text {
  padding: 10px;
}

.card-category-5 .per-card-3 .card-content .card-text span {
  font-size: 13px;
  color: #007368;
}

.card-category-5 .per-card-3 .card-content .social-icons {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  opacity: 0;
  height: 0%;
  background: #009688;
  border-top: 1px solid #5eada5;
  cursor: pointer;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.card-category-5 .per-card-3 .card-content .social-icons i {
  margin: 15px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.card-category-5 .per-card-3 .card-content .social-icons i:hover {
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -o-transform: scale(2);
  transform: scale(2);
}

.card-category-5 .per-card-3 .card-content .social-icons .card-btn {
  position: absolute;
  bottom: 10px;
  text-align: center;
  width: 100%;
}

.card-category-5 .per-card-3 .card-content .social-icons .card-btn button {
  cursor: pointer;
  width: 100%;
  padding: 15px;
  font-size: 18px;
  color: #fff;
  background: #03695f;
  border: none;
}

@media only screen and (max-width:480px) {
  .io-card-1 .card-content .card-text {
    display: none;
  }

  .io-card-1 .card-link {
    top: 85px;
  }

  .card-category-4 .sp-card-1 {
    height: 100%;
    width: 100%;
    text-align: center;
    padding: 0 0px 30px 0;
    margin: 30px 0;
  }

  .card-category-4 .sp-card-1 .shop-button {
    padding: 0;
  }

  .card-category-4 .sp-card-1 ul li:nth-child(1) {
    padding: 20px;
    float: none;
  }

  .card-category-4 .sp-card-1 ul li:nth-child(2) {
    text-align: center;
    padding: 0 0 30px 0;
    float: none;
  }

  .card-category-4 .sp-card-2 {
    width: 300px;
  }

  .card-category-4 .sp-card-3 {
    width: 100%;
    height: auto;
  }

  .card-category-4 .sp-card-3 .card-title {
    text-align: center;
    width: 100%;
    float: none;
  }

  .card-category-4 .sp-card-3 .product-details .product-img {
    width: 100%;
    float: none;
    padding-top: 10px;
    display: block;
  }

  .card-category-4 .sp-card-3 .product-details .product-img img {
    height: auto;
    width: 90%;
  }

  .card-category-4 .sp-card-3 .product-details .product-description {
    width: 100%;
    padding: 20px 0px;
  }

  .card-category-4 .sp-card-3 .product-details .product-description ul {
    text-align: center;
  }

  .card-category-4 .sp-card-3 .product-details .product-description ul li {
    font-size: 25px;
  }

  .card-category-4 .sp-card-3 .product-details .product-description ul li:last-child {
    text-decoration: underline;
    padding-top: 20px;
  }

  .card-category-4 .sp-card-3 .footer-card p {
    font-size: 20px;
  }

  .card-category-4 .sp-card-3 .footer-card li:nth-child(1) {
    padding-top: 5px;
  }

  .card-category-4 .sp-card-3 .footer-card li:nth-child(2) {
    width: 100%;
    padding: 30px 0;
    text-align: center;
  }

  .card-category-4 ul li:nth-child(3) {
    margin-top: 25px;
    padding: 0 15px;
  }

  .card-category-5 .per-card-2 {
    margin: 20px 40px;
  }

  .card-category-5 .per-card-3 {
    width: 350px;
  }

  .card-category-5 .per-card-3 .card-image .per-name {
    letter-spacing: 4px;
  }

}

@media only screen and (max-width:360px) {
  .ioverlay-card .card-content {
    top: 10px;
  }

  .io-card-1 .card-link {
    top: 70px;
  }

  .card-category-5 .per-card-2 {
    width: 275px;
  }

  .card-category-5 .per-card-2 .card-image {
    width: 295px;
  }

  .card-category-5 .per-card-3 {
    width: 320px;
    height: 254px;
  }

}

/*sitemap*/
.sitemap h2 {
  font-weight: bold;
  border-bottom: 1px dashed #0008;
  padding: 10px 0;
  margin-bottom: 30px;
}

.sitemap {
  padding-top: 30px;
  padding-bottom: 50px;
}

.sitemap .main_list {
  list-style: square;
  font-weight: bold;
  margin-bottom: 7px;
  font-size: 18px;
}

.sitemap .main_list a {
  color: #000;
  text-decoration: none;
}

.sitemap .main_list ul li {
  font-weight: normal;
  font-size: 16px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  background: #097fd7 !important;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}

.mixSlide-container {
  background-image: url('../images/banner1.jpg');
}

/*15-03-2023*/
.notice-board-list {
  width: 100%;
  margin: 0 auto;
  height: auto !important;
}

.notice-board-list a {
  text-decoration: none;
  color: #000;
}

.notice-board-list .media {
  box-shadow: none !important;
  border: 1px solid #0002;
}

.notice-board-list .media .media-body {
  border-bottom: 0 !important;
}

/*.notice-board-list .media .media-left img {
  object-fit: contain !important;
}*/

/*sub-portal*/
.organogram {
  height: 300px;
}

.organogram img {
  width: 100%;
  height: 289px;
  object-fit: contain;
}

/*Rti*/
.rti-content h2 {
  font-family: 'mukta-bold';
  margin-top: 20px;
  font-size: 18px;
  border-bottom: 1.5px dashed #0005;
  padding: 7px 0;
}

.rti-content ol li::marker {
  font-weight: bold;
}

.rti-content .panel .panel-body .table tbody tr td {
  text-align: left;
  font-size: 14px;
}

.rti-content .panel .panel-body .table tbody tr td {
  font-size: 14px !important;
}

.rti-content .primary-btn {
  border: 1.5px solid #cb7f00;
}

/*rtps*/
.rtps-content .panel .panel-body .table tbody tr td {
  text-align: left;
  font-size: 14px;
}

.rtps-content h2 {
  font-family: 'mukta-bold';
  margin-top: 20px;
  font-size: 18px;
  border-bottom: 1.5px dashed #0005;
  padding: 7px 0;
}

.rtps-content .primary-btn {
  border: 1.5px solid #cb7f00;
}

/*rtps*/
.organogram #overlay img {
  border: none !important;
  width: 45%;
  background-color: #fff;
}

.duare_sarkar ul {
  padding-left: 0;
}

.duare_sarkar h2 {
  font-family: 'mukta-bold';
  margin-top: 20px;
  font-size: 18px;
  border-bottom: 1.5px dashed #0005;
  padding: 7px 0;
}

.duare_sarkar ul {
  width: 70%;
  margin-top: 20px;
}

.duare_sarkar ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  align-items: center;
  font-weight: bold;
}

.duare_sarkar .primary-btn {
  border: 1px solid #ff9800;
}

.less-items {
  background-color: #0003;
  padding: 20px 0;
}

.less-items .item {
  height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #0005;
  background-color: #fff;
  width: 165px !important;
  border-radius: 10px;
  text-align: center;
  padding: 0px 3px;
}

.less-items .item img {
  width: 100px !important;
  height: 80px !important;
  margin: 0 auto;
  object-fit: contain;
  height: 100%;
}

.all-item {
  width: 60%;
  justify-content: space-evenly;
  margin: 0 auto;
}

#eventModal {
  z-index: 9999;
}

#eventModal .carousel-control-prev-icon {
  filter: invert(1);
}

#eventModal .carousel-control-next-icon {
  filter: invert(1);
}

#eventModal img {
  height: 250px;
  object-fit: contain;
}

#eventModal .carousel-inner {
  border: 1.5px solid #000;
}

.google-map iframe {
  width: 100%;
  height: 250px;
}

.video iframe {
  height: 230px !important;
}

.keypersonnel-table table {
  width: 100% !important;
}

.keypersonnel-table table tr td span span {
  font-family: 'Mukta-Light' !important;
}

.organogram #prevButton {
  display: none;
}

.organogram #nextButton {
  display: none;
}

.mobile-navbar {
  display: none;
}

.drop-box {
  display: none;
}

.drop-box ul {
  list-style: none;
  padding-left: 0;
  display: flex;
}

#gallery #overlay img {
  width: 40%;
  height: 485px;
  object-fit: contain;
}

.search-section h5 {
  font-family: 'mukta-bold';
  font-size: 16px;
  width: 50%;
  margin: 0;
  color: #00565f;
}

.search-section .d-flex {
  align-items: center;
}

.search-section textarea {
  height: 30px;
}

.search-section {
  margin-bottom: 30px;
  background: #bce2ff;
  padding: 9px 10px;
  border: 1px solid #0002;
}

.awards_and_achievement .accordion-body table tbody tr td {
  border: 1px solid #bbb;
  padding: 0px 5px;
}

.awards_and_achievement .accordion-button:not(.collapsed) {
  background-color: #cb7f00 !important;
  color: #fff;
  font-weight: bold;
  text-shadow: 1px 1px #000;
}

.awards_and_achievement .accordion-button {
  padding: 10px;
}

.awards_and_achievement .accordion-button:focus {
  box-shadow: none !important;
}

.title-link a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  border: 1px solid #0001;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 10px;
  display: flex;
  align-items: center;
  background: #cb7f00 !important;
  color: #fff;
  font-weight: bold;
  text-shadow: 1px 1px #000;
}

.title-link a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  border: 1px solid #0001;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 10px;
  display: flex;
  align-items: center;
  background: #cb7f00 !important;
  color: #fff;
  font-weight: bold;
  text-shadow: 1px 1px #000;
}

.title-link {
  margin-bottom: 5px;
}

.keypersonnel-table table tbody tr td {
  border: 1px solid #0007;
  padding: 5px;
}

.keypersonnel-table table tbody tr:first-child {
  font-weight: bold;
}

.logo-title {
  font-weight: bold;
  font-size: 14px;
}

.all-item a {
  text-decoration: none;
  color: #000;
}

.events a {
  text-decoration: none;
}

.events-box:hover {
  transform: translateY(-3px);
}

.events-box {
  display: flex;
  align-items: center;
  border: 2.5px solid #097fd7;
  border-radius: 5px;
  box-shadow: 0px 3px 0px #0002;
  background-image: linear-gradient(183deg, #097fd712, transparent, #097fd721);
  transition: 0.3s;
}

.events-icon {
  background: #097fd7;
  padding: 13px;
  border-right: 4px solid #0073c9;
}

.events-icon img {
  width: 40px;
}

.envents-year h2 {
  margin-left: 60px;
  color: #000000;
  font-weight: bold;
  font-size: 20px;
}

.keypersonnel-table {
  overflow-x: auto;
}

.keypersonnel-table table tbody tr td p {
  padding: 0;
  margin: 0;
}

.awards_and_achievement ul {
  padding-left: 10px;
}
.top_right-logo
{
  background-color: var(--main-bg-color);
  padding: 5px 14px;
  border-radius: 30px;
  box-shadow: 2px 2px 4px #00000078;
}
.top_right-logo a
{
  color: #fff;
  font-size:14px;
}
#mySlideshow
{
overflow:hidden
}
.link
{
  width: 100%;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-top: 0;
}
.link a 
{
  color: #000;
  text-decoration: none;
}