
@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
    --default-font: "Inter", serif;
}

:root {
    --primary-color: #30658f;
    --secondary-color: #6dac39;
    --color-primary-rgb: 48, 101, 143;
    --color-secondary-rgb: 109, 172, 57;
    --primary-hover-color: #3474a8;
    --secondary-hover-color: #7ac140;
    --white-color: #ffffff;
    --heading-color: #272727;
    --gray-500: #808080;
    --blue-500: #cfe1ef;
}

/*  @media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: unset !important;
    transition: 8s all;
  }
}

  html {
  scroll-behavior: smooth;
  transition: 2s all;

}  */
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    font-family: var(--default-font);
    transition: background-color 0.5s ease;
    background-color: var(--white-color);
}

@media (min-width: 1200px) {
    .container {
        max-width: 1390px !important;
        /* for example */
    }
}

a {
    color: #272727;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
}

p {
    margin-bottom: 0;
}

.gray-500 {
    color: var(--gray-500);
}

.bg-primary {
    background: var(--primary-color) !important;
}

.bg-secondary {
    background: var(--secondary-color) !important;
}

.bg-blue-500 {
    background: var(--blue-500);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.outline-btn,
.white-btn,
.primary-btn {
    border-radius: 30px;
    padding: 13px 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border: 1px solid;
    white-space: nowrap;
}

.secondary-outline-btn {
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.secondary-btn {
    color: var(--white-color);
    border: 1px solid var(--secondary-color);
    background: var(--secondary-color);
}

.secondary-btn:hover {
    color: var(--white-color);
    background: var(--secondary-hover-color);
}

.secondary-outline-btn:hover {
    color: var(--secondary-color);
    background: #6dac3911;
}

.primary-outline-btn {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.primary-outline-btn:hover {
    color: var(--primary-color);
    background: #30658f11;
}

.white-btn {
    background: var(--white-color);
    color: var(--primary-color);
}

.white-btn:hover {
    color: var(--primary-color);
    background: #f7f7f7;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.flex-between {
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 767px) {
    .outline-btn,
    .white-btn,
    .primary-btn {
        padding: 11px 20px !important;
    }
}

/*--------------------------------------------------------------
# Gloubal Style
--------------------------------------------------------------*/
input,
textarea {
    font-size: 14px;
    padding: 13px !important;
    box-shadow: none;
    border-radius: 8px;
    color: var(--default-color);
    border-color: #e0e0e0;
    border-radius: 10px !important;
}

input:focus,
textarea:focus {
    border-color: var(--primary-color) !important;
    box-shadow: none !important;
}

input::placeholder,
textarea::placeholder {
    color: var(--gray-500);
    font-size: 15px;
}

button[type="submit"],
.submit {
    color: var(--white-color) !important;
    background: var(--primary-color);
    border: 0;
    padding: 10px 40px;
    transition: 0.4s;
    border-radius: 8px;
}

button[type="submit"]:hover,
.submit:hover {
    background: var(--primary-hover-color);
}

form .nice-select {
    border: 1px solid #e0e0e0 !important;
    border-radius: 10px !important;
}

form .current {
    color: var(--gray-500);
}

.nice-select:after {
    border-bottom: 2px solid var(--gray-500) !important;
    border-right: 2px solid var(--gray-500) !important;
}

.modal-content label {
    padding-bottom: 5px;
}

.form-control:disabled {
    background-color: #e9ecefcf !important;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 999;
    background-color: var(--secondary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.4s;
    border: 1.5px solid #ffffff1d;
}

.scroll-top i {
    font-size: 24px;
    color: #ffffff;
    line-height: 0;
}

.scroll-top:hover {
    background-color: rgba(var(--color-primary-rgb), 0.8);
    color: #ffffff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*
.parallax-page {
    height: 100vh;
    overflow-y: scroll;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: y mandatory;
}

.parallax-page section,
.parallax-page footer {
    scroll-snap-align: start;
    transition: 0.8s all;
}
*/
/* .parallax-page .header{
  position:relative;
  top: 80px;

} */
/* Animation Base Styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px) scale(0.8); /* Default for fade-up + zoom-in */
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Fade Up Animation */
.animate-on-scroll.fade-up {
    transform: translateY(50px);
}

.animate-on-scroll.active.fade-up {
    opacity: 1;
    transform: translateY(0);
}

/* Zoom In Animation */
.animate-on-scroll.zoom-in {
    transform: scale(0.8);
}

.animate-on-scroll.active.zoom-in {
    opacity: 1;
    transform: scale(1);
}

/* Combined Animation: Fade-Up + Zoom-In */
.animate-on-scroll.fade-up.zoom-in {
    transform: translateY(50px) scale(0.8);
}

.animate-on-scroll.active.fade-up.zoom-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Fade Left Animation */
.animate-on-scroll.fade-left {
    transform: translateX(-50px);
}

.animate-on-scroll.active.fade-left {
    opacity: 1;
    transform: translateX(0);
}

/* Fade Right Animation */
.animate-on-scroll.fade-right {
    transform: translateX(50px);
}

.animate-on-scroll.active.fade-right {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 767px) {
    /* Fade Right Animation */
    .animate-on-scroll.fade-right {
        transform: translateY(50px);
    }

    .animate-on-scroll.active.fade-right {
        opacity: 1;
        transform: translateX(0);
    }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--white-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--primary-color) transparent var(--primary-color)
    transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    background: #f1f1f1;
}

.breadcrumbs p {
    font-size: 20px;
}

@media (max-width: 767px) {
    .breadcrumbs p {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --color-background: #ffffff;
    --color-inverse: #ffffff;
    color: var(--color-default);
    background-color: var(--color-background);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo img {
    height: 35px;
}

/* Global Header on page scroll
------------------------------*/
.scrolled .header {
    --color-background: #ffffffc9;
    --color-secondary: #444444;
}

/* Home Page Custom Header
------------------------------*/
.index-page .header {
    --color-background: rgba(255, 255, 255, 0);
    --color-secondary: #ffffff;
    --color-nav: rgba(255, 255, 255, 0.515);
    --color-nav-hover: #ffffff;
}

/* Hero Pages Custom Header
------------------------------*/
.pages-hero .header {
    --color-background: rgba(255, 255, 255, 0);
    --color-secondary: #ffffff;
    --color-nav: rgba(255, 255, 255, 0.515);
    --color-nav-hover: #ffffff;
}

/* Hero Pages Custom Header
------------------------------*/
.pages-hero.scrolled .header {
    --color-background: rgba(255, 255, 255, 0.943);
    border-bottom: 1px solid #e2e8f0;
}

/* Home Page Custom Header on page scroll
------------------------------*/
.index-page.scrolled .header {
    --color-background: rgba(255, 255, 255, 0.943);
    /*  -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px); */
    border-bottom: 1px solid #e2e8f0;
    display: none;
}

.btn-message-whats {
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    border-radius: 12px;
    transition: 0.5s;
    border: 1px solid var(--primary-color);
}

.read-more {
    background: var(--primary-color);
    color: var(--color-inverse);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle,
.icon-close {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: normal;
    cursor: pointer;
    font-size: 24px;
    transition: 0.3s all;
    white-space: nowrap;
}

.icon-close {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-toggle,
.pages-hero.scrolled .menu-toggle {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.pages-hero .main-logo {
    display: none;
}

.pages-hero .white-logo {
    display: block;
}

.pages-hero.scrolled .white-logo {
    display: none;
}

.pages-hero.scrolled .main-logo {
    display: block;
}

.pages-hero .menu-toggle {
    border: 1px solid var(--white-color);
    color: var(--white-color);
}

.icon-close {
    border: 1px solid var(--white-color);
    color: var(--white-color);
}

.menu-toggle:hover {
    background: #30648f1a;
}

.icon-close:hover {
    background: #ffffff30;
}

.full-screen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-hover-color)
    );
    color: white;
    display: flex;
    justify-content: center;
    z-index: 9999999999;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.full-screen-menu.active {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
}

.full-screen-menu.closing {
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
}

.full-screen-menu .social-icons a {
    background: var(--secondary-color);
    width: 55px;
    height: 55px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.full-screen-menu .social-icons a:hover {
    transform: translateY(-3px);
}

.full-screen-menu .lang p {
    font-weight: 500;
    font-size: 1.5rem;
}

.menu-content {
    text-align: center;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.5s ease-out 0.3s;
}

.full-screen-menu.active .menu-content {
    transform: scale(1);
    opacity: 1;
}

.full-screen-menu.closing .menu-content {
    transform: scale(0.8);
    opacity: 0;
}

.menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-content ul li {
    margin: 10px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

/* .menu-content ul li:nth-child(1) {
  animation-delay: 0.4s;
}

.menu-content ul li:nth-child(2) {
  animation-delay: 0.5s;
}

.menu-content ul li:nth-child(3) {
  animation-delay: 0.6s;
}

.menu-content ul li:nth-child(4) {
  animation-delay: 0.7s;
}

.full-screen-menu.closing ul li {
  animation: fadeOutDown 0.5s ease forwards;
}
 */
.menu-content ul li a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s ease;
}

.menu-content ul li a span {
    font-size: 13px;
    display: inline-block;
    padding-inline-end: 7px;
    transition: 0.3s all;
}

.menu-content ul li a:hover span {
    transform: translateX(-4px);
}

/* Keyframe animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

@media (max-width: 767px) {
    .menu-content ul li a {
        font-size: 20px;
    }

    .menu-content ul li {
        margin: 8px 0;
    }

    .full-screen-menu .lang p {
        font-size: 1.5rem;
    }

    .full-screen-menu .social-icons a {
        width: 50px;
        height: 50px;
    }
}

/*--------------------------------------------------------------
# Auth Pages
--------------------------------------------------------------*/
.auth-page {
    background: var(--blue-500);
    height: 100vh;
}

.auth-page .container {
    border-radius: 25px;
    background: var(--white-color);
}

.auth-page .auth-bg {
    background: linear-gradient(to bottom, #30648fbc, #30648f1b),
    url("../img/login.png") center/cover no-repeat;
    border-radius: 20px;
}

.auth-page .auth-content {
    min-height: 85vh;
}

.auth-page .auth-bg {
    height: 100%;
}

.auth-page iframe {
    border-radius: 10px;
}

.auth-bg p {
    font-size: 2rem;
    font-weight: 600;
}

.auth-page .auth-content .auth-title {
    color: var(--primary-color);
    font-size: 2rem;
}

.auth-page .auth-content small {
    color: var(--gray-500);
}

.auth-page .auth-content .outline-btn {
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
    padding: 14px 0;
    white-space: normal;
}

.auth-page .auth-content .outline-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.auth-content p {
    color: var(--gray-500);
}

.auth-page .auth-content span,
.auth-page .auth-content a {
    color: var(--secondary-color);
    display: inline-block;
    font-weight: 600;
}

.auth-content label {
    padding-bottom: 5px;
}

#signUpModal iframe {
    width: 100%;
    height: 400px;
}

@media (max-width: 767px) {
    .auth-page .auth-bg {
        min-height: 20vh;
    }

    .auth-page .auth-content {
        height: auto;
        min-height: fit-content;
    }

    .auth-bg p {
        font-size: 1.1rem;
    }

    #signUpModal iframe {
        height: 270px;
    }

    /*  .auth-page .container{
      margin: 15px !important;
    } */
    .auth-page {
        height: auto;
    }

    .auth-page {
        padding: 27px 20px !important;
    }
}

/*--------------------------------------------------------------
# Home - Hero
--------------------------------------------------------------*/

#bg-video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    z-index: -1;
    top: 0;
}

.home-hero {
    position: relative;
    /*  margin-top: -100px; */
    min-height: 100vh;
    /*   background: url("../img/hero.webp") top/cover no-repeat; */
}

.home-hero-title {
    padding: 2em 5em;
    font: normal 40px/50px var(--default-font), sans-serif;
    color: #ffffff;
}

.home-hero-title p {
    height: 50px;
    float: left;
    margin-inline-end: 0.3em;
    font-weight: 600;
    font-size: 3.5rem;
}

.inanimate {
    float: left;
    overflow: hidden;
    position: relative;
    height: 50px;
    top: 0;
}

.home-hero-title .innerTitle {
    display: inline-block;
    color: #ffffff;
    position: relative;
    white-space: nowrap;
    top: 0;
    left: 0;
    font-weight: 600;
    font-size: 3.5rem;

    /*animation*/
    -webkit-animation: move 7s;
    -moz-animation: move 7s;
    -ms-animation: move 7s;
    -o-animation: move 7s;
    animation: move 7s;
    /*animation-iteration-count*/
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    /*animation-delay*/
    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
    -ms-animation-delay: 1.5s;
    -o-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

@keyframes move {
    0% {
        top: 0px;
    }

    20% {
        top: -50px;
    }

    40% {
        top: -100px;
    }

    60% {
        top: -150px;
    }

    80% {
        top: -200px;
    }
}

@-webkit-keyframes move {
    0% {
        top: 0px;
    }

    20% {
        top: -50px;
    }

    40% {
        top: -100px;
    }

    60% {
        top: -150px;
    }

    80% {
        top: -200px;
    }
}

@-moz-keyframes move {
    0% {
        top: 0px;
    }

    20% {
        top: -50px;
    }

    40% {
        top: -100px;
    }

    60% {
        top: -150px;
    }

    80% {
        top: -200px;
    }
}

@-o-keyframes move {
    0% {
        top: 0px;
    }

    20% {
        top: -50px;
    }

    40% {
        top: -100px;
    }

    60% {
        top: -150px;
    }

    80% {
        top: -200px;
    }
}

/*--------------------------------------------------------------
# Home - CTA
--------------------------------------------------------------*/
.CTA {
    min-height: 80vh;
}

.CTA p {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 3.3rem;
    /* text-transform: capitalize; */
}

.CTA p span {
    color: var(--secondary-color);
}

.CTA .des {
    color: #808080;
}

/*--------------------------------------------------------------
# Home - Find Doner
--------------------------------------------------------------*/

.find-doner {
    min-height: 40vh;
}

.find-doner h1 {
    font-weight: 600;
    font-size: 2.8rem;
}

.find-doner button {
    background: var(--secondary-color);
    height: 53px;
    font-size: 16px;
    white-space: nowrap;
}

.find-doner button:hover {
    background: var(--secondary-hover-color);
}

.find-doner .nice-select,
.find-doner button {
    border-radius: 4px !important;
}

/*--------------------------------------------------------------
# Home - Vision & Mission
--------------------------------------------------------------*/
.vision-mission .vision {
    background: linear-gradient(#30648fcb, #30648fc5),
    url("../img/vision.webp") center/cover no-repeat;
    min-height: 60vh;
}

.vision-mission .mission {
    background: linear-gradient(#cfe1efcd, #cfe1efc5),
    url("../img/mission.webp") center/cover no-repeat;
    min-height: 60vh;
}

.typeJsVision,
.typeJsMission,
.vision .fixed-title,
.mission .fixed-title {
    text-align: center;
    font-size: 55px;
    display: inline-block;
    padding: 0;
    font-weight: 500;
}

.vision-mission .typeJsWrapper .conatiner{
    padding:0 !important;
}

.mission .fixed-title {
    color: var(--primary-color);
}

.typeJs
{
    border-right: 1px solid #ffffff;
}

.vision-mission p {
    color: #fff;
    font-size: 25px;
}

.mission p {
    color: var(--primary-color) !important;
}

/* Initial Section Styles */
.vision,
.mission {
    cursor: pointer;
    position: relative;
    transition: all 0.5s ease;
}

.vision .fixed-title,
.mission .fixed-title,
.mission.active .typeJsMission,
.vision.active .typeJsVision {
    display: none;
}

.vision.active .fixed-title,
.mission.active .fixed-title {
    display: block;
}


.vision .description,
.mission .description {
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.vision .typeJsWrapper,
.mission .typeJsWrapper {
    transition: transform 0.5s ease;
}

.vision.active {
    background: var(--primary-color) !important;
}

.mission.active {
    background: var(--blue-500);
}

.vision.active .typeJsWrapper,
.mission.active .typeJsWrapper {
    transform: translateY(-7vh);
}

/* Show the description */
.vision.active .description,
.mission.active .description {
    display: block;
    opacity: 1;
    transform: translateY(7vh);
}



@media (max-width: 767px) {
    .typeJs,
    .typeJs,
    .vision .fixed-title,
    .mission .fixed-title {
        font-size: 40px;
        border-right: 0;
    }

    .vision-mission p {
        font-size: 22px;
    }

    .vision.active .typeJsWrapper,
    .mission.active .typeJsWrapper {
        transform: translateY(-10vh);
    }

    .vision.active .description,
    .mission.active .description {
        transform: translateY(6vh);
    }
}

/*--------------------------------------------------------------
# Home - Counter
--------------------------------------------------------------*/
.counter {
    min-height:55vh;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.counter h2 {
    font-size: 3rem;
    text-transform: capitalize;
}

.counter-box {
    /*border-top: 1px solid #d4d4d4;*/
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.counter-box p {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.counter-box span {
    font-size: 4.4rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/*--------------------------------------------------------------
# Home - Opportunities
--------------------------------------------------------------*/
.opportunities {
background: #2e6088;
padding-top:2%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.opportunities h3 {
    font-size: 2.2rem;
}

.opportunities .outline-btn {
    border-color: var(--white-color);
}

.opportunities .outline-btn:hover {
    background: #ffffff15;
}

.opportunities .opportunity-carousel,
.opportunities .opportunity-slider {
    overflow: hidden;
}

.opportunities .opportunities-item {
    border-radius: 20px;
    background-color: var(--white-color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    box-sizing: content-box;
    padding: 30px 20px;
    min-height: 200px;
    display: block;
}

.opportunities .opportunities-item .date {
    background: #e25664;
    color: #fff;
    font-size: 14px;
}

.opportunities .opportunities-item .logo {
    width: auto;
    height:130px;
    border-radius: 0;
    object-fit: contain;
    max-width:100%;
}

.opportunities .opportunities-item p {
    font-size: 20px;
    font-weight: 500;
    height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.opportunities .opportunities-item strong {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.opportunities .opportunities-item .flag {
    background: #f1f1f1;
    border-radius: 4px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 4px;
}

.opportunities .opportunities-item .flag span {
    padding: 0 2px;
}

.opportunities .opportunities-item .d-grid {
    grid-template-columns: 1fr 1fr;
}

.opportunities .swiper-wrapper {
    height: auto;
}

.opportunities .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.opportunities .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--background-color);
    opacity: 1;
    border: 1px solid var(--accent-color);
}

.opportunities .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Home - guide
--------------------------------------------------------------*/
.guide {
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.guide h4 {
    font-size: 3rem;
}

#imageContainer img {
    height: 100vh;
    object-fit: contain;
    cursor: pointer;
}

#textContainer {
    display: none;
    position: absolute;
    top: 30%;
    left: 5%;
}

.fade-slide-in {
    opacity: 0;
    transform: translateX(-30px);
    animation: textEnter 0.7s ease forwards;
}

@keyframes textEnter {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.final-layout #imageContainer {
    transition: all 0.8s ease-in-out;
    transform: translateX(45%);
}
.final-layout #textContainer {
    display: block;
    padding-inline-end: 50px;
}

#triggerImage {
    max-height: 100vh;
}

.final-layout .col-md-6,
.final-layout .col-12 {
    transition: all 1.1s ease;
}

/*--------------------------------------------------------------
# Home - Traning Section
--------------------------------------------------------------*/
.traning {
    min-height: 100vh;
}

.traning h5 {
    font-weight: 600;
    font-size: 3.5rem;
}

/*--------------------------------------------------------------
# Home - Training Courses Section
--------------------------------------------------------------*/
.training-courses {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.training-courses h3 {
    font-size: 2.2rem;
}

.training-courses .outline-btn {
    border-color: var(--white-color);
}

.training-courses .outline-btn:hover {
    background: #ffffff15;
}

.training-courses .opportunity-carousel,
.training-courses .opportunity-slider {
    overflow: hidden;
}

.training-courses-item {
    border-radius: 20px;
    box-sizing: content-box;
    padding: 30px 20px;
    min-height: 430px;
}

.training-courses-item:hover {
    background-position: bottom !important;
}

.training-courses-item:hover .btn-item {
    background: #ffffff41;
}

.training-courses-item .date {
    background: var(--secondary-color);
    color: #fff;
    font-size: 14px;
}

.training-courses-item .logo {
    width: 120px;
    height: 120px;
}

.training-courses-item p {
    font-size: 24px;
    font-weight: 400;
    color: var(--white-color);
}

.training-courses-item .btn-item {
    width: 57px;
    height: 57px;
    border: 1px solid var(--white-color);
    transform: rotate(-30deg) translateY(-10px);
    transition: 0.3s all ease-in-out;
}

.training-courses-item .d-grid {
    grid-template-columns: 1fr 0.2fr;
}

.training-courses .swiper-wrapper {
    height: auto;
}

.training-courses .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.training-courses .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--background-color);
    opacity: 1;
    border: 1px solid var(--accent-color);
}

.training-courses .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Home - Certificate
--------------------------------------------------------------*/

/* Existing .certificate styles */
.certificate {
    height: 100vh;
    background-color: var(--white-color);
    overflow-y: hidden;
}

/* For the h4 style, optional */
.certificate h4 {
    font-size: 3rem;
}

/* Toggling row animation */

#certificateRow {
    padding: 0;
    opacity: 0;
    margin-top: -70px;
    /* Hidden by default */
    transition: opacity 0.7s ease, padding 0.7s ease, max-height 0.7s ease;
}

/* When .show is added, fade + slide down + expand */
#certificateRow.show {
    margin-top: 0px;
    /* Hidden by default */
    padding: 60px 0;
    opacity: 1;
    /* Fade in */
}

.certificate-main-img {
    transition: 2s all;
    height: 75%;
}

/*--------------------------------------------------------------
# Home - Features
--------------------------------------------------------------*/
.features {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px;
    overflow: hidden;
}

.features h5 {
    font-size: 2.2rem;
}

.features .features-box {
    width: 100%;
    min-height: 515px;
    background: var(--blue-500);
    border-radius: 10px;
}

.features-box .btn-item {
    width: 55px;
    height: 55px;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    transform: rotate(-30deg) translateY(-10px);
    margin-top: 14px;
}

.features .list {
    border-bottom: 1px solid #d4d4d4;
}

.features .num {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1.5px solid #cfe1ef;
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 500;
}

.features .title {
    font-weight: bold;
    font-size: 20px;
}

.features .des {
    color: #808080;
}

.features .des-2 {
    font-size: 1.2rem;
}

.features .doners-num-box {
    border-radius: 8px;
}

.features .doners-num-box span {
    font-size: 3.6rem;
    font-weight: 500;
}

.features .doners-num-box,
.features .doners-num-box span {
    color: #cfe1ef;
}

.features .doners-num-box p {
    font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Home - Clients
--------------------------------------------------------------*/
.clients {
    padding: 15px 0 25px 0;
    background-color: var(--white-color);
}

.clients h6 {
    font-size: 2.2rem;
}

.clients .swiper-wrapper {
    transition-timing-function: linear !important;
}

.clients-Partnership .swiper-wrapper img {
    width: auto;
    height: 120px;
    object-fit: contain;
}

.testimonials-Clients .clients .swiper-wrapper img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}


/*--------------------------------------------------------------
# Home - Testimonials
--------------------------------------------------------------*/
.testimonials {
    background-color: var(--white-color);
    padding: 40px 0;
}

.testimonials h6 {
    font-size: 2.2rem;
    margin-bottom: 2.8rem;
}

.testimonials .opportunity-carousel,
.testimonials .opportunity-slider {
    overflow: hidden;
}

.testimonials .testimonials-item {
    border-radius: 10px;
    background-color: #f1f1f1;
    box-sizing: content-box;
    padding: 30px 20px;
    min-height: 200px;
}

.testimonials .testimonials-item span {
    font-size: 0.9rem;
}

/* .testimonials .testimonials-item .logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
} */

.testimonials .testimonials-item p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;

    font-size: 20px;
    font-weight: 500;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--background-color);
    opacity: 1;
    border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.testimonials-Clients {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

/*--------------------------------------------------------------
# Home - Latest News
--------------------------------------------------------------*/
.latest-news {
     display: flex;
    flex-direction: column;
    justify-content: center;
     padding: 40px 0 90px 0;
    background-color: var(--white-color);
}

.latest-news h5 {
    font-size: 2.2rem;
}

.latest-news .main-article {
    border-radius: 20px;
    padding: 30px 20px;
    position: relative;
    min-height: 500px;
}

.latest-news .date {
    background: var(--secondary-color);
    color: #fff;
    font-size: 14px;
    min-width: 120px;
    text-align: center;
}
.latest-news .main-article p {
     color: var(--white-color);
}
.latest-news .main-article strong {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 28px;
    font-weight: 500;
    color: var(--white-color);
}
/* .latest-news .card-title{
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
} */
/* .latest-news .sidebar-article img{
  height: 90%;
} */

.latest-news .main-article:hover .img img {
    transform: scale(1.1);
}

.latest-news img {
    border-radius: 20px;
}

.latest-news .card-title {
    font-size: 1.3rem;
    font-weight: 500;
}

.latest-news .card-description {
    color: #9c9c9c;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

@media (max-width: 767px) {
    .vision,
    .mission {
        min-height: 50vh !important;
    }

    #toggleRowImg {
        height: auto !important;
        width: 100% !important;
    }

    .home-hero p,
    .CTA p,
    .home-hero-title .innerTitle {
        font-weight: 600;
        font-size: 2.3rem;
    }

    .find-doner h1,
    .traning h5,
    .opportunities h3,
    .training-courses h3,
    .latest-news h5,
    .clients h6,
    .testimonials h6 {
        font-size: 2rem;
    }

    .home-hero-title {
        padding: 1em 0.5em;
    }

    .testimonials {
        padding: 30px 0 40px;
    }

    .counter h2,
    .features h5 {
        font-size: 1.9rem;
    }

    .counter-box p {
        margin-bottom: 8px;
    }

    .features {
        padding: 0 0 70px 0;
    }

    .testimonials .testimonials-item p {
        font-size: 18px !important;
    }

    .opportunities .testimonial-wrap {
        padding-left: 0;
    }

    .opportunities .testimonials-carousel,
    .opportunities .testimonials-slider {
        overflow: hidden;
    }

    .opportunities .opportunities-item {
        padding: 25px 15px;
        /* margin: 15px; */
    }

    .order h4,
    .certificate h4 {
        font-size: 2rem;
    }
    .order #triggerImage {
        max-width: 100%;
    }

    .certificate {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .outline-btn:not(.features-box .outline-btn , .opportunity .outline-btn ) {
        width: 100%;
        justify-content: space-between;
    }

    .order {
        background-position: bottom;
    }

    .training-courses .training-courses-item span {
        font-size: 15px;
    }

    .training-courses .training-courses-item .btn-item {
        width: 50px;
        height: 50px;
    }

    .training-courses .training-courses-item {
        min-height: 350px;
    }

    .training-courses .training-courses-item .logo {
        width: 80px;
        height: 80px;
    }

    .main-article {
        min-height: 470px;
    }

    .training-courses-item p {
        font-size: 20px;
    }

    .features .doners-num-box span {
        font-size: 3rem !important;
    }

    .latest-news .main-article strong {
        font-size: 24px;
    }

    #imageContainer img {
        height: 40vh;
    }

    .opportunities .opportunities-item strong,
    .opportunities .opportunities-item span {
        font-size: 14px;
    }

    .opportunities .opportunities-item .flag {
        gap: 2px;
    }
    .opportunities .opportunities-item .flag img {
        width: 18px;
        height: 18px;
    }

    .opportunities .opportunities-item .d-grid {
        /*     display: flex !important;
     */
        grid-template-columns: unset;
    }

    .final-layout #imageContainer {
        transform: translateY(70%);
    }
    #textContainer {
        display: none;
        position: absolute;
        top: 10%;
        left: 5%;
    }

    #certificateRow.show {
        padding: 10px 0 60px 0;
    }
    .certificate-main-img {
        height: auto;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer .help-banner {
    border-radius: 15px;
    background: #5b9030;
    margin: 20px 0 60px 0;
    color: #ffffffa3;
}

.footer .help-banner h5 {
    font-size: 28px;
}

.footer .help-banner h5 {
    color: #f9fafb;
}

.help-banner-content {
    padding-top: 35px;
    padding-bottom: 35px;
}

.help-banner .btn-contact {
    background: #1e3010;
    border-radius: 0 15px 15px 0;
}
.btn-contact-mobile {
    background: #1e3010;
    border-radius: 15px;
    padding: 23px 15px;
}
.btn-radius {
    background: #1e3010;
    width: 20px;
    border-radius: 50% 0 0 50%;
}

.footer .footer-links h6 {
    color: #ffffffbb;
    margin-bottom: 15px;
}

.footer .footer-links li {
    padding: 3px 0;
}

.footer .footer-links li a {
    color: #fff;
}

.footer .footer-links li a:hover {
    padding-inline-start: 2px;
}

.footer .footer-links .footer-contact .line {
    width: 20%;
    height: 2px;
    background: #ffffff7d;
    display: inline-block;
}

.footer .footer-links .footer-contact a {
    font-weight: 500;
    color: #ffffff7d;
    display: block;
}

.footer .social-link {
    border-top: 1px solid #ffffff45;
}

@media (max-width: 767px) {
    .btn-contact {
        height: 70px !important;
        border-radius: 0 0 15px 15px !important;
    }
    .footer .footer-links h6 {
        font-size: 14px;
    }
    .footer .footer-links li a {
        font-size: 14px;
    }
    .footer .help-banner {
        margin: 20px 0 12px 0;
    }
}

/* ------------------------------------------------------------------------------------------------------------------------- */
/* -------------------------------------------- All Training Courses Pages ------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------- */

.hero {
    /*  margin-top: -90px; */
    height: 100vh;
}

.hero h1 {
    font-weight: 600;
    font-size: 4rem;
    padding-bottom: 45px;
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 2rem !important;
    }

    /*  .hero {
      min-height: 60vh !important;
    } */
}

/*--------------------------------------------------------------
# Courses
--------------------------------------------------------------*/
.courses {
    padding: 80px 0 150px 0;
}

.courses-hero {
    background: linear-gradient(to top, #30648ffa, #30648f4e),
    url("../img/courses-hero.webp") center/cover no-repeat;
}

.courses h5 {
    font-size: 2.2rem;
}

.courses .nice-select {
    border: 1px solid #d4d4d4;
    border-radius: 30px;
}

.courses .nice-select:after {
    right: 20px !important;
}

.courses .training-courses-item {
    margin: 0;
}

@media (max-width: 767px) {
    .courses {
        padding: 40px 0 130px 0;
    }

    .courses h5 {
        font-size: 1.7rem;
    }

    .courses .training-courses-item {
        min-height: 350px !important;
    }
}

/*--------------------------------------------------------------
# Course datils
--------------------------------------------------------------*/
.course-datils {
    position: relative;
}

.bg-course-details {
    height: 600px;
    position: absolute;
    z-index: -1;
}

.bg-course-details img {
    border-radius: 20px;
}

.course-datils .badge {
    border-radius: 30px;
    font-size: 16px;
}

.video-thumbnail {
    border-radius: 20px;
}

.sticky-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.075);
    position: sticky;
    top: 90px;
    z-index: 9;
    border-radius: 20px;
}

.sticky-card .nice-select {
    background: #f1f1f1 !important;
    border-radius: 30px !important;
}

.training-header {
    color: white;
    padding: 20px;
    margin-bottom: 20px;
}

.training-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.video-thumbnail {
    height: 500px;
    object-fit: cover;
}

.sticky-card .secondary-btn {
    border-radius: 30px;
}

.sticky-card .secondary-btn,
.sticky-card .primary-outline-btn {
    padding: 13px 15px;
}

/* tap */
.course-datils .nav-pills,
.main-tap .nav-pills {
    background: #f1f1f1;
    border-radius: 60px;
    padding: 12px;
}

.course-datils .nav-pills .nav-link,
.main-tap .nav-pills .nav-link {
    color: #636363;
    padding: 11px 22px;
    border-radius: 55px;
}

.course-datils .nav-pills .nav-link.active,
.course-datils .nav-pills .show > .nav-link {
    color: var(--white-color);
    background: var(--secondary-color);
    display: inline-block;
}

.main-tap .nav-pills .nav-link.active,
.main-tap .nav-pills .show > .nav-link {
    color: var(--white-color);
    display: inline-block;
    background: var(--primary-color);
}

.course-datils #tab1 p {
    font-size: 18px;
}

.course-datils #tab4 a {
    text-decoration: underline;
    color: var(--primary-color);
}

.course-datils #tab4 .d-grid {
    grid-template-columns: 0.1fr 3fr;
}

.course-testimonial {
    border-radius: 20px;
    background: #f1f1f1;
}

.course-testimonial {
    width: 100;
}

@media (max-width: 767px) {
    .video-thumbnail {
        height: 300px;
    }

    .bg-course-details {
        height: 350px;
    }

    .bg-course-details img {
        border-radius: 0;
    }

    .course-datils .nav-pills,
    .main-tap .nav-pills {
        border-radius: 25px !important;
        padding: 9px;
    }

    .training-header h1 {
        font-size: 24px;
    }

    .course-datils .nav-pills .nav-link,
    .main-tap .nav-pills .nav-link {
        padding: 9px 18px;
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# Certified Training Program
--------------------------------------------------------------*/
.about-certified {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 0;
}

.certified-hero {
    background: linear-gradient(to top, #30648ffa, #30648f4e),
    url("../img/certified-training.webp") center/cover no-repeat;
}

.about-certified .training-courses-item {
    min-height: 400px;
    margin: 0;
    width: 100%;
}

.about-certified p {
    font-size: 20px;
}

.about-certified .img-cover {
    min-height: 400px;
    border-radius: 20px;
    background: #cfe1ef;
}

.about-certified ul li {
    font-size: 18px;
    padding: 4px 0;
}

@media (max-width: 767px) {
    .about-certified {
        padding: 30px 0;
    }

    .about-certified .img-cover {
        min-height: auto;
    }

    .about-certified .training-courses-item {
        min-height: 340px !important;
    }
}

/* ------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------- M&E System -------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------- */
.M-E-System {
    h2,
    h3,
    h4,
    h5 {
        font-size: 54px;
    }
}

.me-hero {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--primary-color);
    border-radius: 20px;
}

.me-hero h1 {
    font-weight: 600;
    font-size: 45px;
}

.me-hero p {
    font-size: 18px;
}

.me-hero a {
    padding: 14px 25px;
}

.me-hero .outline-btn:hover {
    background: #ffffff15;
}

/* About
------------------------------*/
.about {
   /*  min-height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 0 5px 0;
}

.bage {
    background-color: #cfe1ef;
    display: inline-block;
    font-size: 16px;
    border-radius: 25px;
    font-weight: 400;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .icon-box .icon {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-out 0s;
    background-color: #cfe1ef;
}

.about .icon-box h3 {
    font-size: 24px;
}

.about .icon-box p {
    font-size: 17px;
    margin-bottom: 0;
}

/* .about .icon-box:hover .icon {
  background-color: var(--secondary-color);
  color: var(--color-inverse);
} */

.about .icon-boxes .col-md-6:nth-child(1) .icon-box,
.about .icon-boxes .col-md-6:nth-child(2) .icon-box {
    border-bottom: 1px dashed #b8b8b8;
}

/* Why Us
------------------------------*/
.why-us {
    padding: 50px 0;
}

.why-us .donor-num {
    border-radius: 8px;
    background: #f1f1f1;
}

.why-us .donor-num span {
    color: var(--primary-color);
    font-size: 70px;
    font-weight: 500;
}

.why-us .donor-num p,
.why-us .support-content p {
    font-size: 18px;
}

.why-us .support-content {
    border-radius: 8px 0 0 8px;
}

.why-us .support-img {
    border-radius: 0 8px 8px 0;
}

.why-us .support-content strong {
    line-height: 38px;
    color: #cfe1ef;
    font-size: 30px;
    font-weight: 500;
}

/* Tools
------------------------------*/
.tools {
    padding: 30px 0;
}
.tools-item {
    transition: 0.3s all;
}

.tools-item:hover {
    border-radius: 10px;
    color: var(--primary-color);
    background: #cfe1ef;
}

.why-us-counter {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tools-img {
    height: 92%;
}

.why-us-counter span {
    font-size: 4.5rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.why-us-counter p {
    font-size: 1.2rem;
}

.plans {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.plan-box {
    border-radius: 10px;
    background: #cfe1ef;
}

.plan-box .icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    line-height: 18px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plan-box .icon i {
    font-size: 12px;
}

.plan-box .btn-item {
    width: 57px;
    height: 57px;
    border: 1px solid var(--primary-color);
    transform: rotate(-30deg) translateY(-10px);
}

.border-w {
    border-color: var(--white-color) !important;
}

@media (max-width: 768px) {
    .me-hero {
        min-height: 80vh;
    }
    .me-hero .white-btn {
        width: 100%;
        margin-bottom: 10px;
        justify-content: space-between;
    }

    .about .icon-boxes .col-md-6:nth-child(1) .icon-box,
    .about .icon-boxes .col-md-6:nth-child(2) .icon-box {
        border-bottom: 0;
    }

    .tools-img {
        height: 100%;
    }
    .why-us , .tools{
        padding: 40px 0 60px 0;
    }

    .why-us .support-content {
        border-radius: 8px 8px 0 0;
    }

    .why-us .support-img {
        border-radius: 0 0 8px 8px;
    }

    .about .icon-box p {
        font-size: 16px;
    }

    .me-hero h1 {
        font-size: 30px;
    }

    .about .icon-box h3 {
        font-size: 20px;
    }

    .me-hero p {
        font-size: 16px;
    }

    .M-E-System {
        h2,
        h3,
        h4,
        h5 {
            font-size: 30px;
        }
    }
}

/*--------------------------------------------------------------
# Proposal
--------------------------------------------------------------*/
/* .about-certified{
  padding: 50px 0 150px 0;
 } */
.proposal-hero {
    background: linear-gradient(to top, #30648ffa, #30648f4e),
    url("../img/proposal.webp") center/cover no-repeat;
}

.proposal-slideshare {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px 0 15px 0;
}

.proposal-slideshare iframe {
    width: 100%;
    height: 86vh;
    border: 10px solid var(--primary-color) !important;
    border-radius: 10px !important;
}

@media (max-width: 768px) {
    .proposal-slideshare iframe {
        height: 46vh;
    }

    .proposal-slideshare {
        padding-bottom: 80px;
    }
}
@media (max-width: 550px) {
    .proposal-slideshare iframe {
        height: 44vh;
    }
}

/*--------------------------------------------------------------
# Consultancy
--------------------------------------------------------------*/

.consultancy-hero {
    background: linear-gradient(to top, #30648fd6, #30648f18),
    url("../img/consultancy.webp") center/cover no-repeat;
}

/* consultancy-offer */
.consultancy-offer {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.consultancy-offer .img-offer {
    border-radius: 8px;
    max-height: 408px;
}

.consultancy-offer .accordion-item {
    margin-bottom: 7px;
    border-radius: 15px !important;
}

.consultancy-offer .accordion-button:focus {
    box-shadow: none !important;
}

.consultancy-offer .accordion-item,
.consultancy-offer .accordion-button {
    border: 0;
    background: #f1f1f1;
}

.consultancy-offer .accordion-button {
    border-radius: 15px !important;
    padding-top: 37px;
    padding-bottom: 37px;
    font-weight: 500;
    font-size: 18px;
}

.consultancy-offer .book-btn {
    padding: 37px 0;
    display: block;
    border-radius: 15px !important;
}

.stats-box {
    border-radius: 15px;
    padding: 20px;
}

.stats-box p {
    font-size: 18px;
    width:50%;
}

.stats-box:first-of-type {
    background: var(--blue-500);
    color: var(--primary-color);
}

.stats-box:first-of-type strong {
    font-weight: 500;
    font-size: 50px;
}

.stats-box:last-of-type {
    background: #70a5cf;
}

@media (max-width: 768px) {
    .consultancy-offer {
        padding: 30px 0 80px;
    }

    .stats-box:first-of-type strong {
        font-size: 40px;
    }

    .consultancy-offer .img-offer {
        max-height: 393px;
    }
}

/*--------------------------------------------------------------
# Opportunity
--------------------------------------------------------------*/
.opportunity-hero {
    background: linear-gradient(to top, #30648fbc, #ffffff1b),
    url("../img/opportunity.webp") center/cover no-repeat;
}

.opportunity {
    padding: 80px 0;
}

.opportunity h5 {
    font-size: 2.2rem;
}

.search-group {
    position: relative;
}

.search-group i {
    position: absolute;
    left: 20px;
    bottom: 15px;
}

.search-group .form-control::placeholder,
.search-group i {
    color: #b8b8b8;
}

.search-group .form-control {
    padding-inline-start: 45px !important;
}

.opportunity .nice-select,
.search-group .form-control {
    border: 1px solid #d4d4d4 !important;
    border-radius: 30px !important;
}

.opportunity .nice-select:after {
    right: 20px !important;
}

.sort .nice-select:after {
    content: url(../img/icons/sort.svg) !important;
    border: 0 !important;
    transform: rotate(0deg) !important;
    right: 15px !important;
    top: 17% !important;
    width: auto;
    height: auto;
}

.opportunity .training-courses-item {
    margin: 0;
}

.opportunity-item {
    border-radius: 20px;
    background-color: #f1f1f1;
    box-sizing: content-box;
    padding: 30px 20px;
    min-height: 200px;
    height: auto !important;
    display: unset!important;
}

.opportunity-item .date {
    background: #e25664;
    color: #fff;
    font-size: 14px;
}

.opportunity .logo {
    width: auto;
    height:130px;
    border-radius: 0;
    object-fit: contain;
    max-width:100%;
}

.opportunity p {
    font-size: 20px;
    font-weight: 500;
    min-height: 60px;
}

.opportunity .flag {
    color: var(--primary-color);
    background: var(--white-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.opportunity .flag strong {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.opportunity .opportunity-item .d-grid {
    grid-template-columns: 1fr 1fr;
}

.opportunity .sort .d-grid {
    grid-template-columns: 1fr auto;
}

.opportunity-search {
    display: grid;
    gap: 5px;
    grid-template-columns: 1fr 0.4fr;
}

.opportunity .nav {
    border: 1px solid #d4d4d4;
    border-radius: 30px;
    padding: 4px 5px;
    align-items: center;
}

.opportunity .nav .nav-link {
    border-radius: 50px;
}

.opportunity .nav-pills .nav-link.active,
.opportunity .nav-pills .show > .nav-link {
    background: var(--blue-500);
}

.opportunity .nav-pills .link-1.active path {
    fill: var(--primary-color);
}

.opportunity .nav-pills .link-2.active path {
    stroke: var(--primary-color);
}

.opportunities-status a {
    display: inline-block;
    border-radius: 25px;
    border: 1px solid #d4d4d4;
    color: #474747;
    padding: 6px 25px;
}

.opportunities-status a.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--blue-500);
}

.filters-opportunity button,
.filters-opportunity .nice-select,
.filters-opportunity .form-control {
    border-radius: 3px !important;
}

.filters-opportunity .nice-select,
.filters-opportunity .form-control {
    background: #f1f1f1;
    border: 1px solid #d4d4d4;
}

@media (max-width: 767px) {
    .opportunity {
        padding: 40px 0 130px 0;
    }

    .opportunity-hero h1 {
        font-size: 2rem;
    }

    .opportunity h5 {
        font-size: 1.7rem;
    }

    .opportunity-search {
        gap: 8px;
        grid-template-columns: auto;
    }

    .opportunities-status a {
        border-radius: 22px;
        padding: 6px 21px;
        font-size: 15px;
    }

    .opportunity .flag img {
        width: 18px;
        height: 18px;
    }

    .opportunity .flag span {
        font-size: 14px;
    }
}
@media (max-width: 1200px) {
    .opportunity .opportunity-card  .d-grid{
        grid-template-columns: unset !important;
    }
}
/*--------------------------------------------------------------
# Insights
--------------------------------------------------------------*/

.insights-hero {
    background: linear-gradient(to top, #30648fbc, #30648f1d),
    url("../img/Insights.webp") center/cover no-repeat;
}

.writing-guide {
   /* min-height: 85vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px 0 10px 0;
}

.writing-guide .text-decoration-line-through {
    color: #9c9c9c;
}

.writing-guide .proposal-Testimonial {
    background: #f1f1f1;
    border-radius: 15px;
}
.writing-guide .proposal-Testimonial:last-of-type {
  margin-bottom: 0 !important;
}

.writing-guide .price {
    font-size: 60px;
}

@media (max-width: 767px) {
    .writing-guide {
        padding: 40px 0 80px 0;
    }
    .insights .main-article,
    .all-insights .main-article {
        min-height: 435px !important;
    }
}

/*--------------------------------------------------------------
# Latest Insights
--------------------------------------------------------------*/

.latest-insights {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.latest-insights h5 {
    font-size: 2.2rem;
}

.insights .main-article {
    border-radius: 20px;
    padding: 30px 20px;
    position: relative;
}

.insights .date {
    background: var(--secondary-color);
    color: #fff;
    font-size: 14px;
}

.insights .main-article strong {
    font-size: 25px;
    font-weight: 500;
    color: var(--white-color);
}

.insights .main-article:hover .img img {
    transform: scale(1.1);
}

.insights img {
    border-radius: 20px;
}

.insights .date {
    min-width: 120px;
    text-align: center;
}

.insights .card-title {
    font-size: 1.3rem;
    font-weight: 500;
}

.insights .card-description {
    color: #9c9c9c;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 20px;
}

.insights .small-box strong {
    font-size: 20px;
    font-weight: 400;
    display: inline-block;
}

.latest-insights .small-box p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 20px;
    font-size: 14px;
}

.latest-insights .small-box small {
    display: block;
    color: var(--white-color);
    margin-top: 15px;
}

.all-insights {
    padding: 80px 0 150px 0;
}

.all-insights .main-article {
    min-height: 500px;
}

.all-insights h5 {
    font-size: 2.2rem;
}

.all-insights .nice-select {
    border: 1px solid #d4d4d4;
    border-radius: 30px;
}

.all-insights .nice-select:after {
    right: 20px !important;
}

@media (max-width: 767px) {
    .all-insights {
        padding: 30px 0 ;
    }

    .courses-hero h1 {
        font-size: 2rem;
    }

    .all-insights h5 {
        font-size: 1.7rem;
    }
}

/*--------------------------------------------------------------
# Insights Content
--------------------------------------------------------------*/
.insights .insights-header img {
    border-radius: 10px;
    /* width: 100%;*/
    object-fit: cover;
    height: 450px;
}

.insights .insights-header h1 {
    font-size: 50px;
}

.insights .insights-header span {
    padding-bottom: 0;
    border-bottom: 1px solid var(--secondary-color);
}

.insights-icons {
    border-top: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
}

.insights-icons a {
    border: 1px solid #70a5cf;
    width: 55px;
    height: 55px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.insights-icons a:hover {
    background: #70a4cf18;
}

.insights-content p {
    font-size: 18px;
}

@media (max-width: 767px) {
    .insights .insights-header h1 {
        font-size: 26px;
    }

    .insights .insights-header img {
        height: 300px;
    }

    .insights-content p {
        font-size: 17px;
    }
}

.all-insights .main-article {
    border-radius: 20px;
    padding: 30px 20px;
    position: relative;
}

.all-insights .date {
    background: var(--secondary-color);
    color: #fff;
    font-size: 14px;
}

.all-insights .main-article strong {
    font-size: 25px;
    font-weight: 500;
    color: var(--white-color);
}

.all-insights .main-article:hover .img img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact us
--------------------------------------------------------------*/
.contact {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-hero {
    background: linear-gradient(to top, #30648feb, #30648f18),
    url("../img/contact.webp") center/cover no-repeat;
}

.contact-form {
    border-radius: 10px;
    background: #f1f1f1;
}

.contact-form .form-control {
    background: transparent !important;
    border-radius: 0 !important;
    border: 0;
    border-bottom: 1px solid #d4d4d4;
    padding-top: 0 !important;
}

.contact-form button[type="submit"] {
    background: transparent !important;
    color: var(--primary-color) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 40px;
    border: 1px solid var(--primary-color);
}

.contact-join-us h2 {
    font-size: 60px;
}

.contact-join-us strong {
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

@media (max-width: 767px) {
    .contact {
        padding: 30px 0 80px 0;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-join-us h2 {
        font-size: 30px;
    }
}
.btn-text{
    color:#fff !important;
}
/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/

.our-team-hero {
    background: linear-gradient(to top, #30648fae, #30648f0b),
    url("../img/team.webp") center/cover no-repeat;
}

.team-slider {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-slider h3 {
    font-size: 2.2rem;
}

.team-item {
    border-radius: 10px;
    box-sizing: content-box;
    min-height: 450px;
    position: relative;
}

.team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 150px;
    bottom: 0;
    right: 0;
    border-radius: 0 0 10px 10px;
    z-index: 1;
    background: linear-gradient(#30648f00, #30648f);
}

.team-item .text-white {
    z-index: 2;
    position: absolute;
}

.team-slider .swiper-wrapper {
    height: auto;
}

.team-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.team-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--background-color);
    opacity: 1;
    border: 1px solid var(--accent-color);
}

.team-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.team-slider .custom-next-arrow,
.team-slider .custom-prev-arrow {
    border: 1px solid var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.3s all;
}

.team-slider .custom-prev-arrow img {
    transform: rotate(180deg);
}

.team-slider .custom-next-arrow:hover {
    background: #30648f12;
}

@media (max-width: 767px) {
    .team-slider {
        padding: 10px 0;
    }
}
/*--------------------------------------------------------------
# Tabel
--------------------------------------------------------------*/
.header-m{
    margin-top: 100px;
}

.donors-hero {
    background: url(../img/donors.png) center/cover no-repeat;
    height: 27vh;
    border-radius: 20px;
}

.donors-page .header  , .guide-page .header , .training-page .header , .news-details-page .header {
    position: relative !important;
}

.main-tap {
    padding: 30px 0 80px 0;
}

.main-tap .log-out {
    background: #da2537;
    color: #fff;
    border-radius: 60px;
    padding: 21px 45px;
}

.main-tap .log-out:hover {
    background: #f13245;
}

.main-tap .search-doners .nice-select {
    background: #f1f1f1;
    border: 1px solid #d4d4d4;
}

#SubscribeModal .form-check {
    border-radius: 12px;
    cursor: pointer;
}

#SubscribeModal .form-check {
    color: var(--gray-500);
}

#SubscribeModal .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

#SubscribeModal .form-check:has(.form-check-input:checked) {
    background: var(--blue-500);
    border-color: var(--blue-500);
    color: var(--primary-color) !important;
}

#SubscribeModal .form-check-input {
    padding: 11px !important;
}

.main-tap .search-doners button,
.main-tap .search-doners .nice-select {
    border-radius: 3px !important;
}

.search-doners {
    border-bottom: 1px solid #d4d4d4;
    padding-bottom: 70px;
}

.profile-card {
    border: 1px solid #d4d4d4;
    border-radius: 15px;
}

.profile-card .user-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.profile-card .personal-info p {
    color: #474747;
}

.profile-card .outline-btn {
    width: auto !important;
}

.user-info p span {
    color: var(--primary-color);
}

@media (max-width: 767px) {
    .main-tap {
        padding: 18px 0 80px 0;
    }

    .main-tap .log-out {
        padding: 9px 30px;
    }

    .donors-hero {
        height: 23vh;
    }
}

/*--------------------------------------------------------------
# Tabel
--------------------------------------------------------------*/

.table thead tr th {
    color: var(--blue-500);
    background-color: var(--primary-color);
    padding-top: 22px;
    padding-bottom: 22px;
}

.table tbody tr td {
    padding-top: 28px;
    padding-bottom: 28px;
}

.status-red,
.status-grean {
    color: #fff;
    border-radius: 1rem;
    padding: 0.2rem 0.6rem;
    font-weight: 500;
}

.status-red {
    background-color: #e25664;
}

.status-grean {
    background: var(--secondary-color);
}

/* Make fields look like subtle pills */
.field-pill {
    background-color: var(--blue-500);
    color: var(--primary-color);
    border-radius: 1rem;
    padding: 0.3rem 0.6rem;
    font-size: 0.85rem;
}

/* Funder-logo placeholder circle */
.funder-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ccc;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.tabel-icon,
.tabel-btn {
    width: 45px;
    color: var(--blue-500);
    background: var(--primary-color);
}

.tabel-icon {
    height: 45px;
}

.tabel-btn {
    height: 45px;
    width: auto;
    border-radius: 30px;
}

.tabel-icon:hover,
.tabel-btn:hover {
    color: var(--blue-500);
    background: var(--primary-hover-color);
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-bg-type: #ffffff !important;
}
/*
.table-striped > tbody > tr:nth-of-type(even) > * {
    --bs-table-bg-type: #f1f1f1 !important;
}
*/

thead {
    border: 1px solid var(--primary-color);
}

tbody {
    border: 1px solid #d4d4d4;
}

tbody .w-50px {
    display: inline-block;
    width: 50px;
}

.tabel-showing {
    height: 38px !important;
    line-height: 38px !important;
    border: 1px solid #d4d4d4 !important;
    border-radius: 30px !important;
}

.table .dropdown-menu {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px !important;
    border-radius: 9px;
}

.table .dropdown-item.active,
.dropdown-item:active {
    background: transparent !important;
}

@media (max-width: 767px) {
    .table .status-red {
        display: ruby-text;
        margin-top: 50px;
    }

    .tabel-icon {
        width: 40px;
        height: 40px;
    }

    .tabel-showing {
        height: 37px !important;
        line-height: 37px !important;
    }
}

/*--------------------------------------------------------------
# Nice Select
--------------------------------------------------------------*/
.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 16px;
    font-weight: normal;
    height: 53px;
    line-height: 53px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: 100%;
    color: var(--primary-color);
}

.nice-select .current{
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.nice-select:hover {
    border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
    border-color: var(--primary-color);
}

.nice-select:after {
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    content: "";
    display: block;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 20px;
    top: 48%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 8px;
    height: 8px;
}

.nice-select.open:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
     height: auto;
     max-height: 250px;
    overflow-y: auto;
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #cccccc;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
    width: 100%;
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    white-space: normal;
    word-wrap: break-word;
    overflow: visible;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #03673316;
}

.nice-select .option.selected {
    font-weight: bold;
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

.partner-form .nice-select {
    margin-top: 0 !important;
    height: 42.6px !important;
    line-height: 42.6px !important;
}

/* Lenis animation */

body[data-section="counter"],
body[data-section="CTA-1"],
body[data-section="order"] {
    background-color: var(--white-color);
    /* Purple */
}

body[data-section="find-doner"],
body[data-section="opportunities"],
body[data-section="traning"],
body[data-section="training-courses"] {
    /*background-color: var(--primary-color);
     Purple */
}


.profile-pic-wrapper {
    position: relative;
    display: inline-block;
}

.edit-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.edit-icon img {
    width: 20px;
    height: 20px;
}

#imagePreview {
    max-width: 100%;
    max-height: 200px;
    border-radius: 10px;
    margin-top: 10px;
}

.page-link{
    color:var(--primary-color)  !important;
}

.active>.page-link, .page-link.active{
    background-color: var(--secondary-color)!important;
    border-color: var(--secondary-color)!important;
}


.opportunity-sort-select .list , .courses .nice-select .list , .donor-sort-select .list , #status .nice-select .list ,#InfoModal-12 .nice-select .list {
      height: auto;
     max-height: 250px;
}

#InfoModal-12 .current{
   line-height: 2;
    color: var(--bs-body-color);
}

#InfoModal-12 .form-check .form-check-input {
    float: unset;
    padding:10px !important;
    border-radius: 7px !important;
    margin-inline-end: 8px;
}
#fundraising-strategies-12 .form-check{
    display:flex !important;
}

.clients-Partnership .swiper-slide a{
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*  */

/* will-change: transform, filter;
filter: blur(5px);  */
