.custom-btn,
ul li {
    font-weight: var(--font-weight-normal)
}

@font-face {
    font-family: Metropolis;
    src: url('../fonts/Metropolis/Metropolis-Regular.woff2') format('woff2'), url('../fonts/Metropolis/Metropolis-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Metropolis;
    src: url('../fonts/Metropolis/Metropolis-Light.woff2') format('woff2'), url('../fonts/Metropolis/Metropolis-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Metropolis;
    src: url('../fonts/Metropolis/Metropolis-SemiBold.woff2') format('woff2'), url('../fonts/Metropolis/Metropolis-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Metropolis;
    src: url('../fonts/Metropolis/Metropolis-Bold.woff2') format('woff2'), url('../fonts/Metropolis/Metropolis-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: NotoSansDevanagari;
    src: url('../fonts/NotoSansDevanagari-Regular.ttf') format('ttf'), url('../fonts/NotoSansDevanagari-Regular.ttf') format('ttf');
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

:root {
    --white-color: #ffffff;
    --primary-color: #008001 ;
    --secondary-color: #5a6f80;
    --section-bg-color: #f0f8ff;
    --site-footer-bg-color: #44525d;
    --custom-btn-bg-color: #597081;
    --custom-btn-bg-hover-color: #5bc1ac;
    --dark-color: #000000;
    --p-color: #000000;
    --border-color: #e9eaeb;
    --body-font-family: 'Metropolis', sans-serif;
    --h1-font-size: 52px;
    --h2-font-size: 46px;
    --h3-font-size: 32px;
    --h4-font-size: 28px;
    --h5-font-size: 24px;
    --h6-font-size: 22px;
    --p-font-size: 16px;
    --btn-font-size: 18px;
    --copyright-font-size: 14px;
    --border-radius-large: 100px;
    --border-radius-medium: 5px;
    --border-radius-small: 10px;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700
}

body {
    background-color: var(--white-color);
    font-family: var(--body-font-family)
}

.news-block-title-link,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color)
}

a,
p,
ul li {
    color: var(--p-color)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-semibold);
    letter-spacing: -1px
}

h1,
h2 {
    letter-spacing: -2px
}

h1 {
    font-size: var(--h1-font-size);
    font-weight: var(--font-weight-bold)
}

h2 {
    color: #333;
    font-size: var(--h2-font-size)
}

.category-block-link:hover,
a:hover,
h5 {
    color: var(--primary-color)
}

h3 {
    font-size: var(--h3-font-size)
}

h4 {
    font-size: var(--h4-font-size)
}

h5 {
    font-size: var(--h5-font-size)
}

.custom-text-box-icon,
h6 {
    font-size: var(--h6-font-size)
}

.navbar-nav .nav-link,
p,
ul li {
    font-size: var(--p-font-size)
}

p {
    font-weight: var(--font-weight-medium)
}

a,
button {
    touch-action: manipulation;
    transition: .3s
}

a {
    text-decoration: none
}

.custom-icon,
.custom-text-box-icon,
.navbar-brand small {
    color: var(--secondary-color)
}

b,
strong {
    font-weight: var(--font-weight-bold)
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px
}

.section-bg {
    background-color: var(--section-bg-color)
}

.section-overlay {
    background: rgba(0, 0, 0, .35);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%
}

.hero-section-full-height,
.section-overlay+.container {
    position: relative
}

.custom-block-wrap {
    padding: 5px;
    background: var(--white-color);
    border-radius: var(--border-radius-medium);
    position: relative;
    box-shadow: 5px 6px 6px 5px #0000001f;
    overflow: hidden;
    transition: .5s;
    margin-bottom: 20px
}

.custom-block-wrap:hover,
.dropdown-menu {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175)
}

.custom-block-wrap:hover {
    border: 2px solid #000
}

.custom-block-body {
    padding: 20px 20px 0;
    text-align: center
}

.custom-block-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px
}

.img-fluid {
    border-radius: 5px
}

.custom-text-box,
.custom-text-box-image {
    border-radius: var(--border-radius-medium)
}

.custom-block .custom-btn {
    border-radius: 0;
    display: block;
    background-color: #333;
    color: #fff
}

.custom-block .custom-btn:hover {
    background-color: #008001 ;
    color: #fff
}

.progress {
    background: var(--border-color);
    height: 5px
}

.progress-bar {
    background: var(--secondary-color)
}

.custom-list {
    margin-bottom: 0;
    padding-left: 0
}

.custom-form label,
.custom-list-item {
    margin-bottom: 10px
}

.custom-list-item {
    list-style: none;
    margin-top: 10px
}

.custom-text-box {
    background: var(--white-color);
    margin-bottom: 24px;
    padding: 40px
}

.custom-text-box-image {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.avatar-image,
.custom-text-box-icon {
    border-radius: var(--border-radius-large)
}

.custom-text-box-icon {
    background: var(--section-bg-color);
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 25px;
    line-height: 30px
}

.avatar-image {
    width: 65px;
    height: 65px;
    object-fit: cover
}

.custom-btn {
    background: #fff;
    border: 2px solid transparent;
    border-radius: var(--border-radius-large);
    color: #333;
    font-size: var(--btn-font-size);
    line-height: normal;
    padding: 15px 25px;
    font-weight: 500
}

.dropdown-menu li:last-child .dropdown-item,
.navbar {
    padding-top: 0
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
    color: var(--custom-btn-bg-color);
    margin-top: 8px;
    padding: 12px 25px
}

.custom-btn:hover {
    background: #333;
    color: #fff
}

.custom-border-btn {
    background: 0 0;
    border: 2px solid var(--custom-btn-bg-color);
    color: var(--primary-color)
}

#hero-slide .carousel-caption,
.dropdown-menu,
.navbar {
    background: #ffffff !important;
}

.custom-border-btn:hover,
.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover {
    background: var(--custom-btn-bg-hover-color);
    border-color: transparent;
    color: var(--white-color)
}

.navbar {
    z-index: 9;
    padding-bottom: 0
}

.navbar-brand {
    color: var(--primary-color);
    font-size: var(--h6-font-size);
    font-weight: var(--font-weight-bold)
}

.navbar-brand span {
    display: inline-block;
    vertical-align: middle
}

.navbar-brand small {
    display: block;
    font-size: 10px;
    line-height: normal;
    text-transform: uppercase
}

.logo {
    width: auto;
    height: 70px
}

.navbar-expand-lg .navbar-nav .nav-link {
    margin-right: 0;
    margin-left: 0;
    padding: 20px
}

.navbar-nav .nav-link {
    display: inline-block;
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    background: 0 0;
    color: var(--primary-color)
}

.dropdown-menu {
    border: 0;
    max-width: 50px;
    padding: 0;
    margin-top: 20px
}

.dropdown-item {
    display: inline-block;
    color: var(--p-bg-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-medium);
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px
}

.dropdown-toggle::after {
    content: "\f282";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-size: var(--copyright-font-size);
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    left: 2px;
    border: 0
}

@media screen and (min-width:992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0
    }
}

.navbar-toggler {
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 0;
    width: 30px;
    height: 35px;
    outline: 0
}

.navbar-toggler:focus {
    outline: 0;
    box-shadow: none
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
    background: 0 0
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-icon:after,
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon:before {
    transition: top .3s 50ms, transform .3s 350ms, -webkit-transform .3s 350ms;
    top: 0
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-icon:before {
    transform: rotate(45deg)
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-icon:after {
    transform: rotate(-45deg)
}

.navbar-toggler .navbar-toggler-icon {
    background: var(--dark-color);
    transition: background 10ms .3s;
    display: block;
    width: 30px;
    height: 2px;
    position: relative
}

.navbar-toggler .navbar-toggler-icon:after,
.navbar-toggler .navbar-toggler-icon:before {
    transition: top .3s 350ms, transform .3s 50ms, -webkit-transform .3s 50ms;
    position: absolute;
    right: 0;
    left: 0;
    background: var(--dark-color);
    width: 30px;
    height: 2px;
    content: ''
}

.navbar-toggler .navbar-toggler-icon::before {
    top: -8px
}

.navbar-toggler .navbar-toggler-icon::after {
    top: 8px
}

.site-header {
    background: #ff7805;
    padding: 13px 0 7px
}

.site-header .social-icon-link,
.site-header p,
.site-header p a {
    color: var(--white-color);
    font-size: var(--copyright-font-size)
}

.site-header .social-icon {
    text-align: right
}

.site-header .social-icon-link {
    background: 0 0;
    width: inherit;
    height: inherit;
    line-height: inherit;
    margin-right: 15px
}

.carousel-control-next,
.carousel-control-prev,
.carousel:hover .carousel-control-next-icon,
.carousel:hover .carousel-control-prev-icon {
    opacity: 1
}

#hero-slide .carousel-caption {
    clip-path: polygon(100% 100%, 100% 150px, 0 100%);
    color: var(--secondary-color);
    top: 1px;
    bottom: -1px;
    right: 0;
    left: auto;
    text-align: right;
    min-width: 680px;
    min-height: 680px;
    padding: 100px 100px 50px
}

.carousel-image {
    display: block;
    width: 100%;
    min-height: 480px
}

#hero-slide .carousel-indicators-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0
}

#hero-slide .carousel-indicators {
    margin-right: 0;
    margin-left: 22px;
    justify-content: inherit
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-size: 60% 60%;
    width: 80px;
    height: 80px;
    opacity: 0;
    transition: .5s
}

.featured-block {
    text-align: center;
    transition: .5s;
    min-height: 256px;
    padding: 5px;
    box-shadow: 5px 6px 6px 5px #0000001f;
    border-radius: 5px;
    border: 2px solid #000
}

.about-image,
.volunteer-form {
    border-radius: var(--border-radius-medium)
}

.featured-block-image {
    display: block;
    margin: auto;
    transition: .5s
}

.featured-block:hover .featured-block-text {
    margin-top: 0
}

.featured-block-text {
    color: var(--primary-color);
    font-size: var(--h5-font-size);
    margin-top: 20px;
    transition: .5s
}

.about-section {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 80px
}

.about-image {
    display: block;
    width: 350px;
    height: 400px;
    object-fit: cover
}

.custom-text-block {
    padding: 60px 40px
}

.custom-text-block h4 {
    color: var(--secondary-color);
    letter-spacing: -2px
}

.counter-thumb {
    margin: 20px 20px 0
}

.counter-number,
.counter-text {
    color: var(--secondary-color);
    display: block
}

.counter-number,
.counter-number-text {
    color: var(--primary-color);
    font-size: var(--h1-font-size);
    font-weight: var(--font-weight-bold);
    line-height: normal
}

.author-comment-link,
blockquote {
    font-weight: var(--font-weight-semibold)
}

.volunteer-section {
    background: #fff;
    position: relative;
    overflow: hidden
}

.volunteer-form {
    background: var(--white-color);
    padding: 50px
}

.volunteer-image {
    border-radius: 100%;
    display: block;
    margin: auto;
    width: 300px;
    height: 300px;
    object-fit: cover
}

.donate-form,
.news-block-top {
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden
}

.volunteer-section .custom-block-body {
    margin: 0 auto
}

.volunteer-section .custom-block-body p {
    line-height: 36px;
    font-size: 19px;
    color: #333
}

.donate-section {
    background-image: url('../images/applynow.html');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-top: 150px;
    padding-bottom: 150px
}

.donate-form {
    background: var(--white-color);
    padding: 50px
}

.news-detail-header-section {
    /* background: #008001  !important; */
    position: relative;
    padding-top: 55px;
    padding-bottom: 55px
}

.badge,
.news-category-block {
    background: var(--secondary-color)
}

.news-block-two-col-image-wrap {
    border-radius: var(--border-radius-small);
    position: relative;
    overflow: hidden;
    width: 150px;
    margin-right: 20px
}

.badge,
.news-detail-image {
    border-radius: var(--border-radius-medium)
}

.news-category-block {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 10px 20px
}

.news-category-block .category-block-link {
    color: var(--white-color);
    margin-right: 10px
}

.news-block-info {
    padding-top: 10px;
    padding-bottom: 10px
}

.news-detail-image {
    display: block
}

blockquote {
    background: var(--section-bg-color);
    border-radius: var(--border-radius-small);
    font-size: var(--h5-font-size);
    color: var(--site-footer-bg-color);
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 90px 50px 50px;
    text-align: center
}

blockquote::before {
    content: "“";
    color: var(--custom-btn-bg-color);
    font-size: 100px;
    line-height: 1rem;
    display: block
}

.author-comment-link {
    font-size: var(--copyright-font-size)
}

.search-form {
    margin-top: 20px;
    position: relative
}

.category-block,
.subscribe-form {
    margin-top: 40px;
    margin-bottom: 40px
}

.category-block-link,
.tags-block-link {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: var(--copyright-font-size)
}

.badge {
    font-weight: var(--font-weight-normal);
    line-height: normal;
    padding-bottom: 2px
}

.tags-block-link {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-medium);
    display: inline-block;
    line-height: normal;
    margin-right: 10px;
    padding: 8px 15px
}

.tags-block-link:hover {
    border-color: var(--dark-color);
    color: var(--dark-color)
}

.cta-section {
    position: relative;
    overflow: hidden;
    background-color: #008001 
}

.testimonial-section {
    position: relative;
    overflow: hidden;
    text-align: center
}

.testimonial-section::before {
    content: "";
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: -100px;
    left: -30px;
    margin: auto;
    width: 250px;
    height: 250px
}

.testimonial-section::after {
    content: "";
    background: var(--custom-btn-bg-color);
    border-radius: 50%;
    position: absolute;
    bottom: -110px;
    right: -80px;
    width: 350px;
    height: 350px
}

#testimonial-carousel .carousel-caption {
    position: relative;
    right: 0;
    bottom: 0;
    left: 0
}

#testimonial-carousel .carousel-title {
    background: var(--section-bg-color);
    line-height: normal;
    margin-bottom: 30px;
    quotes: "“" "”" "‘" "’"
}

#testimonial-carousel .carousel-title::before {
    content: open-quote;
    color: var(--p-color);
    font-size: var(--h1-font-size);
    position: relative;
    top: 10px;
    right: 10px
}

#testimonial-carousel .carousel-title::after {
    content: close-quote;
    color: var(--p-color);
    font-size: var(--h1-font-size);
    position: relative;
    top: 10px;
    left: 10px
}

#testimonial-carousel .carousel-name {
    background: var(--primary-color);
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
    padding: 10px 20px
}

#testimonial-carousel .carousel-name::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 0;
    left: 0;
    width: 0;
    height: 0;
    margin: auto;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--primary-color)
}

.carousel-name-title,
.form-check-group-donation-frequency .form-check-label {
    font-weight: var(--font-weight-semibold)
}

#testimonial-carousel .carousel-indicators {
    position: relative;
    top: 150px;
    bottom: auto;
    margin-top: 50px;
    margin-bottom: 150px
}

#testimonial-carousel .carousel-indicators li {
    text-indent: inherit;
    background: 0 0;
    margin: 0 10px
}

#testimonial-carousel .carousel-indicators .avatar-image,
#testimonial-carousel .carousel-indicators li,
#testimonial-carousel .carousel-indicators li::before {
    width: 45px;
    height: 45px
}

#testimonial-carousel .carousel-indicators .active,
#testimonial-carousel .carousel-indicators .active .avatar-image {
    background: 0 0;
    width: 50px;
    height: 50px
}

.contact-form .form-control,
.contact-section,
.subscribe-form .form-control {
    background: var(--white-color)
}

.contact-form,
.subscribe-form {
    background: var(--section-bg-color)
}

.contact-form {
    border-radius: var(--border-radius-small);
    padding: 40px
}

.contact-info-wrap {
    padding-top: 40px
}

.contact-form h2,
.contact-info-wrap h2 {
    color: #333;
    font-size: 32px
}

.contact-image-wrap {
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    margin-top: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    width: 100%
}

.custom-form .form-control,
.input-group-file {
    box-shadow: none;
    color: var(--p-color);
    margin-bottom: 12px;
    padding-top: 15px;
    padding-bottom: 15px;
    outline: 0
}

.custom-form .form-control:focus,
.custom-form .form-control:hover {
    border-color: var(--secondary-color)
}

.custom-form .form-check-group {
    margin-bottom: 20px
}

.donate-form .form-check-group-donation-frequency {
    padding-right: 0
}

.form-check-group-donation-frequency+.form-check-group-donation-frequency {
    padding-right: 12px;
    padding-left: 0
}

#DonationFrequencyOne {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

#DonationFrequencyMonthly {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.custom-form .form-check-radio {
    position: relative;
    height: 100%;
    padding-left: 0
}

.custom-form .input-group-text {
    background: var(--secondary-color);
    border: 0;
    color: var(--white-color)
}

.custom-form .form-check-radio .form-check-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center
}

.form-check-radio .form-check-input[type=radio] {
    background-color: var(--section-bg-color);
    border-radius: .25rem;
    border: 0;
    box-shadow: none;
    outline: 0;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    padding: 25px 50px;
    transition: .5s
}

.form-check-radio .form-check-input:checked[type=radio] {
    background-image: none
}

.form-check-radio .form-check-input:checked+.form-check-label,
.form-check-radio .form-check-input:checked[type=radio]+.form-check-label,
.form-check-radio .form-check-input:hover+.form-check-label {
    color: var(--white-color)
}

.form-check-radio .form-check-input:checked,
.form-check-radio .form-check-input:hover {
    background-color: var(--secondary-color);
    border-color: var(--white-color)
}

.input-group-file {
    border-radius: .25rem;
    padding: 13px .75rem
}

.input-group-file input[type=file] {
    width: .1px;
    height: .1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
    padding: 0
}

.input-group-file .input-group-text {
    background: 0 0;
    color: inherit;
    margin-bottom: 0;
    padding: 0
}

.site-footer .custom-btn:hover,
.social-icon-link:hover {
    background: var(--primary-color)
}

.search-form .form-control {
    padding-right: 50px
}

.search-form button[type=submit] {
    background: 0 0;
    position: absolute;
    top: 0;
    right: 0;
    color: var(--p-color);
    width: 50px;
    padding: 12px
}

.search-form button[type=submit]:hover {
    background: 0 0;
    color: var(--dark-color)
}

.subscribe-form {
    border-radius: var(--border-radius-small);
    padding: 30px
}

.donate-form .form-control {
    margin-bottom: 0
}

.site-footer {
    background-color: var(--site-footer-bg-color);
    padding-top: 70px
}

.site-footer-bottom {
    background-color: var(--secondary-color);
    position: relative;
    z-index: 2;
    margin-top: 70px;
    padding-top: 25px;
    padding-bottom: 25px
}

.site-footer-bottom a,
.site-footer-link {
    color: var(--white-color)
}

.site-footer-bottom a:hover {
    color: #ff6
}

.copyright-text {
    color: var(--section-bg-color);
    font-size: var(--copyright-font-size);
    margin-right: 30px
}

.site-footer .custom-btn {
    font-size: var(--copyright-font-size)
}

.footer-menu {
    column-count: 2;
    margin: 0;
    padding: 0
}

.footer-menu-item {
    list-style: none;
    display: block
}

.footer-menu-link {
    font-size: var(--p-font-size);
    color: var(--white-color);
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 5px
}

.social-icon {
    margin: 0;
    padding: 0
}

.social-icon-item {
    list-style: none;
    display: inline-block;
    vertical-align: top
}

.social-icon-link {
    background: var(--site-footer-bg-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--copyright-font-size);
    display: block;
    margin-right: 5px;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 38px
}

.social-icon-link:hover {
    color: var(--white-color)
}

@media screen and (min-width:1600px) {
    .featured-block {
        min-height: inherit
    }

    .volunteer-section::after {
        width: 450px;
        height: 450px
    }

    .volunteer-image {
        width: 350px;
        height: 350px
    }
}

@media screen and (max-width:1170px) {
    #hero-slide .carousel-image {
        height: 100%;
        object-fit: cover
    }
}

@media screen and (max-width:991px) {
    h1 {
        font-size: 42px
    }

    h2 {
        font-size: 36px
    }

    h3 {
        font-size: 32px
    }

    h4 {
        font-size: 28px
    }

    h5 {
        font-size: 20px
    }

    h6 {
        font-size: 18px
    }

    .cta-section .row,
    .section-padding {
        padding-top: 50px;
        padding-bottom: 50px
    }

    .hero-form {
        padding-bottom: 40px
    }

    .donate-form {
        padding: 35px
    }

    .navbar {
        padding-top: 6px;
        padding-bottom: 6px
    }

    .navbar-expand-lg .navbar-nav {
        padding-bottom: 30px
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 8px 20px
    }

    .dropdown:hover .dropdown-menu {
        display: block;
        position: relative;
        margin-top: 5px;
        margin-bottom: 20px;
        left: 20px
    }

    .site-header .social-icon {
        text-align: left;
        margin-top: 5px
    }

    #hero-slide .carousel-item,
    .hero-section-full-height {
        height: inherit
    }

    .carousel:hover .carousel-control-next-icon,
    .carousel:hover .carousel-control-prev-icon {
        opacity: 1
    }

    .carousel-control-prev {
        left: 12px
    }

    .carousel-control-next {
        right: 12px
    }

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        opacity: 1;
        width: 60px;
        height: 60px
    }

    .news-detail-header-section {
        padding-top: 45px;
        padding-bottom: 45px
    }

    .cta-section::before,
    .testimonial-section::before {
        width: 150px;
        height: 150px
    }

    .cta-section::after {
        bottom: -60px;
        width: 100px;
        height: 100px
    }

    .volunteer-section::after {
        width: 300px;
        height: 300px
    }

    .testimonial-section::after {
        width: 200px;
        height: 200px
    }

    #testimonial-carousel .carousel-caption,
    .contact-info-wrap {
        padding-top: 0
    }

    blockquote {
        padding: 70px 30px 30px
    }

    .about-image {
        width: inherit;
        height: 450px
    }

    .volunteer-image {
        width: 250px;
        height: 250px;
        margin: 0
    }

    .custom-text-block {
        padding: 20px 0 0
    }

    .custom-text-box,
    .volunteer-form {
        padding: 30px
    }

    .counter-number,
    .counter-number-text {
        font-size: var(--h2-font-size)
    }

    .site-footer {
        padding-top: 50px
    }

    .copyright-text-wrap {
        justify-content: center
    }

    .site-footer-bottom {
        text-align: center;
        margin-top: 50px
    }

    .site-footer-bottom .footer-menu {
        margin-top: 10px;
        margin-bottom: 10px
    }
}

.solarbox p,
.text-justify {
    text-align: justify
}

@media screen and (max-width:480px) {
    h1 {
        font-size: 40px
    }

    h2 {
        font-size: 28px
    }

    h3 {
        font-size: 26px
    }

    h4 {
        font-size: 22px
    }

    h5 {
        font-size: 20px
    }

    #hero-slide .carousel-caption {
        min-width: inherit;
        padding-bottom: 30px
    }

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        width: 45px;
        height: 45px
    }

    .volunteer-image {
        width: 150px;
        height: 150px
    }

    .volunteer-section::after {
        width: 200px;
        height: 200px
    }

    .testimonial-section::before {
        top: -50px;
        width: 100px;
        height: 100px
    }

    .testimonial-section::after {
        bottom: -150px;
        width: 200px;
        height: 200px
    }

    .social-share .tags-block {
        margin-bottom: 10px
    }

    .donate-form {
        padding: 25px
    }
}

.footer-area,
.newform {
    float: left;
    width: 100%;
    text-align: center
}

.welcome-area {
    padding: 40px 0 30px
}

.solarbox {
    padding: 0 40px 60px
}

.solarbox h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px !important
}

.solarbox p {
    line-height: 36px;
    font-size: 19px;
    color: #333
}

.facilitiesbox {
    margin-top: 40px
}

.facilitiesbox h2 {
    font-size: 32px;
    color: #333
}

.soyojna h2 {
    font-size: 35px;
    color: #008001 ;
    margin-bottom: 30px !important
}

.soyojna h4 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px
}

.kisyojna h2,
.kisyojna p {
    color: #fff !important
}

.kisyojna h2 {
    margin-bottom: 20px !important
}

.service-area {
    padding: 60px 0 20px
}

.servicebox h2 {
    color: #333;
    font-size: 32px;
    margin: 0 0 20px !important
}

.footer-area {
    padding: 15px 0;
    color: #fff;
    background-color: #000
}

.applybtn {
    color: #008001  !important;
    padding: 8px 14px;
    border-radius: 5px;
    border: 2px solid #008001 ;
    font-weight: 600
}

.applybtn:hover {
    background-color: #fff !important;
    color: #008001  !important
}

.newform {
    border: 2px solid #ddd;
    height: 280px;
    padding-top: 103px;
    font-size: 35px;
    color: red;
    font-weight: 600
}

.appybox {
    margin-top: 20px
}

@media screen and (max-width:580px) {
    #hero-slide .carousel-caption {
        clip-path: polygon(100% 100%, 100% 100px, 0 100%);
        padding-right: 50px;
        min-width: inherit;
        min-height: inherit
    }

    .soyojna h2 {
        margin: 30px 0 !important
    }

    .navbar-expand-lg .navbar-nav {
        padding: 30px 0 !important
    }

    .solarbox h2 {
        margin: 30px 0 20px !important
    }
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    -webkit-border-radius: 10px;
    border-radius: 10px
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .5)
}

::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 255, 255, .3)
}

.card,
.form-control {
    /* border: 1px solid #008001  !important */
}

.modal-content {
    border: 3px solid !important
}

.btn-success {
    --bs-btn-color: #fff;
    --bs-btn-bg: #008001 ;
    --bs-btn-border-color: #008001 ;
    --bs-btn-hover-color: #008001 ;
    --bs-btn-hover-bg: #fff;
    --bs-btn-hover-border-color: #008001 ;
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #146c43;
    --bs-btn-active-border-color: #13653f;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #008001 ;
    --bs-btn-disabled-border-color: #008001 
}
.right-img{
    box-shadow: #008001 8px -8px;
    border: 2px solid #008001;
    border-bottom-right-radius: 120px;
}
.left-img{
    box-shadow: #008001 -8px -8px;
    border: 2px solid #008001;
    border-bottom-right-radius: 120px;
}