@import url('https://fonts.googleapis.com/css2?family=Playwrite+US+Modern:wght@100..400&display=swap');
/********** Template CSS **********/
:root {
    /* --primary: #ff5a5a; */
    /* --primary: #237ba7 ; */
    /* --primary: #b08367; */
    --primary: #F30D82;
    /* --primary: #1d60a8; */
    /* --primary: #B78D65; */
    --light: #F8F8F8;
    --dark: #252525;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 70px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 70%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    /* .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    } */

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
    .prince-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.prince-carousel{
    width: 400px;
    height: 400px;
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
}


.prince-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.prince-carousel .owl-dots .owl-dot {
    position: relative;
    width: 30px;
    height: 30px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.prince-carousel .owl-dots .owl-dot.active {
    width: 35px;
    height: 35px;
}

.prince-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.prince-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}





.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../frontend/img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
    border: 2px solid #8c8c8c;
}

/* .fact-item:hover .fact-icon {
    background: var(--dark);
} */

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.gallery_box {
    width: 100%;
    height: 350px;
    background-color: #252525;
}

.our_directors {
    width: 350px;
    height: 400px;
    margin: 0 auto;
    background-color: #252525;
    /* border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, .5); */
}

.our_directors img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 400px) {
    .our_directors {
        width: 100%;
    }
}

.whatsapp {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #25D366;
    position: fixed;
    bottom: 3rem;
    left: 1rem;
    border-radius: 50%;
    transition: 0.5s;
    z-index: 10000;
}


.whatsapp a {
    color: #fff;
    font-size: 2.5rem;
}

.chatwithus {
    width: 113px;
    color: #fff;
    position: absolute;
    background-color: #25D366;
    padding: 0.5rem 0;
    text-align: center;
    left: 0;
    border-radius: 50px;
    transform: scale(0);
    transition: 0.5s;
    /* z-index: -1; */
    opacity: 0;
    font-weight: bold;
}

.whatsapp:hover .chatwithus {
    transform: scale(1);
    left: 60px;
    z-index: 1;
    opacity: 1;

}



.call_us {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #d39625;
    position: fixed;
    bottom: 7.5rem;
    left: 1rem;
    border-radius: 50%;
    transition: 0.5s;
    z-index: 10000;
}


.call_us a {
    color: #fff;
    font-size: 2rem;
}

.callus {
    width: 113px;
    color: #fff;
    position: absolute;
    background-color: #d39625;
    padding: 0.5rem 0;
    text-align: center;
    left: 0;
    border-radius: 50px;
    transform: scale(0);
    transition: 0.5s;
    /* z-index: -1; */
    opacity: 0;
    font-weight: bold;
}

.call_us:hover .callus {
    transform: scale(1);
    left: 60px;
    z-index: 1;
    opacity: 1;

}


/* Our products start */
.products_section {
    width: 300px;
    height: 100%;
    transition: 0.3s;
    background-color: #eee;
}

.products_section:hover {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, .3);
}

.products_section .product_img {
    width: 100%;
    height: 300px;
    border: 1px solid grey;
    background-color: #f8f8f8;
}

.products_section .product_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.products_section .product_content {
    background-color: #eee;
    padding: 0.5rem;
}

.products_section .product_content p:nth-child(1) {
    text-transform: uppercase;
}

.products_section .product_content p:nth-child(2) {
    font-size: 0.8rem;
}

/* Our products end */

.mySwiper2 .swiper-wrapper .swiper-slide{
    padding: 1rem;
}

.mySwiper2 .swiper-wrapper .swiper-slide .our_projects {
    width: 100% !important;
    height: 300px !important;
    background-color: #f7f7f8 !important;
    margin: 0 auto !important;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden !important;
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #000;
}

.mySwiper2 .swiper-wrapper .swiper-slide .our_projects img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mySwiper2 .swiper-wrapper .swiper-slide .our_projects video{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.last_child {
    width: 100%;
    /* height: 400px; */
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7)), url(./img/last.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 5rem 0 4rem 4rem;
}

.last_child .l_head {
    font-weight: bold;
    color: #fff;
    font-size: 2.5rem;
    font-family: "Teko", sans-serif;
    text-transform: capitalize;
    line-height: 35px;
}

.last_child .l_head span {
    font-size: 5.68rem;
    color: #fc4ea5;
}
.last_child .l_para {
    width: 600px;
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
    font-family: "Playwrite US Modern", serif;
}
.last_child .l_para2{
    margin: 0;
    padding: 1rem 0 0 0;
    font-family: "Teko", sans-serif;
    text-transform: capitalize;
    color: #fff;
    font-size: 2rem;
}

.our_mission{
    /* width: 400px; */
    /* margin: 0 auto; */
    height: 250px;
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}
.our_mission p{
    margin: 0;
    color: #000;
    
}
.our_mission img {
    width: 270px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.3;
}


.our_vision{
    /* width: 400px; */
    /* margin: 0 auto; */
    height: 250px;
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}
.our_vision p{
    margin: 0;
    color: #000;
}
.our_vision img {
    width: 270px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.3;
}

.legal_docs{
    width: 100%;
}
.legal_docs iframe{
    width: 100%;
    height: 500px;
    border: 5px solid #000;
}

/*==NGO CSS==*/
.donation-item {
    margin-bottom: 30px;
    -webkit-box-shadow: 0 0 20px 0 #dddddd8c;
    box-shadow: 0 0 20px 0 #dddddd8c;
    border-radius: 30px 30px 0 30px;
    -webkit-transition: .5s all ease;
    transition: .5s all ease
}

.donation-item:hover {
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px);
    /* border-radius: 0; */
    /*background-color: #302c51;*/
    background-color: #F30D82;
}

.donation-item:hover .img img {
    border-radius: 0
}

.donation-item:hover .img .common-btn {
    opacity: 1;
    visibility: visible;
    bottom: 15px;
    color: #fff;
}

.donation-item:hover .top .tags {
    color: #fff
}

.donation-item:hover .top h3 a {
    color: #fff
}

.donation-item:hover .top h3 a:hover {
    color: #ff6015
}

.donation-item:hover .top p {
    color: #fff
}

.donation-item:hover .bottom .skill:before {
    background: #fff
}

.donation-item:hover .bottom ul li {
    color: #fff
}

.donation-item:hover .bottom h4 {
    color: #fff
}

.donation-item:hover .bottom .skill-bar span {
    color: #fff
}

.donation-item .img {
    position: relative
}

.donation-item .img img {
    width: 100%;
    border-radius: 30px 30px 0 30px;
    -webkit-transition: .5s all ease;
    transition: .5s all ease
}

.donation-item .img .common-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    visibility: hidden;
    font-weight: bold;
}

.donation-item .inner {
    padding: 26px 30px 30px
}

.donation-item .top .tags {
    display: inline-block;
    color: #ff6015;
    font-weight: 600;
    margin-bottom: 12px
}

.donation-item .top .tags:hover {
    color: #302c51
}

.donation-item .top h3 {
    margin-bottom: 10px;
    font-size: 22px
}

.donation-item .top h3 a {
    color: #302c51
}

.donation-item .top h3 a:hover {
    color: #ff6015
}

.donation-item .top p {
    margin-bottom: 0;
    -webkit-transition: .5s all ease;
    transition: .5s all ease
}

.donation-item .bottom {
    position: relative;
    padding-top: 25px;
    overflow: hidden
}

.donation-item .bottom .skill {
    margin-bottom: 20px;
    position: relative
}

.donation-item .bottom .skill:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 8px;
    bottom: 0;
    left: 0;
    display: block;
    background: #ebeded;
    border-radius: 30px;
    -webkit-transition: .5s all ease;
    transition: .5s all ease
}

.donation-item .bottom .skill-bar {
    width: 100%;
    height: 8px;
    background: #ff6015;
    display: block;
    position: relative;
    border-radius: 30px
}

.donation-item .bottom .skill-bar span {
    position: absolute;
    top: -26px;
    padding: 0;
    font-size: 15px;
    font-weight: 600;
    color: #302c51;
    margin-bottom: 0;
    display: inline-block;
    -webkit-transition: .5s all ease;
    transition: .5s all ease
}

.donation-item .bottom .skill1 {
    width: 85%
}

.donation-item .bottom .skill1 .skill-count1 {
    right: 7px
}

.donation-item .bottom .skill2 {
    width: 95%
}

.donation-item .bottom .skill2 .skill-count2 {
    right: 7px
}

.donation-item .bottom .skill3 {
    width: 90%
}

.donation-item .bottom .skill3 .skill-count3 {
    right: 7px
}

.donation-item .bottom .skill4 {
    width: 80%
}

.donation-item .bottom .skill4 .skill-count4 {
    right: 7px
}

.donation-item .bottom .skill5 {
    width: 75%
}

.donation-item .bottom .skill5 .skill-count5 {
    right: 7px
}

.donation-item .bottom .skill6 {
    width: 70%
}

.donation-item .bottom .skill6 .skill-count6 {
    right: 7px
}

.donation-item .bottom ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 18px
}

.donation-item .bottom ul li {
    display: inline-block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    -webkit-transition: .5s all ease;
    transition: .5s all ease
}

.donation-item .bottom ul li:last-child {
    text-align: right
}

.donation-item .bottom h4 {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 0;
    -webkit-transition: .5s all ease;
    transition: .5s all ease
}

.donation-item .bottom h4 span {
    color: #ff6015
}
.donations-area.two {
    background-color: #f4f8f7
}

.donations-area.two .donation-item {
    background-color: #fff
}

.donations-area.two .donation-item:hover {
    background-color: #302c51
}
.donations-area.three .donation-item {
    padding: 30px;
}

.donations-area.three .donation-item img {
    border-radius: 25px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}


.donations-area.three .donation-item .inner {
    padding: 0
}

.donations-area.three .donation-item .top p {
    margin-bottom: 25px
}

.donations-area.three .donation-item .img .common-btn {
    opacity: 1;
    visibility: visible;
    bottom: -23px;
    z-index: 1
}

.donations-area.three .donation-item .bottom {
    padding-top: 55px
}

.donation-details-area .details-item .details-img {
    margin-bottom: 25px
}

.donation-details-area .details-item .details-img img {
    margin-bottom: 20px
}

.donation-details-area .details-item .details-img h2 {
    font-size: 30px;
    margin-bottom: 15px;
    line-height: 1.4
}

.donation-details-area .details-item .details-img p {
    margin-bottom: 10px
}

.donation-details-area .details-item .details-img p:last-child {
    margin-bottom: 0
}

.donation-details-area .details-item .details-img blockquote {
    background-color: #f9f9f9;
    padding: 30px 30px 30px 60px;
    font-size: 18px;
    font-weight: 600;
    color: #302c51;
    position: relative;
    margin-left: 35px;
    margin-top: 30px;
    margin-bottom: 25px
}

.donation-details-area .details-item .details-img blockquote i {
    position: absolute;
    top: 45px;
    left: -35px;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: #fff;
    color: #ff6015;
    -webkit-box-shadow: 0 0 20px 0 #dddddd8c;
    box-shadow: 0 0 20px 0 #dddddd8c;
    font-size: 30px;
    border-radius: 50%
}

.donation-details-area .details-item .details-share {
    margin-bottom: 30px
}

.donation-details-area .details-item .details-share .left ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 3px
}

.donation-details-area .details-item .details-share .left ul li:last-child {
    margin-right: 0
}

.donation-details-area .details-item .details-share .left ul li span {
    display: inline-block;
    font-weight: 600;
    margin-right: 5px
}

.donation-details-area .details-item .details-share .left ul li a {
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #ff6015;
    border: 1px solid #ff6015;
    border-radius: 50%;
    font-size: 15px
}

.donation-details-area .details-item .details-share .left ul li a i {
    line-height: 30px
}

.donation-details-area .details-item .details-share .left ul li a:hover {
    color: #fff;
    background-color: #ff6015
}

.donation-details-area .details-item .details-share .right {
    text-align: right
}

.donation-details-area .details-item .details-share .right ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 10px;
    position: relative
}

.donation-details-area .details-item .details-share .right ul li:before {
    position: absolute;
    content: ',';
    color: #ff6015;
    top: -5px;
    right: -7px;
    font-size: 20px
}

.donation-details-area .details-item .details-share .right ul li:first-child:before {
    display: none
}

.donation-details-area .details-item .details-share .right ul li:last-child {
    margin-right: 0
}

.donation-details-area .details-item .details-share .right ul li:last-child:before {
    display: none
}

.donation-details-area .details-item .details-share .right ul li span {
    display: inline-block;
    font-weight: 600
}

.donation-details-area .details-item .details-share .right ul li a {
    display: inline-block;
    color: #ff6015
}

.donation-details-area .details-item .details-share .right ul li a:hover {
    color: #302c51
}

.donation-details-area .details-item .details-payment {
    background-color: #fafafa;
    padding: 50px
}

.donation-details-area .details-item .details-payment h3 {
    font-size: 25px;
    margin-bottom: 8px;
    margin-top: -5px
}

.donation-details-area .details-item .details-payment .form-radio-area {
    margin-bottom: 30px
}

.donation-details-area .details-item .details-payment .form-radio-area .form-check-label {
    color: #302c51
}

.donation-details-area .details-item .details-payment .form-input-area .form-group {
    position: relative;
    margin-bottom: 15px
}

.donation-details-area .details-item .details-payment .form-input-area .form-group label {
    margin-bottom: 0;
    position: absolute;
    top: 10px;
    left: 15px;
    color: #ff6015;
    font-size: 20px
}

.donation-details-area .details-item .details-payment .form-input-area .form-group .form-control {
    height: 50px;
    border-radius: 5px;
    border: 0;
    background-color: #fff;
    padding-left: 45px
}

.donation-details-area .details-item .details-payment .form-input-area .form-group .form-control:focus {
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.donation-details-area .details-item .details-payment .form-input-area .common-btn {
    -webkit-transition: .5s all ease;
    transition: .5s all ease;
    width: 100%;
    display: block
}










@media (max-width: 700px){
    .last_child {
        padding: 4rem 1rem;
        text-align: center;
    }
    .last_child .l_para {
        width: 100%;
        font-size: 1rem;
    }
}

@media (max-width: 470px){
    .last_child .l_head {
        font-size: 2rem;
    }
    .last_child .l_head span {
        font-size: 4rem;
        color: #fc4ea5;
    }
    .last_child .l_para {
        width: 600px;
        font-size: 1.2rem;
        color: #fff;
        margin: 0;
        font-family: "Playwrite US Modern", serif;
    }
    .last_child {
        padding: 4rem 1rem;
        text-align: center;
    }
    .last_child .l_para {
        width: 100%;
        font-size: 0.8rem;
    }
    .last_child .l_para2{
        font-size: 1.5rem;
    }
    .our_mission p {
        font-size: 0.8rem;
    }
    .our_vision p {
        font-size: 0.8rem;
    }
    .legal_docs iframe{
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 335px){
    .our_mission{
        height: 300px;
    }
    .our_vision{
        height: 300px;
    }
}