@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: "Open Sans", sans-serif;
}

:root {
    --blue: #062d3c;
    --green: #13ad56;
    --black: #000;
    --white: #fff;
    --grey: #787878;
}

.blue {
    color: var(--blue);
}

.black {
    color: var(--black);
}

.green {
    color: var(--green);
}

.grey {
    color: var(--grey);
}

.white {
    color: var(--white);
}
.fs12{
    font-size: 12px;
}
.fs14 {
    font-size: 14px;
}

.fs16 {
    font-size: 16px;
}

.fs18 {
    font-size: 18px;
}

.fs20 {
    font-size: 20px;
}

.fs22 {
    font-size: 22px;
}

.fs24 {
    font-size: 24px;
}

.fs30 {
    font-size: 30px;
}

.fs40 {
    font-size: 40px;
}

.fs46 {
    font-size: 46px;
}

.fs52 {
    font-size: 52px;
}

.fw400 {
    font-weight: 400;
}

.fw500 {
    font-weight: 500;
}

.fw600 {
    font-weight: 600;
}

.fw700 {
    font-weight: 700;
}

.fw800 {
    font-weight: 800;
}

.transit {
    transition: .67s;
}

.index {
    z-index: 9;
}

.ls3 {
    letter-spacing: 3px;
}

.green-btn {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    background-color: var(--green);
    border-radius: 7px;
    border: 1px solid var(--green);
    padding: 8px 30px;
    transition: .67s;
}

.green-btn:hover {
    background-color: var(--blue);
    border: 1px solid var(--blue);
}

.image-rounded {
    border-radius: 50%;
}

.title-text {
    width: 60%;
}
.pointer{
    cursor: pointer;
}

/* Header Css Start Here  */
.header .upper-head {
    background-color: var(--blue);
    padding: 10px 0px;
}

.header .upper-head .emil a:hover,
.header .upper-head .contact-head a:hover {
    color: var(--white);
}

.header .navbar-light .navbar-nav .nav-link {
    color: var(--blue);
    padding: 0px 25px;
    position: relative;
}

.header .navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    height: 15px;
    width: 2px;
    background-color: var(--green);
}

.header .navbar-light .navbar-nav .nav-item:last-child .nav-link::after {
    content: none !important;
}

.header .navbar-light .navbar-nav .nav-link:hover {
    color: var(--green);
}
.header .navbar-light .navbar-nav .nav-link.active{
    color: var(--green);
}

/* Banner Css Start Here  */
.banner {
    background-image: url(../img/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: calc(100vh - 166px);
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    display: block;
    height: 100%;
    width: 100%;
    background-color: #13ad56ad;
}

.banner .banner-content {
    background-color: #ffffff87;
    width: 50%;
    border-radius: 10px;
    padding: 50px;
}

/* Bottom Menu Css Start Here  */
.bottom-menu {
    padding: 50px 0px;
}

.bottom-menu .menu-content .img-menu img {
    border-radius: 10px;
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.bottom-menu .menu-content .bottm-menu-name {
    padding: 10px 30px;
    background-color: #000000cf;
    border-radius: 7px;
    position: absolute;
    bottom: -20px;
    width: 155px;
    left: 0;
    right: 0;
    margin: auto;
}

.bottom-menu .menu-content .img-menu::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--green);
    opacity: 0.88;
    transform: scale(0, 0);
    transition: .67s;
    border-radius: 10px;
}

.bottom-menu .menu-content:hover .img-menu::after {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
}

/* mission Css Start Here  */
.mission .helping .right-help .img-team {
    margin-left: -5px;
}

.mission .helping .right-help .img-team:first-child {
    margin-left: 0px;
}

.mission .mission-img img {
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
}

.mission {
    padding: 100px 0px;
}

/* Thank Us Css Start Here  */
.thnak-us {
    background-image: url('../img/thank-us.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 150px 0px;
}

.thnak-us::after {
    content: '';
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0px;
    background-color: var(--blue);
    opacity: .75;
}

/* Focus Css Start Here  */
.focus {
    padding: 80px 0px;
}

.focus .focus-place .img-place {
    background-image: url(../img/focus-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 30px;
}

.focus .focus-place .img-place::after {
    content: '';
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0px;
    background-color: var(--blue);
    opacity: .55;
    border-radius: 10px;
}

.focus .focus-place {
    border-radius: 10px;
}

.focus .focus-place .icon-focus {
    background-color: var(--green);
    width: 50px;
    height: 40px;
    border-radius: 10px 10px 0px 0px;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0px;
    margin: auto;
}

.focus .focus-place:hover .img-place {
    transform: scale(1.1);
}

/* Team Css Start Here  */
.team .team-img img {
    border-radius: 10px 10px 0px 0px;
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team .team-img .about-team {
    background-color: #ebebeb;
    border-radius: 0px 0px 10px 10px;
    padding: 15px 10px;
}

.team {
    padding: 80px 0px;
}

/* Faqs Css Start Here  */
.faq .row {
    background-color: #f4f4f4;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 50px;
    border-radius: 10px;
}

.faq .row::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    height: 100%;
    width: 100%;
    background-image: url('../img/shape.png');
    opacity: .7;
    border-radius: 10px;
}

.faq .faq-img img {
    border-radius: 10px;
    height: 600px;
    width: 100%;
    object-fit: cover;
}

.faq .acordian .accordion-item {
    border-radius: 10px;
    overflow: hidden;
    border: 0;
    margin-bottom: 20px;
}
.faq .accordion-button:focus{
    box-shadow: none;
    border: none;
}
.faq .accordion-button:not(.collapsed) {
    background-color: transparent;
    border: 0;
    box-shadow: none;
    color: var(--blue);
}
/* Contact Css Start Here  */
.contact .icon-footr {
    height: 50px;
    width: 50px;
    background-color: var(--white);
    border-radius: 50%;
}
.contact .row {
    background-color: var(--green);
    border-radius: 10px;
    padding: 30px 50px;
}
.contact {
    margin-bottom: -50px;
}
/* Footer Css Start Here  */
.footer {
    background-color: var(--blue);
    padding: 100px 0px 50px 0px;
}
.footer .links ul li a:hover{
    color: var(--white);
}
.footer-btn:hover{
    background-color: #0b5a2d;
    border: 1px solid #0b5a2d;
}
.copywright {
    padding: 10px 20px;
    background-color: var(--green);
}
/* About Us Css Start Here  */
.inner-banner {
    background-image: url('../img/about-banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 100px 0px;
}
.inner-banner::after{
    content: '';
    position: absolute;
    top: 0;
    display: block;
    height: 100%;
    width: 100%;
    background-color: var(--green);
    opacity: .8;
}
.history-box{
    background-color: var(--white);
    border-radius: 10px;
    padding: 50px;
}
.history-box .img-history img{
    border-radius: 10px;
    height: 400px;
    width: 100%;
    object-fit: cover;
}
.history {
    background-color: var(--blue);
    padding: 80px 0px;
}
.history::after{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-image: url('../img/shape.png');
    opacity: .1;
}
/* Our Team Css Start Here  */
.team-inner {
    background-image: url('../img/team-banner.jpg');
}
/* Contact Inner Css Start  */
.map {
    padding: 80px 0px;
}
.contact-inner {
    background-image: url('../img/contact-banner.jpg');
}
.map .whrs {
    background-image: url('../img/whrs.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 50px;
    border-radius: 10px;
}
.map .whrs::after{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    height: 100%;
    width: 100%;
    background-color: var(--blue);
    opacity: .8;
}
.map .whrs .day {
    border-bottom: 1px dashed #fff;
    padding-bottom: 10px;
}
.map .whrs .day:last-child{
    margin-bottom: 0px !important;
    border-bottom: none !important;
    padding-bottom: 0px !important;
}
.map .map-frame iframe{
    border-radius: 10px;
}
/* Causes Css Start Here  */
.causes-inner {
    background-image: url('../img/causes-banner.jpg');
}
.causes {
    background-color: transparent;
    padding-top: 0px;
}
.causes::after{
    content: none !important;
}
.causes .history-box {
    background-color: var(--blue);
}
.causes .history-box::after{
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    height: 100%;
    width: 100%;
    display: block;
    background-image: url('../img/shape.png');
    opacity: .1;
}
.object-cover {
    object-fit: cover;
}
.footer .contact-f .contact-info .right-cont h3 a:hover {
    color: var(--white);
}
.contact.index .contact-info .right-cont h3 a:hover{
    color: var(--white);
}

/* Image Gallery Css Start Here  */
.gallery .main .images-grids {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
}
.gallery .main .card {
  color: #252a32;
  border-radius: 2px;
  background: #ffffff;
}
.gallery .main .card-image {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 70%;
  background: #ffffff;
}
.gallery .main .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.gallery {
    padding: 80px 0px;
}