@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,600,700");
/*@font-face {
  font-family: 'futura-bold';
  src: local("/fonts/Futura-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}*/

body {
  line-height: 1.2;
  font-family: "Open Sans" !important;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #5c5c77;
}

p, .paragraph {
  font-weight: 400;
  color: #5c5c77;
  font-size: 15px;
  line-height: 1.9;
  font-family: "Open Sans" !important;
}

h1, h2, h3, h4, h5, h6 {
  color: #1e1e4b;
  font-family: "Open Sans" !important;
  font-weight: 700;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 60px;
}

@media (max-width: 575px) {
  h1, .h1 {
    font-size: 45px;
  }

}

h2, .h2 {
  font-size: 40px;
}

@media (max-width: 575px) {
  h2, .h2 {
    font-size: 30px;
  }
}

h3, .h3 {
  font-size: 25px;
}

@media (max-width: 575px) {
  h3, .h3 {
    font-size: 20px;
  }
}

h4, .h4 {
  font-size: 20px;
}

@media (max-width: 575px) {
  h4, .h4 {
    font-size: 18px;
  }
}

h5, .h5 {
  font-size: 18px;
}

@media (max-width: 575px) {
  h5, .h5 {
    font-size: 16px;
  }
}

h6, .h6 {
  font-size: 16px;
}

@media (max-width: 575px) {
  h6, .h6 {
    font-size: 14px;
  }
}

/* Button style */
.btn {
  font-size: 16px;
 font-family: "Open Sans" !important;
  text-transform: capitalize;
  padding: 15px 40px;
  border-radius: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  z-index: 1;
  transition: .2s ease;
  overflow: hidden;
}

.btn::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 100%;
  left: 0;
  bottom: 10%;
  z-index: -1;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.btn:active {
  box-shadow: none;
}

.btn:hover::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.btn-sm {
  font-size: 14px;
  padding: 10px 35px;
}

.btn-xs {
  font-size: 12px;
  padding: 5px 15px;
}

.btn-primary {
  background: #ffbc3b;
  color: #fff;
}

.btn-primary::before {
  background: #fff;
}

.btn-primary:active {
  background: #ffbc3b !important;
  color: #ffbc3b;
}

.btn-primary:active::before {
  height: 80%;
}

.btn-primary:hover {
  background: #ffab08;
  color: #ffbc3b;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #ffab08;
  border-color: #ffab08;
}

.btn-secondary {
  background: #fff;
  color: #ffbc3b;
  border: 1px solid #fff;
}

.btn-secondary::before {
  background: #ffbc3b;
}

.btn-secondary:active {
  background: #ffbc3b;
  color: #fff;
  border: 1px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #fff;
  border: 1px solid #fff;
}

.btn-primary-outline {
  border: 1px solid #ffbc3b;
  color: #ffbc3b;
  background: transparent;
}

.btn-primary-outline::before {
  background: #fff;
}

.btn-primary-outline:hover {
  background: #ffbc3b;
  color: #ffbc3b;
}

.btn-primary-outline:active {
  background: #ffbc3b;
  color: #fff;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: #ffcd6e;
  color: #fff;
}

::selection {
  background: #ffcd6e;
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFDC11;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: .2s ease;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #ffbc3b;
}

a.text-primary:hover {
  color: #ffbc3b !important;
}

a.text-light:hover {
  color: #ffbc3b !important;
}

h4 {
  transition: .2s ease;
}

a h4:hover {
  color: #ffbc3b;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-title {
  margin-bottom: 30px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.border-primary {
  border-color: #ededf1 !important;
}

/* overlay */
.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #1a1a37;
  opacity: .8;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #ffbc3b !important;
}

.bg-secondary {
  background: #1a1a37 !important;
}

.bg-gray {
  background: #f8f8f8;
}

.text-primary {
  color: #ffbc3b !important;
}

.text-color {
  color: #5c5c77;
}

.text-light {
  color: #8585a4 !important;
}

.text-lighten {
  color: #d6d6e0 !important;
}

.text-muted {
  color: #b5b5b7 !important;
}

.text-dark {
  color: #1e1e4b !important;
}

.font-secondary {
    font-family: "Open Sans" !important;
    font-weight: bold;
    font-size: 50px;
    /* color: rgb(255, 211, 15); */
    /* background-image: url(https://saahas.org/images/arrow-yellow.png); */
    background-repeat: no-repeat;
    background-position: right top;
	/* width: 450px; */
    /* float: left; */
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.pl-150 {
  padding-left: 150px;
}

.zindex-1 {
  z-index: 1;
}

@media (max-width: 991px) {
  .overflow-md-hidden {
    overflow: hidden;
  }
}

.vertical-align-middle {
  vertical-align: middle;
}

.icon-md {
  font-size: 36px;
}

/* page title */
.page-title-section {
  padding: 125px 0 20px;
}

.custom-breadcrumb li.nested {
  position: relative;
  padding-left: 25px;
}

.custom-breadcrumb li.nested::before {
  position: absolute;
  font-family: "Open Sans" !important;
  content: "\e649";
  font-size: 20px;
  top: 50%;
  left: -5px;
  color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* /page title */
.list-styled {
  padding-left: 25px;
}

.list-styled li {
  position: relative;
  margin-bottom: 15px;
}

.list-styled li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #ffbc3b;
  left: -25px;
  top: 5px;
}

textarea.form-control {
  height: 200px;
  padding: 20px;
}

#map_canvas {
  height: 500px;
}

.top-header {
  font-size: 12px;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  -webkit-transform-origin: top;
          transform-origin: top;
  font-weight: 600;
}

.top-header.hide {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
}

.navigation {
  background: linear-gradient(to right, transparent 50%, #ffbc3b 50%);
  transition: .2s ease;
}

@media (max-width: 991px) {
  .navigation {
    background: #1a1a37;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #1a1a37;
  }
}

.navbar-nav {
  padding-left: 50px;
  background: #ffbc3b;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding-left: 0;
    background: #1a1a37;
  }
}

.nav-bg {
  background-color: #1a1a37;
}

.nav-item {
  margin: 0 8px;
  position: relative;
}

.nav-item .nav-link {
  text-transform: uppercase;
  font-weight: 600;
}

.nav-item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 100%;
  content: "";
  background: #fff;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.nav-item:hover::before, .nav-item.active::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff;
}

link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: #fff;
}

.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
  color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 40px 0px;
}

@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 20px;
  }
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 5px #0000000d;
}

.navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  border-bottom: 5px solid #ffbc3b;
  padding: 15px;
  top: 96px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: .3s ease;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  background: #fff;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform-origin: unset;
            transform-origin: unset;
  }
}

.navbar .dropdown-menu.show {
  visibility: hidden;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}

.navbar .dropdown-item {
  position: relative;
  color: #1e1e4b;
  transition: .2s ease;
  text-transform: capitalize;
  font-family: "Open Sans" !important;
}

@media (max-width: 991px) {
  .navbar .dropdown-item {
    text-align: center;
  }
}

.navbar .dropdown-item:not(:last-child) {
  margin-bottom: 10px;
}

.navbar .dropdown-item:hover {
  color: #ffbc3b;
  background: transparent;
}

.hero-section {
  padding: 250px 0 290px;
}

.hero-slider .prevArrow,
.hero-slider .nextArrow {
  position: absolute;
  bottom: -123px;
  z-index: 9;
  padding: 15px;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  font-size: 30px;
  transition: all linear .2s;
  background: transparent;
 
}

.hero-slider .prevArrow:focus,
.hero-slider .nextArrow:focus {
  outline: 0;
}

.hero-slider .prevArrow:hover,
.hero-slider .nextArrow:hover {
  color: #ffbc3b;
}

.hero-slider .prevArrow {
  right: 60px;

}

.hero-slider .nextArrow {
  right: 0;
  
}

.hero-slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: -100px;
  padding-left: 0;
  display: none;
}

.hero-slider .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}

.hero-slider .slick-dots li.slick-active button {
  background: #ffbc3b;
}

.hero-slider .slick-dots li button {
  color: transparent;
  padding: 0;
  overflow: hidden;
  height: 10px;
  width: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  outline: 0;
}

/* banner feature */
.feature-icon {
  font-size: 50px;
  color: #ffbc3b;
  display: inline-block;
}

.feature-blocks {
  margin-top: -100px;
  padding-left: 70px;
  padding-top: 80px;
  padding-right: 30%;
}

@media (max-width: 1400px) {
  .feature-blocks {
    padding-right: 10%;
  }
}

@media (max-width: 1200px) {
  .feature-blocks {
    padding-right: 50px;
    padding-left: 50px;
    padding-top: 30px;
  }
  .feature-blocks h3 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .feature-blocks {
    margin-top: 0;
    padding: 50px;
  }
  .feature-blocks h3 {
    font-size: 25px;
  }
}

/* /banner feature */
/* course */
.card-btn {
  font-size: 12px;
  padding: 5px 10px;
}

.flex-basis-33 {
  flex-basis: 33.3333%;
}

.hover-shadow {
  transition: .3s ease;
}

.hover-shadow:hover {
  box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

/* /course */
/* success story */
.success-video {
  min-height: 300px;
}

.success-video .play-btn {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 767px) {
  .success-video .play-btn {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.play-btn {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #ffbc3b;
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.play-btn i {
  line-height: 80px;
}

.play-btn::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -2;
  transition: .3s ease;
  transition-delay: .2s;
}

.play-btn::after {
  position: absolute;
  content: "";
  height: 80%;
  width: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #ffbc3b;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -1;
  transition: .3s ease;
}

.play-btn:hover::before {
  height: 80%;
  width: 80%;
  transition-delay: 0s;
}

.play-btn:hover::after {
  height: 0;
  width: 0;
  transition: 0s ease;
}

/* /success story */
/* events */
.card-date {
  position: absolute;
  background: #ffbc3b;
  font-family: "Open Sans" !important;
  text-align: center;
  padding: 10px;
  color: #fff;
  top: 0;
  left: 0;
  text-transform: uppercase;
}

.card-date span {
  font-size: 40px;
}

/* /events */
/* teacher */
.teacher-info {
  width: 70%;
  bottom: 0;
  right: 0;
}

/* /teacher */
/* footer */
.newsletter {
  background-image: linear-gradient(to right, transparent 50%, #ffbc3b 50%);
  margin-bottom: -170px;
  position: relative;
  z-index: 1;
}

.newsletter-block {
  padding-left: 50px;
}

@media (max-width: 575px) {
  .newsletter-block {
    padding-left: 15px;
  }
}

.input-wrapper {
  position: relative;
}

.input-wrapper button {
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-control {
  height: 60px;
  background: #fff;
  border-radius: 0;
  padding-left: 25px;
}

.form-control:focus {
  border-color: #ffbc3b;
  box-shadow: none;
}

.newsletter-block .form-control {
  height: 90px;
}

.bg-footer {
  background-color: #182b45;
}

.logo-footer {
  margin-top: -20px;
  display: inline-block;
}

.footer {
  border-color: #494a43 !important;
  padding-top: 275px;
}
/*donate page alignment */
.footer .row {
 display: flex !important;
}

/* /footer */
.filter-controls li {
  cursor: pointer;
  transition: .1s ease;
  border: 1px solid #ffd30f;
  padding: 10px;
}

.filter-controls li.active {
  font-weight: 600;
  background-color: #ffd30f ;
  border: 1px solid #ccc;
}

/*# sourceMappingURL=maps/style.css.map */
/*Navigation*/
.top-header {
  display: none;
}
.navigation {
  background: linear-gradient(to right, #fff 50%, #fff 50%);
  transition: 0.2s ease;
  margin-top: 0px !important;
}
.nav-item {
  margin: 0;
  position: relative;
}
.nav-item::before {
  height: 0;
}
.navbar-expand-lg .navbar-nav .nav-link {
  padding: 20px 15px;
  color: #777;
  font-size: 14px;
}
#navigation ul.navbar-nav > li.active > a.nav-link > span:before,
#navigation ul.navbar-nav > li:hover > a.nav-link > span:before {
  left: 0;
  width: 100%;
}
#navigation ul.navbar-nav > li > a.nav-link > span:before {
  background-color: #ffe00f;
  content: "";
  position: absolute;
  bottom: 12px;
  left: 50%;
  width: 0px;
  height: 3px;
  -webkit-transition: width 0.3s, left 0.3s;
  -o-transition: width 0.3s, left 0.3s;
  transition: width 0.3s, left 0.3s;
}
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
  color: #555;
  background: #fff;
}
.navbar-nav {
  padding-left: 50px;
  background: #fff;
}
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: #333;
  background: transparent;
}
.container-fluid {
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}
a.ngo-bg-color {
  background-color: #feca0a;
  padding: 10px 10px;
  margin-top: 10px;
  margin-left: 15px;
  transition: all 0.25s ease-in-out;
  width: auto;
  float: left;
  color: #000;
  font-weight: 600;
  font-size: 14px;
}
a.ngo-bg-color i {
  float: right;
  margin-left: 5px;
  padding-right: 0px;
  margin-top: 3px;
}
a.ngo-bg-color:hover {
  background-color: #222427;
  color: #fff !important;
}
.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgb(0 0 0 / 12%);
  border-bottom: 5px solid #ffe00f;
  padding: 0;
  top: 54px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: 0.3s ease;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  background: #fff;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: 10px 16px;
  clear: both;
  font-size: 14px;
  border-bottom: 1px solid #eee;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  /* border: 0;*/
}
.navbar .dropdown-item:not(:last-child) {
  margin-bottom: 0;
}
.navbar .dropdown-item:hover {
  color: inherit;
  /* background: transparent; */
  background: #f3f3f3;
}
.navbar .dropdown:hover .dropdown-menu {
  width: 220px;
}
.navbar-dark .navbar-brand {
  color: #fff;
  padding: 20px 0px;
}
.navbar-dark .navbar-brand img {
  width: 85%;
}
/*.navbar .dropdown:hover .dropdown-menu > .dropdown-toggle:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.navbar .dropdown:hover .dropdown-menu > .dropdown-menu.sublevel-1 {
  /*visibility: hidden;
  opacity: 0;*
  left: 100%;
}
.navbar
  .dropdown:hover
  .dropdown-menu
  > #navbarDropdown1:hover
  .dropdown-menu.sublevel-1 {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.navbar-nav li:hover > ul.dropdown-menu {
  display: block;
}
.dropdown-submenu {
  position:relative;
}
.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top:-6px;
}

/* rotate caret on hover *
.dropdown-menu > li > a:hover:after {
  text-decoration: underline;
  transform: rotate(-90deg);
} */
.navbar-expand-lg .navbar-nav .dropdown-menu-1,
.navbar-expand-lg .navbar-nav .dropdown-menu-2,
.navbar-expand-lg .navbar-nav .dropdown-menu-2 {
  position: absolute;
}
.navbar .dropdown-menu-1,
.navbar .dropdown-menu-2,
.navbar .dropdown-menu-3 {
  box-shadow: 0px 3px 9px 0px rgb(0 0 0 / 12%);
  border-bottom: 5px solid #ffe00f;
  padding: 0;
  top: 54px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: 0.3s ease;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  background: #fff;
}
.navbar .dropdown1:hover .dropdown-menu-1,
.navbar .dropdown2:hover .dropdown-menu-2,
.navbar .dropdown3:hover .dropdown-menu-3 {
  width: 220px;
  left: 100%;
  top: 0px;
}

.navbar .dropdown1:hover .dropdown-menu-1,
.navbar .dropdown2:hover .dropdown-menu-2,
.navbar .dropdown3:hover .dropdown-menu-3 {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.navbar .dropdown-item {
  white-space: pre-wrap;
}
.dropdown1 .dropdown-toggle::after,
.dropdown2 .dropdown-toggle::after {
  border-bottom: 0.3em solid transparent;
  border-top: 0.3em solid transparent;
  border-left: 0.3em solid;
  position: absolute;
  right: 10px !important;
  top: 18px;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

/*Navigation end*/

/*Banner*/
.overlay::before {
  background: transparent;
}

.feature-blocks {
  margin-top: 0;
  padding: 30px 40px;
}
.socialMediaSection {
	padding:40px;
}
.hero-section {
  padding: 80px 0px 15px;
  margin-top: 116px;
}
.feature-blocks h3 {
  text-align: center;
  background-repeat: no-repeat;
  background-position: left center;
  padding-top: 18px;
  font-family: "Open Sans";
  font-size: 30px;
  display: inline-block;
  align-items: center;
  justify-content: center;
  color: #000;
}
.feature-blocks p {
  padding-left: 10%;
  padding-right: 10%;
  margin-top: 20px;
  font-size: 16px;
  font-family: "Open Sans";
  font-weight: 400;
  text-align: justify;
}
.feature-blocks .picture {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  vertical-align: middle;
  margin-top: -20px;
}
.feature-blocks img {
  display: inline-block;
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  text-align: center;
  width: 100%;
  vertical-align: middle;
}
.programvert {
  font-family: "Open Sans";
  font-size: 30px;
  font-weight: 700;
  width: 30%;
  float: left;
  margin-top: -15px;
}
.ourpartner {
  font-family: "Open Sans";
  font-size: 30px;
  font-weight: 700;
  width: 22%;
  float: left;
  margin-top: -15px;
}
.brd-picture {
  width: 66%;
}

.urbanwaste {
  background-color: rgb(255, 211, 15);
  font-family: "Open Sans";
  font-size: 16px;
  height: 60px;
  width: 200px;
  line-height: 18px;
  color: #000;
  color: inherit;
  display: inline-block;
  line-height: 1;
  padding: 0.7em 1.2em;
  box-sizing: border-box;
  cursor: pointer;
  text-align: center;
  border: 1px solid #ebebeb;
  text-decoration: none;
  position: relative;
  max-width: 100%;
  margin-top: 20px;
}
a.urbanwaste:hover,
.urbanwaste span:hover {
  color: #2a2a2a;
}
.pd-15 {
  padding: 15px;
}
.pb-video-wrap:not(.video--popup) iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.e-waste h3 {
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.e-waste p {
  font-size: 16px;
  color: rgb(0, 0, 0);
  font-family: "Open Sans";
}
a,
p {
  color: #000;
}
a:hover,
a:focus {
  color: #4d76e4;
}
form#searchForm {
  border: 1px solid #ecf0f3;
  padding: 15px;
}
form#searchForm .btn-toolbar {
  background: #ecf0f3 none repeat scroll 0 0;
  padding: 15px;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
  -webkit-transition: border-color ease-in-out 0.15s,
  box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
form#searchForm .btn-toolbar button.btn-default {
  padding: 5px 12px;
}
.btn-default {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0px;
  -webkit-box-shadow: 0px 0px 0px #000;
  box-shadow: 0px 0px 0px #000;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default {
  border-width: 1px;
  border-style: solid;
  border-color: #d8d8d8;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
form#searchForm fieldset {
  margin-top: 15px;
}
form#searchForm fieldset legend {
  padding-bottom: 8px;
  margin-bottom: 10px;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
form#searchForm fieldset label input {
  display: inline-block;
  position: inherit;
  margin: -2px 5px 0;
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  vertical-align: middle;
}
.worldCountSection {
  background: transparent !important;
  background-image: url(../images/banner/hp-bg.jpg) !important;
  background-repeat: no-repeat;
  background-attachment: inherit;
  background-size: cover !important;
  background-position: center center !important;
  border-style: none;
  margin-bottom: 50px;
}
.getinvolv {
  background: transparent !important;
  background-image: url(../images/donate-tab-line.jpg) !important;
  background-repeat: no-repeat;
  background-attachment: inherit;
  background-size: cover !important;
  background-position: center center;
  border-style: none;
  margin-bottom: 50px;
}
.pb-five-twelfths {
  width: 41.666%;
}
.pb-seven-twelfths {
  width: 58.333%;
}
.pb-seven-twelfths h3 {
  font-family: "Open Sans";
  color: white;
  font-weight: normal;
}
.pb-seven-twelfths p {
  color: white;
}
.pb-eight-twelfths {
  width: 66.666%;
}
.pb-two-twelfths {
  width: 16.666%;
}
.contributebtn {
  margin-top: -20px;
  margin-bottom: -20px;
}
.contributebtn h3 {
  font-family: "Open Sans";
  text-align: right;
  font-weight: 600;
  margin-right: -30px;
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.contributebtn .pb-two-twelfths a {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  vertical-align: middle;
  max-width: 100%;
  margin-top: 5px;
}
.contributebtn .pb-two-twelfths img {
  display: inline-block;
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  text-align: center;
  width: 100%;
  vertical-align: middle;
  position: unset;
}
.pb-grid {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  position: relative;
  float: none;
}
.timeline-Viewport {
  height: 400px;
  overflow-x: hidden;
  overflow-y: scroll !important;
}
.embedsocial-hashtag {
  width: 340px;
  height: 500px;
  overflow-y: scroll;
  background: #f1d5e426;
  float: left;
  padding: 10px 0px;
}
/*Banner end*/
/*Footer*/
.logo-footer .img-fluid {
  height: 28px;
}
.logo-footer {
  margin-top: 0;
}
.list-unstyled a {
  color: #fff;
  font-size: 13px;
  line-height: 1.7;
  padding: 5px 0;
  background-color: transparent;
}
.list-unstyled p {
  line-height: 1.7;
  background-color: transparent;
}
.list-unstyled a:hover {
  color: #ffe00f;
}
.pb-one-twelfth {
  width: 7.333%;
}
.borderimg {
  text-align: center;
}
.borderimg-picture {
  justify-content: center;
  align-items: center;
  padding-top: 0px;
  height: 200px;
}
.borderimg-picture img {
  display: inline-block;
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  text-align: center;
  width: 100%;
  vertical-align: middle;
  position: unset;
}
.borderimg-picture {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  vertical-align: middle;
  max-width: 100%;
}
.bg-footer {
  background-color: #222427;
  padding-top: 40px;
  padding-bottom: 30px;
}
.list-unstyled li a img {
  width: 32px;
}
/*Footer end*/

/*Sidenav start*/
#mySidenav a {
  position: fixed;
  right: -88px;
  font-size: 14px !important;
  transition: 0.3s;
  padding: 10px 15px;
  width: 130px;
  text-decoration: none;
  color: white;
  border-radius: 5px 0px 0px 5px;
}
#mySidenav a .fa {
  font-size:23px;
  margin-right:9px;
  float: left;
  color: inherit;
  font-family: FontAwesome !important;

}
/* .programsContainer .col-lg-5.col-sm-6.col-xs-12:nth-child(2) img {
	width: 84%;
    padding-bottom: 6.3rem !important;
} */
#mySidenav a:hover {
  right: 0;
}
#facebook {
  bottom: 240px;
  background-color: #3a549f;
}

#twitter {
  bottom: 185px;
  background-color: #00aff0;
}
#googleplus {
  bottom: 185px;
  background-color: #eb2e2a;
}

#youtube {
  bottom: 130px;
  background-color: #e80101;
}

#linkedin {
  bottom: 75px;
  background-color: #0488b9;
}

#instagram {
  bottom: 20px;
  background-color: #e91d8a
}
/*Sidenav end*/

/*pgmSidenav start*/
#pgmSidenav a {
  position: fixed;
  right: -88px;
  font-size: 14px !important;
  transition: 0.3s;
  padding: 10px 15px;
  width: 130px;
  text-decoration: none;
  color: white;
  border-radius: 5px 0px 0px 5px;
}
#pgmSidenav a .fa {
  font-size:23px;
  margin-right:9px;
  float: left;
  color: inherit;
  font-family: FontAwesome !important;

}

#pgmSidenav a:hover {
  right: 0;
}
#facebook {
  bottom: 240px;
  background-color: #3a549f;
}

#whatsapp {
  bottom: 185px;
  background-color: #43d854;
}

#phone {
  bottom: 130px;
  background-color: #750985;
}

#instagram {
  bottom: 20px;
  background-color: #e91d8a;
}
#linkedin {
  bottom: 75px;
  background-color: #0488b9;

}
/*pgmSidenav end*/

/*Donate*/
.donate-bg {
  background-image: url(../images/donate_wave.svg);
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: cover;
  margin-left: -15px;
  margin-right: -15px;
  padding-top: 170px;
  padding-bottom: 40px;
}
.donate-bg h3 {
  font-family: "Open Sans";
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: left;
  padding-left: 10px;
  margin-left: 20px;
}
.donate-bg p {
  color: #474747;
  line-height: 1.25;
  font-size: 18px;
  text-align: justify;
  padding-left: 30px;
  padding-right: 30px;
}
.donatesec {
  font-family: "Open Sans";
  font-size: 40px;
  font-weight: 700;
  color: rgb(255, 211, 15);
  background-image: url(../images/arrow-yellow.png);
  background-position: 100% 50%;
  background-repeat: no-repeat;
  width: 260px;
  margin-top: 0px;
  margin-bottom: 20px;
  padding: 15px;
}
.singleimgslide picture {
  width: 120px;
}
.singleimgslide .carousel.small {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: rgb(255, 211, 15);
  border-style: none;
  border-radius: 20px;
  padding: 15px;
}
.singleimgslide .carousel.small img {
  border-radius: 10px;
}
.singleimgslide p {
  text-align: justify;
  font-family: "Open Sans";
  color: white;
  margin-top: -5px;
  margin-bottom: 10px;
  margin-top: 10px;
  line-height: inherit;
}
.readmore {
  text-align: right;
  font-family: "Open Sans";
  color: white;
  font-size: 16px;
  text-decoration: underline;
  margin-bottom: 0px;
  float: right;
}
/***Gallery***/
.donateGalleryImages .card .view img {
    position: relative;
    display: block;
    width: 100%;
    height: 250px;
}
#multi-item-example .carousel-indicators {
	bottom:-30px;
}

.controls-top1 a .fa-chevron-right:before {
  top: 50%;
  border-right: 10px;
  right: 10px;
  position: absolute;
  /*width: 23px; */
  /* height: 23px; */
  padding: 6px 9px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.8;
  z-index: 1;
  background: #fff;
  text-align: center;
}
.controls-top1 a .fa-chevron-left:before {
  top: 50%;
  border-right: 10px;
  left: 10px;
  position: absolute;
  /*width: 23px; */
  /* height: 23px; */
  padding: 6px 9px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.8;
  z-index: 1;
  background: #fff;
  text-align: center;
}
.bg-gallery {
  background: #ffd30f;
  padding: 40px 60px 60px 60px;
}
.bg-gallery h3 {
  font-size: 40px;
  font-family: "Open Sans";
  font-weight: 700;
  color: rgb(34, 36, 39);
  margin: 0px 0px 15px 0px;
}
.galleryimg img {
  width: 100%;
  height: 100%;
  margin-top: 5px;
}
.programsContainer .card-img-top {
  width: 240px;
  margin: 0 auto;
}
.card-img-top {
  width: 100%;
}
.card .view {
  position: relative;
  overflow: hidden;
  cursor: default;
}
.card .view .mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-attachment: fixed;
}
.card .view img,
.card .view video {
  position: relative;
  display: block;
}
.card .view video.video-intro {
  top: 50%;
  left: 50%;
  z-index: -100;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  -webkit-transition: 1s opacity;
  transition: 1s opacity;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.overlay .mask {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.overlay .mask:hover {
  opacity: 1;
}

/*/Donate*/
/****Volunteer page***/
.section-sm.bg-banner {
  padding-top: 70px;
  padding-bottom: 40px;
}
.section-sm.bg-banner .container-fluid {
  padding: 0px;
}
.weneedyou {
  border-style: none;
  border-radius: 20px;
  margin-right: 10px;
  margin-left: 10px;
}
.weneedyou img {
  border-radius: 20px;
  display: inline-block;
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  text-align: center;
  width: 100%;
  vertical-align: middle;
  position: unset;
}
.activitsec {
  font-size: 50px;
  font-family: "Open Sans";
  font-weight: 700;
  color: rgb(255, 211, 15);
  background-image: url(https://saahas.org/images/arrow-yellow.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin-bottom: 20px;
}
.volunteer-bg {
  background-image: url(../images/donate_wave.svg);
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: cover;
  margin-left: -15px;
  margin-right: -15px;
  padding-top: 20px;
  padding-bottom: 40px;
}
.volunteer-bg p {
  color: #474747;
  line-height: 1.25;
  font-size: 14px;
  text-align: justify;
  padding-left: 30px;
  padding-right: 0px;
  line-height: 1.6;
}
.volunteer-bg h3 {
  font-family: "Open Sans";
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  padding-left: 10px;
  margin-left: 20px;
  text-decoration: underline;
}
.volunteer-bg .counter-number,
.volunteer-bg .counter-title {
  text-align: center;
  margin: 0px;
}
.gal-container {
  padding: 12px;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  position: relative;
  float: none;
}
.gal-item {
  overflow: hidden;
  padding: 20px;
  float: left;
  width: 100%;
  /*display: flex;*/
}
.gal-item .box {
  height: auto;
  /*overflow: hidden;*/
}
.gal-item a:focus {
  outline: none;
}
.gal-item a:after {
  /*content: "\e003";*/
  font-family: "Glyphicons Halflings";
  opacity: 0;
  /*background-color: rgba(0, 0, 0, 0.75);*/
  position: absolute;
  right: 3px;
  left: 3px;
  top: 3px;
  bottom: 3px;
  text-align: center;
  line-height: 350px;
  font-size: 30px;
  color: #fff;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.gal-item a:hover:after {
  opacity: 1;
}
.box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.modal-open .gal-container .modal {
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-open .gal-item .modal-body {
  padding: 0px;
}
.modal-open .gal-item button.close {
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: #000;
  opacity: 1;
  color: #fff;
  z-index: 999;
  right: -12px;
  top: -12px;
  border-radius: 50%;
  font-size: 15px;
  border: 2px solid #fff;
  line-height: 25px;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.35);
}
.modal-open .gal-item button.close:focus {
  outline: none;
}
.modal-open .gal-item button.close span {
  position: relative;
  top: -3px;
  font-weight: lighter;
  text-shadow: none;
}
.gal-item img {
  border: 5px solid #ffd30f;
  border-radius: 30px 0px 30px 0px;
}
.gal-item a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  border: 5px solid #ffd30f;
  border-radius: 30px 0px 30px 0px;
}
.avatar {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  box-sizing: border-box;
  border: 1px #ffd30f solid;
  /* background: red; */
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 7px 0px rgb(0 0 0 / 60%);
  transform: translatey(0px);
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0% {
    box-shadow: 0 2px 7px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
  50% {
    box-shadow: 0 20px 7px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(-20px);
  }
  100% {
    box-shadow: 0 2px 7px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
}
.box .tittlink {
  width: 100%;
  float: left;
  padding: 1em 0;
  text-align: center;
}
.applybtn {
  text-align: center;
  margin-bottom: 0;
  line-height: 0px;
  background-color: #ffe00f;
  padding-bottom: 0;
  position: relative;
  width: 100%;
  float: left;
}
.applyherebtn {
  text-align: right;
  margin-bottom: 0;
  line-height: 0px;
  background-color: transparent;
  padding-bottom: 0;
  position: relative;
  width: 100%;
  float: left;
  margin-top: 15px;
}
.applybtn a,
.applypopbtn a,
.applyherebtn a {
  padding: 8px 20px;
  font-size: 15px;
  font-family: "Open Sans";
  font-weight: 600;
  color: white;
  background-color: rgb(255, 211, 15);
  border-style: solid;
  border-radius: 10px;
}
.applybtn a:hover,
.applypopbtn a:hover,
.applyherebtn a:hover {
  background-color: #222427;
}
.pophead {
  font-family: "Open Sans";
  font-weight: 600;
  line-height: 70px;
  padding-left: 20px;
  margin-bottom: 0px;
  background-color: rgb(255, 211, 15);
}
.gal-container .modal-dialog {
  border: 5px solid #000;
  width: 780px;
  max-width: 780px;
  /* height: 200px; */
  /* overflow: auto; */
  /* margin: auto auto; */
}
.description {
  background: #000;
  color: #fff;
}
.description p {
  color: #fff;
  padding-top: 10px;
  font-size: 14px;
}
/*.gal-container .modal {
  width: 785px;
  overflow: auto;
  height: 200px;
  display: block;
  margin: auto auto;
  padding: 0;
  background-color: none !important;
  /* background: transparent; *
  background-color: transparent !important;
  max-width: 100% !important;
}
.gal-container .modal-content {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border: 5px solid #000;
  padding: 0;
  background: #fff;
}*/
.applypopbtn {
  width: 100%;
  float: left;
  text-align: center;
  padding: 10px 0px;
  margin-bottom: 10px;
}
/*Volunteer Voices*/
.sq-crousal4 {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}
.Voiceshead {
  font-family: "Open Sans";
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  margin: -20px;
}
.carousel-item .feedback-text {
  border-style: none;
  background-color: rgb(253, 241, 205);
  border-width: 1px;
  border-color: rgb(0, 0, 0);
  padding-right: 10px;
  padding-left: 10px;
}
.sq-crousal4 .carousel-control-next,
.sq-crousal4 .carousel-control-prev {
  opacity: 0;
  /*width: 46px;
  height: 43px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 43px;
  background-color: #030303;
  color: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 3px;*/
}
.sq-crousal4:hover .carousel-control-next,
.sq-crousal4:hover .carousel-control-prev {
  opacity: 1;
}
.sq-crousal4 .carousel-control-next:hover,
.sq-crousal4 .carousel-control-prev:hover {
  opacity: 0.8;
}
.sq-crousal4 .fa-angle-left:before {
  content: "\F177";
}
.sq-crousal4 .fa-angle-right:before {
  content: "\F178";
}
.sq-crousal4 .carousel-indicators li {
  height: 0;
  position: relative;
  width: 8px !important;
  height: 8px !important;
  margin: 0 6px !important;
  background: transparent;
}
.sq-crousal4 .carousel-indicators li::before {
  position: absolute;
  content: "";
  left: -2px;
  top: -2px;
  width: 12px;
  height: 12px;
  background: transparent;
  border: 1px solid #030303;
  border-radius: 50%;
}
.sq-crousal4 .carousel-indicators li.active::before {
  background: #212121;
  border-color: #212121;
}
.sq-crousal4 .carousel-indicators {
}
.sq-crousal4 li {
  width: 20px;
}
.sq-crousal4 .fa-angle-left {
  font-size: 18px;
  color: #444;
  left: -50px;
  position: relative;
  top: 0;
  width: 46px;
  height: 43px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 43px;
  background-color: #030303;
  color: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 3px;
}
.sq-crousal4 .fa-angle-right {
  font-size: 18px;
  color: #444;
  right: -50px;
  position: relative;
  top: 0px;
  width: 46px;
  height: 43px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 43px;
  background-color: #030303;
  color: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 3px;
}
i {
  text-align: right;
  font-style: italic;
  font-size: 20px;
  color: rgb(0, 0, 0);
  float: right;
}
.text-lg-left {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
}
/*/Volunteer Voices*/
/*/Volunteer page*/

/*Search box search*/
#wrap {
  margin: 0px 0px 0px 70px;
  display: inline-block;
  position: relative;
  height: 33px;
  float: right;
  padding: 0;
}
#wrap input[type="text"] {
  height: auto;
  font-size: 20px;
  display: inline-block;
  font-family: "Lato";
  font-weight: 100;
  border: none;
  outline: none;
  color: #555;
  padding: 10px;
  padding-right: 60px;
  width: 0px;
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  z-index: 3;
  transition: width .4s cubic-bezier(0.000, 0.795, 0.000, 1.000);
  cursor: pointer;
}

#wrap input[type="text"]:focus:hover {
  border-bottom: 1px solid #BBB;
}

#wrap input[type="text"]:focus {
  width: 600px;
  z-index: 1;
  border-bottom: 1px solid #BBB;
  cursor: text;
  background: #fff;
  position: absolute;
  top: 45px;
  right: 25px;
}
#wrap input[type="submit"] {
  height: 33px;
  width: 33px;
  display: inline-block;
  color:red;
  float: right;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADNQTFRFU1NT9fX1lJSUXl5e1dXVfn5+c3Nz6urqv7+/tLS0iYmJqampn5+fysrK39/faWlp////Vi4ZywAAABF0Uk5T/////////////////////wAlrZliAAABLklEQVR42rSWWRbDIAhFHeOUtN3/ags1zaA4cHrKZ8JFRHwoXkwTvwGP1Qo0bYObAPwiLmbNAHBWFBZlD9j0JxflDViIObNHG/Do8PRHTJk0TezAhv7qloK0JJEBh+F8+U/hopIELOWfiZUCDOZD1RADOQKA75oq4cvVkcT+OdHnqqpQCITWAjnWVgGQUWz12lJuGwGoaWgBKzRVBcCypgUkOAoWgBX/L0CmxN40u6xwcIJ1cOzWYDffp3axsQOyvdkXiH9FKRFwPRHYZUaXMgPLeiW7QhbDRciyLXJaKheCuLbiVoqx1DVRyH26yb0hsuoOFEPsoz+BVE0MRlZNjGZcRQyHYkmMp2hBTIzdkzCTc/pLqOnBrk7/yZdAOq/q5NPBH1f7x7fGP4C3AAMAQrhzX9zhcGsAAAAASUVORK5CYII=) center center no-repeat;
  background-size: contain;
  text-indent: -10000px;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity .4s ease;
}

#wrap input[type="submit"]:hover {
  opacity: 0.8;
}
/*Search box end*/

.hero-slider .prevArrow,
.hero-slider .nextArrow {
  bottom: -50px;
}
.hero-section {
    padding: 60px 0px 0px 0px;
    margin-top: 0;
}
.slick-slide img {
  display: block;
  width: 100%;
}
/*** Guidelines for Zero section***/
.bg-guidlinesec .content-row {
  display: flex;
}
.bg-guidlinesec-yellow {
  margin-top: 0px;
  margin-bottom: 0px;
  background-color: rgb(255, 211, 15);
  padding: 50px;
  border-style: solid;
  border-width: 1px;
  margin-left: 0px;
  display: flex;
}
.bg-guidlinesec-yellow .contgrp {
  text-align: center;
  border-style: solid;
  border-width: 3px;
  border-color: white;
  border-radius: 15px;
  background-color: white;
  padding: 0px;
}
.row.align-items-center1 {width:100%;}
.bg-guidlinesec-yellow .contgrp a {height:auto;}
.bg-guidlinesec-yellow .contgrp img {
  display: inline-block;
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  text-align: center;
  width: auto;
  vertical-align: middle;
  position: unset;
}
.bg-guidlinesec-yellow .contgrp h4 {
  font-weight: 600;
  font-size: 18px;
  word-break: break-word;
  margin: 10px 0px;
  line-height: 1.4em;
}

/*** /Guidelines for Zero section***/

/*----- css to hide the last submitted details in the webform-----*/
.node__submitted {display:none;}
.programVerticalsSection .programVerticalsBtn {
	display: flex !important;
    align-items: center;
    justify-content: center;
}
.homePageHeroSection .container-fluid {
	padding:0;
}

@media (max-width: 991px) {
  .navbar-dark .navbar-brand img {
    width: 80%;
	}
	button.navbar-toggler {
	border: 1px solid #000 !important; 
    border-radius: 3px !important;    
}
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px 15px !important;
    color: #777;
    font-size: 14px;
    text-align: left;
    line-height: 20px;
    border-bottom: 1px solid #ccc;
  }

  .navbar-nav {
    padding-left: 0 !important;
    background: #c6e9c6;
    border: 1px solid #ddd;
  }
  .nav-item {
    margin: 0;
    position: relative;
  }
  #navigation ul.navbar-nav > li > a.nav-link > span:before {
    background-color: #ffe00f;
    content: "";
    position: absolute;
    bottom: 0 !important;
    left: 50%;
    width: 0px;
    height: 2px !important;
    -webkit-transition: width 0.3s, left 0.3s;
    -o-transition: width 0.3s, left 0.3s;
    transition: width 0.3s, left 0.3s;
  }
  .dropdown-toggle::after {
    float: right;
  }
  .navbar .dropdown-menu {
    display: none !important;
  }
  .navbar .dropdown:hover .dropdown-menu {
    width: 100% !important;
  }
  .navbar .dropdown-item {
    text-align: left !important;
    background: #ccc;
  }
  .navbar .dropdown-menu.show {
    visibility: visible !important;
    display: block !important;
  }
  #wrap {
    display: none !important;
  }
  .bg-vertical .pb-one-twelfth,
  .brd-picture {
    display: none;
  }
  .ourpartner {
    width: 100% !important;
  }
  .feature-blocks {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .bg-vertical .container {
    display: inline-block !important;
  }
  .programvert {
    font-size: 29px !important;
    width: auto !important;
  }
  .feature-blocks h3,
  h2.ourpartner {
    font-size: 20px !important;
  }
  .section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .feature-blocks {
    padding-bottom: 30px !important;
  }
  .footer .pb-one-twelfth {
    display: none;
  }
  .dropdown-toggle::after {
    top: 8px;
    position: relative;
  }
  a.ngo-bg-color {
    margin-top: 0 !important;
    margin-left: 0 !important;
    width: 100% !important;
    border-bottom: 1px solid #eee;
    text-align: left;
  }
  .embedsocial-hashtag {
	  width:100% !important;
  }
  .section-sm.getinvolv .container1 .row {
	display: block !important;
    margin-right: 0;
    margin-left: 0;
    padding: 0 15px;
  }
  .section-sm.getinvolv .container1 .row .pb-seven-twelfths, 
  .section-sm.getinvolv .container1 .row .pb-five-twelfths {
    width: 100%;
	padding:0px;
  }
  .feature-blocks p {
    padding-left: 10%;
    padding-right: 10%;
  }
  .section-title.programvert {
	  margin-left:5px;
  }

}
.view-board-members-block .card-body h4.card-title {
    font-size: 16px;
}
.view-board-members-block .card-body p {
    font-size:14px;
    line-height: 20px;
}
.view-board-members-block .card-body {
    padding:10px;
    text-align:center;
}

.view-our-team-block .card-body h4.card-title {
    font-size: 16px;
}
.view-our-team-block .card-body p {
    font-size:14px;
    line-height: 20px;
}
.view-our-team-block .card-body {
    padding:10px;
    text-align:center;
}

.view-display-id-attachment_1 .col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333% !important;
    max-width: 12.333333% !important;
}
/*-------------------Donate page Gallery---------------------*/
.blog-img {
    max-height:275px;
    min-height:275px;
}
/*-------------------End Donate page Gallery---------------------*/

/*-------------------Change matters program page css---------------------*/
   .Typesofbulkywaste h3 {
    font-size: 30px;
    color: #fff;
  }
  
   .Typesofbulkywaste h5 {
    font-size: 18px;
        color: #feca0a;
    font-weight: bold;
  }
 
  .Typesofbulkywaste p {
    font-size: 12px;
    color: #fff;
    min-height: 50px;
    text-align: center;
  }
  .Typesofbulkywaste {
    background: #3a3a97;
    color: #fff;
    padding:40px;
  }
  .IdealandCommonsituations {
    background: aliceblue;
      /* color: #fff;*/
      padding:40px 20px;
  }
  .IdealandCommonsituations p {
   /* color: #fff;*/
   text-align:justify;
  }
   .IdealandCommonsituations h2 {   
    font-size: 30px !important;
    font-weight: 700 !important;
  }
  .IdealandCommonsituations h3 { 
     text-align:center; 
  }
  .Whatdowedowithit {
    color: #fff;
    font-weight: 700 !important;
    font-size: 30px !important;
    background: #0a6334;
    padding: 40px 15px;
  }
.Whatdowedowithit h2 {
    color: #fff;
    font-weight: 700 !important;
    font-size: 30px !important;
}
  .ContactUs {
    background: transparent !important;
    background-image: url(/sites/default/files/2022-08/business-people.jpg) !important;
    background-repeat: no-repeat;
    background-attachment: inherit;
    background-size: cover !important;
    background-position: center center;
    border-style: none;
    margin-bottom: 50px;
    padding: 150px 50px 50px 50px;
  }
  .ContactUs .pb-seven-twelfths {
    width: 100%;
    background: #fff;
  }
  .ContactUs .pb-seven-twelfths {
    width: 100%;
    background: #d6f3f2;
  }
  .ContactUs .pb-seven-twelfths h3 {
    font-family: "Open Sans";
    color: white;
    font-weight: normal;
  }
  .ContactUs .pb-seven-twelfths p {
    color: #555;
      margin-bottom: 0;
      font-size: 13px;
  }
   .ContactUs .social-icons .fa {
       color:#fff;
   }
  .ContactUs .social-icons a#facebook {
      background: #3b5998 !important;
    color: #fff;
    padding: 4px 65px;
    width: auto;
    height: auto;
    border-radius: 20px 0px 0px 20px;
    border: none;
    line-height: 35px;
  }
  .ContactUs .social-icons a#twitter {
      background: #00acee;
      color: #fff;
      padding: 4px 65px;
      width: auto;
      height: auto;
      border-radius: 0px;
      border: none;
      line-height: 35px;
  }
  .ContactUs .social-icons a#linkedin {
      color: #fff;
      padding: 4px 65px;
      width: auto;
      height: auto;
      border-radius: 0px 20px 20px 0px;
      border: none;
      line-height: 35px;
  }
  .ContactUs .social-icons {
        padding: 10px 15px;
      margin-bottom: 50px;
  }
  .ContactUs p span {
    width: 100%;
    float: left;
    font-weight: 600;
  }
  .contact-data {
    padding-bottom: 10px;
    
  }
 .contact-data span a {
    padding-top: 0px !important;
    height: auto !important;
  }
  .ContactUs .social-icons img {
	width:20px;
}
.change-contact {
    font-size: 18px !important;
    padding: 0 0 0 10px;
    color: blue;
}

  .ContactUs a {
	background-color: #d6f3f2 !important;
	font-size: 14px !important;
}
.ContactUs .social-icons a#linkedin {
    background: #dc396f !important;
}
.ContactUs .social-icons a#twitter {
   background: #34c334 !important;
}

 .ContactUs .contact-data img {
    width: 75px;
    padding: 5px 10px;
    margin-right:10px;
  }
  .ContactUs .contact-data i {
    font-size: 50px;
    padding: 5px 10px;
    color: mediumslateblue;
  }
  .ContactUs .contact-data .data-colr {
    color: #3737d9;
    font-weight: 500;
    line-height: 18px
  }
  .brdr {
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
  }
  
.Typesofbulkywaste .col-md-4 > .row {
    align-items: center;
}

.Typesofbulkywaste h5 {
    position: relative;
    margin: 0px 8px;
    z-index: 1;
    color: #fff;
    padding: 4px 10px;
}

.Typesofbulkywaste h5:before {
    content: "";
    z-index: -1;
    left: -0.5em;
    top: 0.1em;
    border-width: 13px;
    border-style: solid;
    border-color: #f25a21;
    position: absolute;
    background: transparent;
    width: 100%;
    border-left-color: transparent;
    border-right-color: transparent;
}
/*-------------------End Change matters program page css-----------------*/

/*-------------------Circular realty program page css-----------------*/
  .panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px;
}
.panel-group .panel {
  background: #eee;
  border: 1px solid #ddd;
  float: left;
  width: 100%;
  margin-bottom: 10px;
  font-size: 14px;
}
.panel h4.panel-title {
  margin: 0px;
}
.panel,
.panel-body {
  box-shadow: none;
}
.panel-body {
    padding: 10px;
    background: #fff;
    color: #000;
    line-height: 24px;
    font-size: 14px;
  }
.panel-group .panel-heading {
    padding: 0;
}
.panel-group .panel-heading a {
  display: block;
  padding: 10px 10px;
  text-decoration: none;
  position: relative;
  font-size: 14px;
}
.panel-group .panel-heading a:before { 
    content: '-';
    float: right;
    font-size: 23px;
    font-weight: 700;
    line-height: 10px;
}
.panel-group .panel-heading a.collapsed:before {
  content: '+';
  line-height: 16px;
}

.smchar {
  color: #fff;
  font-size: 11px;
  font-weight:bold;
}
.ExistingCDrulesandRegulations p {
  font-size: 10px;
}
.ExistingCDrulesandRegulations h5 {
  color: #4141a7;
    font-size: 14px;
    font-weight: 400;
    margin: 0 !important;
}
.ExistingCDrulesandRegulations {
  /*background: aliceblue;*/
  background: #f25a21;
}
.ExistingCDrulesandRegulations img {
  width: 60px !important;
    transition: transform .2s;
}
.ExistingCDrulesandRegulations img:hover {

  transform: scale(1.2);
}
.ExistingCDrulesandRegulations .ExistingCD > .row {
    align-items:center;
}
.ExistingCDrulesandRegulations img {
    width: 100%;
    transition: transform .2s;
}
.ExistingCDrulesandRegulations a {
    background: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ExistingCDrulesandRegulations .ExistingCD {
    padding: 15px;
    background: #eee;
    max-width: 47.6%;
    margin-right: 10px;
    margin-left: 10px;
}
.Wearedirectlyinvolved .section-title1 {
    width: 75%;
    font-size: 36px;
    background: #fff;
    box-shadow: 3px 3px 11px 0px #f25a21;
    color: #777;
    padding: 45px 40px 45px 30px;
    font-weight: 400;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}
.Wearedirectlyinvolved .section-title1 strong {
  color: #333;
}
.Wearedirectlyinvolved {
  background: #514a4c;
  color: #fff;
  padding-left:30px;
  padding-right:30px;
}
.videoblock {
  background: #008B8B;
  color: #fff;
  padding-left:30px;
  padding-right:30px;
}
.Wearedirectlyinvolved .fa-calendar {
    font-size: 40px;
    color: #666;
    float:none;
}
.Wearedirectlyinvolved .btn {
    margin-top: 15px;
    background-color: #f25a21;
    color: #fff;
    width: auto;
    float: none;
    text-align: center;
    padding: 10px 30px;
    height: auto;
    border-radius: 10px;
}
.Wearedirectlyinvolved .btn:hover {
    margin-top: 15px;
    background-color: #feca0a; 
    color: #000;
}
.videoblock p {
  color: #fff;
  font-size: 16px;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-weight: 400;
  text-align: justify;
}
.Wearedirectlyinvolved p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}
.Wearedirectlyinvolved h4 {
  color: #fff;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
   font-size: 25px;
}
.FAQ {
  background: aliceblue;
}
.ContactUs2 {
  background: #514a4c !important;   
  
  border-style: none;
  margin-bottom: 50px;
  padding: 50px 50px 50px 50px;
}
.ContactUs2 .pb-seven-twelfths {
  width: 100%;
  background: #514a4c;
}
.ContactUs1 .pb-seven-twelfths {
  width: 100%;
  background: #fff;
}
.ContactUs2 .pb-seven-twelfths h6 {
  font-family: "Open Sans";
  color: #feca0a;
  font-weight: bold;
  letter-spacing: 1;
  font-size: 18px;
}
.ContactUs2 h2 {
    color:#fff;
    font-size:30px !important;
}
.ContactUs2 .pb-seven-twelfths p {
  color: #FFF;
  margin-bottom: 0;
  font-size: 14px;
} 
.ContactUs2 p span {
  width: 100%;
  float: left;
}
.ContactUs2 .contact-data {
  padding-bottom: 10px;
}
.ContactUs2 .contact-data i {
  font-size: 50px;
  padding: 5px 10px;
  color: mediumslateblue;
}
.ContactUs2 a.btn {
  margin-top: 15px;
  background-color: #f25a21;
  color:#fff;
  width: auto;
  float: none;
  text-align: center;
  padding: 10px 30px;
  height: auto;
  border-radius: 10px;
}
.ContactUs2 a.btn:hover {
  margin-top: 15px;
  background-color: #feca0a;
  color:#000;
}

.ContactUs-circular .social-icons {
    padding: 10px 15px;
    margin-bottom: 50px;
}

.ContactUs-circular .social-icons a#facebook {
    background: #3b5998 !important;
    color: #fff;
    padding: 4px 65px;
    width: auto;
    height: auto;
    border-radius: 20px 0px 0px 20px;
    border: none;
    line-height: 35px;
}
.ContactUs-circular .social-icons a#twitter {
    background: #34c334 !important;
}
.ContactUs-circular .social-icons a#twitter {
    background: #00acee !important;
    color: #fff;
    padding: 4px 65px;
    width: auto;
    height: auto;
    border-radius: 0px;
    border: none;
    line-height: 35px;
}

.ContactUs-circular .social-icons a#linkedin {
    background: #dc396f !important;
}
.ContactUs-circular .social-icons a#linkedin {
    color: #fff;
    padding: 4px 65px;
    width: auto;
    height: auto;
    border-radius: 0px 20px 20px 0px;
    border: none;
    line-height: 35px;
}
#linkedin {
    bottom: 75px;
    background-color: #0488b9;
}
.wastecategory {
    font-family: "Open Sans";
    font-size: 30px;
    font-weight: 700;
    width: 26%;
    float: left;
    margin-top: -15px;
}

@media screen and (max-width: 1280px) {
.videoblock iframe {
width:100%;
height:300px;
}
.feature-blocks p {
padding-left: 50px !important;
padding-right: 50px !important;
}
.ExistingCDrulesandRegulations .ExistingCD {
padding: 15px;
max-width: 46%;
margin-right: 15px;
margin-left: 15px;
}
}

@media screen and (max-width: 1200px) {
.ContactUs2 .pb-seven-twelfths h6 {
min-height:43px;
}
.ContactUs2 a.btn {
width: 100%;
font-size: 14px;
}
.ExistingCDrulesandRegulations h5 {
min-height:50px;
}
.Typesofbulkywaste .col-md-4 .row {
display:block;
}
.Typesofbulkywaste .col-md-4 .row .col-md-6 {
max-width:100%;
text-align:center;
}
.Typesofbulkywaste .col-md-4 .row .col-md-6 img.w-100 {
width:auto !important;
}
.Whatdowedowithit .col-md-4 {
text-align:center;
}
.Whatdowedowithit .col-md-4 img.w-100 {
width:auto !important;
}
.ContactUs .social-icons {
padding: 10px 15px;
margin-bottom: 50px;
max-width: 100%;
text-align: center;
align-items: center;
display: flex;
width: 100%;
}
.ContactUs .social-icons a#linkedin, .ContactUs .social-icons a#twitter, .ContactUs .social-icons a#facebook {
color: #fff;
padding: 0px;
width: 100%;
}
.ContactUs .contact-data img {
width: 65px;
padding: 5px 10px;
margin-right: 0;
}
.change-contact {
font-size: 15px !important;
padding: 0;
}
.contact-data span a {
padding: 0px !important;
height: auto !important;
margin: 0;
}
.ContactUs p span {
width: 100%;
float: left;
font-weight: 600;
line-height: normal;
}

.page-title-section1.overlay.volunteer-bg .col-md-3 .avatar .row {
display:block;
}
.page-title-section1.overlay.volunteer-bg .col-md-3 .avatar .row .col-12.col-md-6.col-lg-12 {
max-width: 100%;
padding: 10px 15px;
}
#skillset-246 .counter-number .count, #skillset-247 .counter-number .count, #skillset-248 .counter-number .count  {
font-size: 18px;
font-weight: bold;
}
#skillset-246 .counter-title, #skillset-247 .counter-title, #skillset-248 .counter-title {
font-size: 15px;
padding:0px 10px;
}
}

@media screen and (max-width: 768px) {
.ContactUs2 h2, .bg-gallery h3, .ExistingCDrulesandRegulations h2, .FAQ h2, h2.wastecategory, .Whatdowedowithit h2, .IdealandCommonsituations h2, .Typesofbulkywaste h3 {
font-size:25px !important;
}
.ContactUs .contact-data .row{
    display: block !important;
}

.ContactUs .contact-data .row .col-3{
    max-width: 100%;
}
.ContactUs .contact-data .row .col-4{
    max-width: 100%;
}
.ContactUs .contact-data .row .col-5{
    max-width: 100%;
}
h2.wastecategory {
padding-left:15px;
}
.font-secondary {
font-size: 30px;
}
.feedback-text i {
float:none;
}
.text-nowrap {
white-space: inherit !important;
}
.ExistingCDrulesandRegulations h2 {
color:#fff;
}
.ContactUs {
padding:40px;
}
}
@media screen and (max-width: 767px) {
.ExistingCDrulesandRegulations .ExistingCD {
max-width: 100%;
margin-bottom: 1.5rem;
}
.ExistingCDrulesandRegulations .ExistingCD .col-md-9.order-2.order-md-1 {
max-width:75%;
}
.ExistingCDrulesandRegulations .ExistingCD .col-md-3.order-2.order-md-1 {
max-width:25%;
}
.Whatdowedowithit .col-md-4 {
text-align:center;
margin-bottom:15px;
}
.page-title-section1.overlay.volunteer-bg .col-md-3 .avatar .row {
display:block;
}
.page-title-section1.overlay.volunteer-bg .col-md-3 .avatar .row .col-12.col-md-6.col-lg-12 {
max-width: 100%;
padding: 10px 15px;
}
#skillset-246 .counter-number .count, #skillset-247 .counter-number .count, #skillset-248 .counter-number .count  {
font-size: 25px;
font-weight: bold;
}
#skillset-246 .counter-title, #skillset-247 .counter-title, #skillset-248 .counter-title {
font-size: 16px;
padding:0px 10px;
}
.bg-gallery {
padding: 40px 0px 40px 0px;
}
.bg-gallery p {
font-size:14px;
}
}

@media screen and (max-width: 600px) {
.ContactUs2 h2, .bg-gallery h3, .ExistingCDrulesandRegulations h2, .FAQ h2, .Whatdowedowithit h2, .IdealandCommonsituations h2, .Typesofbulkywaste h3 {
font-size:23px;
}
.ExistingCDrulesandRegulations .col-10 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.Wearedirectlyinvolved .section-title1 {
width: 100%;
font-size: 25px;
padding: 30px 30px 30px 30px;
}
.Wearedirectlyinvolved .w-75 {
width: 100%!important;
}
.Wearedirectlyinvolved .btn {
font-size:14px;
}
}

@media screen and (max-width: 480px) {
.ContactUs2 h2, .bg-gallery h3, .ExistingCDrulesandRegulations h2, .FAQ h2, h2.wastecategory, .Whatdowedowithit h2, .IdealandCommonsituations h2, .Typesofbulkywaste h3 {
    font-size:22px !important;
}
.ContactUs .contact-data .row{
    display: block !important;
}

.ContactUs .contact-data .row .col-3{
    max-width: 100%;
}
.ContactUs .contact-data .row .col-4{
    max-width: 100%;
}
.ContactUs .contact-data .row .col-5{
    max-width: 100%;
}
.ContactUs .social-icons a#linkedin, .ContactUs .social-icons a#twitter, .ContactUs .social-icons a#facebook {
background:transparent !important;
}
}
@media screen and (max-width: 991px) {
	.ContactUs .contact-data .row .col-3, .ContactUs .contact-data .row .col-4, .ContactUs .contact-data .row .col-5 {
		max-width: 100%;
	}
	.ContactUs .contact-data .row {
		display:block;
	}
}

@media screen and (max-width: 1200px) {
	.contact-data span a {
		padding: 0px !important;
		height: auto !important;
		margin: 0;
		word-break: break-word;
	}
}

@media screen and (max-width: 991px) {
 .ContactUs2 .pb-seven-twelfths h6 {
  min-height: inherit;
 }
 .ContactUs2 .contact-data .row .col-4 {
  max-width: 100% !important;
  width:100% !important;
 }
 .ContactUs2 .contact-data .row {
  display:block !important;
 }
}

@media screen and (max-width: 320px) {

}
/*-------------------End Circular realty program page css-----------------*/