
@-webkit-keyframes mover {
	0% {
		background-position: 0-118px
	}

	to {
		background-position: 0-88px
	}
}

@keyframes mover {
	0% {
		background-position: 0-118px
	}

	to {
		background-position: 20px -88px
	}
}

@-moz-keyframes ripple {
	to {
		opacity: 0;
		transform: scale(2.5)
	}
}

@-webkit-keyframes ripple {
	to {
		opacity: 0;
		transform: scale(2.5)
	}
}

@keyframes ripple {
	to {
		opacity: 0;
		transform: scale(2.5)
	}
}

body{
  margin:0;
  font-family: 'Segoe UI';
}

#navmenu {
  position: sticky;
  top: 0;
  z-index: 999;
  background: transparent;
  padding: 1px 0;
  transition: all 0.3s ease;
}

#navmenu.scrolled {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 10px 0;
}





/* 🔴 TOP BAR */
.top-bar{
 background: #d60000;
    padding: 1px 0;
    font-size: 14px;
    border-bottom: 1px solid #ae8686;
    box-shadow: 0 3px 13px rgb(0 0 0 / 30%);
    background: #001d50;
    height: 30px;
}
.top-bar a{
      color: white;
    margin-right: -1px;
    text-decoration: none;
    border-right: 1px solid #fff8f959;
    padding: 6px 7px;
    /* color: #000000; */
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    line-height: 15px;
}

/* 🔷 HEADER */
#header{
  position:absolute;
  width:100%;
  top:30px;
  z-index:999;
  transition:0.4s;
}

/* GLASS EFFECT */
#header .container-fluid{
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
 
}

/* MENU */
.menu{
  list-style:none;
  display:flex;
  gap:25px;
  color:white;
  margin:0;
}
.menu li{
  cursor:pointer;
}

/* 🔷 STICKY */
.sticky{
  position:fixed !important;
  top:0 !important;
  background:#000;
}

/* 🔷 SLIDER */
.slider img{
  height:90vh;
  object-fit:cover;
}

/* 🔵 PREVIEW BUTTON */
.custom-btn{
  width:80px;
  height:80px;
}

.preview{
  width:70px;
  height:70px;
  border-radius:50%;
  display:block;
  background-size:cover;
  border:3px solid white;
}

/* dynamic preview images */
.prev{
  background-image:url('../img/slider/slider-1.jpg');
}
.next{
  background-image:url('../img/slider/slider-4.png');
}
.slider-content{
 position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 100%;
}
.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 250px;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
}
.slider-content h1{
  font-size:35px;
  font-weight:700;
}

.slider-content p{
  font-size:20px;
  margin:15px 0;
}

/* dark overlay for readability */
.carousel-item::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.4);
  top:0;
  left:0;
}

.event .carousel-item::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background:none!important;
  top:0;
  left:0;
}

.leader-box {
  max-width: 100px;
}

.leader-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 4px 7px rgb(0 0 0 / 86%);
}

.leader-name {
  font-size: 9px;
    font-weight: 600;
    margin-top: 5px;
    color: #fff;
    text-shadow: 0 0 5px #ffffff59, 0 0 10px #ffffff75, 0 0 15px #000000;
    -webkit-transition: all .2s ease;
}

.leader-title {
  font-size: 9px;
    color: #181817;
    text-shadow: 0 0 5px #ffc107, 0 0 10px #ffc107, 0 0 15px #000000fc;
    font-weight: bold;
}


/* MENU ROW */
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
            color: #ffffff;
        padding: 9px 14px;
        font-size: 14px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        font-family: inherit;
        font-weight: 500;
        outline: none;
        font-size: 13px;
        color: #fff;
		text-decoration: none;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #dd980b;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	background-color: white;
	background: rgb(36 33 33 / 73%);
        backdrop-filter: blur(10px);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
           padding: 4px 15px;
        font-size: 15px;
        text-transform: none;
        color: #ffffff;
        border-bottom: 1px solid #cccccc8a;
        font-family: math;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #ffa116;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
.mega-dropdown .mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 98%;
  display: none!important;
  background: #fff;
  padding: 20px;
  list-style: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-radius: 10px;

}

.mega-dropdown:hover .mega-menu {
  display: flex!important;
}

.mega-column h6 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.mega-column a {
  display: block;
  color: #333;
  padding: 5px 0;
  text-decoration: none;
}

.mega-column a:hover {
  color: #0d6efd;
  padding-left: 5px;
  transition: 0.3s;
}
/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #ffffff;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	text-decoration: none;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}



/* LOCATION */
.location-box{
  text-align:right;
  font-size:14px;
}
.gov-title-hindi {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 5px #ffffff59, 0 0 10px #ffffff75, 0 0 15px #000000;
    -webkit-transition: all .2s ease;
}

.gov-title-eng {
   font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 5px #ffffff59, 0 0 10px #ffffff75, 0 0 15px #000000;
    -webkit-transition: all .2s ease;
    font-family: math;
}

.gov-subtitle {
   font-size: 13px;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 0 5px #ffffff59, 0 0 10px #ffffff75, 0 0 15px #000000;
    font-family: math;
}

.gov-ministry {
    font-size: 10px;
    color: #ffffff;
    text-shadow: 0 0 5px #ffffff59, 0 0 10px #ffffff75, 0 0 15px #000000;
    font-family: math;
}

.right-logo {
    max-height: 70px;
}

@media (max-width: 768px) {
    .gov-title-hindi {font-size: 11px;}
    .gov-title-eng {font-size: 10px;}
}
.right-img{
width: 100%;
    margin-right: -19px;
    margin-top: 3px;}
	.icon-btn {
 border: none;
 background: #fff;
 color: #555;
 border-radius: 50%;
 width: 25px;
 height: 24px;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: all 0.3s ease;
 box-shadow: 0 2px 6px rgb(0 0 0 / 36%);
}

.icon-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

/* Specific Colors */
.twitter-btn {
  color: #55acee;
}
.twitter-btn:hover {
  background: #55acee;
}

.facebook-btn {
  color: #1877f2;
}
.facebook-btn:hover {
  background: #1877f2;
}

.youtube-btn {
  color: #ff0000;
}
.youtube-btn:hover {
  background: #ff0000;
}

.cloud-icon {
  font-size: 1.6rem;
  color: #f5b400; /* golden yellow */
}


.twitter{
  color: white;
    background: #55acee;
}
.facebook{
  color: white;
    background: #4e71a8;
}
.instagram{
  color: white;
    background: radial-gradient(circle at 33% 100%, #fed373 4%, #f15245 30%, #d92e7f 62%, #9b36b7 85%, #515ecf)
}
.youtube{
  color: white;
    background: #cc0000;
}
.linkedin {
    color: white;
    background: #0076b4
	}
.border-menu{
  border-bottom: 1px solid #dddddd63;
}


/* CARD */
.service-card {
   border-radius: 18px;
    padding: 23px 15px;
    border: 2px dashed #001d50;
    position: relative;
    background: #fff;
    transition: 0.3s;
    height: 100%;
	box-shadow: 0 4px 7px rgb(0 0 0 / 50%);
}

.service-card:hover {
    background: #f79633;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

/* ICON */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #001d50;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: absolute;
    top: -25px;
    left: 20px;
    font-size: 24px;
}

.service-card:hover .icon-box {
    background: #fff;
    color: #f79633;
}

/* NUMBER */
.number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: rgba(0,0,0,0.1);
}

.service-card:hover .number {
    color: rgba(255,255,255,0.3);
}

/* TEXT */
.service-card h5 {
   margin-top: 13px;
    font-weight: 700;
}

.service-card p {
    font-size: 14px;
    color: #666;
}

.service-card:hover p {
    color: #ddd;
}

/* BUTTON */
.read-btn {
        display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 14px;
    border-radius: 50px;
    background: #f79633;
    color: #fff;
    text-decoration: none;
    margin-top: 0px;
    font-size: 14px;
}

.read-btn i {
        background: #fff;
    color: #0d6efd;
    border-radius: 50%;
    padding: 4px;
    font-size: 12px;
}

.service-card:hover .read-btn {
    background: #001d50;
}

.service-card:hover {
    transform: translateY(-6px);
}

/* CARD STYLE */
.menu-card{
    background:#fff;
    border-radius:14px;
    padding:25px 15px;
    text-align:center;
    transition:0.3s;
    box-shadow:0 5px 15px rgba(0,0,0,0.06);
    cursor:pointer;
    height:100%;
}

.menu-card i{
    font-size:32px;
    color:#0d6efd;
    margin-bottom:10px;
}

.menu-card h6{
    font-weight:600;
    margin:0;
    font-size:14px;
}

/* HOVER EFFECT */
.menu-card:hover{
    transform:translateY(-6px);
    background:#0d6efd;
    color:#fff;
}

.menu-card:hover i{
    color:#fff;
}
/* MAIN BOX */
.news-wrapper{
    background:#fff;
    border-radius:10px;
    box-shadow:0 4px 12px rgb(0 0 0 / 33%);
    overflow:hidden;
}

/* HEADER */
.news-header{
    background:#002147; /* Govt dark blue */
    color:#fff;
    padding:12px 18px;
    font-weight:600;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.news-header a{
    color:#fff;
    font-size:13px;
    text-decoration:none;
}

/* NEWS LIST */
.news-list{
    padding:10px 0;
}

.news-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:12px 18px;
    border-bottom:1px solid #eee;
    transition:0.3s;
    position:relative;
}

.news-item:last-child{
    border-bottom:none;
}

.news-item:hover{
    background:#f5f9ff;
}

/* ICON */
.news-icon{
   transition: 0.4s;
    margin-right: 10px;
    font-family: "Font Awesome 5 Free";
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    position: absolute;
    border-radius: 50% 50%;
    padding: 5px 8px;
    color: #fff;
    background: linear-gradient(rgba(97, 166, 248, 1), rgba(93, 206, 249, 1));
	font-weight:bold;
}

/* ICON ANIMATION */
.news-item:hover .news-icon{
    color:#002147;
}

/* TEXT */
.news-text a{
    text-decoration:none;
    color:#333;
    font-size:14px;
    font-weight:500;
}

.news-text a:hover{
    color:#0d6efd;
}

/* DATE */
.news-date{
    font-size:12px;
    color:#777;
}

/* BADGE */
.badge-new{
    background:#dc3545;
    font-size:10px;
    padding:3px 6px;
    margin-left:6px;
}

/* PDF STYLE */
.pdf{
    color:#ffffff;
}

/* ANNOUNCEMENT */
.announce{
    color:#198754;
}

.news-text{
margin-left: 50px;}

.studymaterial .study-title {font-size: 13px;
    min-height: 16px;
    display: grid;
    align-items: center;
    text-align: center;
    font-weight: 700;
    padding: 4px;
    margin: 0;}
.studymaterial article {box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); height: 100%; border-radius: 10px; overflow: hidden; position: relative; z-index: 900; background: #fff;}
.studymaterial .abourstudy {width: 96%;
    height: 100%;
    position: relative;
    padding: 4px;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    box-shadow: 0px 4px 2px rgb(0 0 0 / 45%);
}
.studymaterial .abourstudy:hover {-webkit-transform: translateY(-2px); transform: translateY(-2px); -webkit-box-shadow: 0 20px 20px 0 rgba(2, 19, 79, .09); box-shadow: 0 20px 20px 0 rgba(2, 19, 79, .09); background: #fff !important; transition: all .3s ease;}
.studymaterial .abourstudy::before {content: ""; width: 100%; height: 50%; background: #0d2237; position: absolute; top: 0px; left: 0px; z-index: 1; border-radius: 10px 10px 10px 10px;}
.studymaterial .abourstudy::after {content: ""; width: 100%; height: 64%; background: #a3ddff; position: absolute; bottom: 0px; left: 0px; z-index: 1; border-radius: 10px 10px 10px 10px;}
.studymaterial .abourstudy .study-img {text-align: center; max-height: 100px; overflow: hidden;}
.studymaterial .abourstudy .col {min-height: 20px; text-align: center;}
.studymaterial .abourstudy {color: #000;}
.study-btn{
	    width: 79px;
    font-size: 12px;
    font-family: math;
    padding: 1px;
margin-bottom: 13px;}

.bi-icon{
font-size: 25px;
    color: #002147;
    font-weight: bold;
}
.color-red{
         color: red;
}
.color-green{
         color: green;
}
.color-blueviolet{
         color: blueviolet;
}
.color-brown{
         color: brown;
}
.color-darkgreen{
         color: darkgreen;
}
.color-blue{
         color: blue;
}
.color-orchid{
         color: orchid;
}
.color-cadetblue{
         color: cadetblue;
}
.study-title a{
text-decoration: none;
    color: #001d50;
    font-weight: bold;
    font-family: math;
    margin-top: -7px;}
	
	.text-custom{
color:#f79633 !important;
}
.icon{
    font-size:20px;
    min-width:22px; /* SAME start line for all text */
}

.item-box{
    transition:0.3s;
    cursor:pointer;
}

.item-box:hover{
    background:#f5f9ff;
    transform:translateY(-3px);
}

/*--------------- achievement area css ---------------------*/
section.achivement {
  margin: -13px 0 40px;
}

.achivement h3 {
  font-size: 17px;
  text-align: center;
  font-weight: bold;
  background: #001b50;
  color: #fff;
  padding: 4px 0;
  margin: 0 auto 14px;
  font-family: "Libre Baskerville", serif;
  width: 95%;
}

.achivement .txt {
  padding: 20px;
  text-align: left;
  box-shadow: 0px 2px 21px -8px rgb(139 139 139 / 50%);
  margin: 0 0 19px;
}

.achivement .txt p {
  color: #303030;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  text-align: justify;
  font-family: "Open Sans", sans-serif;
  margin: 0 0 8px;
}

.achivement .txt a {
  color: #303030;
  font-size: 17px;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  text-align: left;
}

.achivement button.carousel-control-prev {
  background: rgb(51 63 80 / 80%);
  width: 40px;
  height: 43px;
  top: 40%;
  opacity: 1;
  left: 13px;
}

.achivement button.carousel-control-next {
  background: rgb(51 63 80 / 80%);
  width: 40px;
  height: 43px;
  top: 40%;
  opacity: 1;
  right: 13px;
}

.achivement .carousel-item {
  padding: 0 13px;
}
.carousel-item img {
    width: 100%;
}
.achievement-section{
    background:#f4f7fb;
}

/* CARD */
.achievement-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,0.06);
}

/* HEADER */
.card-header{
    background:#002147;
    color:#fff;
    padding:10px 15px;
    font-weight:600;
    font-size:15px;
}

/* IMAGE BOX */
.img-box{
    position:relative;
}

.img-box img{
    width:100%;
    height:240px;
    object-fit:cover;
}

/* OVERLAY TEXT */
.overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:10px;
    background:rgba(0, 33, 71, 0.85);
    color:#fff;
    font-size:13px;
    line-height:1.4;
}

/* CONTROLS */
.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-color:rgba(0,0,0,0.5);
    border-radius:50%;
    padding:10px;
}


/* Background Section */
.quick-links{
    background: url('img/slider/slider-1.jpg') center/cover no-repeat;
    position: relative;
    padding: 14px 0;
}

.quick-links::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.75);
}

.quick-links .container-fluid{
    position: relative;
    z-index: 1;
}

/* Card Style */
.link-box{
    text-align:center;
    padding: 2px 20px;
    color:#fff;
}

.icon-circle{
  box-shadow: 0 6px 18px rgb(199 192 192 / 47%);
  width: 90px;
  height: 90px;
  background:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 15px;
  border: 3px solid #a2272a;
}

.icon-circle img{
    width: 90px;
}

/* Title */
.link-box h5{
    color:#ffc107;
    font-weight:600;
    margin-bottom: 1px;
    font-size: 17px;
}

/* Text */
.link-box p{
    font-size: 12px;
}
/* Button */
.btn-read{
    background:#ffffff;
    color:#000;
    padding: 2px 16px;
    border-radius:0;
    font-size: 13px;
    margin-top: -14px;
}

.btn-read:hover{
    background:#ffb300;
    color:#000;
}

.rotate-hover img{
    transition: transform 0.4s ease;
    box-shadow: 0 6px 18px rgb(143 131 131 / 4%);
}

.rotate-hover img:hover{
    transform: rotate(135deg);
}

.icon-circle img{
    transition: transform 0.5s ease;
}

.icon-circle:hover img{
    transform: rotate(43deg);
}

/*--------------- footer area css ---------------------*/
.footer-section{
    background:#002147;
    color:#fff;
}

.footer-title{
    font-size:19px;
    font-weight:600;
    margin-bottom:15px;
    display:inline-block;
    padding-bottom:5px;
}

.footer-subtitle{
    font-size:14px;
    font-weight:600;
}

.footer-text{
    font-size:14px;
    line-height:1.7;
    color:#dcdcdc;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:6px;
}

.footer-links a{
    color:#dcdcdc;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#0d6efd;
    padding-left:5px;
}

/* BOTTOM */
.footer-bottom{
    background:#00152e;
    padding:12px 0;
    font-size:13px;
    color:#ccc;
}

.footer-policy a{
    color:#ccc;
    text-decoration:none;
    margin:0 5px;
}

.footer-policy a:hover{
    color:#0d6efd;
}
.prev-next{
position: absolute;
    top: 0px;
    bottom: 0
}
.event {
  padding: 0 0 0px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 33%);
    overflow: hidden;
}

.event h2 {
  font-family: "Libre Baskerville", serif;
    font-size: 18px;
    position: relative;
    margin: 0;
    background: #002147;
    color: #fff;
    padding: 12px 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event h2::before {
  position: absolute;
  content: "";
  background: url(../img/calender.png);
  width: 28px;
  height: 28px;
  top: 8px;
  left: -181px;
  right: 0;
  margin: 0 auto;
}

.calender {
  background: #fff;
  border: 2px solid #848484;
  text-align: center;
  box-shadow: 0 2px 5px rgba(61, 61, 61, 0.4);
  border-radius: 6px;
  width: 191px;
  margin: 40px auto;
}

.calender h6 {
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  background: #f7941d;
  padding: 17px 0;
  width: 100%;
}

.event .calender p {
  font-size: 70px;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
  color: #000;
  padding: 20px 0;
  text-align: center;
}

.event .calender p sup {
  font-size: 23px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  top: -38px;
}

.event p {
  font-weight: bold;
  font-size: 23px;
  font-family: "Open Sans", sans-serif;
  color: #000;
  text-align: center;
}

.event span {
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  font-family: "Open Sans", sans-serif;
}