/*********************************
		basic css
*********************************/
:root{
    --default-green: #0D7066;
    --white: #fff;
    --black: #000;
    --default-yellow: #FBB732;
    --default-text-color: #848484;
}
html {
    scroll-behavior: smooth;
}
body{
    font-family: 'Expo Arabic';
    font-size: 20px;
    font-weight: 300;
    color: var(--default-text-color);
    overflow-x: hidden;
}
.flower-bg{
    background: url('../images/body-bg.png') repeat-x;
    background-size: cover;
}

.push-wrap{
    overflow: hidden;
}
.padding-l-r-150{
    padding: 0 150px;
}
.padding-t-b-100{
    padding: 100px 0;
}
.padding-t-100{
    padding-top: 100px;
}
.padding-b-100{
    padding-bottom: 100px;
}
.mb-50{
    margin-bottom: 50px;
}
.opacity-0{
    opacity: 0;
}
.opacity-1{
    opacity: 1;
}
.wrapper{
    min-height: 800px;
}
.loader{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 50;
}
.loader .spinner-border{
    position: absolute;
    left: 50%;
    top: 50%;
    color: var(--default-green) !important;
}
img{
    max-width: 100%;
}
a{
    display: inline-block;
    text-decoration: none;
}
.main-heading h2{
    font-size: 54px;
    font-weight: 600;
    line-height: normal;
    color: var(--default-green);
}
.medium-heading h2{
    font-size: 34px;
    color: var(--default-green);
    font-weight: 600;
    display: inline-block;
}
.medium-heading-28 h2{
    font-size: 28px;
    font-weight: 600;
    color: var(--default-green);
    line-height: normal;
}
.small-heading h2{
    font-size: 24px;
    font-weight: 600;
    color: var(--default-green);
    line-height: normal;
}
.heading-bg h2{
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 0;
}
.heading-bg h2:after{
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 12px;
    border-radius: 10px;
    background: #c4c4c4;
    z-index: -1;
}
.polygon-bg h2{
    position: relative;
    padding-right: 66px;
}
.polygon-bg h2:after{
    content: '';
    position: absolute;
    right: 0;
    top: -5px;
    width: 38px;
    height: 48px;
    background: url('../images/heading-polygon.png') no-repeat right center;
}
.main-text p{
    font-size: 20px;
    font-weight: 300;
    color: var(--default-text-color);
}



.carousel-indicators [data-bs-target]{
    background: var(--black);
    border: none;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    opacity: 1;
}
.carousel-indicators [data-bs-target].active{
    background: var(--default-text-color);
}
/**********************************
    header css
**********************************/
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.logo,
.sign-up-buttons-box ul{
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.sticky .logo,
.sticky .sign-up-buttons-box ul{
    margin-bottom: 10px !important;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.sticky{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 15;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    background: var(--white);
    box-shadow: 0 0 10px;
}
.navbar{
    padding: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.sign-up-buttons-box ul{
    justify-content: end;
}
.sign-up-buttons-box ul li a{
    padding: 10px 17px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--black);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.sign-up-buttons-box ul li a:hover{
    text-decoration: underline;
}
.sign-up-buttons-box ul li.active a{
    background-color: var(--default-green);
    color: var(--white);
    text-decoration: none;
}
.top-nav{
    background: var(--default-green);
    position: relative;
    margin: 0 35px;
    padding: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.top-nav:before{
    content: '';
    position: absolute;
    left: -67px;
    top: 0;
    width: 67px;
    height: 100%;
    background: url('../images/nav-after.png');
}
.top-nav:after{
    content: '';
    position: absolute;
    right: -67px;
    top: 0;
    width: 67px;
    height: 100%;
    background: url('../images/nav-before.png');
}
.top-nav ul{
    margin-bottom: 0;
}
.top-nav ul li {
    padding: 18px 8px 11px;
    position: relative;
}
.top-nav ul li a{
    font-size: 13px;
    font-weight: 400;
    color: var(--white);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    border-bottom: 1px solid transparent;
}

.top-nav ul li:hover a,
.top-nav ul li.active a{
    border-bottom: 1px solid var(--white);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.dropdown-menu{
    border: none;
    background: rgb(229 229 229 / 100%);
    border-top: 1px solid #fff;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    border-top: none;
    border-radius: 20px;
}
.top-nav ul .dropdown-menu{
    width: max-content;
    padding: 20px 15px;
}

.top-nav ul .dropdown-menu ul{
    list-style: none;
    padding: 0;
    min-width: 180px;
}
.top-nav ul .dropdown-menu ul li{
    display: flex;
    align-items: start;
}
.top-nav ul .dropdown-menu ul img{
    margin-left: 20px;
    max-width: 20px;
}
.top-nav ul li:hover .dropdown-menu,
.top-nav ul .dropdown-menu.show{
    display: block !important;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    top: 116%;
    margin-top: 0;
    right: auto !important;
}

.mega-menu .dropdown {
    position: static;
}
.mega-menu .dropdown a{
    position: relative;
}
.mega-menu .dropdown:hover a.dropdown-after:after{
    content: '';
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 8px;
    background: url('../images/dropdown-after.png') no-repeat center;
    z-index: 1111;
    cursor: auto;
}

.top-nav ul .dropdown-menu li{
    margin: 0;
    padding: 5px 0;
}
.top-nav ul .dropdown-menu li:last-child{
    border-bottom: none;
}
.top-nav ul .dropdown-menu li a{
    margin: 0 5px;
    color: var(--default-green);
    display: block;
    font-size: 16px;
    font-weight: 400;
    border-color: transparent;
}
.top-nav ul .dropdown-menu li a:hover{
    border-color: var(--default-green);
}
.plus-icon{
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--default-yellow);
    color: var(--white);
    border-radius: 20px 0 0 20px;
    padding: 36px 6px;
    cursor: pointer;
    z-index: 6;
}


/**********************************
    hero slider
**********************************/
.hero-slider{
    padding: 100px 0 100px;
}
.hero-slider-box .carousel-inner .carousel-item{
    background-size: 100% !important;
    background-repeat: no-repeat !important;
    background-position: center top !important;
    padding: 12% 0 15%;
}
/*.hero-slider-text-box{
    margin-bottom: 50px;
}*/
.hero-slider-button-box ul li{
    margin-left: 17px;
}
.hero-slider-button-box ul li a{
    background: #8C827B;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    padding: 9px 30px;
    border-radius: 30px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.hero-slider-button-box ul li i{
    margin-left: 10px;
    font-size: 20px;
}
.hero-slider-button-box ul li a:hover,
.hero-slider-button-box ul li.active a{
    background: var(--default-yellow);
}
.hero-slider-text-box .main-heading{
    margin-bottom: 30px;
}
.hero-slider-button-box{
    margin-top: 30px;
}
.hero-slider-text-box p{
    line-height: 45px;
}


/**********************************
    about-slider
**********************************/
.about-slider-box{
    background: #fafaf9;
    padding: 30px 30px 53px 30px;
    position: relative;
    height: 100%;
}
.about-slider-button{
    position: absolute;
    left: 10px;
    bottom: 20px;
}
.about-slider-button a{
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    background: #D6D1C5;
    color: #fff;
    border-radius: 23px;
    padding: 6px 26px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.about-slider-button a:hover{
    background: var(--default-yellow);
}
.about-slider-box .small-heading{
    margin-bottom: 50px;
}
.about-slider-box .small-heading h2{
    margin-bottom: 0;
}
.about-slider-icon,
#about-slider-news-events{
    margin-bottom: 18px;
    min-height: 85px;
}

.about-slider-box h6{
    font-size: 20px;
    font-weight: 600;
    color: #8C827B;
    margin-bottom: 22px;
    display: inline-block;
    max-width: 120px;
}
.about-slider-box h5{
    font-size: 20px;
    font-weight: 300;
    color: #301515;
    margin-bottom: 22px;
    display: inline-block;
}
.about-sliders .carousel-control-next,
.about-sliders .carousel-control-prev{
    color: rgba(255, 255, 255, 0.38);
    width: 15%;
    font-size: 30px;
    opacity: 1;
}
.slider-height .carousel-control-next{
    left: 26%;
}
.slider-height .carousel-control-prev{
    right: 26%;
}
.slider-height .carousel-control-next,
.slider-height .carousel-control-prev{
    top: 105px;
    height: max-content;
    bottom: inherit;
    color: var(--black);
    width: 5%;
}
.slider-height.carousel{
    height: 95%;
}
.slider-height .carousel-item,
.slider-height .carousel-inner{
    height: 100%;
}
.carousel-inner .about-slider-button {
    left: 0;
}
/**********************************
    electronic-services
**********************************/
.electronic-services{
    padding: 60px 0 50px;
}
.electronic-services .medium-heading {
    margin-bottom: 60px;
}
.services-box{
    border-radius: 50px;
    background: linear-gradient(180deg, #FFFFFF 19.96%, #F3F2F1 100%);
    padding: 40px 20px;
    height: 100%;
    min-height: 225px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    cursor: pointer;
}
.services-box:hover{
    background: linear-gradient(0deg, #FFFFFF 19.96%, #F3F2F1 100%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.services-box .services-icon{
    margin-bottom: 15px;
}
.services-box p{
    color: var(--default-green);
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
}

/**********************************
    statistics
**********************************/
.statistics{
    padding: 25px 0;
    background: url('../images/statistics-bg.png'), linear-gradient(180deg, rgba(13, 112, 102, 0.62) 0%, #004E59 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
}
.statistics-box{
    border: 3px dashed var(--white);
    border-radius: 0 23px;
    height: 100%;
    width: 100%;
    padding: 35px 20px;
    text-align: center;
    background: var(--white);
}
.statistics .medium-heading h2{
    color: var(--white);
    font-weight: 400;
}
.statistics-button{
    margin-bottom: 30px;
}
.statistics-button a{
    color: var(--white);
    background: var(--default-yellow);
    display: block;
    padding: 2px 10px;
    border-radius: 23px;
    font-size: 26px;
    font-weight: 600;
    border: 2px solid transparent;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.no-js .owl-carousel, .owl-carousel.owl-loaded{
    display: block !important;
}
.statistics-button a:hover{
    border-color: #8C827B;
    background: transparent;
    color: #8C827B;
}
.statistics-box h5{
    font-size: 26px;
    font-weight: 600;
    color: #8C827B;
    margin-bottom: 0;
}
/**********************************
    footer
**********************************/
footer{
    padding: 40px 0 30px;
    background: #FAFAF9;
}
.footer-links ul{
    margin-bottom: 27px;
}
.footer-links ul li{
    margin-bottom: 5px;
}
.footer-links ul li a{
    color: #8C827B;
    font-size: 18px;
    font-weight: 300;
    line-height: normal;
}
.footer-links ul li a:hover{
    color: var(--default-green);
}
.footer-social-icons-box{
    max-width: 250px;
    margin-right: auto;
}
.footer-logos-box{
    max-width: 280px;
    margin-right: auto;
}
.contact-us-button a{
    background: #fbd282;
    color: #8C827B;
    font-size: 18px;
    font-weight: 400;
    border-radius: 23px;
    padding: 8.5px 32px;
}
.social-icons ul li{
    margin-left: 17px;
}
.social-icons ul li a{
    color: var(--default-green);
    font-size: 28px;
}
.social-icons ul li a:hover{
    color: var(--default-yellow);
}
.copy-right-box{
    min-height: 80px;
    background: #D5D1C5;
}
.copy-right p{
    font-size: 13px;
    font-weight: 400;
    color: #8C827B;
    margin-bottom: 20px;
}

/**********************************
    success-stories-slider
**********************************/
.success-stories-slider-box{
    background: #F3F3F2;
    border-radius: 0 60px;
    padding: 60px 50px 10px;
}
.success-stories-text-box{
    background: #FFFFFF;
    border-radius: 0 40px;
    padding: 45px 20px;
    height: 100%;
}
.success-stories-text-box p{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 90px;
}
.owl-theme .owl-dots .owl-dot span{
    width: 14px;
    height: 14px;
    background: var(--black);
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background: var(--default-text-color);
}
.owl-theme .owl-nav.disabled+.owl-dots{
    margin-top: 30px;
}


/******************************
landing-page-detain-box
******************************/
.landing-page-content-area{
    padding: 160px 0 100px;
}
.landing-page-detain-box{
    background: linear-gradient(0deg, #FAFAF9, #FAFAF9);
    padding: 35px 27px;
}
.landing-page-detail .heading-bg{
    margin-bottom: 30px;
}


.dark-bg-color{
    padding: 30px 20px;
    background: linear-gradient(0deg, #FAFAF9, #FAFAF9);
    border-radius: 18px;
}
.mb-35{
    margin-bottom: 35px;
}
.border-l-r{
    border-left: 1px solid #C4C4C4;
    border-right: 1px solid #C4C4C4;
}




.about-detail-box .medium-heading-28{
    margin-bottom: 53px;
}
.about-detail-box {
    margin-top: 15px;
}
.reconciliation-center{
    margin-top: 80px;
    margin-bottom: 70px;
}
.peace-report-icons{
    margin-top: 30px;
    margin-bottom: 30px;
}
.vision-mission {
    margin-top: 130px;
}
.vision-mission .medium-heading{
    margin-bottom: 90px;
}
.vision-mission-text-box:not(:last-child){
    margin-bottom: 45px;
}
.vision-mission-text-box p:last-child{
    margin-bottom: 0;
}
.vision-mission-text-box .medium-heading-28{
    margin-bottom: 20px;
}

.objective-text-box{
    background: #388D85;
    border-radius: 38px 0;
    padding: 15px 55px;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
    flex-wrap: wrap;
}
.objective-text-box p:last-child{
    margin-bottom: 0;
}
.objective-text-box .count-text{
    position: absolute;
    top: 0;
    right: 20px;
    color: rgba(243, 243, 242, 0.31);
    font-weight: 600;
    font-size: 60px;
    line-height: normal;
}


/*==========================
faqs
==========================*/
.faqs-content-box .accordion-item{
    margin-bottom: 9px;
    background: linear-gradient(0deg, #FAFAF9, #FAFAF9);
    border: 2px solid #D5D1C5;
    box-sizing: border-box;
    border-radius: 22px;
}
.faqs-content-box .accordion-button{
    background: transparent;
    color: var(--default-green);
    font-size: 18px;
    font-weight: 600;
    padding: 11px 20px;
}
.faqs-content-box .accordion-button:focus{
    box-shadow: none;
}
.faqs-content-box .accordion-button:not(.collapsed){
    box-shadow: none;
}
.faqs-content-box .accordion-body{
    /*border-top: 2px solid #D5D1C5;*/
    padding: 0 20px 11px;
}
.faqs-content-box .accordion-body p:last-child{
    margin-bottom: 0;
}
.faqs-content-box .accordion-button::after{
    background: url('../images/plus.png');
    width: 17px;
    height: 16px;
}
.faqs-content-box .accordion-button:not(.collapsed)::after{
    background: url('../images/minus.png');
    width: 14px;
    height: 2px;
}



/*=====================
how it work page css
======================*/
.grey-bg-color-box{
    background: #C4C4C4;
    border-radius: 23px;
    padding: 20px;
    min-height: 205px;
}
.reconciliation-mechanism-icon-box{
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px dashed #7D7C7D;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 22px;
    position: relative;
    background: #fff;
}
.reconciliation-mechanism-box{
    position: relative;
    height: 100%;
}
.reconciliation-mechanism-box:after {
    content: '';
    position: absolute;
    right: 60%;
    top: 68px;
    width: 80%;
    height: 1px;
    border-top: 1px dashed #7D7C7D;
    z-index: -1;
}
.reconciliation-mechanism .col-12:last-child .reconciliation-mechanism-box:after{
    content: none;
}
.reconciliation-mechanism-button a{
    background: var(--default-green);
    display: block;
    margin-bottom: 15px;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    padding: 9px 10px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all ease .5s;
}
.reconciliation-mechanism-button a:hover{
    background: transparent;
    border-color: var(--default-green);
    color: var(--default-green);
}
.reconciliation-mechanism-box .count-number{
    font-size: 60px;
    font-weight: 600;
    line-height: normal;
}
.reconciliation-mechanism-box p{
    font-weight: bold;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.reconciliation-mechanism-box p:last-child{
    margin-bottom: 0;
}

/*=======================
news-and-events
========================*/
.event-about-text-box{
    margin-top: 24px;
}
.news-and-events-detail-box .small-heading{
    margin-bottom: 13px;
}
.event-about-text-box h2{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.read-more-btn{
    font-weight: 500;
    color: #848484;
}
.read-more-btn:hover{
    color: var(--default-green);
}
.events-search-box .btn{
    background: var(--default-yellow);
    color: var(--white);
    font-size: 18px;
    line-height: normal;
    font-weight: 600;
    padding: 7px 25px;
    border-radius: 25px;
    margin-right: 12px;
}
.events-search-box .btn:hover{
    background: var(--default-green);
}
.events-search-box .form-control{
    background: #FFFFFF;
    border: 1px solid #C4C4C4;
    box-sizing: border-box;
    border-radius: 7px;
}
.btn-check:focus+.btn, .btn:focus,
.form-control:focus{
    box-shadow: none;
}

.events-search-form-box{
    margin-bottom: 57px;
}
.events-detail-box{
    background: linear-gradient(0deg, #FAFAF9, #FAFAF9);
    padding: 32px 15px;
    height: calc(100% - 95px);
}
.events-detail-box .polygon-bg h2,
.events-polygon-box{
    padding-right: 36px;
}
.events-detail-box .polygon-bg h2:after{
    background-size: 70%;
    top: -12px;
}
.event-services-box{
    padding: 68px 0 56px;
}
.services-detail-box{
    padding: 20px;
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    margin-bottom: 30px;
}
.services-detail-box:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 112, 102, 0.4);
}
.services-detail-box .medium-heading h2{
    color: #fff;
    z-index: 1;
    position: relative;
    margin-bottom: 0;
}

.related-news-main-box{
    background: linear-gradient(0deg, #FAFAF9, #FAFAF9);
    border: 2px solid #D5D1C5;
    box-sizing: border-box;
    border-radius: 22px;
    padding: 35px 25px 40px;
    position: relative;
    margin-bottom: 30px;
}
.related-news-image {
    border-radius: 15px;
    overflow: hidden;
    display: inline-block;
    margin-left: 42px;
}
.news-read-more-button{
    margin-top: 30px;
}
.news-read-more-button a{
    background: #D6D1C5;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 1px 24px;
    border-radius: 23px;
    border: 2px solid transparent;
}
.news-read-more-button a:hover{
    border-color: #D6D1C5;
    background: transparent;
    color: #D6D1C5;
}
.share-news-box {
    position: absolute;
    bottom: 7px;
    left: 10px;
}
.share-news-box ul li{
    margin: 0 9px;
}
.share-news-box ul li a{
    color: var(--default-green);
}
.share-news-box ul li:first-child a{
    color: #7D7C7D;
}
.peace-path-icon-box{
    margin-bottom: 28px;
}
.peace-detail-text p{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.peace-path-content-area{
    padding-bottom: 150px;
}
.border-left{
    position: relative;
}
.border-left:after{
    content: '';
    position: absolute;
    left: -32px;
    width: 1px;
    height: 100%;
    top: 0;
    background: #C4C4C4;
}


.peace-path-content-box {
     padding: 0 20px;
 }
.peace-path-content .col-12:last-child .border-left:after{
    content: none;
}
.peace-path-content{
    position: relative;
    max-width: 1170px;
    margin: auto;
}
.peace-path-content:before{
    content: '';
    position: absolute;
    top: -90px;
    left: 0;
    height: 110%;
    width: 100%;
    background: url('../images/dashed-border-line.png') no-repeat;
    z-index: -1;
}