
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');





/* :::::::::::::::::::::::::Google-Font-CDNs::::::::::::::::::::::::::: */


/* --Font-Barlow Condensed-- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* --Font-Poppins-- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* --Font-Roboto-- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* --Font-Lato-- */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


/* --Font-Caveat-- */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');


/* --Font-Ubuntu-- */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

/* --Font-Raleway-- */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


/* --Font-Quicksand---- */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

/* --Font-Roboto Slab-- */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');

/* --Font-Didact Gothic-- */
@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');

/* --Font-Saira-- */
@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap');










/********** Template CSS **********/




:root {
    --primary: #FF6F0F;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --dark: #001D23;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    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-outline-primary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    color: var(--primary);
    background: transparent;
}

.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;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.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: 25px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: var(--dark);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@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;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 29, 35, 0.538);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 12px solid var(--dark);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgba(0, 29, 35, .8), rgba(0, 29, 35, .8)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}





.help_media{
    margin-bottom: 20px;
  }

  .help_heading_p{
    text-align: center;
    font-weight: 300;
  }
  .help_heading_spam{
    font-weight: 700;
    color: #822c95;
  }

  .help_media h3 {
    color: #26211d;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
  }

  .help_media  p{
    line-height: 1.6;
    padding-right: 100px;
    font-size: 15px;
  }

  .help_media .help_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    font-size: 40px;
    background: #EC3737;
    border-radius: 9px;
    color: white;
}





/* Jago */

.image_container{
    position: relative;
    display: flex;
    justify-content: end;
}
.image_container .img-1{
    border: 5px solid white;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.image_container .img-2{
    position: absolute;
    top: -81px;
    left: -15px;
    width: 200px;
    border-radius: 6px;
    border: 7px solid white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.image_container .img-3{
    position: absolute;
    bottom: -81px;
    left: -15px;
    width: 200px;
    border-radius: 6px;
    border: 7px solid white;
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    z-index: -1;
}


@media (max-width:768px) {
    .image_container .img-1{
        width: 100%;
    }
    .image_container .img-2{
        display: none;
    }
    .image_container .img-3{
        display: none;
    }

    .jgo_content h4{
        padding-right: 0 !important;
        padding-top: 20px;
        font-family: "Saira", sans-serif;
    }

    .help_media  p{
        padding-right: 0;
    }
    
}


/* Jago */


/*** Service ***/
.service-item {
    /* box-shadow: 0 0 45px rgba(0, 0, 0, .06); */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
    
}
.service-item h4{
    color: #500062;
    font-size: 20px;

}
.service-item img{
    width: 100px;

}


/*** Donate ***/


.donate h4{
    color:#EC3737 !important;

}
.donate {
    background: rgba(0, 29, 35, .8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    color: var(--primary);
    border-color: var(--primary);
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgba(0, 29, 35, .8), rgba(0, 29, 35, .8)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}



/* About  */




.counter {
    color: #8dc73f;
    font-family: 'bebas neue', Sans-serif;
    font-size: 100px;
    font-weight: 600;
    letter-spacing: 0;
}
.counter_1 {
    color: #8dc73f;
    font-family: 'bebas neue', Sans-serif;
    font-size: 100px;
    font-weight: 600;
    letter-spacing: 0;
}


.counter_container h1{
    color: #8dc73f;
    font-family: 'bebas neue', Sans-serif;
    font-size: 30px;
    font-weight: 400;
    text-align: center;
}
.counter_container p{
    font-family: raleway, Sans-serif;
    text-align: center;
    color: black;
}


/*** Service ***/
.ser-hea h1{
    color: var(--clr);
    font-family: "Raleway", sans-serif;
    font-size: 20px;
    font-weight: 700;
    /* text-decoration: underline; */
    line-height: 50.54px;
    letter-spacing: 1px;
}

.margin_left{
    margin-left: 100px;
}

/*** Donate ***/
.donate {
    background: rgba(0, 29, 35, .8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    color: var(--primary);
    border-color: var(--primary);
}

/* Towerd Start */

.towerd_row{
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    justify-content: center;
}

.tower_col{
    width: 16%;
}

.tower_col img{
    width: 100%;
}

/* Towerd End */


/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 250px;
}

.team-text h5{
    font-weight: 500;
}



.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/* testimonials */

.item_owl_img img{
    border-radius: 10px;
}




/*** Footer ***/

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,0.5);
    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: rgba(255,255,255,0.5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.5);
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* :::::::::::::::::::::::::Common-CSS-Start::::::::::::::::::::::::::: */



/* ---background-color---*/
.s-bg-1{
    background-color:#3b71ca;
}
.s-bg-2{
    background-color:#EC3737;
}

.g-bg-1{
    background: radial-gradient(circle at 12.3% 19.3%, rgb(85, 88, 218) 0%, rgb(95, 209, 249) 100.2%);
}



/* ---text-color---*/

.s-txt-1{
    color:#0c134c;
}
.s-txt-2{
    color:#822c95;
}
.s-txt-3{
    color:#c55faf;
}
.s-txt-4{
    color:#EC3737;
}

.g-txt-1{
    background: radial-gradient(circle at 12.3% 19.3%, rgb(85, 88, 218) 0%, rgb(95, 209, 249) 100.2%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



/* ---font-weight---*/
.cus-fw-500 {
    font-weight: 500;
}

.cus-fw-600 {
    font-weight: 600;
}

.cus-fw-700 {
    font-weight: 700;
}




/* ---cus-fonts---*/

.cus-font-1{
  font-family: "Barlow Condensed", sans-serif !important;
  }
  .cus-font-2{
  font-family: "Roboto", sans-serif !important;
  }
  .cus-font-3{
  font-family: "Poppins", sans-serif !important;
  }
  .cus-font-4{
      font-family: "Lato", sans-serif !important;
      font-weight: 600;
      font-style: normal;
  }
  .cus-font-5{
      font-family: "Source Sans 3", sans-serif !important;
      font-weight: 700;
      font-style: normal;
  }
  .cus-font-6{
      font-family: "Alice", serif!important;
  }
  .cus-font-7{
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-size: 30px;
    font-weight: 700;
  }
  .cus-font-8{
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-size: 25px;
  }
  .cus-font-9{
      font-family: "Ubuntu", sans-serif;
      font-weight: 500;
      font-style: normal;
  }
  .cus-font-10{
      font-family: "Raleway", Sans-serif;
  }
  
  
  .cus-font-11{
      font-family: "Didact Gothic", Sans-serif;
  
  }
  .cus-font-12{
      font-family: "Quicksand", sans-serif;
  }
  .cus-font-13{
      font-family: "Roboto Slab", serif;
}





/* ---image-scaleup---*/
.img-zoomin {
  transition: 0.5s;
}

.img-zoomin:hover {
  transform: scale(1.1);
}



/* ---borders---*/
.br-10{
  border-radius: 10px !important;
}

.br-20{
  border-radius: 20px !important;
}

.br-30{
  border-radius: 30px !important;
}






/* ---buttons---*/

/* <button class="button-1" role="button">Button 1</button> */ 

.button-1 {
  background: #5E5DF0;
  border-radius: 999px;
  box-shadow: #5E5DF0 0 10px 20px -10px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  opacity: 1;
  outline: 0 solid transparent;
  padding: 8px 18px;
  user-select: none;
  touch-action: manipulation;
  width: fit-content;
  word-break: break-word;
  border: 0;
}




/* <button class="button-2" role="button">Button 2</button> */


.button-2 {
  align-items: center;
  background-image: linear-gradient(144deg,#AF40FF, #5B42F3 50%,#00DDEB);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  font-size: 20px;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 140px;
  padding: 19px 24px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
}

.button-2:active,
.button-2:hover {
  outline: 0;
}

@media (min-width: 768px) {
  .button-2 {
    font-size: 24px;
    min-width: 196px;
  }
}





/* ---shadows---*/

.cus-shadow-1{
    /* text-shadow: rgba(255, 255, 255, 0.24) 0px 3px 8px !important; */
   text-shadow: rgba(0, 0, 0, 0.315) 0px 1px 4px;
}


.cus-shadow-2{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}



/* ---filter-shadows---*/

.cus-filter-shadow-1 {
    filter: drop-shadow(0 0.2rem 0.25rem rgba(0, 0, 0, 0.2));
  }


.text-stroke {
   
    -webkit-text-stroke: 0.4px #ffffff;

}



/* :::::::::::::::::::::::::Common-CSS-End::::::::::::::::::::::::::: */



/* ----------------------Cus-Hero-Section-Start------------- */
.carousel-caption h1{
color: #ffffff;
}
.carousel-caption p{
color: #c3c3c3;
font-size: 25px;
}
/* ----------------------Cus-Hero-Section-End------------- */



.cause_heading{
    color: #000;
    font-family: "Bebas Neue", Sans-serif !important;
    font-size: 41.81px;
    font-weight: 600;
    line-height: 53.76px;
    letter-spacing: 1px;
    text-align: center;
  }

  .cause_container{
    display: grid;
    justify-content: center;
  }

  .cause_container .cause_container_image{
    position: relative;
    width: 269px;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
  }

  .cause_container .cause_container_image span{
    position: absolute;
    display: block;
    background: #00000052;
    top: 0;
    color: white;
    width: 100%;
    height: 100%;
  }
  .cause_container .cause_container_image h2{
    position: absolute;
    color: #fff;
    font-family: "Bebas Neue", Sans-serif !important;
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 40px;
    letter-spacing: 2px;
    bottom: 15px;
    left: 20px;
  }

  .cause_container span{
    display: block;
    width: 269px;
    padding-top: 20px;
  }

  .cause_container span p{
    font-family: Raleway, Sans-serif !important;
    font-size: 15px;
    font-weight: 400;
  }

  .cause_container a{
    color: #76c04e;
    font-family: Raleway, Sans-serif !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    text-align: start;
  }



  /* -----Our Programmes Start ----- */
.our-program .mobile{
    display: none;
}



@media (max-width: 768px) {
    .our-program .desktop{
        display: none;
    }

    .our-program .mobile{
        display: block;
    }
    
}

  /* -----Our Programmes End----- */


  /* --Checkout-Form-Start------// */


  .index-tp-head {
    /* font-family: "Roboto", Sans-serif; */
    font-size: 28px;
    /* font-weight: 600; */
}

.index-tp-head-c {
    /* color: #2E8072; */
    /* font-weight: 700; */
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.index-tp-head-c::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 276px;
    height: 10px;
    background: url('../img/Underline_02.png') no-repeat center center;
    background-size: contain;
}

  .checkout-form-container-main{
    display: flex;
    justify-content: center;
    align-items: center;
    
  }

  .checkout-form-container form {

    display: flex;
    flex-direction: column; /* Optional: Ensures the form fields stack vertically */
    justify-content: center;
    align-items: center;
    width: 600px; /* Set a fixed width */
    max-width: 90%; /* Optional: Makes it responsive */
    margin: 0 auto; /* Center the form horizontally */
  }
  .checkout-form-container {
    background-color: #f2f2f2;
    padding: 5px 20px 15px 20px;
    border: 1px solid lightgrey;
    border-radius: 10px;
    
  }
  
  .checkout-form-container input[type=text] {
    width: 100%;
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
  }
  
  .checkout-form-container label {
    margin-bottom: 10px !important;
    display: block;
  }
  
  .checkout-form-container .icon-container {
    margin-bottom: 20px;
    padding: 7px 0;
    font-size: 24px;
  }
  
  .checkout-form-container .btn {
    background-color: #4CAF50;
    color: white;
    padding: 12px;
    margin: 10px 0;
    border: none;
    width: 100%;
    border-radius: 3px;
    cursor: pointer;
    font-size: 17px;
  }



  @media (max-width: 768px) {
    .checkout-form-container form{
        width: 329px;
    }
}
  
  /* --Checkout-Form-End------// */

