/* Base */

* {
  margin: 0;
  padding: 0;
}

:root {
  --white: #fff;
  --black: #000;
  --red: #c1272d;
  --blue: #072b7d;
  --light-blue: #c1272d;
  --light-gry: #f6f7f9;
  --dark-blue: #0b223a;
  --gry: #dbdbdb;
  --dark-gry: #f2f2f2;
  --green: #009632;
  --font-primary: "Canela Deck";
  --font-secondry: "Ysabeau Infant", sans-serif;
  --font-Material: "Material Symbols Outlined";

  --font-h1: 600 5.61rem/6rem "Canela Deck", sans-serif;
  --font-h2: 600 4.209rem/4.8rem "Canela Deck", sans-serif;
  --font-h3: 500 2.1rem/2.4rem "Canela Deck", sans-serif;
  --font-h4: 400 1.7rem/1.9rem "Canela Deck", sans-serif;
  --font-h5: 400 1.555rem/1.8rem "Canela Deck", sans-serif;
  --font-h6: 500 1.111rem/1.9rem "Ysabeau Infant", sans-serif;
  --font-p: 500 1.05rem/1.9rem "Ysabeau Infant", sans-serif;
  --font-small: 500 1rem/1.4rem "Ysabeau Infant", sans-serif;
  --font-vsmall: 500 0.75rem/1.2rem "Ysabeau Infant", sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 90%;
}

body {
  font: var(--font-p);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}

/* html,
body {
  overflow-x: hidden !important;
} */

body.overflow-hidden {
  overflow: hidden !important;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

h1 {
  font: var(--font-h1);
  margin: 0;
}

h2 {
  font: var(--font-h2);
  margin: 0;
}

h3 {
  font: var(--font-h3);
  margin: 0;
  color: var(--light-blue);
}

h4 {
  font: var(--font-h4);
  margin: 0;
  color: var(--light-blue);
}

h5 {
  font: var(--font-h5);
  margin: 0;
}

h6 {
  font: var(--font-h6);
  margin: 0;
  opacity: 0.9;
}

p,
li {
  font: var(--font-p);
  margin: 0 0 5px 0;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.2px;
  font-weight: 500;
}

@media (max-width: 1400px) {
  p,
  li {
    font-size: 18px;
  }
}

strong {
  font-size: 23px;
  opacity: 0.8;
  font-weight: 700;
}

/* Bounce To Right */
.hvr-bounce-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.hvr-bounce-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--red);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-bounce-to-right:hover,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:active {
  color: white;
}

.hvr-bounce-to-right:hover:before,
.hvr-bounce-to-right:focus:before,
.hvr-bounce-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.btn-blue {
  line-height: normal;
  letter-spacing: 0.025rem;
  margin: 10px 0 0 0;
  font-size: 14px;
  border-radius: 5px;
  padding: 12px 24px;
  position: relative;
  background-color: var(--blue);
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  transition: all 0.25s ease;
  /* font-family: var(--font-primary); */
  text-transform: uppercase;
  font-weight: 500;
}

ul,
ol {
  margin: 0 0 0 15px;
  padding: 0;
}

li {
  padding: 0;
}

img {
  filter: contrast(1.2);
  height: auto;
}

.container {
  max-width: 1366px;
}

.container_fluid {
  max-width: 100%;
}

.mt_15 {
  margin-top: 15px !important;
}

.mb_15 {
  margin-bottom: 15px !important;
}

.mb_30 {
  margin-bottom: 30px !important;
}

.mt_60 {
  margin-top: 60px !important;
}

.mt_30 {
  margin-top: 30px !important;
}

.btn-blue:hover {
  background: var(--dark-blue);
  color: var(--white);
}

.small {
  font: var(--font-small);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  border-radius: 6px;
  padding: 8px 20px;
}

.btn-red:hover {
  background: #cc0000;
  color: var(--white);
}

.btn-white-brd {
  background: linear-gradient(123deg, #1a3875 50%, rgba(0, 0, 0, 0) 50%);
  background-position: right bottom;
  background-size: 230% 100%;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  padding: 10px 30px;
}

.btn-white-brd:focus,
.btn-white-brd:hover {
  background-position: left bottom;
  border: 2px solid #fff;
  color: #fff;
}

.btn-sec {
  margin: 0;
}

.btn-arrow {
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
  transition: all 0.2s ease;
  letter-spacing: 1px;
}

.btn-arrow span.icon-m {
  background: var(--red);
  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 5px;
  border: 1px solid var(--red);
  transition: all 0.3s ease;
}

.btn-arrow:hover {
  color: var(--red);
  transition: all 0.2s ease;
  margin: 0 0 0 4px;
}

.btn-arrow:hover span.icon-m {
  background: var(--white);
  color: var(--red);
  margin: 0 0 0 4px;
  transition: all 0.3s ease;
}

.btn-blue-brd {
  background: linear-gradient(123deg, #c1272d 50%, rgba(0, 0, 0, 0) 50%);
  background-position: right bottom;
  background-size: 230% 100%;
  border: 2px solid var(--dark-blue);
  border-radius: 50px;
  color: var(--dark-blue);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  padding: 10px 30px;
}

.btn-blue-brd:focus,
.btn-blue-brd:hover {
  background-position: left bottom;
  border: 2px solid var(--red);
  color: var(--white);
}

.height52 {
  height: 52px;
  overflow: hidden;
}

.page-loader {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: #f2f2f2;
  z-index: 1000;
}

.page-loader .txt {
  color: #666;
  text-align: center;
  top: 40%;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-weight: bold;
  line-height: 1.5;
}

/* SPINNER ANIMATION */
.spinner {
  position: relative;
  top: 35%;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

.bg-trance {
  background: linear-gradient(#e7e6e67a, rgb(211 209 209 / 53%)),
    url("../images/whats-new-bg.png");
}

.blue_bg {
  /* background: var(--dark-blue); */
  background: url("../images/8292.jpg") no-repeat center center fixed;
  background-size: cover;
}

.announcements {
  background: #fff9e9;
}

.announcements .container {
  background: url("../images/whats-new-bg.png") 0 0 no-repeat;
  padding-top: 50px;
  padding-bottom: 50px;
}

.head {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.head .line {
  flex: 1;
}

.head .line hr {
  margin-top: 40px;
  margin-bottom: 10px;
}

.head .btn-arrow {
  margin: 18px 6px 0 0px;
}

.head .btn-arrow span.icon-m {
  position: relative;
  top: 6px;
  margin: 0px 0 0 8px;
}

.head .btn-arrow:hover {
  margin: 18px 0 0 0px;
}

.head .btn-arrow:focus {
  color: var(--red);
}

.head .btn-arrow:hover span.icon-m {
  margin: 0px 0 0 10px;
}

.head .more_arrow-filled {
  display: flex;
  padding: 4px 14px;
  border-radius: 100px;
  border: 1px solid var(--red);
  color: var(--white);
  justify-content: center;
  align-items: center;
  background: var(--red);
  cursor: pointer;
}

.head .more_arrow-filled:hover {
  color: var(--red);
  background: var(--white);
}

.head .more_arrow {
  display: flex;
  padding: 4px 14px;
  border-radius: 100px;
  border: 1px solid var(--red);
  color: var(--red);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.head .more_arrow:hover {
  color: var(--white);
  background: var(--red);
}

.bg_blue {
  background: var(--blue);
  color: var(--white);
}

.bg_red {
  background: var(--red);
  color: var(--white);
}

.bg_green {
  background: var(--green);
  color: var(--white);
}

.bg_new-blue {
  background: #043643;
  color: var(--white);
}

.bg_grey {
  background: var(--light-gry);
}

.bg_green a,
.bg_red a,
.bg_blue a {
  color: var(--white);
}

.text_para {
  display: flex;
  gap: 32px;
}

.text_para_section {
  flex: 1;
  text-align: justify;
}

.table thead tr th,
.table tr th {
  color: var(--light-blue);
  font-weight: 700;
  font-size: 16px;
}

table {
  width: 100%;
  margin: 10px 0px;
  border: 1px solid var(--dark-gry);
}

table th,
table td {
  padding: 8px;
}

table tr:nth-child(even) {
  background: var(--light-gry);
}

table tr:nth-child(odd) {
  background: var(--white);
}

thead {
  background: var(--dark-blue);
  color: var(--red);
}

/* Header */

header {
  width: 100%;
  /* padding: 0 15px; */
  /* position: sticky; */
  z-index: 100;
  transition: all 0.3s ease;
  top: 0;
  /* background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%); */
}

header .in-header {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  padding: 2px 10px 4px;
  background: #f3f3f0;
}

.menu_icon {
  position: relative;
  background: var(--dark-blue);
  padding: 20px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.menu_icon:hover {
  background: var(--red);
}

.menu_icon span {
  margin: 0 auto;
  position: relative;
  top: 0px;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.menu_icon span:before,
.menu_icon span:after {
  position: absolute;
  content: "";
}

.menu_icon span,
.menu_icon span:before,
.menu_icon span:after {
  width: 40px;
  height: 2px;
  background-color: #fff;
  display: block;
}

.menu_icon span:before {
  margin-top: -12px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
}

.menu_icon span:after {
  margin-top: 12px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
}

.menu_icon.closemenu span {
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.menu_icon.closemenu span:before {
  margin-top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}

.menu_icon.closemenu span:after {
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}

.logo_section,
.logo_section:hover,
.logo_section:focus {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: var(--white);
  background-color: #f3f3f0;
  border-radius: 5px;
}

.logo_section .menu_icon {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  z-index: 2;
}

.logo_section img {
  width: 80px;
  border-radius: 4px;
  /* background: white; */
  /* height: 80px; */
}

.logo_section .logo_text h5 {
  font-family: var(--font-primary);
}

.cnln-title {
  font-size: 16px;
  line-height: 1.2rem;
  color: var(--white);
  font-weight: 600;
}

.cnln-title h4,
.cnln-title h6,
.cnln-title p {
  margin: 0;
}

.cnln-title h4 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 25px;
}

.cnln-title p {
  color: black;
  font-size: 12px;
  line-height: 12px;
  opacity: 1;
  letter-spacing: 0;
  font-weight: 600;
}

@media (max-width: 768px) {
  .cnln-title p {
    font-size: 9px;
  }
}

.menu_section {
  display: flex;
  z-index: 2;
}

.clat_btn {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  background: var(--red);
  padding: 16px;
  font: var(--font-p);
  line-height: 1.2rem;
  color: var(--white);
  width: 188px;
  cursor: pointer;
}

.nacc_btn {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  background: var(--light-blue);
  padding: 16px;
  font: var(--font-p);
  line-height: 1.2rem;
  color: var(--white);
  width: 70px;
  cursor: pointer;
}

.nacc_btn:hover {
  background: var(--blue);
  color: var(--white);
}

.search-icon {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  background: var(--blue);
  padding: 16px;
  color: var(--white);
  width: 70px;
  cursor: pointer;
}

.search-icon.show {
  transition: all 0.3s ease;
  display: block;
}

.search-icon span {
  color: var(--white);
  position: relative;

  line-height: 24px;
  font-size: 30px;
}

.search-icon span {
  top: 0px;
  left: 0px;
}

.search-icon.show span {
  top: 7px;
  left: 5px;
}

.clat_btn:focus,
.search-icon:focus,
.search-icon:hover,
.clat_btn:hover {
  background: var(--blue);
  color: var(--white);
}

.clat_btn:focus {
  background: var(--red);
}

.btn-symbols-arrow {
  vertical-align: -7px;
}

/* Hero */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: calc(100vh - 100px);
  color: var(--white);
  background: rgba(0, 0, 0, 0.4);
  overflow: hidden !important;
  position: relative;
  /* margin-top: 120px; */
}

.hero .hero_text {
  text-align: center;
  margin-top: 4%;
  max-width: 800px;
  z-index: 1;
}

.hero .hero_text {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 3s;
}

.inner-banner .container {
  position: relative;
  height: 100%;
}

.hero.inner-banner {
  height: 250px;
  box-shadow: 0px -4px 15px rgb(7 43 125 / 24%);
  background-position: center;
  background-size: cover;
  background-color: #fff;
  position: relative;
}

.hero.inner-banner:before {
  content: "";
  background-color: var(--black);
  opacity: 0.5;
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero.inner-banner .hero_text {
  text-align: left;
  margin-top: 0;
  z-index: 1;
  position: absolute;
  bottom: 15%;
  max-width: 100%;
}

.hero.inner-banner .hero_text h4 {
  font: var(--font-h3);
  color: var(--white);
}

.inner-banner .hero_text1 {
  margin-top: -5%;
  max-width: 100%;
  z-index: 1;
  position: absolute;
  bottom: 30px;
  text-align: left;
  left: 0;
  background: var(--blue);
  padding: 10px;
}

.hero video {
  position: absolute;
  top: 0;
  z-index: -2;
  filter: contrast(1.2);
  height: auto;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.notification {
  display: flex;
  align-items: flex-start;
  /* align-items: stretch; */
}

.persions {
  background: url("../images/about/about.png");
  padding: 20px 10px;
}

.grand-bg {
  background: linear-gradient(
    90deg,
    hsl(0deg 100% 72.41% / 20%) 0%,
    hsla(220, 78%, 29%, 0.2) 100%
  );
}

.notification .block {
  flex: 1 0 0;
  padding: 22px;
  background: var(--gry);
  gap: 8px;
  display: flex;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
  /* flex-direction: column; */
}

.notification .block img {
  width: 30px;
  position: relative;
  /* top: -8px;
  left: -5px; */
}

.notification .block p {
  height: 40px;
}

.notification .block p.btn-sec {
  height: auto;
}

.notification .block:first-child {
  background: url(../images/back.png);
  /* color: var(--white); */
  margin: 7px;
}

.notification .block:nth-child(2) {
  /* background: var(--dark-gry); */
  background: url(../images/back.png);
  /* color: var(--white); */
  margin: 7px;
}

.notification .block:nth-child(3) {
  background: url(../images/back.png);
  margin: 7px;
}

.notification .block span,
.owl-item span {
  vertical-align: -7px;
}

.notification .latestnews-owl-sec {
  width: 550px;
  padding: 22px;
  /* background: var(--dark-blue); */
  background: #c1c1c1;
  color: #000;
  display: flex;
  /* flex-direction: column; */
  gap: 8px;
  justify-self: stretch;
  align-self: stretch;
}

.notification .latestnews-owl-sec h4 {
  color: var(--white);
}

.latest-news-carousel .item img.newtaq {
  display: block;
  width: 40px;
}

.latest-news-carousel .item img.newtaq.hide {
  display: block !important;
  opacity: 0;
}

.latest-news-carousel .item p {
  margin: 0;
}

.latest-news-carousel .item p.date {
  color: #fff;
  font-weight: 600;
  font-size: small;
}

.latest-news-carousel .item p.date span.material-symbols-outlined {
  position: relative;
  font-size: 16px;
  top: 2px;
  padding-right: 3px;
}

.latest-news-carousel .item a {
  color: #fff;
  margin-top: 10px;
  display: inline-block;
}

.latest-news-carousel .item a:hover {
  opacity: 0.9;
}

.latest-news-carousel.owl-theme .owl-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 30px;
  text-align: right;
}

.latest-news-carousel.owl-theme .owl-nav button span {
  padding: 0 8px;
  border-radius: 100px;
}

/* About */
/* .about {
  display: flex;
  padding: 120px 0px;
  gap: 48px;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.about .img_block {
  display: flex;
  gap: 12px;
}

.about .text_block {
  display: flex;
  gap: 12px;
  flex-direction: column;
  flex: 1;
}

.about .abt1-img {
  width: 50%;
  filter: contrast(1.2);
  height: auto;
} */

/* Explore */
.explore {
  display: flex;
  flex-direction: column;
  padding: 40px 0px 60px;
  gap: 48px;
  align-items: center;
  align-content: center;
  justify-content: center;
  color: var(--white);
}

.explore h3 {
  color: var(--white);
}

.explore .text_block {
  flex: 0.5;
}

.explore .icon_block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex: 1;
}

.explore .icon_block img {
  filter: brightness(0) invert(1);
  height: 48px;
  width: 48px;
}

.explore article {
  width: 374px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.explore article a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Shine */
.hovershine {
  position: relative;
}

.activeshine article::before,
.hovershine .in-block::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.activeshine article::before {
  -webkit-animation: shine1 1s;
  animation: shine1 1s;
  animation-delay: 1s;
}

.hovershine .in-block:hover::before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

@-webkit-keyframes shine1 {
  100% {
    left: 125%;
  }
}

@keyframes shine1 {
  100% {
    left: 125%;
  }
}

/* Numbers */
.numbers {
  display: flex;
  padding: 36px 24px;
  border-radius: 8px;
  box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.2);
  /* margin-top: -56px; */
  background: linear-gradient(132deg, #950303e3, #031295e3);
}

.fix_bg {
  background-image: url(../images/back.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center 0px;
  padding: 60px 0px;
}

.numbers article {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.numbers article.border {
  border-left: 1px solid var(--white);
  /* border-right: 1px solid #eee; */
}

.numbers article img {
  height: 60px;
  filter: contrast(1.2);
}

.numbers .text_block {
  padding: 0px 24px;
  /* line-height: 24px; */
  display: flex;
  text-align: left;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.numbers .text_block h4 {
  color: white;
}

.numbers .text_block h6 {
  line-height: 1.4rem;
  font-size: 1.1rem;
  color: white;
}

/* University Message */
.un_messge {
  display: flex;
  padding: 30px 15px 0 15px;
  gap: 12px;
  align-items: start;
  align-content: start;
  justify-content: center;
}

.un_messge .text_block {
  display: flex;
  gap: 12px;
  flex-direction: column;
  flex: 1;
}

.un_messge .text_block .text_title {
  background: #dddddd38;
  padding: 5px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #7d070733;
}

.un_messge .img_block {
  display: flex;
  gap: 12px;
  position: relative;
  height: 300px;
}

.un_messge .img_block .image {
  margin: 0px;
  width: 260px;
  display: block;
  gap: 0px;
}

.un_messge .img_block .image .user-img {
  position: relative;
  margin-bottom: 0px;
  overflow: hidden;
  text-align: center;
}

.un_messge .img_block .image .user-img:before {
  content: "";
  width: 100%;
  height: 120%;
  border-radius: 50%;
  background: #d6e5f69e;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -70px;
}

.un_messge .img_block .image .user-img img {
  height: 190px;
  width: auto;
  border-radius: 10px 10px 0px 0px;
}

/*
.un_messge .img_block .image {
  margin: 12px;
  width: 220px;
  display: flex;
  gap: 20px;
}

.un_messge .img_block .image img{
  position: absolute;
  gap: 12px;
  height: 284px;
  z-index: -1;
}
*/
.un_messge .img_block .image.image_in img {
  position: relative;
  background-color: var(--gry);
  padding: 4px;
  z-index: 1;
}

.un_messge .img_block .image.height-auto img {
  height: auto;
}

.height-auto img {
  height: auto;
  width: 100%;
}

.userinfo {
  width: 100%;
  background: #fff;
  position: relative;
  bottom: 0;
  margin: 0;
  margin-left: 0;
  text-align: center;
  padding: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*
.userinfo {
  width: 205px;
  background: #fff;
  position: absolute;
  bottom: 16px;
  margin: auto;
  margin-left: 12px;
  padding: 8px;
}
*/
.userinfo p {
  margin-bottom: 0;
  font-size: 14px;
}

.userinfo p b {
  color: var(--light-blue);
}

.userinfo a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.un_messge .img_block .image p + p {
  font: var(--font-small);
}

.userinfo:hover p b {
  color: var(--blue);
}

/*Academic Programs*/
.ac_progs {
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* background: #046a8b url(../images/whats-new-bg.png) 0 0 no-repeat; */
  background: url(../images/about/lowback.png);
  background-size: cover;
  background-position: bottom;
}

.courses {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 20px 0px;
}

.course {
  padding: 15px;
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--white);
  border-radius: 10px;
  text-align: center;
  background: linear-gradient(180deg, #950303e3, #031295e3);
  color: var(--white);
}

.courses .course p a {
  width: 100%;
  display: block;
  padding: 4px 0;
  border-radius: 4px;
}

.course ul {
  list-style: none;
  margin: 0;
  height: 100%;
}

.course ul li {
  display: block;
  border-bottom: 1px solid #f2f2f2;
  padding: 5px 0;
  position: relative;
  margin: 0;
}

.course ul li a {
  padding: 0 0 0 20px;
}

.course ul li:last-child {
  border-bottom: 0px dotted #f2f2f2;
}

.course ul li a {
  color: var(--white);
  display: block;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1px;
  border-bottom: 2px solid #ff707d;
  padding: 0px 20px;
  border-radius: 5px;
}

.course ul li a:before {
  content: "keyboard_arrow_right";
  font-family: "Material Symbols Outlined";
  font-size: 20px;
  position: absolute;
  left: 1px;
  color: #ffffff;
  opacity: 0.6;
}

.course ul li:hover {
  background-color: var(--dark-blue);
  border-radius: 10px;
}

.course ul li:hover a,
.course ul li:hover a:before {
  color: var(--white);
}

.course ul li:hover a {
  opacity: 1;
}

.course hr {
  margin-top: 10px;
  margin-bottom: 0px;
}

.course img {
  width: 40%;
}

.sidenav {
  position: sticky;
  top: 40px;
  background-color: var(--blue);
  padding: 15px;
}

.sidenav .sidenav-logo {
  text-align: center;
  text-decoration: line-through;
}

.sidenav .sidenav-logo img {
  padding: 4% 0 8% 0;
  width: 60px;
  margin: auto;
  opacity: 1;
}

.sidenav ul {
  list-style: none;
  margin: 0 0 0 0;
  height: 100%;
  position: relative;
  border: none;
  border-radius: 0;
  z-index: 1;
}

.sidenav ul li ul.dropdown-menu {
  margin: 0 0 20px 0;
  width: 100%;
}

.sidenav ul li.open:hover ul.dropdown-menu li a,
.sidenav ul li ul.dropdown-menu:hover li a {
  color: #333;
  opacity: 0.8;
}

.sidenav ul li ul.dropdown-menu:hover li a:hover {
  color: var(--red);
}

.sidenav ul li ul.dropdown-menu li {
  border-bottom: 0px dotted var(--gry);
}

.sidenav ul li ul.dropdown-menu li a {
  padding: 4px 15px;
}

.sidenav ul li {
  float: none;
  border-bottom: 1px dotted var(--gry);
  padding: 0;
  position: relative;
  display: block;
  margin: 0;
  clear: both;
}

.sidenav ul li:last-child {
  border-bottom: 0px dotted var(--gry);
}

.sidenav ul li a {
  position: relative;
  padding: 6px 8px;
  color: #ffffff;
  opacity: 0.9;
  display: block;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0;
  z-index: 0;
  font-weight: 500;
  white-space: break-spaces;
  text-align: left;
}

.sidenav .caret {
  color: transparent;
}

.sidenav ul li a .caret:before {
  content: "keyboard_arrow_right";
  font-family: "Material Symbols Outlined";
  font-size: 20px;
  position: absolute;
  right: 2px;
  color: #333;
  opacity: 0.6;
  top: 7px;
  bottom: 0;
  height: auto;
  transition: all 0.3s ease;
}

.sidenav ul li a:hover .caret:before {
  right: 0px;
}

.sidenav ul li.open a .caret:before {
  rotate: 90deg;
  transition: all 0.3s ease;
}

.sidenav ul li:hover a,
.sidenav ul li:hover a:hover {
  background-color: transparent;
  color: var(--red);
  opacity: 1;
}

.sidenav ul li a:hover .caret:before {
  color: var(--red);
}

.sidenav ul li a:focus,
.sidenav ul li.open a.dropdown-toggle,
.sidenav ul li.open a.dropdown-toggle:focus,
.sidenav ul li:hover {
  background-color: transparent;
  color: var(--red);
  opacity: 1;
}

.sidenav ul li:hover a {
  opacity: 1;
}

.sidenav ul li.active,
.sidenav ul li.active a,
.sidenav ul li.active:hover a,
.sidenav ul li.active a:hover,
.sidenav ul li.active a .caret:before,
.sidenav ul li.active a:focus {
  background-color: transparent;
  color: var(--red);
  opacity: 1;
}

/* 
.student-corner {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(90deg, hsla(11, 82%, 87%, 1) 0%, hsla(299, 85%, 90%, 1) 100%);
} */

.custom-bg {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.custom-bg2 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.custom-bg2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/back-2.webp");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center 0px;
  opacity: 0.4;
  z-index: -1;
}

.custom-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/back.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center 0px;
  opacity: 0.4;
  z-index: -1;
}

/* Announcements */
.announcements {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px 10px;
}

.noticeforofficials {
  padding: 10px 0px;
}

.announcements .cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.announcements.list-all {
  gap: 0;
  padding: 0;
}

/* .announcements.list-all .cards .timelineWork {
  width: 31.33%;
} */

.announcements ul.listall {
  list-style: none;
  margin: 0;
  padding: 15px 0;
}

.announcements ul.listall li {
  padding: 5px 10px;
  border-left: 4px solid #072b7d;
  margin-bottom: 10px;
  background: #f6f7f8;
}

.announcements ul.listall li:hover {
  border-left: 4px solid #05b3ce;
}

.announcements ul.listall li a {
  color: #000;
}

.announcements ul.listall li a:hover {
  color: #05b3ce;
}

.announcements ul.listall li p {
  margin: 0;
}

.announcements ul.listall li p.date {
  font-size: 14px;
  color: var(--red);
}

.announcements ul.listall li p.date span {
  position: relative;
  top: 3px;
  font-size: 16px;
}

.timelineWork {
  display: flex;
  flex-direction: column;
  /* width: 378px; */
  /* border: 1px solid var(--gry); */
  padding: 10px;
  gap: 6px;
  position: relative;
}

.timelineWork img.newtaq {
  width: 50px;
}

.timelineWork img.newtaq.show {
  display: inline-block !important;
}

.timelineWork .date {
  color: var(--red);
  font-size: small;
  font-weight: 600;
}

.timelineWork .date span.material-symbols-outlined {
  font-size: 14px;
  position: relative;
  top: -5px;
}

.timelineWork .date span {
  vertical-align: -7px;
}

.timelineWork p {
  margin: 0;
}

.timelineWork:hover .noti {
  color: var(--blue);
}

.timelineWork .date span {
  vertical-align: -7px;
}

.timelineWork .link-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*Gallery*/

.gallery {
  display: flex;
  margin: 0;
  padding: 0px 0px;
  height: 700px;
}

.gallery .block {
  padding: 36px;
  flex-direction: column;
  gap: 12px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
}

.gallery-grid {
  margin-top: 20px;
}

.gallery .image {
  flex: 1;
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
}

.gallery .block h4.title {
  color: var(--white);
}

.gallery .block .btn-arrow:hover {
  color: #fff;
}

.gallery .block.bg_red .btn-arrow span.icon-m {
  background: var(--white);
  border: 1px solid var(--white);
  color: var(--red);
}

.gallery .block.bg_red .btn-arrow:hover span.icon-m {
  background: var(--red);
  border: 1px solid var(--white);
  color: var(--white);
}

.column_1 {
  display: flex;
  padding: 48px;
  align-items: flex-end;
  align-content: flex-start;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.column_1 .block {
  width: 200px;
}

.column_2,
.column_3 {
  display: flex;
  flex-direction: column;
}

.block span {
  vertical-align: -7px;
}

/* Events */
.events {
  padding: 10px 0px 30px 0px;
}

.events_section {
  display: flex;
  gap: 24px;
  padding: 50px 0px 0px 0px;
}

.events .events_section img {
  height: auto;
}

.events .events_section .large_events {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.events .events_section .small_events {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.events .events_section .small_events img {
  width: 120px;
}

.events .events_section .small_eve {
  display: flex;
  gap: 16px;
  border: 0;
  border-top: 1px solid #eeeeee;
  padding: 15px 0 0px 0;
}

.events .events_section .small_eve:first-child {
  border-top: 0px solid #eeeeee;
  padding-top: 0;
}

.events .events_section .date {
  color: var(--red);
}

.events .events_section .date .material-symbols-outlined {
  font-size: 14px;
  position: relative;
  top: 1px;
}

.events .events_section .small_eve .title,
.events .events_section .large_events .title {
  line-height: 22px;
}

.events .events_section .large_events:hover .title a,
.events .events_section .title a {
  color: var(--dark-blue);
}

.events .events_section .title a:hover {
  color: var(--light-blue);
}

.w100 {
  width: 100%;
  height: auto;
}

.events .events_section .small_eve .text_block {
  width: calc(100% - 120px);
}

.events.list-all {
  padding: 2% 0 4% 0;
}

.events.list-all .events_section,
.events.list-all .events_section .small_eve {
  display: block;
  padding: 0 15px;
  border-top: 0px solid #eeeeee;
}

.events.list-all .events_section img {
  width: 100%;
  margin-bottom: 15px;
}

.events.list-all .events_section .small_eve .in-block {
  box-shadow: 0 5px 10px 0 rgba(179, 179, 179, 0.5);
  margin: 15px 0;
}

.events.list-all .events_section .small_eve .in-block .text_block {
  padding: 10px;
  width: 100%;
}

.events.list-all .events_section .small_eve .title,
.events.list-all .events_section .large_events .title {
  min-height: 70px;
}

.events.list-all .events_section .large_events:hover .title a,
.events.list-all .events_section .title a {
  font-size: 15px;
  line-height: 18px;
}

.events.list-all .events_section .figur {
  height: 260px;
  overflow: hidden;
}

.event-in-sec h5 {
  font: var(--font-h6) !important;
}

.event-in-sec .date {
  color: var(--red);
}

.event-in-sec .date .material-symbols-outlined {
  font-size: 14px;
  position: relative;
  top: 1px;
}

.events.event-inner-sec .events_section .small_events {
  width: 30%;
}

.events.event-inner-sec .events_section .small_events .small_eve img {
  height: auto;
  width: 100px;
}

.events.event-inner-sec .events_section .large_events .title {
  line-height: 40px;
  font-size: 35px;
  margin: 0 0 7px 0;
}

.events.event-inner-sec .events_section .small_events .small_eve p {
  display: none;
}

.events.event-inner-sec .events_section img {
  height: auto;
  width: 100%;
}

/*Know More*/
.know_more_blocks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px 0 30px 0;
  justify-content: space-between;
}

.know_more_blocks .text_block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: flex-start;
  flex: 1;
}

.know_more .more_blocks {
  display: flex;
  gap: 24px;
}

.know_more .more_block {
  background-color: var(--blue);
  color: var(--white);
  display: flex;
  padding: 20px;
  justify-items: center;
  align-items: center;
  border-radius: 12px;
  gap: 24px;
  flex: 1;
}

.more_block > div {
  flex: 1;
  display: flex;
  gap: 24px;
}

.know_more .more_block .btn-white-brd {
  text-align: center;
}

.know_more .more_block img {
  height: 150px;
  width: 150px;
  border-radius: 75px;
  border: 3px solid #fff;
  /* filter: brightness(100); */
}

/*Partners*/

.partners {
  display: flex;
  padding: 0px 0px;
  justify-content: space-between;
  gap: 0px;
}

.partner_logos {
  display: flex;
  justify-content: flex-end;
  align-content: flex-end;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.partner_logos aside {
  width: 20%;
}

.partner_logos aside img {
  width: 100%;
}

/*Footer*/
footer {
  position: relative;
  border-top: 1px solid #eee;
  background: var(--light-gry);
  overflow: hidden;
  z-index: 1;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /* background: url("../images/back.png") no-repeat center center fixed; */
  background: url("../images/footer-back-2.jpg") no-repeat center center fixed;
  background-size: cover;
  /* opacity: 0.2; */
  z-index: -1;
}

footer .container {
  padding: 24px 0px 24px;
  color: var(--black);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

footer li {
  margin: 0;
}

footer hr {
  margin: 0;
  border: none;
  border-top: 1px solid #c5383d;
}

footer a {
  color: var(--black);
  flex-direction: column;
  text-decoration: ce;
  text-align: center;
  gap: 24px;
}

footer a:hover {
  color: var(--red);
}

footer .logo_text {
  color: var(--black);
}

.footer_logo_section img {
  width: auto;
  height: 80px;
}

footer .logo_text p span.material-symbols-outlined {
  position: relative;
  top: 7px;
}

footer .important_links {
  display: flex;
}

footer .important_links div {
  flex: 1;
}

footer .secondary_links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font: var(--font-small);
}

footer .flyingstars .heart {
  color: var(--red);
  font-size: 16px;
}

footer .copyright {
  font: var(--font-small);
  text-align: center;
}

footer .flyingstars {
  font: var(--font-small);
  text-align: right;
}

footer ul {
  margin: 0;
  padding: 0;
}

footer li {
  list-style: none;
}

.video-blk {
  position: relative;
}

.video-blk img {
  width: 100%;
  border-radius: 4px;
}

.important_links {
  border: 2px solid red;
  padding: 10px 10px;
  background: linear-gradient(135deg, #74ebd5, #acb6e5);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.video-blk .playicon {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  background: #fff;
  border-radius: 50%;
  opacity: 0.8;
}

.video-blk .playicon:hover {
  opacity: 1;
}

/********************************************************** FACULITIES ************************************/
.faculties {
  display: flex;
  flex-wrap: wrap;
  padding: 8px 5px;
  flex-basis: 47%;
  margin: 0 -12px;
}

.faculty {
  width: 30.5%;
  display: flex;
  flex-direction: column;
  margin: 12px;
  padding: 18px;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.faculty .img-blk {
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
  height: 155px;
}

.faculty .img-blk:before {
  content: "";
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: #f2f2f2;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 45px;
}

.faculty img {
  width: 150px;
  height: auto;
}

/*
.faculty img{    
  border-bottom: 1px solid #d9d9d9;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  overflow: hidden;
  margin: 2% auto 12px auto;
}

*/

.faculty .faculity_details {
  text-align: center;
}

.faculty h6 {
  color: var(--blue);
}

.faculty .faculity_details p.designation-list {
  margin: 0 0 5px 0;
  font-size: 14px;
  line-height: 22px;
}

.faculty .faculity_details p.desi {
  text-align: left;
}

.faculty .faculity_details a {
  color: var(--blue);
  font-size: 14px;
  margin: 10px 0 5px 0;
  display: block;
  letter-spacing: 0;
}

.faculty .faculity_details a .material-symbols-outlined {
  font-size: 16px;
  position: relative;
  top: 3px;
}

.faculty .faculity_details a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faculty .faculty-in {
  text-align: center;
}

.faculty .faculty-in a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.faculty .faculty-in:hover img {
  opacity: 0.7;
}

.facultydetails {
  padding: 15px 0px;
}

.facultydetails .profile-header {
  margin-bottom: 30px;
  background-color: var(--dark-gry);
  padding: 20px 20px 0 20px;
}

.facultydetails .profile-header .image-cell {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.facultydetails .profile-header .image-cell:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #a0c1e69e;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -70px;
}

.facultydetails .profile-header .content-cell {
  padding: 30px 0 20px 20px;
}

.facultydetails .profile-header .content-cell h3 .scial-icon {
  width: 35px;
  position: relative;
  top: -10px;
  left: 10px;
}

.facultydetails .profile-header .content-cell h3 a:hover .scial-icon {
  opacity: 0.8;
}

.facultydetails .profile-header .div-table {
  display: table;
  width: 100%;
}

.facultydetails .profile-header .div-table aside {
  display: table-cell;
  padding: 15px;
}

.facultydetails .profile-header .div-table aside.content-cell {
  background-color: var(--dark-gry);
  width: 70%;
  vertical-align: middle;
}

.facultydetails .profile-header .bborder {
  border-bottom: 1px solid var(--gry);
  margin: 10px 0;
  color: var(--red);
  font-size: 16px;
}

.facultydetails .profile-header .bborder span {
  font-size: 18px;
  position: relative;
  top: 4px;
}

.facultydetails .profile-header .bborder span.txt {
  color: var(--black);
  font: var(--font-p);
  margin: 0 0 15px 0;
  font-size: 16px;
  line-height: 26px;
  opacity: 0.9;
  letter-spacing: 1px;
  font-weight: 300;
  position: relative;
  top: 0px;
}

.facultydetails .nav-tabs {
  padding-bottom: 5px;
  border-bottom: 1px solid #f2f2f2;
  margin: 0 0 15px 0;
}

.facultydetails .nav-tabs li a {
  font: var(--font-p);
  outline: none;
  font-weight: 600;
  opacity: 0.6;
  font-size: 16px;
  margin-right: 15px;
  padding: 0;
  border: none;
  color: var(--black);
  text-decoration: underline solid #fff 20%;
}

.facultydetails .nav-tabs li a:focus,
.facultydetails .nav-tabs li a:hover,
.facultydetails .nav-tabs li.active a {
  color: var(--red);
  text-decoration: underline solid var(--red);
  text-underline-offset: 12px;
  opacity: 1;
  border: none;
  outline: none;
  background-color: transparent;
}

.facultydetails .nav-tabs li a span {
  display: inline;
  position: relative;
  top: 5px;
}

.facultydetails .txt-justify p {
  text-align: justify;
  margin: 0 0 15px 0;
}

/********************************************************** social media ************************************/
.socialmedia-sec {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
  padding: 15px;
}

.socialmedia {
  display: flex;
  flex-flow: row;
  align-items: center;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .socialmedia {
    flex-flow: column;
  }
}

.socialmedia .socialTitle {
  margin: 0 15px 0 0;
  font-size: 20px;
}

@media (max-width: 767px) {
  .socialmedia .socialTitle {
    margin-bottom: 15px;
    text-align: center;
  }
}

.socialmedia .socialList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  justify-content: center;
  flex-flow: row wrap;
}

.socialmedia .socialList li {
  margin: 5px;
}

.socialmedia .socialList li:first-child {
  padding-left: 0;
}

.socialmedia .socialList li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  text-decoration: none;
  background-color: #999;
  color: #fff;
  transition: 0.35s;
}

.socialmedia .socialList li a img {
  transform-origin: top left;
  transform: scale(1);
  transition: 0.35s;
  width: 100%;
  border-radius: 8px;
}

.socialmedia .socialList li a:hover img {
  transform: scale(1.1) translate(-10%, -10%);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  border: 1px solid #c5c5c5;
  background: var(--white);
  padding: 5px;
  border-radius: 8px;
  box-shadow: 0 4px 1px rgba(0, 10, 61, 0.16);
  margin-bottom: 15px;
}

.card h5 {
  font: var(--font-h6) !important;
  /* min-height: 116px; */
  opacity: 0.9;
}
.card-title {
  color: var(--black);
}
.card-pro {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 2px solid red;
}

.card.card2,
.centre-card .card {
  width: 48.9%;
  gap: 0;
}

.card.card2 p,
.centre-card .card p {
  margin-bottom: 10px;
  text-align: left;
}

.card.card3,
.card.programee-card {
  width: 30.9%;
}

.card.card4 {
  width: 23%;
}

.card.gcard {
  width: 23.4%;
  padding: 0;
  gap: 10px;
  overflow: hidden;
}

.card.jcard {
  width: 20%;
  padding: 4px;
  gap: 10px;
}

.card.jcard img {
  width: 100%;
  height: auto;
}

.card.gcard img {
  width: 100%;
  height: 200px;
}

.card:hover {
  background: var(--light-gry);
  box-shadow: 0px 5px 10px var(--light-gry);
}

.card a.btn-blue-brd {
  padding: 2px 15px 0px 15px;
  margin-right: 10px;
}

.card a.btn-blue-brd span.material-symbols-outlined {
  font-size: 16px;
  position: relative;
  top: 4px;
  left: -5px;
}

.center_cards {
  padding: 40px;
  background-color: var(--gry);
}

.center_cards .card {
  background-color: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  margin: 0 0 40px 0;
  width: 100%;
}

.center_cards .card:last-child {
  margin: 0 0 0px 0;
}

.center_cards .card a.btn-blue-brd span.material-symbols-outlined {
  font-size: 18px;
  position: relative;
  left: auto;
  top: 4px;
  right: -10px;
}

.center_cards .img-sec {
  border-right: 1px solid #f2f2f2;
}

.center_cards .content-sec {
  border-left: 1px solid #f2f2f2;
}

.center_cards .content-sec h5 {
  margin-bottom: 20px;
  min-height: auto;
}

.center_cards .content-sec .info {
  text-align: justify;
  height: 130px;
  overflow: hidden;
  margin: 0 0 38px 0;
}

.pdfs_as_list {
  display: flex;
}

.pdf_frame {
  display: none;
}

.pdf_frame:first-child {
  display: block;
}

.list_of_pdf_titles {
  padding-right: 32px;
}

.list_of_pdf_titles h5 {
  margin-bottom: 24px;
}

.list_of_pdf_titles p {
  cursor: pointer;
}

.list_of_pdf_titles p a {
  background-color: var(--dark-blue);
  color: var(--white);
  display: block;
  padding: 10px 15px;
}

.list_of_pdf_titles p.active a,
.list_of_pdf_titles p a:hover {
  background-color: var(--light-blue);
}

.list_of_pdfs {
  flex: 1;
}

.list_of_pdfs iframe {
  width: 100%;
}

.mapsec {
  position: relative;
  height: 350px;
}

.gm-style .gm-style-iw-d {
  min-height: 140px;
}

.mapsec .map-address-content h3 {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}

.mapsec .map-address-content p {
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  line-height: 20px;
  color: #000;
}

.form-fotter-sec {
  background: var(--gry);
  padding: 4% 0;
  position: relative;
}

.form-fotter-sec:before {
  content: "";
  background-image: url(/images/logo.png);
  width: 300px;
  height: 300px;
  position: absolute;
  background-repeat: no-repeat;
  opacity: 0.11;
  background-position: center center;
  background-size: 70%;
  top: -20px;
  left: -60px;
}

.form-fotter-sec form .form-control,
.form-fotter-sec form .PhoneInputInput {
  height: 40px;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.form-fotter-sec form textarea.form-control {
  height: auto;
}

.form-fotter-sec form .PhoneInputCountry {
  background: #fff;
  padding: 0 8px 0 8px;
}

.form-fotter-sec form button {
  background: var(--dark-blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  border-radius: 50px;
  padding: 6px 20px;
  border: 1px solid var(--dark-blue);
  box-shadow: none;
}

.form-fotter-sec form button:focus,
.form-fotter-sec form button:hover {
  background: var(--blue);
  color: var(--white);
  border: 1px solid var(--white);
}

.address-details-sec {
  padding: 2% 0;
}

.address-details-sec .heading-sec {
  margin-bottom: 5px;
}

.address-details-sec .heading-sec h2 {
  margin: 20px 0 0px 0;
}

.address-details-sec .in-block ul {
  padding: 0 0 0 20px;
}

.breadcrumb {
  background: var(--dark-gry);
  margin-bottom: 0;
}

.breadcrumb ul {
  margin: 0;
  padding: 4px 0 0 0;
}

.breadcrumb ul li {
  display: inline-block;
  position: relative;
}

.breadcrumb ul li,
.breadcrumb ul li a {
  font: var(--font-p);
  color: #333;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.8;
  letter-spacing: 1px;
  font-weight: 300;
}

.breadcrumb ul li a:hover {
  color: var(--blue);
}

.breadcrumb ul li a:after {
  content: "/";
  padding: 0 12px;
}

.breadcrumb .btn-blue-brd {
  padding: 2px 15px 0px 12px;
  margin: 2px 0 0 0;
}

.breadcrumb .btn-blue-brd span.material-symbols-outlined {
  position: relative;
  top: 2px;
  left: -4px;
}

.breadcrumb .scial-icon {
  width: 26px;
  border-radius: 4px;
  margin: 4px 0 0 0;
}

.breadcrumb .scial-icon:hover {
  opacity: 0.8;
}

.breadcrumb .btn-arrow {
  margin-top: 2px;
}

.breadcrumb .btn-arrow span.icon-m {
  position: relative;
  top: 7px;
  right: 5px;
}

.breadcrumb .btn-arrow:hover {
  margin: 2px 6px 0 0;
}

/********************************************************** Mobile ************************************/

.txt-justfy,
.txt-justfy p,
.txt-justfy li {
  text-align: justify;
}

.lifeatnusrl-sec {
  padding: 30px 0;
  margin-top: 30px;
  background-color: #f4f4f4;
}

.lifeatnusrl-sec h5 {
  margin-bottom: 30px;
}

.lifeatnusrl-sec aside {
  margin: 15px 0;
}

.lifeatnusrl-sec aside .in-block {
  background: #fff;
  position: relative;
  transition: all 0.3s ease;
}

.lifeatnusrl-sec aside .in-block img {
  width: 100%;
}

.lifeatnusrl-sec aside .in-block .content-blk {
  padding: 25px;
}

.lifeatnusrl-sec aside .in-block h5 {
  margin: 0px 0 10px 0;
  color: var(--blue);
}

.lifeatnusrl-sec aside .in-block a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.lifeatnusrl-sec aside .in-block:hover {
  transition: all 0.3s ease;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

.ingallery-sec {
  padding: 30px 0;
  background-color: #f4f4f4;
}

.ingallery-sec aside {
  margin: 15px 0;
}

.ingallery-sec aside .in-block {
  background: #fff;
  position: relative;
  transition: all 0.3s ease;
}

.ingallery-sec aside .in-block img {
  width: 100%;
}

.ingallery-sec aside .in-block .content-blk {
  padding: 25px;
}

.ingallery-sec aside .in-block h5 {
  margin: 0px 0 10px 0;
  color: var(--blue);
  font-size: 18px;
  line-height: 24px;
  height: 52px;
  overflow: hidden;
}

.ingallery-sec aside .in-block a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.ingallery-sec aside .in-block:hover {
  transition: all 0.3s ease;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

.ingallery-sec .nav-tabs {
  border-bottom: 1px solid #ddd;
  padding: 0 0 10px 0;
  display: none;
}

.ingallery-sec .nav-tabs > li > a {
  color: #000;
  cursor: default;
  background-color: var(--white);
  border: 1px solid var(--white);
  border-bottom-color: transparent;
  border-radius: 50px;
  padding: 5px 20px;
  cursor: pointer;
  margin-right: 10px;
}

.ingallery-sec .nav-tabs > li > a:hover,
.ingallery-sec .nav-tabs > li.active > a,
.ingallery-sec .nav-tabs > li.active > a:focus,
.ingallery-sec .nav-tabs > li.active > a:hover {
  background-color: var(--red);
  border: 1px solid var(--red);
  color: #fff;
}

@media screen and (max-width: 960px) {
  html {
    font-size: 70%;
  }

  .hero video {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .hero .hero_text {
    margin-top: 30%;
  }

  .hero {
    height: 325px;
    width: 100%;
    overflow: auto;
    /* margin-top: 170px; */
  }

  .about,
  .explore,
  .explore .icon_block,
  .notification,
  .numbers,
  .un_messge,
  .un_messge .img_block,
  .gallery,
  .announcements,
  .events_section,
  .more_blocks,
  .partners,
  .important_links,
  .courses,
  .events {
    flex-direction: column;
    /* padding: 15px; */
  }

  .timelineWork,
  .notification .latestnews-owl-sec,
  .large_events img,
  .notification .block,
  .explore article,
  .icon_block {
    width: 100%;
  }

  .explore .icon_block {
    padding: 0;
  }

  .about .abt1-img {
    width: calc(50% - 12px);
  }

  .numbers {
    margin-top: -13px;
    padding: 60px 40px;
    flex-wrap: wrap;
    flex-direction: initial;
    /* box-shadow: none; */
    width: 94%;
  }

  .numbers article {
    width: 50%;
    flex: auto;
    height: 120px;
    border: none !important;
  }

  .numbers article .text_block {
    flex-direction: column;
    gap: 12px;
    border: none;
    text-align: center;
  }

  .un_messge .img_block {
    height: auto;
  }

  .un_messge .img_block .image img {
    position: static;
  }

  .un_messge .img_block .image {
    flex-direction: column;
  }

  .userinfo {
    position: static;
  }

  .ac_progs {
    padding: 15px 2rem;
  }

  .courses {
    padding: 0;
  }

  .ac_progs div {
    width: 100%;
  }

  .gallery {
    display: flex;
    height: auto;
  }

  .gallery .image {
    flex: none;
  }

  .column_3 {
    flex-direction: column-reverse;
  }

  .know_more .more_block {
    flex-direction: column;
  }

  .know_more_blocks {
    text-align: center;
  }

  .events_section {
    padding: 0;
  }

  .partners {
    gap: 36px;
    flex-direction: column;
  }

  .partner_logos {
    flex-direction: column;
    align-items: self-start;
  }

  .partner_logos aside {
    width: 100%;
  }

  .important_links {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .secondary_links,
  .copyright {
    padding: 0px 2rem;
    font: var(--font-h5);
  }

  .faculties {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    margin: 0;
  }

  .faculty {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
  }

  .faculty img {
    width: 95%;
  }

  .menu .menu-link,
  .menu .menu-link a {
    display: block;
  }

  .menu .dropdown-menu {
    left: 0;
    width: 100%;
    position: relative;
    padding: 0 0 0 20px;
  }

  .menu .dropdown-menu .dropdown-menu {
    top: 0px;
    left: 0;
    padding: 0 0 0 5%;
    width: 100%;
  }

  nav .menu_close {
    margin: 0 0 0 15px;
  }
}

@media screen and (max-width: 767px) {
  .clat_btn,
  .clat_btn:hover,
  .nacc_btn,
  .nacc_btn:hover {
    padding: 5px;
    width: 85px;
    text-align: center;
    /* height: 40px; */
  }

  .menu_icon {
    padding: 12px 8px;
  }

  .search-icon {
    padding: 3px;
  }

  header .logo_text {
    display: block;
  }

  .logo_section .logo_text h5 {
    font-family: var(--font-primary);
    font: var(--font-h6);
  }

  .logo_section .logo_text p {
    font: var(--font-small);
    margin: 0;
  }

  .explore article {
    width: 49%;
    display: inline-block;
    padding: 10px;
    border: 0px solid rgba(255, 255, 255, 0.2);
  }

  .explore article p {
    min-height: 40px;
    line-height: 18px;
    margin: 10px 0 0 0;
    text-align: left;
  }

  .explore .icon_block {
    flex-direction: column-reverse;
    padding: 0;
    width: 100%;
    display: block;
    margin: 0px;
  }

  .explore article .in-block {
    padding: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero.inner-banner .hero_text {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 8%;
  }

  /* header {
    padding: 0 15px;
  } */

  .fixedopen .logo_text {
    display: none;
  }

  .hero .hero_text h1 {
    font: var(--font-h3);
  }

  .notification .block p {
    height: auto;
  }

  .numbers .text_block {
    padding: 0px 4px;
  }

  .explore p {
    text-align: justify;
  }

  .gallery .block,
  .column_1 {
    padding: 15px;
  }

  .head h3 {
    font-size: 26px;
    margin: 0 0 10px 0;
  }

  .socialfeeds-sec {
    padding: 15px;
  }

  .events .events_section .small_events,
  .events .events_section .small_eve {
    display: block;
  }

  .events .events_section .small_events img {
    width: 100%;
    margin: 0 0 14px 0;
  }

  .know_more .more_block {
    padding: 20px 10px;
  }

  #header-search #search #search-box input[type="text"] {
    font-size: 18px;
    height: 60px !important;
  }

  #header-search #search button.btn-close span.material-symbols-outlined,
  #header-search #search button.btn-submit span.material-symbols-outlined {
    font-size: 30px;
  }

  .hero.inner-banner {
    height: 200px;
    background-size: cover;
  }

  .inner-banner .container {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 0 15px;
  }

  .hero.inner-banner .hero_text {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 8%;
    padding: 0 15px;
  }

  .hero.inner-banner .hero_text h4 {
    font-size: 28px;
  }

  /* .sidenav {
    display: none;
  } */

  .breadcrumb {
    padding: 8px 0px;
  }

  .breadcrumb ul li,
  .breadcrumb ul li a {
    font-size: 14px;
  }

  h3 {
    font-size: 28px;
  }

  h3.mobi-left {
    text-align: left;
    font-size: 28px;
  }

  .vcs-old-sec .vcs-block .owl-nav button.owl-next {
    right: 10px;
  }

  .vcs-old-sec .vcs-block .owl-nav button.owl-prev {
    left: 10px;
  }

  .faculty-banner-sec img.user-bg {
    width: 100%;
    height: 450px;
  }

  .faculty-banner-sec .hero_text {
    bottom: auto;
    top: 33%;
  }

  .faculty-banner-sec img.user-img {
    position: absolute;
    right: 3%;
    bottom: -10px;
    width: 180px;
  }

  .faculty-banner-sec .hero_text h4 {
    font-size: 2rem;
  }

  .faculty-banner-sec .hero_text h6 {
    font-size: 1.4rem;
    margin-top: 20px;
  }

  .faculty img {
    width: 50%;
  }

  .faculties {
    padding: 0 15px;
  }

  .faculty {
    margin: 15px 0;
  }

  .facultydetails {
    padding: 15px;
  }

  .facultydetails .nav-tabs > li {
    float: left;
    margin-bottom: 20px;
    width: 50%;
  }

  .facultydetails .nav-tabs li a {
    font-size: 14px;
    margin-right: 0;
  }

  /* .notification .block:first-child {
    background: none;
    display: none;
  } */

  .about {
    display: block;
    /* padding: 15px; */
  }

  .about .img_block {
    display: flex;
    gap: 0;
    margin: 0 0 15px 0;
  }

  .about .abt1-img {
    width: calc(50%);
  }

  .about .abt1-img:first-child {
    padding-right: 20px;
  }

  .explore {
    gap: 0;
    padding: 30px 5px 48px 5px;
  }

  .explore .text_block {
    padding: 0 10px;
  }

  .numbers {
    padding: 30px 30px;
  }

  .un_messge .img_block {
    height: auto;
    margin: auto;
  }

  .head {
    display: block;
    text-align: right;
  }

  .head h3 {
    text-align: left;
  }

  .head .line,
  .head .line hr {
    margin: 4px 0;
  }

  .about h6 {
    font-size: 18px;
  }
}

.postid-1177 .image,
.postid-1175 .image {
  display: none;
}

body.page-id-1956 .card h5 {
  min-height: auto;
}

.rounded {
  border-radius: 8px;
}
