*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

  
#carousel {
  width: 100%;
}

.item {
  height: 100vh;
}

.slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* soft paper-like overlay (since you like that style) */
.overlay {
  position: absolute;
  bottom: 20%;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.1),
    transparent
  );
}

.overlay h4 {
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.overlay h2 {
  font-size: 42px;
  font-weight: 600;
}
/* HEADER BASE */
.custom-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #13017b; /* purple */
  padding: 12px 40px;
}

/* LOGO */
.logo {
  height: 50px;
}

/* CENTER NAV */
.nav-center {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-center li a {
  text-decoration: none;
  color: #ddd;
  font-size: 15px;
  position: relative;
}

/* active underline */
.nav-center li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #fff;
}

/* hover */
.nav-center li a:hover{
  color: #fff;
}

.nav-center li a:hover::after {
 content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #fff;
}

/* DROPDOWN STYLES */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ddd !important;
  text-decoration: none;
  position: relative;
}

.nav-dropdown-toggle:hover {
  color: #fff !important;
}

.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-dropdown-toggle:hover::after {
  opacity: 1;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  padding: 8px 0;
  margin-top: 10px;
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu li {
  margin: 0;
  padding: 0;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #13017b !important;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.nav-dropdown-menu li a:hover {
  background-color: #f0f0f0;
  color: #0d004d !important;
  padding-left: 24px;
}

/* RIGHT SIDE */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* search icon */
.search-icon {
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* apply button */
.apply-btn {
  background: #f3d6a0;
  color: #000;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.apply-btn:hover {
  background: #eac98c;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-center {
    display: none;
  }
}

.news-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.news-card .badge {
    display: inline-block;
    background-color: #ffd700;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.news-card .title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #0d004d;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card:hover .title {
    color: #3b00cc;
}

.news-card .desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.news-card .date {
    display: flex;
    align-items: center;
    color: #999;
    font-size: 14px;
    gap: 0.5rem;
}




/* copied css */


html {
  font-size: 62.5%; }
  @media only screen and (max-width: 1000px) {
    html {
      font-size: 60.25%; } }
  @media only screen and (max-width: 600px) {
    html {
      font-size: 56.25%; } }

p, ul, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0; }

a {
  text-decoration: none;
  display: inline-block; }

body {
  box-sizing: border-box; }

body {
  font-family: "Ubuntu", sans-serif;
  font-size: 1.6rem; }

p {
  line-height: 1.7; }

.heading-main {
  margin-bottom: 3.4rem; }
  .heading-main h2 {
    font-weight: 500;
    font-size: 4rem;
    margin-bottom: 1.6rem; }
    @media only screen and (max-width: 900px) {
      .heading-main h2 {
        font-size: 3.4rem; } }
  .heading-main .blue-line {
    width: 9.4rem;
    border-top: 6px solid #13017b; }

.common-padding {
  padding: 5.2rem; }
  @media only screen and (max-width: 1100px) {
    .common-padding {
      padding: 4.2rem 3.2rem; } }
  @media only screen and (max-width: 800px) {
    .common-padding {
      padding: 4.2rem 2.8rem; } }
  @media only screen and (max-width: 600px) {
    .common-padding {
      padding: 3.2rem 2rem; } }

.footer-padding {
  padding: 6.4rem 7.2rem 3.2rem 7.2rem; }
  @media only screen and (max-width: 1100px) {
    .footer-padding {
      padding: 3.2rem 6.4rem; } }
  @media only screen and (max-width: 600px) {
    .footer-padding {
      padding: 2.4rem 2rem; } }

.nav-padding {
  padding: 1.2rem 5.2rem; }
  @media only screen and (max-width: 1100px) {
    .nav-padding {
      padding: 1.2rem 3.2rem; } }
  @media only screen and (max-width: 800px) {
    .nav-padding {
      padding: 1.2rem 2.8rem; } }
  @media only screen and (max-width: 600px) {
    .nav-padding {
      padding: 1.2rem 2rem; } }

.show-hide {
  display: none !important; }

.large-heading {
  font-size: 4rem;
  font-weight: 500; }

.view-all {
  margin-top: 3.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem; }
  .view-all a {
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #13017b; }
  .view-all .line-btw {
    background-color: #E5E5E5;
    height: 1px;
    width: 67%; }
    @media only screen and (max-width: 700px) {
      .view-all .line-btw {
        display: none; } }
  .view-all .navigation {
    display: flex;
    gap: 1.2rem; }
    .view-all .navigation i {
      color: #13017b;
      box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
      padding: 0.8rem;
      border-radius: 50%;
      cursor: pointer; }

.common_banners {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.36) 29.24%), url(../images/newsImg2.png);
  background-size: cover;
  height: 80vh;
  background-position: center; }

.banner_content {
  position: absolute;
  bottom: 7rem;
  left: 6rem;
  color: #fff; }
  @media only screen and (max-width: 600px) {
    .banner_content {
      left: 3.6rem; } }
  .banner_content h2 {
    font-size: 3.6rem;
    font-weight: 700; }
  .banner_content p {
    font-size: 2.4rem; }

.active-link {
  color: #13017b !important; }

.heading-simple {
  font-size: 2rem;
  font-weight: 500;
  color: #3a3e42; }

.description-simple {
  font-size: 1.6rem;
  font-weight: 400;
  color: #3a3e42; }

.date-simple {
  font-size: 1.4rem;
  font-weight: 400;
  color: #6e767f; }

  .grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 20px;
}

/* Big left top */
.card-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

/* Right top */
.card-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

/* Left bottom */
.card-3 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

/* Big bottom right (spans full width like image) */
.card-4 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.grid-cols-3 {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(350px, 400px));
  gap: 50px; }

.card {
  padding: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s; }

.blog-card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s; }
  .blog-card a {
    width: 100%; }
  .blog-card img {
    width: 100%;
    height: 250px;
    filter: grayscale(1);
    object-fit: cover;
    transition: 0.5s all ease-in-out; }
    .blog-card img:hover {
      cursor: pointer;
      transform: scale(1.02); }

.card:hover {
  cursor: pointer;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2); }

.icon {
  font-size: 90px;
  cursor: pointer; }

.large-heading {
  font-size: 3.6rem;
  font-weight: 700;
  font-family: "open sans";
  margin-bottom: 1.2rem; }

.red-line {
  height: 8px;
  width: 13rem;
  background-color: #e90d0d; }

.blue-line {
  height: 5px;
  width: 13rem;
  background-color: #05149b; }

  .white-line {
  height: 5px;
  width: 13rem;
  background-color: #fff; }

.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden; }

.event-container {
  display: flex;
  gap: 10px; }

.owl-carousel span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  display: block;
  border: 1px solid #000 !important;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  -moz-transition: opacity 200ms ease;
  -ms-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px; }

.owl-carousel .active span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background-color: #000 !important;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  -moz-transition: opacity 200ms ease;
  -ms-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px; }

.header ul {
  list-style: none; }

.header .top-nav {
  background-color: #13017b;
  padding: 0.8rem 5.2rem; }
  .header .top-nav .left-items i {
    margin-right: 0.5rem; }
  .header .top-nav .right-items {
    gap: 2rem; }
    .header .top-nav .right-items_icons {
      gap: 1.8rem; }
    .header .top-nav .right-items .login a {
      border: 2px solid #fff;
      border-radius: 4px;
      padding: 0.2rem 0.8rem;
      display: inline-block; }
  .header .top-nav a {
    color: #fff !important;
    font-size: 1.6rem;
    font-weight: 400; }
  .header .top-nav ul {
    display: flex;
    gap: 1.7rem;
    align-items: center; }
  @media only screen and (max-width: 1100px) {
    .header .top-nav {
      display: none !important; } }

.header .main-nav {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; }
  .header .main-nav .left-items a {
    display: flex;
    gap: 1.6rem;
    align-items: center; }
    .header .main-nav .left-items a img {
      height: 8rem;
      width: 8rem; }
    .header .main-nav .left-items a span {
      font-size: 2rem;
      font-weight: 500;
      color: #13017b; }
      @media only screen and (max-width: 1100px) {
        .header .main-nav .left-items a span {
          font-size: 1.7rem; } }
      @media only screen and (max-width: 600px) {
        .header .main-nav .left-items a span {
          font-size: 1.4rem;
          font-weight: 400; } }
  .header .main-nav .right-items {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .header .main-nav .right-items a {
      font-size: 1.8rem;
      font-weight: 500;
      color: #3a3e42;
      transition: all 0.2s; }
      .header .main-nav .right-items a:hover {
        color: #13017b;
        text-decoration: underline; }
    .header .main-nav .right-items .side-menu {
      cursor: pointer; }
      .header .main-nav .right-items .side-menu i {
        font-size: 2.2rem;
        font-weight: 700;
        color: #3a3e42; }
        @media only screen and (max-width: 1100px) {
          .header .main-nav .right-items .side-menu i {
            font-size: 3rem; } }
    .header .main-nav .right-items_main {
      display: flex;
      align-items: center;
      gap: 2.8rem;
      margin-right: 2.8rem; }
      @media only screen and (max-width: 1100px) {
        .header .main-nav .right-items_main {
          display: none; } }
      .header .main-nav .right-items_main > li {
        padding: 1.2rem 0rem; }

.header .has-hoverMenu {
  position: relative; }
  .header .has-hoverMenu:hover .hoverMenu {
    display: block; }
  .header .has-hoverMenu .hoverMenu {
    border-top: 2px solid #13017b;
    overflow: hidden;
    border-radius: 3px;
    display: none;
    padding: 0;
    position: absolute;
    list-style: none;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    z-index: 10;
    top: 4.2rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
    background-color: #fff;
    width: max-content; }
    .header .has-hoverMenu .hoverMenu li:not(:last-child) {
      border-bottom: 1px solid #e9ecef; }
    .header .has-hoverMenu .hoverMenu li a {
      display: inline-block;
      padding: 1rem 2rem;
      width: 100%;
      font-weight: 500;
      font-size: 1.7rem;
      color: #3a3e42;
      transition: all 0.2s; }
      .header .has-hoverMenu .hoverMenu li a:hover {
        background-color: #f1f3f5;
        color: #13017b !important; }

.side-bar .sidebar-items {
  list-style: none;
  position: fixed;
  border-radius: 3px;
  width: 25% !important;
  height: 89vh;
  background-color: #fefefe;
  right: -32% !important;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  z-index: 99;
  top: 12rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s;
  padding: 0;
  padding-bottom: 3%; }
  @media only screen and (max-width: 1100px) {
    .side-bar .sidebar-items {
      top: 8.8rem;
      overflow-y: scroll; } }
  @media only screen and (max-width: 900px) {
    .side-bar .sidebar-items {
      top: 8.8rem;
      right: -40% !important;
      width: 38% !important; } }
  @media only screen and (max-width: 600px) {
    .side-bar .sidebar-items {
      right: -46% !important;
      width: 45% !important; } }
  .side-bar .sidebar-items li {
    border-bottom: 1px solid #e9ecef; }
    .side-bar .sidebar-items li a {
      display: inline-block;
      padding: 1.2rem;
      width: 100%;
      color: #13017b;
      transition: all 0.2s; }
      .side-bar .sidebar-items li a:hover {
        background-color: #f1f3f5; }
  .side-bar .sidebar-items .has-submenu:hover > a {
    color: #13017b !important; }
  .side-bar .sidebar-items .has-submenu .submenu {
    display: none;
    list-style: none;
    background-color: #fff;
    padding: 0; }
    .side-bar .sidebar-items .has-submenu .submenu li {
      width: 100%; }
      .side-bar .sidebar-items .has-submenu .submenu li a {
        padding: 1rem 3.2rem;
        width: 100%;
        display: inline-block;
        font-weight: 400;
        font-size: 1.6rem; }

.side-bar .sidebar-items.in {
  right: 0% !important; }

.show-1100 {
  display: none; }
  @media only screen and (max-width: 1100px) {
    .show-1100 {
      display: block !important; } }

.main-background {
  overflow: hidden !important; }

.open-accordin ul {
  display: block !important; }

.footer {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: #fff; }
  .footer a {
    font-weight: 400;
    color: #3a3e42;
    transition: all 0.2s; }
    .footer a:hover {
      text-decoration: underline;
      color: #13017b; }
  .footer ul {
    list-style: none; }
    .footer ul li {
      margin-bottom: 1.2rem; }
  .footer .footer-links.links1 .logo a {
    display: flex;
    gap: 1.6rem;
    align-items: center; }
    .footer .footer-links.links1 .logo a img {
      height: 8rem;
      width: 8rem; }
    .footer .footer-links.links1 .logo a span {
      font-size: 2rem;
      font-weight: 400;
      color: #13017b; }
      @media only screen and (max-width: 1100px) {
        .footer .footer-links.links1 .logo a span {
          font-size: 1.7rem; } }
      @media only screen and (max-width: 600px) {
        .footer .footer-links.links1 .logo a span {
          font-size: 1.4rem;
          font-weight: 400; } }
  .footer iframe {
    margin-bottom: 1.2rem; }

.footer-end {
  background-color: #13017b; }
  .footer-end p {
    font-weight: 400;
    color: #fff; }
  @media only screen and (max-width: 600px) {
    .footer-end {
      display: none; } }

table {
  border-collapse: collapse;
  width: 100%; }
  table thead {
    background-color: #f2f2f2; }
    table thead th {
      font-weight: bold; }
  table tr:nth-child(even) {
    background-color: #f2f2f2; }
  table tr:hover {
    background-color: #ddd; }
  table th, table td {
    text-align: left;
    padding: 8px;
    border-bottom: 1px solid #ccc; }



.main {
  background-color: #f5f5f5; }
  .main-banner {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../images/banner.png);
    background-size: cover;
    background-position: center;
    height: 95vh;
    position: relative;
    margin-bottom: 2.4rem;
    }
    .main-banner .banner-heading {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 6rem;
      text-transform: uppercase;
      color: #fff;
      z-index: 5; }
      .main-banner .banner-heading .mission {
        font-weight: 400;
        font-size: 2.4rem;
        margin-bottom: 1.8rem; }
      .main-banner .banner-heading .empower {
        font-size: 4rem;
        font-weight: 500; }
        @media only screen and (max-width: 900px) {
          .main-banner .banner-heading .empower {
            font-size: 3.2rem; } }
  .main .welcome {
    display: flex;
    align-items: center; }
    @media only screen and (max-width: 900px) {
      .main .welcome {
        flex-direction: column; } }
    .main .welcome .welcome-img {
      height: 43rem;
      flex-basis: 42%;
      margin-right: -5rem;
      z-index: 5; }
      @media only screen and (max-width: 900px) {
        .main .welcome .welcome-img {
          margin-right: 0;
          margin-bottom: -5.4rem;
          padding: 0 2rem; } }
      @media only screen and (max-width: 600px) {
        .main .welcome .welcome-img {
          padding: 0 4rem; } }
      .main .welcome .welcome-img img {
        height: 100%;
        width: 100%;
        object-fit: contain; }
    .main .welcome .welcome-text {
      flex-basis: 63%;
      background-color: #fff;
      height: 48rem;
      display: flex;
      align-items: center; }
      @media only screen and (max-width: 900px) {
        .main .welcome .welcome-text {
          flex-basis: 68%;
          padding: 6.6rem 0 2.4rem 0;
          height: max-content; } }
      .main .welcome .welcome-text > div {
        width: 75%;
        margin: 0 auto; }
      .main .welcome .welcome-text h3 {
        color: #3a3e42;
        font-weight: 500;
        font-size: 4rem;
        margin-bottom: 1.4rem; }
        @media only screen and (max-width: 900px) {
          .main .welcome .welcome-text h3 {
            font-size: 3.4rem; } }
      .main .welcome .welcome-text .nis-wel {
        font-weight: 400;
        color: #3a3e42;
        text-transform: capitalize;
        margin-bottom: 1.4rem; }
      .main .welcome .welcome-text .nis-des {
        font-weight: 400;
        color: #6e767f;
        margin-bottom: 1.4rem; }
      .main .welcome .welcome-text a {
        font-size: 1.4rem;
        font-weight: 400;
        text-transform: uppercase;
        color: #13017b; }
  .main .blocks-each {
    background-size: cover;
    background-position: center;
    height: 26.4rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 4px solid #13017b;
    transition: all 0.3s; }
    .main .blocks-each:hover {
      cursor: pointer;
      scale: 1.03; }
    .main .blocks-each-1 {
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/blockA.jpg); }
    .main .blocks-each-2 {
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/blockB.jpg); }
    .main .blocks-each-3 {
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/blockC.jpg); }
    .main .blocks-each-4 {
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/blockD.jpg); }
    .main .blocks-each-5 {
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/blockE.jpg); }
    .main .blocks-each-6 {
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/blockF.jpg); }
    .main .blocks-each .logo {
      height: 8rem;
      width: 8rem;
      margin-bottom: 1.2rem; }
    .main .blocks-each .block-title {
      color: #fff;
      font-size: 2.4rem;
      font-weight: 500; }
  .main .events {
    background-color: #fff; }
    .main .events .date-each {
      width: 90%; }
      .main .events .date-each p {
        color: #3a3e42; }
      .main .events .date-each .desc {
        font-size: 2.4rem;
        font-weight: 400;
        margin-bottom: 1rem; }
      .main .events .date-each .time {
        font-size: 1.8rem;
        font-weight: 400; }
    .main .events .main-date {
      border-bottom: 1px solid #6e767f;
      margin-bottom: 1.8rem; }
      .main .events .main-date h2 {
        font-size: 8rem;
        font-weight: 500;
        color: #13017b;
        margin-bottom: 1rem; }
        @media only screen and (max-width: 900px) {
          .main .events .main-date h2 {
            font-size: 6.4rem; } }
        .main .events .main-date h2 span {
          font-size: 3.2rem;
          font-weight: 700;
          margin-left: 0.8rem; }
          @media only screen and (max-width: 900px) {
            .main .events .main-date h2 span {
              font-size: 3rem;
              font-weight: 600; } }
      .main .events .main-date .blue-line {
        width: 9.6rem;
        height: 4px;
        background-color: #13017b; }
  .main .news {
    background-color: #fff; }
    .main .news-updates > div {
      width: 100% !important; }
    .main .news-each {
      height: 40rem;
      background-size: cover;
      background-position: center;
      border-radius: 0px 0px 56px 0px;
      padding: 4.2rem 2.4rem 2.4rem 2.4rem;
      color: #fff; }
      .main .news-each h3 {
        color: #fff;
        font-weight: 500;
        font-size: 2.4rem;
        margin-bottom: 1.2rem; }
      .main .news-each p {
        font-size: 1.6rem;
        font-weight: 400;
        margin-bottom: 1.2rem; }
      .main .news-each a {
        font-size: 1.4rem;
        font-weight: 400;
        color: #fff; }
  .main .gallery {
    padding: 4.2rem 0; }
    .main .gallery .heading-main {
      padding: 0 5.2rem; }
      @media only screen and (max-width: 1100px) {
        .main .gallery .heading-main {
          padding: 0 3.2rem; } }
      @media only screen and (max-width: 800px) {
        .main .gallery .heading-main {
          padding: 0 2.8rem; } }
      @media only screen and (max-width: 600px) {
        .main .gallery .heading-main {
          padding: 0 1.2rem; } }
    .main .gallery-collection {
      display: grid;
      grid-template-columns: repeat(auto-fit, 300px);
      gap: 2px; }
      .main .gallery-collection div {
        width: 100%; }
      .main .gallery-collection img {
        cursor: pointer;
        height: 28.8rem;
        width: 100%;
        object-fit: cover;
        grid-column: span 2; }
      .main .gallery-collection .item6,
      .main .gallery-collection .item11 {
        grid-column: span 1; }
  .main .testimonials-container .testimonials-each {
    background-color: #fff;
    border-radius: 0px 0px 56px 0px;
    padding: 4rem; }
    .main .testimonials-container .testimonials-each i {
      margin-bottom: 1.8rem;
      color: #13017b;
      font-size: 3.4rem; }
    .main .testimonials-container .testimonials-each .desc {
      font-weight: 400;
      color: #5B5B5B;
      margin-bottom: 2rem; }
    .main .testimonials-container .testimonials-each .author {
      display: flex;
      gap: 0.9rem;
      align-items: center; }
      .main .testimonials-container .testimonials-each .author h4 {
        font-family: 500;
        font-size: 1.8rem;
        margin-bottom: 6px; }
      .main .testimonials-container .testimonials-each .author p {
        font-size: 1.4rem;
        font-weight: 400; }
      .main .testimonials-container .testimonials-each .author img {
        height: 4.8rem;
        width: 4.8rem;
        border-radius: 50%;
        object-fit: cover; }

.about-nav {
  background-color: #f1f3f5; }
  .about-nav ul {
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 1.2rem 0.8rem; }
    @media only screen and (max-width: 800px) {
      .about-nav ul {
        flex-wrap: wrap !important;
        gap: 2rem; } }
    .about-nav ul li a {
      font-size: 1.8rem;
      font-weight: 500;
      color: #3a3e42; }
      .about-nav ul li a:hover {
        color: #13017b; }

.about-image {
  transition: .5s ease; }
  .about-image:hover {
    box-shadow: 10px 10px #970707;
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
    transition: .5s ease; }

.about-container {
  display: flex;
  flex-direction: row;
  gap: 5px; }
  .about-container-image {
    flex: 0 0 35%; }

@media screen and (max-width: 800px) {
  .about-container {
    flex-direction: column; }
    .about-container-image {
      flex: 1; } }

.principal-container {
  display: flex;
  justify-content: center; }

.principal-img {
  width: 100%;
  max-width: 800px;
  object-fit: cover; }

.nis-news-each {
  border-radius: 4px;
  overflow: hidden;
  background-color: #f8f9fa;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; }
  .nis-news-each .img-sec {
    height: 24rem;
    width: 100%;
    border-radius: 0px 0px 56px 0px;
    overflow: hidden; }
    .nis-news-each .img-sec img {
      height: 100%;
      width: 100%;
      object-fit: cover; }
  .nis-news-each .text-sec {
    padding: 1.6rem 0.8rem; }
    .nis-news-each .text-sec .title {
      font-size: 1.8rem;
      font-weight: 500;
      color: #3a3e42;
      margin-bottom: 0.4rem; }
    .nis-news-each .text-sec .desc,
    .nis-news-each .text-sec .date {
      font-size: 1.6rem;
      font-weight: 400;
      color: #6e767f;
      margin-bottom: 0.4rem; }
    .nis-news-each .text-sec .date {
      font-size: 1.4rem;
      margin-bottom: 0; }

.nis-gallery .albums-list-each {
  border-radius: 4px;
  overflow: hidden;
  background-color: #f8f9fa;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; }
  .nis-gallery .albums-list-each .img-sec {
    height: 26rem;
    width: 100%;
    border-radius: 0px 0px 56px 0px;
    overflow: hidden; }
    .nis-gallery .albums-list-each .img-sec img {
      height: 100%;
      width: 100%;
      object-fit: cover; }
  .nis-gallery .albums-list-each .text-sec {
    padding: 1.6rem 0.8rem; }
    .nis-gallery .albums-list-each .text-sec .title {
      font-size: 1.8rem;
      font-weight: 500;
      color: #3a3e42;
      margin-bottom: 0.4rem; }
    .nis-gallery .albums-list-each .text-sec .desc,
    .nis-gallery .albums-list-each .text-sec .date {
      font-size: 1.6rem;
      font-weight: 400;
      color: #6e767f;
      margin-bottom: 0.4rem; }
    .nis-gallery .albums-list-each .text-sec .date {
      font-size: 1.4rem;
      margin-bottom: 0; }

#uc-gallery-photos img {
  cursor: pointer !important; }

.album-photos img {
  height: 26rem;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; }

.contact_heading {
  margin: 0 auto; }

.contact_container .contact_details {
  border-radius: 4px;
  padding: 1.4rem;
  background-color: #13017b;
  color: #fff; }
  .contact_container .contact_details a, .contact_container .contact_details p, .contact_container .contact_details h3 {
    margin-bottom: 0.8rem; }
  .contact_container .contact_details a {
    color: #fff;
    display: block; }
  .contact_container .contact_details .block {
    color: #13017b;
    background-color: #fff;
    border-radius: 4px;
    padding: 0.8rem; }
  .contact_container .contact_details .follow a {
    display: inline-block;
    margin: 0.2rem 0.6rem; }

.contact_container .contact_form .feedback {
  color: #13017b;
  text-align: center;
  margin-bottom: 1.6rem; }

.contact_container .contact_form input, .contact_container .contact_form textarea {
  margin-bottom: 1.6rem;
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #ced4da;
  border-radius: 3px; }
  .contact_container .contact_form input:focus, .contact_container .contact_form textarea:focus {
    outline: none;
    border: 2px solid #13017b; }

.contact_container .contact_form input[type=text]:focus {
  border: 2px solid #13017b;
  outline: none; }

.contact_container .contact_form button {
  border: none;
  background-color: #13017b;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  transition: all 0.3s; }
  .contact_container .contact_form button:hover {
    background-color: #2b1a88; }

.career_banners {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.36) 29.24%), url(../images/welcome.png);
  color: #fff;
  background-size: cover;
  height: 80vh;
  background-position: center; }

.calendar-banners {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.36) 29.24%), url(../images/calendar.jpg);
  background-size: cover;
  height: 80vh;
  background-position: center;
  margin-bottom: 0; }

.calendar-details .sub-container {
  border-bottom: none !important; }

.calendar-details .events .date-eachh {
  background-color: red; }
  .calendar-details .events .date-eachh p {
    color: #777777 !important; }
  .calendar-details .events .date-eachh .main-date {
    border-bottom: 1px solid #777777;
    margin-bottom: 2rem; }
    .calendar-details .events .date-eachh .main-date .desc {
      font-size: 2rem; }
    .calendar-details .events .date-eachh .main-date .time {
      font-size: 1.8rem; }
    .calendar-details .events .date-eachh .main-date .nepali-date {
      color: #150278; }
    .calendar-details .events .date-eachh .main-date h2 {
      font-family: "open sans";
      font-size: 8rem;
      font-weight: 600;
      color: #150278;
      margin-bottom: 1rem; }
      .calendar-details .events .date-eachh .main-date h2 span {
        font-size: 2.8rem;
        margin-left: 0.8rem; }
    .calendar-details .events .date-eachh .main-date .blue-line {
      width: 9.6rem;
      height: 4px;
      background-color: #083F88; }

.author {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  margin-top: 10px; }
  .author img {
    height: 4.8rem;
    width: 4.8rem;
    border-radius: 50%;
    object-fit: cover; }
  .author-details p {
    font-size: 20px; }

.block_contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 50px;
  background-color: #eee;
  padding-bottom: 30px;
  margin-top: 50px; }

@media screen and (max-width: 770px) {
  .block_contact-container {
    flex-direction: column; } }

.block_contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -30px; }
  .block_contents i {
    font-size: 30px;
    color: #fff; }

.block_circle {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: blue;
  display: flex;
  justify-content: center;
  align-items: center; }

.sessions {
  margin-top: 2rem;
  border-radius: 12px;
  position: relative; }

.items__li {
  padding-bottom: 1.5rem;
  border-left: 1px solid #abaaed;
  position: relative;
  padding-left: 20px;
  background: white;
  margin-left: 10px; }
  .items__li:last-child {
    border: 0px;
    padding-bottom: 0; }
  .items__li:before {
    content: '';
    width: 15px;
    height: 15px;
    background: white;
    border: 1px solid #4e5ed3;
    box-shadow: 3px 3px 0px #bab5f8;
    box-shadow: 3px 3px 0px #bab5f8;
    border-radius: 50%;
    position: absolute;
    left: -10px;
    top: 0px; }
  .items__li__contents {
    position: relative;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 10px 15px -3px RGB(0 0 0/0.1), 0 4px 6px -4px RGB(0 0 0/0.1);
    border: 0.5px solid #4e5ed3; }

.time {
  color: #eeb05e;
  font-family: 'Poppins', sans-serif;
  font-weight: 600; }
  @media screen and (min-width: 601px) {
    .time {
      font-size: 1.5rem; } }
  @media screen and (max-width: 600px) {
    .time {
      margin-bottom: 0.3rem;
      font-size: 0.95rem; } }

p {
  /* color: #4f4f4f; */
  font-family: sans-serif;
  line-height: 1.5;
  margin-top: 0.4rem; }
  @media screen and (max-width: 600px) {
    p {
      font-size: 0.9rem; } }
