*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --light-blue: #f4f9ff;
  --light-blue-little-dark: #37b3ef;
  --dark-blue: #06213f;
  --light-dark-txt: #4b4b4b;
  --white: #fff;
}

body {
  font-family: "Montserrat", sans-serif;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
}

.social_media a {
  --hw: 2.5rem;
  height: var(--hw);
  width: var(--hw);
  border: 2px solid;
  border-radius: 50rem;
  display: grid;
  place-content: center;
  margin-left: 0;
  margin: 5px;
}

.index_banner {
  /* height: 26rem; */
}

a {
  text-decoration: none;
}

.map iframe {
  width: 100%;
  height: 10rem;
}

.text-theme-blue {
  color: var(--dark-blue);
}

footer,
.news_slider,
header {
  /* background-color: #06213F; */
  background-color: var(--light-blue-little-dark);
}

.copyright {
  background-color: var(--dark-blue);
}

.text-light-dark {
  color: var(--light-dark-txt);
}

footer {
  border-top: 1px solid #d9d9d9;
}

.index_banner {
  /* --clr: #ffffffb5;
    background: linear-gradient(var(--clr), var(--clr)), url(./84dfdf6458.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: bottom; */
}

.sticky {
  animation: smoothScroll 0.6s forwards;
  padding: 0.5rem 0 !important;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  /*   background-color: #ADD8E6;*/
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-50rem);
  }
  100% {
    transform: translateY(0px);
  }
}

.sec_header {
  color: var(--dark-blue);
}

section {
  padding: 3rem 0rem;
}

/* news slider */

.news-slider {
  width: 300px;
  /* Set your desired width */
  height: 200px;
  /* Set your desired height */
  overflow: hidden;
  position: relative;
}

.news-slider ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  animation: scroll 50s linear infinite;
}

.news-slider li {
  margin-bottom: 10px;
  /* Adjust spacing between news items */
}

/* Pause the animation on hover */

.news-slider:hover ul {
  animation-play-state: paused;
}

.inline {
  max-width: 400px;
  margin: auto;
}
.input-icons i {
  position: absolute;
}

.input-icons {
  width: 100%;
  margin-bottom: 10px;
}

.icon {
  padding: 10px;
  min-width: 40px;
}

.input-field {
  width: 100%;
  padding: 10px;
  text-align: center;
  margin-bottom: 3px;
}
.uid h4 {
    float: right!important;
    color: red!important;
    font-weight: 600!important;
}
/* Define the scrolling animation */

@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* news slider */

/* login form css */

.login_form input {
  border: 0;
  border-bottom: 1px solid red;
}

.bg_change_animation {
  animation: changeBackgroundImage 16s infinite;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  min-height: 80vh;
  display: grid;
  place-content: center;
}

@keyframes changeBackgroundImage {
  0% {
    background-image: url(../img/login-slider-1.webp);
  }
  25% {
    background-image: url(../img/login-slider-2.webp);
  }
  50% {
    background-image: url(../img/login-slider-1.webp);
  }
  75% {
    background-image: url(../img/login-slider-2.webp);
  }
  100% {
    background-image: url(../img/login-slider-1.webp);
  }
}

.single_form_box {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 2rem;
}

.btn_cust_blue {
  background-color: var(--dark-blue);
  color: var(--white);
}

.btn_cust_blue:hover {
  background-color: var(--light-blue-little-dark);
  color: var(--white);
}

/* login form css */
.login-page .input-group .btn {
  cursor: inherit;
}
[data-feather="trash"]{
  color: red !important;
}
.error_red {
color:red;
font-weight:600;
}	
.suc_green {
color:green;
font-weight:600;
}	
.export-form form {
    width: 100%;
    display: -webkit-inline-box;
}
.export-form {
    background: #37b3ef;
    padding: 20px 0px;
    color: #ffff;
    font-weight: 700;
}