@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&display=swap'); */
/* @font-face {
   font-family: sombra-bold;
   src: url(sombra-black.otf);
   } */
body {
    margin:  0;
    padding: 0;
}
.alert {
	display: none;
	box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, .15);
}

.alert p {
	margin-bottom: 0;
	font-family: 'Outfit-Light', sans-serif;
	font-size: 15px;
	/*text-transform: capitalize;*/
}

.alert-container {
	position: fixed;
	top: 20%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 999999999999;
}
.post_loader {
	width: 20px;
	height: 20px;
	border: 4px solid #FFF;
	border-bottom-color: transparent;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.whatsapp-btn {
   position: fixed;
   bottom: 5%;
   right: 5%;
   z-index: 100;
   width: 35px;
   height: 35px;
   background: #36f074;
   border-radius: 50%;
   box-shadow: 0px 0px 20px 0px rgba(0,0,0,.3);
   /* text-align: center; */
}
.whatsapp-btn a {
   text-decoration: none;
   color: #fff; 
   position: absolute;
   top: 52%;
   left: 52%;
   transform: translate(-50%, -50%);
}
.whatsapp-btn a:hover {
   text-decoration: none;
   color: #fff; 
}
.whatsapp-btn a i {
   font-size: 20px;
}
.navbar {
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding: 0px 15px;
}
.navbar .navbar-brand {
   padding: 0;
}
.navbar .nav-item .nav-link {
    text-decoration: none;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    margin: 0 10px;
 }
 .navbar .nav-item .nav-link.donate_btn {
    color: #fff;
    background: #b2369d;
    border-radius: 5px;
    padding: 10px 35px;
 }
 .hero {
    width: 100%;
    height: 90vh;
    background-image: url('../img/hero_bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
 }
 .hero .hero_img {
     width: 100%;
     height: 80vh;
     background-image: url('../img/hero_design.png');
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center center;
     margin-top: 30px;
 }
 .hero .hero_text {
     margin-top: 100px;
 }
 .hero .hero_text h5 {
    color: #b2369d;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
 }
 .hero .hero_text h2 {
    color: #000;
    font-family: 'Bebas Neue', cursive;
    font-weight: 700;
    font-size: 5.5em;
    line-height: 1.2;
 }
 .hero .hero_text h2 span {
   font-family: 'Bebas Neue', cursive;
   /* font-family: 'Poppins', sans-serif; */
   /* font-family: 'Poppins', sans-serif; */
}
 .hero .hero_text h3 {
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1em;
    margin-bottom: 20px;
    text-transform: uppercase;
    /* padding-right: 150px; */
 }
 .hero .hero_text a {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: #fff;
    background: #b2369d;
    border-radius: 5px;
    padding: 10px 35px;
    text-transform: uppercase;
 }
 .hero .hero_text a i {
   font-size: 20px;
   left: 15px;
   top: 5px;
   position: relative;
}
 .about_div {
     width: 100%;
     height: auto;
     padding: 50px 20px;
     /* background-image: url('../img/bg.jpg');
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center center; */
 }
 .about_div .img {
    width: 100%;
    height: 60vh;
    background-image: url('../img/abb_design.jpg');
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center center;
     margin-top: 20px;
 }
 .about_div .text-box {
    padding: 20px 50px;
    margin-top: 30px;
 }
 .about_div .text-box h2 {
   color: #000;
   font-family: 'Bebas Neue', cursive;
   font-weight: 700;
   font-size: 2.5em;
   margin-bottom: 30px;
}
.about_div .text-box p {
   color: #333;
   font-family: 'Poppins', sans-serif;
   font-size: 13px;
   line-height: 30px;
}
.focus_areas {
   width: 100%;
   height: auto;
   padding: 50px 50px;
   /* background: rgb(248, 238, 229); */
   background: linear-gradient(to left, rgba(248, 238, 229,.99), rgb(248, 238, 229,.99)), url('../img/bg.jpg');
   background-repeat: repeat;
   background-position: center center;
   background-size: cover;
   background-attachment: fixed;
}
.focus_areas .card-header {
   background: transparent;
}
.focus_areas .card {
   background: transparent;
   border: none;
}
.focus_areas .card .card-body {
   background: #fff;
}
.focus_areas .card .card-header  .card_header_icon {
   float: right;
}
.focus_areas .card .card-header  .card_header_icon i {
   font-size: 25px;
   transition: all .3s ease-in-out;
}
.focus_areas .header h2 {
   color: #000;
   font-family: 'Bebas Neue', cursive;
   font-weight: 700;
   font-size: 4.5em;
}
.focus_areas .header  {
   /* margin-bottom: 50px; */
}
.focus_areas .card .card-header button {
   text-decoration: none;
   color: #333;
   font-family: 'Poppins', sans-serif;
   font-size: 15px;
   line-height: 30px;
   font-weight: 600;
}
.focus_areas .card .card-header {
   padding: 15px 0px;
}
.focus_areas .card .card-body {
   font-family: 'Poppins', sans-serif;
font-weight: 400;
color: #777;
font-size: 14px;
line-height: 26px;
margin-bottom: 0;
}
.projects {
   width: 100%;
   height: auto;
   padding: 50px 30px;
}
.projects .header h2 {
   color: #000;
   font-family: 'Bebas Neue', cursive;
   font-weight: 700;
   font-size: 4.5em;
}
.projects .header  {
   /* margin-bottom: 50px; */
}

.projects .program_box .img-box {
   width: 100%;
   height: 350px;
   padding: 10px;
   box-shadow: 1px 1px 7px 1px rgba(0, 0, 0,.15);
   /* background: #f2f2f2; */
}
.projects .program_box a {
   text-decoration: none;
}
.projects .program_box .img-box .img {
   width: 100%;
   height: 100%;
   background-position: center center;
   background-size: cover;
   background-repeat: no-repeat;
}
.projects .program_box  .text-box h2{
   color: #000;
   font-family: 'Poppins', sans-serif;
   font-size: 13px;
   margin-bottom: 15px;
   font-weight: 600; 
   text-transform: uppercase;
}
.projects .program_box  .text-box {
  margin-top: 10px;
}
.projects .item_box  .row .col-sm-6 {
   margin-bottom: 50px;
 }
.news_div .swiper-container {
   padding-bottom: 150px;
   padding-top: 50px;
   position: relative;
   /* margin-bottom: 50px; */
 }
.news_div .swiper-slide {
   width: 310px;
   height: 250px;
   box-shadow: 1px 1px 7px 1px rgba(0, 0, 0,.1);
   padding: 10px;
}

 .news_div .swiper-slide .slide_text p{
   color: #aeaeae;
   font-family: 'Poppins', sans-serif;
   font-size: 10px;
   margin-bottom: 5px;
   /* font-weight: 600;  */
   text-transform: uppercase;
}
.news_div .swiper-slide .slide_text h2{
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    margin-bottom: 15px;
    font-weight: 600; 
    text-transform: uppercase;
 }
 .news_div .swiper-slide .slide_text .direct_book{
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.5s all ease-in-out 0s;
    background: none;
    border: 1px solid #000;
    border-radius: 0;
    position: relative;
    cursor: pointer;
    padding: 7px 15px;
    /* margin-top: 15px; */
 }
 .news_div .swiper-slide a {
    text-decoration: none;
 }
 .news_div .swiper-slide .slide_text .direct_book::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000;
    transition: 0.5s all  ease-in-out 0s;
}
.news_div .swiper-slide .slide_text .btn-1:hover{
    color: #fff;
}
.news_div .swiper-slide .slide_text .btn-1::before{
    height: 0;
}
.news_div .swiper-slide .slide_text .btn-1:hover::before{
    top: unset;
    bottom: 0;
    height: 100%;
}
 .slide_text {
     margin-top: 20px;
 }
 .news_div .swiper-container .swiper-button-next {
   background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yMS44ODMgMTJsLTcuNTI3IDYuMjM1LjY0NC43NjUgOS03LjUyMS05LTcuNDc5LS42NDUuNzY0IDcuNTI5IDYuMjM2aC0yMS44ODR2MWgyMS44ODN6Ii8+PC9zdmc+') !important;
   background-size: 20px 35px;
   background-position: center;
   background-repeat: no-repeat !important;
   position: absolute;
   top: 20px;
  bottom: auto;
   width: 40px;
   height: 40px;
   z-index: 10;
   cursor: pointer;
   left: auto;
   right: 30px;
}
.news_div .swiper-container .swiper-button-prev {
   background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjExNyAxMmw3LjUyNyA2LjIzNS0uNjQ0Ljc2NS05LTcuNTIxIDktNy40NzkuNjQ1Ljc2NC03LjUyOSA2LjIzNmgyMS44ODR2MWgtMjEuODgzeiIvPjwvc3ZnPg==') !important;
   background-size: 20px 35px;
   background-position: center;
   background-repeat: no-repeat !important;
   position: absolute;
   top: 20px;
  bottom: auto;
   width: 40px;
   height: 40px;
   z-index: 10;
   cursor: pointer;
   left: auto;
   right: 150px;
}

 .news_div .swiper-slide .slide_img {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
 }
 .news_div .header {

 }
 .news_div .header .text-right {
   margin-bottom: 30px;
}
 .news_div .header h2 {
   color: #000;
   font-family: 'Bebas Neue', cursive;
   font-weight: 700;
   font-size: 4.5em;
}
.news_div .header a {
   color: #000;
   font-family: 'Poppins', sans-serif;
   font-weight: 700;
   font-size: 12px;
   text-transform: uppercase;
}

@media screen and (max-width:950px){
   .hero .hero_text {
      margin-top: 20px;
  }
  .hero .hero_text h2 {
   font-size: 4em;
   line-height: 1;
}
.hero .hero_img {
   width: 100%;
   height: 40vh;
   margin-top: 10px;
}
.hero .hero_text a {
display: none;
}
.about_div .text-box {
   padding: 20px 0px;
   margin-top: 0px;
}
.about_div .text-box h2 {
   font-size: 1.5em;
   margin-bottom: 10px;
}
.about_div {
   padding: 20px 15px;
}
.about_div .text-box p {
   line-height: 25px;
   color: #888;
   font-size: 11px;
}
.hero .hero_text h3 {
   font-size: .9em;
   margin-bottom: 20px;
   padding-right: 0px;
}
.about_div .img {
   width: 100%;
   height: 40vh;
   margin-top: 10px;
}
.focus_areas {
   padding: 20px 15px;
}
.focus_areas .header h2 {
   font-size: 2.5em;
}
.focus_areas .card .card-header button {
   font-size: 12px;
   line-height: 20px;
   font-weight: 600;
}
.focus_areas .card .card-header {
   padding: 5px 0px;
}
.focus_areas .card .card-header .card_header_icon i {
   font-size: 20px;
}
.focus_areas .card .card-body {
   color: #333;
   font-size: 12px;
   line-height: 20px;
   padding: 10px 10px;
}
.projects {
   width: 100%;
   height: auto;
   padding: 20px 15px;
}
.projects .header h2 {
   font-size: 2.5em;
}
.projects .program_box .img-box {
   width: 100%;
   height: 200px;
}
.projects .item_box .row .col-sm-6 {
   margin-bottom: 10px;
}
.projects .program_box .text-box h2 {
   font-size: 11px;
}
.news_div .header h2 {
   font-size: 2.5em;
}
.news_div .swiper-container {
   padding-bottom: 120px;
   padding-top: 50px;
}
.news_div .swiper-container .swiper-button-next {
   top: 30px;
   right: -10px;
}
.news_div .swiper-container .swiper-button-prev {
   top: 30px;
   right: auto;
   left: 0px;
}
.news_div .swiper-slide {
   width: 330px;
   margin-left: 5px;
}
.news_div .swiper-slide .slide_text h2{
    font-size: 11px;
    margin-bottom: 10px;
 }
 .news_div .swiper-slide .slide_text .direct_book{
    font-size: 10px;
    padding: 7px 10px;
 }

}
.footer {
   padding: 20px 30px;
   background: #000;
   color: #fff;
}
.footer .call a {
   text-decoration: none;
   color: #fff;
    font-family: 'Poppins', sans-serif;
   font-size: 13px;
}
.footer .connect {
   margin-top: 10px;
}
.footer .connect a {
   text-decoration: none;
   color: #fff;
   border: 1px solid #fff;
   border-radius: 50%;
   width: 45px;
   height: 45px;
   position: relative;
   display: inline-block;
   margin: 0 5px;
   transition:  all .5s ease-in-out;
}
.footer .connect a:hover {
   background: #fff;
   color: #000;
}
.footer .connect a i {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   font-size: 15px;
}
.footer .inner-col {
   
}
.footer .footer-bottom {
   border-top: 1px solid #555;
   padding: 10px 0 0 0;
   transition: all .7s ease-in-out;
}

.footer .inner-col p {
  margin-bottom: 0;
} 
.footer .inner-col p a {
   text-decoration: none;
   color: #fff;
   font-size: 13px;
} 
.footer .inner-col .comp {
    font-family: 'Poppins', sans-serif;
   font-size: 14px;
   color: #666;
   font-weight: 600;
}
.footer .main-top-footer {
   padding: 30px 20px;
}
.footer .main-top-footer .top-footer h2 {
   color: #ccc;
   font-size: 2em;
   font-family: 'Bebas Neue', cursive;
    font-weight: 700; 
}
.footer .main-top-footer .top-footer a {
   color: #888;
   font-size: 13px;
   font-family: 'Poppins', sans-serif;
   text-decoration: none;
   letter-spacing: 1px;
   transition: all .7s ease-in-out;
   margin-right: 10px;
   font-weight: 400;
}
.footer:hover  .main-top-footer .top-footer a {
   color: #fff;
}
.footer:hover  .footer-bottom {
   border-top: 1px solid #fff;
}
@media screen and (max-width:950px){
   .footer {
       padding: 10px 15px;
   }
   .footer {
       text-align: center;
       justify-content: center;
   }
   .footer .inner-col {
       float: none;
   }
   .footer .inner-col .comp {
    font-family: 'Poppins', sans-serif;
   font-size: 15px;
  text-transform: uppercase;
}
.footer .call a {
   font-size: 11px;
}
.our_pattners .heading-box h2 {
   font-size: 1.8em;
   margin-bottom: 0;
}
.footer .inner-col .comp {
   font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: #666;
  font-weight: 700;
}
.footer .main-top-footer {
  padding: 10px 0px;
}
.footer .main-top-footer .top-footer h2 {
  color: #ccc;
  font-size: 1.5em;
  font-family: 'Bebas Neue', cursive;
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.footer .main-top-footer .top-footer a {
  color: #888;
  font-size: 11px;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all .7s ease-in-out;
  margin-left: 0px;
  font-weight: bolder;
  font-weight: 400;
}
.footer .connect a {
   font-size: 15px;
   width: 35px;
   height: 35px;
}
.footer .top-footer.float-right {
   float: none !important;
}
.footer .top-footer {
   margin-bottom: 15px;
}
}

/*****Admin*********/
.inner-container {
   padding: 20px 30px;
}
.inner-container .store-logo a {
   text-decoration: none;
   color: #000;
   font-size: 2.5em;
}
.inner-container .reg-box {
   padding: 40px 20px;
   background: #fff;
   box-shadow: 0px 5px 10px 0 rgba(0,0,0,.2);
   margin-top: 100px;
}
.inner-container .main-tablist {
   width: 100%;
   text-align: center;
}
.inner-container .main-tablist ul {
   width: 100%;
}
.inner-container .main-tablist ul li {
   width: 50%;
   padding: 0;
}
.inner-container .main-tablist ul li a {
   text-decoration: none;
   color: #333;
   border-bottom: 1px solid rgba(0,0,0,.2);
   
}
.inner-container .main-tablist ul li a.active {
  border-top: 1px solid rgba(0,0,0,.2);
  border-left: 1px solid rgba(0,0,0,.2);
  border-right: 1px solid rgba(0,0,0,.2);
  border-bottom: none;
}
.inner-container .form-box input{
   border: 1px solid rgba(0,0,0,.2);
   border-radius: 0;
}
.inner-container .innerContent {
   padding: 30px 0 0 0;
}
.inner-container .form-box .reg-btn, .login-btn {
   background: #28a745;
   color: #fff;
   cursor: pointer;
   font-family: 'Poppins', sans-serif;
   /*text-transform: uppercase;*/
   font-size: 12px;
   border-radius: 5px;
}
.inner-container #message {
   text-align: center;
   font-size: 1.5em;
   text-decoration: underline;
   color: #333;
}
.main-tablist ul li a {
   text-transform: uppercase;
   color: #666;
   font-family: 'Poppins', sans-serif;
   font-size: 13px;
}
.innerContent label {
   text-transform: uppercase;
   color: #000;
   font-family: 'Poppins', sans-serif;
   font-size: 10px;
}
.innerContent select {
   font-family: 'Poppins', sans-serif;
   font-size: 12px;
}
/* .innerContent .form-box input[type="submit"] {
   font-family: 'Poppins', sans-serif;
   font-size: 12px;
} */
.inner-container .form-box input::placeholder{
   font-size: 12px;
   font-family: 'Poppins', sans-serif;
 }
@media screen and (max-width:950px){
   .inner-container {
       padding: 10px 0;
   }
   .inner-container .store-logo a {
   font-size: 1.5em;
}
.inner-container .reg-box {
   padding: 20px 15px;
   margin-top: 100px;
   border-radius: 5px;
}
.inner-container .main-tablist ul li a {
font-size: 9px;   
}
.inner-container .form-box input::placeholder{
 font-size: 11px;
 font-family: 'Poppins', sans-serif;
}
.inner-container .form-box label{
 font-size: 9px;
 margin-bottom: 0;
}
}
.logout-btn {
   background: #000;
   color: #fff !important;
   margin: 0 5px;
   border-radius: 5px;
   padding: 7px 22px;
}
.lng_msg {
   margin-bottom: 10px;
   font-size: 1.5em;
   color: #000;
   text-transform: uppercase;
   font-family: 'Poppins', sans-serif;
   font-weight: 900;
}
.admin-body {
   margin-top: 0px;
   padding: 30px 20px;
   background: #f8f8f8;
}
.admin-body .my-tab-box {
   background: #f2f2f2;
   margin-bottom: 20px;
}
.admin-body .my-tab-box ul li a {
   text-decoration: none;
   color: #333;
   font-size: 11px;
   text-transform: uppercase;
   font-family: 'Poppins', sans-serif;
   padding: 10px 25px;
}
.admin-body .my-tab-box ul li a.active {
  background: #fff;
  border-top: 2px solid #b2369d;
}
.admin-body .innerContent {
   background: #fff;
   border: 1px solid rgba(0,0,0,.1);
   box-shadow: 0px 5px 5px 0px rgba(0,0,0,.2);
   border-radius: 8px;
   width: 100%;
   height: 80vh;
   overflow: auto;
   padding: 20px 20px;
   overflow: auto;
   scrollbar-color: rgba(0, 0, 0,.1) #f6f6f6;
   scrollbar-width: thin;
   scroll-behavior: smooth;
}
.admin-body .innerContent::-webkit-scrollbar {
   width: 6px;
   background-color: #ddd;
   } 
   .admin-body .innerContent::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0,.1);
   border-radius: 50px;
   }
   .admin-body .innerContent::-webkit-scrollbar-track {
   -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
   background-color: #ddd;
   border-radius: 50px;
   }
.admin-body .timeline {
   margin-bottom: 30px;
   border-bottom: 1px solid rgba(0,0,0,.2);
   padding: 20px 0;
}
.admin-body .timeline .news-header {
   margin-bottom: 10px;
   font-size: 11px;
   color: #000;
   text-transform: uppercase;
   font-family: 'Poppins', sans-serif;
   font-weight: 800;
   margin-top: 10px;
}
.tab-pane.active h2 {
   margin-bottom: 10px;
   font-size: 13px;
   color: #000;
   text-transform: uppercase;
   font-family: 'Poppins', sans-serif;
   font-weight: 800;
   margin-top: 10px;
}
.admin-body .timeline .main-news-body {
   color: #666;
   font-size: 12px;
   font-family: 'Poppins', sans-serif;
   line-height: 20px;
   margin-bottom: 10px;
}
.admin-body .timeline p {
   color: #666;
   font-size: 12px;
   font-family: 'Poppins', sans-serif;
   line-height: 20px;
   margin-bottom: 10px;
}
.admin-body .timeline .author {
   text-transform: uppercase;
   font-family: 'Poppins', sans-serif;
   margin-bottom: 0;
   font-size: 11px;
   color: #777;
}
.admin-body .timeline .time {
   text-transform: uppercase;
   font-family: 'Poppins', sans-serif;
   margin-bottom: 0;
   font-size: 11px;
   color: #777;
}
.admin-body strong, b {
   color: #333;
}
.admin-body .timeline .delete-news {
   color: #dc3545;
   /* margin-top: 6px; */
   cursor: pointer;
   /* background: #f00; */
      border-radius: 5px;
}
.admin-body .timeline .delete-program {
   color: #dc3545;
   /* margin-top: 6px; */
   cursor: pointer;
   /* background: #f00; */
      border-radius: 5px;
}
.admin-body .timeline .delete-radio {
   color: #dc3545;
   /* margin-top: 6px; */
   cursor: pointer;
   /* background: #f00; */
      border-radius: 5px;
}
.admin-body  .delete-user-btn {
   color: #dc3545;
   /* margin-top: 6px; */
   cursor: pointer;
   /* background: #f00; */
      border-radius: 5px;
}
 p.delete-gallery-btn {
   color: #dc3545;
   /* margin-top: 6px; */
   cursor: pointer;
   /* background: #f00; */
      border-radius: 5px;
}

.admin-body .timeline .edit-btn {
   color: #333;
   font-family: 'Poppins', sans-serif;
   cursor: pointer;
   /* background: #333; */
   border-radius: 5px;
}
.admin-body  .edit-user-btn {
   color: #333;
   font-family: 'Poppins', sans-serif;
   cursor: pointer;
   /* background: #333; */
   border-radius: 5px;
}
.admin-body .timeline .edit-program-btn {
   color: #333;
   font-family: 'Poppins', sans-serif;
   cursor: pointer;
   /* background: #333; */
   border-radius: 5px;
}
.admin-body .inner-tab-box ul li a {
   color: #555;
   font-family: 'Poppins', sans-serif;
   cursor: pointer;
   text-decoration: none;
   padding: 0;
   margin-right: 20px;
   text-transform: uppercase;
   font-size: 12px;
}
.admin-body .inner-tab-box ul li a.active {
   color: #b2369d;
}
.admin-body .inner-tab-box ul li a.active::after {
   content: " ";
   width: 30px;
   height: 2px;
   background: #b2369d;
   display: block;
   margin: 0;
}
.admin-body .innerContent .post-news {
   background: #28a745;
   color: #fff;
   /* text-transform: uppercase; */
   font-family: 'Poppins', sans-serif;
   border-radius: 5px;
   font-size: 13px;
}
.admin-body .innerContent .post-radio {
   background: #28a745;
   color: #fff;
   /* text-transform: uppercase; */
   font-family: 'Poppins', sans-serif;
   border-radius: 5px;
   font-size: 13px;
}
.admin-body .innerContent .post-gallery {
   background: #28a745;
   color: #fff;
   /* text-transform: uppercase; */
   font-family: 'Poppins', sans-serif;
   border-radius: 5px;
   font-size: 13px;
}
.admin-body .innerContent .reg-btn {
   background: #28a745;
   color: #fff;
   /* text-transform: uppercase; */
   font-family: 'Poppins', sans-serif;
   border-radius: 5px;
   font-size: 13px;
}
.admin-body .innerContent .post-program {
   background: #28a745;
   color: #fff;
   /* text-transform: uppercase; */
   font-family: 'Poppins', sans-serif;
   border-radius: 5px;
   font-size: 13px;
}
.admin-body .innerContent .post-submit {
   background: #28a745;
   color: #fff;
   /* text-transform: uppercase; */
   font-family: 'Poppins', sans-serif;
   border-radius: 5px;
   font-size: 13px;
   /* font-weight: 800; */
}
.admin-body input {
   border-radius: 0;
   font-family: 'Poppins', sans-serif;
}
.admin-body textarea {
   border-radius: 0;
   font-family: 'Poppins', sans-serif;
}
.admin-body input::placeholder {
   color: #999;
   font-size: 12px;
   font-family: 'Poppins', sans-serif;
}
.admin-body textarea::placeholder {
   color: #999;
   font-size: 12px;
   font-family: 'Poppins', sans-serif;
}
.admin-body .table-responsive .table thead th {
   font-size: 9px;
   font-family: 'Poppins', sans-serif;
   text-transform: uppercase;
   font-weight: 400;
}
.admin-body .table-responsive .table tbody td {
   font-size: 12px;
   font-family: 'Poppins', sans-serif;
   font-weight: 400;
}
.admin-body td.d-flex button {
   margin: 0 3px;
}
@media screen and (max-width:950px){
   .navbar .navbar-brand img {
      width: 100px;
      height: auto;
   }
   .admin-body .nav-mobile-role {
   display: flex !important;
  background: #f2f2f2;
   margin: 0px;
       margin-top: 0px;
   flex-wrap: nowrap !important;
   overflow-y: hidden;
   overflow-x: auto;
   white-space: nowrap;
   margin-top: 3px;
}
.admin-body {
   margin-top: 0px;
   padding: 10px 20px;
   background: #f8f8f8;
}
.admin-body .my-tab-box {
   background: #f2f2f2;
   margin-bottom: 0px;
   position: fixed;
   bottom: 0;
   left: 0;
   width: 100%;
   height: auto;
   z-index: 9999999;
}
.admin-body .my-tab-box ul li a {
   font-size: 11px;
   padding: 10px 15px;
}
.admin-body .innerContent {
   border-radius: 5px;
   padding: 10px 15px;
}
.admin-body .timeline {
   margin-bottom: 10px;
   border-bottom: 1px solid rgba(0,0,0,.2);
   padding: 10px 0;
}
.admin-body .timeline .news-header {
   margin-bottom: 10px;
   font-size: .75em;
   margin-top: 10px;
   font-family: 'Poppins', sans-serif;
}
.admin-body .timeline .main-news-body {
   color: #666;
   font-size: 13px;
   font-family: 'Poppins', sans-serif;
   line-height: 25px;
   margin-bottom: 10px;
}
.admin-body .timeline .edit-btn {
border-radius: 0;
font-size: 13px;
margin-bottom: 0;
}
.admin-body .timeline .delete-news {
  border-radius: 0;
font-size: 13px;
margin-bottom: 0;
}
}
#editNews label {
   color: #666;
   font-size: 10px;
   font-family: 'Poppins', sans-serif;
   text-transform: uppercase;
}
#editNews input {
   color: #666;
   font-size: 13px;
   font-family: 'Poppins', sans-serif;
   border-radius: 0;
}
#editNews textarea {
   color: #666;
   font-size: 13px;
   font-family: 'Poppins', sans-serif;
   border-radius: 0;
}
#editNews .update-btn {
   background: #28a745;
   color: #fff;
   /* text-transform: uppercase; */
   font-family: 'Poppins', sans-serif;
   border-radius: 5px;
   font-size: 13px;
}
#editNews .modal-title {
    color: #333;
   text-transform: uppercase;
   font-family: 'Poppins', sans-serif;
   font-size: 1.5em;
   font-weight: 800;
}



#editPhotoModal label {
   color: #666;
   font-size: 10px;
   font-family: 'Poppins', sans-serif;
   text-transform: uppercase;
}
#editPhotoModal input {
   color: #666;
   font-size: 13px;
   font-family: 'Poppins', sans-serif;
   border-radius: 0;
}
#editPhotoModal textarea {
   color: #666;
   font-size: 13px;
   font-family: 'Poppins', sans-serif;
   border-radius: 0;
}
#editPhotoModal .update-photo-btn {
   background: #28a745;
   color: #fff;
   /* text-transform: uppercase; */
   font-family: 'Poppins', sans-serif;
   border-radius: 5px;
   font-size: 13px;
}
#editPhotoModal .modal-title {
    color: #333;
   text-transform: uppercase;
   font-family: 'Poppins', sans-serif;
   font-size: 1.5em;
   font-weight: 800;
}


#editGallery label {
   color: #666;
   font-size: 10px;
   font-family: 'Poppins', sans-serif;
   text-transform: uppercase;
}
#editGallery input {
   color: #666;
   font-size: 13px;
   font-family: 'Poppins', sans-serif;
   border-radius: 0;
}
#editGallery textarea {
   color: #666;
   font-size: 13px;
   font-family: 'Poppins', sans-serif;
   border-radius: 0;
}
#editGallery .update-photo-btn {
   background: #333;
   color: #fff;
   text-transform: uppercase;
   font-family: 'Poppins', sans-serif;
   border-radius: 5px;
   border: none;
}
#editGallery .modal-title {
    color: #333;
   text-transform: uppercase;
   font-family: 'Poppins', sans-serif;
   font-size: 1.5em
}
.admin-body .fa-trash {
   color: #dc3545;
}
.post-gallery {
   background: #333;
   color: #fff;
   /*text-transform: uppercase;*/
   font-family: 'Poppins', sans-serif !important;
   border-radius: 5px !important;
   border: none;
}
#editUser label {
   color: #666;
   font-size: 10px;
   font-family: 'Poppins', sans-serif;
   text-transform: uppercase;
}
#editUser input {
   color: #666;
   font-size: 13px;
   font-family: 'Poppins', sans-serif;
   border-radius: 0;
}
#editUser textarea {
   color: #666;
   font-size: 13px;
   font-family: 'Poppins', sans-serif;
   border-radius: 0;
}
#editUser .update-user-btn {
   background: #28a745;
   color: #fff;
   /* text-transform: uppercase; */
   font-family: 'Poppins', sans-serif;
   border-radius: 2px;
   font-size: 13px;
   cursor: pointer;
   border: none;
}
#editUser .modal-title {
    color: #333;
   text-transform: uppercase;
   font-family: 'Poppins', sans-serif;
   font-size: 1.5em;
   font-weight: 800;
}
.reg-btn {
   background: #333;
   color: #fff;
   /* text-transform: uppercase; */
   font-family: 'Poppins', sans-serif !important; 
   border-radius: 3px !important;
   cursor: pointer;
   border: none;
   padding: 7px 22px !important;
}

#editProgram label {
   color: #666;
   font-size: 10px;
   font-family: 'Poppins', sans-serif;
   text-transform: uppercase;
}
#editProgram input {
   color: #666;
   font-size: 13px;
   font-family: 'Poppins', sans-serif;
   border-radius: 0;
}
#editProgram textarea {
   color: #666;
   font-size: 13px;
   font-family: 'Poppins', sans-serif;
   border-radius: 0;
}
#editProgram .update-program-btn {
   background: #28a745;
   color: #fff;
   /* text-transform: uppercase; */
   font-family: 'Poppins', sans-serif;
   border-radius: 5px;
   font-size: 13px;

}
#editProgram .modal-title {
    color: #333;
   text-transform: uppercase;
   font-family: 'Poppins', sans-serif;
   font-size: 1.5em;
   font-weight: 800;
}

#editRadioModal label {
   color: #666;
   font-size: 10px;
   font-family: 'Poppins', sans-serif;
   text-transform: uppercase;
}
#editRadioModal input {
   color: #666;
   font-size: 13px;
   font-family: 'Poppins', sans-serif;
   border-radius: 0;
}
#editRadioModal textarea {
   color: #666;
   font-size: 13px;
   font-family: 'Poppins', sans-serif;
   border-radius: 0;
}
#editRadioModal .update-radio-btn {
   background: #28a745;
   color: #fff;
   /* text-transform: uppercase; */
   font-family: 'Poppins', sans-serif;
   border-radius: 5px;
   font-size: 13px;

}
#editRadioModal .modal-title {
    color: #333;
   text-transform: uppercase;
   font-family: 'Poppins', sans-serif;
   font-size: 1.5em;
   font-weight: 800;
}


/***********newx and events***********/
.news-container {
   padding: 10px 100px !important;
}
.news-container .news-box {
   background: #fff;
   border-top: 1px solid rgba(0, 0, 0, 0.1);
   padding: 10px 0;
   margin-bottom: 30px;
}
.news-container .news-box .text-box {
   padding: 10px 0px;
   padding-top: 0;
}
.news-container .news-box .img-box {
   padding: 10px;
   border: 1px solid rgba(0,0,0,.1);
}
.news-container .news-box .img-box .img {
   width: 100%;
   height: 300px;
   background-position: center center;
   background-repeat: no-repeat;
   background-size: cover;
}
.news-container   a {
   text-decoration: none !important;
}
.news-container .news-box .text-box span.category{
   margin-bottom: 30px;
   font-size: 11px;
   color: #999;
   font-family: 'Poppins', sans-serif;
   text-transform: uppercase;
}
.news-container .news-box .text-box h2{
   font-size: 12px;
   color: #000;
   font-family: 'Poppins', sans-serif;
   text-transform: uppercase;
   font-weight: 700;
   letter-spacing: 1px;
   margin-bottom: 10px;
}
.news-container .news-box .text-box p.para{
   /* margin-bottom: 10px;
   padding-bottom: 10px; */
   font-size: 12px;
   color: #aeaeae;
   font-family: 'Poppins', sans-serif;
   line-height: 20px;
   /*border-bottom: 1px solid rgba(0,0,0,.1)*/
}
.news-container .news-box .text-box .author{
   font-size: 11px;
   color: #666;
   font-family: 'Poppins', sans-serif;
   text-transform: uppercase;
}
.news-container .news-box .text-box .date{
   font-size: 11px;
   color: #666;
   font-family: 'Poppins', sans-serif;
   float: right;
   margin-top: 5px;
}
.news-container .news-box .text-box p{
   /* margin-bottom: 30px; */
   font-size: 12px;
   color: #555;
   font-family: 'Poppins', sans-serif;
}
.news-hero {
   margin-top: 50px;
   padding: 10px 100px !important;
}
.news-hero .heading h2 {
   color: #000;
   font-size: 6em;
   font-family: 'Bebas Neue', cursive;
   /* text-transform: uppercase; */
   font-weight: 900;
   line-height: 80px;
   margin-bottom: 30px;
}
.news-hero .heading p {
   color: #888;
   font-size: 14px;
   font-family: 'Poppins', sans-serif;
}
.news-container .my-tab-box {
   /* margin-top: 50px; */
   padding: 30px 0;
}
.news-container .my-tab-box a {
   color: #888;
   font-size: 14px;
   font-family: 'Poppins', sans-serif;
   text-decoration: none;
   letter-spacing: 1px;
   padding: 0;
   margin-right: 20px;
} 
.news-container .my-tab-box a.active {
   color: #b2369d;
} 
.news-container .my-tab-box a.active::after {
   content: " ";
   width: 30px;
   height: 2px;
   background: #b2369d;
   display: block;
   margin: 0;
} 
.more_content {
   margin-top: 100px;
}
.more_content .heading h4 {
   color: #b2369d;
   font-family: 'Poppins', sans-serif;
   text-transform: uppercase;
   font-weight: 900;
   font-size: 12px;
   letter-spacing: 1px;
}
.more_content .heading .title {
   color: #333;
   font-family: 'Poppins', sans-serif;
   text-transform: capitalize;
   font-weight: 900;
   font-size: 2.5em;
   letter-spacing: 1px;
}
.more_content .heading .title::after {
   /* content: " ";
   width: 100px;
   height: 2px;
   background: #b2369d;
   display: block;
   margin-top: 10px;
   margin-bottom: 10px; */
}
.more_content .heading .author {
   color: #333;
   font-family: 'Poppins', sans-serif;
   text-transform: uppercase;
   font-weight: 600;
   font-size: 11px;
   letter-spacing: .5px;
   /* margin-bottom: 0; */
}
.more_content .heading .date {
   color: #aeaeae;
   font-family: 'Poppins', sans-serif;
   font-size: 12px;
}
.more_content-body .img-box {
   padding: 20px;
   border: 1px solid rgba(0,0,0,.2);
   margin-top: 20px;
}
.more_content-body .text-wrap {
   padding: 20px 0;
}
.more_content-body .text-wrap p {
   font-size: 17px;
font-family: DomaineDisplay,Georgia,serif;
color: #000;
line-height: 30px;
}
.more_content-body .text-wrap h1 {
   font-size: 25px;
font-family: DomaineDisplay,Georgia,serif;
color: #000;
line-height: 25px;
font-weight:bold;
}
.more_content-body .text-wrap h2 {
   font-size: 22px;
font-family: DomaineDisplay,Georgia,serif;
color: #000;
line-height: 25px;
font-weight:bold;
}
.more_content-body .text-wrap h3 {
   font-size: 19px;
font-family: DomaineDisplay,Georgia,serif;
color: #000;
line-height: 25px;
font-weight:bold;
}
.more_content-body .social-icons .views {
   font-size: 15px;
  font-family: DomaineDisplay,Georgia,serif;
  font-weight: bolder;
  color: #222;
}
.more_content-body .social-icons .views b {
   color: #aeaeae;
}
.more_content-body .social-icons .social-menu a{
   color: #111;
   text-decoration: none;
   border: 1px solid #000;
   border-radius: 50%;
   position: relative;
   width: 45px;
   height: 45px;
   margin: 5px 7px;
}
.more_content-body .social-icons .social-menu a i{
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   font-size: 20px;
}
@media screen and (max-width:950px){
   .news-hero {
      margin-top: 20px;
      padding: 10px 20px !important;
   }
   .news-hero .heading h2 {
      font-size: 3em;
      margin-bottom: 0;
      line-height: 1;
  }
  .news-container {
   padding: 0px 20px !important;
}
.news-container .my-tab-box {
   margin-top: 0px;
   margin-bottom: 10px;
   padding: 0px 0;
}
.news-container .news-box .img-box .img {
   width: 100%;
   height: 250px;
}
.news-container .news-box .text-box {
   padding: 10px 0px;
}
.news-container .news-box {
   border-top: none;
   padding: 10px 0;
   margin-bottom: 0px;
}
.news-container .news-box .text-box h2 {
   margin-bottom: 10px;
}
.news-container .news-box .text-box p.para {
   margin-bottom: 0px;
}
.news-container .news-box .text-box p {
   margin-bottom: 10px;
   font-size: 11px;
   color: #333;
   font-family: 'Poppins', sans-serif;
}
   .more_content {
       margin-top: 20px;
   }
  
   .more_content .heading .title {
       font-size: 1.1em;
       letter-spacing: 1px;
       line-height: 25px;
   }
   .more_content .heading .title::after {
       width: 70px;
       margin-top: 10px;
       margin-bottom: 10px;
   }
   .more_content-body .text-wrap p {
       line-height: 25px;
       color: #222;
       font-size: 14px;
   }
    .more_content-body .img-box {
       padding: 10px;
       border: 1px solid rgba(0,0,0,.2);
       margin-top: 10px;
   }
   .more_content-body .social-icons .social-menu a {
      width: 30px;
      height: 30px;
      margin: 0px 2px;
  }
  .more_content-body .social-icons .social-menu a i {
  font-size: 15px;
}
.navbar {
   border-bottom: 1px solid rgba(0,0,0,.1);
   padding: .5rem 0px;
}
}

/*******Contact us **********/
.contact_hero {
   padding: 50px 0;
}
.contact_hero .img_bg {
   width: 100%;
   height: 80vh;
   background: #F8F4F3;
   box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.1);
}
.contact_hero .img_bg .img {
   background-position: center center;
   background-size: cover;
   background-repeat: no-repeat;
   width: 100%;
   height: 100%; 
}
.contact_hero .text-box {
   padding: 10px 80px;
}
.contact_hero .text-box h2{
   color: #000;
   font-family: 'Bebas Neue', cursive;
   font-size: 4.5em;
   text-transform: uppercase;
}
.contact_hero .text-box p{
   color: #666;
   font-family: 'Poppins', sans-serif;
   font-size: 12px;
   font-weight: 400;
   /* padding: 10px 50px; */
}
.contact_hero .contact_info_box {
   padding: 30px 30px;
   background: #E7D9D5;
   margin-top: 50px;
   margin-left: -30px;
}
.contact_hero .contact_info_box p {
   color: #555454;
   font-family: 'Poppins', sans-serif;
   font-size: 13px;
   font-weight: 400;
}
.contact_hero .contact_info_box p a{
   color: #555454;
   text-decoration: none;
}
.contact_hero .contact_info_box .contact_social_pack a {
   color: #555454;
   text-decoration: none;
   margin-right: 40px;
   font-size: 20px;
}
.contact_box {
   padding: 50px 0;
}
.contact_box .form-box {

}
.contact_box .form-box h2 {
   color: #000;
   font-family: 'Bebas Neue', cursive;
   font-size: 3em;
   text-transform: capitalize;
   margin-bottom: 30px;
}
.contact_box .form-box .form_input {
   border: 1px solid rgba(0, 0, 0, 0.2);
   border-radius: 0;
   padding: 30px 20px;
   font-family: 'Poppins', sans-serif;
}
.contact_box .form-box .form_input::placeholder {
font-family: 'Poppins', sans-serif;
font-size: 13px;
}
.contact_box .form-box .form_text {
   border: 1px solid rgba(0, 0, 0,.2);
   border-radius: 0;
   padding: 10px 20px;
   font-family: 'Poppins', sans-serif;
}
.contact_box .form-box .form_text::placeholder {
   font-family: 'Poppins', sans-serif;
  }
.contact_box .form-box .submit_btn {
   background: #000;
   color: #fff;
   font-family: 'Poppins', sans-serif;
   font-weight: 600;
   text-transform: uppercase;
   font-size: 15px;
   padding: 10px 50px;
   border-radius: 0;
   transition: all .5s ease-in-out;
   border: 2px solid #000;
}
.contact_box .form-box .submit_btn:hover {
   background: #fff;
   color: #b2369d;
}
@media screen and (max-width:950px){
   .contact_hero {
      padding: 0px 0;
  }
  .contact_box .form-box {
     margin-top: 30px;
  }
   .top_nav .contact_nav .toggle-btn {
      margin-top: 15px;
  }
  .top_hero_nav.contact_nav {
      padding-bottom: 0px;
  }
  .contact_hero .img_bg {
      width: 100%;
      height: 50vh;
  }
  .contact_hero .text-box {
      padding: 30px 0px;
  }
  .contact_hero .text-box h2 {
      font-size: 2em;
      margin-bottom: 0;
  }
  .contact_hero .contact_info_box {
      padding: 30px 20px;
      background: #E7D9D5;
      margin-top: 0px;
      margin-left: 0px;
  }
  .contact_box {
      padding: 20px 0;
  }
  .contact_box .form-box h2 {
      font-size: 2em;
      margin-bottom: 10px;
  }
  .contact_box .form-box .form_input {
      padding: 25px 10px;
  }
  .contact_box .form-box .form_text {
      padding: 10px 10px;
  }
  .contact_box .form-box .form_text::placeholder {
     font-size: 13px;
  }
}

/**********About Page***********/
.about_hero {
   width: 100%;
   height: 60vh;
   background-image: linear-gradient(to left, rgba(178, 54, 157,.2), rgba(178,54,157,.2)), url('../img/1.jpeg');
   background-position: center center;
   background-size: cover;
   background-repeat: no-repeat;
   position: relative;
   margin-bottom: 40px;
}
.about_hero .about_hero_text {
   width: 70%;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   text-align: center;
  
}
.about_hero .about_hero_text h2{
   color: #fff;
   font-family: 'Bebas Neue', cursive;
   font-size: 5em;
   text-transform: capitalize;
}
.about_text_body {
   padding: 10px 0px;
}
.about_text_body p {
   font-family: 'Poppins', sans-serif;
   font-weight: 400;
   color: #333;
   line-height: 30px;
   font-size: 14px;
   /* margin-bottom: 0; */
}
.about_text_body h2 {
   font-family: 'Poppins', sans-serif;
   font-weight: 600;
   color: #000;
   font-size: 15px;
   margin-bottom: 0;
   text-transform: uppercase;
}
@media screen and (max-width:950px){
   .about_text_body p {
      line-height: 25px;
      font-size: 12px;
   }
   .about_text_body {
      padding: 5px 0px;
   }
   .about_hero .about_hero_text h2{
      color: #fff;
      font-family: 'Bebas Neue', cursive;
      font-size: 4em;
      text-transform: capitalize;
   }
   .about_hero {
      width: 100%;
      height: 50vh;
      margin-bottom: 30px;
   }
}

#delete_news .modal-title {
   font-family: 'Poppins', sans-serif;
   font-size: 1.1em;
   color: #000;
   font-weight: 800;
}
#delete_news .box p{
   font-family: 'Poppins', sans-serif;
   /* margin-bottom: 0; */
   font-weight: 400;
   font-size: 12px;
}
#delete_news .delete_action_btn {
   background: #000;
   color: #fff !important;
   text-transform: uppercase;
   font-weight: 600;
   font-size: 12px;
   padding: 7px 15px;
   border-radius: 0;
}
#delete_news .close_btn {
   background: transparent;
   color: #000;
   border: 2px solid #000;
   text-transform: uppercase;
   font-weight: 600;
   font-size: 12px;
   padding: 7px 15px;
   border-radius: 0;
}


#delete_gallery_image .modal-title {
   font-family: 'Poppins', sans-serif;
   font-size: 1.1em;
   color: #000;
   font-weight: 800;
}
#delete_gallery_image .box p{
   font-family: 'Poppins', sans-serif;
   /* margin-bottom: 0; */
   font-weight: 400;
   font-size: 12px;
}
#delete_gallery_image .delete_action_btn {
   background: #000;
   color: #fff !important;
   text-transform: uppercase;
   font-weight: 600;
   font-size: 12px;
   padding: 7px 15px;
   border-radius: 0;
}
#delete_gallery_image .close_btn {
   background: transparent;
   color: #000;
   border: 2px solid #000;
   text-transform: uppercase;
   font-weight: 600;
   font-size: 12px;
   padding: 7px 15px;
   border-radius: 0;
}



#delete_program .modal-title {
   font-family: 'Poppins', sans-serif;
   font-size: 1.1em;
   color: #000;
   font-weight: 800;
}
#delete_program .box p{
   font-family: 'Poppins', sans-serif;
   /* margin-bottom: 0; */
   font-weight: 400;
   font-size: 12px;
}
#delete_program .delete_action_btn {
   background: #000;
   color: #fff !important;
   text-transform: uppercase;
   font-weight: 600;
   font-size: 12px;
   padding: 7px 15px;
   border-radius: 0;
}
#delete_program .close_btn {
   background: transparent;
   color: #000;
   border: 2px solid #000;
   text-transform: uppercase;
   font-weight: 600;
   font-size: 12px;
   padding: 7px 15px;
   border-radius: 0;
}

#delete_radio .modal-title {
   font-family: 'Poppins', sans-serif;
   font-size: 1.1em;
   color: #000;
   font-weight: 800;
}
#delete_radio .box p{
   font-family: 'Poppins', sans-serif;
   /* margin-bottom: 0; */
   font-weight: 400;
   font-size: 12px;
}
#delete_radio .delete_action_btn {
   background: #000;
   color: #fff !important;
   text-transform: uppercase;
   font-weight: 600;
   font-size: 12px;
   padding: 7px 15px;
   border-radius: 0;
}
#delete_radio .close_btn {
   background: transparent;
   color: #000;
   border: 2px solid #000;
   text-transform: uppercase;
   font-weight: 600;
   font-size: 12px;
   padding: 7px 15px;
   border-radius: 0;
}


#delete_user .modal-title {
   font-family: 'Poppins', sans-serif;
   font-size: 1.1em;
   color: #000;
   font-weight: 800;
}
#delete_user .box p{
   font-family: 'Poppins', sans-serif;
   /* margin-bottom: 0; */
   font-weight: 400;
   font-size: 12px;
}
#delete_user .delete_action_btn {
   background: #000;
   color: #fff !important;
   text-transform: uppercase;
   font-weight: 600;
   font-size: 12px;
   padding: 7px 15px;
   border-radius: 0;
}
#delete_user .close_btn {
   background: transparent;
   color: #000;
   border: 2px solid #000;
   text-transform: uppercase;
   font-weight: 600;
   font-size: 12px;
   padding: 7px 15px;
   border-radius: 0;
}

#delete_comment .modal-title {
   font-family: 'Poppins', sans-serif;
   font-size: 1.1em;
   color: #000;
   font-weight: 800;
}
#delete_comment .box p{
   font-family: 'Poppins', sans-serif;
   /* margin-bottom: 0; */
   font-weight: 400;
   font-size: 12px;
}
#delete_comment .delete_action_btn {
   background: #000;
   color: #fff !important;
   text-transform: uppercase;
   font-weight: 600;
   font-size: 12px;
   padding: 7px 15px;
   border-radius: 0;
}
#delete_comment .close_btn {
   background: transparent;
   color: #000;
   border: 2px solid #000;
   text-transform: uppercase;
   font-weight: 600;
   font-size: 12px;
   padding: 7px 15px;
   border-radius: 0;
}

.main-news .img_wrap {
   width: 100%;
   height: 250px;
   background-position: center center;
   background-size: cover;
   background-repeat: no-repeat;
 }
 .main-news .box {
   box-shadow: 0px 5px 5px 0 rgba(0,0,0,.15);
   border: 1px solid rgba(0,0,0,.1);
   border-radius: 10px;
   padding: 15px;
   margin-bottom: 20px;
   margin-top: 0px ;
 }
 .main-news .box p.btn  {
   margin-bottom: 0px
 }
 .tab-pane .box {
   box-shadow: 0px 5px 5px 0 rgba(0,0,0,.15);
   border: 1px solid rgba(0,0,0,.1);
   border-radius: 10px;
   padding: 15px;
   margin-top: 20px
 }
 iframe {
   display: block;
   width: 100%;
   height: 100%;
 }

 .alert {
   display: none;
   box-shadow: 0px 10px 10px 0px rgba(0,0,0,.15);
   }
   .alert p {
       margin-bottom: 0;
       font-family: 'Poppins', sans-serif;
       text-transform: capitalize;
   }
   .alert-container {
     position: absolute;
     top: 20%;
     left: 50%;
     transform: translate(-50%, -50%);
     z-index: 9999;
   }
   .loader {
       position: fixed;
       width: 100%;
       height: 100%;
       background: rgba(0,0,0,.8);
       display: none;
       z-index: 99999999;
     }
     .loader .load {
       position:absolute;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
     }
     .inner_loader {
       position: relative;
       width: 100%;
       height: 80vh;
       background: rgba(255,255,255,.8);
       display: none;
     }
     .inner_loader .load {
       position:absolute;
       top: 40%;
       left: 50%;
       transform: translate(-50%, -50%);
     }
     .gallery_img_box .box {
      width: 100%;
      height: 120px;
     padding: 6px;
      margin-bottom: 40px;
      border: 1px solid rgba(0,0,0,.1);
    }
    .gallery_img_box .box .img {
      width: 100%;
      height: 100%;
      background-position: center center;
      background-repeat: no-repeat;
      background-size: cover;
    }
    .gallery_img_box .remove_img {
       font-family: 'Poppins', sans-serif;
       color: #dc3545;
       font-size: 12px;
       margin-top: 10px;
       cursor: pointer;
    }
   @media screen and (max-width:950px){
      .tab-pane .box {
         padding: 8px;
         margin-top: 10px;
         border-radius: 5px;
      }
      .main-news .img_wrap {
         width: 100%;
         height: 170px;
       }
       .admin-body .inner-tab-box ul li a {
         padding: 10px 5px;
         font-size: 11px;
       }
       .gallery_img_box .box {
         width: 100%;
         height: 100px;
         margin-bottom: 30px;
       }
       .modal-title {
          font-size: 1em !important;
       }
   }
   
   
      .gallery-container  .image-wrap {
      width: 100%;
      height: 300px;
      padding: 10px;
      border: 1px solid rgba(0,0,0,.1);
  }
 .gallery-container .image-wrap .img_wrap {
      width: 100%;
      height: 100%;
      background-position: center center;
      background-repeat: no-repeat;
      background-size: cover;
  }
.gallery-container  .thumbnail-box {
      cursor: pointer;
  }
  .gallery-container  .thumbnail-box .box {
     margin-bottom: 25px;
  }
  .gallery-container .news-header {
      font-family: 'Poppins', sans-serif;
      color: #000;
      font-weight: 800;
      text-transform: uppercase;
      font-size: 11px;
      margin-top: 10px;
      line-height: 20px;
  }
.show_gallery {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 999999;
      background-color: rgba(0,0,0,.95);
  }
.show_gallery .item_carousel {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 70%;
      height: 80vh;
      /* border: 10px solid #fff;
      background-color: #fff; */
  }
.show_gallery .close-btn {
      position: absolute;
      top: 5%;
      right: 2%;
      background: #333;
      cursor: pointer;
      width: 40px;
      height: 40px;
      border-radius: 50%;
  }
.show_gallery .close-btn i{
  font-size: 20px;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  }
  #gallery_control .image_wrapper {
  width: 100%;
  height: 80vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
#gallery_control  .left-chevron {
  position: absolute;
  top: 50%;
  left: 1%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #333;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0,.4);
}
#gallery_control   .left-chevron .left{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
  font-size: 15px;
  color: #fff;
}
#gallery_control   .right-chevron  {
  position: absolute;
  top: 50%;
  right: 1%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #333;
  box-shadow: 0 0px 10px 0 rgba(0, 0, 0,.4);
}
#gallery_control  .right-chevron .right{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
  font-size: 15px;
  color: #fff;
}

.gallery-container .news-live{
  margin-bottom: 50px;
}
.gallery-container .news-live .thumbnail-box  {
  margin-bottom: 100px;
}
.gallery-container .news-live .thumbnail-box .h5 {
  margin-top: 20px;
  line-height: 20px;
}
.gallery-container .news-live .thumbnail-box .time {
      color: #333;
      font-size: 11px;
      text-transform: uppercase;
      font-family: 'Poppins', sans-serif;
}

@media screen and (max-width:950px){
   .gallery-container .image-wrap {
      width: 100%;
      height: 130px;
      padding: 5px;
    }
    .gallery-container .news-header {
      font-weight: 600;
      margin-top: 6px;
      margin-bottom: 0px;
      line-height: 15px;
    }
    .show_gallery .close-btn {
      top: 2%;
      width: 30px;
      height: 30px;
    }
    .show_gallery .close-btn i {
      font-size: 15px;
    }
    .show_gallery .item_carousel {
      width: 90%;
      height: 40vh;
    }
    #gallery_control .image_wrapper {
      width: 100%;
      height: 40vh;
    }
    #gallery_control .left-chevron {
      width: 30px;
      height: 30px;
    }
    #gallery_control .right-chevron {
      width: 30px;
      height: 30px;
    }
     #delete_comment .modal-title {
        font-family: 'Poppins', sans-serif;
        font-size: 1.1em;
        color: #000;
        font-weight: 800;
     }
     #delete_comment .box p{
        font-family: 'Poppins', sans-serif;
        /* margin-bottom: 0; */
        font-weight: 400;
        font-size: 12px;
     }
     
     #delete_comment .delete_action_btn {
        background: #000;
        color: #fff !important;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 12px;
        padding: 7px 15px;
        border-radius: 0;
     }
     #delete_comment .close_btn {
        background: transparent;
        color: #000;
        border: 2px solid #000;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 12px;
        padding: 7px 15px;
        border-radius: 0;
     }
    .gallery-container .news-live .thumbnail-box .h5 {
      margin-top: 10px;
      line-height: 15px;
    }
    .gallery-container .news-live .image-wrap {
      height: 200px;
    }
    .gallery-container .news-live .thumbnail-box {
      margin-bottom: 80px;
    }
}

 .ult_loader {
        position: relative;
        padding: 100px 0;
        background-color: rgba(255,255,255,.9);
        display: block;
    }
   .ult_loader .lds-ripple {
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 49%;
        transform: translate(-50%, -50%);
        width: 50px;
        height: 50px;
      }
     .ult_loader .lds-ripple div {
        position: absolute;
        border: 4px solid #002e5b;
        /* background: #376899; */
        opacity: 1;
        border-radius: 50%;
        animation: lds-ripple 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
      }
     .ult_loader .loader-text p{
        font-family: 'Poppins', sans-serif;
        font-size: 10px;
        text-align: center;
        color: #aeaeae;
        margin-bottom: 0;
      }
     .ult_loader .loader-text {
        position: absolute;
        width: 100%;
        height: auto;
        top: 75%;
        left: 51%;
        transform: translate(-50%, -50%);
      }
      .lds-ripple div:nth-child(2) {
        animation-delay: -0.5s;
      }
      @keyframes lds-ripple {
        0% {
          top: 36px;
          left: 36px;
          width: 0;
          height: 0;
          opacity: 0;
        }
        4.9% {
          top: 36px;
          left: 36px;
          width: 0;
          height: 0;
          opacity: 0;
        }
        5% {
          top: 36px;
          left: 36px;
          width: 0;
          height: 0;
          opacity: 1;
        }
        100% {
          top: 0px;
          left: 0px;
          width: 72px;
          height: 72px;
          opacity: 0;
        }
      }
      @media screen and (max-width:950px){
          .ult_loader .loader-text {
        left: 52%;
      }
      }
      
       .alt_loader {
        position: fixed;
        width: 100%;
        height: 100%;
        /*padding: 100px 0;*/
        background-color: rgba(255,255,255,.9);
        display: none;
        z-index: 999999999;
    }
    .alt_loader .lds-ripple {
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 49%;
        transform: translate(-50%, -50%);
        width: 50px;
        height: 50px;
      }
     .alt_loader .lds-ripple div {
        position: absolute;
        border: 4px solid #002e5b;
        /* background: #376899; */
        opacity: 1;
        border-radius: 50%;
        animation: lds-ripple 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
      }
     .alt_loader .loader-text p{
        font-family: 'Poppins', sans-serif;
        font-size: 10px;
        text-align: center;
        color: #aeaeae;
        margin-bottom: 0;
      }
     .alt_loader .loader-text {
        position: absolute;
        width: 100%;
        height: auto;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
      }
      .alt_loader .lds-ripple div:nth-child(2) {
        animation-delay: -0.5s;
      }
      @keyframes lds-ripple {
        0% {
          top: 36px;
          left: 36px;
          width: 0;
          height: 0;
          opacity: 0;
        }
        4.9% {
          top: 36px;
          left: 36px;
          width: 0;
          height: 0;
          opacity: 0;
        }
        5% {
          top: 36px;
          left: 36px;
          width: 0;
          height: 0;
          opacity: 1;
        }
        100% {
          top: 0px;
          left: 0px;
          width: 72px;
          height: 72px;
          opacity: 0;
        }
      }
      
    .comment_btn {
        cursor: pointer;
    }
     .fixed_bg {
        width: 100%;
        height: 100%;
        position: fixed;
        background: rgba(0,0,0,.4);
        z-index: 999;
        display: none;
    }
    .right_action_box {
        width: 35%;
        height: 100vh;
        overflow: auto;
        overflow-x: hidden;
        scrollbar-color: rgba(0,0, 0,.1) #f2f2f2;
        scrollbar-width: thin;
        scroll-behavior: smooth;
        position: fixed;
        background: #fff;
        z-index: 9999;
        top: 0;
        right: -100%;
        transition: all .6s ease-in-out;
        box-shadow: 0 -10px 30px 5px rgba(0, 0, 0,.2);
    }
    .right_action_box::-webkit-scrollbar {
    width: 6px;
    background-color: #f2f2f2;
    } 
    .right_action_box::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0,.1);
    border-radius: 50px;
    }
    .right_action_box::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
    background-color: #f2f2f2;
    border-radius: 50px;
    }
    .right_action_box.active {
        right: 0 !important;
        transition: all .6s ease-in-out;
    }
    .right_action_box .close_btn {
        cursor: pointer;
    }
    .right_action_box .modal_header {
        padding: 15px 15px;
        border-bottom: 1px solid rgba(0,0,0,.1);
    }
    .right_action_box .modal_footer {
        padding: 10px 15px;
        border-top: 1px solid rgba(0,0,0,.1);
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        background: #fff;
    }
    .right_action_box .modal_body {
        padding: 10px 15px;
        /* border-top: 1px solid rgba(0,0,0,.1); */
        position: absolute;
        left: 0;
        top: 70px;
        width: 100%;
        height: 80vh;
        overflow: auto;
        overflow-x: hidden;
        scrollbar-color: rgba(0,0, 0,.1) #f2f2f2;
        scrollbar-width: thin;
        scroll-behavior: smooth;
        /* border: 1px solid #333; */
    }
    .right_action_box .modal_body::-webkit-scrollbar {
    width: 6px;
    background-color: #f2f2f2;
    } 
    .right_action_box .modal_body::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0,.1);
    border-radius: 50px;
    }
    .right_action_box .modal_body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
    background-color: #f2f2f2;
    border-radius: 50px;
    }
    .right_action_box .modal_header h2{
       font-weight: 600;
       font-family: 'Poppins', sans-serif;
       font-size: 1.2em;
       margin-bottom: 0;
    }
    .right_action_box .modal_header i{
       font-size: 1.5em;
    }
    .right_action_box .modal_footer .main_action_btn {
font-family: 'Poppins', sans-serif;
color: #fff;
font-size: 12px;
border: 2px solid #0AD35A;
background: #0AD35A;
    }
    

    .right_action_box .form_box {
        /* padding-bottom: 20px; */
        /* border-bottom: 1px solid rgba(0,0,0,.1); */
    }
    .right_action_box .item_response label{
        font-family: 'Poppins', sans-serif;
        color: #555;
        font-size: 12px;
    }
    .right_action_box .item_response h2{
        font-family: 'Poppins', sans-serif;
        color: #111;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 0;
    }
    .right_action_box .item_response span{
        font-family: 'Poppins', sans-serif;
        color: #aeaeae;
        font-size: 12px;
    }
    .right_action_box .item_response .para {
        margin-top: 20px;
    }
    .right_action_box .item_response .para p{
        font-family: 'Poppins', sans-serif;
        color: #222;
        font-size: 13px;
        line-height: 20px
    }
    .right_action_box .item_response  ul li{
        font-family: 'Poppins', sans-serif;
        color: #222;
        font-size: 13px;
        margin-bottom: 10px;
        /* line-height: 20px */
    }
    .right_action_box .item_response  ol li{
        font-family: 'Poppins', sans-serif;
        color: #222;
        font-size: 13px;
        margin-bottom: 10px;
        /* line-height: 20px */
    }
    .right_action_box .item_response  a{
        font-family: 'Poppins', sans-serif;
        color: #222;
        font-size: 13px;
        line-height: 20px
    }
    .right_action_box .item_response  i{
        font-family: 'Poppins', sans-serif;
        color: #222;
        font-size: 13px;
        line-height: 20px
    }
    .right_action_box .item_response {
        border-bottom: 1px solid rgba(0,0,0,.1);
        padding: 10px 0px;
        margin-bottom: 30px;
        padding: 15px 0;
    }
    .right_action_box .reply_panel {
        border-left: 3px solid #c4c2c2;
        padding: 0px 20px;
        display: none;
        margin-left: 20px;
        margin-top: 10px;
        transition: all .5s ease-in-out;
    }
    .right_action_box .reply_panel input{
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        border-radius: 0;
    }
    .right_action_box .reply_panel input::placeholder {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        color: #666;  
    }
    .right_action_box .reply_panel.reply_panel_active {
        display: block;
        transition: all .5s ease-in-out;
    }
    .right_action_box .rep_btn {
        font-family: 'Poppins', sans-serif;
        color: #222;
        font-size: 14px;
        margin-bottom: 0;
        cursor: pointer;
        transition: all .5s ease-in-out;
    }
    .right_action_box .rep_btn:hover {
        text-decoration: underline;
    }

       .right_action_box .form_box label {
        font-family: 'Poppins', sans-serif;
        color: #333;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
    }
    .right_action_box  .form_box input {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        border-radius: 0;
    }
    .right_action_box .form_box input::placeholder {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        color: #666;  
    }
    .right_action_box .repond_active {
        font-family: 'Poppins', sans-serif;
        color: #fff;
        font-size: 12px;
        border: 2px solid #0AD35A;
        background: #0AD35A;
        border-radius: 5px !important;
    }
    .right_action_box .show_reply_toggle {
        display: none;
    }
    .right_action_box .show_reply_toggle.show_reply_toggle_active {
        display: block;
    }
    .right_action_box .reply_panel textarea {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        border-radius: 0;
    }
    .right_action_box .no_comment {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        font-weight: 600;
    }
   .right_action_box .no_reply {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        font-weight: 600;
    }
    .reply_item_response {
        padding: 0px 20px;
        border-left: 3px solid #c4c2c2;
        margin-left: 20px;
        margin-bottom: 30px;
        margin-top: 10px;
    }
    .reply_item_response h3 {
        color: #222;
        font-size: 13px;
        font-family: 'Poppins', sans-serif;
        margin-bottom: 0;
    }
    .reply_item_response p {
        color: #444;
        font-size: 13px;
        font-family: 'Poppins', sans-serif;
        margin-top: 10px;
        margin-bottom: 0;
    }
    .right_action_box .alert p {
        font-size: 12px;
    }
    .comment_btn {
font-size: 15px;
  font-family: DomaineDisplay,Georgia,serif;
  font-weight: bolder;
}

    @media screen and (max-width:950px){
        .right_action_box {
            width: 100% !important;
            height: 95vh !important;
            top: auto;
            right: 0;
            bottom: -100%;
            box-shadow: 0 -10px 30px 5px rgba(0, 0, 0,.2);
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
        }
        .right_action_box.active {
            bottom: 0 !important;
            transition: all .6s ease-in-out;
            }
            .right_action_box .modal_header h2 {
            font-size: 1em;
            }
            .right_action_box .item_response h2 {
            font-size: 14px;
            }
        .right_action_box .item_response .para p {
        font-size: 12px;
        line-height: 23px;
        }
        .reply_item_response {
        padding: 0px 10px;
        border-left: 2px solid #c4c2c2;
        margin-left: 5px;
        margin-bottom: 20px;
        }
        .reply_item_response p {
        font-size: 12px;
        margin-top: 5px;
        }
        .right_action_box .reply_panel {
        border-left: 2px solid #c4c2c2;
        padding: 0px 10px;
        margin-left: 5px;
        margin-top: 10px;
        }
        .right_action_box .item_response .para {
        margin-top: 10px;
        }
        .right_action_box .rep_btn {
        font-family: 'Poppins', sans-serif;
        color: #222;
        font-size: 13px;
        text-decoration: underline;
        }
        .more_content-body .social-icons .views {
  font-size: 12px;
}
.comment_btn {
font-size: 12px;
}
    }

