* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Sora", sans-serif;
}

body {
    font-family: "Sora", sans-serif;
    overflow-x: hidden;
    font-size: 16px;
}

:root {
    --primary: #ffbe00;
    --secondary: #23720f;
    --light: #fff;
    --black: #000;
    --light-yeellow: #ffd149;
}
p,ul,ol,li{
    text-align: justify;
    word-break: break-all;
}
.sub-title {
    position: relative;
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
}

.text_color {
    color: var(--primary);
}

.text_color_green {
    color: var(--secondary);
}

.border_yellow {
    border: 2px solid var(--primary);
}

.border-common {
    border-bottom: var(--primary);
}

.border_green {
    border: 2px solid var(--secondary);
}

.bg_primary {
    background-color: var(--primary);
}

.bg_secondary {
    background-color: var(--secondary);
}

/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.top_header a {
    text-decoration: none;
}

.top_header_icons a:hover {
    border-bottom: var(--secondary) !important;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--secondary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--secondary) !important;
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}

/*** Topbar End ***/

/*** Topbar Start ***/
.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    background-color: var(--secondary);
}

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

.top-link a:hover {
    background-color: var(--primary);
    color: var(--light);
}

@keyframes mymove {
    from {
        left: -100%;
    }

    to {
        left: 100%;
    }
}

/*** Topbar End ***/
/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: var(--black);
    font-size: 16px;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        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;
}

/*** Navbar End ***/
/*** Carousel Start ***/
.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 35%;
    left: 0;
    background: var(--primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: var(--secondary);
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 35%;
    right: 0;
    background: var(--primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: var(--secondary);
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--light);
    color: var(--primary);
    opacity: 1;
    border: 0;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--primary);
    color: var(--light);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--secondary);
    color: var(--primary);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }

    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }

}

@media (max-width:1024px) {
    .navbar .navbar-nav .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        /* min-height: 400px; */
        min-height: 280px;

    }

    .carousel-item img {
        /* min-height: 400px; */
        min-height: 280px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light) !important;
}

/*** Carousel End ***/
/*** vision_mission Start ***/
.accordion-button:not(.collapsed){
    background: transparent !important;
    color: var(--black) !important;
    border: 2px solid var(--primary);
    outline: none !important;
}
.mission_vission .tab-class .nav .nav-item a.active,
.mission_vission .tab-class .nav .nav-item a.active span {
    background: var(--primary) !important;
    color: var(--light) !important;
}

.mission_vission .nav-item a {
    text-decoration: none;
}

.bg_light_vision_mistion {
    background: repeating-linear-gradient(45deg, #ffc107, #ffc1078c 161px);
}

.carousel-container {
    top: 12%;
    left: 0;
    right: 0;
    margin: auto;
    width: 76%;
    height: 55%;
}

.object-fit-cover {
    object-fit: cover;
}

.antiquewhite {
    background: antiquewhite;
}

.nav-tabs .active {
    background: var(--primary) !important;
    color: #fff !important;
}

.nav-link {
    color: var(--black);
}

.tab-content {
    min-height: 100px;
}

/*** vision_mission End ***/
/* ********objective********** */
.accordion-button:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
/* .collapse {
    border: 2px solid var(--primary);
    border-radius: 10px;
} */
.objective_info .card {
    background: var(--secondary);
    color: #fff;
}

.bg_objective_gredient {
    /* background-color:#ffbe0075;  */
    background: repeating-linear-gradient(45deg, #23720f, #0e2508 100px);
}

.objective_info {
    padding: 80px 0;
    position: relative;
    clip-path: inset(0);
}

.objective_info img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.objective_info:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.objective_info .container {
    position: relative;
    z-index: 3;
}

.objective_info h3 {
    font-size: 28px;
    font-weight: 700;

}

.objective_info li {

    list-style: none;
}

.objective_listing {
    text-align: justify;
    line-height: 2;
    word-break: break-all;
}

.objective-img {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 30px 30px 30px 30px;
    overflow: hidden;
}

.objective-img::before {
    content: "";
    width: 100%;
    height: 40%;
    background: var(--secondary);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}

.objective_gredient {
    background: repeating-linear-gradient(45deg, #ffe9aa, #ffc92e 100px);
}

.objective-img::after {
    content: "";
    width: 100%;
    height: 60%;
    background: var(--primary);
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}

.rotate-left {
    width: 150px;
    height: 100px;
    position: absolute;
    top: 28%;
    left: -10%;
    rotate: 25deg;
    z-index: 2;
}

.rotate-right {
    width: 150px;
    height: 100px;
    position: absolute;
    top: 28%;
    right: -10%;
    rotate: -25deg;
    z-index: 2;
}

.objective-img img {
    position: relative;
    z-index: 2;
    border-radius: 10px;
}

.experiences {
    width: 119px;
    height: 115px;
    position: absolute;
    top: -0;
    right: 0;
    padding: 35px 35px;
    text-align: center;
    border-radius: 10px;
    z-index: 3;
    animation: mymove 6s infinite;
    animation-timing-function: ease-in-out;
}

.accordion-button {
    border: 2px solid var(--primary);
}

@keyframes mymove {
    from {
        top: -202px;
    }

    to {
        top: 102%;
    }
}

/* ********objective********** */
/* ********programing_traning********** */
.traning-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.traning-icon {
       position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 9px 0px 1px 5px var(--secondary);
    transition: .5s;
    border: 3px solid var(--primary);
}

.traning-item:hover .traning-icon {
    color: #FFFFFF !;
    background: var(--primary);
}
.traning-item i:hover{
    color: var(--light) !important;
}

/* ********programing_traning********** */

/* **********mission and vision**********/

/*** Services Start ***/
.vision_mission_about .vision_mission_about-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}

.vision-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: var(--secondary);
    transition: .5s;
}

.vision-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.vision_mission_about-item:hover .vision-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.vision_mission_about-item:hover .vision-content-icon {
    position: relative;
    z-index: 2;
}

.vision_mission_about-item .vision-content-icon i,
.vision_mission_about-item .vision-content-icon p {
    transition: .5s;
}

.vision_mission_about-item:hover .vision-content-icon i {
    color: var(--secondary) !important;
}

.vision_mission_about-item:hover .vision-content-icon p {
    color: var(--light);
}

/* ********mission and vision************/
/* *******who we are*********/
.who_we_are {
    box-shadow: 0px 0px 8px 0px var(--primary);
}

/* *******who we are*********/
/* *************donate*************/
.donate-card {
    max-width: 600px;
}

.donate-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.donate-img-col {
    max-width: 200px;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 2;
    text-align: center;
}

.breadcrumb-overlay {
    position: absolute;
    top: 20px;
    z-index: 2;
    width: max-content;
}

.image-header {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.image-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.donate_now_list li {
    list-style: none;
    line-height: 2;
}

/* *************donate*************/
/* ********button css***********/
.custom-link {
    color: var(--black);
    border: 2px solid var(--primary);
    background-color: var(--primary);
    padding: 10px 22px;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 5px;
    font-size: 17px;
}

.custom-link:hover {
    background-color: var(--secondary);
    color: var(--light) !important;
    border: 2px solid var(--secondary);

}

/* ********button css***********/


/*** Services Start ***/

.services .services-item {
    box-shadow: 0px 0px 8px 0px var(--primary);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}

.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: #1c8b00;
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item h4:hover {
    color: #fff;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
    text-align: justify;
    word-break: break-all;
}

.services-item:hover .services-content-icon i {
    color: var(--primary) !important;
}

.services-item:hover .services-content-icon p{
    color: var(--light);
}
.services-item:hover .services-content-icon h4{
    color: var(--light);
}

/*** Services End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(35 114 15 / 74%), #ffc107fa), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: var(--light-yeellow);
}

.contact-form {
    background: var(--light-yeellow);
}

.contact_info a {
    text-decoration: none;
}

/*** Contact End ***/
/*** volunteer start ***/
.border_volunteer {
    border: 2px solid var(--secondary);
}

/*** volunteer End ***/
/*** Footer Start ***/
.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer_list a {
    text-decoration: none;
}

.footer .hightech-link a:hover {
    background: var(--primary);
    border: 0;
}

/*** Footer End ***/
/* *********header skew css********** */
/* Default transition setup */


/* *********header skew css********** */