/********** 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;
}

body{
	//font-family: 'Nova Cut', cursive;
	font-family: "Saira",sans-serif;
}


.gn_cl{
	color:#0ea59a !important;
}
.rd_cl{
	color:#e92883 !important;
}
.og_cl{
	color:#f7941d !important;
}

.gn_bg{
	background-color:#0ea59a !important;
}
.rd_bg{
	background-color:#e92883 !important;
}
.og_bg{
	background-color:#f7941d !important;
}

/*** 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;
}

div#preloader { 
    position: fixed; 
    left: 0; 
    top: 0; 
    z-index: 99999; 
    width: 100%; 
    height: 100%; 
    overflow: visible; 
    background: #fff url('../img/block.gif') no-repeat center center; 
}


/*** 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;
}

.nwbtn > div{
	width: 28px;
	height: 27px;
	display: inline-block !important;
}
.nwbtn > div svg{
	margin: 2px 2px 0px 0;
}

.drpdun{
	font-size: 23px;
    line-height: .2;
    position: relative;
    top: 3px;
}



/*** Navbar ***/
.genhd{
	position:relative;
	background: rgb(247, 147, 28) !important;
}
.genhd.fixed-top {
	position:fixed !important;
    transition: .5s;
	visibility:visible !important;
}

.genhd.fixed-top > nav.navbar {
	visibility:visible !important;
}

.top-bar {
    height: 45px;
	border-bottom: 1px solid rgba(255, 255, 255, .07);
	background-color: #e82683;
	color: #fff;
	padding: 0 15px;
	position: relative;
	-webkit-border-bottom-right-radius: 40px;
	-webkit-border-bottom-left-radius: 40px;
	-moz-border-radius-bottomright: 40px;
	-moz-border-radius-bottomleft: 40px;
	border-bottom-right-radius: 40px;
	border-bottom-left-radius: 40px;
	background: -webkit-linear-gradient(275deg, #e92883, #0fa69b);
	background: -o-linear-gradient(275deg, #e92883, #0fa69b);
	background: -moz-linear-gradient(275deg, #e92883, #0fa69b);
	background: linear-gradient(275deg, #e92883, #0fa69b);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "FontAwesome";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 10px;
    padding: 31px 15px;
	text-align:center;
    color: #fff; /*#E92883;*/
    font-weight: 500;
    outline: none;
	font-size:18px;
	position:relative;
	-webkit-transition-duration:.3s;
	transition-duration:.3s;
	-webkit-transition-property:transform,opacity;
	transition-property:transform,opacity;
	overflow:hidden;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #fff; /*#F5931D;*/
}

.navbar .navbar-nav .nav-link::before{
	content: "";
	position: absolute;
	width: 100%;
	background: #e92980; /*#f6931d;*/
	height: 32px;
	bottom: -5px;
	left: 0px;
	visibility:hidden;
	-webkit-transition-duration:.3s;
	transition-duration:.3s;
	-webkit-transition-property:transform,opacity;
	transition-property:transform,opacity;
	-webkit-clip-path: polygon(50% 22px, 100.00% 34.04%, 100% 100%, 50% 100%, 0px 100%, 0% 36.63%);
	clip-path: polygon(50% 22px, 100.00% 34.04%, 100% 100%, 50% 100%, 0px 100%, 0% 36.63%);
}


.navbar .navbar-nav .nav-link.active::before{
	visibility:visible;
}

.navbar .navbar-nav .nav-link:hover:before {
	visibility:visible;
	-webkit-transform:translateY(-5px);
	transform:translateY(-5px)
}

.navbar-brand.logo{
	position:relative;
}

.navbar-brand.logo img{
	width: 100%;
	z-index: 9;
}

.dropdown-menu.show{
	transition: .5s;
}

.dntbn{
	background: #0BA095;
	color: #fff;
	border: 2px solid #0FA79B;
}
.dntbn:hover{
	background: #fff;
	color: #0BA095;
}
.dntbn > div{
	background: #0ea69a;
	border: 1px solid #fff;
	color:#fff;
	position:relative;
}

@-webkit-keyframes spinner-grow {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }
  50% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1); } }
	
@keyframes spinner-grow {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }
  50% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1); } }
	
.dntbn > div::after {
	content:"";
	position:absolute;
	-webkit-animation-name: spinner-grow;
	animation-name: spinner-grow;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite; 
	width: 3rem;
	height: 3rem;
	border: 3px solid #f7931c;
	top: -9px;
	border-radius: 50%;
	left: -9px;
  }


@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 10px 30px;
		margin-bottom:5px;
    }
	
	.navbar .navbar-nav .nav-link::before {
		width: 20px;
		height: 100%;
		bottom: 0px;
		-webkit-clip-path: polygon(50% 22px, 100.00% 34.04%, 100% 100%, 50% 100%, 0px 100%, 0% 36.63%);
		clip-path: polygon(0% 0px, 85.00% -2.13%, 35% 48.42%, 85% 102.7%, 0px 100%);
		top: 0;
	}
	.navbar .navbar-nav .nav-link:hover:before {
		visibility:visible;
		-webkit-transform:translateX(-5px);
		transform:translateX(-5px)
	}
}

@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;
		border-radius:0px;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

}

.phntgg{
	border: 0;
	padding: 0;
	cursor: pointer;
	margin: 0;
	width: 40px;
    height: 50px;
	outline: none;
}

.phntgg:focus,.phntgg:active{
	outline:none;
	box-shadow:unset;
}

.phntgg span{
	background-image: none !important;
    background: #212121;
    transition: background 10ms 300ms ease;
    display: block;
    width: 100%;
    height: 3px;
    position: relative;
    right: 0;
    left: auto;
}

.phntgg span::before {
  top: -15px;
}
.phntgg span::before, .phntgg span::after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: auto;
  background: #212121;
  width: 80%;
  height: 3px;
  content: '';
}

.phntgg span::after {
  top: 15px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before, .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

/*** 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, .8);
    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) top center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Causes ***/
.causes-item .progress {
    height: 5px;
    border-radius: 0;
    overflow: visible;
}

.causes-item .progress .progress-bar {
    position: relative;
    overflow: visible;
    width: 0px;
    border-radius: 0;
    transition: 5s;
}

.causes-item .progress .progress-bar span {
    position: absolute;
    top: -7px;
    right: 0;
    width: 40px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--primary);
    color: #FFFFFF;
}

.causes-item .causes-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.causes-item:hover .causes-overlay {
    height: 100%;
    opacity: 1;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
}

.service-item img{
	width:100px;
}

.crspic{
	height: 350px;
    overflow: hidden;
    padding: 2px;
    width: 100%;
}

.crspic img{
	height: 100%;
    max-height: 100%;
    width: 100%;
    object-fit: cover;
}

.donate {
	background-attachment: fixed;
    position: relative;
    z-index: 9;
	background-size: cover;
    background-position: center;
}

.donate::before{
	content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    background: rgb(232 40 131 / 55%);
    z-index: -1;
    left: 0;
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    color: var(--primary);
    border-color: var(--primary);
}


/*** 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: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.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);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** 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: "FontAwesome";
    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: #fff;
	width:80px;
    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);
}





/** Responsive Fixes **/

@media (max-width: 768px) {
    
}

/*1368px - */

@media (min-width: 1368px) {
  
}


/*1300px - 992px*/

@media all and (max-width: 1300px) and (min-width: 992px) {
    
}

/*1170px*/

@media all and (max-width: 1368px) {
   
}

/*992px*/

@media all and (max-width: 992px) {
    
}

/*768px*/

@media all and (max-width: 768px) {
    
}

@media all and (min-width: 768px) {
    
}

/*480px*/

@media all and (max-width: 480px) {
	.genhd .navbar{
		padding:0px !important;
	}
    .navbar-collapse.collapse.show{
		position: absolute;
		width: 100%;
		top: 59px;
		z-index: 9;
	}
	
	.navbar-brand.logo img{
		width: 75%;
	}
	.navbar .navbar-nav .nav-link
	{
		text-align:left;
	}
	.drpdun{
		position: absolute;
		height: 46px;
		right: 21px;
		top: 0px;
		width: 45px;
		display: flex;
		background: #ccc;
		align-content: center;
		flex-wrap: wrap;
		justify-content: center;
		font-size: 40px;
	}
	.navbar .nwintiatg.dropdown-toggle::after{
		display:none;
	}
}

@media all and (max-width: 320px) {
    
}