body {
  font-family: "Montserrat", sans-serif;
  color: #444444;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

h2 {
  color: #00244D;
  font-weight: 800;
  font-size: 40px;
}

h3 {
  font-weight: 700;
  font-size: 20px;
  color: #00244D;
  margin-bottom: 14px;
}

p {
  color: #707070;
  font-size: 15px;
}

a:hover {
  color: #ffffff;
}

/*-------------------Header start--------------------------*/

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/


.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  background-color: #e2e2e2;
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.header .logo img {
  max-height: 66px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #fff;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: #f96f59;
}

.sticked-header-offset {
  margin-top: 70px;
}

section {
  scroll-margin-top: 70px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .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 8px 10px 8px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    color: #00244D;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-decoration: none;
  }

  .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: var(--color-secondary);
    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: #f96f59;
  }

  .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;
    border-radius: 4px;
  }

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

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: #292B41;
  }

  .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: var(--color-secondary);
  }

  .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 (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

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

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

li.cont-btn {
  		background: linear-gradient(135deg, #990066, #330066);

  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  box-shadow: 0px 3px 6px #00000012;
  opacity: 1;
  text-decoration: none;
}

li.cont-btn a {
 		background: linear-gradient(135deg, #990066, #330066);

  color: #fff;
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.7s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: #e2e2e2;
    overflow-y: auto;
    transition: 0.7s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: #292B41;
    white-space: nowrap;
    transition: 0.7s;
    text-decoration: none;
    border-radius: 50px;
  }

  li.cont-btn {
   		background: linear-gradient(135deg, #990066, #330066);

    color: #fff;
    border-radius: 50px;
    margin: 0px;
    padding: 0px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    box-shadow: 0px 3px 6px #00000012;
    opacity: 1;
    text-decoration: none;
    width: 100px;
  }

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

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

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: #292B41;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: #292B41;
    border: 1px solid #292B41;
  }

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

  .mobile-nav-show {
    color: #292B41;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #292B41;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: #41414180;
    z-index: 9996;
  }
}

#hero {
  width: 100%;
  height: 90vh;
  background-color: rgba(39, 37, 34, 0.8);
  overflow: hidden;
  padding: 0;
  margin-bottom: 100px;
}

#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



#hero .carousel {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}


#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
}

#hero p {
  margin: 30px 0px;
  color: #696969;
  font-size: 20px;
}


#hero .btn-reach {
  font-size: 22px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.5s;
  line-height: 1;
 background: linear-gradient(135deg, #990066, #330066);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
}


#hero #hero .btn-reach-us:hover {
		background: linear-gradient(135deg, #990066, #330066);

  color: #fff;
}

.hero-container .banner-img{
  width: 100%;
  height: 90vh;
  object-fit: cover;

}

.hero-container img {
     height: 40%;
    width: 30%;


}
.hero-container::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

/* ----------home hero-bottom-sec-starts------------ */
#hero-bottom-sec {
  text-align: center;
  border-bottom: 1px solid #ddd;
  margin-bottom: 60px;
  margin-top: 60px;
}

#hero-bottom-sec h3 {
  font-weight: 700;
  font-size: 20px;
  color: #00244D;
  margin-bottom: 14px;
}

#hero-bottom-sec img {
  margin-bottom: 15px;
}

.common-title {
  text-align: center;
  margin-bottom: 60px;
}

.common-title h6 {
  font-size: 22px;
  background: linear-gradient(135deg, #990066, #330066);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
  font-weight: 500;
  margin-bottom: 16px;

}

.common-title p {
  margin-top: 15px;
  font-size: 18px;

}

.common-title h4 {
  font-size: 42px;
  color: #00244D;
  font-weight: 700;
  margin-bottom: 23px;

}


/* ----------home hero-bottom-sec-ends------------ */

/* ----------home Latest-Causes-sec-starts------------ */
#latest-causes-sec {
  margin-bottom: 80px;
}

#latest-causes-sec h3 {
  font-weight: 700;
  font-size: 20px;
  color: #00244D;
  margin-bottom: 14px;
}

.btn-primary {
		background: linear-gradient(135deg, #990066, #330066);

  border: none;
  border-radius: 30px;
  padding: 10px 15px;
}

.card-amount-sec {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}




/* ----------home Latest-Causes-sec-ends------------ */


/* ----------home donate-sec-starts------------ */
#donate-sec {
  background-color: #F2F6F7;
  padding: 60px 0px;
}

#donate-sec img {
  border-radius: 10px;
}

.content-sec-box {
  padding: 0px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* ----------home donate-sec-ends------------ */


/* ----------company-sec-starts------------ */

#company-sec {
  height: 400px;
  background-image: url(../img/hero.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}

#company-sec::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background: #000000;
  inset: 0;
  opacity: 0.40;
  z-index: -1;
}

#company-sec .container-box {
  width: 150px;
  height: 150px;
  border: 2px solid #ffffff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  margin: auto;
  margin-bottom: 20px;
}

#company-sec .container-box p {
  z-index: 999;
  font-size: 50px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0;
}

#company-sec h5 {
  color: #ffffff;
  font-size: 30px;
}

/* ----------company-sec-ens------------ */



/* ----------home help-sec-starts------------ */

#help-sec {
  background-color: #F2F6F7;
  padding: 50px 0;
  margin-bottom: 100px;
}

#help-sec .right-sec {
  text-align: center;
}

#help-sec .right-sec img {
  margin-bottom: 20px;
}

#help-sec .right-sec .container-box {
  margin-bottom: 80px;
}

#help-sec .right-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 20px;
}


/* ----------home help-sec-ends------------ */




/* ----------home The Blog-sec-starts------------ */
#blog-sec {
  margin-bottom: 100px;
}

#blog-sec .card-body {
  padding: 32px;
}


/* ----------home The Blog-sec-ends------------ */


.top-common-banner img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.top-common-banner img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.common-heading {
  text-align: center;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.common-breadcrumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.common-heading h1 {
  margin-bottom: 0;
  color: #ffffff;
}

.active {
background: linear-gradient(135deg, #990066, #330066);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
}

.common-heading .breadcrumb {
  margin-bottom: 0;
}

.top-common-banner {
  margin-bottom: 100px;
}







/* ----------home footer section Starts------------ */
.footer {
  background-color: #2E2E2E;
  width: 100%;
  height: auto;
  padding: 60px 0 0 0;
}

.footer h2 {
  font-size: 28px;
  font-weight: 500;
  color: #FAFAFA;
  margin-bottom: 20px;

}


.footer-aboutus-sec p {
  color: #BDC2CB;
  font-size: 14px;
  font-weight: 200;
}

.footer-aboutus-sec,
.footer-Links-sec,
.footer-cu-sec {
  margin-bottom: 30px;
}

.footer-Links-sec ul li {
  list-style-type: none;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 14px;
  padding: 0;
  font-weight: 200;
}

.footer-Links-sec ul {
  padding: 0;
}

.footer hr {
  color: #ffffff;
}

.footer-cu-sec address {
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 24px;
  font-size: 14px;
  font-weight: 200;
}

.footer-cu-sec p {
  color: #BDC2CB;
  margin-bottom: 23px;
  font-weight: 200;
}

.footer-cu-sec-align,
.footer-Links-sec-align {
  display: flex;
  justify-content: center;
}



.copy-rights {
  color: #ffffff;
  font-size: 14px;
}

.copy-rights p {
  text-align: start;
}

.footer-bt-sec {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  border-top: 1px solid #ffffff;
}

.footer-bt-sec p {
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 200;
}

.design p {
  text-align: end;
}


.footer a {
  text-decoration: none;
  position: relative;
  color: #ffffff;
  transition: 0.5s;
}

.footer a:hover {
  text-decoration: none;
  position: relative;
  color: #fff;
}

.social-links {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.social-links a {
  border-radius: 30px;
  font-size: 21px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  color: #bebebe;
  text-decoration: none;
}


/* ----------home footer section ends------------ */

/* ---------- About-section-page-start------------ */
#about-sec {
  margin-bottom: 100px;
}

#about-sec .content-box {
  margin-bottom: 50px;
}

#about-sec .content-box:last-child {
  margin-bottom: 0px;
}

#about-sec .right-sec .abt-img-sec {
  max-height: 430px;
  overflow-y: hidden;
  object-fit: cover;
}


/* ---------- About-section-page-end------------ */

/* ---------- About-page-Our gallery-start------------ */
#gallery-sec {
  margin-bottom: 100px;
  background-color: #F2F6F7;
  padding: 60px 0px;
}

#gallery-sec .card-img-top {
  margin-bottom: 20px;
  border-radius: 5px;
}

/* ---------- About-page-Our gallery-ends------------ */

/* ---------- About-our-volunteer -start------------ */

#our-volunteer-sec .card {
  text-align: center;
  margin-bottom: 30px;

}

/* ---------- About-our-volunteer -ends------------ */


#common-reachus-sec {
  background-color: #F2F6F7;
  padding: 30px 0;


}

#common-reachus-sec .content-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}




/* ---------- gallery-page-sec -Starts------------ */

#gallery-page-sec .outer-box {

  position: relative;
  margin-bottom: 25px;
}

#gallery-page-sec img {
  border-radius: 10px;
}

#gallery-page-sec .outer-box::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  object-fit: cover;
  border-radius: 10px;
}

#gallery-page-sec .content {
  position: absolute;
  bottom: 20px;
  left: 40px;
  z-index: 999;
}

#gallery-page-sec h5 {
  color: #ffffff;
  font-size: 20px;
}

#gallery-page-sec p {
  color: #ffffff;
  font-size: 16px;
}

/* ---------- gallery-page-sec -ends------------ */


#contact-sec {
  background-color: #FAFBFF;
  padding: 50px 0px;
}

.bg-sec {
  background-color: #ffffff;
  padding: 50px;
}

#contact-sec .icon-box {
  margin-right: 20px;
  width: 130px;
  height: 130px;
  background-color: #FAFBFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

#contact-sec i {
  font-size: 28px;
}

#contact-sec .container-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;

}

#contact-sec h6 {
  margin-bottom: 10px;
}

#contact-sec p {
  margin-bottom: 5px;
}


.form-control {
  padding: 1rem 0.75rem;
  border-radius: 3px;
  border: none;
  background-color: #F2F6F7;
}

.map-sec iframe {
  width: 100%;
  height: 500px;
}