/**
* Template Name: Ministry of Commerce
* Updated: Mar 10 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/Ministry of Commerce-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/ 

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;      
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #60c9f6;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #da0001;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #60c9f6;
  height: auto;
  font-size: 14px;
  transition: all 0.5s;
  color: #000;
  padding: 10px 0px 0px;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

#topbar .social-links a {
  color: #000;
  line-height: normal;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #60c9f6;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/*#header {
  background: #60c9f6;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}*/

#header.fixed-top {
    height: 70px;
    border-bottom: 1px solid #afafaf;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #106eea;
}

#header .logo img {
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #FFF;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #FFF;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #FFF;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #106eea;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }


/*  vision bangladesh gallery*/
 


}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #106eea;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #106eea;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 75vh;
  background: url("../img/hero-bg.jpg") top left;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #222222;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #106eea;
}

#hero h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #106eea;
}

#hero .btn-get-started:hover {
  background: #247cf0;
}

#hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  font-weight: 600;
  display: flex;
  align-items: center;
}

#hero .btn-watch-video i {
  color: #106eea;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

#hero .btn-watch-video:hover {
  color: #106eea;
}

#hero .btn-watch-video:hover i {
  color: #3b8af2;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .btn-get-started,
  #hero .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #106eea;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #106eea;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f6fe;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #106eea;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #106eea;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #111;
}

.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .icon-box:hover .title a,
.featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .content ul li:first-child {
  margin-top: 35px;
}

.about .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #106eea;
  border-radius: 50px;
}

.about .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #222222;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e2eefd;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #106eea;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #f1f6fe;
}

.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #106eea;
  color: #fff;
  width: 56px;
  height: 56px;
  line-height: 0;
  border-radius: 50px;
  border: 5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #062b5b;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #e2eefd;
  padding: 40px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
  color: #3b8af2;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}

.services .icon-box:hover h4 a,
.services .icon-box:hover .icon i {
  color: #106eea;
}

.services .icon-box:hover .icon {
  border-color: #106eea;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonial\ background.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(151 151 151 / 62%);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 35%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #106eea;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #106eea;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #222222;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #3c3c3c;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #106eea;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #6ba7f5;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #106eea;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #106eea;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(16, 110, 234, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #3b8af2;
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #222222;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .box h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing .box h4 {
  font-size: 36px;
  color: #106eea;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #106eea;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #106eea;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #3b8af2;
}

.pricing .featured h3 {
  color: #fff;
  background: #106eea;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #106eea;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #d4e5fc;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #106eea;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #0d58ba;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #106eea;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #106eea;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #106eea;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #106eea;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #3b8af2;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 10px 0 30px 0;
  color: #fff;
  font-size: 14px;
  background: #60c9f6;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #106eea;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #0d58ba;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #106eea;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #106eea;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #106eea;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #106eea;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #3b8af2;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #FFF;
}

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}

/* Blog 
---------------------*/
.blog-grid {
  box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
  margin-top: 15px;
  margin-bottom: 15px;
}

.blog-grid .blog-img {
  position: relative;
}

.blog-grid .blog-img .date {
  position: absolute;
  background: #fc5356;
  color: #ffffff;
  padding: 8px 15px;
  left: 10px;
  top: 10px;
  border-radius: 4px;
}

.blog-grid .blog-img .date span {
  font-size: 22px;
  display: block;
  line-height: 22px;
  font-weight: 700;
}

.blog-grid .blog-img .date label {
  font-size: 14px;
  margin: 0;
}

.blog-grid .blog-info {
  padding: 20px;
}

.blog-grid .blog-info h5 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
}

.blog-grid .blog-info h5 a {
  color: #20247b;
}

.blog-grid .blog-info p {
  margin: 0;
}

.blog-grid .blog-info .btn-bar {
  margin-top: 20px;
}


/* Blog Sidebar
-------------------*/
.blog-aside .widget {
  box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
  /* margin-top: -20px; */
  margin-bottom: 15px;
  width: 100%;
  display: inline-block;
  vertical-align: top;
}

.blog-aside .widget-body {
  padding: 15px;
}

.blog-aside .widget-title {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.blog-aside .widget-title h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fc5356;
  margin: 0;
}

.blog-aside .widget-author .media {
  margin-bottom: 15px;
}

.blog-aside .widget-author p {
  font-size: 16px;
  margin: 0;
}

.blog-aside .widget-author .avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}

.blog-aside .widget-author h6 {
  font-weight: 600;
  color: #20247b;
  font-size: 22px;
  margin: 0;
  padding-left: 20px;
}

.blog-aside .post-aside {
  margin-bottom: 15px;
}

.blog-aside .post-aside .post-aside-title h5 {
  margin: 0;
}

.blog-aside .post-aside .post-aside-title a {
  font-size: 18px;
  color: #20247b;
  font-weight: 600;
}

.blog-aside .post-aside .post-aside-meta {
  padding-bottom: 10px;
}

.blog-aside .post-aside .post-aside-meta a {
  color: #6F8BA4;
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 10px;
}

.blog-aside .latest-post-aside+.latest-post-aside {
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 15px;
}

.blog-aside .latest-post-aside .lpa-right {
  width: 90px;
}

.blog-aside .latest-post-aside .lpa-right img {
  border-radius: 3px;
}

.blog-aside .latest-post-aside .lpa-left {
  padding-right: 15px;
}

.blog-aside .latest-post-aside .lpa-title h5 {
  margin: 0;
  font-size: 15px;
}

.blog-aside .latest-post-aside .lpa-title a {
  color: #20247b;
  font-weight: 600;
}

.blog-aside .latest-post-aside .lpa-meta a {
  color: #6F8BA4;
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 10px;
}

.tag-cloud a {
  padding: 4px 15px;
  font-size: 13px;
  color: #ffffff;
  background: #20247b;
  border-radius: 3px;
  margin-right: 4px;
  margin-bottom: 4px;
}

.tag-cloud a:hover {
  background: #fc5356;
}

.blog-single {
  padding-top: 30px;
  padding-bottom: 30px;
}

.article {
  box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
  padding: 15px;
  margin: 15px 0 30px;
}

.article .article-title {
  padding: 15px 0 20px;
}

.article .article-title h6 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.article .article-title h6 a {
  text-transform: uppercase;
  color: #fc5356;
  border-bottom: 1px solid #fc5356;
}

.article .article-title h2 {
  color: #20247b;
  font-weight: 600;
}

.article .article-title .media {
  padding-top: 15px;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 20px;
}

.article .article-title .media .avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}

.article .article-title .media .media-body {
  padding-left: 8px;
}

.article .article-title .media .media-body label {
  font-weight: 600;
  color: #fc5356;
  margin: 0;
}

.article .article-title .media .media-body span {
  display: block;
  font-size: 12px;
}

.article .article-content h1,
.article .article-content h2,
.article .article-content h3,
.article .article-content h4,
.article .article-content h5,
.article .article-content h6 {
  color: #20247b;
  font-weight: 600;
  margin-bottom: 15px;
}

.article .article-content blockquote {
  max-width: 600px;
  padding: 15px 0 30px 0;
  margin: 0;
}

.article .article-content blockquote p {
  font-size: 20px;
  font-weight: 500;
  color: #fc5356;
  margin: 0;
}

.article .article-content blockquote .blockquote-footer {
  color: #20247b;
  font-size: 16px;
}

.article .article-content blockquote .blockquote-footer cite {
  font-weight: 600;
}

.article .tag-cloud {
  padding-top: 10px;
}

.article-comment {
  box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
  padding: 20px;
}

.article-comment h4 {
  color: #20247b;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 22px;
}

img {
  max-width: 100%;
}

img {
  vertical-align: middle;
  border-style: none;
}

.card-img { height: 180px; overflow: hidden; }
.card-title { height: 75px; overflow: hidden; }
.card-text { height: 97px; overflow: hidden; }
.form-signin { min-height: 300px; }
.inner-page { min-height: 350px; }
a.card_link_text {
  line-height: 19px;
}

/*Mobile view*/
@media (max-width: 667px) {
  .contact-info.d-flex.align-items-center h1 {
    display: grid;
    font-size: 30px;
  }

  a.logo {
    text-align: center;
  }
  .w-50 {
    width: 100% !important;
  }
}

.dropdown.bootstrap-select.form-control {
    border: 1px solid;
}

/*Start vision Bangladesh Here*/

/*.img {
    border-radius: 10px!important;
}*/

.blog-item {
    border-radius: 10px!important;
}
section.section-offwhite {
    /* background-color: #FCFBF1 !important; */
    color: #fff!important;
}

section.section-green h1 {
    color: #fff!important;
}


section.slogan-section {
    background: red;
}
section.title-section.py-80.pd-2.volunteering {
    background: green;
}


/**{
box-sizing: border-box;
padding: 0;
margin: 0;
}*/
html{
scroll-behavior: smooth;
}

/*.img-box img{
display: block;
width: 100%;
height: 30rem;
object-fit: cover;
}*/
.grid {
display: grid;
grid-template-columns: respeat(3, 1fr);
justify-content: center;
grid-gap: 2rem;
text-align: center;
width: 90%;
margin: auto;
}

.card {
display: block;
overflow: hidden;
/*border-radius: 0.6rem;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.7);
*/cursor: pointer;
transition: 0.2s;
position: relative;

}

.card-content {
position: absolute;
background-color: #F30F01;
bottom: 0;
color: #ffff !important;
width: 100%;
height: 26%;
padding: .8rem;
overflow: hidden;
transition: 0.7s;
}
.card-content h5.card-heading{
  color:#ffff;
  font-size: 19px;
}
.card-content p{
  color:#ffff;
}
.card-content p{
font-size: 1rem;
font-weight: 400;
line-height: 1.5rem;
padding: 1.2rem;
}
.card-content:hover { 
height: 100%;
transition: 0.7s;
}
.card-content.h4.card-heading {
    color: white!important;
}

.card.img-box.img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    /* border-radius: var(--border-radius); */
}
.news img {
  border: 1px solid red;
}

.banner-left__content.who h2 {
    font-size: 47px !important;
}

img {
    border-radius: 0px!important;
}

.blog-item {
    border-radius: 10px !important;
}
section.section-green {
    background-color: #008000 !important;
}
.section-green h1.section-heading__title{
  font-size:50px !important;
}
section.section-red {
    background-color: #FE0101 !important;
    
}
.table .tbody tr td {
  font-size:18px !important;
} 

footer.footer-area.section-bg-light .footercolor {
    background-color: #001a56 !important;
}
.bottom-footer {
    background-color: #022c8d   !important;
    color: rgb(255, 255, 255);
}
.blogs-details .media-body {
    color: #000;
}
.blogs-details .article-content {
    color: #000;
}

.blogs-details img {
    width: -webkit-fill-available;
    border-radius: 10px 10px; 
}

.emargency .table tbody tr td{
    color: black;
}
.blogs-details-summery {
    color: #000;
}
.widget-body.blogs-summery img {
    max-width: 100%;
    border-radius: 7px;
    margin:5px;
}
.blogs-details-summery a.blog-item__thumb-link {
    margin: 5px;
    font-size: 14px;
}
ul.social-list.donners_logo img {
  margin: -15px 5px 0px 0px;
  padding: 5px 5px 5px 0px;
}
.donner.col-lg-10.justify-content-center {
  padding-left: 1px;
}
.blog-item__content {
    background-color: hsl(var(--white) / 0.07);
    padding: 12px 13px !important;
    height: 100%;
}



/*navbar section here*/


/*.header-wrapper .menu-wrapper ul.main-menu a {
    padding: 14px 15px;
    font-weight: 700;
    color: hsl(var(--dark));
    border-right: 1px #ffff; 
    border-right: solid 1px #fff;
    background: #4d4d4d;
}*/
/*.header-wrapper .menu-wrapper ul.main-menu a {
    padding: 0px 15px;
    font-weight: 700;
    color: hsl(var(--dark));
}*/
.header-wrapper .menu-wrapper ul.main-menu a {
    padding: 15px!important;
    font-size: 17px;
}
@media screen and (max-width: 1200px) {
  .form-inline .form-control {
    width: 197px;
  }
}


/*navbar section here End*/

.about-banner-section {
    position: relative;
    z-index: 1;
    padding: 160px 0px 8px;
    background: hsl(var(--base) / 0.02);
    overflow: hidden;
}
/*.partner.justify-content-center h5.footer-menu-logo {
    margin-left: 204px;
}*/
.partner.justify-content-center ul.social-list.donners_logo {
  margin-left: 229px;
}
/*Slider Image here Start*/
.pics {
    /* width: 700px; */
    width: 584px;
    height: 365px;
    align-content: center;
    margin-top: 18px;
    margin-left: 242px;
    border: 3px solid #ffffff;
    margin-bottom: 53px;
}
h1.planned_head.section-heading__title {
    padding: 0px !important;
}
.watch_and_sec.section-heading.text-center {
    margin-bottom: 38px;
  }
.carousel-inner{
  position: relative;
  /*left: 30vw;
  top: 10vh;*/
  max-width: 1064px;
}
.carousel-control-next-icon {
    position: relative;
    right: 0vw;
    top: 2vh;
}
.carousel-control-prev-icon {
    position: relative;
    left: 0vw;
    top: 2vh;
}



/*Slider Image here Start*/ 
.button-volunteering h3 {
  color: white;
}

.bottom-footer.copyright {
    text-align: end !important;
}
.table.planned_table thead tr th {
  background-color: #ffffff;
  text-align: center;
  font-size: 15px;
  padding: 15px 11px !important;
  color: hsl(0, 0%, 0%);
  font-family: var(--heading-font);
  font-weight: 500;
  border: 1px solid hsl(var(--base) / 0.1);
  max-width: 170px;
  font-size: 18px !important;
}
.blog-item__content {
    background-color: hsl(233.13deg 100% 46.06% / 7%);
    padding: 35px 25px;
    height: 100%;
}
.blog-blue {
  background-color: #003495 !important;
}
.blog-green {
  background-color: #69BB9B !important;
}
.blog-orange {
  background-color: #FA8D1C !important;
}
.blog-red {
  background-color: #F3C511 !important;
}
.picture-clr {
  background-color: #5ec09c !important;
}


.blog-blue .card-content{
  background-color: #CF6C1A !important;
}
.blog-green .card-content{
  background-color: #FF6FFF !important;
}
.blog-orange .card-content{
  background-color: #CF6C1A !important;
}
.blog-red .card-content{
  background-color: #CF6C1A !important;
}
/*.blog-item__content a {
    color: white;
}*/
.card-content {
  position: absolute;
  background-color: #F30F01;
  bottom: 0;
  color: #ffff !important;
  width: 100%;
  height: 30%;
  padding: 17px;
  overflow: hidden;
  transition: 0.7s;
}
i.fas.fa-caret-down {
    color: #8aadff !important;
}
.footer-item__logo a img {
  max-width: 316px !important;
}

section.section-gray {
    background-color: #DBDFE2 !important;
}


.monospace {
  font-family: fantasy!important;
}
h1 {
    color: #022d9e  !important;
    line-height: 1.1;
    word-break: break-word;
}
.btn-danger {
    background-color: #399639 !important;
    border-radius: 25px !important;
}
.btn-danger:hover {
    color: #fff;
    background-color: #399639 !important;
    border-radius: 25px !important;
    border-color: #fff;
}
h3 {
        margin: -9px -19px -9px -19px !important;
    font-family: var(--heading-font);
    color: #FFFFFF !important;
    line-height: 1.1;
    word-break: break-word;
}
h3.double {
  border-style: solid !important;
  border-radius: 25px !important;
  padding: 15px;
}

.halfradious img {
    border-radius: 25px 0px 25px !important;
    box-shadow: 0 5px 5px #939393;
}
h3{
    margin: 0 0 0px 0 !important;
    font-family: var(--heading-font);
    color: hsl(var(--heading-color));
    line-height: 1.1;
    word-break: break-word;
}

.btn {
    color: hsl(var(--white));
    font-weight: 500;
    padding: 2px 2px !important;
    /* border-radius: 15px 0px 15px; */
    position: relative;
    z-index: 1;
    text-align: center;
    border: 1px solid transparent;
    text-transform: capitalize;
    font-weight: 600;
    transition: 0.5s;
    font-family: var(--heading-font);
    font-size: 17px;
}

.volunteer.blog-item__thumb img {
  border-radius: 0 0 0 0 !important;
  box-shadow: 0 10px 5px #939393;
}
body {
    color: #FFFFFF !important;
}
.bottom-footer-menu {
    float: right !important;
}
.copyright a {
    color: #FFFFFF !important;
}
.bottom-footer-menu a {
    color: #FFFFFF !important;
}
/* a {
    color: #000000 !important;
} */
.fa-location-dot:before, .fa-map-marker-alt:before {
    content: "\f3c5";
     color: black !important;
}
.fa-phone:before {
    content: "\f095";
    color: black !important;
}
.footer-item__title::after {
  background-color: #ffffff  !important;
}

.picture-section .blog-item__thumb {
    float: left !important;
}
ul.main-menu.site-menu a {
    color: #003495 !important;
    line-height: 1.3rem;
    border-right: solid 0px #003495;
}

@media (max-width: 992px) {
    .header-wrapper .logo-wrapper.menu-show-hide img{
        display: block!important;
    }
}

@media (min-width: 992px) {
    .col-lg-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 75.333333% !important;
        max-width: 83.333333%;
    }
}

i.fas.fa-caret-down {
    position: absolute;
    font-size: 20px;
    top: 50%;
    right: 6px !important;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 26px !important;
}


/* Create two equal columns that floats next to each other */
.column {
    float: left;
    width: 49%;
    padding: 0px;
    height: 230px;
    margin-top: 20px;
    margin-left: 0px;
}
.column-picture {
    /* float: left; */
    width: 49%;
    /* padding: 0px; */
    /* height: 298px; */
    /* margin-right: 11px !important; */
}
.speak-content{
    margin-left: 0px;
    height: 250px;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
/*.row .img-left img {
    height: 284px !important];
    width: 177px !important;
}*/
.img-left {
  float: left;
  width: 45%;
  padding: 0px;
   /* Should be removed. Only for demonstration */
}
.content-right {
    float: right;
    width: 55%;
    padding: 0px;
   
}
.mission-vision-image img {
  margin-right: auto;
  margin-left: auto;
  display: block;
}
.blog-item__content_explore {
    background-color: hsl(var(--white) / 0.07);
    padding: 0px 0px !important;
    height: 100%;
}
.column {
    margin-right: 0px !important;
}

.row.speak-picture {
  margin-top: 20px !important;
  margin-bottom: 33px;
}
.new-image {
  margin-bottom: 16px;
}
.row.speak-picture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
   /* margin-right: -15px;
    margin-left: -15px;
    height: 363px;*/
}
 /* Should be removed. Only for demonstration */
 .csslider {
            -moz-perspective: 1300px;
            -ms-perspective: 1300px;
            -webkit-perspective: 1300px;
            perspective: 1300px;
            display: inline-block;
            text-align: left;
            position: relative;
            margin-bottom: 22px;
        }
        .csslider > input {
            display: none;
        }
        .csslider > input:nth-of-type(10):checked ~ ul li:first-of-type {
            margin-left: -900%;
        }
        .csslider > input:nth-of-type(9):checked ~ ul li:first-of-type {
            margin-left: -800%;
        }
        .csslider > input:nth-of-type(8):checked ~ ul li:first-of-type {
            margin-left: -700%;
        }
        .csslider > input:nth-of-type(7):checked ~ ul li:first-of-type {
            margin-left: -600%;
        }
        .csslider > input:nth-of-type(6):checked ~ ul li:first-of-type {
            margin-left: -500%;
        }
        .csslider > input:nth-of-type(5):checked ~ ul li:first-of-type {
            margin-left: -400%;
        }
        .csslider > input:nth-of-type(4):checked ~ ul li:first-of-type {
            margin-left: -300%;
        }
        .csslider > input:nth-of-type(3):checked ~ ul li:first-of-type {
            margin-left: -200%;
        }
        .csslider > input:nth-of-type(2):checked ~ ul li:first-of-type {
            margin-left: -100%;
        }
        .csslider > input:nth-of-type(1):checked ~ ul li:first-of-type {
            margin-left: 0%;
        }
        .csslider > ul {
            position: relative;
            width: 365px;
            height: 197px;
            z-index: 1;
            font-size: 0;
            line-height: 0;
            border: 1px solid #ffffff;
            margin: 0 auto;
            padding: 0;
            overflow: hidden;
            white-space: nowrap;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }
        .csslider > ul > li {
            position: relative;
            display: inline-block;
            width: 100%;
            height: 100%;
            overflow: hidden;
            font-size: 15px;
            font-size: initial;
            line-height: normal;
            -moz-transition: all 0.5s cubic-bezier(0.4, 1.3, 0.65, 1);
            -o-transition: all 0.5s ease-out;
            -webkit-transition: all 0.5s cubic-bezier(0.4, 1.3, 0.65, 1);
            transition: all 0.5s cubic-bezier(0.4, 1.3, 0.65, 1);
            vertical-align: top;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            white-space: normal;
        }
        .csslider > .navigation {
            position: absolute;
            bottom: -8px;
            left: 50%;
            z-index: 10;
            margin-bottom: -10px;
            font-size: 0;
            line-height: 0;
            text-align: center;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -khtml-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
        .csslider > .navigation > div {
              margin-left: -100%;
        }
        .csslider > .navigation label {
            position: relative;
            display: inline-block;
            cursor: pointer;
            border-radius: 50%;
            margin: 0 4px;
            padding: 4px;
            background: #e3dddd;
        }
        .csslider > .navigation label:hover:after {
            opacity: 1;
        }
        .csslider > .navigation label:after {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            margin-left: -6px;
            margin-top: -6px;
            background: #463f3f;
            border-radius: 50%;
            padding: 6px;
            opacity: 0;
        }
        .csslider > .arrows {
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -khtml-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
        .csslider.inside .navigation {
            bottom: 10px;
            margin-bottom: 10px;
        }
        .csslider > input:nth-of-type(1):checked ~ .navigation label:nth-of-type(1):after,
        .csslider > input:nth-of-type(2):checked ~ .navigation label:nth-of-type(2):after,
        .csslider > input:nth-of-type(3):checked ~ .navigation label:nth-of-type(3):after,
        .csslider > input:nth-of-type(4):checked ~ .navigation label:nth-of-type(4):after,
        .csslider > input:nth-of-type(5):checked ~ .navigation label:nth-of-type(5):after,
        .csslider > input:nth-of-type(6):checked ~ .navigation label:nth-of-type(6):after,
        .csslider > input:nth-of-type(7):checked ~ .navigation label:nth-of-type(7):after,
        .csslider > input:nth-of-type(8):checked ~ .navigation label:nth-of-type(8):after,
        .csslider > input:nth-of-type(9):checked ~ .navigation label:nth-of-type(9):after,
        .csslider > input:nth-of-type(10):checked ~ .navigation label:nth-of-type(10):after,
        .csslider > input:nth-of-type(11):checked ~ .navigation label:nth-of-type(11):after {
            opacity: 1;
        }
        .csslider > .arrows {
            position: absolute;
            left: -31px;
            top: 50%;
            width: 100%;
            height: 26px;
            padding: 0 31px;
            z-index: 0;
            -moz-box-sizing: content-box;
            -webkit-box-sizing: content-box;
            box-sizing: content-box;
        }
        .csslider > .arrows label {
            display: none;
            position: absolute;
            top: -50%;
            padding: 6px;
            box-shadow: inset 2px -2px 0 2px #d3d0d0;
            cursor: pointer;
            -moz-transition: box-shadow 0.15s, margin 0.15s;
            -o-transition: box-shadow 0.15s, margin 0.15s;
            -webkit-transition: box-shadow 0.15s, margin 0.15s;
            transition: box-shadow 0.15s, margin 0.15s;
        }
        .csslider > .arrows label:hover {
            box-shadow: inset 3px -3px 0 2px #ff0000;
            margin: 0 0px;
        }
        .csslider > .arrows label:before {
            content: '';
            position: absolute;
            top: -100%;
            left: -100%;
            height: 300%;
            width: 300%;
        }
        .csslider.infinity > input:first-of-type:checked ~ .arrows label.goto-last,
        .csslider > input:nth-of-type(1):checked ~ .arrows > label:nth-of-type(0),
        .csslider > input:nth-of-type(2):checked ~ .arrows > label:nth-of-type(1),
        .csslider > input:nth-of-type(3):checked ~ .arrows > label:nth-of-type(2),
        .csslider > input:nth-of-type(4):checked ~ .arrows > label:nth-of-type(3),
        .csslider > input:nth-of-type(5):checked ~ .arrows > label:nth-of-type(4),
        .csslider > input:nth-of-type(6):checked ~ .arrows > label:nth-of-type(5),
        .csslider > input:nth-of-type(7):checked ~ .arrows > label:nth-of-type(6),
        .csslider > input:nth-of-type(8):checked ~ .arrows > label:nth-of-type(7),
        .csslider > input:nth-of-type(9):checked ~ .arrows > label:nth-of-type(8),
        .csslider > input:nth-of-type(10):checked ~ .arrows > label:nth-of-type(9),
        .csslider > input:nth-of-type(11):checked ~ .arrows > label:nth-of-type(10) {
            display: block;
            left: 0;
            right: auto;
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
        }
        .csslider.infinity > input:last-of-type:checked ~ .arrows label.goto-first,
        .csslider > input:nth-of-type(1):checked ~ .arrows > label:nth-of-type(2),
        .csslider > input:nth-of-type(2):checked ~ .arrows > label:nth-of-type(3),
        .csslider > input:nth-of-type(3):checked ~ .arrows > label:nth-of-type(4),
        .csslider > input:nth-of-type(4):checked ~ .arrows > label:nth-of-type(5),
        .csslider > input:nth-of-type(5):checked ~ .arrows > label:nth-of-type(6),
        .csslider > input:nth-of-type(6):checked ~ .arrows > label:nth-of-type(7),
        .csslider > input:nth-of-type(7):checked ~ .arrows > label:nth-of-type(8),
        .csslider > input:nth-of-type(8):checked ~ .arrows > label:nth-of-type(9),
        .csslider > input:nth-of-type(9):checked ~ .arrows > label:nth-of-type(10),
        .csslider > input:nth-of-type(10):checked ~ .arrows > label:nth-of-type(11),
        .csslider > input:nth-of-type(11):checked ~ .arrows > label:nth-of-type(12) {
            display: block;
            right: 0;
            left: auto;
            -moz-transform: rotate(225deg);
            -ms-transform: rotate(225deg);
            -o-transform: rotate(225deg);
            -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
        }
/*#region MODULES */
/*#endregion */
/*___________________________________ LAYOUT ___________________________________ */
        * {
            margin: 0;
            padding: 0;
        }
        ul {
            padding-left: 40px;
        }

            #slider1 {
            margin: 20px;
            font-family: 'Lato';
        }
        #slider1 > input:nth-of-type(3):checked ~ ul #bg {
            width: 80%;
            padding: 22px;
            -moz-transition: .5s .5s;
            -o-transition: .5s .5s;
            -webkit-transition: .5s .5s;
            transition: .5s .5s;
        }
        #slider1 > input:nth-of-type(3):checked ~ ul #bg div {
            -moz-transform: translate(0);
            -ms-transform: translate(0);
            -o-transform: translate(0);
            -webkit-transform: translate(0);
            transform: translate(0);
            -moz-transition: .5s .9s;
            -o-transition: .5s .9s;
            -webkit-transition: .5s .9s;
            transition: .5s .9s;
        }
/*#videos */
/*___________________________________ LAYOUT ___________________________________ */
        video { 
            width:710px; 
            height:400px;  
            background:transparent url('') no-repeat 0 0; 
            -webkit-background-size:cover; 
            -moz-background-size:cover; 
            -o-background-size:cover; 
            background-size:cover; 
        }
        p {
            margin-left:3em;
        }s
 

.banner-section {
    background-color: white !important;
}
.row.speak-picture.blog-green.column-picture.left h5 {
    font-size: var(--heading-four);
    font-weight: 500;
    margin-left: 133px !important;
    margin-top: 10px !important;
}
h5.speaking_title {
    /* margin-left: 191px; */
    margin-top: 37px;
    color: white;
    text-align: center;
    padding: 5px 0px;
    font-size: 29px;
}
.btn {
    color: hsl(var(--white));
    /* border-radius: 27px 27px 27px 27px!important; */
  }
  body {
    font-family: var(--heading-font);
    color: hsl(var(--body-color));
    word-break: break-word;
    background-color: hsl(0, 0%, 100%) !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.row-white{
  background-color: white !important;
}
/*header*/
.contact-list__item {
    padding: 0px 0px 0px !important;
    position: relative;
    color: hsl(var(--white));
}
.top-button {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    align-items: center;
}
.header-wrapper {
    padding: 0px 0px !important;
}

ul.logo-wrapper.contact-list__item {
    padding: 2px 20px 0px;
    position: relative;
    color: hsl(var(--white));
    width: 307px;
}

@media screen and (max-width: 1247px) {
    .header-wrapper .menu-wrapper ul.main-menu a {
        font-size: 15px!important;
    }
}
@media screen and (max-width: 1200px) {
    .header-wrapper .menu-wrapper ul.main-menu a {
        font-size: 13px!important;
        padding:9px 12px!important;
    }
}
@media screen and (max-width: 1000px) {
    .header-wrapper .menu-wrapper ul.main-menu a {
        font-size: 12px!important;
        padding:9px 11px!important;
    }
}

.banner-left__content.who p {
    padding: 0px 0px 0px 0px !important;
    text-align: justify;
}
.banner-left__content.who h2 {
    text-align: center;
}
.banner-right-wrap {
    margin-left: 0px !important;
    padding: 12px !important;
}
@media (min-width: 1320px) {
    .container {
        max-width: 1440px;
    }
    .what_do_detail.container {
        max-width: 1240px;
    }
}

/*28/10/24*/



.table thead tr th:last-child {
    text-align: center !important;
}
.table thead tr th:first-child {
  text-align: center !important;
}
/* .table thead tr th:first-child {
    text-align: center !important;
} */
.table tbody tr td:first-child {
    text-align: center !important;
}
.card-content p {
  padding: 24px !important;
}


@media screen and (max-width: 767px) {
   h5 {
        margin: 15px 0 10px 0;
    }
}
.header-wrapper .menu-wrapper ul.main-menu a {
    padding: 10px 18px !important;
    font-size: 16px !important;
    line-height: 25px;
}
.header-wrapper .menu-wrapper ul.main-menu a {
    padding: 0px 15px;
    font-weight: 0 !important;
    color: hsl(var(--dark));
}
/*Vision Bangladesh picture start Here*/
.gallery{
    width: 900px;
    display: flex;
    overflow-x: scroll;
}
.gallery div{
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto;
/*    grid-gap: 20px;*/
    padding: 10px;
    flex: none;
}
.gallery div img{
    width: 100%;
    filter: grayscale(100%);
    transition: transform 0.5s;
}
.gallery img {
    width: 256px;
    height: 375px;
}
.gallery::-webkit-scrollbar{
    display: none;
}
.gallery-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10% auto;
}
#backBtn,#nextBtn{
    width: 50px;
    cursor: pointer;
    margin: 40px;
}
.gallery div img:hover{
    filter: grayscale(0);
    cursor: pointer;
    transform: scale(1.1);
}
  .banner-left__content.who {
    margin-right: 7px !important;
  }
.whatwedo-ttle.section-heading__title {
    padding: 52px 0px 20px 0px;
  }  
  .banner-right-wrap {
    margin-left: 0px !important;
    padding: 14px 14px !important;
  }
  .banner-section {
    padding: 186px 0 25px;
  }
  
  .blog_sec.section-heading.text-center {
    margin-bottom: 18px !important;
  }
  h1.explore_sec.section-heading__title {
    padding: 28px 0px 0px 0px !important;
  }
/*Vision Bangladesh picture End Here*/


@media (min-width: 768px) {
    .col-md-8 {
        color: black !important;
    }
}
@media (min-width: 768px) {
    .col-md-12 {
        color: black !important;
    }
}
/*-----------Design by Zaky-------Start------*/
/* .row.small-blog.blog-item {
    padding: 50px;
   margin: 14px !important;
} */
.row.small-blog .row.blog-item {
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 100%;
    margin: 16px !important;
/*    height: 122px;*/
}
/* .blog-item__thumb img {
  height: 112px !important;
} */
.blog-item__title {
    margin-top: 0px !important;
}
.sidebar-menu-wrapper {
    background-color: #003495  !important;
}
span.text-color {
    color: #fff;
}
.fa-solid, .fas {
    font-weight: 800;
    color: #ffffff;
}
a.sidebar-menu-list__link {
    color: #fff !important;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a {
    border-bottom: solid 1px #fff ;
}
.career-content .halfradious img {
    border-radius: 0px !important; 
    box-shadow: 0 5px 5px #999999;
    margin-bottom: 43px;
}
.career-content .table-bordered {
    border: 0px solid #dee2e6 !important; 
}
.field-item.even hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 3px solid rgb(0 0 0 / 10%);
}
ul.Volunteering-type {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-left: 78px;
    font-size: 18px;
}
body {
    color: #040404 !important;
}
.contactus-form {
    border-radius: 0px !important;
}
.contactus-form {
    /* border: 1px solid hsl(var(--base) / 0.1); */
    background-color: hsl(var(--white) / 0.1);
    /* padding: 40px 30px; */
    border-radius: var(--border-radius);
}
.field-item.even h4{
    margin: 0 0 15px 0;
    font-family: var(--heading-font);
    color: hsl(var(--heading-color));
    line-height: 1.4;
    word-break: break-word;
}

.be-friend-form .btn {
    border-radius: 0px !important; 
}
.volunteering-form .btn {
    border-radius: 0px !important; 
}
.important-line p {
    text-align: center !important;
    color: red;
    font-size: 15px;
}
.testimonials .testimonial-item p {
    font-style: normal !important;
    margin: 0 auto 15px auto;
    color: #000000 !important;
}
.testimonials::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(255 255 255 / 50%);
}
.slick-slide.slick-current.slick-active .testimonial-item {
    background-color: hsl(var(--white));
    padding: 30px 20px;
    border-radius: 0px; 
    position: relative;
    height: 100%;
    margin-bottom: 50px;
    display: flex;
}
@media (min-width: 992px) {
    .py-80 {
        padding-top: 0px !important;
        padding-bottom: 80px;
    }
}
.vedio-item__thumb iframe {
  width: 100%;
  min-height: 400px;
}
.vedio-item__title {
  color: #000000;
  text-align: justify;
}
.slick-slide.slick-current.slick-active .testimonial-item {
    box-shadow: 0px 15px 30px rgba(61, 90, 125, 0.08);
    box-shadow: 0px 10px 7px 0px #939393;
}
section.support-us-section{
    background-color: #ffffff;
} 
section.section-green {
    background-color: #28A745 !important;
    
}
section.orange-green {
    background-color: #CF6C1A !important;
    
}
.where_sec h1.where_work_heading {
    font-size: 25px;
    padding: 16px;
    color: #ffffff !important;
    margin: 0 0 0px 0;
    font-weight: 400;
}
.every_section_where {
    margin-top: 193px;
}
.pyy-80 {
        padding-top: 60px;
        padding-bottom: 80px;
    }

section.section-green .section-heading {
    margin-bottom: 27px;
    position: relative;
}
.subtitle.text-center .btn {
  color: hsl(0deg 0% 100%);
  border-radius: 0px !important;
  height: 50px;
  width: 305px;
}
.be-fri-tbl-text {
  padding-left: 15px;
  padding-right: 15px;
}
.btn--base {
    background-color: #5ec09c;
}
.testimonial-item__name {
    font-size: 28px;
}
h5.testimonial-item__name.orange-color {
    color: #f4c614;
    /* margin-left: 201px; */
    text-align: center;
    font-size: 20px;
}
h4.testimonial-item__name.donation-title {
    font-size: 25px;
    /* margin-left: 77px; */
    text-align: center;
}
.content-padding {
    /* padding: 12px; */
    text-align: justify;
}
.container.backg_color_offwhite {
    background-color: #eafffc;
    padding: 41px 6px;
}
.backg_color_offbtn {
    background-color: #eafffc;
    padding: 41px 6px;
}
img.vison_img {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 31%;
    border: 1px solid;
    margin-top: 0px;
}
section.values-section-padding {
    padding-top: 30px;
    padding-bottom: 30px;
    background: #fff;
}
section.goal-section-padding {
  background: #fff;
}
section.values-des-section-padding {
    padding-bottom: 30px;
    background: #fff;
}
.vlu_des_img {
    float: left;
}
img.values_imgs {
  float: right;
  width: 40%;
  margin-bottom: 20px;
}
img.values_img {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.vlu_des_txt {
    padding: 11px 0px;
}
h4.vlu_des_txt_hd {
    margin: 0 0 0px 0;
    font-weight: 600;
}
h2.gui_plc_hd {
    background-color: #022d9e;
    margin-right: 1000px;
    border-radius: 0px 30px 30px 0px;
    padding: 14px;
    text-align: center;
    color: #fffafa;
    font-weight: 400;
    font-size: 30px;
    text-transform: uppercase;

}
i.fa-solid.fa-arrow-right-from-bracket {
    display: inline-block; 
    width: 38px;
    height: 34px;
    line-height: 30px;
    text-align: center;
    color: #ffffff;
    background-color: #5ec09c;
    margin-right: 30px;
    font-size: 18px;
    float: left;
    border-radius: 0px 10px 10px 0px;
}
h5.gui_plc_des {
    font-weight: 400;
    padding: 2px;
}
h5.gui_plc_des {
    font-weight: 200;
    font-size: 18px;
}
.guiding_pol_des {
    padding: 1px 250px;
}
p.vlu_des_txt_des {
    line-height: 20px;
    font-size: 16px;
    padding-top: 3px;
    text-align: justify;
}
.table-every.every-section-padding {
  padding-top: 30px;
  padding-bottom: 38px;
}
.get-btn.btn::before {
  background-color: #5ec09c;
  border-radius: 0px 0px 0px;
}
h5.get-btn.btn.btn--base.mt-3.tab_btn {
  padding: 11px 0px !important;
  width: 305px;
}
.evry_vlue_des_content {
    background-color: #fffbe9;
    margin: 7px 0px;
    border: 1px solid #e9e2bd;
}
h2.vision_title {
    text-align: center;
    color: #5ec09c;
}
.content-padding h1 {
  text-align: center;
  font-size: 26px;
  color: #022d9e  !important;
  margin: 0 0 5px 0 !important;
}
.what-wedo .content-padding h1{
    text-align: left !important;
    margin-left: 8px !important;
}
.banner-right-wrap {
    margin-left: 0px !important;
}
.banner-right-wrap {
    margin-left: 0px !important;
    padding: 0px !important; 
}
.padding-section{
    background-color: #FFFFFF;
    padding-bottom: 85px;
}
.every-section-padding {
  background-color: #FFFFFF;
  padding-top: 0px;
  padding-bottom: 15px;
}
.mission-section-padding{
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #FFFFFF;

}
section.about-banner-section {
  background-color: #fff;
}
section.guiding-polices-section-padding {
  background-color: #fff;
  padding-top: 33px;
}
.home-pad-rmv {
  padding-right: 0px !important;
  padding-left: 15px !important;
}
section.vison-section {
  background-color: #ffff;
}
.container.backg_color_offblue {
    background-color: #fffbe9;
    padding: 23px 42px; 
}
h3.account-form__title {
  color: #000000 !important;
}
.vls_img {
    padding-left: 103px;
    padding-top: 27px;
}
h2.values_title {
    color: #32b932;
    padding: 51px 0px;
    font-weight: 700;
}
img.mission_img {
    float: right;
    width: 29%;
}
h2.mission_title {
    margin-top: 17px;
    color: #5ec09c; 
    text-align: center; 
}
.gl_img img.gl_img {
  float: right;
    width: 30%;
}
.evry_goal_bllt_point {
    background-color: #FFFFFF;
    box-shadow: 3px 3px 5px 0px #b9b9b9;
}
i.fa-solid.fa-greater-than {
    display: inline-block;
    line-height: 38px;
    text-align: center;
    color: #60c19d;
    margin-right: 14px;
    font-size: 13px;
    float: left;
    padding-left: 17px;
}
.goal_bllt_point {
    padding: 0px 200px;
}
.last-section-padding{
    background-color: #FFFFFF;
    padding-top: 30px;
    padding-bottom: 70px;
}
section.guiding-polices-des-section-padding{
    padding-top: 30px;
    padding-bottom: 70px;
    background: #fff;
}
.banner-section-whatwedo {
    position: relative;
    z-index: 1;
    padding: 151px 0 30px;
    background: #fff;
    overflow: hidden;
}
.banner-section-geo {
  position: relative;
  z-index: 1;
  padding: 167px 0 21px;
  background: #fff;
  overflow: hidden;
}
.get_invol.banner-section {
  padding: 201px 0 25px;
}
.section-main-heading h1 {
    font-size: 40px;
    color: #E11B22 !important;
    padding: 21px;
    text-align: center;
}
.banner-left__content.heading-content-whatwework {
    background-color: #E0F8F2 !important;
    height: 90px !important;
}
.background__content.sm_description {
  height: 100% !important;
}
/* .row.align-items-center {
    padding: 18px 0px;
} */
h4.map-description {
    text-align: center;
}
h1.ongoing_heading__title {
  font-size: 44px;
  padding: 27px 0px;
  text-align: center;
  color: #ffffff !important;
  margin: 0 0 0px 0 !important;
}
section.section-network-wherewework {
    background-color: #e11b22  !important;
    margin-right: 993px;
}
h1.implemented_heading__title {
    font-size: 25px;
    padding: 16px 0px;
    text-align: center;
    color: #ffffff !important;
    margin: 0 0 0px 0 !important;
    font-weight: 400;
}
h1.network_heading__title {
    font-size: 25px;
    padding: 16px 0px;
    text-align: center;
    color: #ffffff !important;
    margin: 0 0 0px 0 !important;
    font-weight: 400;
}
.table thead tr th.mr-network {
    border-left: 1 !important; 
} 
.last-section-home {
    /* padding-top: 30px; */
    padding-bottom: 54px;
}
.main-sidebar.sidebar-dark-primary {
  background-color: #02339f;
}
.sidebar-dark-primary .nav-sidebar>.nav-item>.nav-link.active {
  background-color: #5fbc99 !important;
}
i.fab.fa-youtube, i.fab.fa-x-twitter {
  color: #ffffff;
}
i.fa-solid.fa-envelope {
  margin-left: 0px;
}
i.fas.fa-phone {
  margin-left: 0px;
}
.footer-item__title::after {
  width: 100% !important;
}
.donner.col-lg-12.justify-content-center {
  margin-left: -15px !important;
}





/*-----------Design by Zaky-------End------*/ 
/*-----------Media Query by Zaky-------vison start------*/ 


/*-----------Media Query by Zaky-------vison end------*/ 
@media(max-width:1699px) {
  .header-main-area .container-fluid {
    padding: 0 50px !important;  
  }
  .theory-sec.hero-des-vb {
    padding-bottom: 37px;
  }
  .about-banner-section {
    padding: 107px 0px 8px !important;
  }
  .banner-section-whatwedo{
    padding: 123px 0 30px !important;
  }
  .banner-section-geo {
    padding: 135px 0 21px !important;
  }
  .get_invol.banner-section {
    padding: 116px 0 25px !important;
  }
  section.career-sec.car-section.section_title_geo {
    padding: 132px 0 25px !important;
  }
  section.be-friend.banner-section.bg-img{
    padding: 132px 0 25px !important;
  }
  .support_us.banner-section.bg-img{
    padding: 132px 0 25px  !important;
  }
}

@media(max-width:1499px) {
  .header-main-area .container-fluid {
    padding: 0 13px !important;  
  }
  .theory-sec.hero-des-vb {
    padding-bottom: 37px;
  }
  .about-banner-section {
    padding: 107px 0px 8px !important;
  }
  .banner-section-whatwedo{
    padding: 123px 0 30px !important;
  }
  .banner-section-geo {
    padding: 135px 0 21px !important;
  }
  .get_invol.banner-section {
    padding: 116px 0 25px !important;
  }
  section.career-sec.car-section.section_title_geo {
    padding: 132px 0 25px !important;
  }
  section.be-friend.banner-section.bg-img{
    padding: 132px 0 25px !important;
  }
  .support_us.banner-section.bg-img{
    padding: 132px 0 25px  !important;
  }
}

@media(max-width:1399px) {

  .banner-section {
    padding: 84px 0 61px !important;
  }
  .header-wrapper .ribbon-image.logo-wrapper img {
    width: 265px !important;
  }
  .get_invol.banner-section {
    padding: 110px 0 6px !important;
  }
  .banner-section-whatwedo {
    padding: 110px 0 6px !important;
  }
  .about-banner-section {
    padding: 110px 0px 30px !important;
  }
  .support_us.banner-section.bg-img {
    padding: 110px 0 6px !important;
  }
  .whatwe-do-every .content-padding {
    padding: 17px 11px !important;
  }
  .what-wedo .content-padding {
    padding: 17px 11px !important;
  }
  .geo-slogan.banner-section-geo {
    padding: 110px 0 6px;
  }
.career-sec.car-section.section_title_geo {
    padding: 110px 0 6px !important;
  }
  .be-friend.banner-section.bg-img {
    padding: 110px 0 6px !important;
  }
  .where_sec h1.where_work_heading {
    font-size: 40px !important;
  }
  .every-section-padding {
    padding-top: 39px;
    padding-bottom: 15px;
  }
  .goal_txt_des h4 {
    padding: 15px 0px 15px 29px;
  }
  h2.goal_title {
    margin-top: 45px;
  }
  .vlue_content h2.goal_title {
    margin-top: 59px;
  }
  .banner-left__content.who {
    margin-right: 20px !important;
  }
  ul.social-list.donners_logo img {
    margin: -12px -17px 0px -15px !important;
  }
  section.career-sec.banner-section.section_title_geo {
    padding: 212px 0 61px !important;
  }
  section.career-sec.banner-section.bg-img {
    padding: 0px 0 61px !important;
  }
  .main_slogan.section-heading.text-center {
    margin-bottom: 0px !important;
  }
  img.vison_img {
    margin-top: 0px;
  }
  i.fas.fa-caret-down {
    right: 4px !important;
  }
  h2.gui_plc_hd {
    margin-right: 654px;
  }        
  h4.professional {
    margin: 31px 0 0px 0 !important;
  }
  .banner-left__content p {
    text-align: justify !important;
    padding: 11px 0px !important;
  }
  .testimonial-item__content p {
    text-align: justify !important;
  }
  .field-item.even h5 {
    text-align: justify !important;
    padding: 0px 7px !important;
  }
  ul.Volunteering-type {
    margin-left: 29px !important;
  }
  h4.testimonial-item__name.donation-title {
    margin-left: 43px !important;
    text-align: center  ;
  }
  .widget-body.blogs-summery img {
    margin: 4px !important;
  }
  .content-padding {
    padding: 17px 0px !important;
  }
  .row.align-items-center {
    padding: 0px 0px !important;
  }
  .header-wrapper .menu-wrapper ul.main-menu a {
    padding: 15px !important;
  }
  .banner-right-wrap {
    margin-left: 13px !important;
  }
  .form-inline .form-control {
        width: 141px !important;
  }
  .pt-40 {
        padding-top: 0px !important;
  }
  .header-wrapper .menu-wrapper ul.main-menu a {
    font-size: 15px !important;
  }
  .banner-left__content.who h2 {
    font-size: 31px !important;
  }
  .banner-left__content.who p {
    padding: 0px 0px 0px 0px !important;
  }
  .banner-left__content h2 {
    margin-bottom: 1px !important;
  }
  .section-red h1.section-heading__title {
    font-size: 48px !important;
  }
  .card-content h5.card-heading {
    font-size: 16px !important;
  }
  .card-content:hover {
    height: 100%;
    transition: 0.7s;
  }
  .form-inline .form-control {
        width: 141px !important;
  }
  .header-wrapper .menu-wrapper ul.main-menu a {
    font-size: 15px !important;
  }
  .banner-left__content.who h2 {
    font-size: 31px !important;
  }
  .banner-left__content.who p {
    padding: 0px 0px 0px 0px !important;
  }
  .banner-left__content h2 {
    margin-bottom: 1px !important;
  }
  .section-red h1.section-heading__title {
    font-size: 48px !important;
  }
  .card-content h5.card-heading {
    font-size: 16px !important;
  }
  .form-inline .form-control {
        width: 141px !important;
  }
  .header-wrapper .menu-wrapper ul.main-menu a {
    font-size: 21px !important;
  }
  .banner-left__content.who h2 {
    font-size: 31px !important;
  }
  .banner-left__content.who p {
    padding: 0px 0px 0px 0px !important;
  }
  .banner-left__content h2 {
    margin-bottom: 1px !important;
  }
  .section-red h1.section-heading__title {
    font-size: 48px !important;
  }
  .card-content h5.card-heading {
    font-size: 16px !important;
  }
  .pics {
    margin-left: 131px !important;
    margin-bottom: 45px !important;
  }
  .section-heading {
    margin-bottom: 41px !important;
    margin-top: 33px !important;
  }
  .footer-item__title {
    margin-left: -15px !important;
  }
  .footer-item__title {
    margin-left: -15px !important;
  }
  .section-heading {
    margin-bottom: 41px !important;
    margin-top: 0px !important;
  }
  .footer-item__title {
    margin-left: -15px !important;
  }
  .volunteer_sec.volun-section.bg-img {
    padding: 39px 0 86px !important;
  }
  h4 {
    margin: 7px 0 10px 0 !important;
  }
  .important-line p {
    margin-bottom: 41px !important;
  }
  h1.network_heading__title {
    font-size: 41px !important;
    text-align: center !important;
  }
  section.section-network-wherewework {
    margin-right: 420px !important; 
  }
  section.section-red-wherewework {
        margin-right:420px !important;
    }
    h1.implemented_heading__title {
      font-size: 41px !important;
      text-align: center !important;
      margin: 0 0 0px 0 !important;
  }
  section.section-Implemented-wherewework {
    margin-left: 420px !important; 
  }
  .every_section_where {
    margin-top: 188px !important;
  }
  h1.ongoing_heading__title {
      font-size: 41px !important;
      text-align: center !important;
  }
  .where_We_work.col-lg-12.col-md-12.col-sm-12.col-12 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .table thead tr th:first-child {
    text-align: center !important;
  }
  .vlue_content.row {
    padding: 0px 0px !important;
  }
  img.values_imgs {
    width: 38% !important;
  }
  .vls_img {
    padding: 15px 0px !important;
  }
  h2.values_title {
    color: #32b932;
    padding: 74px 0px 0px 0px !important;
  }
  img.values_img {
    margin-bottom: 34px !important;
    margin-top: 34px !important;
  }
  .career-content .halfradious img {
    margin-top: 0px !important;
  }
  .donner.col-lg-10.justify-content-center {
    padding-left: 15px !important;
  }
  .footer-item__title {
    margin-top: 15px !important;
    margin-left: 55px !important;
    text-align: center;
  }
  ul.social-list.donners_logo {
    margin-left: 418px !important;
  }
  .important_link.mt-1 {
      padding-top: 11px !important;
  }
  h1.main_slogan_heading.section-heading__title {
    padding: 10px !important;
  }
  h1.explore_sec.section-heading__title {
    margin-top: 91px;
  }
  h5.testimonial-item__name.orange-color {
    margin-left: 144px;
  }
  .goal_bllt_point {
    padding: 0px 100px;
  }
  
    
}

@media(max-width:1299px) {
  .banner-section {
        padding: 87px 0 61px !important;
  }
    h1.explore_sec.section-heading__title {
      margin-top: 21px;
  }
  .social-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .header-wrapper .ribbon-image.logo-wrapper img {
    width: 239px  !important;
  }
  .geo-slogan.banner-section-geo {
    padding: 110px 0 0px;
  }
  .banner-section-whatwedo {
    padding: 110px 0 0px !important;
  }
  .goal_bllt_point {
    padding: 0px 50px 0px 50px !important;
  }
  .goal_bllt_point {
    padding: 0px 50px 0px 50px !important;
  }
  h2.goal_title {
    margin-top: 62px;
  }
  img.mission_img {
    float: right !important;
  }
  img.vison_img {
    margin-top: 8px !important;
  }
  .about-banner-section {
    padding: 110px 0px 0px !important;
  }
  .blog_sec.section-heading.text-center {
    margin-bottom: 0px !important;
  }
  .news-know-more-button {
    padding: 30px 0px 10px 0px;
  }
  .section-heading {
    margin-bottom: 41px !important;
    margin-top: 0px !important;
  }
  ul.social-list.donners_logo img {
    margin: -12px -17px 0px -15px !important;
    padding-right: 9px !important;
  }
  .banner-right-wrap {
    margin-left: 15px !important;
  }
  .get_invol.banner-section {
    padding: 110px 15px 5px !important;
  }
  .career-sec.car-section.section_title_geo {
    padding: 110px 15px 5px !important;
  }
  .be-friend.banner-section.bg-img {
    padding: 110px 0 8px !important;
  }
  .volunteer_sec.volun-section.bg-img {
    padding: 15px 15px 86px !important;
  }
  .be-friend.banner-section.bg-img {
    padding: 110px 0 25px !important;
  }
    section.be-friend.banner-section.bg-img {
      padding: 110px 0 25px !important;
  }
    .support_us.banner-section.bg-img {
      padding: 110px 0 6px !important;
  }
  .fri-padding-rmv {
    padding-right: 15px;
    padding-left: 15px;
  }
  .rmv_padding {
    padding-right: 15px;
    padding-left: 15px;
  }
  .every_sec .rmv_padding_left {
    padding-left: 15px !important;
  }
  .every_sec .rmv_padding_right {
    padding-right: 15px !important;
  }
  .footer-item__title {
    margin-top: 15px !important;
    margin-left: 55px !important;
    text-align: center;
  }
  ul.social-list.donners_logo {
    margin-left: 43px !important;
  }
  .important_link.mt-1 {
    padding-top: 13px !important;
  }
  .testimonial-item__content p {
    text-align: justify !important;
  }
  .field-item.even h5 {
    text-align: justify !important;
    padding: 0px 7px !important;
  }
  ul.Volunteering-type {
    margin-left: 29px !important;
  }
  h4.testimonial-item__name.donation-title {
    margin-left: 43px !important;
  }
  h4.testimonial-item__name.donation-title {
     margin-left: 0px !important; 
    text-align: center !important;
  }
  h5.testimonial-item__name.orange-color {
     margin-left: 0px !important; 
    text-align: center !important;
  }
  .content-padding {
    padding: 14px !important;
  }
  .form-inline .form-control {
        width: 141px !important;
  }
  .header-wrapper .menu-wrapper ul.main-menu a {
      font-size: 18px !important;
  }
  .banner-left__content.who h2 {
    font-size: 31px !important;
  }
  .banner-left__content.who p {
    padding: 0px 0px 0px 0px !important;
  }
  .banner-left__content h2 {
    margin-bottom: 1px !important;
  }
  .section-red h1.section-heading__title {
    font-size: 48px !important;
  }
  .card-content h5.card-heading {
    font-size: 16px !important;
  }
  .card-content {
    height: 32% !important;
  }
  .pics {
    margin-left: 143px !important;
    margin-bottom: 45px !important;
  }
  h4 {
      margin: 11px 0 10px 0 !important;
  }
  .career-content .halfradious img {
    margin-bottom: 30px !important;
    margin-top: 10px !important;
  }
  .important-line p {
    margin-bottom: 41px !important;
  }  
  h1.network_heading__title {
    font-size: 34px !important;
  }
  section.section-network-wherewework {
     margin-right: 420px !important; 
  }
  section.section-red-wherewework {
        margin-right:420px !important;
    }
  h1.implemented_heading__title {
    font-size: 34px !important;
  }
  section.section-Implemented-wherewework {
     margin-left: 420px !important; 
  }
  .every_section_where {
    margin-top: 188px !important;
  }
  h1.ongoing_heading__title {
    font-size: 34px !important;
  }
  .where_sec h1.where_work_heading {
    font-size: 37px !important;
  }
  .where_We_work.col-lg-12.col-md-12.col-sm-12.col-12 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .vlue_content.row {
    padding: 0px 0px !important;
  }
  h2.gui_plc_hd {
     margin-right: 388px !important; 
  }
  .guiding_pol_des {
    padding: 0px 124px !important;
  }
  .background__content.sm_description {
    height: 100%  !important;
    margin-bottom: 23px !important;
  }
  h2.vision_title {
    margin-top: 15px !important;
  }
  h5.mission_description {
    padding: 0px 0px !important;
  }
  .container {
    max-width: 1199px !important;
  }
  .vls_img {
    padding-left: 0px !important;
    padding: 14px 0px !important;
  }
  img.values_imgs {
    width: 38% !important;
  }
  h2.values_title {
    text-align: center !important;
  }
  h5.vision_description {
    padding: 0px 25px !important;
  }
.gl_img img.gl_img {
  width: 38% !important;
}
h4.vlu_des_txt_hd {
  margin: 0px 0 10px 0 !important;
}
img.values_img {
  margin-bottom: 34px !important;
  margin-top: 34px !important;
}
.vlu_des_txt {
  padding: 39px 0px !important;
}
.donner.col-lg-10.justify-content-center {
  padding-left: 15px !important;
}
i.fa-solid.fa-envelope {
  margin-left: 63px;
}
i.fas.fa-phone {
  margin-left: 48px;
}
.footer-item {
  text-align: center !important;
}
p.career_sec {
  text-align: justify !important;
}

}

@media(max-width:1199px) {

  .get_invol.banner-section {
    padding: 76px 15px 5px !important;
  }
  .banner-section {
        padding: 87px 0 61px !important;
  }
  .header-wrapper .ribbon-image.logo-wrapper img {
    width: 265px !important;
  }
  .ribbon-image.logo-wrapper.menu-show-hide {
    display: none !important;
  }
  .geo-slogan.banner-section-geo {
    padding: 191px 0 0px;
  }
  .banner-section-whatwedo {
    padding: 191px 0 0px !important;
  }
  .goal_bllt_point {
    padding: 0px 50px 0px 50px !important;
  }
  .goal_bllt_point {
    padding: 0px 50px 0px 50px !important;
  }
  h2.goal_title {
    margin-top: 62px;
  }
  img.mission_img {
    float: right !important;
  }
  img.vison_img {
    margin-top: 8px !important;
  }
  .about-banner-section {
    padding: 191px 0px 0px !important;
  }
  .blog_sec.section-heading.text-center {
    margin-bottom: 0px !important;
  }
  .news-know-more-button {
    padding: 30px 0px 10px 0px;
  }
  .section-heading {
    margin-bottom: 41px !important;
    margin-top: 0px !important;
  }
  ul.social-list.donners_logo img {
    margin: -12px -17px 0px -15px !important;
    padding-right: 9px !important;
  }
  .banner-right-wrap {
    margin-left: 15px !important;
  }
  .career-sec.car-section.section_title_geo {
    padding: 191px 15px 5px !important;
  }
  .be-friend.banner-section.bg-img {
    padding: 191px 0 8px !important;
  }
  .volunteer_sec.volun-section.bg-img {
    padding: 15px 15px 86px !important;
  }
  .be-friend.banner-section.bg-img {
    padding: 191px 0 25px !important;
  }
  .fri-padding-rmv {
    padding-right: 15px;
    padding-left: 15px;
  }
  .rmv_padding {
    padding-right: 15px;
    padding-left: 15px;
  }
  .every_sec .rmv_padding_left {
    padding-left: 15px !important;
  }
  .every_sec .rmv_padding_right {
    padding-right: 15px !important;
  }
  .footer-item__title {
    margin-top: 15px !important;
    margin-left: 55px !important;
    text-align: center;
  }
  ul.social-list.donners_logo {
    margin-left: 304px !important;
  }
  .important_link.mt-1 {
    padding-top: 13px !important;
  }
  .testimonial-item__content p {
    text-align: justify !important;
  }
  .field-item.even h5 {
    text-align: justify !important;
    padding: 0px 7px !important;
  }
  ul.Volunteering-type {
    margin-left: 29px !important;
  }
  h4.testimonial-item__name.donation-title {
    margin-left: 43px !important;
  }
  h4.testimonial-item__name.donation-title {
     margin-left: 0px !important; 
    text-align: center !important;
  }
  h5.testimonial-item__name.orange-color {
     margin-left: 0px !important; 
    text-align: center !important;
  }
  .content-padding {
    padding: 14px !important;
  }
  .form-inline .form-control {
        width: 141px !important;
  }
  .header-wrapper .menu-wrapper ul.main-menu a {
    font-size: 19px !important;
  }
  .banner-left__content.who h2 {
    font-size: 31px !important;
  }
  .banner-left__content.who p {
    padding: 0px 0px 0px 0px !important;
  }
  .banner-left__content h2 {
    margin-bottom: 1px !important;
  }
  .section-red h1.section-heading__title {
    font-size: 48px !important;
  }
  .card-content h5.card-heading {
    font-size: 16px !important;
  }
  .card-content {
    height: 32% !important;
  }
  .pics {
    margin-left: 143px !important;
    margin-bottom: 45px !important;
  }
  h4 {
      margin: 11px 0 10px 0 !important;
  }
  .career-content .halfradious img {
    margin-bottom: 30px !important;
    margin-top: 16px !important;
  }
  .important-line p {
    margin-bottom: 41px !important;
  }  
  h1.network_heading__title {
    font-size: 34px !important;
  }
  section.section-network-wherewework {
     margin-right: 420px !important; 
  }
  section.section-red-wherewework {
        margin-right:420px !important;
    }
  h1.implemented_heading__title {
    font-size: 34px !important;
  }
  section.section-Implemented-wherewework {
     margin-left: 420px !important; 
  }
  .every_section_where {
    margin-top: 188px !important;
  }
  h1.ongoing_heading__title {
    font-size: 34px !important;
  }
  .where_sec h1.where_work_heading {
    font-size: 37px !important;
  }
  .where_We_work.col-lg-12.col-md-12.col-sm-12.col-12 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .vlue_content.row {
    padding: 0px 0px !important;
  }
  h2.gui_plc_hd {
     margin-right: 388px !important; 
  }
  .guiding_pol_des {
    padding: 0px 124px !important;
  }
  .background__content.sm_description {
    height: 100%  !important;
    margin-bottom: 23px !important;
  }
  h2.vision_title {
    margin-top: 6px !important;
  }
  h5.mission_description {
    padding: 0px 0px !important;
  }
  .container {
    max-width: 1199px !important;
  }
  .vls_img {
    padding-left: 0px !important;
    padding: 14px 0px !important;
  }
  img.values_imgs {
    width: 38% !important;
  }
  h2.values_title {
    text-align: center !important;
  }
  h5.vision_description {
    padding: 0px 25px !important;
  }
.gl_img img.gl_img {
  width: 38% !important;
}
h4.vlu_des_txt_hd {
  margin: 0px 0 10px 0 !important;
}
img.values_img {
  margin-bottom: 34px !important;
  margin-top: 34px !important;
}
.vlu_des_txt {
  padding: 39px 0px !important;
}
.donner.col-lg-10.justify-content-center {
  padding-left: 15px !important;
}
i.fa-solid.fa-envelope {
  margin-left: 63px;
}
i.fas.fa-phone {
  margin-left: 48px;
}
.footer-item {
  text-align: center !important;
}
p.career_sec {
  text-align: justify !important;
}
.support_us.banner-section.bg-img {
    padding: 93px 0 6px !important;
  }
  section.be-friend.banner-section.bg-img {
    padding: 80px 0 25px !important;
  }
  section.career-sec.car-section.section_title_geo {
    padding: 93px 0 25px !important;
  }


}

@media(max-width:1100px) {
  .card-content {
    padding: 6px !important;
  }
  .support_us.banner-section.bg-img {
    padding: 93px 0 6px !important;
  }
  section.be-friend.banner-section.bg-img {
    padding: 80px 0 25px !important;
  }
  section.career-sec.car-section.section_title_geo {
    padding: 93px 0 25px !important;
  }
  .volunteer_sec.volun-section.bg-img {
        padding: 0px 0 86px !important;
    }
  .footer-item {
    text-align: center !important;
  }
  .background__content.sm_description.col-lg-12.col-md-12.col-sm-12.col-12 {
    padding-right: 2px;
    padding-left: 2px;
  }
  .card-content h5.card-heading {
    font-size: 14px !important;
  }
  h5.testimonial-item__name.orange-color {
    text-align: center !important;
  }
  .banner-right-wrap {
    margin-left: 8px !important;
  }
  .content-padding {
    padding: 13px !important;
  }
  .banner-section-whatwedo {
    padding: 99px 0 0px !important;
  }
  .header {
    padding: 0px 0px !important;
  }
  .header-wrapper .logo-wrapper img {
        width: 289px !important;
  }
  .row.align-items-center {
    padding: 0px 0px !important;
  }
  .banner-left__content.who {
    margin-right: 0px !important;
  }
  .banner-left__content.who p {
    padding: 0px 15px 0px 15px !important;
  }  
  .section-red h1.section-heading__title {
    font-size: 34px !important;
  } 
  .card-content {
    height: 32% !important;
  }
  h5 { 
    margin: 12px 0 10px 0 !important;
  }
  .pics {
    height: 284px !important;
    margin-left: 111px !important;
    margin-bottom: 47px !important;
  }
  ul.social-list.donners_logo img {
    margin: 3px -36px -3px 0px !important;
    padding-right: 5px !important;
  }
  .section-green h1.section-heading__title {
    font-size: 37px !important;
  }      
  h4 {
      margin: 42px 0 10px 0 !important;
  }
  .career-content .halfradious img {
    margin-bottom: 4px !important;
  }
  h1.network_heading__title {
    font-size: 34px !important;
  }
  section.section-network-wherewework {
    margin-right: 200px !important; 
  }
  section.section-red-wherewework {
        margin-right:200px !important;
    }
  h1.implemented_heading__title {
    font-size: 34px !important;
  }
  section.section-Implemented-wherewework {
    margin-left: 200px !important; 
  }
  .every_section_where {
    margin-top: 150px !important;
  }
  h1.ongoing_heading__title {
    font-size: 34px !important;
  }
  .where_sec h1.where_work_heading {
    font-size: 37px !important;
  }
  .where_We_work.col-lg-12.col-md-12.col-sm-12.col-12 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .goal_bllt_point {
    padding: 0px 0px 0px 21px !important;
  }
  .vlue_content.row {
    padding: 0px 0px !important;
  }
  h2.gui_plc_hd {
    margin-right: 388px !important; 
  }
  .guiding_pol_des {
    padding: 0px 0px !important;
  }
  .about-banner-section {
    padding: 156px 0px 0px !important;
  }
  .background__content.sm_description {
    height: 100%  !important;
    margin-bottom: 23px !important;
  }
  img.vison_img {
    margin-top: 8px !important;
  }
  h2.vision_title {
    margin-top: 6px !important;
  }
  h5.mission_description {
    padding: 0px 0px !important;
    text-align: justify !important;
  }
  .container {
    max-width: 991px !important;
  }
  .vls_img {
    padding-left: 0px !important;
    padding-top: 27px!important;
  }
  img.values_imgs {
    width: 38% !important;
  }
  h2.values_title {
    text-align: center !important;
  }
  img.mission_img {
    float: none !important;
    width: 32% !important;
    margin-right: auto !important;
    margin-left: auto !important;
    display: block !important;
  }
  h5.vision_description {
    padding: 0px 25px !important;
  }
  h2.mission_title {
      text-align: center !important;
  }
  .gl_img img.gl_img {
    width: 38% !important;
  }
  h4.vlu_des_txt_hd {
    margin: 0px 0 10px 0 !important;
  }
  img.values_img {
    margin-bottom: 34px !important;
    margin-top: 34px !important;
  }
  .donner.col-lg-10.justify-content-center {
    padding-left: 15px !important;
  }
  i.fa-solid.fa-envelope {
    margin-left: 32px;
  }
  i.fas.fa-phone {
    margin-left: 56px;
  }
  .banner-left__content p {
    text-align: justify !important;
    padding: 11px 0px !important;
  }
  p.Volunteering {
    text-align: justify !important;
    padding: 0px 3px !important;
  }
  .field-item.even h4 {
    text-align: justify !important;
  }
  h4.professional {
    margin: 31px 0 0px 0 !important;
  }
  p.career_sec {
    text-align: justify !important;
  }
  .rmv_padding {
    padding-right: 15px;
    padding-left: 15px;
  }
  .ribbon-image.logo-wrapper.menu-show-hide {
    display: none !important;
  } 
  .banner-section{
      padding: 62px 0 34px !important;
  }


}

@media(max-width:991px) {
  
  
  section.career-sec.car-section.section_title_geo {
    padding: 135px 0 25px !important;
  }
  .rmv_padding {
    padding-right: 15px;
    padding-left: 15px;
  }
  .vls_title h2.goal_title {
    text-align: center !important;
  }
  p.career_sec {
    text-align: justify !important;
  }
  h4.professional {
    margin: 31px 0 0px 0 !important;
  }
  p.Volunteering {
    text-align: justify !important;
    padding: 0px 3px !important;
  }
  .field-item.even h4 {
    text-align: justify !important;
  }
  .banner-left__content p {
    text-align: justify !important;
    padding: 11px 0px !important;
  }
  ul.social-list.donners_logo {
    margin-left: 193px !important;
  }
  .testimonial-item__content p {
    text-align: justify !important;
  }
  .field-item.even h5 {
    text-align: justify !important;
    padding: 0px 7px !important;
  }
  ul.Volunteering-type {
    margin-left: 29px !important;
  }
  h4.testimonial-item__name.donation-title {
    margin-left: 43px !important;
  }
  .footer-item {
    text-align: center !important;
  }
  .background__content.sm_description.col-lg-12.col-md-12.col-sm-12.col-12 {
    padding-right: 2px;
    padding-left: 2px;
  }
  .card-content h5.card-heading {
    font-size: 21px !important;
  }
  h5.testimonial-item__name.orange-color {
    text-align: center !important;
  }
  .banner-right-wrap {
    margin-left: 8px !important;
  }
  .content-padding {
    padding: 13px !important;
  }
  .banner-section-whatwedo {
    padding: 99px 0 0px !important;
  }
  .header {
    padding: 0px 0px !important;
  }
  .header-wrapper.site-navbar .menu-right-wrapper ul li .sidebar-menu-show-hide {
      background: #022d9e !important;
      font-size: 27px;
  }
  .header-wrapper .logo-wrapper img {
        width: 289px !important;
  }
  .row.align-items-center {
    padding: 0px 0px !important;
  }
  .banner-left__content.who {
    margin-right: 0px !important;
  }
  .banner-left__content.who p {
    padding: 0px 15px 0px 15px !important;
  }
  .banner-section {
      padding: 70px 0 34px !important;
  }
  .section-red h1.section-heading__title {
    font-size: 34px !important;
  } 
  .card-content {
    height: 18% !important;
  }
    h5 {
      margin: 12px 0 10px 0 !important;
  }
  .pics {
    height: 284px !important;
    margin-left: 84px !important;
    margin-bottom: 47px !important;
  }
  ul.social-list.donners_logo img {
    margin: 3px -36px -3px 0px !important;
    padding-right: 5px !important;
  }
  .section-green h1.section-heading__title {
    font-size: 37px !important;
  }
  .volunteer_sec.volun-section.bg-img {
    padding: 37px 0 86px !important;
  }
  h4 {
      margin: 42px 0 10px 0 !important;
  }
  .career-content .halfradious img {
    margin-bottom: 4px !important;
  }
  h1.network_heading__title {
    font-size: 34px !important;
  }
  section.section-network-wherewework {
    margin-right: 200px !important; 
  }
  section.section-red-wherewework {
        margin-right:200px !important;
    }
  h1.implemented_heading__title {
    font-size: 34px !important;
  }
  section.section-Implemented-wherewework {
    margin-left: 200px !important; 
  }
  .every_section_where {
    margin-top: 100px !important;
  }
  h1.ongoing_heading__title {
    font-size: 34px !important;
  }
  .where_sec h1.where_work_heading {
    font-size: 37px !important;
  }
  .where_We_work.col-lg-12.col-md-12.col-sm-12.col-12 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .goal_bllt_point {
    padding: 0px 0px 0px 21px !important;
  }
  .vlue_content.row {
    padding: 0px 0px !important;
  }
  h2.gui_plc_hd {
    margin-right: 388px !important; 
  }
  .guiding_pol_des {
    padding: 0px 115px !important;
  }
  .about-banner-section {
    padding: 107px 0px 0px !important;
  }
  .background__content.sm_description {
    height: 100%  !important;
    margin-bottom: 23px !important;
  }
  img.vison_img {
    margin-top: 8px !important;
  }
  h2.vision_title {
    margin-top: 6px !important;
  }
  h5.mission_description {
    padding: 0px 0px !important;
    text-align: justify !important;
  }
  .container {
    max-width: 991px !important;
  }
  .vls_img {
    padding-left: 0px !important;
    padding-top: 27px!important;
  }
  img.values_imgs {
    width: 38% !important;
    margin-right: 291px;
  }
  h2.values_title {
    text-align: center !important;
  }
  img.mission_img {
    float: none !important;
    width: 32% !important;
    margin-right: auto !important;
    margin-left: auto !important;
    display: block !important;
  }
  h5.vision_description {
    padding: 0px 25px !important;
  }
h2.mission_title {
    text-align: center !important; 
}
.gl_img img.gl_img {
  width: 45% !important;
}
h4.vlu_des_txt_hd {
  margin: 0px 0 10px 0 !important;
}
img.values_img {
  margin-bottom: 34px !important;
  margin-top: 34px !important;
}
.donner.col-lg-10.justify-content-center {
  padding-left: 15px !important;
}
i.fa-solid.fa-envelope {
  margin-left: 115px;
}
i.fas.fa-phone {
  margin-left: 95px;
}
.footer-item__title {
  margin-top: 15px !important;
  margin-left: 55px !important;
  text-align: center;
}
ul.social-list.donners_logo {
  margin-left: 346px;
}
.footer-item__title::after {
  width: 104% !important;
}
h4.footer_contact {
  margin: 5px 0 10px 0 !important;
}
h2.values_title {
  padding: 0px 0px 0px 0px !important;
}
.every_sec .rmv_padding_left {
  padding-left: 15px !important;
}
.every_sec .rmv_padding_right {
  padding-right: 15px !important;
}
.get_invol.banner-section {
  padding: 64px 12px 33px !important;
}
p {
    font-size: 19px !important;
  }
  .slogan-sec {
    padding-top: 42px !important;
  }
  .hero-des-vb {
    padding-top: 9px !important;
  }
  .banner-left__content.who h4 {
    font-size: 26px !important;
  }
  .news-know-more-button span {
    font-size: 17px !important;
  }
  
  img.news-event-img {
    margin-top: 21px;
  }
  h4 {
      margin: 11px 0 10px 0 !important;
  }
  .section-heading__title {
    font-size: 32px !important;
  }


}

@media(max-width:767px) {
  .every_sec .rmv_padding_left {
    padding-left: 15px !important;
  }
  .every_sec .rmv_padding_right {
    padding-right: 15px !important;
  }
  h2.values_title {
    padding: 0px 0px 0px 0px !important;
  }
  
  h4.testimonial-item__name.donation-title {
    margin-left: 26px !important;
  }
  h5.testimonial-item__name.orange-color {
    padding: 0px 0px 0px 23px !important;
  }
  h5.testimonial-item__name.orange-color {
    padding: 0px 0px 0px 0px !important;
  }
  h4.testimonial-item__name.donation-title {
    margin-left: 0px !important;
  }
  h4.footer_contact {
    margin: 5px 0 10px 0 !important;
  }
  .testimonial-item__content p {
    text-align: justify !important;
  }
  .field-item.even h5 {
    text-align: justify !important;
    padding: 0px 7px !important;
  }
  ul.Volunteering-type {
    margin-left: 29px !important;
  }
  h4.testimonial-item__name.donation-title {
    margin-left: 43px !important;
  }
  .footer-item__title {
    margin-top: 15px !important;
    margin-left: 38px !important;
    text-align: center;
  }
  ul.social-list.donners_logo {
    margin-left: 229px;
  }
  .footer-item__title::after {
    width: 104% !important;
  }
  .footer-item {
    text-align: center !important;
  }
  .content-padding p {
    font-size: 19px !important;
  }
  .vlu_des_txt {
    padding: 22px 0px 10px 0px !important;
  }
  .container-fluid.backg_color_gui_poli_hd {
    padding-left: 0px !important;
  }
  p.vlu_des_txt_des {
    text-align: justify !important;
    padding: 0px 4px !important;
  }
  .row.col-lg-12 {
    padding-right: 0px !important;
  }
  .container.backg_color_offblue {
    padding: 23px 18px !important;
  }
  .blogs-details-summery.col-lg-9 {
    padding-right: 6px !important;
    padding-left: 6px !important;
  }
  .blogs-details-summery a.blog-item__thumb-link {
    margin: 5px !important;
    font-size: 17px !important;
  }
  .blog-item__title {
    margin-top: 11px !important;
  }
  .col-md-4.blog-item__thumb {
    padding-right: 0px !important;
    padding-left: 15px !important;
  }
  .widget-body.blogs-summery img {
    margin:0px !important;
  }
  .img.col-lg-3 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .col-md-12.blog-item__thumb {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .row.col-lg-8.m-15.px-tb {
    padding-left: 0px !important;
  }  
  .card-content h5.card-heading {
    font-size: 34px !important;
  }
  .support-us-section.py-80.mb-5 {
    padding-top: 2px !important;
  }
  .career-content .halfradious img {
    margin-bottom: 4px !important;
  }
  h5.testimonial-item__name.orange-color {
    text-align: center !important;
    padding: 0px 0px 0px 30px !important;
  }
  ul.Volunteering-type {
    margin-left: 45px !important;
  }
  .footer-item__title::after {
    bottom: 7px !important;
  }
  .content-padding {
    padding: 17px !important;
  }
  .banner-section-whatwedo {
    padding: 83px 0 0px !important;
  }
  .banner-right-wrap {
      margin-left: 0px !important;
  }
  .header {
    padding: 0px 0px !important;
  }
  .header-wrapper.site-navbar .menu-right-wrapper ul li .sidebar-menu-show-hide {
      background: #022d9e  !important;
      font-size: 27px;
  }
  .header-wrapper .logo-wrapper img {
        width: 289px !important;
  }
  .row.align-items-center {
    padding: 0px 0px !important;
  }
  .banner-left__content.who {
    margin-right: 0px !important;
  }
  .banner-left__content.who p {
    padding: 0px 15px 0px 15px !important;
  }
  .banner-section {
    padding: 71px 6px 34px !important;
  }
  .section-red h1.section-heading__title {
    font-size: 34px !important;
  } 
  .card-content {
    height: 18% !important;
  }
    h5 {
      margin: 12px 0 10px 0 !important;
  }
  .pics {
    height: 339px !important;
    margin-left: 77px !important;
    margin-bottom: 46px !important;
  }
  ul.social-list.donners_logo img {
    margin: 3px -36px -3px 0px !important;
    padding-right: 5px !important;
  }
  .section-green h1.section-heading__title {
    font-size: 35px !important;
  }
  h4 {
      margin: 42px 0 10px 0 !important;
  }
  section.section-offwhite {
    background-color: #ffffff !important;
  }
  .volunteer_sec.volun-section.bg-img {
    padding: 100px 0 86px !important;
  }
  h1.network_heading__title {
    font-size: 34px !important;
  }
  section.section-network-wherewework {
    margin-right: 126px !important; 
  }
  section.section-red-wherewework {
        margin-right: 126px !important;
    }
  h1.implemented_heading__title {
    font-size: 34px !important;
  }
  section.section-Implemented-wherewework {
    margin-left: 126px !important; 
  }
  .every_section_where {
    margin-top: 100px !important;
  }
  h1.ongoing_heading__title {
    font-size: 34px !important;
  }
  .where_sec h1.where_work_heading {
    font-size: 37px !important;
  }
  .where_We_work.col-lg-12.col-md-12.col-sm-12.col-12 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .goal_bllt_point {
    padding: 0px 0px 0px 21px !important;
  }
  .vlue_content.row {
    padding: 0px 0px !important;
  }
  h2.gui_plc_hd {
    margin-right: 325px !important; 
  }
  .guiding_pol_des {
    padding: 0px 78px !important;
  }
  .about-banner-section {
    padding: 107px 0px 0px !important;
  }
  .background__content.sm_description {
    height: 100%  !important;
    margin-bottom: 23px !important;
  }
  img.vison_img {
    margin-top: 8px !important;
  }
  h2.vision_title {
    margin-top: 6px !important;
    text-align: center !important;
  }
  h5.mission_description {
    padding: 0px 0px !important;
    text-align: justify;
  }
  .container {
    max-width: 760px !important;
  }
  .vls_img {
    padding-left: 0px !important;
    padding-top: 27px!important;
  }
  img.values_imgs {
    width: 38% !important;
    margin-right: 222px;
  }
  h2.values_title {
    text-align: center !important;
  }
  img.mission_img {
    float: none !important;
    width: 32% !important;
    margin-right: auto !important;
    margin-left: auto !important;
    display: block !important;
  }
  h5.vision_description {
    padding: 0px 25px !important;
  }
  h2.mission_title {
      text-align: center !important;
  }
  .gl_img img.gl_img {
    width: 58% !important;
    margin-right: 110px;
  }
  h4.vlu_des_txt_hd {
    margin: 0px 0 10px 0 !important;
  }
  img.values_img {
    margin-bottom: 34px !important;
    margin-top: 34px !important;
  }
  img.values_img {
    margin-bottom: 48px !important;
    margin-top: 48px !important;
  }
  .donner.col-lg-10.justify-content-center {
    padding-left: 15px !important;
  }
  i.fa-solid.fa-envelope {
    margin-left: 52px;
  }
  i.fas.fa-phone {
    margin-left: 38px;
  }
  .widget .widget-title h3 {
    color: #000000 !important;
    text-align: center !important;
  }
  .row.col-lg-8.m-15.px-tb.watch_listen {
    padding-left: 15px !important;
    padding-right: 0px !important;
  }
  .row.planned_img img {
    margin-top: 23px !important;
  }
  ul.social-list.donners_logo {
    margin-left: 97px !important;
  }
  h1.explore_sec.section-heading__title {
    margin-top: 60px !important;
  }
  .banner-left__content p {
    text-align: justify !important;
    padding: 11px 0px !important;
  }
  p.Volunteering {
    text-align: justify !important;
    padding: 0px 3px !important;
  }
  .field-item.even h4 {
    text-align: justify !important;
  }
  h4.professional {
    margin: 31px 0 0px 0 !important;
  }
  p.career_sec {
    text-align: justify !important;
  }
  .row-white.section-offwhite.container.col-lg-12.col-md-12.col-12 {
      padding-right: 0px !important;
  }
  h2.goal_title {
    text-align: center;
  }
  .banner-left__content p.hero_description{
    text-align: justify !important;
  }
  .rmv_padding {
    padding-right: 15px;
    padding-left: 15px;
  }
  .card-content:hover {
    height: 100% !important;
    transition: 0.7s;
  }
  section.career-sec.car-section.section_title_geo {
    padding: 105px 0 25px !important;
  }
  .volunteer_sec.volun-section.bg-img {
    padding: 23px 0 86px !important;
  }
  .get_invol.banner-section {
    padding: 64px 12px 33px !important;
  }
  .section-white {
    padding: 10px 0px !important;
  }
  .strategies-pd h2 {
    font-size: 26px !important;
  }
  p {
    font-size: 19px !important;
  }
  .slogan-sec {
    padding-top: 42px !important;
  }
  .hero-des-vb {
    padding-top: 9px !important;
  }
  .banner-left__content.who h4 {
    font-size: 26px !important;
  }
  .news-know-more-button span {
    font-size: 17px !important;
  }
  
  img.news-event-img {
    margin-top: 21px;
  }
  h4 {
      margin: 11px 0 10px 0 !important;
  }



}

@media(max-width:575px) {
  p.mission_description {
    padding: 21px 0px !important;
  }
  h2.vision_title {
    font-size: 20px !important;
  }
  .social-list {
    display: flex;
    flex-wrap: nowrap !important;
    align-items: center;
  }
  .be-friend.banner-section.bg-img {
    padding: 84px 0 25px !important;
  }
  .banner-section-geo { 
    padding: 77px 0 21px !important;
  }
    .every-section-padding {
      padding-top: 0px !important;
  }

  .get_invol.banner-section {
    padding: 63px 12px 17px !important;
  }
  .volunteer_sec.volun-section.bg-img {
    padding: 5px 0 86px !important;
  }
  section.career-sec.car-section.section_title_geo {
    padding: 85px 0 25px !important;
  }
  .card-content:hover {
    height: 100% !important;
    transition: 0.7s;
  }
  .card-content {
    height: 22% !important;
  }
  .rmv_padding {
    padding-right: 15px;
    padding-left: 15px;
  }

  .banner-left__content p.hero_description{
    text-align: justify !important;
  }
  h2.goal_title {
    text-align: center;
  }
  .vedio-item__thumb iframe {
    min-height: 300px;
  }
  .vedio-item_list,
  .vedio-item__thumb {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  p.career_sec {
    text-align: justify !important;
  }
  h4.professional {
    margin: 31px 0 0px 0 !important;
  }
  p.Volunteering {
    text-align: justify !important;
    padding: 0px 3px !important;
  }
  .field-item.even h4 {
    text-align: justify !important;
  }
  .banner-left__content p {
    text-align: justify !important;
    padding: 11px 0px !important;
  }
  h1.explore_sec.section-heading__title {
    margin-top: 60px !important;
  }
  h5.speaking_title {
    padding: 0px 0px !important;
  }

  ul.social-list.donners_logo {
    margin-left: 22px !important;
  }
  h4.testimonial-item__name.donation-title {
    margin-left: 26px !important;
  }
  h5.testimonial-item__name.orange-color {
    padding: 0px 0px 0px 23px !important;
  }
  h5.testimonial-item__name.orange-color {
    padding: 0px 0px 0px 0px !important;
  }
  h4.testimonial-item__name.donation-title {
    margin-left: 0px !important;
  }
  h4.footer_contact {
    margin: -31px 0 10px 0 !important;
  }
  .testimonial-item__content p {
    text-align: justify !important;
  }
  .field-item.even h5 {
    text-align: justify !important;
    padding: 0px 7px !important;
  }
  ul.Volunteering-type {
    margin-left: 29px !important;
  }
  h4.testimonial-item__name.donation-title {
    margin-left: 43px !important;
  }  
  .row.col-lg-8.m-15.px-tb.watch_listen {
    padding-left: 15px !important;
    padding-right: 0px !important;
  }
  .row.planned_img img {
    margin-top: 23px !important;
  }
  .widget .widget-title h3 {
    color: #000000 !important;
    text-align: center !important;
  }

  .footer-item {
    text-align: center !important;
  }
  .content-padding p {
    font-size: 19px !important;
  }
  .vlu_des_txt {
    padding: 22px 0px 10px 0px !important;
  }
  .container-fluid.backg_color_gui_poli_hd {
    padding-left: 0px !important;
  }
  p.vlu_des_txt_des {
    text-align: justify !important;
    padding: 0px 4px !important;
  }
  .row.col-lg-12 {
    padding-right: 0px !important;
  }
  .container.backg_color_offblue {
    padding: 23px 18px !important;
  }
  .blogs-details-summery.col-lg-9 {
    padding-right: 6px !important;
    padding-left: 6px !important;
  }
  .blogs-details-summery a.blog-item__thumb-link {
    margin: 5px !important;
    font-size: 17px !important;
  }
  .blog-item__title {
    margin-top: 11px !important;
  }
  .col-md-4.blog-item__thumb {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .widget-body.blogs-summery img {
    margin:0px !important;
  }
  .img.col-lg-3 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .col-md-12.blog-item__thumb {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .row.col-lg-8.m-15.px-tb {
    padding-left: 0px !important;
  }
  .card-content h5.card-heading {
    font-size: 25px !important;
  }
  .support-us-section.py-80.mb-5 {
    padding-top: 2px !important;
  }
  .footer-item__title::after {
    bottom: 7px !important;
  }
  .content-padding {
    padding: 17px 8px !important;
  }
  .banner-section-whatwedo {
    padding: 83px 0 0px !important;
  }
  .banner-right-wrap {
      margin-left: 0px !important;
  }
  .banner-section {
      padding: 78px 9px 0px 7px !important;
  }
  .header-wrapper.site-navbar .menu-right-wrapper ul li .sidebar-menu-show-hide {
      background: #0731a0  !important;
      font-size: 20px !important;
  }
  .row .header-wrapper .logo-wrapper img {
      width: 238px !important;
  }
  .banner-left__content.who {
    margin-right: 0px !important; 
  }
    .banner-left__content.who p {
    padding: 0px 10px 0px 10px !important;
  }
  .section-red h1.section-heading__title {
    font-size: 24px !important;
  }
    .section-heading__title {
    font-size: 25px !important;
  }
  .section-heading {
    margin-bottom: 38px !important;
  }
  .pics {
    height: 224px !important;
    margin-left: 0px !important; 
    border: 2px solid #ffffff !important;
    margin-bottom: 23px !important;
  }
  .row.speak-picture {
    margin-top: 0px !important;
  }
  h5.speaking_title {
    color: #000000 !important;
  }
  .row.speak-picture .blog-green {
    background-color: #ffffff !important;
  }
  ul.social-list.donners_logo img {
    margin: -18px -40px -12px -14px !important;
    padding: 3px 5px 0px 0px !important;
  }
  .bottom-footer-menu {
    float: left !important;
  }
  .footer-item__title {
    margin-top: 12px !important;
    margin-left: -14px !important;
  }
  .button-volunteering h3 {
    font-size: 22px !important;
  }
  h3.double {
    padding: 8px !important;
  }
  .header {
    padding: 0px 0px !important;
  }
  .header-main-area .container-fluid {
    padding: 4px 18px !important;
  }
  h5.card-heading {
    font-size: 21px !important;
    margin-top: 18px !important;
  }
  .blog-item {
    margin-left: 0px !important;
  }
  .section-heading {
    margin-bottom: 77px !important;
  }
  .section-heading.text-center {
    margin-bottom: 0px !important;
  }
  .section-green h1.section-heading__title {
    font-size: 29px !important;
  }
  .banner-section.bg-img {
    padding: 78px 9px 74px 9px !important;
  }
  .contactus-form {
    padding: 15px 15px !important;
  }
  h4 {
    margin: 41px 0 10px 0 !important;
  }
  .career-content .halfradious img {
      margin-bottom: 25px !important;
  }
  .support_us.banner-section.bg-img {
    padding: 78px 9px 25px 7px !important;
  }
  section.support-us-section.py-80.mb-5 {
    padding-top: 0px !important;
  }
  .testimonial-item__details {
  padding-left: 0px !important;  
  }
  h4.testimonial-item__name.donation-title {
    font-size: 30px !important;
    text-align: center !important;
  } 
  h5.testimonial-item__name.orange-color {
    font-size: 27px !important;
    text-align: center !important;
    padding: 0px 0px 0px 50px;
  }
  ul.Volunteering-type {
    margin-left: 41px !important;
  }
  h1.network_heading__title {
    font-size: 34px !important;
  }
  section.section-network-wherewework {
    margin-right: 50px !important; 
  }
  section.section-red-wherewework {
    margin-right: 50px !important; 
  }
  h1.implemented_heading__title {
    font-size: 34px !important;
  }
  section.section-Implemented-wherewework {
  margin-left: 50px !important; 
  }
  .every_section_where {
    margin-top: 100px !important;
  }
  h1.ongoing_heading__title {
    font-size: 34px !important;
  }
  .vlue_content.row {
    padding: 0px 0px !important;  
  }
  h5.mission_description {
    padding: 0px 2px !important;
    text-align: justify !important;
  }
  .goal_bllt_point {
    padding: 0px 0px !important; 
  }
  h2.gui_plc_hd {
    margin-right: 182px !important; 
  }
  .guiding_pol_des {
    padding: 0px 0px !important; 
  }
  .vison-section {
    margin-top: 18px !important;
  }
  h5.vision_description {
    padding: 0px 16px !important;
  }
  h2 {
      margin: 8px 0 10px 0 !important;
  }
  img.vison_img {
    margin-top: -7px !important;
  }
  img.mission_img {
    float: none !important;
    width: 42% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }
  h2.mission_title {
    margin-top: 13px !important;
    text-align: center !important;
  }
  .goal_txt_des h4 {
    font-size: 20px !important;
  }
  .gl_img img.gl_img {
    width: 58% !important;
    margin-right: 83px;
  }
  h2.values_title {
    padding: 21px 0px !important;
    text-align: center !important;
  }
  img.values_imgs {
    width: 49% !important;
    margin-right: 139px;
  }
  .vls_img {
    padding-left: 49px !important;
  }
  .backg_color_offbtn {
      padding: 1px 0px 0px 18px !important;
  }
  .about-banner-section {
    padding: 89px 0px 0px !important;
  }
  .vls_title.col-lg-6 {
    padding-right: 0px !important;
  }
  img.values_img {
    margin-bottom: 87px !important;
    margin-top: 86px !important;
  }
  .section-heading {
    margin-top: 0px !important;
  }
  h1.section-heading__title {
    margin-top: 31px !important;
    margin-bottom: 29px !important;
  }
  .donner.col-lg-10.justify-content-center {
    padding-left: 15px !important;
  }
  i.fa-solid.fa-envelope {
    margin-left: 151px;
  }
  i.fas.fa-phone {
    margin-left: 133px;
  }
  .footer-item__title {
    margin-top: 34px !important;
    margin-left: 32px !important;
    text-align: center;
  }
  ul.social-list.donners_logo {
    margin-left: 181px;
  }
  .footer-item__title::after {
    width: 104% !important;
  }

  .button-volunteering.text-center {
    margin: 50px 0px 20px 0px !important;
  }
  h5.speaking_title {
    font-size: 23px !important;
  }
  .blog_sec.section-heading.text-center {
    margin-bottom: 10px !important;
  }
  h4 {
    margin: 8px 0 0px 0 !important;
  }
  h1.watch_sec.section-heading__title {
    margin-top: 35px !important;
  }

  h1.explore_sec.section-heading__title {
    margin-top: 60px !important;
  }
  section.section-offwhite {
    background-color: #ffffff !important;
  }
  .section-heading__title {
    padding: 0px !important;
  }
  h5.speaking_title {
    margin: 10px 0 0px 0 !important;
  }
  .row-white.section-offwhite.container.col-lg-12.col-md-12.col-12 {
    padding-right: 0px !important;
  }
  .every_sec .rmv_padding_left {
    padding-left: 15px !important;
  }
  .every_sec .rmv_padding_right {
    padding-right: 15px !important;
  }
  .section-white {
    padding: 10px 0px !important;
  }
  .strategies-pd h2 {
    font-size: 24px !important;
  }
  .ribbon-image.logo-wrapper.menu-show-hide {
    display: none !important;
  }
  p {
    font-size: 19px !important;
  }
  .slogan-sec {
    padding-top: 42px !important;
  }
  .hero-des-vb {
    padding-top: 9px !important;
  }
  .banner-left__content.who h4 {
    font-size: 26px !important;
  }
  .news-know-more-button span {
    font-size: 17px !important;
  }


}

@media(max-width:470px) {
  i.fa-solid.fa-greater-than {
    font-size: 13px !important;
  }
  .section-white {
    padding: 10px 0px !important;
  }
    .banner-left__content.who h2 {
      font-size: 28px !important;
  }
  #header.fixed-top {
    height: 61px !important;
  }
  .strategies-pd h2 {
    font-size: 24px !important;
  }
  .news-know-more-button span {
    padding: 7px !important;
    font-size: 18px !important;
  }
  .slogan-sec {
    padding-top: 42px !important;
  }
  .hero-des-vb {
    padding-top: 15px;
  }
  .whatwedo-ttle.section-heading__title {
    padding: 8px 0px 0px 0px !important;
  }
  .ribbon-image.logo-wrapper.menu-show-hide {
    display: none;
  }
  p {
    font-size: 17px !important;
  }
  .banner-left__content.who h4 {
    font-size: 24px !important;
  }
  .new-image {
    margin-bottom: 16px;
  }
  .geo-slogan.banner-section-geo {
    padding: 70px 0 0px;
  }
  .vls_title.col-lg-6 {
    padding-right: 0px !important;
    padding-left: 30px;
    margin-bottom: 18px;
  }
  h1.implemented_heading__title {
    font-size: 26px !important;
  }
  .backg_color_offbtn {
    padding: 15px 0px 15px 0px !important;
  }
  i.fa-solid.fa-greater-than {
    line-height: 65px;
    padding-left: 18px;
  }
  ul.social-list.donners_logo img {
    margin: -32px -45px -6px -13px !important;
    padding: 3px 5px 0px 0px !important;
  }
  .hero-des-vb {
    padding-right: 8px;
    padding-left: 7px;
  }
  h1.watch_sec.section-heading__title {
    margin-top: 49px !important;
  }
  h1.section-heading__title {
    margin-bottom: 15px !important;
  }
  .news-know-more-button {
    padding: 13px 0px 25px 0px !important;
  }
  .home-pad-rmv.for-mobile-pad.watch_listen{
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
.section-offwhite .section-heading.text-center {
    margin-bottom: -8px !important;
  }
  .support_us.banner-section.bg-img {
    padding: 65px 15px 0px !important;
  }
  .news-event-ttl {
    padding-top: 15px !important;
  }
  h3.every_heading_news {
    font-size: 19px !important;
  }
  section.be-friend.banner-section.bg-img {
    padding: 70px 0 25px !important;
  }
  .get_invol.banner-section {
    padding: 58px 12px 0px !important;
  }  
  .every-news {
    margin-bottom: 30px;
  }
  .news-know-more-button {
    text-align: center;
    padding: 0px 0px 45px 0px;
  }
  .vedio-item__thumb iframe {
    min-height: 200px;
  }
  .vedio-item_list,
  .vedio-item__thumb {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .button-volunteering.text-center {
    margin: 50px 0px 20px 0px !important;
  }
  h5.speaking_title {
    font-size: 24px !important;
    color: #ffffff !important;
  }
  .blog_sec.section-heading.text-center {
    margin-bottom: 10px !important;
  }
  h4 {
    margin: 8px 0 0px 0 !important;
  }
  h1.watch_sec.section-heading__title {
    margin-top: 35px !important;
  }

  h1.explore_sec.section-heading__title {
    margin-top: 60px !important;
  }
  section.section-offwhite {
    background-color: #ffffff !important;
  }
  .section-heading__title {
    padding: 0px !important;
  }
  h5.speaking_title {
      margin: 10px 0 0px 0 !important;
  }
  .testimonial-item__content p {
    text-align: justify !important;
  }
  .field-item.even h5 {
    text-align: justify !important;
    padding: 0px 7px !important;
  }
  ul.Volunteering-type {
    margin-left: 29px !important;
  }
  .donner.col-lg-12.justify-content-center {
    margin-left: 4px !important;
  }
  .footer-item__title {
    margin-top: 15px !important;
    margin-left: 0px !important;
    text-align: center;
  }
  ul.social-list.donners_logo {
    margin-left: 105px;
  }
  .container-fluid.backg_color_gui_poli_hd {
    padding-left: 0px !important;
  }
  p.vlu_des_txt_des {
    text-align: justify !important;
    padding: 0px 4px !important;
  }
  .row.col-lg-12 {
    padding-right: 0px !important;
  }
  .container.backg_color_offblue {
    padding: 23px 18px !important;
  }
  .blogs-details-summery.col-lg-9 {
    padding-right: 6px !important;
    padding-left: 6px !important;
  }
  .blogs-details-summery a.blog-item__thumb-link {
    margin: 5px !important;
    font-size: 17px !important;
  }
  .blog-item__title {
    margin-top: 11px !important;
  }
  .col-md-4.blog-item__thumb {
    padding-right: 0px !important;
    padding-left: 15px !important;
  }
  .widget-body.blogs-summery img {
    margin:0px !important;
  }
  .img.col-lg-3 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .col-md-12.blog-item__thumb {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }

  i.fa-solid.fa-envelope {
    margin-left: 93px;
  }
  i.fas.fa-phone {
    margin-left: 73px;
  }
  .donner.col-lg-10.justify-content-center {
    padding-left: 15px !important;
  }
  .section-heading {
    margin-top: 15px !important;
  }
  h5.support_us {
    padding: 0px 16px !important;
    text-align: center !important;
  }
  .testimonial-item__details {
    padding-left: 63px !important;
  }
  .section-heading__title {
    margin-top: 0px !important;
  }
  .banner-section.bg-img {
    padding: 60px 9px 54px 9px !important;
  }
  h5.card-heading {
    margin-top: 13px !important;
  }
  .section-heading.text-center {
    margin-bottom: 29px !important;
  }
  .section-heading {
    margin-top: 18px !important;
  }
  .card-content h5.card-heading {
    font-size: 18px !important;
  }
  .vlue_content.row {
     padding: 0px 0px !important;  
  }
  h5.mission_description {
    padding: 0px 3px !important;
    text-align: justify !important;
  }
  .goal_bllt_point {
     padding: 0px 0px !important; 
  }
  h2.gui_plc_hd {
     margin-right: 135px !important; 
  }
  .guiding_pol_des {
     padding: 0px 0px !important; 
  }
  .vison-section {
    margin-top: 0px !important;
  }
  h5.vision_description {
    padding: 0px 16px !important;
    text-align: center !important;
  }
   h2 {
      margin: 8px 0 10px 0 !important;
  }
  img.vison_img {
    margin-top: -7px !important;
  }
  img.mission_img {
    float: none !important;
    width: 42% !important; 
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }
  h2.mission_title {
    margin-top: 14px !important;
    text-align: center !important;
  }
  .goal_txt_des h4 {
    font-size: 20px !important;
  }
  .gl_img img.gl_img {
    width: 58% !important;
    margin-right: 65px;
  }
  h2.values_title {
    padding: 21px 0px !important;
    text-align: center !important;
  }
  img.values_imgs {
    width: 49% !important;
    margin-right: 113px;
  }
  .vls_img {
    padding-left: 49px !important;
  }
  .backg_color_offbtn {
    padding: 10px 0px 10px 0px !important;
  }

  h1.network_heading__title {
    font-size: 26px !important;
  }
  section.section-network-wherewework {
     margin-right: 97px !important; 
  }
  .where_We_work.col-lg-12.col-md-12.col-sm-12.col-12 {
    padding-left: 0px !important;
  }
  section.section-red-wherewework {
    margin-right: 97px !important;
  }
  h1.implemented_heading__title {
    font-size: 23px !important;
  }
  section.section-Implemented-wherewework {
    margin-left: 97px !important;
  }
  h1.ongoing_heading__title {
    font-size: 20px !important;
  }
  .every-section-padding {
    margin-left: 0px !important;
  }
  .support-us-section.py-80.mb-5 {
    padding-top: 2px !important;
  }
    .section-heading {
      margin-bottom: 77px !important;
  }
  .background__content.sm_description {
     height: 100% !important; 
  }
  .about-banner-section {
    padding: 79px 0px 0px !important;
  }
  .contents-padding p {
    font-size: 19px !important;
  }
  .every_section_where {
    margin-top: 93px !important;
  }
  .where_sec h1.where_work_heading {
    font-size: 28px !important;
  }
  .content-padding {
    padding: 10px 8px !important;
  }
  .banner-section-whatwedo {
    padding: 79px 0 0px !important;
  }
  .banner-right-wrap {
      margin-left: 0px !important;
  }

  .footer-item__title::after {
    bottom: 7px !important;
    width: 100% !important;
  }
  .col-lg-6.col-md-6.col-12.py-1 {
    padding-left: 0px !important;
  }
  .row-white.section-offwhite.container.col-lg-12.col-md-12.col-12 {
    padding-left: 0px !important;
  }
  .banner-section {
      padding: 53px 9px 0px 7px !important;
  }
  .header-wrapper.site-navbar .menu-right-wrapper ul li .sidebar-menu-show-hide {
    background: #022d9e !important;
  }
  .row .header-wrapper .logo-wrapper img {
      width: 198px !important;
  }
  .banner-left__content.who {
     margin-right: 0px !important; 
  }
    .banner-left__content.who p {
      padding: 0px 10px 0px 10px !important;
  }
  .section-red h1.section-heading__title {
    font-size: 24px !important;
  }
  .section-heading__title {
      font-size: 23px !important;
  }
  .section-heading {
    margin-bottom: 38px !important;
  }
  .pics {
    height: 224px !important;
     margin-left: 0px !important; 
    border: 2px solid #ffffff !important;
    margin-bottom: 23px !important;
  }
  .row.speak-picture {
    margin-top: 0px !important;
  }
  .row.speak-picture .blog-green {
    background-color: #ffffff !important;
  }
  ul.social-list.donners_logo img {
    margin: -37px -49px -10px -6px !important;
    padding: 5px 12px 2px 0px !important;
  }
  .bottom-footer-menu {
    float: left !important;
  }
  .footer-item__title {
    margin-top: 12px !important;
    margin-left: -8px !important;
  }
  .button-volunteering h3 {
    font-size: 17px !important;
  }
  h3.double {
    padding: 8px !important;
  }
  .header {
      padding: 0px 0px !important;
  }
  .header-main-area .container-fluid {
        padding: 4px 18px !important;
  }
  img.values_img {
    margin-bottom: 22px !important;
    margin-top: 22px !important;
  }
  .footer-item {
    text-align: center !important;
  }
  .widget .widget-title h3 {
    color: #000000 !important;
    text-align: center !important;
  }
  .row.col-lg-8.m-15.px-tb.watch_listen {
    padding-left: 15px !important;
    padding-right: 0px !important;
  }
  .row.planned_img img {
    margin-top: 23px !important;
  }
  h4.testimonial-item__name.donation-title {
    margin-left: 26px !important;
  }
  h5.testimonial-item__name.orange-color {
    padding: 0px 0px 0px 23px !important;
  }
  h5.testimonial-item__name.orange-color {
    padding: 0px 0px 0px 0px !important;
  }
  h4.testimonial-item__name.donation-title {
    margin-left: 0px !important;
  }
  h4.footer_contact {
    margin: -31px 0 10px 0 !important;
  }
  ul.social-list.donners_logo {
    margin-left: 27px !important;
  }
  h1.explore_sec.section-heading__title {
    margin-top: 60px !important;
  }
  .banner-left__content p {
    text-align: justify !important;
    padding: 11px 0px !important;
  }
  p.Volunteering {
    text-align: justify !important;
    padding: 0px 3px !important;
  }
  .field-item.even h4 {
    text-align: justify !important;
  }
  h4.professional {
    margin: 31px 0 0px 0 !important;
  }
  p.career_sec {
    text-align: justify !important;
  }
  .row-white.section-offwhite.container.col-lg-12.col-md-12.col-12 {
    padding-right: 0px !important;
  }
  h2.goal_title {
    text-align: center;
  }
  .banner-left__content p.hero_description{
    text-align: justify !important;
  }
  .every_sec .rmv_padding_left {
    padding-left: 15px !important;
  }
  .every_sec .rmv_padding_right {
    padding-right: 15px !important;
  }
  .rmv_padding {
    padding-right: 15px;
    padding-left: 15px;
  }
  .card-content:hover {
    height: 100% !important;
    transition: 0.7s;
  }
  section.career-sec.car-section.section_title_geo {
    padding: 85px 0 25px !important;
  }
  .volunteer_sec.volun-section.bg-img {
    padding: 2px 0 25px !important;
  }
  .get_invol.banner-section {
    padding: 58px 12px 9px !important;
  }
  section.be-friend.banner-section.bg-img {
    padding: 70px 0 25px !important;
  }

}

@media(max-width:390px) {
  .new-image {
    margin-bottom: 16px;
  }
  .geo-slogan.banner-section-geo {
    padding: 70px 0 0px;
  }
  .vls_title.col-lg-6 {
    padding-right: 0px !important;
    padding-left: 30px;
    margin-bottom: 18px;
  }
  h1.implemented_heading__title {
    font-size: 26px !important;
  }
  .backg_color_offbtn {
    padding: 15px 0px 15px 0px !important;
  }
  i.fa-solid.fa-greater-than {
    line-height: 65px;
    padding-left: 18px;
  }
  ul.social-list.donners_logo img {
    margin: -32px -45px -6px -13px !important;
    padding: 3px 5px 0px 0px !important;
  }
  .hero-des-vb {
    padding-right: 8px;
    padding-left: 7px;
  }
    h1.watch_sec.section-heading__title {
      margin-top: 25px !important;
  }
  h1.section-heading__title {
    margin-bottom: 29px !important;
  }
  .news-know-more-button {
    padding: 13px 0px 25px 0px !important;
  }
  .home-pad-rmv.for-mobile-pad.watch_listen{
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
.section-offwhite .section-heading.text-center {
    margin-bottom: -8px !important;
  }
  .support_us.banner-section.bg-img {
    padding: 65px 15px 0px !important;
  }
  .news-event-ttl {
    padding-top: 15px !important;
  }
  h3.every_heading_news {
    font-size: 19px !important;
  }


  section.be-friend.banner-section.bg-img {
    padding: 70px 0 25px !important;
  }
  .get_invol.banner-section {
    padding: 58px 12px 0px !important;
  }
  section.volunteer_sec.volun-section.bg-img {
    padding: 2px 0 25px !important;
  }
  section.career-sec.car-section.section_title_geo {
    padding: 85px 0 25px !important;
  }
  .rmv_padding {
    padding-right: 15px;
    padding-left: 15px;
  }
  .every_sec .rmv_padding_left {
    padding-left: 15px !important;
  }
  .every_sec .rmv_padding_right {
    padding-right: 15px !important;
  }
  .card-content:hover {
    height: 100% !important;
    transition: 0.7s;
  }
  .card-content {
    position: absolute;
    background-color: #F30F01;
    bottom: 0;
    color: #ffff !important;
    width: 100%;
    height: 24% !important;
    padding: 0.8rem;
    overflow: hidden;
    transition: 0.7s;
  }

  .banner-left__content p.hero_description{
    text-align: justify !important;
  }
  h2.goal_title {
    text-align: center;
  }
  .gl_img img.gl_img {
    margin-right: auto;
    margin-left: auto;
    display: block;
  }
  .gl_img h2.goal_title {
    margin-top: 51px;
    text-align: center !important;
  }

  .vedio-item__thumb iframe {
    min-height: 200px;
  }
  .vedio-item_list,
  .vedio-item__thumb {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .row-white.section-offwhite.container.col-lg-12.col-md-12.col-12 {
    padding-right: 0px !important;
  }
  p.career_sec {
    text-align: justify !important;
  }
  h4.professional {
    margin: 31px 0 0px 0 !important;
  }
  p.Volunteering {
    text-align: justify !important;
    padding: 0px 3px !important;
  }
  .field-item.even h4 {
    text-align: justify !important;
  }

  .banner-left__content p {
    text-align: justify !important;
    padding: 11px 0px !important;
  }
  .button-volunteering.text-center {
    margin: 50px 0px 20px 0px !important;
  }
  h5.speaking_title {
    font-size: 22px !important;
  }
  h5.speaking_title {
        margin: 12px 0 0px 0 !important;
  }
  .blog_sec.section-heading.text-center {
    margin-bottom: 10px !important;
  }
  h4 {
    margin: 8px 0 0px 0 !important;
  }
  h1.explore_sec.section-heading__title {
    margin-top: 28px !important;
  }
  section.section-offwhite {
    background-color: #ffffff !important;
  }
  ul.social-list.donners_logo {
    margin-left: 72px !important;
  }
  h5.testimonial-item__name.orange-color {
    padding: 0px 0px 0px 0px !important;
  }
  h4.testimonial-item__name.donation-title {
    margin-left: 0px !important;
  }
  h4.footer_contact {
    margin: -31px 0 10px 0 !important;
  }

  .testimonial-item__content p {
    text-align: justify !important;
  }
  .field-item.even h5 {
    text-align: justify !important;
    padding: 0px 7px !important;
  }
  ul.Volunteering-type {
    margin-left: 29px !important;
  }
  .row.col-lg-8.m-15.px-tb.watch_listen {
    padding-left: 15px !important;
    padding-right: 0px !important;
  }
  .row.planned_img img {
    margin-top: 23px !important;
  }
  .widget .widget-title h3 {
    color: #000000 !important;
    text-align: center !important;
  }
  .donner.col-lg-12.justify-content-center {
    margin-left: 12px !important;
  }
  .section-heading__title {
    padding: 0px !important;
  }
  .footer-item {
    text-align: center !important;
  }
  .container-fluid.backg_color_gui_poli_hd {
    padding-left: 0px !important;
  }
  p.vlu_des_txt_des {
    text-align: justify !important;
    padding: 0px 4px !important;
  }
  .row.col-lg-12 {
    padding-right: 0px !important;
  }
  .container.backg_color_offblue {
    padding: 23px 18px !important;
  }
  .blogs-details-summery.col-lg-9 {
    padding-right: 6px !important;
    padding-left: 6px !important;
  }
  .blogs-details-summery a.blog-item__thumb-link {
    margin: 5px !important;
    font-size: 17px !important;
  }
  .blog-item__title {
    margin-top: 11px !important;
  }
  .col-md-4.blog-item__thumb {
    padding-right: 0px !important;
    padding-left: 15px !important;
  }
  .widget-body.blogs-summery img {
    margin:0px !important;
  }
  .img.col-lg-3 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .col-md-12.blog-item__thumb {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }

  i.fa-solid.fa-envelope {
    margin-left: 62px;
  }
  i.fas.fa-phone {
    margin-left: 42px;
  }
  ul.vb_social.social-list {
    margin-left: 74px;
  }
  .donner.col-lg-10.justify-content-center {
    padding-left: 15px !important;
  }
  .section-heading {
    margin-top: 15px !important;
  }
  h5.support_us {
    padding: 0px 16px !important;
    text-align: center !important;
  }
  .testimonial-item__details {
    padding-left: 63px !important;
  }
  .section-heading__title {
    margin-top: 0px !important;
  }
  .banner-section.bg-img {
    padding: 78px 9px 54px 9px !important;
  }
  h5.card-heading {
    margin-top: 13px !important;
  }
  .section-heading {
    margin-top: 18px !important;
  }
  .card-content h5.card-heading {
    font-size: 18px !important;
  }
  .vlue_content.row {
     padding: 0px 0px !important;  
  }
  h5.mission_description {
    padding: 0px 0px !important;
    text-align: justify !important;
  }
  .goal_bllt_point {
     padding: 0px 0px !important; 
  }
  h2.gui_plc_hd {
     margin-right: 89px !important; 
  }
  .guiding_pol_des {
     padding: 0px 0px !important; 
  }
  .vison-section {
    margin-top: 18px !important;
  }
  h5.vision_description {
    padding: 0px 16px !important;
  }
   h2 {
      margin: 8px 0 10px 0 !important;
  }
  img.vison_img {
    margin-top: -7px !important;
  }
  img.mission_img {
    float: none !important;
    width: 42% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }
  h2.mission_title {
    margin-top: 16px !important;
    text-align: center !important;
  }
  .goal_txt_des h4 {
    font-size: 20px !important;
  }
  .gl_img img.gl_img {
    width: 58% !important;
    margin-right: 59px;
  }
  h2.values_title {
    padding: 21px 0px !important;
    text-align: center !important;
  }
  img.values_imgs {
    float: right;
    width: 49% !important;
    margin-right: 93px;
  }
  .vls_img {
    padding-left: 49px !important;
  }

  h1.network_heading__title {
    font-size: 26px !important;
  }
  section.section-network-wherewework {
     margin-right: 97px !important; 
  }
  .where_We_work.col-lg-12.col-md-12.col-sm-12.col-12 {
    padding-left: 0px !important;
  }
  section.section-red-wherewework {
    margin-right: 97px !important;
  }
  section.section-Implemented-wherewework {
    margin-left: 97px !important;
  } 
  h1.ongoing_heading__title {
    font-size: 26px !important;
  }
  .every-section-padding {
    margin-left: 0px !important;
  }
  .support-us-section.py-80.mb-5 {
    padding-top: 2px !important;
  }
    .section-heading {
      margin-bottom: 77px !important;
  }
  .background__content.sm_description {
     height: 100% !important; 
  }
  .about-banner-section {
    padding: 79px 0px 0px !important;
  }
  .contents-padding p {
    font-size: 19px !important;
  }
  .every_section_where {
    margin-top: 93px !important;
  }
  .where_sec h1.where_work_heading {
    font-size: 28px !important;
  }
  .content-padding {
    padding: 9px !important;
  }
  .banner-section-whatwedo {
    padding: 79px 0 0px !important;
  }
  .banner-right-wrap {
      margin-left: 0px !important;
  }

  .footer-item__title::after {
    bottom: 7px !important;
    width: 100% !important;
  }
  .col-lg-6.col-md-6.col-12.py-1 {
    padding-left: 0px !important;
  }
  .row-white.section-offwhite.container.col-lg-12.col-md-12.col-12 {
    padding-left: 0px !important;
  }
  .banner-section {
      padding: 53px 9px 0px 7px !important;
  }
  .row .header-wrapper .logo-wrapper img {
      width: 209px !important;
  }
  .banner-left__content.who {
     margin-right: 0px !important; 
  }
    .banner-left__content.who p {
      padding: 0px 10px 0px 10px !important;
  }
  .section-red h1.section-heading__title {
    font-size: 24px !important;
  }
  .section-heading__title {
      font-size: 23px !important;
  }
  .section-heading {
    margin-bottom: 38px !important;
  }
  .pics {
    height: 224px !important;
     margin-left: 0px !important; 
    border: 2px solid #ffffff !important;
    margin-bottom: 23px !important;
  }
  .row.speak-picture {
    margin-top: 0px !important;
  }
  h5.speaking_title {
    color: #000000 !important;
  }
  .row.speak-picture .blog-green {
    background-color: #ffffff !important;
  }
  .bottom-footer-menu {
    float: left !important;
  }
  .footer-item__title {
    margin-top: 30px !important;
    margin-left: 0px !important;
    text-align: center;
  }
  ul.social-list.donners_logo {
    margin-left: 69px;
  }
  .button-volunteering h3 {
    font-size: 17px !important;
  }
  h3.double {
    padding: 8px !important;
  }
  .header {
      padding: 0px 0px !important;
  }
  .header-main-area .container-fluid {
        padding: 4px 18px !important;
  }
  img.values_img {
    margin-bottom: 22px !important;
    margin-top: 22px !important;
  }

}


.widget .widget-title h3 {
    color: #000000 !important;
    text-align: center !important;
}
.button-volunteering.text-center {
  margin: 87px 0px 43px 0px !important;
}
.banner-left__content p {
/*  text-align: left !important;*/
  padding: 18px 8px !important;
}
p.career_sec {
  text-align: justify !important;
}



.widget .widget-title h3 {
    color: #000000 !important;
    text-align: center !important;
}
.button-volunteering.text-center {
  margin: 87px 0px 43px 0px !important;
}
.banner-left__content p {
  text-align: justify !important;
  padding: 0px 8px 18px 8px !important;
}
.banner-left__content .p.hero_description {
  text-align: left !important;
  padding: 0px 8px 18px 8px !important;
}
p.career_sec {
  text-align: justify !important;
}
.main_slogan.section-heading.text-center {
    margin-bottom: 22px;
}

.container.slogan-red {
    background-color: #63beaf;
}
h1.main_slogan_heading {
    color: #ffffff !important;
    margin-top: 7px;
}
.container.orng_colour {
    background-color: #63beaf;
}
img.vision_goal_img {
    margin-right: auto;
    margin-left: auto;
    display: block;
    width: 58%;
}
.section_title_geo {
    background-color: #ffffff;
}
.section_title_invol {
    background-color: #ffffff;
}
.container.ongoing-section {
    background-color: #63beaf;
}  
h1.invol_heading.section-heading__title {
  color: #fff9f9 !important;
  margin: 0 0 0px 0;
}
.get_invol.section-heading.text-center {
    margin-bottom: 15px;
}  
h1.watch_sec.section-heading__title {
  padding: 0px !important;
  margin-top: 63px;
}
.footer_section {
    padding-bottom: 2px !important;
}
.donner .footer-item__title {
    margin-bottom: 17px !important;
}
h5.every_title_footer {
    font-size: 15px;
    margin: 0 0 6px 0 !important;
    color: #ffffff !important;
} 
h5.footer-item__title.footer-menu-logo {
  font-size: 17px;
  color: #ffffff !important;
}
h4.footer_contact {
    font-size: 15px;
    margin: 0 0 7px 0 !important;
} 
.footer-item .social-list {
    margin-top: 15px !important;
}     
.padding_top_footer {
    margin-top: 15px;
}
.gl_img.col-lg-6.col-md-6.col-sm-12.col-12 {
  padding-right: 0px !important;
}
.footer-item__logo {
    margin-bottom: 15px !important;
}
.table-hover tbody tr:hover {
  background-color: #ffffff !important;
}
p.geo_des {
    padding: 24px 8px 18px 8px !important;
}
.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-accent-bg: rgb(255 0 0 / 5%) !important;
}
.header.fixed-header {
    box-shadow: rgba(9, 9, 9, 0.05) 0px 0px 0px !important;
}
.form-group table#myTable tbody tr td {
  border: 1px solid #9f9f9f;
}
.form-group table#myTable thead#myHeader tr th {
  border-collapse: collapse;
  border: 1px solid #9f9f9f !important;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: #ffffff !important;
}
.rmv_padding {
  padding-right: 0px;
  padding-left: 0px;
} 
.rmv_padding_left{
  padding-left: 0px !important;
}
.rmv_padding_right{
  padding-right: 0px !important;
}
.rmv_padding_left .banner-right-wrap {
  margin-left: 0px !important;
}
.container.career_title_section {
  background-color: #63beaf;
}
.career-section {
  padding: 44px 0 25px !important;
  background: #fdfdfd;
}
section.career-sec.car-section.section_title_geo {
  padding: 160px 0 25px;
}
section.be-friend.banner-section.bg-img {
  padding: 201px 0 25px;
}
.volun-section {
  padding: 16px 0 25px !important;
  background: #fdfdfd;
}
.support_us.banner-section.bg-img {
  padding: 160px 0 25px;
}
.be-friend.banner-section.bg-img {
  padding: 197px 0 25px;
}
.geo-description.every-section-padding {
  padding-top: 0px;
  padding-bottom: 0px; 
}


.section-red {
  background-color: #63beaf;
}
h1.main-slogan.section-heading__title {
  margin: 0 0 0px 0;
}
h1.planned-title.section-heading__title {
  margin: 0 0 0px 0;
}
.section-heading {
  margin-bottom: 15px !important;
}
.get_invol.section-heading.text-center {
  margin-bottom: 0px !important;
}
.banner-left__content p {
  margin-bottom: 0px !important;
}


h3.every_heading_news {
  color: black !important;
  font-size: 24px;
  text-align: center;
  margin-top: 11px !important;
}
.news-event-ttl {
  padding-top: 40px;
}
.Blog-heading {
  padding: 7px 0px;
}
.news-know-more-button {
  text-align: center;
  padding: 50px 0px 10px 0px;
}
.news-know-more-button span {
  background-color: #022d9e;
  padding: 10px; 
  color: #ffffff;
  font-size: 15px;
  border-radius: 5px;
}
img.news-event-img {
  border: 1px solid #28a745;
}
.deadline-text {
  color: #ff0000 !important;
}
h5.resi-into.every_title_footer {
  margin: 0 0 15px 0 !important;
}
p.resiinfo-des.footer-item__desc {
  line-height: 18px;
  margin-top: 6px;
  font-size: 13px;
}
h5.privacy-page.every_title_footer {
  margin: 0 0 9px 0 !important;
}
.theory-sec {
  padding-top: 25px; 
}
.footer-contact-menu__item-content p {
    line-height: 23px;
}
ul.btm-margin-ftr.footer-menu {
    margin-top: 16px;
}
.logo-clr.bg-success {
    background-color: #ffffff !important;
    box-shadow: 0 2px 9px rgba(0, 0, 0, 0.6);
}
.site-navbar .site-navigation .site-menu .has-children .dropdown {
    background: #ffffff !important;
}
.btn-success {
    background-color: #113f84 !important;
    border-color: #113f84 !important;
}
.btn-success:hover {
    background-color: #1b53a7 !important;
    border-color: #1b53a7 !important;
}
/* strategies section css start */
  .strategies.container {
      margin: 20px auto;
      padding: 20px;
      background: #ffffff;
    }
    .header-wrapper .ribbon-image.logo-wrapper img {
    width: 300px;
    border-radius: 0;
    filter: brightness(1);
    padding-left: 15px;
}
p.locaton-p {
    line-height: 17px;
    margin-top: 0px;
    font-size: 13px;
    font-weight: 200;
}
h4.vedio-item__title{
  font-size: 16px !important;
  margin: 0 0 4px 0;
}
.image-section {
  text-align: center;
  margin: 30px 0;
}

.image-section img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.strategic-list {
  margin-top: 20px;
  padding-left: 20px;
}

.strategic-list li {
  margin-bottom: 10px;
  color: #2f3640;
  font-size: 15px;
}
.strategies-pd {
padding: 0px 20px;
margin-top: 44px;
}
.section-white {
background-color: #ffffff;
padding: 40px 0px;
}
.stra-text.section-white {
background-color: #ffffff;
padding: 20px 0px;
}
.hero-des-vb {
padding-top: 20px;
}

/* news & event end*/
.banner-title-sec {
    margin: -200px 200px 0px 0px;
}
.banner-title-sec h1{
  color: #fff !important; /* You can adjust the text color */
  font-size: 48px; /* Adjust as needed */
  font-weight: 700;
  text-shadow: 2px 2px 0 #000;
}
.slogan-sec {
    padding-top: 40px;
}
.pagi-sec{
  margin-top: -10px;
}
.sticky-container {
    padding: 0px;
    margin: 0px;
    position: fixed;
    right: -130px;
    top: 230px;
    width: 170px;
    z-index: 1100;
}
.sticky li {
    list-style-type: none;
    background-color: #022d9e;
    color: #efefef;
    height: 43px;
    padding: 0px;
    margin: 0px 0px 1px 0px;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
    border-radius: 50px;
}
.sticky li img {
    float: left;
    margin: 5px 4px;
    margin-right: 5px;
}
.sticky li p {
    padding-top: 5px;
    margin: 0px;
    line-height: 14px;
    font-size: 15px;
    color: #fff;
}
.sticky li:hover {
    margin-left: -100px;
}
#flip {
    color: #fff;
    font-weight: bold;
    line-height: 0;
    margin-bottom: 10px;
    padding: 7px;
    position: fixed;
    left: 0;
    top: 360px;
    z-index: 99999999;
}
.follow-social-icon>li a.facebook {
    background-color: #3B5998;
}
.follow-social-icon>li a.youtube {
    background-color: #bb0000;
}
.follow-social-icon>li a.twitter {
    background-color: #55ACEE;
}
.follow-social-icon>li a.linkedin {
    background-color: #007bb5;
}
.follow-social-icon>li a {
    border-top: 1px solid #fff;
    color: #fff;
    display: block;
    font-size: 16px;
    padding: 9px 11px;
}
.blog-item__title a {
    color: #000;
}
.watch_listen a {
  color: hsl(0deg 0% 13.39%);
}
.news-event-slider-section {
    padding: 40px 0;
    background-color: #f9f9f9;
    text-align: center;
}
.section-title {
    font-size: 28px;
    margin-bottom: 30px;
}
.swiper-slide {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.swiper-slide img {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
}
.news-title {
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}
h3.news-title{
  color: #fff !important; 
  background-color: #69BB9B;
  border-radius: 10px 10px 0px 0px;
}

/* Rumena Apu guiding start */
.banner-left__content.who h2 {
    font-size: 30px !important;
}
.banner-left__content h2 {
    text-transform: uppercase;
    font-weight: 400 !important;
    letter-spacing: 6px;
}
.section-red h1.section-heading__title {
    font-size: 35px !important;
    color: #FFFFFF !important;
    font-weight: 500;
}
.section-heading__title {
    padding: 40px 0px 0px 0px !important;
}
h1.main-slogan {
    font-weight: 400;
    font-size: 25px;
    padding: 16px;
    margin: 0 0 0px 0;
    color: #ffffff !important;
}
.donner .social-list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
} 
h2.vision_title {
    text-align: center;
    color: #5ec09c;
    font-weight: 500;
    font-size: 25px;
}
.about_heading__title {
    font-size: 25px;
    font-weight: 500; 
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 6px;
}
h2.vision_title {
    text-align: center;
    color: #5ec09c;
    font-weight: 500;
    font-size: 25px;
    text-transform: uppercase;
    letter-spacing: 6px;
}
h2.mission_title{
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: 500;
}
p.mission_description {
    padding: 21px 97px;
    text-align: center;
}
p.vision_description {
    text-align: center;
}
.content-padding p {
    font-size: 13px;
    line-height: 25px;
}
h2.goal_title {
    margin-top: 51px;
    color: #5ec09c;
    text-align: center;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 500;
}
.goal_txt_des p {
    padding: 15px;
}
h5.bllt_point_txt {
    padding: 10px;
    font-size: 16px;
    font-weight: 200;
    color: #000000;
}
.back_heading h2 {
  margin: 0px 0px 20px 0px !important;
}
.strategies-pd h2{
  font-size: 25px;
  font-weight: 400; 
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 6px;
}
.footer-area h5.resi-into.every_title_footer {
    color: #ffffff;
}
.footer-item__desc {
    color: #ffffff !important;
    font-weight: 300;
    font-size: 15px;
}
.footer-item__title {
    color: #ffffff !important
}
.resiinfo-des.footer-item__desc a { 
    color: #ffffff;
}
.footer-contact-menu__item p {
    color: #ffffff !important;
}
.fa-linkedin:before {
    content: "\f08c";
    color: #ffffff !important;
}
.footer-item .social-list__item .social-list__link {
    border: 1px solid hsla(0, 0%, 100%, 0.2) !important;
    
}
.fa-instagram:before {
    content: "\f16d";
    color: #ffffff !important;
}
.fa-twitter:before {
    color: #ffffff !important;
}
.fa-facebook-f:before {
    color: #ffffff !important;
}
.footer-area h5>a {
    color: hsl(0deg 0% 100%) !important;
    font-weight: 200;
}
ul.social-list.donners_logo img{
  max-width: 75%;
}

/* whatwe do details */
.avatar img {
    margin-right: auto;
    margin-left: auto;
    display: block;
    max-width: 40%;
}
.what_we_do_img {
  transition: all 0.2s ease-in-out;
}
.what_we_do_img:hover {
    /* box-shadow: 0px 20px 30px rgba(1, 6, 20, 0.1); */
    border: 2px solid hsl(var(--base) / 0.4);
    transform: translateY(-3px);
}
p.blog-img-title {
    font-size: 13px;
}
h2.post-title.text-responsive {
    font-size: 21px;
    text-transform: uppercase;
}
.what_do_text {
    padding-top: 10px;
    padding-bottom: 20px;
    text-align: justify;
}
.swiper-slide img{
  border-radius: unset !important; 
}
body {
    font-size: 15px !important;
}
.widget-body.emargency .table tbody tr td:last-child {
    text-align: center;
}
.widget-body.emargency .table tbody tr td {
    padding: 10px 1px;
}
.widget-body.emargency .table {
    font-size: 13px;
}
/* whatwe do details */ 
.book-card {
    background-color: #afc7ff;
    box-shadow: 0 2px 9px rgb(118 111 111 / 60%);
    margin-bottom: 17px;
}
h1.annual-heading__title{
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: capitalize;
}
.book-info {
    padding: 15px;
}
.books-grid {
    padding: 20px;
}
.title-pd h4 {
    padding-bottom: 10px;
}
.card a {
    color: hsl(0, 0%, 100%) !important;
}
.theory-sec h4 {
    font-size: 16px;
}
h4.vedio-item__title {
    font-size: 15px;
}
.footer-contact-menu__item-content {
    padding-left: 0px !important;
}
.bottom-footer p {
    font-size: 11px;
    color: rgb(255, 255, 255);
}
.banner-left__content h2 {
    margin-top: -15px;
}
p.neura-blog-text {
    font-size: 13px;
    line-height: 25px;
    text-align: justify;
}
.footer-pd{
  padding: 10px 0px;
}
.about.strategies-pd {
    margin-top: 0px;
}
/* Rumena Apu guiding Emd */