@import url('./header.css');

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;

}

body {
  color: #505050;
}

:root {
  --dark-green: #006600;
  --bs-danger-rgb: 220, 53, 69;
}

p {
  text-align: justify;
}

.link-underline-danger {
  text-decoration: underline;
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
}

a {
  text-decoration: none;
}

.link {
  display: inline-block;
  color: #0c883e;
  font-weight: 500;
  font-family: 'Sora', sans-serif;
}

.link:hover {
  text-decoration: underline;
}

.section-title {
  margin-bottom: 20px;
}

.section-title .sub-title {
  font-family: 'Sora';
  margin-bottom: 0;
  text-transform: uppercase;
  color: #0c883e;
  font-weight: 500;
}

.section-title.section-title-dark .sub-title {
  color: #42ff8e;
}

.section-title .title {
  font-size: 55px;
  line-height: 1;
  font-weight: 700;
  font-family: 'DM Sans';
  color: #08317c;
  margin-bottom: 0;
}

.section-title .title.title-md {
  font-size: 50px;
}

.section-title.section-title-dark .title {
  color: #f7f77b;
}

/* buttons*/
.btn-style-1 {
  border: none;
  background-color: #0c883e;
  border-radius: 25px;
  padding: 10px 25px;
  color: white;
  display: inline-block;
  font-size: 18px;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-style-1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #183772;
  transform: scale(0);
  border-radius: 25px;
  transition: all 0.4s;
  z-index: -1;
}

.btn-style-1:hover::before {
  transform: scale(1);
  transition: all 0.4s;

}

.btn-style-1 .btn-text {
  display: inline-block;
  font-weight: 500;
  position: relative;
}

.btn-style-1 .btn-icon {
  transform: rotate(-45deg);
  display: inline-block;
  transition: all 0.3s;
}

.btn-style-1:hover .btn-icon {
  transform: rotate(0deg);
  transition: all 0.3s;
}

.text-justify {
  text-align: justify;
}

.my-owl-nav span i {
  color: #0c883e;
  cursor: pointer;
  line-height: 1;
  font-size: 25px;
  transform: scale(1.0);
  transition: all 0.3s;
}

/* header-custom */
body {
  font-family: "DM Sans", sans-serif;
}

.bg-theme-1 {
  background-color: #0c883e;
}

.header-top-menu-bar .navbar-brand img.logo {
  max-height: 55px;
}

.header-top-menu-bar .navbar .dropdown-item {
  white-space: normal;
  min-width: 200px;
}

/* .header-top-menu-bar .navbar .nav-item .nav-link.dropdown-toggle::after {
  content: none;
} */

.header-top-menu-bar .navbar .nav-item .nav-link {
  font-weight: 500;
  color: #1e1e1e;
  font-size: 16px;
  font-family: 'DM Sans';
  padding: 5px 7px;
}

.header-top-menu-bar .navbar .nav-item .nav-link:hover {
  color: #02722f;
}

/* header */

.header-search-box {
  background-color: #ffe4a3;
  padding-left: 10px;
  padding-right: 10px;
}

.header-search-box button[aria-label="Search Button"] {
  border: 0;
  background: #0c883e;
  padding: 5px;
  color: #fff;
}

.header-search-box input {
  border: 0;
  padding-left: 5px;
}

.header {
  background-color: #0c883e;
  padding: 10px 50px 0 50px;
  position: relative;
  max-height: 100px;
  /* z-index: 1; */
}

/* .menu-bar-container{width: 910%;} */
.header-top-menu-bar.sticky-header {
    position:fixed!important;
    top:0;
    left: 0;
    margin-top: 0px;
    right: 0;
      border-radius: 0px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
}
.header-top-menu-bar {
  background-color: white;
  border-radius: 5px;
  padding: 0 5px;
    margin-top: 10px;
  z-index: 3 !important;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.social-media-btn {
  display: flex;
  border: 1px solid transparent;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  height: 27px;
  width: 27px;
  background: white;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  color: #0c883e;
  transition: all 0.3s;
  border: 1px solid white;
}

.social-media-btn:hover {
  background-color: transparent;
  color: white;
  transition: all 0.3s;
}

.border-btn {
  display: flex;
  border: 1px solid white;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  height: 27px;
  width: 27px;
  background: rgba(255, 255, 255, 0);
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
  color: #ffffff;
  transition: all 0.3s;
}

.border-btn:hover {
  background-color: white;
  color: #0c883e;
  transition: all 0.3s;
}

.top-bar-dropdown .dropdown-toggle::after {
  content: none;
}

.dropdown-sm {
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  min-width: 90px;
}

.dropdown-sm .dropdown-item {
  padding: 2px 8px;
}

.dropdown-sm .dropdown-item.active,
.dropdown-sm .dropdown-item:active {
  background-color: #036129;
}

.dropdown-sm.font-size-dropdown {
  min-width: 50px;
}

.tb-left .tagline-text {
  color: white;
  font-weight: 500;
  text-align: left;
}

.nav-right-separator span {
  margin: 0 10px;
  width: 30px;
  display: block;
  background-color: yellow;
  clip-path: polygon(60% 0%, 100% 0%, 40% 100%, 0% 100%);
  min-height: 28px;
}

.nav-right-separator::before {
  content: '';
  position: absolute;
  height: calc(100% + 8px);
  background-color: white;
  width: 1px;
  left: 17px;
  top: -10px;
  transform: rotate(33deg);
}

.nav-right-separator::after {
  content: '';
  position: absolute;
  height: calc(100% + 8px);
  background-color: white;
  width: 1px;
  right: 17px;
  bottom: -10px;
  transform: rotate(33deg);
}

.contact-btn {
  display: block;
  background-color: #254a91;
  padding: 10px 20px;
  border-radius: 23px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  margin-left: 8px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.contact-btn::before {
  content: '';
  position: absolute;
  display: block;
  ;
  border-radius: 23px;
  margin: auto;
  left: 0;
  right: 0;
  transform: scale(0);
  background-color: #0c883e;
  height: 100%;
  width: 100%;
  ;
  transition: all 0.3s;
  top: 0;
}

.contact-btn:hover::before {
  transform: scale(1);
  transition: all 0.3s;
}

/* header-custom-end */
/* home-banner */
.home-banner-slider .hbs-item img {
  width: 100%;
  max-height: 470px;
  object-fit: cover;
  object-position: top;
}

.control-btn {
  cursor: pointer;
  width: 60px;
  height: 60px;
  line-height: 1;
  font-size: 20px;
  border: 1px solid rgba(255, 255, 255, 0.301);
  backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.205);
  color: white;
  transform: scale(1.0);
  transition: all 0.3s;
}

.control-btn:hover {
  border: 1px solid rgb(255, 255, 255);
  background-color: #0c883e;
  transform: scale(1.1);
  transition: all 0.5s;
}

.control-btn.control-btn-2 {
  border: 1px solid rgb(255, 255, 255);
  background-color: #0c883e;
  color: white;
  height: 50px;
  width: 50px;
}

.btn-absolute {
  position: absolute;
  top: calc(50% - 30px);
  /* z-index: 1; */
}

.btn-absolute.btn-pre {
  left: 10px;
}

.btn-absolute.btn-next {
  left: auto;
  right: 10px;
}

/* theme dark */
[data-bs-theme="dark"] body img {
  filter: grayscale(1);
}

[data-bs-theme="dark"] body {
  background-color: #000;
  color: #FFF;
}

[data-bs-theme="dark"] body .link-dark,
[data-bs-theme="dark"] body .section-title .title {
  color: #FFF !important;
}

[data-bs-theme="dark"] body .project-content {
  color: #000 !important;
}

[data-bs-theme="dark"] body .single-gallery:before {
  background-color: #2d3d1f;
}

[data-bs-theme="dark"] body .single-gallery {
  background: #2a2e43;
}

/* spotlight */
.spotlight-div .spotlight-title {
  display: inline-block;
  width: 215px;
  background-color: #254a91;
  padding: 8px 10px;
}

.spotlight-div .spotlight-title .controls a,
.spotlight-div .spotlight-title .controls button {
  color: white;
  display: inline-block;
  background-color: transparent;
  box-shadow: none;
  border: none;
  font-size: 18px;
  padding: 0px 4px;
}

.spotlight-div .spotlight-body {
  display: inline-block;
  width: calc(100% - 315px);
  border: 1px solid #254a91;
  background-color: white;
  padding: 8px 15px;
}

.spotlight-div .spotlight-body a {
  color: #254a91;
  font-weight: 500;
}

.spotlight-div .spotlight-body a span {
  font-size: 12px;
  font-weight: 500;
}

.spotlight-div .spotlight-more {
  width: 100px;
  text-align: center;
  background-color: #254a91;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spotlight-div .spotlight-more a {
  font-size: 16px;
  font-weight: 500;
}

/* home-about */
.about-images {
  padding-right: 20px;
}

.about-images .ab-img-1 img {
  border-radius: 30px;
}

.about-images .ab-img-2 {
  width: 300px;
  z-index: 1;
  position: relative;
  margin-top: -120px;
  margin-left: auto;
}

.about-images .ab-img-2 img {
  border-radius: 30px;
  border: 5px solid rgb(241, 241, 241);
  overflow: hidden;
}

.about-images .about-shape {
  position: absolute;
  top: 0;
  right: 20px;
  z-index: 0;
}

/* project */
.bg-projects {
  background-image: url('../images/banner/bg-project.jpg');
  background-size: cover;
  background-position: top;
}

.project-slider {
  margin-top: -100px;
}

.project-content {
  margin-top: 100px;
  position: relative;
  z-index: 1;
  background-color: white;
  padding: 40px 50px 20px 40px;
  border-radius: 0 20px 0 0;
}

.project-content::before {
  position: absolute;
  content: '';
  height: 80px;
  width: 5px;
  background-color: #0c883e;
  left: 0;
  top: 50px;
}

.project-content .project-title {
  color: #183772;
  font-size: 40px;
  font-weight: 200;
  font-family: 'DM Sans';
  border-bottom: 1px solid #18387250;
}

.project-image {
  margin-left: -150px;
  width: calc(100% + 150px);
}

.project-image img {
  border-radius: 20px;
  max-height: 450px;
  object-fit: cover;
  object-position: center;
}

/* director-section */
.director-img img {
  border-radius: 20px;
}

.director-message {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 20px;
}

.dir-data {
  width: max-content;
  border-left: 1px solid #169b4b79;
  max-width: 100%;
}

.dir-name {
  color: #183772;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 0;
}

.dir-profile {
  font-size: 24px;
  color: #183772;
  font-weight: 400;
}

.director-img::before {
  position: absolute;
  content: '';
  height: calc(100% + 5px);
  width: 96%;
  top: 0;
  background-color: #0c883ec4;
  border-radius: 20px;
  transform: rotate(3deg);
  left: 10px;
}

/* event-section-home */
.single-event {
  background-color: white;
  border-radius: 20px;
  padding: 15px;
  margin: 2px;
  border: 1px solid rgba(0, 0, 0, 0.295);
}

.single-event .event-content {
  padding: 15px 20px;
}

.single-event .event-content .event-date {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
  background: #0c883e;
  width: max-content;
  max-width: 100%;
  line-height: 1;
  padding: 4px 10px;
  font-size: 14px;
  border-radius: 20px;
}

.single-event .event-content .event-title {
  font-size: 20px;
  font-family: 'Sora';
  font-weight: 500;
  line-height: 26px;
  color: #183772;
}

.single-event .event-thumbnail img {
  border-radius: 10px;
  height: 200px; object-fit:cover; object-position: top;
}
.vertical-count-2 {
      text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

}
/* tenders-verticle-slider */
.boxes-container {
  background-color: #058137;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.boxes-container-bg {
  bottom: 0;
  z-index: -1;
  left: auto;
  right: 0;
  width: 500px;
  position: absolute;
}

.boxes-container-bg img {
  width: 100%;
  border-bottom-right-radius: 20px;
}

.verticle-slider-box {
  padding: 30px 50px;
  height: 100%;
}

/* .verticle-slider-box .verticle-box-title {} */

.verticle-slider-box .verticle-box-title h3 {
  color: white;
  font-family: 'Sora';
  font-size: 24px;
  margin-bottom: 15px;
}

.verticle-slider-box .verticle-box-content {
  min-height: 210px;
}

.vbc-single {
  margin-bottom: 15px;
  text-align: justify;
}

.vbc-single .box-text {
  color: white;
  font-size: 16px;
  line-height: 20px;
  display: -webkit-box;
  text-overflow: ellipsis;
  line-clamp: 7;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 300;
  transition: all 0.2s;
}

.vbc-single .box-text:hover {
  color: #fdfdc4;
  transition: all 0.2s;
}

.vbc-single .calender {
  display: inline-block;
  color: #0c883e;
  font-weight: 600;
  margin-bottom: 10px;
  background: #ffffff;
  line-height: 1;
  padding: 4px 10px;
  font-size: 14px;
  border-radius: 20px;
}

.vbc-single .calender .date {
  background-color: black;
  display: block;
}

.vbc-single .calender .month {
  display: block;
}

.verticle-slider-box .separator {
  width: 5px;
  height: 80px;
  position: absolute;
  background-color: white;
  left: -2px;
  display: block;
  top: calc(50% - 40px);
  border-radius: 10px;
}

.verticle-slider-box .separator.separator-2 {
  left: auto;
  right: -4px;
}

.verticle-slider-box .separator::before {
  position: absolute;
  content: '';
  height: calc(100% + 40px);
  left: -10px;
  top: -20px;
  background-color: rgba(255, 255, 255, 0.486);
  width: 1px;
}

.verticle-slider-box .separator::after {
  position: absolute;
  content: '';
  height: calc(100% + 40px);
  right: -10px;
  top: -20px;
  background-color: rgba(255, 255, 255, 0.486);
  width: 1px;
}

.verticle-slider-box .verticle-box-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.185);
  padding-top: 10px;
}

.verticle-slider-box .verticle-box-footer a.view-all {
  color: #f7f77b;
  display: block;
  margin-top: -25px;
  background: #058137;
  font-size: 16px;
  padding-left: 3px;
}

.ctrl-arrow-sm {
  position: relative;
  box-shadow: none;
  color: #ffffff;
  display: flex;
  background: #014c20;
  height: 32px;
  width: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: -28px;
  border: 2px solid #058137;
  z-index: 1;
  transition: all 0.3s;
}

.ctrl-arrow-sm:hover {
  color: #014c20;
  background: #ffffff;
  transition: all 0.3s;
}

.slider-style-1 img {
  height: 235px;
  object-fit: cover;
}

/* home-csr-section */
.csr-image {
  display: flex;
  background-color: #eeeeee;
  padding: 30px;
  border-radius: 20px;
}

.csr-image .img-1 img {
  border-radius: 20px;
  margin-bottom: 25px;
}

.csr-image .img-2 img {
  border-radius: 20px;
}

/* photo-gallery-slider*/
.photo-gallery-slider {
  margin-top: -110px;
}

.photo-gallery-single {
  display: block;
}

.photo-gallery-single figure img {
  display: block;
  width: 100%;
  border-radius: 15px;
  height: 230px;
  object-fit: cover;
  object-position: top;
}

/* government-slider */
.govt-link a {
  padding: 3px;
  position: relative;
}

.govt-link a::before {
  content: '';
  position: absolute;
  width: 60%;
  height: calc(100% + 6px);
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  top: -3px;
  background-color: #5075db;
  border-radius: 15px;
}

.govt-link a:hover::before {
  background-color: #0c883e;
  transition: all 0.3s;
}

.govt-link a img {
  width: 100%;
  box-shadow: 0px 1px 5px 0px rgb(0 0 0 / 9%);
  border-radius: 10px;
  position: relative;
  z-index: 1;
  border: 2px solid #5075db;
  transition: all 0.3s;
}

.govt-link a:hover img {
  border: 2px solid #0c883e;
  transition: all 0.3s;
}

/* government-slider-end */
/* footer */
.footer {
  background-image: url(../images/bg/footer-bg-2.jpg);
  background-size: cover;
  background-position: bottom;
  z-index: 1;
  overflow: hidden;
}

.wind:before {
  content: '';
  position: absolute;
  right: 19px;
  left: auto;
  top: 21px;
  bottom: auto;
  width: 0;
  height: 0;
  /* background: #ffbe00; */
  z-index: -1;
  border-radius: 100%;
  box-shadow: -69px 66px 220px 200px #093199c7;
}

.footer-widget .footer-nav-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.footer-widget .footer-nav-list li a {
  color: white;
  font-weight: 300;
  padding: 0 5px 5px 15px;
  display: inline-block;
  position: relative;
  transition: all 0.4s;
}

.footer-widget .footer-nav-list li a:hover {
  color: #f0f045;
  transition: all 0.4s;
}

.footer-widget .footer-nav-list li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  left: 15px;
  background-color: #22f176;
  bottom: 0;
  transition: all 0.4s;
}

.footer-widget .footer-nav-list li a:hover::after {
  content: '';
  position: absolute;
  width: 100%;
  transition: all 0.4s;
}

.footer-widget .footer-nav-list li {
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
}

.footer-widget .footer-nav-list li::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  left: 0;
  top: 6px;
  background-color: #22f176;
  border-radius: 50%;
}

.widget-about li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: white;
}

.widget-about li i {
  position: absolute;
  left: 0;
  top: 5px;
}

.footer-logo img {
  background: #fff;
  padding: 8px;
  border-radius: 10px;
}

.footer-top {
  position: relative;
  border-radius: 10px;
  padding-top: 60px;
  padding-bottom: 34px;
  border-bottom: 1px solid #ffffff36;
}

/* .footer-top::after{content: '';position: absolute;width: 100%;height: 100%;bottom: -10px;background-color: #005e29;} */
.footer-logo a .ft-logo {
  max-height: 80px;
}

.footer-social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  background-color: #002244;
  border-radius: 50%;
  color: white;
  line-height: 1;
  font-size: 23px;
  box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, 0);
  transition: all 0.3s;
}

.footer-social-media.facebook {
  background: #1877F2;
}

.footer-social-media.instagram {
  background: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
}

.footer-social-media.twitter {
  background: black;
}

.footer-social-media:hover {
  box-shadow: 2px 2px 8px 1px rgb(0 0 0 / 63%);
  transition: all 0.3s;
}

.copyright-container {
  background-color: #005723;
  padding: 8px 0;
}

.copyright-container p {
  color: rgba(255, 255, 255, 0.87);
  font-weight: 300;
  font-size: 14px;
}

.copyright-container p a {
  color: white;
  font-weight: 500;
}

/* footer-end */
/* inner-page-header */

td {
  word-break: break-word;
}

.inner-page-header {
  background-image: url('../images/bg/inner-page-bg-3.jpg');
  background-position: center;
  background-size: cover;
  padding: 80px 0 60px;
}

.inner-page-header .inph-title {
  color: white;
  font-size: 30px;
  font-weight: 600;
}

.inner-page-header .breadcrumb .breadcrumb-item a {
  color: white;
  transition: all 0.3s;
}

.inner-page-header .breadcrumb .breadcrumb-item a:hover,
.inner-page-header .breadcrumb .breadcrumb-item.active {
  color: #ffff00;
  transition: all 0.3s;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgb(171 196 181);
}

/* start vision mission */
.mi-icon {
  position: absolute;
  right: -3%;
  top: -70px;
}

.vi-icon {
  position: absolute;
  left: -3%;
  top: -91px;
}

.mi-icon img,
.vi-icon img {
  width: 200px;
}

.vision,
.mission {
  background: #0cc69b1c;
  padding: 50px 40px;
  border-radius: 10px;

}

.vision li,
.mission li {
  position: relative;
  padding-left: 23px;
  margin-bottom: 10px;
}

.vision li::before,
.mission li::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  left: 0;
  top: 6px;
  background-color: #0c883e;
  border-radius: 3px;
  transform: rotate(45deg);
}

.mission li {
  padding-right: 23px;
}

.mission li::before {
  left: auto;
  right: 0;
}

/* end vision mission */
/* start contact */
.contact-dots::before {
  content: '';
  position: absolute;
  left: 0;
  top: -4px;
  width: 10px;
  height: 10px;
  background-color: #f44336;
  border-radius: 100px;
  z-index: 1;
}

.contact-dots::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background-color: #ccc;
}

.contact-block span>i {
  background: #f44336;
  border-radius: 10px;
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* end contact */

/* start team */
.img_block img {
  border-radius: 10px;
  width: 140px;
  height: 140px;
  object-fit: cover;
  object-position: top;
  border: 4px solid #0b8340;
  box-shadow: 1px 8px 10px -3px #00000042;
  margin-bottom: 20px;
}

.bord_d_title {
  position: relative;
  z-index: 1;
  min-height: 300px;
  overflow: hidden;
}

.bord_d_title:before {
  content: '';
  position: absolute;
  top: 25%;
  bottom: 0;
  /* background-color: #005056; */
  background-image: linear-gradient(45deg, #005056, #0c883e);
  left: 0%;
  right: 0%;
  z-index: -1;
  border-radius: 10px;
}

.bord_d_title::after {
  content: '';
  position: absolute;
  top: 38%;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../images/bg/bg-png.png);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: .3;
  z-index: -1;
  filter: invert(3%);
}

/* end team */

.d-grid.grid-template-5 {
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 764px) {
  .d-grid.grid-template-5 {
  grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 400px) {
  .d-grid.grid-template-5 {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* Responsive */
@media (min-width: 1400px) and (max-width: 2200px) {
  .home-banner-slider .hbs-item img{
      max-height:670px;
  }
  .single-event .event-thumbnail img {
    min-height: 251px;
}
.single-event {
    min-height: 397px;
}
}
@media (min-width: 765px) and (max-width: 1200px) {
  .header-top-menu-bar .navbar-brand img.logo {
    max-height: 40px;
}
.contact-btn {
    padding: 5px 5px;
}
  .home-banner-slider .hbs-item img {
    max-height: 395px;
  }
  .header-top-menu-bar .navbar .nav-item .nav-link {
    font-size: 14px;
    padding: 5px 3px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .vision-mission {
    margin-top: 80px;
  }

  .vi-icon {
    right: 0% !important;
  }

  .mi-icon {
    right: 0% !important;
  }

  .header {
    padding: 10px 5px 0 5px;
  }

  .header-top-menu-bar {
    padding: 0 5px;
  }

  .header-top-menu-bar .navbar {
    padding: 2px 0;
  }

  .header-top-menu-bar .navbar-brand img.logo {
    max-height: 45px;
  }



  .accessibility-btn-group {
    gap: 4px !important;
    margin-right: 5px !important;
  }

  .header-social-media-btn-group {
    gap: 4px !important;
  }

  .home-banner-slider .hbs-item img {
    height: 250px;
    object-fit: fill;
    object-position: center;
  }

  .home-banner-slider .hbs-item img {
    height: 220px;
    object-fit: cover;
    object-position: center;
  }

  .spotlight-div {
    flex-wrap: wrap;
  }

  .spotlight-div .spotlight-title {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }

  .spotlight-div .spotlight-body {
    width: 100%;
  }

  .project-image {
    margin-left: 0;
    width: 100%;
  }

  .verticle-slider-box {
    padding: 30px 20px;
  }

  .verticle-slider-box .separator {
    width: 100%;
    height: 2px;
    position: absolute;
    background-color: white;
    left: 0;
    display: block;
    top: 0;
    border-radius: 0;
  }

  .verticle-slider-box .separator.separator-2 {
    left: auto;
    right: 0;
    bottom: 0;
    top: auto;
  }

  .verticle-slider-box .separator::before,
  .verticle-slider-box .separator::after {
    content: none;
  }

  .csr-image {
    padding: 10px;
    border-radius: 10px;
  }

  .photo-gallery-slider {
    margin-top: -20px;
    margin-bottom: -30px;
  }

  .footer-top {
    padding: 15px 10px;
    border-radius: 20px;
  }

  .footer-top .footer-logo {
    margin-bottom: 20px;
  }

  .footer-top .footer-social {
    justify-content: center !important;
    border-top: 1px solid #07244742;
    padding-top: 15px;
  }

  .footer-social-media {
    height: 45px;
    width: 45px;
    font-size: 20px;
  }

  .footer-widget .footer-nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-widget .footer-nav-list li {
    width: calc(50% - 10px);
  }

  .copyright-container,
  .copyright-container p.text-end {
    text-align: center !important;
  }

  /* custom-for-this-size */
  .about-images {
    padding-right: 0;
  }

  .about-images .ab-img-1 {
    padding-right: 120px;
  }

  .about-images .ab-img-2 {
    width: 350px;
    margin-top: -60px;
  }

  .section-title {
    margin-top: 20px;
  }

  .section-title .title {
    font-size: 60px;
  }
}

/* mobile-responsive */
@media (min-width: 320px) and (max-width: 480px) {

  .header {
    padding: 10px 5px 0 5px;
  }

  .header-top-menu-bar {
    padding: 0 0px;
  }

  .header-top-menu-bar .navbar-brand img.logo {
    max-height: 45px;
  }

  .header-top-menu-bar .navbar {
    padding: 2px 0;
  }

  .tb-left {
    display: none;
  }

  .nav-right-separator {
    display: none;
  }

  .tb-right {
    gap: 0 !important;
    justify-content: center !important;
  }

  .accessibility-btn-group {
    gap: 4px !important;
    margin-right: 5px !important;
  }

  .header-social-media-btn-group {
    gap: 4px !important;
  }

  .home-banner-slider .hbs-item img {
    height: 220px;
    object-fit: cover;
    object-position: center;
  }

  .spotlight-div {
    flex-wrap: wrap;
  }

  .spotlight-div .spotlight-title {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }

  .spotlight-div .spotlight-body {
    width: 100%;
  }

  .section-title {
    margin-top: 20px;
  }

  .about-images {
    padding-right: 0;
  }

  .about-images .ab-img-2 {
    width: 100%;
    margin-top: 20px;
  }

  .about-images .ab-img-2 img {
    border: none;
  }

  .section-title .title {
    font-size: 45px;
  }

  .section-title .title.title-md {
    font-size: 36px;
  }

  .project-slider {
    margin-top: 0px;
  }

  .project-content {
    margin-top: 0px;
    padding: 30px 0px 20px 0px;
  }

  .project-content::before {
    content: none;
  }

  .project-content .project-title {
    font-size: 30px;
    font-weight: 300;
    padding-bottom: 10px;
  }

  .project-image {
    margin-left: 0;
    width: 100%;
  }

  .director-message {
    background-color: #f2f2f2;
    padding: 15px;
    border-radius: 15px;
  }

  .section-events .event-control {
    justify-content: flex-start !important;
    margin-bottom: 15px;
  }

  .single-event .event-content {
    padding: 15px 0;
  }

  .verticle-slider-box {
    padding: 30px 20px;
  }

  .verticle-slider-box .separator {
    width: 100%;
    height: 2px;
    position: absolute;
    background-color: white;
    left: 0;
    display: block;
    top: 0;
    border-radius: 0;
  }

  .verticle-slider-box .separator.separator-2 {
    left: auto;
    right: 0;
    bottom: 0;
    top: auto;
  }

  .verticle-slider-box .separator::before,
  .verticle-slider-box .separator::after {
    content: none;
  }

  .csr-image {
    padding: 10px;
    border-radius: 10px;
  }

  .photo-gallery-slider {
    margin-top: -20px;
    margin-bottom: -30px;
  }

  .footer-top {
    padding: 15px 10px;
    border-radius: 20px;
  }

  .footer-top .footer-logo {
    margin-bottom: 20px;
  }

  .footer-logo a .ft-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    width: max-content;
  }

  .footer-top .footer-social {
    justify-content: center !important;
    border-top: 1px solid #07244742;
    padding-top: 15px;
  }

  .footer-social-media {
    height: 45px;
    width: 45px;
    font-size: 20px;
  }

  .footer-widget .footer-nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-widget .footer-nav-list li {
    width: calc(50% - 10px);
  }

  .copyright-container {
    text-align: center;
  }

}

@media (max-width: 576px) {
  .tb-left {
    display: none;
  }
}

/* start photo gallery album */
.single-gallery {
  overflow: hidden;
  background: #f2f2f2;
  border-radius: 15px;
  padding-top: 20px;
  /* border: 1px solid #4662ff; */
  /* box-shadow: 0px 3px 0px 0px #4662ff6e; */
  z-index: 1;
  transition: all 0.6s;
}






.gallery-cover-inn {
  width: 90%;
  height: 97%;
  /* clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%); */
  /* clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%); */
  margin: auto;
}

/* {
background: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
} */
.gallery-cover-inn img {
  width: 98%;
  height: 215px;
  border-radius: 15px;
  object-fit: cover;
  margin-top: 1px;
  transform: scale(1.0);
  transition: all 0.3s;
}

.album-title a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  height: 45px;
  line-height: 53px;
  max-width: 80%;
  color: #0c883e;
}

.gallery-link-btn {
  position: absolute;
  right: 19px;
  bottom: 23px;
  z-index: 1;
  transition: all 0.4s ease-in;
  border: 1px solid #0c883e;
  color: #0c883e;
}

.gallery-link-btn i {
  transform: rotate(-45deg);
  transition: all 0.4s ease-in;
}

.gallery-view img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top;
}

.album-title a:hover .gallery-link-btn {
  background-color: #0c883e;
  color: #fff;
}

.album-title:hover .gallery-link-btn i {
  transform: rotate(0deg);

}

.single-gallery:hover .gallery-cover-inn img {
  transform: scale(1.05);
}

/* end photo gallery album */
/* SITEMAP PAGE */
.tree>ul {
  padding-left: 0px !important;
}

.tree ul {
  padding-left: 40px
}

.tree li {
  list-style-type: none;
  margin: 0;
  padding: 10px 5px 0 5px;
  position: relative
}

.tree li::before,
.tree li::after {
  content: '';
  left: -20px;
  position: absolute;
  right: auto
}

.tree li::before {
  border-left: 1px solid #005f09;
  bottom: 50px;
  height: 100%;
  top: 0;
  width: 1px
}

.tree li::after {
  border-top: 1px solid #005f09;
  height: 20px;
  top: 25px;
  width: 25px
}

.tree li a {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background: #feffe5;
  border: 1px solid var(--dark-green);
  border-radius: 3px;
  display: inline-block;
  padding: 3px 8px;
  text-decoration: none;
  cursor: pointer;
  color: #000;
  position: relative;
}

.tree>ul>li>ul>li>a {
  background: var(--dark-green);
  color: #fff;
  border-color: var(--dark-green);

}

.tree>ul li ul>li>a::before {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: var(--dark-green);
  top: 11px;
  left: -7px;
  right: 0;
  clip-path: polygon(100% 48%, 0 0, 0 100%);
}

.tree ul li ul li ul li ul li a {
  background: #e9f5ff
}

.tree>ul>li::before,
.tree>ul>li::after {
  border: 0
}

.tree li:last-child::before {
  height: 27px;
}

.tree li a:hover {
  background: var(--yellow_color);
  border: 1px solid #6dad73;
}

.tree>ul>li>ul>li>a:hover {
  color: #000;
}

/* end sitemap */
.w-35 {
  width: 35%;
}

.table-bordered>:not(caption)>*>* {
  text-align: justify;
}

/* table td a {
  color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
} */

.table-tender td a {
  display: block;
  text-align: left;
  font-weight: 500;
  margin-bottom: 10px;
}

.table-tender tr th:last-child {
  width: 15%;
}
