/* Transition */
/* ---------------------  Base --------------------- */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
}

@media all and (max-width: 991px) {
  body {
    font-size: 14px !important;
  }
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

p {
  margin: 0;
  padding: 0;
}

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

.verticalCenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.welcome-notice .notice-board .notice-items li a, .members-messages .member .info p, .best-awards .item.exprience p, .best-awards .service-item p, .tab-content .card p, .notice-messages .message p, .ntc-items .item p, .publication-items .item .info .title h4 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

button.btn:active,
button:active,
button.btn:focus,
button:focus,
button.btn,
button {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* --------------------- Fonts --------------------- */
@font-face {
  font-family: 'Helvetica';
  font-weight: 400;
  src: url("assets/fonts/helvetica-textbook-lt-roman/HelveticaTextbookLTRoman.otf") format("truetype");
}

@font-face {
  font-family: 'CenturyGothic';
  font-weight: 400;
  src: url("assets/fonts/century-gothic/CenturyGothic.otf") format("truetype");
}

/* -------------------  Typography ------------------ */
body {
  color: #252c42;
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-family: 'CenturyGothic', sans-serif;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Helvetica', sans-serif;
  font-weight: 700;
  color: #252c42;
  line-height: 1.1;
  font-style: normal;
  margin-top: 0;
}

h1, h2, h3 {
  font-family: 'Helvetica', sans-serif;
  font-weight: 700;
}

a {
  color: #ea2027;
  text-decoration: none;
}

/* --------------------- Header --------------------- */
.header-block .top {
  background-color: #af0006;
}

.header-block .top .login-social .btn.btn-primary {
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  border: none;
  color: #af0006;
  text-transform: uppercase;
  font-weight: bold;
}

.header-block .top .login-social .btn.btn-primary:hover {
  background-color: #ea2027;
  color: #ffffff;
}

.header-block .top .login-social .social {
  background-color: #222222;
  padding: 0.5rem 0.75rem;
  margin-top: 0.75rem;
}

.header-block .top .login-social .social a {
  display: inline-block;
  color: #777777;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}

.header-block .top .login-social .social a:not(:last-child) {
  margin-right: 0.5rem;
}

.header-block .top .login-social .social a:hover {
  color: #ea2027;
}

.navigation-menu {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffc000), to(#af0006));
  background: linear-gradient(#ffc000, #af0006);
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}

@media all and (max-width: 767px) {
  .navigation-menu {
    background-color: #95a5a6;
  }
}

.navigation-menu .navbar {
  padding: 8px 0;
}

.navigation-menu .navbar-toggler {
  font-size: 1.55rem;
  line-height: 1;
  background-color: transparent;
  border: none;
}

.navigation-menu .navbar-nav .nav-item {
  position: relative;
}

.navigation-menu .navbar-nav .nav-item .nav-link {
  color: #ffffff;
  border-radius: 0.25rem;
  padding: 5px 5px;
  white-space: nowrap;
  /*text-transform: uppercase;*/
  -webkit-transition: 300ms ease-in-out color, background-color;
  transition: 300ms ease-in-out color, background-color;
  font-family: 'Helvetica', sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.navigation-menu .navbar-nav .nav-item .nav-link:hover {
  background-color: #ffc000;
  color: #af0006;
}

.navigation-menu .navbar-nav .nav-item .nav-link i, .navigation-menu .navbar-nav .nav-item .nav-link svg {
  padding-left: 10px;
}

.navigation-menu .navbar-nav .nav-item.active a {
  background-color: #ffc000;
  color: #af0006;
}

.navigation-menu .navbar-nav .nav-item .dropdown-menu {
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  -webkit-transition: 300ms ease-in-out all;
  transition: 300ms ease-in-out all;
  background-color: transparent;
}

.navigation-menu .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
  background-color: rgba(175, 0, 6, 0.8);
  color: #ffffff;
  -webkit-transition: 300ms ease-in-out background-color;
  transition: 300ms ease-in-out background-color;
  border-radius: 0;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navigation-menu .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link i, .navigation-menu .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link svg {
  margin-left: auto;
}

.navigation-menu .navbar-nav .nav-item .dropdown-menu .nav-item:hover > .nav-link {
  background-color: #ea2027;
}

.navigation-menu .navbar-nav .nav-item .dropdown-menu .dropdown-menu {
  left: 100%;
  top: 0;
}

.navigation-menu .navbar-nav .nav-item:hover > .dropdown-menu {
  display: block;
}

/* --------------------- Footer --------------------- */
.footer-block {
  background-color: #222222;
  padding: 50px 0 40px;
  color: #777777 !important;
}

.footer-block .footer-title {
  color: #ea2027;
  text-transform: uppercase;
  font-family: 'Helvetica', sans-serif;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 1px solid #ea2027;
  margin-bottom: 30px;
  line-height: 1;
}

.footer-block .about-footer .footer-title {
  margin-top: -34px;
}

.footer-block .about-footer .about button {
  margin-top: 24px;
}

.footer-block .quick-link ul li a {
  display: inline-block;
  color: #777777;
  -webkit-transition: 300ms ease-in-out color;
  transition: 300ms ease-in-out color;
  position: relative;
  padding-left: 20px;
}

.footer-block .quick-link ul li a:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #ea2027;
  border-radius: 50%;
  left: 0;
  top: 9px;
}

.footer-block .quick-link ul li a:hover {
  color: #ea2027;
}

.footer-block .quick-link ul li:not(:first-child) {
  margin-top: 8px;
}

.footer-block .contact ul li {
  margin-top: 20px;
}

.footer-block .contact ul li i, .footer-block .contact ul li svg {
  color: #ffc000;
  margin-right: 5px;
}

.footer-block .contact ul li a {
  -webkit-transition: 300ms ease-in-out color;
  transition: 300ms ease-in-out color;
  text-decoration: none;
}

.footer-block .contact ul li a:hover {
  color: #ffc000;
}

.copyright-block {
  background-color: #ffc000;
  padding: 15px 0;
}

.copyright-block a {
  text-decoration: none;
  -webkit-transition: 300ms ease-in-out color;
  transition: 300ms ease-in-out color;
}

.copyright-block a:hover {
  color: #ffffff;
}

/* --------------------- button --------------------- */
a.btn.btn-danger,
.btn.btn-danger {
  background-color: #ea2027;
  padding: 12px 26px;
  color: #ffffff;
  border-radius: 10px 30px 10px 30px;
  -webkit-transition: 300ms ease-in-out transform, -webkit-box-shadow;
  transition: 300ms ease-in-out transform, -webkit-box-shadow;
  transition: 300ms ease-in-out transform, box-shadow;
  transition: 300ms ease-in-out transform, box-shadow, -webkit-box-shadow;
}

a.btn.btn-danger:hover,
.btn.btn-danger:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

a.btn.btn-warning,
.btn.btn-warning {
  background-color: #ffc000 !important;
  color: #af0006 !important;
  padding: 12px 26px;
}

a.btn.btn-warning:hover,
.btn.btn-warning:hover {
  border-color: inherit;
  background-color: #af0006 !important;
  color: #ffffff !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

/* ---------------------  Nav Tabs --------------------- */
.nav.nav-tabs {
  border-bottom: none;
  margin: 0 -10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nav.nav-tabs li {
  text-align: center;
  padding: 0 10px;
}

.nav.nav-tabs li .nav-link {
  background-color: #ea2027;
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 1rem;
}

.nav.nav-tabs li .nav-link.active {
  background-color: #ffffff;
  color: #ea2027;
  position: relative;
}

.nav.nav-tabs li .nav-link.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #ea2027;
}

/* ---------------------  Common Title --------------------- */
/* ---------------------  Search Box--------------------- */
.search-box {
  background-color: #ffc000;
  padding: 10px;
}

.search-box input {
  border: none;
  outline: none;
  color: #252c42;
  background-color: transparent;
  caret-color: #ea2027;
  padding: 4px 8px;
}

.search-box input[type="search"]::-webkit-input-placeholder {
  color: #ffffff;
}

.search-box input[type="search"]:-ms-input-placeholder {
  color: #ffffff;
}

.search-box input[type="search"]::-ms-input-placeholder {
  color: #ffffff;
}

.search-box input[type="search"]::placeholder {
  color: #ffffff;
}

.search-box button.btn {
  color: #ffffff;
  background-color: #af0006;
  border-radius: 0;
  -webkit-transition: 300ms ease-in-out opacity;
  transition: 300ms ease-in-out opacity;
}

.search-box button.btn:hover {
  opacity: 0.9;
}

/* ---------------------  Customize Scrollbar--------------------- */
.table-responsive::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.table-responsive::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 8px rgba(201, 201, 201, 0.35);
          box-shadow: inset 0 0 8px rgba(201, 201, 201, 0.35);
  border-radius: 5px;
}

.table-responsive::-webkit-scrollbar-thumb {
  border-radius: 15px;
  -webkit-box-shadow: inset 0 0 8px #C9C9C9;
          box-shadow: inset 0 0 8px #C9C9C9;
}

/* ---------------------  Bootstrap Form--------------------- */
.form-control {
  height: 50px;
  caret-color: #ffc000;
  background-color: #f0f2f3;
  border: none;
  outline: none;
  -webkit-transition: 300ms ease-in-out background;
  transition: 300ms ease-in-out background;
}

.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: rgba(255, 192, 0, 0.1);
  -webkit-box-shadow: 0 0 0 0.1rem rgba(255, 192, 0, 0.3);
          box-shadow: 0 0 0 0.1rem rgba(255, 192, 0, 0.3);
}

/* ----------------- Home page ---------------- */
.title {
  text-align: center;
}

.title h2 {
  margin-bottom: 12px;
}

@media all and (max-width: 480px) {
  .title h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.banner-slider {
  background: url("./assets/img/banner-bg.png") no-repeat center/100% 100%;
  padding: 20px 0 140px;
}

@media all and (max-width: 767px) {
  .banner-slider {
    background-color: #ffc000;
    padding: 20px 0 60px;
  }
}

.news-block {
  margin-bottom: 30px;
}

.news-block .info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 300px);
          flex: 0 0 calc(100% - 300px);
  max-width: calc(100% - 300px);
}

@media all and (max-width: 767px) {
  .news-block .info {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.news-block .info .title {
  background-color: #af0006;
  padding: 8px 16px;
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
  margin-right: 15px;
}

.news-block .info .title:after {
  content: "";
  position: absolute;
  border-left: 15px solid #af0006;
  border-right: 0px solid #ffffff;
  border-top: 20px solid #ffffff;
  border-bottom: 20px solid #ffffff;
  top: 0;
  bottom: 0;
  right: -15px;
}

.news-block .info .message {
  background: #ffffff;
  padding: 8px 8px 8px 0;
  width: 100%;
}

.news-block .info .message .msg-items li {
  margin-right: 30px;
  position: relative;
}

.news-block .info .message .msg-items li:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -18px;
  background-color: #ea2027;
}

.news-block .calender {
  background-color: #af0006;
  color: #ffffff;
  font-size: 14px;
  padding: 8px 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
  max-width: 300px;
}

@media all and (max-width: 767px) {
  .news-block .calender {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.news-block .calender span:not(:last-child) {
  border-right: 1px solid #252c42;
  padding-right: 10px;
  margin-right: 10px;
}

.slider-block .carousel-indicators {
  bottom: -40px;
}

.slider-block .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #af0006;
  background-color: transparent;
}

.slider-block .carousel-indicators li.active {
  background-color: #f7f7f7;
}

.slider-block .carousel-item {
  height: 550px;
  overflow: hidden;
}

.slider-block .carousel-item .carousel-caption {
  bottom: 15%;
  -webkit-transform: translateY(15%);
          transform: translateY(15%);
}

@media all and (max-width: 1199px) {
  .slider-block .carousel-item {
    height: 350px;
  }
}

@media all and (max-width: 991px) {
  .slider-block .carousel-item {
    height: 260px;
  }
}

@media all and (max-width: 767px) {
  .slider-block .carousel-item {
    height: 190px;
  }
}

@media all and (max-width: 480px) {
  .slider-block .carousel-item {
    height: 130px;
  }
  .slider-block .carousel-item .carousel-caption {
    display: none;
  }
}

.welcome-notice {
  padding: 30px 0 50px;
}

.welcome-notice .item {
  min-height: 280px;
  overflow: hidden;
}

.welcome-notice .item img {
  -webkit-transition: 300ms ease-in-out transform;
  transition: 300ms ease-in-out transform;
}

.welcome-notice .item img:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.welcome-notice .wn-text p:not(:first-child) {
  margin-top: 15px;
}

.welcome-notice .wn-text button {
  margin-top: 30px;
}

.welcome-notice .notice-board .title {
  background-color: #ea2027;
  text-transform: uppercase;
  color: #ffffff;
  padding: 10px 15px;
}

.welcome-notice .notice-board .notice-items li {
  background-color: #ffc000;
  padding: 12px 15px;
  border-bottom: 1px solid #ffffff;
  min-height: 75px;
}

.welcome-notice .notice-board .notice-items li a {
  color: #252c42;
  -webkit-line-clamp: 1;
}

.welcome-notice .notice-board .notice-items li a img {
  max-width: 40px;
  margin-right: 4px;
}

.welcome-notice .notice-board .notice-items li .date {
  color: #ea2027;
  margin-top: 4px;
}

.welcome-notice .notice-board .load-more {
  background-color: #ffc000;
  padding: 20px 15px;
}

.welcome-notice .notice-board .load-more a {
  text-decoration: none;
  -webkit-transition: 300ms ease-in-out color;
  transition: 300ms ease-in-out color;
}

.welcome-notice .notice-board .load-more a:hover {
  color: #ffffff;
}

@media all and (max-width: 480px) {
  .welcome-notice {
    padding: 20px 0;
  }
}

.members-messages {
  background-color: #f1f3f5;
  padding: 10px 0;
}

@media all and (max-width: 480px) {
  .members-messages {
    padding: 20px 0;
  }
}

.members-messages .member .thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 190px;
          flex: 0 0 190px;
  max-width: 190px;
  margin-right: 16px;
}

.members-messages .member .thumb img {
  -webkit-transition: 300ms ease-in-out transform;
  transition: 300ms ease-in-out transform;
}

.members-messages .member .thumb img:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.members-messages .member .info .designation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 24px;
  font-family: 'Helvetica', sans-serif;
  font-weight: 700;
  font-weight: 400;
}

.members-messages .member .info .designation span {
  width: 100%;
  height: 2px;
  background-color: #8b8f9b;
  margin-left: 8px;
}

.members-messages .member .info .name {
  font-size: 20px;
  font-weight: bold;
  margin: 12px 0;
}

.members-messages .member .info p {
  -webkit-line-clamp: 4;
}

.members-messages .member .info a {
  display: inline-block;
  margin-top: 12px;
  text-decoration: none;
  -webkit-transition: 300ms ease-in-out color;
  transition: 300ms ease-in-out color;
}

.members-messages .member .info a:hover {
  color: #ffc000;
}

@media all and (max-width: 480px) {
  .members-messages .member {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .members-messages .member .thumb {
    margin: 8px auto;
  }
}

.best-awards {
  padding: 50px 0;
}

@media all and (max-width: 480px) {
  .best-awards {
    padding: 20px 0;
  }
}

.best-awards .item {
  min-height: 370px;
}

@media all and (max-width: 991px) {
  .best-awards .item {
    min-height: 330px;
  }
}

.best-awards .item.exprience {
  background-color: #ea2027;
  color: #ffffff;
  padding: 20px 15px;
  -webkit-transition: 400ms ease-in-out all;
  transition: 400ms ease-in-out all;
}

.best-awards .item.exprience h5, .best-awards .item.exprience a {
  color: #ffffff;
}

.best-awards .item.exprience p {
  -webkit-line-clamp: 10;
}

.best-awards .item.exprience a {
  margin-top: 15px;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: 300ms ease-in-out color;
  transition: 300ms ease-in-out color;
}

.best-awards .item.exprience a:hover {
  color: #ffc000;
}

.best-awards .item.exprience:hover {
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.best-awards .service-item {
  background-color: #f1f3f5;
  padding: 19px 15px;
  -webkit-transition: 400ms ease-in-out all;
  transition: 400ms ease-in-out all;
}

.best-awards .service-item a {
  margin-top: 8px;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: 300ms ease-in-out color;
  transition: 300ms ease-in-out color;
}

.best-awards .service-item a:hover {
  color: #ffc000;
}

.best-awards .service-item p {
  -webkit-line-clamp: 3;
}

.best-awards .service-item:hover {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.best-awards .award-image {
  overflow: hidden;
}

.best-awards .award-image img {
  -webkit-transition: 300ms ease-in-out transform;
  transition: 300ms ease-in-out transform;
}

.best-awards .award-image img:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

@media (min-width: 767.98px) and (max-width: 991.98px) {
  .best-awards .award-image {
    width: 100%;
    height: 327px;
    overflow: hidden;
  }
}

.best-awards .award-title {
  background-color: #ea2027;
  text-transform: uppercase;
  padding: 10px 15px;
  color: #ffffff;
}

.events-block {
  background-color: #f1f3f5;
  padding-bottom: 50px;
}

@media all and (max-width: 480px) {
  .events-block {
    padding-bottom: 20px;
  }
}

.events-nav {
  background: url("./assets/img/eventbg.png") no-repeat center center/cover;
  padding-top: 50px;
}

.events-nav .title {
  margin-bottom: 45px;
}

.events-nav .title h2 {
  margin-bottom: 0 !important;
}

.events-nav .title span {
  display: inline-block;
  width: 70px;
  height: 3px;
  background-color: #ea2027;
}

.events-nav .nav-tabs li {
  width: 25%;
}

@media all and (max-width: 767px) {
  .events-nav .nav-tabs li {
    width: 50%;
    margin-top: 8px;
  }
}

@media all and (max-width: 360px) {
  .events-nav .nav-tabs li {
    width: 100%;
  }
}

@media all and (max-width: 480px) {
  .events-nav {
    padding-top: 30px;
  }
  .events-nav .title {
    margin-bottom: 15px;
  }
}

.tab-content .card {
  max-height: 460px;
  border-radius: 0;
  border: none;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  overflow: hidden;
}

.tab-content .card img {
  -webkit-transition: 300ms ease-in-out transform;
  transition: 300ms ease-in-out transform;
}

.tab-content .card img:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.tab-content .card h5 {
  font-weight: normal;
  margin-bottom: 8px;
}

.tab-content .card .date {
  color: #ea2027;
}

.tab-content .card p {
  margin: 20px 0;
  -webkit-line-clamp: 4;
}

.tab-content .card a {
  text-decoration: none;
  -webkit-transition: 300ms ease-in-out color;
  transition: 300ms ease-in-out color;
}

.tab-content .card a:hover {
  color: #ffc000;
}

.ins-media {
  padding: 50px 0 0;
}

@media all and (max-width: 767px) {
  .ins-media {
    padding: 0;
  }
}

.ins-media .media-tab-nav .title {
  background: url("./assets/img/in-mediaBg1.png") no-repeat center center/cover;
  padding: 140px 0 30px;
}

.ins-media .media-tab-nav .title h2 {
  margin-bottom: 12px;
}

@media (min-width: 1920.98px) {
  .ins-media .media-tab-nav .title {
    padding-top: 250px;
  }
}

@media all and (max-width: 767px) {
  .ins-media .media-tab-nav .title {
    padding: 20px 0;
    background: #ffc000;
  }
}

.ins-media .media-footer-bg {
  padding-bottom: 40px;
  margin-top: -2px;
}

@media (min-width: 1920.98px) {
  .ins-media .media-footer-bg img {
    width: 100%;
  }
}

@media all and (max-width: 767px) {
  .ins-media .media-footer-bg {
    padding: 20px 0;
    background-color: #ffc000;
  }
  .ins-media .media-footer-bg img {
    display: none;
  }
}

.media-masonary {
  background-color: #ffc000;
  margin-top: -2px;
}

.media-masonary .nav-controls button {
  min-width: 170px;
  text-align: center;
  padding: 1rem 10px;
  background-color: #ea2027;
  color: #ffffff;
  border: none;
}

.media-masonary .nav-controls button:not(:last-child) {
  margin-right: 1px;
}

.media-masonary .nav-controls button.mixitup-control-active {
  position: relative;
}

.media-masonary .nav-controls button.mixitup-control-active:before {
  content: "";
  position: absolute;
  background-color: #ffffff;
  top: -4px;
  height: 4px;
  left: 0;
  right: 0;
}

@media all and (max-width: 767px) {
  .media-masonary .nav-controls button {
    margin-top: 12px;
  }
}

@media all and (max-width: 480px) {
  .media-masonary .nav-controls button {
    min-width: 140px;
    text-align: center;
    padding: 0.5rem 0;
  }
}

/* -----------------   Notice page ---------------- */
.notice-info {
  background: url("./assets/img/noticeBg.png") no-repeat center center/cover;
}

.notice-info .title {
  padding: 75px 0 160px;
}

.notice-info .title h2 {
  line-height: 1 !important;
  padding-left: 5px;
  position: relative;
  margin-bottom: 0px;
}

@media all and (max-width: 480px) {
  .notice-info .title h2 {
    font-size: 22px;
  }
}

.notice-info .title h2:before {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #ffffff;
  top: 0;
  bottom: 0;
  left: -5px;
}

.notice-info .title span {
  height: 1px;
  width: 180px;
  background-color: #ffffff;
  display: inline-block;
}

.notice-messages .message {
  background-color: #f1f3f5;
  border-radius: 1rem;
  padding: 1px 30px 15px;
  -webkit-box-shadow: 0px 8px 10px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 8px 10px 1px rgba(0, 0, 0, 0.3);
  margin-top: -115px;
}

.notice-messages .message .icon {
  width: 100px;
  height: 100px;
  background-color: #ffffff;
  margin-top: -50px;
}

.notice-messages .message .date {
  color: #ea2027;
}

.notice-messages .message p {
  -webkit-line-clamp: 2;
}

.notice-messages .message .btn.btn-danger {
  background-color: #ffffff;
  border: 2px solid #ea2027;
  color: #ea2027;
  -webkit-transition: 300ms ease-in-out all;
  transition: 300ms ease-in-out all;
}

.notice-messages .message .btn.btn-danger:hover {
  background-color: #ea2027;
  color: #ffffff;
}

.notices-body {
  padding: 50px 0;
}

@media all and (max-width: 480px) {
  .notices-body {
    padding: 20px 0;
  }
}

.ntc-wrap .ntc-title h2 {
  font-family: 'Helvetica', sans-serif;
  font-weight: 700;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 20px;
  padding-bottom: 8px;
}

@media all and (max-width: 480px) {
  .ntc-wrap .ntc-title h2 {
    font-size: 22px;
  }
}

.ntc-wrap .nav.nav-tabs {
  border-bottom: none;
  margin: 0 -10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ntc-wrap .nav.nav-tabs li {
  border-bottom: 1px solid #ffffff;
}

@media all and (max-width: 576px) {
  .ntc-wrap .nav.nav-tabs li {
    width: 100%;
  }
}

.ntc-wrap .nav.nav-tabs li .nav-link {
  background-color: #ffc000 !important;
  padding: .5rem 1rem;
  color: #252c42;
}

.ntc-wrap .nav.nav-tabs li .nav-link.active {
  background-color: #ea2027 !important;
  color: #ffffff;
}

.ntc-wrap .nav.nav-tabs li .nav-link.active::before {
  display: none;
}

.ntc-items .item {
  padding-bottom: 15px;
}

.ntc-items .item:not(:first-child) {
  border-top: 1px solid #d6d6d6;
  padding-top: 15px;
}

.ntc-items .item .announce-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  max-width: 100px;
  height: auto;
  background-color: #f1f3f5;
}

.ntc-items .item .date {
  color: #ea2027;
}

.ntc-items .item p {
  -webkit-line-clamp: 2;
}

.ntc-items .item a {
  text-decoration: none;
  -webkit-transition: 300ms ease-in-out color;
  transition: 300ms ease-in-out color;
}

.ntc-items .item a:hover {
  color: #ffc000;
}

/* -----------------   Teacher Information page ---------------- */
.teacher-info-block {
  padding: 40px 0 50px;
  background-color: #f1f3f5;
}

@media all and (max-width: 480px) {
  .teacher-info-block {
    padding: 20px 0;
  }
}

.teachers-member .teacher-item {
  background-color: #ffffff;
  padding: 1px 20px;
  margin-top: 150px;
  -webkit-transition: 450ms all ease-in-out;
  transition: 450ms all ease-in-out;
}

.teachers-member .teacher-item:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.teachers-member .teacher-item .thumb {
  width: 240px;
  height: 240px;
  margin-top: -120px;
  border: 8px solid #f1f3f5;
}

@media all and (max-width: 767px) {
  .teachers-member .teacher-item .thumb {
    width: 200px;
    height: 200px;
    margin-top: -100px;
  }
}

.teachers-member .teacher-item .name-designation {
  border-bottom: 1px solid #d6d6d6;
}

.teachers-member .teacher-item .name-designation span {
  font-size: 24px;
  line-height: 1.1;
  font-family: 'Helvetica', sans-serif;
  font-weight: 700;
}

@media all and (max-width: 480px) {
  .teachers-member .teacher-item .name-designation span {
    font-size: 18px;
  }
}

.teachers-member .teacher-item .contact-info a {
  display: block;
  text-decoration: none;
  color: #252c42;
  -webkit-transition: 300ms ease-in-out color;
  transition: 300ms ease-in-out color;
}

.teachers-member .teacher-item .contact-info a:not(:first-child) {
  padding-top: 8px;
}

.teachers-member .teacher-item .contact-info a:hover {
  color: #af0006;
}

.teachers-member .teacher-item .contact-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #252c42;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 8px 4px;
  text-decoration: none;
  -webkit-transition: 300ms ease-in-out background-color;
  transition: 300ms ease-in-out background-color;
}

.teachers-member .teacher-item .contact-social a:hover {
  background-color: #ffc000;
}

/* -----------------   Students Information page ---------------- */
.students-info {
  padding: 40px 0 50px;
  background-color: #f1f3f5;
}

@media all and (max-width: 480px) {
  .students-info {
    padding: 20px 0;
  }
}

.students-info .search-add {
  background-color: #ffffff;
  padding: 2px 15px;
}

.students-info .students-info-lists {
  background-color: #ffffff;
  padding: 15px 15px 20px;
}

.students-info-lists .table {
  min-width: 650px;
}

.students-info-lists .table tr td, .students-info-lists .table tr th {
  vertical-align: middle;
  border: 1px solid;
  border-top: none !important;
  border-bottom: none !important;
}

.students-info-lists .table tr td:first-child, .students-info-lists .table tr th:first-child {
  border-left: none !important;
}

.students-info-lists .table tr td:last-child, .students-info-lists .table tr th:last-child {
  border-right: none !important;
}

.students-info-lists .table tr th {
  border-color: #ffffff;
}

.students-info-lists .table tr td {
  border-color: #dadada;
}

.students-info-lists .table thead tr {
  background-color: #af0006;
  color: #ffffff;
}

.students-info-lists .table tbody tr:nth-child(odd) {
  background-color: #f5f5f5;
}

.students-info-lists .table tbody tr:last-child {
  border-bottom: 2px solid #f5f5f5;
}

.students-info-lists .table tbody tr td span {
  display: block;
}

.students-info-lists .std-thumb {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border: 1px solid #af0006;
  background-color: #af0006;
  border-radius: 0.25rem;
}

/* -----------------   Govering Body page ---------------- */
.governing-block {
  padding: 40px 0 50px;
  background-color: #f1f3f5;
}

@media all and (max-width: 480px) {
  .governing-block {
    padding: 20px 0;
  }
}

.governing-block .title h2 {
  margin-bottom: 1.5rem;
}

.governing-items .item {
  margin-bottom: 3rem;
}

@media all and (max-width: 767px) {
  .governing-items .item {
    margin-bottom: 1.5rem;
  }
}

.governing-items .item .item-bg {
  max-width: 250px;
  margin-top: -7px;
}

@media (min-width: 1299px) {
  .governing-items .item .item-bg {
    max-width: 320px;
  }
}

@media all and (max-width: 767px) {
  .governing-items .item .item-bg {
    max-width: 190px;
    margin-top: -8px;
  }
}

@media all and (max-width: 480px) {
  .governing-items .item .item-bg {
    max-width: 150px;
  }
}

.governing-items .item span {
  width: 80%;
  /*background-color: #0791cf;*/
  height: 3px;
  /*display: inline-block;*/
}

@media all and (max-width: 480px) {
  .governing-items .item span {
    width: 100%;
  }
}

.governing-items .item .member-info {
  position: relative;
  top: -20px;
}

@media all and (max-width: 767px) {
  .governing-items .item .member-info {
    top: -10px;
  }
}

.governing-items .item .member-info .thumb {
  padding: 10px;
  border: 2px solid #0791cf;
  width: 300px;
  height: 300px;
}

.governing-items .item .member-info .thumb .thumb-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media all and (max-width: 767px) {
  .governing-items .item .member-info .name-dsignation {
    margin-top: 8px;
  }
}

.governing-items .item .member-info .name-dsignation .name, .governing-items .item .member-info .name-dsignation .designation {
  padding: 0.5rem 2rem 0.5rem 1rem;
  color: #ffffff;
  text-transform: uppercase;
  font-family: 'Helvetica', sans-serif;
  font-weight: 700;
  margin: auto;
}

.governing-items .item .member-info .name-dsignation .designation {
  background-color: #0a56a2;
  display: inline-block;
}

.governing-items .item .member-info .name-dsignation .name {
  background-color: #0692cd;
  font-size: 1.25rem;
}

.member-quote .quote-text::before {
  content: "\f10d";
  top: -15px;
  left: -10px;
}

.member-quote .quote-text::after {
  content: "\f10e";
  left: 10px;
  bottom: -15px;
}

.member-quote .quote-text::before, .member-quote .quote-text::after {
  font-weight: 900;
  font-size: 2rem;
  position: relative;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #0692cd;
}

/* -----------------   Contact Us page ---------------- */
.contactus-block {
  padding-bottom: 90px;
}

@media all and (max-width: 480px) {
  .contactus-block {
    padding-bottom: 20px;
  }
}

.contactus-block .banner {
  background-color: #ffc000;
  padding: 2rem 0 6rem;
}

.contactus-block .banner .title-contact h1 {
  display: inline-block;
  position: relative;
  z-index: 11;
  font-weight: bold;
}

.contactus-block .banner .title-contact h1:before {
  content: "";
  position: absolute;
  width: 115px;
  height: 115px;
  background-color: #ffcc00;
  border-radius: 50%;
  top: -38px;
  left: 1px;
  z-index: -1;
}

.contact-form-wrap {
  background-color: #ffffff;
  padding: 30px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  margin-top: -80px;
}

.contact-form-wrap .contact-form .title {
  font-size: 30px;
  font-weight: bold;
  font-family: 'Helvetica', sans-serif;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: left;
}

.contact-form-wrap .contact-form .form-control {
  margin-bottom: 16px;
}

.contact-form-wrap .contact-form textarea {
  min-height: 150px;
}

.contact-form-wrap .contact-form button[type="submit"] {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-family: 'Helvetica', sans-serif;
  font-weight: 700;
}

.contact-form-wrap .contact-info {
  border-left: 1px solid #dadada;
  padding: 40px 0;
}

.contact-form-wrap .contact-info ul li {
  padding-left: 20px;
}

.contact-form-wrap .contact-info ul li a {
  display: inline-block;
  margin: 5px 0;
  -webkit-transition: 300ms ease-in-out color;
  transition: 300ms ease-in-out color;
  text-decoration: none;
}

.contact-form-wrap .contact-info ul li a:hover {
  color: #ffc000;
}

.contact-form-wrap .contact-info ul li i, .contact-form-wrap .contact-info ul li svg {
  color: #ffc000;
  margin-right: 8px;
}

@media all and (max-width: 767px) {
  .contact-form-wrap .contact-info {
    border: none;
    padding: 30px 0 0;
  }
  .contact-form-wrap .contact-info ul li {
    padding-left: 0px;
  }
}

.contact-form-wrap .contact-info .social-touch a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffc000;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 8px;
  text-decoration: none;
  color: #af0006;
  -webkit-transition: 300ms ease-in-out background-color, color;
  transition: 300ms ease-in-out background-color, color;
  font-size: 1.15rem;
}

.contact-form-wrap .contact-info .social-touch a:hover {
  background-color: #ea2027;
  color: #ffffff;
}

/* -----------------   Publications page ---------------- */
.publications .banner {
  background: url("./assets/img/publications/banner.jpg") no-repeat center center/cover;
}

.publications .banner .banner-title {
  padding: 220px 0 75px;
}

.publications .banner .banner-title h1 {
  color: #ea2027;
  font-family: 'Helvetica', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media all and (max-width: 576px) {
  .publications .banner .banner-title {
    padding: 100px 0 30px;
  }
  .publications .banner .banner-title h1 {
    font-size: 24px;
  }
}

.publications .details {
  background-color: #f2f2f2;
}

.publications-nav li.nav-item {
  min-width: 180px;
  text-align: center;
  margin-right: 16px;
  margin-bottom: 16px;
}

@media all and (max-width: 480px) {
  .publications-nav li.nav-item {
    margin-right: 10px;
    width: 100%;
  }
}

.publications-nav li.nav-item a.nav-link {
  background-color: #ffffff;
  color: #252c42;
  text-transform: uppercase;
  font-family: 'Helvetica', sans-serif;
  font-weight: 700;
}

.publications-nav li.nav-item a.nav-link.active {
  background-color: #ffc000;
}

.publication-items .item .thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
  max-width: 220px;
}

.publication-items .item .info .title h4 {
  font-size: 24px;
  line-height: 28px;
  color: #252c42;
  text-transform: uppercase;
  margin-bottom: 24px;
}

@media all and (max-width: 480px) {
  .publication-items .item .info .title h4 {
    font-size: 18px;
  }
}

.publication-items .item .info .info-item {
  line-height: 1.4;
  font-family: 'CenturyGothic', sans-serif;
  font-weight: 400;
  margin-top: 12px;
}

.publication-items .item .info .info-item span {
  display: block;
  font-family: 'Helvetica', sans-serif;
  font-weight: 700;
}

.publication-items .item .info .info-btn button {
  border: 1px solid #ffc000;
  border-radius: 35px;
  min-width: 140px;
  -webkit-transition: 300ms ease-in-out all;
  transition: 300ms ease-in-out all;
}

.publication-items .item .info .info-btn button:hover {
  color: #ffffff;
  background-color: #ea2027;
  border-color: #ea2027;
}

.archive {
  background-color: #ffc000;
}

.archive .title {
  border-color: #000000 !important;
}

.archive .title span {
  font-size: 24px;
  font-family: 'Helvetica', sans-serif;
  font-weight: 700;
  color: #252c42;
}

.archive .year-wrap {
  text-align: center;
}

.archive .year-wrap a {
  display: block;
  color: #252c42;
  opacity: 0.6;
  font-family: 'Helvetica', sans-serif;
  font-weight: 700;
  padding: 12px 0;
  font-size: 18px;
  text-decoration: none;
}

.archive .year-wrap a:not(:last-child) {
  border-bottom: 1px solid #000000;
}

.archive .year-wrap a.active {
  opacity: 1;
}

/* -----------------   Publications page ---------------- */
.alumni-inner-pages {
  background-color: #f0f2f3;
}

.alumni-inner-pages .banner {
  background-color: #2e343c;
}

.alumni-inner-pages .inner-page-wrap {
  border: 1px solid #ea2027;
}

.alumni-inner-pages .inner-title {
  background-color: #ea2027;
  color: #ffffff;
  padding: 1rem;
}

.alumni-inner-pages .inner-nav {
  background-color: #ffffff !important;
  -webkit-box-shadow: 0px 20px 35px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 20px 35px rgba(0, 0, 0, 0.4);
}

.alumni-inner-pages .inner-nav li.nav-item {
  min-width: 155px;
  margin-right: 0.25rem;
  text-align: center;
}

.alumni-inner-pages .inner-nav li.nav-item a.nav-link {
  color: rgba(37, 44, 66, 0.5);
  background-color: #f2f2f2;
  font-family: 'Helvetica', sans-serif;
  font-weight: 700;
}

.alumni-inner-pages .inner-nav li.nav-item a.nav-link.active {
  color: #252c42;
  background-color: #ffc000;
}

@media all and (max-width: 480px) {
  .alumni-inner-pages .inner-nav li.nav-item {
    min-width: 100%;
    width: 100%;
    margin-top: 5px;
  }
}

.student-details-wrap .search-box {
  background-color: #ffc000;
  border-radius: 0.25rem;
}

.student-details-wrap .search-box input {
  height: 20px;
}

@media (max-width: 375px) {
  .student-details-wrap .search-box {
    margin-left: 0 !important;
    margin-top: 8px;
  }
}

.student-details-wrap .student-list .table {
  min-width: 750px;
  margin-bottom: 0;
}

.student-details-wrap .student-list .table tr td, .student-details-wrap .student-list .table tr th {
  padding: 0.50rem 0.75rem;
  vertical-align: middle;
  border-top: none;
  border-right: 1px solid #dee2e6;
}

.student-details-wrap .student-list .table tr:nth-child(odd) td, .student-details-wrap .student-list .table tr:nth-child(odd) th {
  background-color: #f0f2f3;
  border-right: 1px solid #ffffff;
}

.student-details-wrap .student-list .student-thumb {
  max-width: 60px;
  border: 1px solid #ea2027;
  overflow: hidden;
}

.login-wrap {
  background-color: #f2f2f2;
}

.login-wrap .login-form {
  background-color: #ffffff;
}

.login-wrap .login-form .form-control {
  text-align: center;
  margin-bottom: 0.75rem;
}

.login-wrap .login-form button {
  font-family: 'Helvetica', sans-serif;
  font-weight: 700;
}

.registration-form .table {
  margin-bottom: 0;
}

.registration-form .table tr td {
  vertical-align: middle;
}

.registration-form .table tr td:first-child {
  background-color: #f0f2f3;
  min-width: 225px;
}

@media all and (max-width: 576px) {
  .registration-form .table tr td:first-child {
    min-width: 150px;
  }
}

.registration-form .table tr td, .registration-form .table tr th {
  padding: 0.40rem 0.75rem;
}

.registration-form .table tr:last-child td {
  border-bottom: 1px solid #dee2e6;
}

.registration-form input, .registration-form textarea, .registration-form select {
  width: 250px;
  height: 40px;
  caret-color: #ffc000;
  border: none;
  outline: none;
  padding: 0.4rem 0.75rem;
  -webkit-transition: 300ms ease-in-out background-color;
  transition: 300ms ease-in-out background-color;
  border-radius: 0.25rem;
  background-color: #f0f2f3;
}

.registration-form input:focus, .registration-form textarea:focus, .registration-form select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: rgba(255, 192, 0, 0.1);
}

.registration-form textarea {
  min-height: 100px;
}

.registration-form select {
  width: 250px !important;
}

.registration-form .edu-table {
  max-width: 800px;
}

.registration-form .edu-table table tr th:first-child, .registration-form .edu-table table tr td:first-child {
  position: -webkit-sticky;
  position: sticky;
  left: 0px;
  min-width: 130px !important;
  border-right: 1px solid #dee2e6;
}

.registration-form .edu-table table tr th {
  text-align: center;
  border-top: none;
  background-color: #f0f2f3;
}

.registration-form .edu-table input, .registration-form .edu-table textarea, .registration-form .edu-table select {
  max-width: 120px;
}

.registration-form .save-btn button {
  min-width: 200px;
  font-family: 'Helvetica', sans-serif;
  font-weight: 700;
}
/*# sourceMappingURL=style.css.map */