* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
}

.title {
  font-size: 4rem;
  -webkit-text-stroke: 3px #064e22;
  text-shadow: 0 0 5em #007a4d, 0 0 5em #007a4d;
  color: transparent;
  word-wrap: break-word;
}

.positon-sticky {
  position: sticky;
  top: 100px;
}

.top-header {
  background-color: #2c2734;
}
.top-header p {
  color: #fff;
  font-weight: 300;
}
.top-header h5 a i,
.top-header h5 a span {
  color: #fff;
}

.button {
  padding: 5px;
  background-color: #007a4d;
  color: #fff;
  border: 3px dotted #064e22;
  border-radius: 2rem;
  transition: all ease 0.4s;
}
.button:hover {
  background-color: #064e22;
  letter-spacing: 3px;
}

.navbar1 {
  background: rgb(0, 122, 77);
  background: linear-gradient(180deg, rgb(0, 122, 77) 0%, rgb(6, 78, 34) 100%);
}
.navbar1 .navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 0 !important;
}
.navbar1 .logo a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
}
.navbar1 .nav-links {
  display: flex;
  list-style: none;
  margin: 0 !important;
}
.navbar1 .nav-links li a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
}
.navbar1 .nav-links li a i {
  font-size: 0.7rem;
}
.navbar1 .nav-links li {
  margin-left: 0.5rem;
  padding: 0.5rem !important;
  transition: all ease 0.4s;
}
.navbar1 .nav-links li:hover {
  background: #fff;
}
.navbar1 .nav-links li:hover a {
  color: #007a4d;
  border-bottom: #007a4d 2px solid;
}
.navbar1 .nav-links .hero-img {
  margin-left: 20px;
  padding: 0.5rem !important;
  transition: all ease 0.4s;
  background: #fff;
}
.navbar1 .nav-links .hero-img:hover {
  background: #fff;
}
.navbar1 .nav-links .hero-img:hover a {
  color: #007a4d;
  border-bottom: none !important;
}
.navbar1 .dropdown .a {
  pointer-events: none;
}
.navbar1 .dropdown:hover .dropdown-content {
  display: block;
}
.navbar1 .dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 300px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: all ease 0.4s;
  top: 100%;
  left: 0;
}
.navbar1 .dropdown-content .dropdown:hover .a {
  pointer-events: auto;
}
.navbar1 .dropbox {
  top: 100%;
  left: -100%;
}
.navbar1 .dropdown-content a {
  color: #007a4d;
  padding: 6px 8px;
  text-decoration: none;
  display: block;
  text-align: start;
  font-weight: 400 !important;
  font-size: 1.1rem !important;
  border-bottom: none !important;
}
.navbar1 .dropdown-content a:hover {
  background: #064e22;
  color: #fff !important;
}
.navbar1 .dropdown:hover .dropdown-content {
  display: block;
}
.navbar1 .burger {
  display: none;
  cursor: pointer;
}
.navbar1 .burger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
}
@media screen and (max-width: 992px) {
  .navbar1 .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgb(0, 122, 77);
    background: linear-gradient(180deg, rgb(0, 122, 77) 0%, rgb(6, 78, 34) 100%);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  }
  .navbar1 .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }
  .navbar1 .nav-links li {
    width: 100%;
    text-align: center;
    margin: 15px 0;
  }
  .navbar1 .nav-links li a {
    color: #fff;
  }
  .navbar1 .burger {
    display: block;
    position: absolute;
    top: 4px;
    right: 20px;
  }
  .navbar1 .burger .line {
    background: #fff;
  }
  .navbar1 .dropbox {
    top: 100%;
    left: 0%;
  }
  .navbar1 .dropdown-content {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: all ease 0.4s;
    top: 200%;
    left: 0;
  }
}

.carousel-section .carousel-item img {
  height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.carousel-section .carousel-item .carousel-caption {
  background-color: rgba(6, 78, 34, 0.5882352941);
}
.carousel-section .carousel-item .carousel-caption h5,
.carousel-section .carousel-item .carousel-caption p {
  color: #fff;
}

@media screen and (max-width: 665px) {
  .carousel-section .carousel-item img {
    -o-object-position: bottom;
       object-position: bottom;
    height: 55vh;
  }
}
.about-section .about .image-box img {
  height: 25rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4rem;
  box-shadow: rgba(0, 122, 77, 0.4) 5px 5px, rgba(0, 122, 77, 0.3) 10px 10px, rgba(0, 122, 77, 0.2) 15px 15px, rgba(0, 122, 77, 0.1) 20px 20px, rgba(0, 122, 77, 0.05) 25px 25px;
}
.about-section .about .content h1 {
  color: #064e22;
  border: 2px dashed #007a4d;
  border-radius: 10%;
  transition: all 0.5s ease-in-out;
}
.about-section .about .content h1 .content-icon-1 {
  transform: rotate(180deg);
}
.about-section .about .content h1:hover {
  border-radius: 0%;
  letter-spacing: 0.5rem;
}
.about-section .about .content p {
  font-size: 1.3rem;
  color: #007a4d;
  padding: 0.5rem;
  text-align: justify;
}

@keyframes rotateIcon {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
.highlight-section {
  background: #007a4d;
}
.highlight-section .highlight .title {
  font-size: 4rem;
  -webkit-text-stroke: 3px #fff;
  color: transparent;
}
.highlight-section .highlight .content {
  border: 1px dashed #fff;
  padding: 5px;
  border-radius: 5%;
  transition: all 0.5s ease-in-out;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  height: 100%;
}
.highlight-section .highlight .content .icon-box i {
  font-size: 4rem;
  color: #fff;
  border-radius: 20%;
  transition: transform 0.5s ease-in-out;
}
.highlight-section .highlight .content .content-box p {
  text-align: center;
  color: #fff;
}
.highlight-section .highlight .content .content-box h2 {
  transition: all 0.5s ease-in-out;
}
.highlight-section .highlight .content:hover {
  border: none;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.highlight-section .highlight .content:hover i {
  animation: rotateIcon 1s linear 1;
}
.highlight-section .highlight .content:hover h2 {
  letter-spacing: 1.01rem;
}

.target-section {
  background: url(/assets/img/bg1.png) no-repeat 50% #fff;
}
.target-section .image-box img {
  height: 28rem;
  max-width: 400px;
  border-radius: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.target-section .content h1 {
  color: #064e22;
  border: 2px dashed #007a4d;
  border-radius: 10%;
  transition: all 0.5s ease-in-out;
}
.target-section .content h1 .content-icon-1 {
  transform: rotate(180deg);
}
.target-section .content h1:hover {
  border-radius: 0%;
  letter-spacing: 0.5rem;
}
.target-section .content p {
  font-size: 1.3rem;
  color: #007a4d;
  padding: 0.5rem;
  text-align: justify;
}

.major-feild-section .major-feild .title {
  font-size: 3rem;
}
.major-feild-section .major-feild .title-content {
  font-size: 1.2rem;
  color: #064e22;
}
.major-feild-section .major-feild .box {
  border: 1px dashed #064e22;
  padding: 5px;
  border-radius: 5%;
  transition: all 0.5s ease-in-out;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  height: 100%;
  transition: all ease 0.4s;
}
.major-feild-section .major-feild .box .icon-box i {
  color: #007a4d;
  text-shadow: 0 0 5px rgb(146, 146, 146);
  transform: all ease 0.4s;
}
.major-feild-section .major-feild .box .content .tag {
  font-size: 1.2rem;
  color: #007a4d;
  transition: all ease 0.4s;
  font-weight: 600;
}
.major-feild-section .major-feild .box:hover {
  border: none;
  background: url(../img/program-line-bg.png) no-repeat 50% rgba(29, 137, 2, 0.9215686275);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.major-feild-section .major-feild .box:hover i {
  color: #fff;
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
}
.major-feild-section .major-feild .box:hover .tag {
  color: #fff;
}

.gallery-section {
  padding: 0 3%;
  position: relative;
  height: 100%;
  background: #000;
  color: #000;
  background: #007a4d;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}
.gallery-section .title {
  font-size: 4rem;
  -webkit-text-stroke: 3px #fff;
  color: transparent;
}
.gallery-section .text {
  font-style: italic;
  text-align: center;
  padding: 0 10%;
}
.gallery-section .swiper {
  width: 100%;
  height: 100%;
}
.gallery-section .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #FFF4A3 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-section .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px dotted #fff;
}
.gallery-section .swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}
.gallery-section .swiper-slide {
  background-size: cover;
  background-position: center;
}
.gallery-section .mySwiper2 {
  height: 80%;
  width: 100%;
}
.gallery-section .mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}
.gallery-section .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}
.gallery-section .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}
.gallery-section .swiper-slide img {
  display: block;
  width: 100%;
  height: 28rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-section .swiper-wrap1 img {
  display: block;
  width: 100%;
  height: 10rem !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer-section {
  background: url(../img/footer.gif);
}
.footer-section .footer .content-section {
  padding: 5px;
}
.footer-section .footer .content-section .logo-section .logo {
  width: 4rem;
  display: block;
  margin: auto;
}
.footer-section .footer .content-section .content .name {
  color: #fff;
}
.footer-section .footer .content-section .content .address {
  color: #FFF4A3;
}
.footer-section .footer .content-section .content .footer-contact {
  color: #FFF4A3;
  transition: all ease 0.4s;
}
.footer-section .footer .content-section .content .footer-contact:hover {
  color: #007a4d;
}
.footer-section .footer .content-section .link-title {
  color: #fff;
  border-bottom: 2px dashed #007a4d;
  width: 130px;
}
.footer-section .footer .content-section .link-title1 {
  color: #fff;
  border-bottom: 2px dashed #007a4d;
  width: 100px;
}
.footer-section .footer .content-section .links .link {
  color: #FFF4A3;
}
.footer-section .footer .content-section .links .link .link-name {
  transition: all ease 0.4s;
  margin-top: 1rem;
}
.footer-section .footer .content-section .links .link .link-name:hover {
  letter-spacing: 5px;
  color: #007a4d;
  font-weight: 500;
}
.footer-section .footer .content-section .links .link .link-name:hover i {
  margin-right: 3px;
  color: #FFF4A3;
  animation: rotateIcon 0.4s linear 1;
}
.footer-section .copyright-section {
  background-color: #007a4d;
}
.footer-section .copyright-section ul {
  list-style: none;
}
.footer-section .copyright-section ul li a {
  color: #fff;
}
.footer-section .copyright-section ul li a i {
  font-size: 1.3rem;
}
.footer-section .copyright-section .copyright {
  color: #fff;
  text-align: center;
  margin-bottom: 0 !important;
}
.footer-section .copyright-section .copyright span {
  color: #FFF4A3;
}

.objective-section {
  background: url(/assets/img/program-line-bg.png) no-repeat 50% #064e22;
  background-size: cover;
}
.objective-section .title {
  font-size: 4rem;
  -webkit-text-stroke: 3px #fff;
  color: transparent;
}
.objective-section .lists {
  list-style-type: decimal-leading-zero;
}
.objective-section .lists .text {
  font-size: 1.1rem;
  color: #fff;
}

.government-section {
  background: url(/assets/img/program-line-bg.png) no-repeat 50% #064e22;
  background-size: cover;
}
.government-section .title {
  font-size: 3rem;
  -webkit-text-stroke: 1px #fff;
  color: transparent;
}
.government-section .government {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(17.5px);
  -webkit-backdrop-filter: blur(17.5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.government-section .lists {
  list-style-type: none;
}
.government-section .lists .text {
  text-align: center;
  font-size: 1.1rem;
  color: #fff;
}

.ongoing-section .title {
  font-size: 3rem;
  -webkit-text-stroke: 2px #064e22;
  color: transparent;
}
.ongoing-section table {
  width: 100%;
  border-collapse: separate;
  margin-top: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.ongoing-section th,
.ongoing-section td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.ongoing-section th {
  background-color: #4CAF50;
  color: white;
}
.ongoing-section tr:hover {
  background-color: #f5f5f5;
}
.ongoing-section tbody tr:nth-child(even) {
  color: #fff;
  background-color: #007a4d;
}
.ongoing-section tbody tr:nth-child(odd) {
  color: #fff;
  background-color: #064e22;
}
.ongoing-section tbody tr {
  transition: all ease 0.4s;
  font-weight: 600;
}
.ongoing-section tbody tr:hover {
  background-color: #fff;
  color: #4CAF50;
  font-weight: 600;
}

.gallery-section {
  background: #007a4d;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(17.5px);
  -webkit-backdrop-filter: blur(17.5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.gallery-section .intro {
  color: #fff;
  font-style: italic;
  padding: 5px auto;
}
.gallery-section .gallery {
  background: url(../img/program-line-bg.png) no-repeat 50% #007a4d;
  background-size: cover;
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  transition: all ease-in-out 1s;
  /* CSS */
}
.gallery-section .gallery:hover {
  background: url(../img/program-line-bg.png) no-repeat 45% #007a4d;
  background-size: cover;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
.gallery-section .gallery .image-container {
  display: inline-block;
  position: relative;
}
.gallery-section .gallery .image-border {
  width: 18rem;
  /* Adjust as needed */
  height: 18rem;
  /* Adjust as needed */
  background: #4CAF50;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  /* Adjust the border radius as desired */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  /* Add a subtle shadow */
  overflow: hidden;
  padding: 5px;
}
.gallery-section .gallery .image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* Ensure the image fills the container */
  border-radius: 10px;
  /* Match the border radius of the container */
}
@media screen and (max-width: 576px) {
  .gallery-section .gallery .image-border {
    height: 100%;
    width: 100%;
  }
}

.funding-section .funding .title {
  font-size: 3rem;
}
.funding-section .funding .title-content {
  font-size: 1.2rem;
  color: #064e22;
}
.funding-section .funding .box {
  border: thick double #064e22;
  padding: 5px;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  height: 100%;
  transition: all ease 0.4s;
}
.funding-section .funding .box .image-box .image {
  color: #007a4d;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  transform: all ease 0.4s;
  border-radius: 10px;
}
.funding-section .funding .box .content .tag {
  font-size: 1.2rem;
  color: #007a4d;
  transition: all ease 0.4s;
  font-weight: 600;
}
.funding-section .funding .box .content .tag-2 {
  color: #4CAF50;
  font-weight: 600;
}
.funding-section .funding .box:hover {
  background: url(../img/program-line-bg.png) no-repeat 50% rgba(29, 137, 2, 0.9215686275);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-radius: 0;
  border: thick double #FFF4A3;
}
.funding-section .funding .box:hover .image {
  color: #fff;
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
  background-color: #fff;
}
.funding-section .funding .box:hover .tag {
  color: #fff;
}
.funding-section .funding .box:hover .tag-2 {
  color: #FFF4A3;
}

@keyframes iconAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.contact-section {
  background: url(/assets/img/program-line-bg.png) no-repeat 50% #064e22;
  background-size: cover;
}
.contact-section .contact .title {
  font-size: 4rem;
  -webkit-text-stroke: 2px #fff;
  color: transparent;
}
.contact-section .contact .tag {
  font-style: italic;
  color: #fff;
  font-weight: 500;
}
.contact-section .contact .content {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4.5px);
  -webkit-backdrop-filter: blur(4.5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.contact-section .contact .content .icon-box i {
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}
.contact-section .contact .content .name {
  font-size: 1.5rem;
  letter-spacing: 5px;
  color: #fff;
  transition: all ease 0.4s;
}
.contact-section .contact .content .data {
  color: #fff;
}
.contact-section .contact .content:hover i {
  color: #064e22;
  /* Change color on hover */
  animation: iconAnimation 1s infinite;
}
.contact-section .contact .content:hover .name {
  letter-spacing: 1px;
}
.contact-section .contact .detial {
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.contact-section .contact .detial .form label {
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: block;
  color: #fff;
}
.contact-section .contact .detial .form i {
  color: rgb(255, 122, 122);
}
.contact-section .contact .detial .form .input-container {
  display: flex;
  align-items: center;
}
.contact-section .contact .detial .form input {
  border-radius: 0 !important;
}
.contact-section .contact .detial .form .custom-input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  font-size: 16px;
  background-color: #fff;
  color: #333;
  outline: none;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}
.contact-section .contact .detial .form .custom-input:focus {
  background-color: #fff;
  color: #4CAF50;
  box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
}
.contact-section .contact .detial .form .form-control {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  margin-bottom: 0.5rem;
  transition: border-color 0.3s ease-in-out;
}
.contact-section .contact .detial .form .form-control:focus {
  outline: none;
  border-color: #0069d9;
}
.contact-section .contact .detial .form .text-danger {
  color: #ff0000;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: inline-block;
}
.contact-section .contact .detial .form .text-success {
  color: #28a745;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: inline-block;
}
.contact-section .contact .detial .form textarea {
  resize: vertical;
}
.contact-section .contact .detial .form .button:hover {
  background-color: #fff;
  color: #064e22;
}

.staff-structure-section .title {
  font-size: 3rem;
  -webkit-text-stroke: 2px #064e22;
  color: transparent;
}
.staff-structure-section .content {
  text-align: center;
  font-style: italic;
  font-weight: 500;
  color: #064e22;
  font-size: 1.2rem;
}
.staff-structure-section table {
  width: 100%;
  border-collapse: separate;
  margin-top: 20px;
}
.staff-structure-section th,
.staff-structure-section td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.staff-structure-section th {
  background-color: #4CAF50;
  color: white;
}
.staff-structure-section tr:hover {
  background-color: #f5f5f5;
}
.staff-structure-section tbody tr:nth-child(even) {
  color: #fff;
  background-color: #007a4d;
}
.staff-structure-section tbody tr:nth-child(odd) {
  color: #fff;
  background-color: #064e22;
}
.staff-structure-section tbody tr {
  transition: all ease 0.4s;
  font-weight: 600;
}
.staff-structure-section tbody tr:hover {
  background-color: #fff;
  color: #4CAF50;
  font-weight: 600;
}

.norms-section .about .image-box img {
  height: 25rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4rem;
  box-shadow: rgba(0, 122, 77, 0.4) 5px 5px, rgba(0, 122, 77, 0.3) 10px 10px, rgba(0, 122, 77, 0.2) 15px 15px, rgba(0, 122, 77, 0.1) 20px 20px, rgba(0, 122, 77, 0.05) 25px 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.norms-section .about .content h1 {
  color: #064e22;
  border: 2px dashed #007a4d;
  border-radius: 10%;
  transition: all 0.5s ease-in-out;
}
.norms-section .about .content h1 .content-icon-1 {
  transform: rotate(180deg);
}
.norms-section .about .content h1:hover {
  border-radius: 0%;
  letter-spacing: 0.5rem;
}
.norms-section .about .content p {
  font-size: 1.3rem;
  color: #007a4d;
  padding: 0.5rem;
  text-align: center;
}

.legal-section {
  background-color: #007a4d;
}
.legal-section .about .title {
  font-size: 4rem;
  -webkit-text-stroke: 3px #fff;
  color: transparent;
}
.legal-section .about .content .text {
  text-align: center;
  font-style: italic;
  font-weight: 500;
  color: #fff;
  font-size: 1.2rem;
}
.legal-section .about .content p {
  font-size: 1.3rem;
  color: #fff;
  padding: 0.5rem;
  text-align: center;
}

.message-section {
  background: url(../img/program-line-bg.png) no-repeat 50% #007a4d;
  background-size: cover;
}
.message-section .about .title {
  font-size: 4rem;
  -webkit-text-stroke: 3px #fff;
  color: transparent;
}
.message-section .about .image-box img {
  height: 25rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4rem;
  box-shadow: rgba(0, 122, 77, 0.4) 5px 5px, rgba(0, 122, 77, 0.3) 10px 10px, rgba(0, 122, 77, 0.2) 15px 15px, rgba(0, 122, 77, 0.1) 20px 20px, rgba(0, 122, 77, 0.05) 25px 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.message-section .about .content .text {
  text-align: center;
  font-style: italic;
  font-weight: 500;
  color: #fff;
  font-size: 1.2rem;
}
.message-section .about .content p {
  font-size: 1.3rem;
  color: #fff;
  padding: 0.5rem;
  text-align: center;
}

.policy-section .title {
  font-size: 3rem;
  -webkit-text-stroke: 2px #064e22;
  color: transparent;
}
.policy-section .text {
  text-align: center;
  font-style: italic;
  font-weight: 500;
  color: #064e22;
  font-size: 1.2rem;
}
.policy-section table {
  width: 100%;
  border-collapse: separate;
  margin-top: 20px;
}
.policy-section th,
.policy-section td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.policy-section th {
  background-color: #4CAF50;
  color: white;
}
.policy-section tr:hover {
  background-color: #f5f5f5;
}
.policy-section tbody tr:nth-child(even) {
  color: #fff;
  background-color: #007a4d;
}
.policy-section tbody tr:nth-child(odd) {
  color: #fff;
  background-color: #064e22;
}
.policy-section tbody tr {
  transition: all ease 0.4s;
  font-weight: 600;
}
.policy-section tbody tr:hover {
  background-color: #fff;
  color: #4CAF50;
  font-weight: 600;
}

.software-section {
  background: url(/assets/img/program-line-bg.png) no-repeat 50% #064e22;
  background-size: cover;
}
.software-section .title {
  font-size: 3rem;
  -webkit-text-stroke: 1px #fff;
  color: transparent;
}
.software-section .software {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(17.5px);
  -webkit-backdrop-filter: blur(17.5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.software-section .lists {
  list-style-type: none;
}
.software-section .lists .text {
  text-align: center;
  font-size: 1.1rem;
  color: #fff;
}

.address-section {
  background: url(/assets/img/program-line-bg.png) no-repeat 50% #064e22;
  background-size: cover;
}
.address-section .title {
  font-size: 3rem;
  -webkit-text-stroke: 1px #fff;
  color: transparent;
}
.address-section .address {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(17.5px);
  -webkit-backdrop-filter: blur(17.5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.address-section .lists {
  list-style-type: none;
}
.address-section .lists .text {
  text-align: start;
  font-size: 1.1rem;
  color: #fff;
}/*# sourceMappingURL=style.css.map */