    @import "https://use.fontawesome.com/releases/v5.8.1/css/all.css";
    @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.2/font/bootstrap-icons.css");
    @import url("https://cdn.lineicons.com/3.0/lineicons.css");
    @import url('https://cdn.jsdelivr.net/npm/@fancyapps/ui@4.0/dist/fancybox.css');
    @import url('https://unpkg.com/aos@next/dist/aos.css');
    @import url('../vendors/pincode/css/jquery-pincode-autotab.css');
    @import url('../css/owl.carousel.min.css');
    @import url('../css/toastify.css');
    @import url('../css/dropzone.min.css');
    @import url('../css/dropzone-basic.css'); 
  
    @font-face {
		font-family: "light"; 
		src:url("../fonts/frutiger-lt-arabic-cufonfonts/FrutigerLTArabic45Light.ttf") format("truetype");
	}    
	@font-face {
		font-family: "roman"; 
		src:url("../fonts/frutiger-lt-arabic-cufonfonts/FrutigerLTArabic55Roman.ttf") format("truetype");
	}    
	@font-face {
		font-family: "bold"; 
		src:url("../fonts/frutiger-lt-arabic-cufonfonts/FrutigerLTArabic65Bold.ttf") format("truetype");
	}       
	@font-face {
		font-family: "black"; 
		src:url("../fonts/frutiger-lt-arabic-cufonfonts/frutigerltarabic75black.ttf") format("truetype");
	} 

    :root{
        --theme-color:  4,135,69;
        --theme-color-2:  0, 88, 55;
        --dark-color: 26, 24, 24;
    }

    h1, h2 ,h3 ,h4 ,h5, h6{
        font-family: 'bold', sans-serif;
    }
    body {
        width: 100%;
        font-family: 'roman', sans-serif;
        font-size: 14px;
    }
    a,a:hover {
        text-decoration: none;
    }
    .text-theme{
        color:  rgb(var(--theme-color));
    }
    form.disabled{
        opacity: .75;
        pointer-events: none;
    }
    .text-theme{
        color: rgb(var(--theme-color)) !important;
    }
    section{
        padding: 20px 0;
    }
    
      /*------------------------------------------
	  
    ------------------------------------------*/
@media screen and (max-width:1024px) { CSS FOR Max WIDTH 1024Px }
@media screen and (max-width:768px) { CSS FOR Max WIDTH 768Px }
@media screen and (max-width:640px) { CSS FOR Max WIDTH 640Px }
@media screen and (max-width:480px) { CSS FOR Max WIDTH 480Px }
@media screen and (max-width:320px) { CSS FOR Max WIDTH 320Px }

 /*------------------------------------------
	  
    ------------------------------------------*/
@media screen and (max-width:1024px) { CSS FOR MIN WIDTH 1024Px }
@media screen and (max-width:768px) { CSS FOR MIN WIDTH 768Px }
@media screen and (max-width:640px) { CSS FOR MIN WIDTH 640Px }
@media screen and (max-width:480px) { CSS FOR MIN WIDTH 480Px }
@media screen and (max-width:320px) { CSS FOR MIN WIDTH 320Px }


    /*------------------------------------------
        button
    ------------------------------------------*/

	.btn{
		position: relative;
		overflow: hidden;
        height: 50px;
        line-height: 45px;
        font-size: 16px;
        padding: 0;
        border-radius: 16px;
		transition: all ease-in-out .5s;
        outline: none !important;
        box-shadow: none !important; 
	}
	.btn::after {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 25%;
		height: 100%;
		width: 50%;
		background-color: #fff;
		border-radius: 50%;
		opacity: 0;
		pointer-events: none;
		transition: all ease-in-out 0.5s;
		transform: scale(5, 5);
	}
	.btn:active::after{
		padding: 0;
		margin: 0;
		opacity: .2;
		transition: 0s;
		transform: scale(0, 0);
	}
    .btn-primary{
        background-color:  #007588;
        border-color:  #007588;
        color: #fff;
    }
    .btn-primary{
        background-color:  #007588;
        border-color:  #007588;
        color: #fff;
    }
    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active{
        background-color:  #005837;
        border-color:  #005837;
        color: #fff;
    }
    .btn-theme{
        background-color:  rgb(var(--theme-color));
        border-color:  rgb(var(--theme-color));
        color: #fff;
    }
    .btn-theme:hover,
    .btn-theme:focus{
        background-color: rgb(var(--theme-color-2));
        border-color:  rgb(var(--theme-color-2));
        color: #fff;
    } 

    .btn-theme-light{
        background-color:  #fff;
        border-color:  #fff;
        color: rgb(var(--theme-color));
    }
    .btn-theme-light:hover,
    .btn-theme-light:focus{
        background-color: rgb(var(--theme-color-2));
        border-color:  rgb(var(--theme-color-2));
        color: #fff;
    } 

    /*------------------------------------------
        loading-page
    ------------------------------------------*/
    
    .loading-page{
        position: fixed;
        width: 100%;
        height: 100vh;
        z-index: 999999;
        background-color: rgb(var(--theme-color));
        background-image: url(../img/footer-pattern.svg);
    }
    .loading-page #loading{
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        cursor: pointer;
    }
    .loading-page .loading {
      position: absolute;
      left: 50%;
      top: 50%; 
      transform: translate(-50%, -50%);
      background: #fff;
      width: 100px;
      height: 100px;
      border-radius: 100%;
    }
    .loading-page .loading:after {
      content: '';
      background: trasparent;
      width: 140%;
      height: 140%;
      position: absolute;
      border-radius: 100%;
      top: -20%;
      left: -20%;
      opacity: 0.7;
      box-shadow: rgba(255, 255, 255, 0.6) -4px -5px 3px -3px;
      animation: rotate 1s infinite linear;
    }
    
    @keyframes rotate {
      0% {
        transform: rotateZ(0deg);
      }
      100% {
        transform: rotateZ(360deg);
      }
    }

    /*------------------------------------------
        nav-contact
    ------------------------------------------*/

    .nav-contact{
        position: relative;
        z-index: 999;
        display: flex;
        background-color: #fff;
        align-items: center;
        height: 50px;
        border-bottom: 1px solid rgb(var(--dark-color), .050);
    }
    .nav-contact .nav-contact-list{
        justify-content: flex-end; 
    }
    .nav-contact .nav-contact-list .nav-link{
        color: rgb(var(--dark-color));
        font-size: 14px;
        padding-top: 0;
        padding-bottom: 0;
        border-inline-end: 1px solid rgb(var(--dark-color), .050);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
    }
    
    .nav-contact .nav-contact-list .nav-link i{
        font-size: 20px;
    }
    .nav-contact .nav-contact-list .nav-link:hover{
        color:  rgb(var(--theme-color));
    }
    .nav-contact .nav-contact-list .nav-item:last-child .nav-link{
        border-inline-end: none;
    }
    
    /*------------------------------------------
        nav-payment
    ------------------------------------------*/

    .nav-payment{
        display: flex;
        align-items: center;
        height: 100px;
        background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
        background: #FFFFFF 0% 0% no-repeat padding-box;
        box-shadow: 0px 3px 16px #0000001A;
    }
    
    .nav-payment .btn-back{
        font-size: 30px;
        display: flex;
        align-items: center;
        color: rgb(var(--dark-color));
    }
    .nav-payment .btn-back span{
        font-size: 20px;
        margin-bottom: .5rem;
    }
    .nav-payment .btn-back:hover{
        color: rgb(var(--theme-color));
    }
    [dir="ltr"] .nav-payment .btn-back i{
        transform: rotate(180deg);
    }

    /*------------------------------------------
        Navbar
    ------------------------------------------*/
    
    .navbar{
        z-index: 998;
        background-color: #fff;
        background-image: url(../img/navbar-pattern.svg);
        background-size: cover;
        padding: 0;
        box-shadow: 0px 3px 26px #6D6F7429;
    }
    .navbar-nav {
        gap: 30px;
    }
    .navbar-nav .nav-link{
        position: relative;
        color: rgb(var(--dark-color));
        font-size: 16px;
        padding: 0 !important;
        height: 100px;
        font-family: "bold";
        line-height: 100px;
        transition: all 0.35s ease;
    }
    .navbar-nav .nav-link::before{
        position: absolute;
        content: "";
        bottom: 0;
        left: 50%;
        width: 0;
        height: 5px;
        background:  rgb(var(--theme-color));
        border-radius: 5px;
        transform: translateX(-50%);
        transition: all 0.35s ease;
    }
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover{
        color:  rgb(var(--theme-color));
        font-family: "bold";
    }
    .navbar-nav .nav-link.active::before,
    .navbar-nav .nav-link:focus::before,
    .navbar-nav .nav-link:hover::before{
        width: 30px;
    }

    .dropdown-menu{ 
        width: 197px;
        border: none;
        background: #FFFFFF;
        box-shadow: 0px 3px 26px #00000029;
        border-radius: 10px;
        padding: 1rem;
    }
    .dropdown-menu .dropdown-item{
        height: 50px;
        line-height: 45px;
        border-radius: 14px;
        transition: all .3s ease;
        padding: 0 1rem;
        color: rgb(var(--dark-color));
        font-size: 16px;
    }
    .dropdown-menu .dropdown-item:hover{
        background: rgba(var(--theme-color), 0.2);
    }
    .dropdown-menu .dropdown-item:active,
    .dropdown-menu .dropdown-item:focus{
        background: rgba(var(--theme-color));
        color: #fff;
    }
   
    /*------------------------------------------
        Header
    ------------------------------------------*/

    .owl-header-box{
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 70px;
        overflow: hidden;
        margin-block-start: 20px;
    } 
    .owl-header-box::before{
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0.3;
        z-index: 1;
    }
    .owl-header-box .header-pic{
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    .owl-header-box .owl-header-box-content{
        position: absolute;
        content: "";
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        text-align: center;
        max-width: 670px;
        width: 100%;
    }
    .owl-header-box .owl-header-box-content .title{
        color: #fff;
        font-size: 34px;
        margin-bottom: 40px;
    }
    .owl-header-box .owl-header-box-content .info{
        color: #fff;
        font-size: 20px;
        line-height: 38px;
        margin-bottom: 40px;
    }
    .owl-header-box .owl-header-box-content .btn-theme{
        max-width: 270px;
        width: 100%;
    }
    #header .owl-nav.disabled+.owl-dots{
        position: absolute;
        bottom: 45px;
        left: 50%;
        transform: translateX(-50%);
    }

    .inner-header{
        display: flex;
        align-items: center;
        min-height: 70px;
        background-color: rgb(var(--theme-color));
    }
    .inner-header .breadcrumb{
        margin-bottom: 0;
    }
    .inner-header .breadcrumb-item,
    .inner-header .breadcrumb-item+.breadcrumb-item::before,
    .inner-header .breadcrumb-item.active{
        color: #fff;
    }


    /*------------------------------------------
        About Section
    ------------------------------------------*/
    
    .about-section{
        padding: 100px 0;
        background-color: #EEFFFA;
    }
    .about-container{
        display: block;
    }
    .about-container .about-pic{
        position: relative;
        min-width: 370px;
        width: 370px;
        height: 370px;
        border-radius: 20px;
        overflow: hidden;
        margin-inline-end: 130px;
        box-shadow: -53px 3px 46px  rgb(var(--theme-color) .29);
    }
    .about-container .about-pic .about-img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .about-container .about-pic .btn-video{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease;
    } 
    .about-container .about-pic .btn-video:hover{
        transform: translate(-50%, -50%) scale(1.1);
    }


    .about-container .about-content .info{
        color: #6D6F74;
        font-size: 16px;
        line-height: 31px;
        margin-bottom: 60px;
    }
    .about-container .about-content .btn{
        min-width: 170px;
    }
    .about-section-inner{
        padding: 60px 0;
    }
    #about-sidebar{
        
        position: sticky;
        top: 120px;
    }
    .about-sidebar{
        width: 100%;
        background: #FFFFFF;
        border: 1px solid #D1D8E5;
        border-radius: 14px;
        padding: 24px 20px;
        margin-bottom: 2rem;
    }
    .about-sidebar .nav-link{
        display: flex;
        align-items: center;
        height: 52px;
        line-height: 52px;
        border-radius: 14px;
        font-weight: bold;
        color: rgb(var(--dark-color));
    } 
    .about-sidebar .nav-link .icon{
        margin-inline-end: 20px;
    }
    .about-sidebar .nav-link .icon svg path,
    .about-sidebar .nav-link .icon svg circle{ 
        stroke: rgb(var(--dark-color));
    }
    .about-sidebar .nav-link:hover{
        color: rgb(var(--theme-color));
        background-color: rgb(var(--theme-color), .2);
    }
    .about-sidebar .nav-link:hover .icon svg path,
    .about-sidebar .nav-link:hover .icon svg circle{ 
        stroke: rgb(var(--theme-color));
    }
    .about-sidebar .nav-link:active,
    .about-sidebar .nav-link:focus,
    .about-sidebar .nav-link.active{
        color: #fff;
        background-color: rgb(var(--theme-color));
    }
    
    .about-sidebar .nav-link:focus .icon svg path,
    .about-sidebar .nav-link.active .icon svg path,
    .about-sidebar .nav-link:focus .icon svg circle,
    .about-sidebar .nav-link.active .icon svg circle{ 
        stroke: #fff;
    }

    .tab-about .title{
        font-size: 36px;
        color: rgb(var(--dark-color));
        margin-bottom: 60px;
    }
    .tab-about .sub-title{
        font-size: 18px;
        color: rgb(var(--dark-color));
        margin-bottom: 30px;
    }
    .tab-about .info{
        font-size: 16px;
        line-height: 30px;
        color: #6D6F74;
        margin-bottom: 100px;
        text-align: justify;
    }

    .about-info-box{
        border-radius: 14px;
        border: 1px solid #D1D8E5;
        background-color: rgb(var(--theme-color), .1);
        padding: 40px;
        margin-bottom: 30px;
        min-height: 266px;
    }
    .about-info-box .title{
        margin-bottom: 30px;
        font-size: 20px;
        color: rgb(var(--dark-color));
    }
    .about-info-box .info ul > li,
    .about-info-box .info{
        font-size: 16px;
        line-height: 30px;
        color: #6D6F74;
        margin-bottom: 0;
    }

    .user-box{
        border-radius: 12px 12px;
        position: relative;
        margin-bottom: 1.5rem;
        overflow: hidden;
        transition: all .3s ease;
        box-shadow: 0px 0px 12px #3D2E511A;
    }
    .user-box .pic{
        width: 100%; 
        height: 306px;
        overflow: hidden;
    }
    .user-box .pic img{
        width: 100%; 
        height: 100%;
        object-fit: cover;
        transition: all .3s ease;
    } 
    .user-box .content{
        padding: 18px;
        text-align: center;
    }
    .user-box .content .agree{
        font-family: "roman";
        font-size: 14px;
        color: #6D6F74;
        margin-bottom: 10px;
    }
    .user-box .content .name{
        font-size: 18px;
        color: rgb(var(--dark-color));
        margin-bottom: 0;
        transition: all .3s ease;
    }
    .user-box:hover{
        box-shadow: 0px 15px 12px #3D2E511A;
        transform: translateY(-.25rem);
    }
    .user-box:hover .content .name{
        color: rgb(var(--theme-color));
    }

    /*------------------------------------------
        Section title
    ------------------------------------------*/
    
    .section-title{
        margin-bottom: 50px;
    }
    .section-title .title{
        color: rgb(var(--dark-color));
        font-size: 32px;
        margin-bottom: 21px;
    }
    .section-title .info{
        color: #6D6F74;
        font-size: 16px;
        line-height: 31px;
        margin-bottom: 0;
    }
    .section-title.text-white .title{
        color: #fff;
    }
    .section-title.text-white .info{
        color: #F7F7F7;
    }
    
    /*------------------------------------------
        service section
    ------------------------------------------*/
    
    .service-section{
        padding: 69px 0;
        background-color:  rgb(var(--theme-color));
        background-image: url(../img/pattern-1.svg);
        background-repeat: no-repeat;
        background-position: left;
    }
    .service-box{
        min-width: 154px;
        height: 165px;
        display: block;
        background-color: #fff;
        border-radius: 16px;
        text-align: center;
        padding-top: 40px;
        transition: all 0.3s ease;
        margin-top: .5rem;
    }
    .service-box .icon{
        width: 50px;
        height: 50px;
        margin: 0 auto 20px;
    }
    .service-box .icon .green{
        display: none;
        transition: all 0.3s ease;
    }
    .service-box .title{
        color: rgb(var(--dark-color));
        font-size: 16px;
        font-family: "bold";
        transition: all 0.3s ease;
    }
    .service-box:hover{
        transform: translateY( -.5rem);
    }
    .service-box:hover .title{
        color:  rgb(var(--theme-color));
    }
    .service-box:hover  .icon .green{
        display: block;
    }
    .service-box:hover  .icon .black{
        display: none;
    }
    
    #service{
        position: relative;
    }
    #service .owl-dots{
        margin-top: 42px;
    }
    .owl-theme .owl-dots .owl-dot span{
        background-color: rgb(255, 255, 255, .5);
    }
    .owl-theme .owl-dots .owl-dot.active span,
    .owl-theme .owl-dots .owl-dot:hover span{
        background-color: #fff;
    }
    .owl-theme .owl-nav.disabled{
        display: none !important;
    }
    @media (min-width: 520px){
        #service .owl-nav{
            position: absolute;
            width: calc(100% + 140px);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: -1;
            margin: 0;
            display: flex;
            justify-content: space-between;
            margin-top: -30px;
        }
    }
    #service .owl-nav [class*=owl-]{
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 50%;
        border: 1px solid #fff;
        color: #fff;
        padding: 0;
        margin: 0;
        text-align: center;
    }
    #service .owl-nav [class*=owl-]:hover{
        background-color: #fff;
        color: rgb(var(--theme-color));
    } 
    #service .owl-nav [class*=owl-].disabled{
        opacity: 0;
    }
    [dir="ltr"] #service .owl-nav [class*=owl-]{
        transform: rotateY(-180deg);
    }

    /*------------------------------------------
        donate section
    ------------------------------------------*/

    .donate-section{
        display: block;
        padding: 40px 0;
    }
    .donate-box{
        position: relative;
        display: block;
        height: 267px;
        background-color:  rgb(var(--theme-color));
        border-radius: 30px;
        overflow: hidden;
    }
    .donate-box::before{
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: transparent linear-gradient(258deg, rgba(var(--theme-color), 0) 0%, rgba(var(--theme-color), 0.9) 35%, rgba(var(--theme-color), 1) 100%);
        z-index: 1;
    }
    [dir="ltr"] .donate-box::before{
        background: transparent linear-gradient(-258deg, rgba(var(--theme-color), 0) 0%, rgba(var(--theme-color), 0.9) 35%, rgba(var(--theme-color), 1) 100%);
    }
    .donate-box .donate-pic{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    [dir="ltr"] .donate-box .donate-pic{
        transform: rotateY(180deg);
    }
    .donate-box .content{
        position: absolute;
        top: 50%;
        left: 200px;
        transform: translateY(-50%);
        z-index: 2;
        max-width: 520px;
    }
    [dir="ltr"] .donate-box .content{
        left: auto;
        right: 200px;
    }
    .donate-box .content .title{
        font-size: 18px;
        line-height: 40px;
        margin-bottom: 40px;
        color: #fff;
    }
    .donate-box .content .btn{
        min-width: 170px;
    }

    /*------------------------------------------
        achievements-section
    ------------------------------------------*/
    
    .achievements-section{
        padding: 60px 0;
    }
    .achievements-box{
       /* max-width: 171px;*/
        min-width: 161px;
        border: 0.5px solid rgba(164, 164, 164, 1);
        border-radius: 16px;
        text-align: center;
        padding: 30px;
        cursor: pointer;
        transition: all .3s ease;
    }
    .achievements-box .count{
        font-size: 36px;
        margin-bottom: 0;
    }
    .achievements-box .title{
        font-size: 18px;
        line-height: 36px;
        margin-bottom: 13px;
        color: rgba(109, 111, 116);
    }
    .achievements-box:hover{ 
        box-shadow: 0px 3px 26px rgb(var(--theme-color),.2);
        transform: scale(1.1);
        border: 0.5px solid rgba(var(--theme-color));
        background-color: rgba(var(--theme-color), .1);
    }
    .achievements-box:hover .count{ 
        color: rgba(var(--theme-color));
    }

    /*------------------------------------------
        media-section
    ------------------------------------------*/
    
    .media-section{
        padding: 60px 0;
    }
    .media-box{
        position: relative;
        display: block;
        width: 100%;
        min-height: 370px;
        max-height: 416px;
        border-radius: 12px;
        margin-bottom: 1.5rem;
        overflow: hidden;
        transition: all .3s ease;
    }
    .media-box::before{
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background: transparent linear-gradient(180deg, rgba(var(--theme-color), 0) 0%, rgba(var(--theme-color), 0.01) 0%, rgba(var(--theme-color), 1) 100%);
        z-index: 2;
        transition: all .3s ease;
    }
    .media-box:hover::before{
        background: transparent linear-gradient(180deg, rgba(var(--theme-color), 0) 0%, rgba(var(--theme-color), 0.01) 0%, rgba(var(--theme-color-2), 1) 100%);
    }
    .media-box .media-pic{
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all .3s ease;
    }
    .media-box:hover .media-pic{
        transform: scale(1.2) rotate(4deg);
    }
    .media-box .btn-video{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
    }
    .media-box .content{
        position: absolute;
        bottom: 0;
        width: 100%;
        z-index: 2;
        padding: 30px;
        color: #fff;
    }
    .media-box .content .title{
        font-size: 16px;
        margin-bottom: 10px;
    }
    .media-box .content .info{
        font-size: 13px;
        line-height: 24px;
        margin-bottom: 10px;
    }
    .media-box .content .date{ 
        margin-bottom: 0;
    }
    .media-section .section-title .title{
        line-height: 1.7;
    }
    .media-section .section-title .pic{ 
        min-height: 500px; 
        border-radius: 30px;
        overflow: hidden;
        margin: 60px 0;
    }
    .media-section .section-title .pic img{ 
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    /*------------------------------------------
        initiatives-section
    ------------------------------------------*/
    
    .initiatives-section{
        padding: 60px 0;
        background-image: url(../img/pattern.svg);
        background-size: cover;
    }
    .initiatives-box{
        position: relative;
        background-color: #fff;
        margin-bottom: 1.5rem;
        overflow: hidden;
        border-radius: 16px
    }
    .initiatives-box .pic{
        position: relative;
        width: 100%;
        height: 220px;
        overflow: hidden;
        background-color: rgb(var(--theme-color));
    }
    .initiatives-box .pic img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all .3s ease;
    }
    .initiatives-box:hover .pic img{
        transform: scale(1.1) rotate(4deg);
        opacity: .7;
    }
    .initiatives-box .content{
        padding: 20px;
    }
    .initiatives-box .content .title{
        color: rgb(var(--dark-color));
        font-size: 16px;
    }
    .initiatives-box .content .info{
        color: rgba(109, 111, 116, 1);
        font-size: 14px;
        line-height: 22px;
    }

    .form-donate{
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }
    .form-donate .form-addon{
        max-width: 220px;
        position: relative;
        margin-inline-end: 1rem;
    }
    .form-donate .form-addon .form-control{
        direction: rtl;
        padding-inline-end: 3rem;
        text-align: right;
        height: 40px;  
        border: 1px solid rgba(112, 112, 112, .25);
        border-radius: 16px;
        box-shadow: none;
    }
    [dir="ltr"] .form-donate .form-addon .form-control{
        direction: ltr;
    }
    .form-donate .form-addon span{
        position: absolute;
        top: 6px;
        left: 1rem;
        color: rgba(109, 111, 116, 1);
    }
    [dir="ltr"] .form-donate .form-addon span{
        left: auto; 
        right: 1rem; 
    }
    .form-donate .btn{
        max-width: 120px;
        width: 100%;
        height: 40px;
        line-height: 35px;
    }
    .initiatives-box .nav-share .nav-link{
        padding: 0;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        color: rgb(var(--theme-color));
        font-size: 20px;
        border-radius: 50%;
    }
    .initiatives-box .nav-share .nav-link:hover{
        color: #fff;
        background-color: rgb(var(--theme-color));
    }
    
    .initiatives-section.bg-transparent{ 
        background-image:none;
    }
    .nav-initiatives{
        display: inline-flex;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        width: auto;
        height: 54px;
        background: #F5F5F5;
        border-radius: 27px;
        margin: auto;
        margin-bottom: 30px;
        padding: 0 1rem;
    }
    .nav-initiatives .nav-link{
        width: 174px;
        height: 42px;
        font-size: 16px;
        background: transparent;
        border-radius: 25px;
        color: rgb(var(--dark-color));
        text-align: center;
    }
    .nav-initiatives .nav-link:hover{
        color: rgb(var(--theme-color));
        background-color: rgb(var(--theme-color), .1); 
    }
    .nav-initiatives .nav-link.active,
    .nav-initiatives .nav-link:focus{
        color: #fff;
        background-color: rgb(var(--theme-color)); 
    }

    .initiatives-box-full .progress{
        background: #F8F8F8;
        border-radius: 10px;
        margin-top: calc(40px - 1rem);
    }
    .initiatives-box-full .progress-bar {
        background-color: rgb(var(--theme-color));
    }
    .initiatives-box-full .form-donate .form-addon {
        max-width: 100%;
    }
    .initiatives-box-full .remaining-amount{
        margin: 20px 0;
        font-size: 16px;
        color: #6D6F74;
        font-weight: 400;
    }
    .initiatives-box-full .remaining-amount span{
        margin-inline-start: 1rem;
        font-size: 18px;
        font-weight: bold;
        color: rgb(var(--dark-color));
    }

    /*------------------------------------------
        patient-box
    ------------------------------------------*/
    
    .patient-section{
        padding: 60px 0;
    }
    .patient-box{
        position: relative;
        height: 250px;
        border-radius: 30px;
        overflow: hidden;
        background-image: url(../img//patient.png);
        background-size: cover;
    }
    .patient-box::before{
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: transparent linear-gradient(-258deg, rgba(87, 200, 232, 0) 0%, rgba(87, 200, 232, 0.92) 52%, rgba(13, 118, 142, 1) 100%) 0% 0% no-repeat padding-box;
        z-index: 1;
    }
    [dir="ltr"] .patient-box::before{
        background: transparent linear-gradient(258deg, rgba(87, 200, 232, 0) 0%, rgba(87, 200, 232, 0.92) 52%, rgba(13, 118, 142, 1) 100%) 0% 0% no-repeat padding-box;
    }
    
    .patient-box::after{
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: url(../img/patient-pattern.png);
        z-index: 2;
    }
    .patient-box .content{
        position: absolute;
        top: 50%;
        right: 100px;
        transform: translateY(-50%);
        z-index: 3;
        max-width: 330px;
        color: #fff;
    }
    .patient-box .content .title{
        font-size: 32px;
        margin-bottom: 15px;
    }
    .patient-box .content .info{
        font-size: 14px;
        margin-bottom: 30px;
    }
    .patient-box .content .btn{
        min-width: 170px;
        color: rgba(13, 118, 142, 1);
    }
    .patient-box .content .btn:hover,
    .patient-box .content .btn:focus{ 
        background-color: rgba(13, 118, 142, 1);
        border-color: rgba(13, 118, 142, 1);
        color: #fff;
    }

    /*------------------------------------------
        Partner
    ------------------------------------------*/
    .partner-section{
        padding: 60px 0;
    }

    .partner-box{
        display: block;
        text-align: center;
    }
    .partner-box .pic{ 
        background: #fff;
        border: 1px solid rgba(64, 69, 83, 0.16);
        border-radius: 16px;
        height: 150px;
        transition: all .3s ease;
    }
    .partner-box .pic img{ 
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all .3s ease;
    }
    .partner-box:hover .pic img{
        transform: scale(.9);
        
    }
    .partner-box .title{
        font-size: 14px;
        color: rgba(109, 111, 116, 1);
        margin-top: 20px;
        transition: all .3s ease;
    }
    .partner-box:hover .title{
        color: rgb(var(--theme-color));
    }
    
    #partner{
        position: relative;
    } 
    @media (min-width: 520px){
        #partner .owl-nav{
            position: absolute;
            width: calc(100% + 140px);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: -1;
            margin: 0;
            display: flex;
            justify-content: space-between;
            margin-top: -28px;
        }
    }
    #partner .owl-nav [class*=owl-]{
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 50%;
        border: 1px solid rgba(64, 69, 83, 0.16);
        color: rgba(109, 111, 116, 1);
        padding: 0;
        margin: 0;
        text-align: center;
    }
    #partner .owl-nav [class*=owl-]:hover{
        background-color: rgb(var(--theme-color)) !important;
        color: #fff;
    } 
    #partner .owl-nav [class*=owl-].disabled{
        opacity: 0;
    }
    [dir="ltr"] #partner .owl-nav [class*=owl-]{
        transform: rotateY(-180deg);
    }

    /*------------------------------------------
        footer
    ------------------------------------------*/
    
    .footer{
        padding: 60px 0;
        background-color: rgb(var(--dark-color));
        background-image: url(../img/footer-pattern.svg);
        color: #fff;
    }

    .footer .footer-about .title{
        font-size: 14px;
        line-height: 30px;
        margin-top: 14px;
    }

    .footer-contact .title,
    .footer-links .title{
        font-size: 16px;
        margin-bottom: 20px;
    }
    .footer-links .nav .nav-link{
        position: relative;
        font-size: 14px;
        color: #fff;
        padding-inline-start: 0;
        transition: all .3s ease;
    }
    .footer-links .nav .nav-link::before{
        position: absolute;
        content: "-";
        opacity: 0;
    }
    .footer-links .nav .nav-link:hover{
        padding-inline-start: 1rem;
        color: rgb(var(--theme-color));
    }
    .footer-links .nav .nav-link:hover::before{
        right: 0;
        opacity: 1;
    }
    [dir="ltr"] .footer-links .nav .nav-link:hover::before{
        right: auto;
        left: 0;
    }
    
    .footer-contact {
        text-align: center;
    }
    .footer-contact .nav-contact-us{
        margin-bottom: 30px;
        justify-content: flex-start;
    }
    .footer-contact .nav-contact-us .nav-link{
        position: relative;
        font-size: 16px;
        color: #fff;
        padding-inline-start: 0;
        transition: all .3s ease;
    }
    .footer-contact .nav-contact-us .nav-link:hover{
        color: rgb(var(--theme-color));
    }
    .footer-contact .nav-social-media{
        justify-content: center;
    }
    .footer-contact .nav-social-media .nav-link{
        font-size: 20px;
        color: #fff;
        transition: all .3s ease;
    }
    .footer-contact .nav-social-media .nav-link:hover{
        color: rgb(var(--theme-color));
        transform: scale(1.1);
    }
    .hr-footer{
        margin-top: 60px;
        margin-bottom: 30px;
    }
    .copyright{
        text-align: center;
        font-size: 14px;
        color: rgba(255, 255, 255, 1);
    }

    /*------------------------------------------
        library section

    ------------------------------------------*/
    .library-section{
        padding: 60px 0;
    }
    .book-box{
        display: block;
        position: relative;
        margin-bottom: 1.5rem;
        transition: all .3s ease;
    }
    .book-box .pic{
        width: 100%;
        height: 370px;
        overflow: hidden;
        background: #F4F4F4;
        border-radius: 12px;
        padding: 40px;
        margin-bottom: 30px;
        transition: all .3s ease;
    }
    .book-box .pic img{
        border-radius: 6px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .book-box .content .title{
        font-size: 16px;
        color: rgb(var(--dark-color));
        transition: all .3s ease;
    }
    .book-box .content .info{
        font-size: 14px;
        color: #6D6F74;
    }
    .book-box .content .date{
        font-size: 14px;
        color: #6D6F74;
        margin-bottom: 0;
    } 
    .book-box:hover .pic{
        background-color: rgb(var(--theme-color),.2);
        box-shadow: 0px 5px 12px #3D2E511A;
    }
    .book-box:hover .content .title{
        color: rgb(var(--theme-color));
    }
    
    /*------------------------------------------
        nav-share
    ------------------------------------------*/
 
    .nav-share-2 .nav-link{
        padding: 0;
        width: 48px;
        height: 48px;
        line-height: 48px;
        text-align: center;
        color: #6D6F74;
        background: #F6F7FB;
        font-size: 20px;
        border-radius: 50%;
    }
    .nav-share-2 .nav-link:hover{
        color: #fff;
        background-color: rgb(var(--theme-color));
    }

    @media (min-width: 1300px ){
        .nav-share-2{
            position: absolute;
            top: 0;
            right: -88px;
            flex-direction: column;
        }
        .nav-share-2 .nav-item{
            margin-bottom: 15px;
        }
    }

    /*------------------------------------------
        policy-section
    ------------------------------------------*/

    .policy-section{
        padding: 60px 0;
    } 
    .policy-section .section-title .title{
        margin-bottom: 60px;
    }
    .policy-section .section-title .info{
        text-align: justify;
        color: #6D6F74;
    }

    /*------------------------------------------
        patient
    ------------------------------------------*/

    .card-patient{
        padding: 50px 100px;
        background: #FFFFFF;
        box-shadow: 0px 1px 26px #0000001A;
        border-radius: 30px;
        border-color: transparent;
    }
    .card-patient .form-group{
        margin-bottom: 20px;
    }
    .card-patient label{
        font-size: 16px;
        color: rgb(var(--dark-color));
        margin-bottom: 10px;
    }
    .card-patient .form-select,
    .card-patient .form-control{
        min-height: 50px;
        border: 1px solid rgb(112, 112, 112, .25);
        border-radius: 16px;
    }
    .card-patient .btn-more{
        width: 50px;
        height: 50px;
        line-height: 45px;
        font-size: 24px;
        margin-top: 34px;
        text-align: center;
        border: 1px solid rgb(112, 112, 112, .25);
    }
    .card-patient .btn-add:hover{
        color: #0acc95;
        border-color: rgb(10, 204, 149, .2);
        background-color: rgb(10, 204, 149, .2);
    }
    .card-patient .btn-add:focus{
        color: #fff;
        border-color: #0acc95;
        background-color: #0acc95;
    }
    .card-patient .btn-remove:hover{
        color: #ef5350;
        border-color: rgb(239, 83, 80, .2);
        background-color: rgb(239, 83, 80 ,.2);
    }
    .card-patient .btn-remove:focus{
        color: #fff;
        border-color: #ef5350;
        background-color: #ef5350;
    }
    /*------------------------------------------
        nav-contact-us
    ------------------------------------------*/

    .title-contact-us{
        font-size: 46px;
        color: var(--dark-color);
        margin-bottom: 60px;
    }
    .nav-contact-us .nav-link{
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgb(var(--dark-color));
        font-size: 16px;
    }
    .nav-contact-us .nav-link .icon{
        width: 40px;
        height: 40px;
        line-height: 35px;
        border: 2px solid rgb(var(--theme-color));
        border-radius: 12px;
        color: rgb(var(--theme-color));
        text-align: center;
        font-size: 20px;
    }
    .nav-contact-us .nav-link:hover .icon{
        color: #fff;
        background-color: rgb(var(--theme-color));
    }
    .card-contact{
        background: rgb(239, 255, 249, .25);
        border: 1px solid rgb(164, 164, 164, .25);
        border-radius: 24px;
        padding: 65px 100px;
    }
    .card-contact .form-group{
        margin-bottom: 1.5rem;
    }
    .card-contact .form-control{
        min-height: 50px;
        background: #FFFFFF;
        border: 1px solid rgb(112, 112, 112, .25);
        border-radius: 16px;
    }
    .map-box{
        width: 100%;
        height: 410px; 
        border: 1px solid #A4A4A4;
        border-radius: 24px;
        overflow: hidden;
        margin-bottom: 60px;
    }
    .form-control::placeholder{
        color: #6D6F74;
    }

    /*------------------------------------------
       table custom
    ------------------------------------------*/
    
    .table-custom {
        width: calc(100% - 3rem);
        margin: 1rem;
        vertical-align: middle;
    }
    .spacer{
        height: 20px;
        box-shadow: none !important;
    } 
    .table-custom tr{
        box-shadow: 0px 0px 12px #3D2E511A;
    }
    .table-custom tr:first-child{
        margin-bottom: 2rem; 
    }
    .table-custom th{
        height: 70px;
        line-height: 70px;
        background: rgb(var(--theme-color));
        color: #fff;
        padding: 0 .5rem;
    }
    .table-custom td:first-child,
    .table-custom th:first-child{
        border-radius: 0 6px 6px 0;
        text-align: center;
        overflow: hidden;
    }
    .table-custom td:last-child,
    .table-custom th:last-child{
        border-radius: 6px 0 0 6px;
        text-align: center;
        max-width: 320px;
        overflow: hidden;
    }
    .table-custom .action{
        display: flex;
        height: 70px;
        align-items: center;
    }
    .table-custom td{
        padding: 0 .5rem;
        height: 70px;
        line-height: 70px;
        font-size: 16px;
        font-weight: bold;
        color: rgb(var(--dark-color));
    }
    .table-custom td .btn{
        min-width: 50px;
        max-width: 150px;
        width: 100%;
    }
    
    /*------------------------------------------
        search box
    ------------------------------------------*/

    .search-box{
        padding: 40px 100px;
        border: 1px solid #40455319;
        border-radius: 30px;
    }
    .search-box .search-input{
        position: relative;
    }
    .search-box .search-input i{
        position: absolute;
        top: 0;
        right: 0;
        width: 60px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
        text-align: center;
    }
    [dir="ltr"] .search-box .search-input i{ 
        right: auto;
        left: 0;
    }
    .search-box .form-control{
        padding-inline-start: 60px; 
        height: 50px; 
        border: 1px solid rgb(112, 112, 112, 0.25);
        border-radius: 16px;
    }
    .search-result{
        margin-top: 60px;
    }
    .search-result .search-result-head{
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: rgb(var(--dark-color));
        margin-bottom: 30px;
    }
    .search-result .search-result-head .title{
        font-size: 24px;
        margin-bottom: 0;
    }
    .search-result .search-result-head .count{
        font-size: 18px;
        margin-bottom: 0;
    }
    .search-result .search-result-content .result-box{
        display: block;
        border: 1px solid #4045531A;
        border-radius: 16px;
        padding: 40px;
        margin-bottom: 15px;
        transition: all .3s ease;
    }
    .search-result .search-result-content .result-box .title{
        color: rgb(var(--dark-color));
        font-size: 20px;
        margin-bottom: 15px;
        transition: all .3s ease;
    }
    .search-result .search-result-content .result-box .info{
        color: #6D6F74;
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 0;
    }
    .search-result .search-result-content .result-box:hover{
        border: 1px solid rgb(var(--theme-color));
        background-color: rgb(var(--theme-color), .05);
    }
    .search-result .search-result-content .result-box:hover .title{
        color: rgb(var(--theme-color));
    }

    #search-modal .modal-dialog {
        max-width: 100%;
        margin: 0;
    }
    
    /*------------------------------------------
        money 
    ------------------------------------------*/
    
    .money-container{
        text-align: center;
        padding: 60px 0;
    }
    .money-container .money-head{
        margin-bottom: 40px;
    }
    .money-container .money-head .title{
        font-size: 32px;
        color: rgb(var(--dark-color));
    }
    .money-container .money-head .info{
        font-size: 16px;
        color: #6D6F74;
        margin-bottom: 0;
    } 
    .money-container .money-content{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    .money-container .money-content .money-box{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 210px;
        height: 220px;
        border: 1px solid rgb(164, 164, 164, .5);
        border-radius: 16px;
        margin-inline-end: 30px;
        transition: all .3s ease;
    }
    .money-container .money-content .money-box:last-child{
        margin-inline-end: 0;
    }
    .money-container .money-content .money-box .title{
        font-size: 36px;
        color: rgb(var(--dark-color));
    }
    .money-container .money-content .money-box .info{
        font-size: 18px;
        color: #6D6F74;;
        margin-bottom: 20px;
    }
    
    .money-container .money-content .money-box:hover{
        transform: translateY(-.5rem);
        background-color: rgb(var(--theme-color), .2);
    }
    .money-container .money-content .money-box:hover .title,
    .money-container .money-content .money-box:hover .info{
        color: rgb(var(--theme-color));
    } 

    /*------------------------------------------
        Research 
    ------------------------------------------*/
    
    .research-container{
        text-align: center;
        padding: 60px 0;
    }
    .research-container .research-head{
        margin-bottom: 40px;
    }
    .research-container .research-head .title{
        font-size: 32px;
        color: rgb(var(--dark-color));
    }
    .research-container .research-head .info{
        font-size: 16px;
        color: #6D6F74;
        margin-bottom: 0;
    } 
    .research-container .research-content{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    .research-container .research-content .research-box{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 270px;
        height: 270px;
        border: 1px solid rgb(164, 164, 164, .5);
        border-radius: 16px;
        margin-inline-end: 30px;
        transition: all .3s ease;
    }
    .research-container .research-content .research-box:last-child{
        margin-inline-end: 0;
    }
    .research-container .research-content .research-box .title{
        font-size: 66px;
        color: rgb(var(--dark-color));
    }
    .research-container .research-content .research-box .info{
        font-size: 16px;
        color: #6D6F74;;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .research-container .research-content .research-box:hover{
        transform: translateY(-.5rem);
        background-color: rgb(var(--theme-color), .2);
    }
    .research-container .research-content .research-box:hover .title,
    .research-container .research-content .research-box:hover .info{
        color: rgb(var(--theme-color));
    }
    .research-card{
        border-color: transparent;
        padding: 60px 100px;
        box-shadow: 0px 1px 26px #0000001A;
        border-radius: 30px;
    }
    .research-card .head{
        margin-bottom: 30px;
    }
    .research-card .head .title{
        font-size: 20px;
        margin-bottom: 10px;
        color: rgba(var(--dark-color));
    }
    .research-card .head .info{
        font-size: 16px;
        margin-bottom: 0;
        color: #6D6F74;
    }
    .research-card .content{
        font-size: 16px;
        margin-bottom: 0;
        color: #6D6F74;
    }
    /*------------------------------------------
        member-box
    ------------------------------------------*/
    
    .member-box{
        position: relative;
        margin-bottom: 1.5rem;
        border-radius: 14px;
        overflow: hidden;
        background-color: #fff;
        border: 1px solid #D1D8E5;
        transition: all .3s ease;
    }
    .member-box .pic{
        width: 100%;
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(var(--theme-color));
    }
    .member-box .pic img{
        max-width: 100%;
        max-height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(var(--theme-color));
    }
    .member-box .content{
        padding: 20px;
        text-align: center;
    }
    .member-box .content .title{
        font-size: 20px;
        color: rgba(var(--dark-color));
        margin-bottom: 15px;
    }
    .member-box .content .info{
        font-size: 18px;
        color: #6D6F74;
        margin-bottom: 20px;
    }
    .member-box .content .btn{
        max-width: 200px;
        width: 100%;
        box-shadow: 0px 3px 26px #00885529;
        border-radius: 16px;
    }
    .member-box:hover{
        transform: translateY(-.5rem); 
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    }
    .member-box:hover .content .title{ 
        color: rgba(var(--theme-color)); 
    }

    /*------------------------------------------
        payment way
    ------------------------------------------*/
    
    .payment-result .card,
    .payment-way-section .card{
        border-color: transparent;
        box-shadow: 0px 1px 26px #0000001A;
        border-radius: 30px;
        margin-bottom: 2rem;
        padding: 60px;
    }
    .payment-way-box{
		position: relative;
		display: flex;
		justify-content: space-between; 
        flex-wrap: wrap; 
        margin-bottom: 2rem;
	}
	.input-hidden {
		position: absolute;
		z-index: -1;
	} 
	.payment-way{
		text-align: center !important;
		cursor: pointer; 
		width: calc((100% / 4) - 1rem);
		height: 75px;
		display: flex;
        flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		overflow: hidden; 
		background: #F5F6FA ;
        border-radius: 6px;
	} 
	.payment-way svg path{ 
		fill: #6D6F74;
	}
	.payment-way span {
		color: #6D6F74;
		font-size: 14px;
	}
	.payment-way:hover svg path{ 
		fill: rgb(var(--theme-color));
	}  
	.payment-way:hover{ 
		background: rgb(var(--theme-color), .2) ;
		border-color: transparent;
		box-shadow: 0px 3px 30px rgb(var(--theme-color), .1); 
	} 
	.payment-way-box input[type=radio]:checked + label.payment-way {
		background-color: rgb(var(--theme-color), .1) ;
		box-shadow: 0px 3px 30px rgb(var(--theme-color), .1);
		border-color: var(--theme-color);
	} 
	.payment-way-box input[type=radio]:checked + label.payment-way svg path{
		fill: rgb(var(--theme-color));
	}
	.payment-way:hover span, .payment-way-box input[type=radio]:checked + label.payment-way span {
		color: rgb(var(--theme-color));
	}
	[dir="ltr"] .payment.btn-group > .btn{
		margin-left: 0;
		margin-right: 2rem;
	}
    .cart-details-box .title{
        font-size: 16px;
        margin-bottom: 30px;
    }
    .cart-details-box .table{
        font-size: 16px;
        margin-bottom: 30px;
    }
    .cart-details-box .table td{
        color: #6D6F74;
    }
    .cart-details-box .table th{
        color: rgb(var(--dark-color));
    }

    /*------------------------------------------
        profile-sidebar
    ------------------------------------------*/
    
    .profile-sidebar .about-sidebar{
        border-color: transparent; 
        box-shadow: 0px 10px 30px #D1D5DF80;
        border-radius: 14px;
        padding: 40px 20px;
    }
    .profile-box{
        padding: 60px;
        box-shadow: 0px 10px 30px #D1D5DF80;
        border-radius: 14px;
    }
    .profile-box .title{
        font-size: 36px;
        color: rgb(var(--dark-color));
        margin-bottom: 60px;
    }
    .profile-box .sub-title{
        font-size: 18px;
        color: rgb(var(--dark-color));
        margin-bottom: 30px;
    }
    .profile-box .form-group{
        margin-bottom: 30px;
    }
    .profile-box .form-select,
    .profile-box .form-control{
        height: 50px;
        background-color: #FFFFFF;
        border: 1px solid rgb(112, 112, 112, .25);
        border-radius: 16px;
    }

    .profile-member-box{
        padding: 30px;
        border: 1px solid #F1F1F1;
        border-radius: 6px;
        margin-bottom: 40px;
    }
    .profile-member-box .title{
        font-size: 18px;
        color: rgb(var(--dark-color));
        margin-bottom: 30px;
    }

    .profile-member-box-grid{
        display: flex;
        align-items: center;
    }
    .profile-member-box-grid .member-box-grid{
        width: calc(100% / 4);
        text-align: center;
        border-inline-end: 1px solid #E9EBEE;;
    }
    .profile-member-box-grid .member-box-grid:last-child{
        border-inline-end: 1px solid transparent;
    }
    .profile-member-box-grid .member-box-grid .name{
        color: #6D6F74;
        font-size: 14px;
        margin-bottom: 16px;
    }
    .profile-member-box-grid .member-box-grid .info{
        color: rgb(var(--dark-color));
        font-size: 16px;
        margin-bottom: 0;
    }
    .profile-member-box-grid .member-box-grid .dots{
        width: 9px;
        height: 9px;
        display: inline-block;
        border-radius: 50%;
        margin-inline-end: .75rem;
    }
    .profile-member-box-grid .member-box-grid .dots.green{
        background-color: #14B97B;
    }
    .profile-member-box-grid .member-box-grid .dots.red{
        background-color: #ef5350;
    }
    .profile-member-box-grid .member-box-grid .dots.yellow{
        background-color: #ffb22b;
    }
    .profile-member-box-grid .member-box-grid .dots.black{
        background-color: #67757c;
    }


    

    /*------------------------------------------
        nav-topic-info
    ------------------------------------------*/
    
    .nav-topic-info .nav-item{
        color: rgb(var(--dark-color));
    }
    .nav-topic-info .nav-item .author-box{
        display: flex;
        align-items: center;
    }
    .nav-topic-info .nav-item .author-box .pic{
        width: 40px;
        height: 40px;
        min-height: 40px;
        display: inline-block;
        border-radius: 50%;
        overflow: hidden;
        margin: 0;
        margin-inline-end: .5rem;
    }
    .nav-topic-info .nav-item .author-box .pic img{
        width: 40px;
        height: 40px; 
    }
    .nav-topic-info .nav-item .author-box .content{
        font-size: 16px;
        font-weight: bold;
        color: rgb(var(--dark-color));
    } 
    .login-pic{
        height: 100vh;
        overflow: hidden;
    }
    .login-pic img{ 
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .policy-box{
        font-weight: 600;
        font-size: 16px;
        color: rgba(var(--dark-color));
    }

    /*------------------------------------------
        Media Query
    ------------------------------------------*/
    
    @media (max-width: 1440px) {
        .profile-box .my-5{
            margin-top: 1.5rem !important;
            margin-bottom: 1.5rem !important;
        }
        .profile-box .form-group{
            margin-bottom: 1rem !important;
        }
        .card-patient .form-select,
        .card-patient .form-control,
        .profile-box .form-select,
        .profile-box .form-control{
            height: 37px;
            min-height: 37px;
            border-radius: 12px;
        }
        textarea{
            height: auto !important;
        }
        .policy-box {
            font-size: 14px;
        }
        .btn {
            position: relative;
            overflow: hidden;
            height: 40px;
            line-height: 35px;
            font-size: 14px;
            border-radius: 12px;
        }
        .section-title {
            margin-bottom: 30px;
        }
        .profile-box .title {
            font-size: 30px;
            color: rgb(var(--dark-color));
            margin-bottom: 0;
        }
        .card-patient .btn-more {
            width: 37px;
            height: 37px;
            line-height: 32px;
            font-size: 20px;
        }
    }
    @media (max-width: 1200px) {
        .navbar-collapse{
			position: fixed;
            z-index: 9;
        }
		.navbar-collapse.collapsing .navbar-nav {
			display: block;
			position: fixed;
			top: 0;
			bottom: 0;
			left: -300px;
			transition: all 0.2s ease; 
			justify-content: start !important;  
			height: 100%;
			overflow-y: scroll;
		} 
		.navbar-collapse.show .navbar-nav{
			background-color: #fff;
			position: fixed;
			top: 0;
			bottom: 0;
			left: 0;
			flex-direction: column;
			height: auto;
			width: 270px; 
			padding: 1rem;
			transition: left 0.35s ease;
			box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
			z-index: 99999999;
            overflow-y: scroll;
            gap: 0;
		}
		[dir="rtl"] .navbar-collapse.collapsing .navbar-nav{
			left: auto;
			right: -300px;
		} 
		[dir="rtl"] .navbar-collapse.show .navbar-nav{
			left: auto;
			right: 0;
			transition: right 0.35s ease;
		} 

		.navbar-collapse.show .navbar-nav .nav-link{
			color: var(--dark-color);
            padding: 1rem;
            height: 60px;
            line-height: 60px;
			border-bottom: 1px solid #f1f1f1;
		} 
		.navbar-collapse.show .navbar-nav .nav-link::before{
            display: none;
		} 
		.navbar-collapse.show .navbar-nav .nav-link.active{
			color: var(--theme-color); 
		}
		.navbar-collapse.show .navbar-nav li:last-child .nav-link{
			border-bottom: none;
		}
        .about-container .about-pic {
            margin-inline-end: 50px;
        }
        .footer-about{
            text-align: center; 
        }
        .footer-links{
            text-align: center; 
            margin: 60px 0;
        }
        .nav-contact {
            background-color: #fff;
            z-index: 998;
        }
        .book-box .pic{ 
            padding: 20px;
            height: 270px;
        }
        .user-box .pic {
            height: 206px;
        }
        
        .table-custom .action{
            width: 120px;
        }
        .table-custom td .btn{
            max-width: 50px;
        }
        .table-custom td .btn span{
            display: none;
        }
    }

    @media (max-width: 786px){
        .donate-box .content { 
            left: 100px; 
        }
        .media-box{
            height: 366px;
        }
        .book-box .pic{ 
            padding: 20px;
            height: 220px;
        }
        .card-contact,
        .profile-box,
        .profile-box .form,
        .research-card,
        .payment-result .card, .payment-way-section .card {
            padding: 20px;
        }
        .payment-way {
            width: calc((100% / 4) - .5rem);
            padding: .5rem;
        }
        .nav-initiatives .nav-link {
            width: 134px;
            height: auto;
        }
    }

    @media (max-width: 420px){
        .nav-contact-list .nav-link span{
            display: none;
        }
        .owl-header-box {
            border-radius: 20px;
        }
        .about-container .about-pic { 
            min-width: 300px;
            width: 300px;
            height: 300px;
            margin: 0;
        }
        .about-container .about-content .title { 
            font-size: 32px;
            margin-bottom: 30px;
        }
        .about-container .about-content .title{
            color: #004632;
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 30px;
        }
        .section-title .title{
            font-size: 24px;
        }
        .donate-box {
            height: 450px;
            border-radius: 14px;
        }
        .donate-box .content {
            width: 100%;
            padding: 2rem;
            text-align: center;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .patient-box .content {
            width: 100%;
            padding: 2rem;
            text-align: center;
            right: 50%;
            transform: translate(50%, -50%);
        }
        .partner-box .pic {
            height: 90px;
            padding: 1rem;
        }
        .footer-links .nav .nav-link {
            font-size: 11px;
            padding: .5rem ;
        }
        .user-box .pic {
            height: 206px;
        }
        .research-box,
        .money-box{
            margin: 0 !important;
            margin-bottom: 1rem !important;
        }
    }

    @media (min-width: 768px){
        .animate {
          animation-duration: 0.3s;
          -webkit-animation-duration: 0.3s;
          animation-fill-mode: both;
          -webkit-animation-fill-mode: both;
        }
    }
    @keyframes slideIn {
        0% {
          transform: translateY(2rem);
          opacity: 0;
        }
      
        100% {
          transform: translateY(0rem);
          opacity: 1;
        }
      
        0% {
          transform: translateY(2rem);
          opacity: 0;
        }
      }
      
      @-webkit-keyframes slideIn {
        0% {
          -webkit-transform: transform;
          -webkit-opacity: 0;
        }
      
        100% {
          -webkit-transform: translateY(0);
          -webkit-opacity: 1;
        }
      
        0% {
          -webkit-transform: translateY(2rem);
          -webkit-opacity: 0;
        }
    }
    .slideIn {
        -webkit-animation-name: slideIn;
        animation-name: slideIn;
    }
    .upDown { 
        -webkit-animation: upDown-animation 2s infinite  alternate;
        animation: upDown-animation 2s infinite  alternate;
    } 
    @keyframes upDown-animation {
        0% { transform: translateY(0); }
        100% { transform: translateY(-1rem); }
    }

    .heartbit{
        position: absolute; 
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); 
        height: 80px;
        width: 80px;
        z-index: 10;
        border: 5px solid  rgb(var(--theme-color));
        border-radius: 50%;
        -moz-animation: heartbit 1s ease-out;
        -moz-animation-iteration-count: infinite;
        -o-animation: heartbit 1s ease-out;
        -o-animation-iteration-count: infinite;
        -webkit-animation: heartbit 1s ease-out;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
    }

    @-moz-keyframes heartbit {
        0% {
            -moz-transform: translate(-50%, -50%) scale(0);
            opacity: 0;
        }
        25% {
            -moz-transform: translate(-50%, -50%) scale(0.1);
            opacity: 0.1;
        }
        50% {
            -moz-transform: translate(-50%, -50%) scale(0.5);
            opacity: 0.3;
        }
        75% {
            -moz-transform: translate(-50%, -50%) scale(0.8);
            opacity: 0.5;
        }
        100% {
            -moz-transform: translate(-50%, -50%)scale(1);
            opacity: 0;
        }
    }
    @-webkit-keyframes heartbit {
        0% {
            -webkit-transform: translate(-50%, -50%) scale(0);
            opacity: 0;
        }
        25% {
            -webkit-transform: translate(-50%, -50%) scale(0.1);
            opacity: 0.1;
        }
        50% {
            -webkit-transform: translate(-50%, -50%) scale(0.5);
            opacity: 0.3;
        }
        75% {
            -webkit-transform: translate(-50%, -50%) scale(0.8);
            opacity: 0.5;
        }
        100% {
            -webkit-transform: translate(-50%, -50%) scale(1);
            opacity: 0;
        }
    }

    /*------------------------------------------
    member label
------------------------------------------*/

    .member-label-box{
        position: relative;
        display: block;
        align-items: center;
        justify-content: space-between;
        min-height: 313px;
        background-color: #009A6E;
        background-image: url(../img/member-pattern.svg);
        border-radius: 40px;
        padding: 0 100px;
        overflow: hidden;
    }
    .member-label-box::before{
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: transparent linear-gradient(80deg, #009A6E1A 0%, #006E4FCC 100%);
        z-index: 2;
    }
    .member-label-box .action,
    .member-label-box .content{
        position: relative;
        z-index: 2;
    }
    .member-label-box .title{
        font-size: 36px;
        font-weight: bold;
        color: #fff;
        margin-bottom: 24px;
    }
    .member-label-box .info{
        font-size: 16px;
        color: #fff;
        margin-bottom: 0;
    }
    .member-label-box .btn{
        width: 312px;
        height: 60px;
        line-height: 55px;
        background: #C6A979;
        color: #fff;
    }
    .member-box .title{
        margin-bottom: 60px;
    }

    /*------------------------------------------
      article
  ------------------------------------------*/
    .article-section{
        padding: 75px 0;
    }
    .article-box{
        display: block;
        border-radius: 12px;
        background: #FFF;
        overflow: hidden;
        box-shadow: 0px 3px 6px #00000029;
        transition: all 0.3s ease;
        margin-bottom: 1.5rem;
    }
    .article-box .pic{
        width: 100%;
        height: 260px;
        overflow: hidden;
        /*  background-color: #006E4F;*/
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .article-box .pic img{
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
    }
    .article-box .content{
        padding: 20px;
        min-height: 126px;
    }
    .article-box .content .title{
        transition: all 0.3s ease;
        font-size: 16px;
        color: #707070;
    }
    .article-box .content .date{
        font-size: 16px;
        color: #707070;
        margin-bottom: 0;
    }

    .article-box:hover{
        transform: translateY(-.5rem);
    }
    .article-box:hover .content .title{
        color: #006E4F;
    }
    .article-box-view .content .title{
        font-weight: bold;
        font-size: 20px;
        color: #707070;
    }
    .article-box-view .content .info{
        font-size: 16px;
        line-height: 2;
        color: #707070;
    }
    .article-box-view .content .date{
        font-size: 13px;
        line-height: 2;
        color: #707070;
    }
    .article-box-view .pic{
        margin: 2rem 0;
        width: 100%;
    }
    .article-box-view .pic img{
        width: 100%;
    }
    .nav-share{
        gap: 1rem;
        position: sticky;
        top:  150px;
    }
    .nav-share .nav-link{
        padding: 0;
        width: 50px;
        height: 50px;
        line-height: 45px;
        border-radius: 50%;
        text-align: center;
        color: #fff;
        font-size: 20px;
    }
    .nav-share .nav-link.facebook{
        background: #3B5998;
    }
    .nav-share .nav-link.twitter{
        background: #1DA0F1;
    }
    .nav-share .nav-link.linkedin{
        background: #01A0DC;
    }
    .nav-share .nav-link.whatsapp{
        background: #38BE41;
    }

    /*------------------------------------------
        button
    ------------------------------------------*/

    .btn{
        position: relative;
        overflow: hidden;
        height: 50px;
        line-height: 45px;
        font-size: 16px;
        padding: 0;
        border-radius: 12px;
        font-weight: bold;
        transition: all ease-in-out .5s;
        outline: none !important;
        box-shadow: none !important;
    }
    .btn::after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 25%;
        height: 100%;
        width: 50%;
        background-color: #fff;
        border-radius: 50%;
        opacity: 0;
        pointer-events: none;
        transition: all ease-in-out 0.5s;
        transform: scale(5, 5);
    }
    .btn:active::after{
        padding: 0;
        margin: 0;
        opacity: .2;
        transition: 0s;
        transform: scale(0, 0);
    }
    .btn-primary{
        background-color:  #007588;
        border-color:  #007588;
        color: #fff;
    }
    .btn-primary{
        background-color:  #007588;
        border-color:  #007588;
        color: #fff;
    }
    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active{
        background-color:  #005837;
        border-color:  #005837;
        color: #fff;
    }
    .btn-theme{
        background-color:  #DBA874;
        border-color:  #DBA874;
        color: #fff;
    }
    .btn-theme:hover,
    .btn-theme:focus{
        background-color: #A88458;
        border-color:  #A88458;
        color: #fff;
    }
    .btn-theme-outline{
        background-color:  transparent;
        border-color:  #DBA874;
        color: #DBA874;
    }
    .btn-theme-outline:hover{
        background-color: rgb(219, 168, 116, .2);
        border-color: rgb(219, 168, 116, .2);
        color: #DBA874;
    }
    .btn-theme-outline:focus{
        background-color: #DBA874;
        color: #fff;
    }

    .btn-theme-light{
        background-color:  #fff;
        border-color:  #fff;
        color: rgb(var(--theme-color));
    }
    .btn-theme-light:hover,
    .btn-theme-light:focus{
        background-color: rgb(var(--theme-color-2));
        border-color:  rgb(var(--theme-color-2));
        color: #fff;
    }

    .saudi-federation-section{
        padding: 100px 0;
    }
    .saudi-federation-container{
        display: block;
        flex-direction: row-reverse;
    }
    .saudi-federation-container .saudi-federation-pic{
        position: relative;
        min-width: 310px;
        width: 310px;
        overflow: hidden;
        margin-inline-start: 110px;
    }
    .saudi-federation-container .saudi-federation-pic .saudi-federation-img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .saudi-federation-container .saudi-federation-content .title{
        color: #004632;
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 30px;
    }
    .saudi-federation-container .saudi-federation-content .info{
        color: #868686;
        font-size: 18px;
        line-height: 50px;
        margin-bottom: 30px;
    }
    .saudi-federation-container .saudi-federation-content .btn{
        width: 150px;
        height: 50px;
        line-height: 45px;
        background: #FFFFFF;
        border: 1px solid #DBA874;
        color: #DBA874;
        border-radius: 12px;
    }
    .saudi-federation-container .saudi-federation-content .btn:hover{
        background-color:rgb(219, 168, 116, .2);
        border-color:rgb(219, 168, 116, .2);
    }
    .saudi-federation-container .saudi-federation-content .btn:focus{
        background-color:rgb(219, 168, 116);
        border-color:rgb(219, 168, 116);
        color: #FFF;
    }

    /*------------------------------------------
       login
   ------------------------------------------*/

    .login-section{
        padding: 0;
    }
    .login-section .login-pic{
        position: relative;
        height: 100vh;
    }
    .login-section .login-pic::before{
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: transparent linear-gradient(180deg, #006E4F1F 0%, #006E4FB3 100%);
        z-index: 1;
    }
    .login-section .login-pic img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .login-section .login-form{
        max-width: 450px;
        margin: auto;
    }
    .login-section .head{
        margin-bottom: 60px;
    }
    .login-section .head .logo{
        display: block;
        text-align: center;
        margin: auto;
        margin-bottom: 60px;
        max-width: 150px;
    }
    .login-section .head .logo img{
        max-width: 150px;
    }
    .login-section .head .title-box{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .login-section .head .title-box .title{
        color: #373434;
        font-size: 30px;
        font-weight: bold;
    }
    .login-section .head .title-box .btn{
        padding: 0;
        color: #393D48;
        font-size: 14px;
        min-width: 120px;
        height: 40px;
        line-height: 35px;
        background: #FFFFFF;
        border: 1px solid #393D48;
        border-radius: 25px;
        margin-top: 15px;
    }
    .login-section .head .title-box .btn:hover{
        color: #fff;
        background: #393D48;
        border: 1px solid #393D48;
    }
    .login-section .pincode input {
        width: 50px;
        height: 50px;
        background-color: #fff;
        border: 1px solid #A7A5A5;
        border-radius: 12px;
    }

    /*------------------------------------------
     form
 ------------------------------------------*/

    .form-card{
        padding: 60px 120px;
        background: #FFFFFF;
        box-shadow: 0px 0px 16px #0000000F;
        border-radius: 10px;
    }
    .form-card .title{
        font-size: 24px;
        font-weight: bold;
        color: #393D48;
        margin-bottom: 40px;
    }
    .form .form-group{
        margin-bottom: 30px;
    }
    .form .form-label{
        font-size: 16px;
        color: #373434;
    }
    .form .form-control{
        min-height: 42px;
        background-color: #FFFFFF;
        border: 1px solid #A7A5A5;
        border-radius: 12px;
    }
    .form .form-control:focus{
        border: 1px solid #009A6E;
        box-shadow: none;
    }
    .form .form-control::placeholder{
        color: #BFBFBF;
    }
    .form .forget-password{
        color: #373434;
    }
    .form-check-input {
        width: 20px;
        height: 20px;
    }
    .form-check-input:checked{
        box-shadow: none;
        background-color: #009A6E;
        border-color: #009A6E;
    }
    .form-result{
        text-align: center;
    }
    .form-result img{
        margin-bottom: 30px;
    }
    .form-result .title{
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 30px;
    }
    .form-result .info{
        font-size: 16px;
        line-height: 35px;
        color: #393D48;
    }
    .form-card .table td{
        font-size: 16px;
        color: #707070;
        padding: 1rem;
        vertical-align: middle;
        border-color:  rgb(185, 181, 184, .5);
    }
    .form-card .table tr:last-child td{
        border-color:  transparent;
    }
    .form-card .btn-upload{
        display: flex;
        align-items: center;
        width: 100%;
        height: 50px;
        line-height: 45px;
        background: #FFF6EE 0% 0% no-repeat padding-box;
        border: 2px dashed #DBA874;
        border-radius: 12px;
        color: #DBA874;
        font-size: 16px;
        font-weight: bold;
        padding-inline-start: 1rem;
        margin-bottom: 1rem;
    }
    .form-card .btn-upload:hover,
    .form-card .btn-upload:focus{
        border: 2px solid #DBA874;
    }
    .form-card .btn-upload svg path,
    .form-card .btn-upload svg line{
        transition: all .3s ease;
    }
    .form-card .btn-upload:focus svg path,
    .form-card .btn-upload:focus svg line{
        stroke: #fff;
    }
    .form-card .files-upload-box{
        padding: 10px 20px;
        background: #FFFFFF;
        border: 2px solid #E2E2E2;
        border-radius: 12px;
        margin-bottom: 1rem;
    }
    .form-card .files-upload-box .file-title{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1rem;
    }
    .form-card .files-upload-box .file-title .name{
        color: #393D48;
        font-size: 14px;
        font-weight: 600;
        overflow-wrap: anywhere;
        margin-inline-end: 1rem;
    }
    .form-card .files-upload-box .file-title .action {
        display: flex;
        gap: .5rem;
    }
    .form-card .files-upload-box .file-title .action .btn-option{
        width: 30px;
        height: 30px;
        line-height: 30px;
        display: inline-block;
        text-align: center;
        font-size: 20px;
        border-radius: 50%;
        background: #E5E8F2;
        color: #200E32;
    }
    .form-card .files-upload-box .progress .bg-success{
        background: #009A6E;
        border-radius: 12px;
    }

    .form-card .files-upload-box .file-title .action .btn-option.trash,
    .form-card .files-upload-box .file-title .action .btn-option.remove{
        background-color: rgb(255, 70, 70, .2);
        color: #FF4646;
    }
    .form-card .files-upload-box .file-title .action .btn-option.complete{
        background-color: rgb(0, 154, 110, .2);
        color: #009A6E;
    }
    .form-card .files-upload-box .file-title .action .btn-option:hover{
        color: #fff;
    }
    .form-card .files-upload-box .file-title .action .btn-option:hover.trash,
    .form-card .files-upload-box .file-title .action .btn-option:hover.remove{
        background-color: #FF4646;
    }
    .form-card .files-upload-box .file-title .action .btn-option:hover.complete{
        background-color: #009A6E;
    }
    .form-card .files-upload-box .file-title .action .btn-option:hover.pause{
        background-color: #200E32;
    }

    .form-card .files-upload-box .progress{
        height: 3px;
        background: #F2F2F2;
        border-radius: 12px;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .form-card .files-upload-box .file-size,
    .form-card .files-upload-box .progress-percent{
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .career-details{
        margin-bottom: 2rem;
    }
    .career-details .title{
        font-size: 16px;
        color: #393D48;
        font-weight: bold;
        margin-bottom: 1.5rem;
    }
    .career-details ul li{
        line-height: 30px;
    }
    .career-details ul li::marker{
        color: #DBA874;
    }

    .contact-section .form-card{
        padding: 40px 80px;
    }
    .contact-box{
        text-align: center;
        margin-bottom: 40px;
    }
    .contact-box .title{
        color: rgb(0,138,118);
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 30px;
    }
    .contact-box .info{
        font-size: 16px;
        color: #807F83;
        margin-bottom: 0;
    }