/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Lenity - Charity & Donation HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Service css
07. What We Do css
08. Our Causes css
09. Why Choose Us css
10. Our Program css
11. Scrolling Ticker css
12. Our Features css
13. Donate Now css
14. How It Work css
15. Our Testimonials css
16. Our Gallery css
17. Our Blog css
18. Footer css
19. About Us Page css
20. Services Page css
21. Service Single css
22. Blog Archive css
23. Blog Single css
24. Projects Page css
25. Project Single css
26. Team Page css
27. Team Single css
28. Testimonial Page css
29. Image Gallery css
30. Video Gallery css
31. FAQs Page css
32. Contact Us Page css
33. Donation Page css
34. 404 Error Page css
35. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color			: #020D19;
	--secondary-color		: #F8F8F8;
	--text-color			: #828282;
	--accent-color			: #FF6D00;
	--white-color			: #FFFFFF;
	--divider-color			: #020D1914;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Inter", serif;
	--accent-font			: "Onest", serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/


.hero{
	position: relative;
	background: url('../images/hero-bg1.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 260px 0 160px;
}

.hero::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(270deg, rgba(2, 13, 25, 0) 16.33%, rgba(2, 13, 25, 0.8) 100%),linear-gradient(360deg, rgba(2, 13, 25, 0) 87.52%, #020D19 101.14%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
	padding: 100px 0 60px;
}

.hero.hero-slider-layout .hero-slide::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(270deg, rgba(2, 13, 25, 0) 16.33%, rgba(2, 13, 25, 0.8) 100%),linear-gradient(360deg, rgba(2, 13, 25, 0) 87.52%, #020D19 101.14%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.section-title h1 span{
    font-size: 50px;
    font-weight: bold;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 70px;
	text-align: left;
	padding-left: calc(((100vw - 1300px) / 2) + 15px);
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero-content{
	position: relative;
	margin-right: 100px;
	z-index: 2;
}

.hero-content .section-title{
	margin-bottom: 60px;
}

.hero-content .section-title h3,
.hero-content .section-title h1,
.hero-content .section-title p{
	color: var(--white-color);
}

.hero-body{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 60px;
}

.video-play-button{
	display: flex;
	align-items: center;
}

.video-play-button p{
	color: var(--white-color);
	font-weight: 700;
	text-transform: capitalize;
	margin: 0 10px 0 0;
}

.video-play-button a{
	height: 50px;
	width: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: none;
	transition: all 0.4s ease-in-out;
}

.video-play-button a:hover{
	background-color: var(--primary-color);
}

.video-play-button a i{
	font-size: 22px;
	color: var(--white-color);
}

.hero-footer{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 40px;
}

.hero-list{
	position: relative;
}

.hero-list:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -20px;
    height: 100%;
    width: 1px;
    background: var(--dark-divider-color);
}

.hero-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.hero-list ul li{
	background: url('../images/icon-check.svg') no-repeat;
    background-position: left center;
    background-size: 26px auto;
	color: var(--white-color);
	line-height: 1.5em;
	padding-left: 35px;
	margin-bottom: 20px;
}

.hero-list ul li:last-child{
	margin-bottom: 0;
}

.hero-help-families{
	max-width: 260px;
}

.hero-help-families h3{
	color: var(--white-color);
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.hero-help-families p{
	color: var(--white-color);
	line-height: 1.4em;
	margin: 0;
}

body{
	font-family: Verdana;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.1em;
	background-color: var(--white-color);
	color: var(--text-color);
}
.newparas p{
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.newparas{
        height: 90px;
    overflow: hidden;
}
.hamburger{
    display: none;
}

.sidebar-wrap{
    display: none;
}
.brand{
    display: none;
}


.logo-imgs img{
    width:25%;
}

.blog-info{
    height: 230px;
    overflow: hidden;
}

/*::-webkit-scrollbar-track{*/
/*	background-color: #1d257f;*/
/*	border-left: 1px solid #1d257f;*/
/*}*/
/*::-webkit-scrollbar{*/
/*	width: 7px;*/
/*	background-color: #1d257f;*/
/*}*/
/*::-webkit-scrollbar-thumb{*/
/*	background: #1d257f;*/
/*}*/

::selection{
	color: var(--primary-color);
	background-color: var(--secondary-color);
	filter: invert(1);
}

p{
	line-height: 1.8em;
	margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 700;
	line-height: 1.2em;
	
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

 .snip *,
         .snip *:before,
         .snip *:after {
         box-sizing: border-box;
         transition: all 0.45s ease;
         }
         .snip {
         position: relative;
         overflow: hidden;
         /*max-width: 315px;*/
         /*min-width: 230px;*/
         /*font-family: "Source Sans Pro", sans-serif;*/
         color: #fff;
         font-size: 16px;
         /*margin: 10px;*/
         text-align: left;
         float: left;
         }
         .snip:hover .snip__title,
         .snip:hover .snip__text {
         transform: translateY(0);
         opacity: 0.9;
         transition-delay: 0.2s;
         }
         
       
         .snip__image {
         /*backface-visibility: hidden;*/
         /*max-width: 100%;*/
         vertical-align: top;
         width: 100%;
         }
         .snip__figcaption {
         position: absolute;
         top: 0px;
         bottom: 0px;
         left: 23px;
         right: 0px;
         z-index: 1;
         bottom: 0;
         padding: 25px 20% 25px 20px;
         }
         
         .snip__title,
         .snip__text {
         margin: 0;
         opacity: 0;
         letter-spacing: 1px;
         }
         .snip__title {
         font-size: 14px;
         font-weight: 300;
         text-transform: uppercase;
         text-align: center;
         color: #fff;
         background-color: green;
         padding: 10px 10px;
         border-radius: 100px;
         width: 80%;
         margin: 73px auto;
         border: 3px solid #fff;
         letter-spacing: 0;
         }
         .snip__text {
         font-size: 0.9em;
         }
         .snip__link {
         position: absolute;
         top: 0;
         bottom: 0;
         left: 0;
         right: 0;
         z-index: 1;
         }
         .menu-container {
         max-width: 1200px;
         margin: 50px auto;
         padding: 20px;
         }
         .menu-column {
         display: flex;
         flex-wrap: wrap;
         /* Adjust the gap as needed */
         }
         .menu-item img {
         width: 100%;
         height: auto;
         border-radius: 5px 5px 0 0;
         }
         .menu-item-content {
         padding: 20px;
         }
         .menu-filter {
         display: flex;
         /*width: 95%;*/
         /*overflow: scroll;*/
         margin-bottom: 20px;
         }
         .menu-filter button {
         width:10%;
         margin: 5px;
         padding: 10px 20px;
         font-size: 16px;
         cursor: pointer;
         border: none;
         border-radius: 5px;
         /* background-color: #007bff; */
         color: #000;
         background-color: #fff;
         /*box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;*/
         display: flex;
         align-items: center;
         justify-content: center;
         border: 1px solid #080808;
         /*background-color: transparent;*/
         }
         .menu-filter button:hover {
         background-color: green;
         color: #fff;
         border: 1px solid #fff;
         }
         .snip img{
         width: 100% !important;
         height: 240px;
         object-fit: cover;
         }
         .card{
         padding:10px;
         box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
         border: none;
         width: 100%;
         float: left;
         margin-bottom: 20px;
         }
         .card h4{
         display: flex;
         justify-content: space-between;
         }
         .card h4{
         font-size: 15px;
         font-weight: 400;
         margin: 0;
         padding: 10px 0 0 0;
         }
         .card span{
         color: green;
         }
         .menu-filter img{
         width:25%;
         margin-right: 3px;
         }
         .menu-filter{
         }
         .menu-item{
         width:24%;
         float: left;
         margin-right: 1%;
         }
         .menu-column{
         width: 100%;
         }
         .search-container {
         display: flex;
         align-items: center;
         justify-content: center;
         width: 100%;
         max-width: 600px;
         position: relative;
         margin: 0 auto 30px auto;
         }
         .search-input {
         width: 100%;
         padding: 15px 20px;
         font-size: 16px;
         border: 1px solid #dfe1e5;
         border-radius: 24px;
         box-shadow: 0px 1px 6px rgba(32, 33, 36, 0.28);
         outline: none;
         transition: all 0.3s ease;
         }
         .search-input:focus {
         border-color: #4285f4;
         box-shadow: 0px 1px 8px rgba(66, 133, 244, 0.5);
         }
         .search-button {
         position: absolute;
         right: 8px;
         background-color: green;
         color: white;
         border: none;
         padding: 8px 16px;
         border-radius: 24px;
         cursor: pointer;
         font-size: 16px;
         outline: none;
         }     
         .search-button:hover {
         background-color: #357ae8;
         }
         .search-icon {
         position: absolute;
         right: 60px;
         font-size: 18px;
         color: #757575;
         pointer-events: none;
         }
         .developer-linkedin{
         position: absolute;
         margin: auto;
         right: 15px;
         bottom: 15px;
         background: #fff;
         padding: 5px 10px;
         border-radius: 15px 1px;
         box-shadow: 0px 0px 4px 1px;
         }
         .developer-linkedin a{
         text-decoration: none;
         color: #000;
         text-shadow: 0 0 #fff504;
         }
         .section-row{
         margin-bottom: 30px;
         }
         
          .volunteer{
              margin:50px 0 50px 0;
          }
          .volunteer h2{
              font-size: 22px;
              padding-bottom: 15px;
          }
          .modal-body img{
              width:100%;
              height: 200px;
              object-fit: contain;
              
          }
          
            .modal-body input{
                width:100%;
                height: 40px;
                border:none;
                box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
                margin-bottom: 15px;
                padding: 5px 20px;
            }
            .modal-body input[type=submit]{
                width:100%;
                height: 40px;
                border:none;
                box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
                margin-bottom: 15px;
                padding: 5px 20px;
                background:orange;
            }
            #btnCopyInput{
                background-color: green;
                color: #fff;
            }
            #inputUrl{
                margin: 0;
            }
            
            
     
    
    .cpoyurl{
        display: flex;
        align-items: center;
        margin: 10px 0;
        
    }

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}
.btns{
    width:100%;
    border:none;
    text-align: center;
    display: block;
}
.btn-default{
padding: 20px 54px 20px 24px;
    position: relative;
    display: inline-block;
    background: var(--accent-color);
    color: var(--white-color);
	
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    /*padding: 20px 54px 20px 24px;*/
	border-radius: 100px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;	
}
.btns a{
    padding: 20px 54px 20px 24px;
    position: relative;
    display: block;
    background: var(--accent-color);
    color: var(--white-color);
	
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    /*padding: 20px 54px 20px 24px;*/
	border-radius: 100px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn-default:hover{
	background: transparent;
    color: var(--white-color);
}

.btn-default::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    background-image: url(../images/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate(-24px, -50%);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::before{
	transform: translate(-21px, -50%);
}

.btn-default::after{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
	right: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
	border-radius: 100px;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover:after{
	width: 100%;
    left: 0;
	right: auto;
}

#divheights{
    height: 830px;
    overflow: hidden;
}

.readmore-btn{
	position: relative;
	color: #122341;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 700;	
	line-height: 1.8em;
	text-transform: capitalize;
	display: inline-block;
	padding-right: 40px;
	transition: all 0.4s ease-in-out;
}

.readmore-btn::before{
    font-family: 'Font Awesome 5 Free';
	content: '\f061';
    position: absolute;
	right: 0;
    top: 50%;
	font-size: 13px;
	line-height: normal;
	color: var(--white-color);
	width: 25px;
	height: 25px;
	background-color: #122341;
	background-position: center center;
	border-radius: 50%;
	display: flex;
	align-items: center;
    justify-content: center;
	transform: translate(-3px, -50%);
	transition: all 0.3s ease-in-out;
	font-weight: 600;
}

.readmore-btn:hover{
	color: var(--primary-color);
}

.readmore-btn:hover::before{
	background-color: var(--primary-color);
	transform: translate(0, -50%);
}

.cb-cursor:before{
	background: var(--accent-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}



.section-row .section-title{
	width: 100%;
	max-width: 765px;
	margin-bottom: 0;
	margin: 0 auto;
	text-align: center;
}

.section-title{
	margin-bottom: 40px;
}













    .feature-info{
        height: 225px;
        overflow: hidden;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        padding: 15px;
        border-radius: 10px;
        background: #fff;
    }
    .feature-title img {
        width: 100px !important;
        height: 50px !important;
    }

    .category-box.style2 ul li a span{
        top: -4px !important;
    }
    .feature-title h3{
        font-weight: bold !important;
    }

    .service-desc img{
        width: 100%;
        height: 500px !important;
        object-fit: cover;
    }

    .feature-info h3 strong{
        font-size: 15px !important;
        line-height: 22px;
        font-weight: 300 !important;
    }
    
    .about-img-wrap img{
        width:100%;
        height: auto;
    }
    .feature-info img{
        margin-bottom: 15px;
    }
    .feature-info p{
        margin: 0 !important;
    }
    .feature-title{
        display: inherit !important;
    }
    .feature-title img{
        width:100%;
    }

    .whatsapp-position {
        position: fixed;
        right: 30px;
        bottom: 150px;
        z-index: 999;
        width: 60px;
        height: 60px;
        background-color: #25d366;
        border-radius: 100%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .whatsapp-position a {
        color: #fff;
    }
    .whatsapp-position a i {
        font-size: 40px;
    }

    /*///team//////////*/

    .our-team{
        padding: 50px 0;
    }
    .our-team h2{
        font-size:26px;
    }
    .our-team p{
        text-align: justify;
        
    }
    .ourteamspara{
        padding: 10px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        border-radius: 5px;
        margin: 35px 0;
    }
    .ourteamspara h2{
        font-size:20px;
        font-weight: bold;
    }
    .ourteamspara h5{
            margin: 0;
        padding: 0px 0 0px 0;
        font-weight: bold;
        font-size:20px;
    }

    .mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
        width: 1351px;
    background: #fff;
    grid-template-columns: repeat(4, 1fr);
    padding: 25px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-top: 3px solid #008037;
    z-index: 100;
    }
    .mega-column {
    padding: 0 15px;
    }
    .mega-column h3 {
    color: #0a1a73;
    border-bottom: 2px solid #008037;
    display: inline-block;
    margin-bottom: 10px;
    }
    .mega-column a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 6px 0;
    font-size: 14px;
    }
    .mega-column a:hover {
    color: #008037;
    }

    /* Subcategory Dropdown System */
    .subcat {
    margin-bottom: 10px;
    }
    .subcat > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    }
    .toggle-btn {
    font-size: 18px;
    color: #0a1a73;
    font-weight: bold;
    }
    .sub-menu {
    display: none;
    background: #f7f7f7;
    padding: 10px;
    margin-top: 5px;
    border-left: 3px solid #008037;
    height: 199px;
    overflow-y: scroll;
    }
    .sub-menu a {
    display: block;
    padding: 5px 0;
    color: #333;
    text-decoration: none;
    }
    .sub-menu a:hover {
    color: #008037;
    }

    .



   
    nav {
        position: fixed;
        z-index: 100;
        width: 100%;
        background: #d88014;
    }
    .bx-menu {
        display: none;
        color: white;
        font-size: 1.8em;
        position: absolute;
        right: 40px;
        cursor: pointer;
    }
    .body-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;
        padding: 0 30px;
    }
    .body-text div {
        font-size: 45px;
        font-weight: 600;
    }
    nav .wrapper {
        position: relative;
        max-width: 1300px;
        padding: 0px 30px;
        height: 70px;
        line-height: 70px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .wrapper .logo a {
        color: #f2f2f2;
        font-size: 30px;
        font-weight: 600;
        text-decoration: none;
    }
    .wrapper .nav-links {
        display: inline-flex;
    }
    .nav-links li {
        list-style: none;
    padding: 5px 0px 5px 25px;
    }
    
    .mega-column i{
        color:#1d257f;
        font-size: 11px;
    }
    .mega-column a{
       border-bottom: 1px dashed #ccc;
    box-shadow: none; 
    padding: 10px 0;
    }
    
    .nav-links li a {
        color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 0;
    border-radius: 5px;
    transition: all 0.3s ease;
    
    }
    .nav-links li a:hover {
        color: blue;
    }
    .nav-links .mobile-item {
        display: none;
    }
    .nav-links .drop-menu {
        position: absolute;
        background: #242526;
        width: 180px;
        line-height: 45px;
        top: 80px;
        opacity: 0;
        visibility: hidden;
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }
    .nav-links li:hover .drop-menu,
    .nav-links li:hover .mega-box {
        transition: all 0.3s ease;
        top: 60px;
        opacity: 1;
        visibility: visible;
    }
    .drop-menu li a {
        width: 100%;
        display: block;
        padding: 0 0 0 15px;
        font-weight: 400;
        border-radius: 0px;
    }
    .mega-box {
        position: absolute;
        left: 0;
        width: 100%;
        padding: 0 0px;
        top: 85px;
        opacity: 0;
        visibility: hidden;
    }
    .mega-box .content {
        background: #fff;
        padding: 25px 20px;
        display: flex;
        width: 100%;
        justify-content: space-between;
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
        margin: 0 auto;
    }

    .mega-box .content .row {
        width: 100%;
        line-height: 35px;
    }
    .content .row img {
        border-radius: 10px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .content .row header {
        color: #f2f2f2;
        font-size: 20px;
        font-weight: 500;
    }
    .content .row .mega-links {
        margin-left: -14px;
        border-left: 1px solid #000;
    }
    .row .mega-links li {
        padding: 0 0px;
    }
    .row .mega-links li a {
        padding: 0px;
        padding: 0 10px;
        color: #333;
        font-size: 14px;
        display: block;
    }
    .row .mega-links li a:hover {
        color: #112240;
    }
    .wrapper .btn {
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        display: none;
    }
    .wrapper .btn.close-btn {
        position: absolute;
        right: 30px;
        top: 10px;
    }
    @media screen and (max-width: 970px) {
        .wrapper .btn {
            display: block;
        }
        .bx-menu {
            display: block;
        }
        .wrapper .nav-links {
            position: fixed;
            height: 100vh;
            width: 100%;
            max-width: 350px;
            top: 0;
            left: -100%;
            background: #242526;
            display: block;
            padding: 50px 10px;
            line-height: 50px;
            overflow-y: auto;
            box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
            transition: all 0.3s ease;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #242526;
        }
        ::-webkit-scrollbar-thumb {
            background: #3a3b3c;
        }
        #menu-btn:checked ~ .nav-links {
            left: 0%;
        }
        #menu-btn:checked ~ .btn.menu-btn {
            display: none;
        }
        #close-btn:checked ~ .btn.menu-btn {
            display: block;
        }
        .nav-links li {
            margin: 15px 10px;
        }
        .nav-links li a {
            padding: 0 20px;
            display: block;
            font-size: 20px;
        }
        .nav-links .drop-menu {
            position: static;
            opacity: 1;
            top: 65px;
            visibility: visible;
            padding-left: 20px;
            width: 100%;
            max-height: 0px;
            overflow: hidden;
            box-shadow: none;
            transition: all 0.3s ease;
        }
        #showDrop:checked ~ .drop-menu,
        #showMega:checked ~ .mega-box {
            max-height: 100%;
        }
        .nav-links .desktop-item {
            display: none;
        }
        .nav-links .mobile-item {
            display: block;
            color: #f2f2f2;
            font-size: 20px;
            font-weight: 500;
            padding-left: 20px;
            cursor: pointer;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav-links .mobile-item:hover {
            color: blue;
        }
        .drop-menu li {
            margin: 0;
        }
        .drop-menu li a {
            border-radius: 5px;
            font-size: 18px;
        }
        .mega-box {
            position: static;
            top: 65px;
            opacity: 1;
            visibility: visible;
            padding: 0 20px;
            max-height: 0px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .mega-box .content {
            box-shadow: none;
            flex-direction: column;
            padding: 20px 20px 0 20px;
        }
        .mega-box .content .row {
            width: 100%;
            margin-bottom: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        .mega-box .content .row:nth-child(1),
        .mega-box .content .row:nth-child(2) {
            border-top: 0px;
        }
        .content .row .mega-links {
            border-left: 0px;
            padding-left: 15px;
        }
        .row .mega-links li {
            margin: 0;
        }
        .content .row header {
            font-size: 19px;
        }
    }

    .menu-btn a {
        text-decoration: none;
        font-size: 1.7em;
        color: white;
    }

    .sub-title span {
        color: #d88014;
    }

    .title span {
        color: #d88014;
    }

    .MDJAminDiv {
        z-index: 4444;
        position: fixed;
        bottom: 5%;
        left: 2%;
    }

    .MDJAmin {
        text-decoration: none;
        border-bottom: 1px dashed rgb(44, 44, 44);
        border-top: 1px dashed rgb(44, 44, 44);
        padding: 4px 0;
        color: rgba(44, 44, 44, 0.525);
        font-family: monospace;
        font-style: italic;
        font-size: 1.1em;
        transition: all 0.5s;
    }

    .MDJAmin:hover {
        color: #d88014;
    }
    
    .nav-links{
        display: inline-flex;
    }
    .rs-toolbar-left ul{
        margin: 0;
        padding:0;
    }
    .rs-toolbar-left ul li{
        list-style: none;
        display: inline-block;
        color: #fff;
        margin-left: 10px;
    }
    .rs-toolbar-left{
        float: right;
    }
    
    
    
    

.section-title h3{
position: relative;
    display: inline-block;
    font-size: 25px;
    font-weight: 500;
    line-height: normal;
    /* letter-spacing: 0.2em; */
    text-transform: capitalize;
    color: var(--primary-color);
    padding-left: 0px;
    margin-bottom: 15px;
    color: #fff !important;
}

.section-title h3::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('../images/icon-sub-heading.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    width: 50px;
    height: 50px;
}

.section-title h1{
	    font-size: 50px;
    margin-bottom: 0;
    /* cursor: none; */
    line-height: 56px;
    font-weight: bold;
    text-align: left;
}

.section-title h2{
	font-size: 50px;
	margin-bottom: 0;
	font-weight: 700 !important;
	line-height: 54px !important;
	color:#000 !important;
}

.section-title h1 span,
.section-title h2 span{
	color: var(--accent-color);
}

.section-title p{
	margin-top: 20px;
	margin-bottom: 0;
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}


/************************************/
/***      	05. About Us css      ***/
/************************************/

.about-us{
	padding: 50px 0;
}

.about-us-images{
	position: relative;
	padding: 0 0 190px 110px;
	margin-right: 30px;
}

.about-img-1,
.about-img-2{
	border-radius: 30px;
	overflow: hidden;
}

.about-img-1 figure,
.about-img-2 figure{
	display: block;
}

.about-img-1 img,
.about-img-2 img{
	width: 100%;
	object-fit: cover;
}

.about-img-1 img{
	aspect-ratio: 1 / 0.95;
}

.about-img-2{
	position: absolute;
	max-width: 330px;
	bottom: 0;
	left: 0;
	border: 15px solid var(--white-color);
	z-index: 1;
	overflow: hidden;
}

.about-img-2 img{
	aspect-ratio: 1 / 0.86;
}

.need-fund-box{
	position: absolute;
	right: 0;
	bottom: 15px;
	max-width: 165px;
	background-color: #122341;
	border-radius: 13px;
	padding: 18px;
    text-align: center;
	overflow: hidden;
}

.need-fund-box:before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.need-fund-box:hover:before{
	top: auto;
    height: 100%;
}

.need-fund-box img{
	position: relative;
	width: 100%;
	max-width: 60px;
	margin-bottom: 10px;
	z-index: 1;
}

.need-fund-box p{
	position: relative;
	text-transform: capitalize;
	color: #fff;
	font-weight: 600;
	margin: 0;
	z-index: 1;
}

.about-us-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 60px;
}

.about-us-body-content{
	width: calc(55% - 30px);
}

.about-support-box{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.about-support-box .icon-box{
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
	padding-bottom: 5px;
}

.about-support-box .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: #5ca5ce;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	z-index: 0;
}

.about-support-box .icon-box img{
	position: relative;
	width: 100%;
	max-width: 50px;
	z-index: 1;
}

.about-support-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.about-support-content p{
	margin: 0;
}

.helped-fund-item{
	position: relative;
	width: calc(45% - 30px);
	padding: 0 30px 30px;
	text-align: center;
}

.helped-fund-item:after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: var(--secondary-color);
	display: inline-block;
    mask-image: url('../images/helped-fund-box-mask.svg');
    mask-size: contain;
    mask-position: bottom center;
    mask-repeat: no-repeat;
	z-index: 0;
}

.helped-fund-img{
	position: relative;
	margin-bottom: 20px;
	z-index: 1;
}

.helped-fund-img figure{
	max-width: 120px;
	display: inline-block;
	border-radius: 100px;
}

.helped-fund-img img{
	width: 100%;
	aspect-ratio: 1 / 1;
    object-fit: cover;
}

.helped-fund-content{
	position: relative;
	z-index: 1;
}

.helped-fund-content h2{
	color: #1d257f;
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 10px;
}

.helped-fund-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.helped-fund-content p{
	font-size: 14px;
	margin: 0;
}



/************************************/
/***     09. Why Choose Us css     ***/
/************************************/

.why-choose-us{
	padding: 100px 0;
}

.why-choose-images{
	position: relative;
	padding: 0 65px 45px 0;
}

.why-choose-image-1 figure,
.why-choose-image-2 figure{
	display: block;
	overflow: hidden;
	border-radius: 50%;
}

.why-choose-image-1 img,
.why-choose-image-2 img{
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.why-choose-image-2{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	max-width: 265px;
	border: 2px solid var(--white-color);
	border-radius: 50%;
}

.why-choose-content{
	margin-left: 15px;
}

.why-choose-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 20px;
}

.why-choose-list ul li{
	width: calc(50% - 10px);
	background: url('https://frasinternational.com/ca/images/icons.png') no-repeat;
    background-position: left center;
    background-size: 26px auto;
	color: var(--primary-color);
	text-transform: capitalize;
	line-height: 1.5em;
	padding-left: 35px;
}

.why-choose-counters{
	display: flex;
	gap: 30px 50px;
	flex-wrap: wrap;
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.why-choose-counter-item{
	position: relative;
	width: calc(33.33% - 33.33px);
	text-align: center;
}

.why-choose-counter-item::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -30px;
	background: var(--divider-color);
	width: 1px;
	height: 100%;
}

.why-choose-counter-item:nth-child(3n + 3):before,
.why-choose-counter-item:last-child:before{
	display: none;
}

.why-choose-counter-item h2{
	font-size: 50px;
	color: #1d257f;
	margin-bottom: 5px;
}

.why-choose-counter-item p{
	margin-bottom: 0;
}

.btn-default {
    padding: 20px 24px 20px 24px;
    position: relative;
    display: inline-block;
    background: #0fa1f3;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    /* padding: 20px 54px 20px 24px; */
    border-radius: 100px;
    transition: all 0.5s 
ease-in-out;
    overflow: hidden;
    z-index: 0;
}

/************************************/
/***      10. Our Program css     ***/
/************************************/

.our-program{
	position: relative;
	background: #0fa1f30d;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
	padding: 50px 0;
}

/*.our-program::before{*/
/*	content: '';*/
/*	position: absolute;*/
/*	top: 0;*/
/*	bottom: 0;*/
/*	left: 0;*/
/*	right: 0;*/
/*	background: linear-gradient(180deg, rgba(2, 13, 25, 0.5) 17.67%, #FFFFFF 70%);*/
/*	height: 100%;*/
/*	width: 100%;*/
/*	z-index: 0;*/
/*}*/

.our-program .section-row{
	position: relative;
	z-index: 1;
}

.our-program .section-title h3,
.our-program .section-title h2,
.our-program .section-title p{
	color: var(--white-color);
}

.program-item{
	position: relative;
	height: calc(100% - 30px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 0px 40px 5px #00000005;
	border-radius: 30px;
	padding: 40px;
	margin-bottom: 30px;
	z-index: 1;
	height: 390px;
}

.program-image{
	margin-bottom: 30px;
}

.program-image a{
	display: block;
	cursor: none;
}

.program-image figure{
	display: block;
	border-radius: 20px;
}

.program-image img{
	width: 100%;
	aspect-ratio: 1 / 0.701;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.program-item:hover .program-image img{
	transform: scale(1.1);
}

.program-body{
	/*text-align: center;*/
}

.program-content{
	margin-bottom: 10px;
}

.program-content h3{
	font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #0072b3;
}

.program-content h3 a{
	color: inherit;
}
.paras{
   height: 52px;
   overflow: hidden;
}
.paras h3{
    font-size: 15px;
    line-height: 23px;
    font-weight: 300;
}
.testimonial-wrap h2{
    font-size:30px !important;
}
.why-choose-content h2{
    font-size:45px !important;
    font-weight: 700;
}
.program-button{
    margin-top: 10px;
}

.program-content p{
	margin-bottom: 0;
}

.our-program .section-footer-text{
	position: relative;
	width: 100%;
	max-width: 480px;
	margin: 30px auto 0;
	z-index: 1;
}

/************************************/
/***   11. Scrolling Ticker css   ***/
/************************************/

.scrolling-ticker-box{
	--gap: 40px;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-content{
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 50s linear infinite;
}

@keyframes scroll{
	from{
		transform: translateX(0);
	}

	to{
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.scrolling-ticker-box .scrolling-content span{
	display: flex;
	align-items: center;
	text-transform: capitalize;
	font-family: var(--accent-font);
	font-size: 100px;
	line-height: 1.2em;
	font-weight: 700;
	color: var(--white-color);
    background: var(--accent-color);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-stroke: 4px transparent;
}

.scrolling-ticker-box .scrolling-content span img{
	width: 44px;
	margin-right: 40px;
}



@media only screen and (max-width: 768px) {
    .nav-links{
        display: none !important;
    }
    
    .slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 100px 0;
    width: 100vw;
}

.about-img-2 {
        border-width: 5px;
        max-width: 210px;
    }
        
    
    .about-us-images {
    position: relative;
    padding: 0 0 150px 60px;
    margin-right: 23px;
}
    .need-fund-box {
        max-width: 103px;
        padding: 5px;
        bottom: 5px;
        font-size: 10px;
    }
    
    .need-fund-box p {
    position: relative;
    text-transform: capitalize;
    color: #0fa1f3;
    font-weight: 600;
    margin: 0;
    z-index: 1;
    font-size: 14px;
    margin-top: 4px;
}

.section-title h2 {
    font-size: 30px;
    margin-bottom: 0;
    font-weight: 700 !important;
    line-height: 35px !important;
}

.helped-fund-item {
    position: relative;
    width: calc(45% - 38px);
    padding: 0 0px 0px;
    text-align: center;
}

.about-intro {
    border-radius: 3px;
    background: url(../images/about-intro-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px;
    box-shadow: 0 0 20px 0px rgba(17, 41, 88, 0.2);
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}
.why-choose-content h2 {
    font-size: 30px !important;
    font-weight: 700;
}
.why-choose-image-2 img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
}

.why-choose-image-1 img, .why-choose-image-2 img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
}

.logo {
    width: 40%;
}

.rs-toolbar{
    display: none;
}






/*mobile mega///////////*/

.site-header{
      display:flex;align-items:center;justify-content:space-between;
      padding:10px 16px;background:#16326a;color:#fff;border-bottom:4px solid #1fa36a;
      position:sticky;top:0;z-index:60;
    }
    
    .brand img{height:40px;width:auto;border-radius:4px;background:#fff;padding:4px;}
    .brand .title{font-weight:700}
    .hamburger{
      background:transparent;border:0;color:#fff;font-size:22px;padding:8px;cursor:pointer;
    }
    .site-header button{
        width:15%;
    }
    .nav-desktop{display:flex;gap:18px;align-items:center}
    .nav-desktop a{color:#fff;font-weight:600}

    /* Hide desktop nav on small */
    @media (max-width:768px){ .nav-desktop{display:none} }

    /* Sidebar wrap and backdrop */
    .sidebar-wrap{position:fixed;inset:0;pointer-events:none;z-index:120}
    .sidebar-backdrop{
      position:absolute;inset:0;background:rgba(0,0,0,0.45);backdrop-filter:blur(3px);
      opacity:0;transition:opacity .28s ease;pointer-events:none;
    }
    .sidebar-backdrop.show{opacity:1;pointer-events:auto}

    /* Sidebar panel */
    .sidebar{
      position:fixed;left:0;top:0;height:100vh;width:340px;max-width:92vw;
      background:#fff;box-shadow:2px 0 28px rgba(0,0,0,0.18);
      transform:translateX(-110%);transition:transform .34s cubic-bezier(.2,.9,.3,1);
      pointer-events:auto;display:flex;flex-direction:column;z-index:130;
    }
    .sidebar.open{transform:translateX(0)}

    /* Sidebar header */
    .sidebar-header{display:flex;align-items:center;justify-content:space-between;padding:14px 16px;border-bottom:1px solid #eee}
    .close-btn{background:#fff;border:1px solid #e6e6e6;border-radius:8px;padding:6px 8px;cursor:pointer;font-size:16px}

    /* Nav area */
    .sidebar-nav{overflow:auto;padding:10px 0 28px 0}
    .menu-list{list-style:none;padding:0;margin:0}
    .nav-item{border-bottom:1px solid #f0f0f0}
    .nav-link{
      display:flex;align-items:center;justify-content:space-between;padding:14px 18px !important;font-weight:700 !important;
      font-size:15px !important;background:transparent;cursor:pointer;
    }
    .nav-link a{flex:1}
    .chev{font-weight:700;color:#13407a; float:right;}

    /* submenu container (for Services main section) */
    .section-submenu{max-height:0;overflow:hidden;transition:max-height .28s ease,padding .28s ease}
    .section-submenu.open{padding-top:8px;padding-bottom:10px;max-height:1500px}

    /* group accordion inside Services (each big category) */
    .group{
      border-top:1px dashed #eee;padding:10px 0 4px 0;
    }
    .group > .group-title{
      display:flex;align-items:center;justify-content:space-between;padding:8px 18px;font-weight:600;cursor:pointer;
    }
    .group-content{max-height:0;overflow:hidden;transition:max-height .28s ease;padding-left:12px}
    .group.open .group-content{max-height:800px;padding-top:8px;padding-bottom:8px}
    .group-content a{display:block;padding:8px 20px;border-bottom:1px dashed #f2f2f2;font-weight:500;color:#222}

    /* small helpers */
    .badge{background:#1fa36a;color:#fff;padding:2px 8px;border-radius:999px;font-size:12px;margin-left:10px}
    .sidebar-footer{margin-top:auto;padding:12px 16px;border-top:1px solid #f0f0f0;display:flex;gap:10px;flex-wrap:wrap}
    .sidebar-footer a{background:#f7f7f7;padding:8px 10px;border-radius:6px;font-weight:600}
    #close-sidebar{
        width:15%;
    }


    .header-transparent{
        display: none;
    }
    .sidebar-wrap{
    display: block;
}
.brand{
    display: flex !important;
}
.hamburger{
    display: block;
}
    
    /* Hide hamburger on large screens */
    @media (max-width:768px){  
    .brand{display:flex;align-items:center;gap:12px}
    .hamburger{
    display: block;
}

    /* Focus styles for accessibility */
    .nav-link:focus,.group-title:focus,.close-btn:focus,.hamburger:focus{outline:3px solid rgba(31,163,106,0.16);outline-offset:3px}

.breadcrumb-wrap img{
    height: 170px;
}
.ptb-100{
    padding: 50px 0;
}
    
}








