﻿/*=========================================
GOOGLE FONT
=========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    background:#f8f9fb;
}

a{
    text-decoration:none;
}

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

.container{

    width:95%;

    max-width:1400px;

    margin:auto;

}


/*=========================================
TOP BAR
=========================================*/

.top-bar{

    background:linear-gradient(90deg,#C5162E,#E53935);

    color:#fff;

    font-size:14px;

}

.top-bar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:48px;

}

.top-left,
.top-center,
.top-right{

    display:flex;

    align-items:center;

}

.top-left a{

    color:#fff;

    margin-right:25px;

    transition:.35s;

}

.top-left a:hover{

    color:#FFD54F;

}

.top-left i{

    margin-right:8px;

    color:#FFD54F;

}

.top-center{

    font-weight:500;

    letter-spacing:.5px;

}

.top-center i{

    color:#FFD54F;

    margin-right:8px;

}

.top-right a{

    width:36px;

    height:36px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    margin-left:10px;

    transition:.35s;

    background:rgba(255,255,255,.10);

}

.top-right a:hover{

    background:#fff;

    color:#D61F35;

    transform:translateY(-3px);

}


/*=========================================
HEADER
=========================================*/

.header-main{

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(18px);

    transition:.4s;

    position:relative;

    z-index:999;

}

.header-main .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:95px;

}


/*=========================================
LOGO
=========================================*/

.logo-area{

    display:flex;

    align-items:center;

}

.logo-area img{

    width:129px;

    margin-right:15px;

}

.logo-text h2{

    font-size:28px;

    font-weight:700;

    color:#C5162E;

    margin-bottom:2px;

}

.logo-text span{

    display:block;

    font-size:13px;

    color:#666;

    line-height:20px;

}


/*=========================================
MENU
=========================================*/

.main-menu ul{

    display:flex;

    align-items:center;

}

.main-menu ul li{

    position:relative;

}

.main-menu ul li>a{

    display:flex;

    align-items:center;

    padding:35px 18px;

    color:#333;

    font-size:15px;

    font-weight:600;

    transition:.35s;

    position:relative;

}

.main-menu ul li>a i:first-child{

    margin-right:8px;

    color:#D61F35;

}

.small-arrow{

    margin-left:7px;

    font-size:12px;

    transition:.35s;

}

.main-menu ul li:hover>a{

    color:#D61F35;

}

.main-menu ul li>a::after{

    content:"";

    position:absolute;

    left:18px;

    bottom:18px;

    width:0;

    height:3px;

    border-radius:10px;

    background:#D61F35;

    transition:.35s;

}

.main-menu ul li:hover>a::after{

    width:calc(100% - 36px);

}
/*=========================================
PREMIUM DROPDOWN
=========================================*/

.main-menu ul li .submenu{

    position:absolute;

    top:120%;

    left:0;

    min-width:280px;

    background:#fff;

    border-radius:18px;

    padding:15px 0;

    box-shadow:0 20px 60px rgba(0,0,0,.12);

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:all .35s ease;

    z-index:999;

    overflow:hidden;

    border-top:4px solid #D61F35;

}

.main-menu ul li:hover>.submenu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

    top:100%;

}

.main-menu ul li:hover>.small-arrow{

    transform:rotate(180deg);

}

.submenu li{

    width:100%;

}

.submenu li a{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:14px 28px;

    color:#444;

    font-size:15px;

    font-weight:500;

    transition:.35s;

    border-left:4px solid transparent;

}

.submenu li a::after{

    display:block;

}

.submenu li a:hover{

    background:#FFF4F4;

    color:#D61F35;

    border-left:4px solid #D61F35;

    padding-left:38px;

}

.submenu li:not(:last-child){

    border-bottom:1px solid #f3f3f3;

}

/*=========================================
HEADER BUTTONS
=========================================*/

.header-buttons{

    display:flex;

    align-items:center;

    gap:15px;

}

.search-btn{

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    background:#F4F4F4;

    cursor:pointer;

    transition:.35s;

    font-size:18px;

}

.search-btn:hover{

    background:#D61F35;

    color:#fff;

    transform:rotate(15deg);

}

.donate-btn{

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 28px;

    border-radius:40px;

    background:linear-gradient(135deg,#D61F35,#B6152A);

    color:#fff;

    font-weight:600;

    transition:.35s;

    box-shadow:0 12px 30px rgba(214,31,53,.25);

}

.donate-btn:hover{

    background:linear-gradient(135deg,#1E7D3A,#2FA84F);

    transform:translateY(-4px);

    color:#fff;

    box-shadow:0 18px 35px rgba(30,125,58,.30);

}

/*=========================================
STICKY HEADER
=========================================*/

.header-main.sticky{

    position:fixed;

    left:0;

    top:0;

    width:100%;

    background:rgba(255,255,255,.98);

    backdrop-filter:blur(18px);

    box-shadow:0 10px 35px rgba(0,0,0,.10);

    animation:slideDown .4s ease;

}

.header-main.sticky .container{

    height:75px;

}

.header-main.sticky .logo-area img{

    width:110px;

}

.header-main.sticky .logo-text h2{

    font-size:24px;

}

@keyframes slideDown{

    from{

        transform:translateY(-100%);

        opacity:0;

    }

    to{

        transform:translateY(0);

        opacity:1;

    }

}

/*=========================================
MENU HOVER GLOW
=========================================*/

.main-menu ul li>a:hover{

    text-shadow:0 0 10px rgba(214,31,53,.25);

}

/*=========================================
DONATE BUTTON PULSE
=========================================*/

@keyframes pulse{

    0%{

        box-shadow:0 0 0 0 rgba(214,31,53,.45);

    }

    70%{

        box-shadow:0 0 0 18px rgba(214,31,53,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(214,31,53,0);

    }

}

.donate-btn{

    animation:pulse 2.8s infinite;

}


/*----------------------------------------------------------------------------------*/

/*==================================================
                FOOTER BASE
==================================================*/

.footer{

    position:relative;

    background:#111827;

    color:#ffffff;

    margin-top:120px;

    overflow:hidden;

}

.footer a{

    text-decoration:none;

    transition:.35s ease;

}

.footer ul{

    list-style:none;

    margin:0;

    padding:0;

}

.footer img{

    max-width:100%;
    border-radius: 25%;

}

/*==================================================
            NEWSLETTER SECTION
==================================================*/

.newsletter-section{

    position:relative;

    margin-top:0px;

    margin-bottom:70px;

    z-index:20;

}

.newsletter-box{

    background:linear-gradient(135deg,#D61F35,#B9142D);

    border-radius:20px;

    padding:45px 50px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    box-shadow:0 25px 60px rgba(0,0,0,.20);

    position:relative;

    overflow:hidden;

}

/* Decorative circles */

.newsletter-box::before{

    /*content:"";*/

    position:absolute;

    width:220px;

    height:220px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-80px;

    left:-80px;

}

.newsletter-box::after{

    /*content:"";*/

    position:absolute;

    width:180px;

    height:180px;

    background:rgba(255,255,255,.06);

    border-radius:50%;

    right:-60px;

    bottom:-60px;

}

.newsletter-content{

    width:48%;

    position:relative;

    z-index:2;

}

.newsletter-content h2{

    font-size:34px;

    font-weight:700;

    margin-bottom:15px;

    color:#fff;

}

.newsletter-content p{

    color:#f5f5f5;

    line-height:28px;

    font-size:16px;

}

/*==================================================
        NEWSLETTER FORM
==================================================*/

.newsletter-form{

    width:46%;

    display:flex;

    align-items:center;

    justify-content:flex-end;

    gap:15px;

    position:relative;

    z-index:2;

}

.newsletter-form input{

    width:100%;

    height:60px;

    border:none;

    outline:none;

    border-radius:50px;

    padding:0 25px;

    font-size:15px;

    background:#fff;

    color:#444;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.newsletter-form input::placeholder{

    color:#999;

}

.newsletter-form button{

    border:none;

    cursor:pointer;

    height:60px;

    padding:0 30px;

    border-radius:50px;

    background:#1E7D3A;

    color:#fff;

    font-size:15px;

    font-weight:600;

    display:flex;

    align-items:center;

    gap:10px;

    transition:.35s;

    white-space:nowrap;

}

.newsletter-form button i{

    font-size:16px;

}

.newsletter-form button:hover{

    background:#F4B400;

    color:#222;

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(0,0,0,.18);

}

/*==================================================
      PREMIUM DIVIDER
==================================================*/

.footer::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        #D61F35,
        #F4B400,
        #1E7D3A,
        #D61F35
    );

}

/*==================================================
      ANIMATION
==================================================*/

.newsletter-box{

    animation:footerFloat 5s ease-in-out infinite;

}

@keyframes footerFloat{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-4px);

    }

    100%{

        transform:translateY(0px);

    }

}
/*==================================================
            FOOTER MAIN
==================================================*/

.footer-main{

    position:relative;

    padding:47px 0 70px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1.3fr 1.5fr;

    gap:45px;

    align-items:flex-start;

}

/*==================================================
            FOOTER WIDGET
==================================================*/

.footer-widget{

    position:relative;

}

.footer-widget h4{

    color:#ffffff;

    font-size:22px;

    font-weight:700;

    margin-bottom:30px;

    position:relative;

    padding-bottom:15px;

}

.footer-widget h4 i{

    color:#F4B400;

    margin-right:10px;

}

.footer-widget h4::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:70px;

    height:4px;

    background:linear-gradient(90deg,#D61F35,#F4B400);

    border-radius:10px;

}

/*==================================================
            LOGO
==================================================*/

.footer-logo{

    width:110px;

    margin-bottom:20px;

}

.footer-widget h3{

    color:#fff;

    font-size:24px;

    font-weight:700;

    line-height:36px;

    margin-bottom:18px;

}

.footer-widget p{

    color:#B8BCC7;

    font-size:15px;

    line-height:30px;

}

/*==================================================
            QUICK LINKS
==================================================*/

.footer-widget ul li{

    margin-bottom:16px;

}

.footer-widget ul li:last-child{

    margin-bottom:0;

}

.footer-widget ul li a{

    color:#C9CDD8;

    font-size:15px;

    display:flex;

    align-items:center;

    transition:.35s;

}

.footer-widget ul li a::before{

    content:"\f105";

    font-family:"Font Awesome 6 Free";

    font-weight:900;

    margin-right:12px;

    color:#F4B400;

    transition:.35s;

}

.footer-widget ul li a:hover{

    color:#ffffff;

    padding-left:10px;

}

.footer-widget ul li a:hover::before{

    color:#D61F35;

}

/*==================================================
            CONTACT
==================================================*/

.footer-contact li{

    display:flex;

    align-items:flex-start;

    color:#C9CDD8;

    line-height:28px;

    margin-bottom:22px;

}

.footer-contact li i{

    min-width:45px;

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#F4B400;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-right:15px;

    transition:.35s;

}

.footer-contact li:hover i{

    background:#D61F35;

    color:#fff;

    transform:rotate(360deg);

}

/*==================================================
            SOCIAL
==================================================*/

.footer-social{

    display:flex;

    gap:12px;

    margin-top:30px;

}

.footer-social a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    font-size:18px;

    transition:.35s;

}

.footer-social a:hover{

    transform:translateY(-8px);

    background:#D61F35;

    color:#fff;

    box-shadow:0 15px 30px rgba(214,31,53,.35);

}

/*==================================================
        FOOTER WIDGET HOVER
==================================================*/

.footer-widget{

    transition:.35s;

}

.footer-widget:hover{

    transform:translateY(-5px);

}

/*==================================================
        DIVIDER
==================================================*/

.footer-main::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:1px;

    background:rgba(255,255,255,.08);

}
/*==================================================
            FOOTER BOTTOM
==================================================*/

.footer-bottom{

    position:relative;

    padding:25px 0;

    background:#0B1220;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-bottom .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    flex-wrap:wrap;

    gap:20px;

}

.copyright{

    color:#C8CDD8;

    font-size:15px;

    font-weight:500;

}

.copyright span{

    color:#F4B400;

    font-weight:700;

}

.footer-links{

    display:flex;

    align-items:center;

    gap:25px;

}

.footer-links a{

    color:#C8CDD8;

    font-size:15px;

    position:relative;

    transition:.35s;

}

.footer-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:#D61F35;

    transition:.35s;

}

.footer-links a:hover{

    color:#fff;

}

.footer-links a:hover::after{

    width:100%;

}

/*==================================================
        DEVELOPER CREDIT
==================================================*/

.developer{

    color:#C8CDD8;

    font-size:15px;

}

.developer a{

    color:#F4B400;

    font-weight:700;

    transition:.35s;

}

.developer a:hover{

    color:#D61F35;

}

/*==================================================
        SCROLL TO TOP
==================================================*/

.scroll-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:58px;

    height:58px;

    border-radius:50%;

    background:linear-gradient(135deg,#D61F35,#B5142C);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(214,31,53,.35);

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s;

    z-index:999;

}

.scroll-top.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.scroll-top:hover{

    background:linear-gradient(135deg,#1E7D3A,#2FA84F);

    transform:translateY(-6px);

}

.scroll-top i{

    transition:.35s;

}

.scroll-top:hover i{

    transform:translateY(-3px);

}

/*==================================================
        FOOTER BACKGROUND EFFECT
==================================================*/

.footer{

    background-image:

    radial-gradient(circle at top left,
    rgba(214,31,53,.08),
    transparent 40%),

    radial-gradient(circle at bottom right,
    rgba(30,125,58,.08),
    transparent 35%);

}

/*==================================================
        GLOW EFFECT
==================================================*/

.footer-widget h4{

    transition:.35s;

}

.footer-widget:hover h4{

    color:#F4B400;

}

/*==================================================
        CONTACT ICON ANIMATION
==================================================*/

.footer-contact li{

    transition:.35s;

}

.footer-contact li:hover{

    transform:translateX(8px);

}

/*==================================================
        SOCIAL ICON PULSE
==================================================*/

.footer-social a{

    position:relative;

    overflow:hidden;

}

.footer-social a::before{

    content:"";

    position:absolute;

    width:120%;

    height:120%;

    background:rgba(255,255,255,.15);

    transform:scale(0);

    border-radius:50%;

    transition:.4s;

}

.footer-social a:hover::before{

    transform:scale(1.8);

    opacity:0;

}

/*==================================================
        NEWSLETTER INPUT FOCUS
==================================================*/

.newsletter-form input:focus{

    box-shadow:0 0 0 4px rgba(214,31,53,.20);

}

/*==================================================
        FOOTER FADE
==================================================*/

.footer{

    animation:footerFade .8s ease;

}

@keyframes footerFade{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/*==================================================
            RESPONSIVE DESIGN
==================================================*/

/*============= Large Laptop =============*/

@media (max-width:1400px){

    .container{

        width:95%;

    }

    .footer-grid{

        gap:35px;

    }

}

/*============= Laptop =============*/

@media (max-width:1200px){

    .newsletter-box{

        padding:40px;

    }

    .newsletter-content h2{

        font-size:30px;

    }

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

        gap:45px;

    }

}

/*============= Tablet Landscape =============*/

@media (max-width:991px){

    .newsletter-box{

        flex-direction:column;

        text-align:center;

        padding:40px 30px;

    }

    .newsletter-content{

        width:100%;

        margin-bottom:30px;

    }

    .newsletter-form{

        width:100%;

        justify-content:center;

    }

    .newsletter-content h2{

        font-size:28px;

    }

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

        gap:35px;

    }

    .footer-bottom .container{

        flex-direction:column;

        text-align:center;

    }

}

/*============= Tablet =============*/

@media (max-width:768px){

    .newsletter-section{

        margin-top:-60px;

    }

    .newsletter-box{

        border-radius:18px;

        padding:30px 25px;

    }

    .newsletter-content h2{

        font-size:25px;

    }

    .newsletter-content p{

        font-size:15px;

        line-height:28px;

    }

    .newsletter-form{

        flex-direction:column;

    }

    .newsletter-form input{

        width:100%;

    }

    .newsletter-form button{

        width:100%;

        justify-content:center;

    }

    .footer-main{

        padding:10px 0 50px;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:40px;

    }

    .footer-widget{

        text-align:center;

    }

    .footer-widget h4::after{

        left:50%;

        transform:translateX(-50%);

    }

    .footer-logo{

        margin:auto;

        margin-bottom:20px;

    }

    .footer-social{

        justify-content:center;

    }

    .footer-contact li{

        justify-content:center;

        text-align:left;

    }

}



/*-------------------------------------------------------------------------------------*/

/*==================================================
                ABOUT SECTION
==================================================*/

.about-section{

    position:relative;

      padding:80px 0;


    background:#F8FAFC;

    overflow:hidden;

}

.about-section::before{

    /*content:"";*/

    position:absolute;

    width:600px;

    height:600px;

    background:rgba(214,31,53,.04);

    border-radius:50%;

    top:-250px;

    left:-250px;

}

.about-section::after{

    /*content:"";*/

    position:absolute;

    width:450px;

    height:450px;

    background:rgba(30,125,58,.05);

    border-radius:50%;

    right:-180px;

    bottom:-180px;

}

/*==================================================
            ABOUT WRAPPER
==================================================*/

.about-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

     gap:50px;

    position:relative;

    z-index:2;

}

/*==================================================
            LEFT IMAGE AREA
==================================================*/

.about-images{

    width:48%;

    position:relative;

}

.main-image{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    box-shadow:0 25px 70px rgba(0,0,0,.15);
        height: 551px;


}

.main-image img{

    width:100%;

    display:block;

    border-radius:30px;

    transition:.6s;
        height: 534px;


}

.main-image:hover img{

    transform:scale(1.08);

}

/*==================================================
            SMALL IMAGE
==================================================*/

.small-image{

    position:absolute;

    right:-40px;

    bottom:-40px;

    width:230px;

    border-radius:25px;

    overflow:hidden;

    border:8px solid #fff;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.small-image img{

    width:100%;

    display:block;

    transition:.5s;
    height: 215px;

}

.small-image:hover img{

    transform:scale(1.08);

}

/*==================================================
        EXPERIENCE CARD
==================================================*/

.experience-box{

    position:absolute;

    left:30px;

    bottom:30px;

    width:120px;

    height:120px;

    background:rgba(255,255,255,.94);

    backdrop-filter:blur(12px);

    border-radius:25px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.experience-box h2{

    font-size:34px;

    font-weight:700;

    color:#D61F35;

    margin-bottom:5px;

    line-height:1;

}

.experience-box span{

    font-size:16px;

    font-weight:600;

    color:#555;

    text-align:center;

    line-height:24px;

}

/*==================================================
            PLAY BUTTON
==================================================*/

.video-btn{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:70px;

    height:70px;

    background:#ffffff;

    color:#D61F35;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.25);

    transition:.4s;

    z-index:2;

}

.video-btn:hover{

    background:#D61F35;

    color:#fff;

    transform:translate(-50%,-50%) scale(1.1);

}

/*==================================================
        PLAY BUTTON PULSE
==================================================*/

.video-btn::before{

    content:"";

    position:absolute;

    width:100%;

    height:100%;

    border-radius:50%;

    background:rgba(214,31,53,.30);

    animation:pulseVideo 2s infinite;

    z-index:-1;

}

@keyframes pulseVideo{

    0%{

        transform:scale(1);

        opacity:.8;

    }

    70%{

        transform:scale(1.8);

        opacity:0;

    }

    100%{

        transform:scale(1.8);

        opacity:0;

    }

}

/*==================================================
        FLOATING IMAGE EFFECT
==================================================*/

.main-image{

    animation:floatImage 6s ease-in-out infinite;

}

@keyframes floatImage{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}
/*==================================================
                ABOUT CONTENT
==================================================*/

.about-content{

    width:52%;

    position:relative;

}

.section-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(214,31,53,.08);

    color:#D61F35;

    padding:10px 22px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    margin-bottom:25px;

    text-transform:uppercase;

    letter-spacing:1px;

}

.section-tag i{

    color:#F4B400;

    font-size:18px;

}

.about-content h2{

    font-size:38px;

    line-height:50px;

    margin-bottom:18px;

}

.about-content p{

    line-height:28px;

    margin-bottom:12px;

}

/*==================================================
                FEATURES
==================================================*/

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

    margin:25px 0;

}

.feature-box{

    background:#ffffff;

    border-radius:20px;

    padding:16px 18px;

    display:flex;

    align-items:center;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    border:1px solid #F1F1F1;

}

.feature-box:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

    border-color:#D61F35;

}

.feature-box i{

    width:55px;

    height:55px;

    min-width:55px;

    border-radius:18px;

    background:linear-gradient(135deg,#D61F35,#B5142C);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    margin-right:18px;

    transition:.35s;

}

.feature-box:hover i{

    transform:rotateY(180deg);

    background:linear-gradient(135deg,#1E7D3A,#2FA84F);

}

.feature-box h4{

    font-size:19px;

    font-weight:700;

    color:#111827;

    margin-bottom:6px;

}

.feature-box p{

    margin:0;

    font-size:14px;

    line-height:24px;

    color:#777;

}

/*==================================================
                BUTTONS
==================================================*/

.about-buttons{

    display:flex;

    align-items:center;

    gap:18px;

    margin-top:20px;

}

.theme-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    background:linear-gradient(135deg,#D61F35,#B5142C);

    color:#fff;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 15px 35px rgba(214,31,53,.25);

}

.theme-btn:hover{

    color:#fff;

    transform:translateY(-5px);

    background:linear-gradient(135deg,#1E7D3A,#2FA84F);

}

.theme-btn2{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:16px 34px;

    border-radius:50px;

    border:2px solid #D61F35;

    color:#D61F35;

    background:#fff;

    font-weight:600;

    transition:.35s;

}

.theme-btn2 i{

    font-size:18px;

}

.theme-btn2:hover{

    background:#D61F35;

    color:#fff;

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(214,31,53,.20);

}

/*==================================================
            DECORATIVE SHAPE
==================================================*/

.about-content::after{

    /*content:"";*/

    position:absolute;

    width:120px;

    height:120px;

    border-radius:50%;

    background:rgba(244,180,0,.08);

    right:-40px;

    top:-40px;

    z-index:-1;

}
/*==================================================
            ABOUT ANIMATIONS
==================================================*/

.about-section *{

    transition:all .35s ease;

}

.about-content h2{

    transition:.5s;

}

.about-content:hover h2{

    color:#D61F35;

}

.about-content p{

    transition:.35s;

}

.about-content:hover p{

    color:#555;

}

/*==================================================
            FEATURE HOVER EFFECT
==================================================*/

.feature-box{

    overflow:hidden;

    position:relative;

}

.feature-box::before{

    /*content:"";*/

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transition:.7s;

}

.feature-box:hover::before{

    left:100%;

}

/*==================================================
            IMAGE OVERLAY
==================================================*/

.main-image::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:100%;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.35),
        rgba(0,0,0,.05)
    );

    opacity:0;

    transition:.4s;

    z-index:1;

}

.main-image:hover::before{

    opacity:1;

}

.main-image img{

    position:relative;

    z-index:0;

}

/*==================================================
            BUTTON RIPPLE
==================================================*/

.theme-btn{

    position:relative;

    overflow:hidden;

}

.theme-btn::before{

    content:"";

    position:absolute;

    width:0;

    height:0;

    border-radius:50%;

    background:rgba(255,255,255,.25);

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    transition:.5s;

}

.theme-btn:hover::before{

    width:320px;

    height:320px;

}

/*==================================================
            FLOATING SHAPES
==================================================*/

.about-section .shape-one{

    position:absolute;

    width:18px;

    height:18px;

    background:#D61F35;

    border-radius:50%;

    top:120px;

    right:8%;

    animation:floatShape 5s infinite ease-in-out;

}

.about-section .shape-two{

    position:absolute;

    width:24px;

    height:24px;

    border:4px solid #1E7D3A;

    bottom:120px;

    left:5%;

    transform:rotate(45deg);

    animation:floatShape 6s infinite ease-in-out;

}

@keyframes floatShape{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:1200px){

    .about-wrapper{

        gap:50px;

    }

    .about-content h2{

        font-size:40px;

        line-height:52px;

    }

}

@media(max-width:991px){

    .about-wrapper{

        flex-direction:column;

    }

    .about-images{

        width:100%;

    }

    .about-content{

        width:100%;

    }

    .small-image{

        width:180px;

        right:0;

        bottom:-20px;

    }

    .about-features{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .about-section{

        padding:80px 0;

    }

    .about-content{

        text-align:center;

    }

    .section-tag{

        margin:auto auto 25px;

    }

    .about-content h2{

        font-size:34px;

        line-height:46px;

    }

    .about-features{

        grid-template-columns:1fr;

    }

    .feature-box{

        text-align:left;

    }

    .about-buttons{

        justify-content:center;

        flex-wrap:wrap;

    }

    .experience-box{

        width:120px;

        height:120px;

    }

    .experience-box h2{

        font-size:34px;

    }

    .video-btn{

        width:70px;

        height:70px;

        font-size:20px;

    }

}

@media(max-width:576px){

    .about-content h2{

        font-size:28px;

        line-height:40px;

    }

    .about-content p{

        font-size:15px;

        line-height:28px;

    }

    .small-image{

        display:none;

    }

    .about-buttons{

        flex-direction:column;

    }

    .theme-btn,

    .theme-btn2{
         padding:13px 28px;

    font-size:15px;

        justify-content:center;

    }

}
.about-images{

    opacity:0;

    transform:translateX(-80px);

    transition:1s;

}

.about-content{

    opacity:0;

    transform:translateX(80px);

    transition:1s;

}

.about-section.active .about-images{

    opacity:1;

    transform:translateX(0);

}

.about-section.active .about-content{

    opacity:1;

    transform:translateX(0);

}

/*-------------------------------------------------------------------------------------*/
/*==================================================
            HERO SECTION
==================================================*/

.hero-section{

    position:relative;

    overflow:hidden;

    background:#000;

}

/*==================================================
            SLIDER HEIGHT
==================================================*/

.hero-slide{

    position:relative;

    min-height:700px;

    display:flex;

    align-items:center;

    background-size:cover;

    background-position:center center;

    background-repeat:no-repeat;

}

/*==================================================
        BACKGROUND IMAGES
==================================================*/

.slide1 {
    background-image: url('../img/hero1.JPG');
    
}

.slide2{

    background-image:url('../img/hero2.JPG');

}

.slide3{

    background-image:url('../img/hero3.JPG');

}

/*==================================================
            DARK OVERLAY
==================================================*/

.hero-slide::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.72) 0%,
        rgba(0,0,0,.55) 40%,
        rgba(0,0,0,.25) 100%
    );

}

/*==================================================
            CONTENT
==================================================*/

.hero-slide .container{

    position:relative;

    z-index:5;

}

.hero-slide .row{

    min-height:600px;

    align-items:center;

}

/*==================================================
            TEXT AREA
==================================================*/

.hero-slide .col-lg-7{

    max-width:650px;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    padding:10px 24px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(8px);

    border-left:4px solid #F4B400;

    border-radius:40px;

    color:#fff;

    font-size:15px;

    font-weight:600;

    margin-bottom:25px;

}

.hero-slide h1{

    color:#fff;

    font-size:42px;

    font-weight:700;

    line-height:52px;

    margin-bottom:20px;

}

.hero-slide p{

    color:#F3F3F3;

    font-size:16px;

    line-height:31px;

    margin-bottom:35px;

}

/*==================================================
            BUTTONS
==================================================*/

.hero-btns{

    display:flex;

    gap:18px;

}

.btn-hero{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 38px;

    background:#D61F35;

    color:#fff;

    border-radius:50px;

    font-weight:600;

    text-decoration:none;

    transition:.35s;

}

.btn-hero:hover{

    background:#1E7D3A;

    color:#fff;

    transform:translateY(-4px);

}

.btn-outline-hero{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 38px;

    border:2px solid #fff;

    color:#fff;

    border-radius:50px;

    font-weight:600;

    text-decoration:none;

    transition:.35s;

}

.btn-outline-hero:hover{

    background:#fff;

    color:#D61F35;

}

/*==================================================
        CAROUSEL CONTROLS
==================================================*/

.carousel-control-prev,
.carousel-control-next{

    width:60px;

    height:60px;

    top:50%;

    transform:translateY(-50%);

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border-radius:50%;

    opacity:1;

}

.carousel-control-prev{

    left:25px;

}

.carousel-control-next{

    right:25px;

}

.carousel-control-prev:hover,
.carousel-control-next:hover{

    background:#D61F35;

}

/*==================================================
        INDICATORS
==================================================*/

.carousel-indicators{

    bottom:30px;

}

.carousel-indicators button{

    width:12px !important;

    height:12px !important;

    border-radius:50%;

    margin:0 4px !important;

    background:#fff;

    opacity:.5;

    transition:.35s;

}

.carousel-indicators .active{

    width:42px !important;
    height:0px !important;
    border-radius:30px;

    opacity:1;

    background:#F4B400;

}
/*==================================================
        HERO CONTENT ANIMATION
==================================================*/

.carousel-item .hero-tag,
.carousel-item h1,
.carousel-item p,
.carousel-item .hero-btns{

    opacity:0;

    transform:translateY(35px);

}

.carousel-item.active .hero-tag{

    animation:fadeUp .7s ease forwards;

}

.carousel-item.active h1{

    animation:fadeUp .7s ease .2s forwards;

}

.carousel-item.active p{

    animation:fadeUp .7s ease .4s forwards;

}

.carousel-item.active .hero-btns{

    animation:fadeUp .7s ease .6s forwards;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==================================================
        BACKGROUND ZOOM EFFECT
==================================================*/

.carousel-item.active .hero-slide{

    animation:heroZoom 5s linear forwards;

}

@keyframes heroZoom{

    from{

        background-size:100%;

    }

    to{

        background-size:108%;

    }

}

/*==================================================
        BUTTON HOVER EFFECT
==================================================*/

.btn-hero,
.btn-outline-hero{

    position:relative;

    overflow:hidden;

}

.btn-hero::before,
.btn-outline-hero::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:120%;

    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transition:.7s;

}

.btn-hero:hover::before,
.btn-outline-hero:hover::before{

    left:120%;

}

/*==================================================
        HERO TAG
==================================================*/

.hero-tag{

    transition:.35s;

}

.hero-tag:hover{

    background:rgba(255,255,255,.20);

}

/*==================================================
        HEADING
==================================================*/

.hero-slide h1{

    text-shadow:0 3px 15px rgba(0,0,0,.25);

}

/*==================================================
        PARAGRAPH
==================================================*/

.hero-slide p{

    max-width:560px;

}

/*==================================================
        CAROUSEL CONTROLS
==================================================*/

.carousel-control-prev,
.carousel-control-next{

    transition:.35s;

}

.carousel-control-prev:hover{

    transform:translateY(-50%) translateX(-3px);

}

.carousel-control-next:hover{

    transform:translateY(-50%) translateX(3px);

}

/*==================================================
        INDICATORS
==================================================*/

.carousel-indicators button{

    transition:.35s;

}

.carousel-indicators button:hover{

    opacity:1;

}

/*==================================================
        GPU SMOOTHNESS
==================================================*/

.carousel-item,
.hero-slide{

    backface-visibility:hidden;

    transform:translateZ(0);

    will-change:transform;

}

/*==================================================
        IMAGE QUALITY
==================================================*/

.hero-slide{

    image-rendering:auto;

}

/*==================================================
        SLIDE TRANSITION
==================================================*/

.carousel-item{

    transition:transform .9s ease-in-out;

}
/*==================================================
                RESPONSIVE
==================================================*/

/* Large Laptop */

@media (max-width:1400px){

    .hero-slide{

        min-height:560px;

    }

    .hero-slide .row{

        min-height:560px;

    }

}

/* Laptop */

@media (max-width:1200px){

    .hero-slide{

        min-height:520px;

    }

    .hero-slide .row{

        min-height:520px;

    }

    .hero-slide h1{

        font-size:44px;

        line-height:56px;

    }

    .hero-slide p{

        font-size:16px;

    }

}

/* Tablet */

@media (max-width:991px){

    .hero-slide{

        min-height:500px;

        text-align:center;

    }

    .hero-slide .row{

        min-height:500px;

        justify-content:center;

    }

    .hero-slide .col-lg-7{

        max-width:100%;

    }

    .hero-slide h1{

        font-size:38px;

        line-height:48px;

    }

    .hero-slide p{

        margin:0 auto 30px;

        max-width:650px;

    }

    .hero-btns{

        justify-content:center;

    }

    .carousel-control-prev{

        left:15px;

    }

    .carousel-control-next{

        right:15px;

    }

}

/* Mobile */

@media (max-width:768px){

    .hero-slide{

        min-height:430px;

    }

    .hero-slide .row{

        min-height:430px;

    }

    .hero-slide h1{

        font-size:30px;

        line-height:40px;

    }

    .hero-slide p{

        font-size:15px;

        line-height:27px;

    }

    .hero-tag{

        font-size:13px;

        padding:8px 18px;

    }

    .hero-btns{

        flex-direction:column;

        gap:12px;

    }

    .btn-hero,

    .btn-outline-hero{

        width:220px;

        margin:auto;

    }

    .carousel-control-prev,

    .carousel-control-next{

        width:45px;

        height:45px;

    }

}

/* Small Mobile */

@media (max-width:576px){

    .hero-slide{

        min-height:390px;

    }

    .hero-slide .row{

        min-height:390px;

    }

    .hero-slide h1{

        font-size:24px;

        line-height:34px;

    }

    .hero-slide p{

        display:none;

    }

    .hero-btns{

        margin-top:20px;

    }

    .hero-tag{

        margin-bottom:18px;

    }

    .carousel-indicators{

        bottom:15px;

    }

    .carousel-control-prev,

    .carousel-control-next{

        display:none;

    }

}

/*==================================================
            PREMIUM FINISH
==================================================*/

.hero-slide{

    overflow:hidden;

}

.hero-slide::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:120px;

    background:linear-gradient(to top,
    rgba(0,0,0,.35),
    transparent);

}

/* Smooth Hover */

.btn-hero,
.btn-outline-hero,
.carousel-control-prev,
.carousel-control-next{

    transition:all .35s ease;

}

/* Better Text Rendering */

.hero-slide h1,
.hero-slide p{

    -webkit-font-smoothing:antialiased;

    text-rendering:optimizeLegibility;

}

/* Image Performance */

.hero-slide{

    background-attachment:scroll;

    background-size:cover;

    background-position:center;

}

/*-------------------------------------------------------------------------*/
/*=========================================
        FOCUS AREA SECTION
=========================================*/

.focus-section{

    padding:70px 0;

    background:#f8fbfc;

    position:relative;

    overflow:hidden;

}

.focus-section::before{

    /*content:"";*/

    position:absolute;

    width:320px;

    height:320px;

    background:rgba(214,31,53,.05);

    border-radius:50%;

    top:-150px;

    right:-120px;

}

.focus-section::after{

    /*content:"";*/

    position:absolute;

    width:260px;

    height:260px;

    background:rgba(30,125,58,.05);

    border-radius:50%;

    bottom:-120px;

    left:-120px;

}

/*=========================================
        SECTION TITLE
=========================================*/

.section-title{

    text-align:center;

    margin-bottom:50px;

    position:relative;

    z-index:2;
  

}

.section-title span{

    display:inline-block;

    padding:8px 22px;

    background:#ffe8ec;

    color:#D61F35;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    letter-spacing:.5px;

}

.section-title h2{

    margin:18px 0 15px;

    font-size:42px;

    font-weight:700;

    color:#222;

}

.section-title p{

    max-width:650px;

    margin:auto;

    color:#666;

    line-height:30px;

}

/*=========================================
        WRAPPER
=========================================*/

.focus-wrapper{

    display:flex;

    gap:40px;

    align-items:center;

    position:relative;

    z-index:2;

}

/*=========================================
        LEFT MENU
=========================================*/

.focus-menu{

    width:32%;

    display:flex;

    flex-direction:column;

    gap:16px;

}

/*=========================================
        MENU ITEM
=========================================*/

.focus-item{

    display:flex;

    align-items:center;

    gap:18px;

    background:#fff;

    border-radius:18px;

    padding:18px 22px;

    cursor:pointer;

    transition:.35s;

    border-left:5px solid transparent;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.focus-item i{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#ffe8ec;

    color:#D61F35;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    transition:.35s;

}

.focus-item span{

    font-size:17px;

    font-weight:600;

    color:#333;

}

.focus-item:hover{

    transform:translateX(8px);

    box-shadow:0 15px 30px rgba(0,0,0,.08);

}

.focus-item:hover i{

    background:#D61F35;

    color:#fff;

}

.focus-item.active{

    background:#D61F35;

    border-left:5px solid #1E7D3A;

}

.focus-item.active span{

    color:#fff;

}

.focus-item.active i{

    background:#fff;

    color:#D61F35;

}
/*=========================================
        RIGHT CONTENT
=========================================*/

.focus-content{

    width:68%;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    display:flex;

    align-items:center;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    min-height:380px;
     min-height:450px;
    position:relative;

    transition:.4s ease;

}

/*=========================================
        IMAGE
=========================================*/

.focus-image{

    /*width:48%;*/

    height:451px;

    overflow:hidden;

    position:relative;

}

.focus-image::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.05),
        rgba(0,0,0,.15)
    );

    z-index:1;

}

.focus-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:all .6s ease;

}

.focus-content:hover img{

    transform:scale(1.08);

}

/*=========================================
        DETAILS
=========================================*/

.focus-details{

    width:52%;

    padding:45px;

}

.focus-details h3{

    font-size:34px;

    color:#222;

    margin-bottom:18px;

    font-weight:700;

    line-height:42px;

}

.focus-details p{

    color:#666;

    line-height:30px;

    font-size:16px;

    margin-bottom:30px;

}

/*=========================================
        BUTTON
=========================================*/

.focus-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:14px 30px;

    background:#D61F35;

    color:#fff;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.focus-btn:hover{

    background:#1E7D3A;

    color:#fff;

}

.focus-btn i{

    transition:.35s;

}

.focus-btn:hover i{

    transform:translateX(6px);

}

/*=========================================
        CARD HOVER
=========================================*/

.focus-content:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

/*=========================================
        ANIMATION
=========================================*/

.focus-content{

    opacity:1;

    transform:translateX(0);

}

.focus-content.focus-hide{

    opacity:0;

    transform:translateX(40px);

    transition:.35s;

}

.focus-content.focus-show{

    animation:focusFade .5s ease;

}

@keyframes focusFade{

    from{

        opacity:0;

        transform:translateX(40px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

/*=========================================
        TITLE ANIMATION
=========================================*/

.focus-show h3{

    animation:titleUp .5s ease;

}

@keyframes titleUp{

    from{

        opacity:0;

        transform:translateY(25px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=========================================
        DESCRIPTION
=========================================*/

.focus-show p{

    animation:descUp .6s ease;

}

@keyframes descUp{

    from{

        opacity:0;

        transform:translateY(25px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=========================================
        BUTTON
=========================================*/

.focus-show .focus-btn{

    animation:btnUp .7s ease;

}

@keyframes btnUp{

    from{

        opacity:0;

        transform:translateY(25px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/*--------------------------------------------------------------------------*/
/*=========================================
        IMPACT SECTION
=========================================*/

.impact-section {
    position: relative;
    padding: 90px 0;
    
    background: url('../img/c1.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.impact-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.5),
        rgba(0,0,0,.5)
    );

}

.impact-section .container{

    position:relative;

    z-index:2;

}

/*============================*/

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

      display: inline-block;
    padding: 8px 22px;
    border-radius: 30px;
    background: #ffe8ec;
    color: #D61F35;
    font-size: 14px;
    font-weight: 600;


}

.section-title h2{

    color:#ffF;

    font-size:46px;

    margin:20px 0;

}

.section-title p{

    color:#b9b6b6;

    max-width:650px;

    margin:auto;

}

/*============================*/

.impact-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

/*============================*/

.impact-card{

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.35s;

}

.impact-card:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.18);

}

.impact-card i{

    font-size:42px;

    color:#FFD54F;

    margin-bottom:20px;

}

.impact-card h3{

    font-size:50px;

    color:#fff;

    margin-bottom:10px;

}

.impact-card span{

    color:#f5f5f5;

    font-size:16px;

}

/*============================*/

.impact-buttons{

    text-align:center;

    margin-top:55px;

}

.impact-btn{

    display:inline-block;

    padding:16px 40px;

    background:#D61F35;

    color:#fff;

    border-radius:40px;

    text-decoration:none;

    transition:.35s;

}

.impact-btn:hover{

    background:#1E7D3A;

    color:#fff;

}


/*---------------------------------------------------------------------------------------------*/

/*==================================================
                PROGRAM SECTION
==================================================*/

.program-section{

    padding:80px 0;

    background:#f8f9fb;

    position:relative;

    overflow:hidden;

}

.program-section::before{

    /*content:"";*/

    position:absolute;

    width:420px;

    height:420px;

    background:rgba(214,31,53,.05);

    border-radius:50%;

    top:-200px;

    right:-120px;

}

.program-section::after{

    /*content:"";*/

    position:absolute;

    width:320px;

    height:320px;

    background:rgba(30,125,58,.05);

    border-radius:50%;

    bottom:-150px;

    left:-120px;

}

/*==================================================
                TITLE
==================================================*/

.program-section .section-title{

    text-align:center;

    margin-bottom:55px;

    position:relative;

    z-index:2;

}

.program-section .section-title span{

    display:inline-block;

    padding:8px 22px;

    border-radius:30px;

    background:#ffe8ec;

    color:#D61F35;

    font-size:14px;

    font-weight:600;

}

.program-section .section-title h2{

    margin:18px 0;

    font-size:42px;

    font-weight:700;

    color:#222;

}

.program-section .section-title p{

    max-width:650px;

    margin:auto;

    color:#666;

    line-height:30px;

}

/*==================================================
                SWIPER
==================================================*/

.programSwiper{

    padding:10px 5px 60px;

}

/*==================================================
                CARD
==================================================*/

.program-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    height:100%;

}

.program-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

/*==================================================
                IMAGE
==================================================*/

.program-image{

    position:relative;

    overflow:hidden;

    height:240px;

}

.program-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.program-card:hover img{

    transform:scale(1.12);

}

/*==================================================
                OVERLAY
==================================================*/

.program-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(0,0,0,.15),

        rgba(0,0,0,.75)

    );

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.4s;

}

.program-card:hover .program-overlay{

    opacity:1;

}

.program-overlay a{

    color:#fff;

    text-decoration:none;

    background:#D61F35;

    padding:14px 26px;

    border-radius:40px;

    transition:.35s;

}

.program-overlay a:hover{

    background:#1E7D3A;

}

/*==================================================
                CONTENT
==================================================*/

.program-content{

    padding:28px;

}

.program-content span{

    color:#D61F35;

    font-size:14px;

    font-weight:600;

    text-transform:uppercase;

}

.program-content h3{

    font-size:24px;

    margin:14px 0;

    color:#222;

    line-height:34px;

}

.program-content p{

    color:#666;

    line-height:28px;

    margin:0;

}

/*==================================================
                HOVER BORDER
==================================================*/

.program-card{

    border-bottom:4px solid transparent;

}

.program-card:hover{

    border-bottom-color:#1E7D3A;

}
/*==================================================
            SWIPER NAVIGATION
==================================================*/

.programSwiper .swiper-button-next,
.programSwiper .swiper-button-prev{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#fff;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

    transition:.35s;

    color:#D61F35;

}

.programSwiper .swiper-button-next:after,
.programSwiper .swiper-button-prev:after{

    font-size:18px;

    font-weight:700;

}

.programSwiper .swiper-button-next:hover,
.programSwiper .swiper-button-prev:hover{

    background:#D61F35;

    color:#fff;

    transform:scale(1.08);

}

/*==================================================
            PAGINATION
==================================================*/

.programSwiper .swiper-pagination{

    bottom:0 !important;

}

.programSwiper .swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#ccc;

    opacity:1;

    transition:.35s;

}

.programSwiper .swiper-pagination-bullet-active{

    width:40px;

    border-radius:20px;

    background:#D61F35;

}

/*==================================================
            IMAGE EFFECT
==================================================*/

.program-image img{

    transition:transform .7s ease;

}

.program-card:hover .program-image img{

    transform:scale(1.12) rotate(1deg);

}

/*==================================================
            CONTENT EFFECT
==================================================*/

.program-content{

    transition:.35s;

}

.program-card:hover .program-content{

    transform:translateY(-6px);

}

/*==================================================
            TITLE
==================================================*/

.program-content h3{

    transition:.35s;

}

.program-card:hover h3{

    color:#D61F35;

}

/*==================================================
            BUTTON
==================================================*/

.program-overlay a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    font-weight:600;

}

.program-overlay a i{

    transition:.35s;

}

.program-overlay a:hover i{

    transform:translateX(6px);

}

/*==================================================
            FLOAT ANIMATION
==================================================*/

.program-card{

    animation:cardFloat 6s ease-in-out infinite;

}

.program-card:nth-child(2){

    animation-delay:.5s;

}

.program-card:nth-child(3){

    animation-delay:1s;

}

@keyframes cardFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-6px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================================
            SWIPER SHADOW
==================================================*/

.programSwiper{

    overflow:visible;

}

/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:991px){

.program-section{

    padding:70px 0;

}

.program-section .section-title h2{

    font-size:34px;

}

.program-content{

    padding:22px;

}

.program-image{

    height:220px;

}

}

@media(max-width:768px){

.program-section{

    padding:60px 0;

}

.program-section .section-title h2{

    font-size:30px;

}

.program-section .section-title p{

    font-size:15px;

}

.programSwiper .swiper-button-next,

.programSwiper .swiper-button-prev{

    display:none;

}

.program-image{

    height:210px;

}

.program-content h3{

    font-size:22px;

}

}

@media(max-width:576px){

.program-section{

    padding:50px 0;

}

.program-image{

    height:190px;

}

.program-content{

    padding:18px;

}

.program-content h3{

    font-size:20px;

    line-height:28px;

}

.program-content p{

    font-size:14px;

    line-height:24px;

}

}

/*-----------------------------------------------------------------------------------------*/

/*==================================================
            LEADERSHIP SECTION
==================================================*/

.leadership-section{

    padding:80px 0;

    background:#f9fafc;

    position:relative;

    overflow:hidden;
    margin-bottom: -145px;

}
.leadership-section .section-title{

    position:relative;

    z-index:5;

    text-align:center;

    margin-bottom:60px;

}

.leadership-section .section-title span{

    display:inline-block;

    background:#ffe8ec;

    color:#D61F35;

    padding:8px 22px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}

.leadership-section .section-title h2{

    color:#222 !important;

    font-size:42px;

    font-weight:700;

    margin:18px 0;

}

.leadership-section .section-title p{

    color:#666 !important;

    max-width:650px;

    margin:auto;

    line-height:30px;

}
.leadership-section .container{

    position:relative;

    z-index:10;

}
.leadership-section::before{

    /*content:"";*/

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(214,31,53,.05);

    top:-220px;

    left:-180px;
     

}

.leadership-section::after{

    /*content:"";*/

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(30,125,58,.05);

    right:-150px;

    bottom:-180px;
   

}

/*==================================================
                FOUNDER
==================================================*/

.leader-founder{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.4s;

    position:relative;
    margin-top: -90px;

}

.leader-founder:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 70px rgba(0,0,0,.15);

}

.leader-image{

    overflow:hidden;

    height:265px;

}

.leader-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.leader-founder:hover img{

    transform:scale(1.08);

}

.leader-content{

    padding:35px;

}

.leader-content span{

    display:inline-block;

    color:#D61F35;

    font-size:14px;

    font-weight:600;

    text-transform:uppercase;

    margin-bottom:12px;

}

.leader-content h3{

    font-size:32px;

    color:#222;

    margin-bottom:15px;

}

.leader-content p{

    color:#666;

    line-height:30px;

    margin-bottom:30px;

}

/*==================================================
                BUTTON
==================================================*/

.leader-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:14px 28px;

    border-radius:40px;

    background:#D61F35;

    color:#fff;

    text-decoration:none;

    transition:.35s;

}

.leader-btn:hover{

    background:#1E7D3A;

    color:#fff;

}

.leader-btn i{

    transition:.35s;

}

.leader-btn:hover i{

    transform:translateX(6px);

}

/*==================================================
            MEMBER CARD
==================================================*/

.leader-card{

    background:#fff;

    border-radius:20px;

    padding:30px;

    text-align:center;

    transition:.35s;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    border:1px solid #f2f2f2;

    height:100%;

}

.leader-card:hover{

    transform:translateY(-8px);

    border-color:#D61F35;

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

/*==================================================
            IMAGE
==================================================*/

.leader-card img{

    width:110px;

    height:110px;

    border-radius:50%;

    object-fit:cover;

    border:5px solid #fff;

    box-shadow:0 8px 20px rgba(0,0,0,.12);

    margin-bottom:20px;

    transition:.5s;

}

.leader-card:hover img{

    transform:scale(1.08);

    border-color:#D61F35;

}

/*==================================================
            NAME
==================================================*/

.leader-card h4{

    font-size:22px;

    color:#222;

    margin-bottom:8px;

}

.leader-card span{

    display:block;

    color:#777;

    font-size:15px;

    margin-bottom:20px;

}

/*==================================================
            SOCIAL
==================================================*/

.leader-social{

    display:flex;

    justify-content:center;

    gap:10px;

}

.leader-social a{

    width:40px;

    height:40px;

    border-radius:50%;

    background:#f5f5f5;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#D61F35;

    text-decoration:none;

    transition:.35s;

}

.leader-social a:hover{

    background:#D61F35;

    color:#fff;

}

/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:991px){

.leader-founder{

    margin-bottom:35px;

}

.leader-image{

    height:350px;

}

}

@media(max-width:768px){

.leadership-section{

    padding:60px 0;

}

.leader-image{

    height:300px;

}

.leader-content{

    padding:25px;

}

.leader-card{

    padding:25px;

}

}

@media(max-width:576px){

.leader-card img{

    width:90px;

    height:90px;

}

.leader-content h3{

    font-size:26px;

}

}
/*==================================================
        TEAM MEMBER ANIMATION WRAPPER
==================================================*/

.team-members{

    position:relative;

    min-height:650px;

    overflow:hidden;

}

/*==================================================
            TEAM GROUP
==================================================*/

.team-group{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    opacity:0;

    visibility:hidden;

    transform:translateY(40px);

    transition:all .7s ease;

}

/* Active Group */

.team-group.active{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

    position:relative;

}

/*==================================================
            MEMBER CARD
==================================================*/

.team-group .leader-card{

    background:#fff;

    border-radius:20px;

    padding:30px;

    text-align:center;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    border:1px solid #eee;

    height:100%;

}

.team-group .leader-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

    border-color:#D61F35;

}

/*==================================================
                IMAGE
==================================================*/

.team-group .leader-card img{

    width:110px;

    height:110px;

    border-radius:50%;

    object-fit:cover;

    border:5px solid #fff;

    box-shadow:0 8px 20px rgba(0,0,0,.12);

    transition:.5s;

    margin-bottom:18px;

}

.team-group .leader-card:hover img{

    transform:scale(1.08);

    border-color:#D61F35;

}

/*==================================================
                NAME
==================================================*/

.team-group .leader-card h4{

    font-size:22px;

    color:#222;

    margin-bottom:8px;

    font-weight:700;

}

.team-group .leader-card span{

    display:block;

    color:#777;

    font-size:15px;

}

/*==================================================
            STAGGER EFFECT
==================================================*/

.team-group.active .leader-card{

    animation:memberUp .7s ease both;

}

.team-group.active .col-md-6:nth-child(1) .leader-card{

    animation-delay:.10s;

}

.team-group.active .col-md-6:nth-child(2) .leader-card{

    animation-delay:.25s;

}

.team-group.active .col-md-6:nth-child(3) .leader-card{

    animation-delay:.40s;

}

.team-group.active .col-md-6:nth-child(4) .leader-card{

    animation-delay:.55s;

}

/*==================================================
            KEYFRAME
==================================================*/

@keyframes memberUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:991px){

.team-members{

    min-height:auto;

}

.team-group{

    position:relative;

    opacity:1;

    visibility:visible;

    transform:none;

}

}

@media(max-width:768px){

.team-group .leader-card{

    padding:22px;

}

.team-group .leader-card img{

    width:90px;

    height:90px;

}

}
/*==================================================
        GROUP TRANSITION
==================================================*/

.team-group{

    transform:translateY(40px) scale(.96);

    filter:blur(3px);

    transition:

        opacity .8s ease,

        transform .8s ease,

        filter .8s ease,

        visibility .8s;

}

.team-group.active{

    opacity:1;

    visibility:visible;

    transform:translateY(0) scale(1);

    filter:blur(0);

}

/*==================================================
            CARD EFFECT
==================================================*/

.team-group .leader-card{

    position:relative;

    overflow:hidden;

}

.team-group .leader-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:100%;

    height:100%;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.45),

        transparent

    );

    transition:1s;

}

.team-group .leader-card:hover::before{

    left:120%;

}

/*==================================================
            IMAGE EFFECT
==================================================*/

.team-group .leader-card img{

    transition:

        transform .6s ease,

        box-shadow .6s ease,

        border-color .6s ease;

}

.team-group .leader-card:hover img{

    transform:scale(1.1) rotate(2deg);

    box-shadow:0 15px 30px rgba(214,31,53,.20);

}

/*==================================================
            TEXT EFFECT
==================================================*/

.team-group .leader-card h4{

    transition:.35s;

}

.team-group .leader-card:hover h4{

    color:#D61F35;

}

.team-group .leader-card span{

    transition:.35s;

}

.team-group .leader-card:hover span{

    color:#0F4C81;

}

/*==================================================
            ACTIVE GROUP
==================================================*/

.team-group.active{

    animation:groupFade .8s ease;

}

@keyframes groupFade{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==================================================
            FLOAT EFFECT
==================================================*/

.team-group.active .leader-card{

    animation:cardFloat 5s ease-in-out infinite;

}

.team-group.active .col-md-6:nth-child(2) .leader-card{

    animation-delay:.3s;

}

.team-group.active .col-md-6:nth-child(3) .leader-card{

    animation-delay:.6s;

}

.team-group.active .col-md-6:nth-child(4) .leader-card{

    animation-delay:.9s;

}

@keyframes cardFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-6px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================================
            FOUNDER EFFECT
==================================================*/

.leader-founder{

    position:relative;

    overflow:hidden;

}

.leader-founder::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(255,255,255,0),

        rgba(255,255,255,.05)

    );

    pointer-events:none;

}

.leader-founder:hover{

    transform:translateY(-10px);

}

/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:991px){

.team-group{

    position:relative;

    opacity:1;

    visibility:visible;

    transform:none;

    filter:none;

}

.team-group.active{

    animation:none;

}

}


/*-----------------------------------------------------------------------------------------------*/
/*==================================================
                MOBILE RESPONSIVE
==================================================*/

@media (max-width:768px){

.container{
    width:92%;
}

/* Top Bar */

.top-bar{
    display:none;
}

/* Header */

.header-main .container{
    height:70px;
}

.logo-area img{
    width:75px;
    margin-right:10px;
}

.logo-text h2{
    font-size:18px;
}

.logo-text span{
    display:none;
}

/*.main-menu{
    display:none;
}*/

.header-buttons{
    gap:8px;
}

.search-btn{
    width:40px;
    height:40px;
    font-size:15px;
}

.donate-btn{
    padding:10px 18px;
    font-size:14px;
}

/* Hero */

.hero-slide{
    min-height:420px;
}

.hero-slide h1{
    font-size:28px;
    line-height:38px;
}

.hero-slide p{
    font-size:15px;
    line-height:26px;
}

.hero-btns{
    flex-direction:column;
}

.btn-hero,
.btn-outline-hero{
    width:64%;
}


/* Focus */

.focus-wrapper{
    flex-direction:column;
}

.focus-menu,
.focus-content{
    width:100%;
}

.focus-content{
    flex-direction:column;
    min-height:auto;
}

.focus-image,
.focus-details{
    width:100%;
}

.focus-image{
    height:260px;
}

.focus-details{
    padding:25px;
    text-align:center;
}

/* Impact */

.impact-grid{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.impact-card{
    padding:20px;
}

.impact-card h3{
    font-size:32px;
}

/* Leadership */

.leadership-section{
    margin-bottom:0;
}

.leader-founder{
    margin-top:0;
    margin-bottom:30px;
}

.team-members{
    min-height:auto;
}

.team-group{
    position:relative;
    opacity:1;
    visibility:visible;
    transform:none;
}

.team-group:not(.active){
    display:none;
}

/* Newsletter */

.newsletter-box{
    flex-direction:column;
    padding:25px;
}

.newsletter-content,
.newsletter-form{
    width:100%;
}

.newsletter-form{
    margin-top:20px;
}

.newsletter-form{
    flex-direction:column;
}

.newsletter-form input,
.newsletter-form button{
    width:100%;
}

@media(max-width:768px){

/* About */

.about-content{
    text-align:left;
}

.section-tag{
    margin:0 0 20px;
}

.about-buttons{
    justify-content:flex-start;
}

/* Footer */

.footer-widget{
    text-align:left;
}

.footer-widget h4::after{
    left:0;
    transform:none;
}

.footer-logo{
    margin:0 0 20px;
}

.footer-social{
    justify-content:flex-start;
}

.footer-contact li{
    justify-content:flex-start;
}

.footer-links{
    justify-content:flex-start;
}

.footer-bottom .container{
    align-items:flex-start;
    text-align:left;
}

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

.leadership-section{
    margin-bottom:0;
}

.leader-founder{
    margin-top:0;
}

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

.header-buttons,
.donate-btn{

    display:none !important;

}

}

/**----------------------------------------------------------------------------------------*/

/*==================================================
            MOBILE TOGGLE
==================================================*/

.menu-toggle{

    display:none;

    width:46px;

    height:46px;

    border:none;

    background:#D61F35;

    border-radius:10px;

    cursor:pointer;

    position:fixed;

    top:18px;

    right:18px;

    z-index:10002;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    transition:.35s;

}

.menu-toggle:hover{

    background:#B7182C;

}

.menu-toggle span{

    width:22px;

    height:2px;

    background:#fff;

    margin:3px 0;

    border-radius:20px;

    transition:.35s;

}

/* Close */

.menu-toggle.active span:nth-child(1){

    transform:translateY(8px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:translateY(-8px) rotate(-45deg);

}

/*==================================================
            OVERLAY
==================================================*/

.menu-overlay{

    position:fixed;

    left:0;

    top:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(2px);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    /*z-index:9997;*/

}

.menu-overlay.active{

    opacity:1;

    visibility:visible;

}

/*==================================================
            MOBILE HEADER
==================================================*/

@media(max-width:991px){

.top-bar{

    display:none;

}

.header-main{

    height:75px;

    background:#fff;

    position:sticky;

    top:0;

    z-index:999;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.header-main .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:75px;

}

.logo-area{

    width:auto;

}

.logo-area img{

    width:58px;

    height:auto;

    display:block;

}

.header-buttons{

    display:none;

}

.menu-toggle{

    display:flex;

}

}
/*==================================================
                MOBILE MENU
==================================================*/

@media(max-width:991px){

.main-menu{

    position:fixed;

    top:0;

    right:-340px;

    width:310px;

    height:100vh;

    background:#fff;

    z-index:9999;

    transition:.40s ease;

    overflow-y:auto;

    padding:80px 25px 30px;

    box-shadow:-15px 0 45px rgba(0,0,0,.15);

}

.main-menu.active{

    right:0;

}

/*==============================
            UL
==============================*/

.main-menu>ul{

    display:block !important;

    margin:0;

    padding:0;

    list-style:none;

}

/*==============================
            LI
==============================*/

.main-menu>ul>li{

    display:block;

    margin:0;

    padding:0;

}

/*==============================
        MENU LINK
==============================*/

.main-menu>ul>li>a{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:16px 0;

    color:#222;

    font-size:16px;

    font-weight:600;

    text-decoration:none;

    border-bottom:1px solid #eee;

}

/*==============================
        LEFT
==============================*/

.menu-left{

    display:flex;

    align-items:center;

    gap:14px;

}

/*==============================
        ICON
==============================*/

.menu-left i{

    width:22px;

    text-align:center;

    color:#D61F35;

    font-size:17px;

}

/*==============================
        NORMAL ICON
==============================*/

.main-menu>ul>li>a>i:first-child{

    width:22px;

    text-align:center;

    color:#D61F35;

    margin-right:14px;

    font-size:17px;

}

/*==============================
        ARROW
==============================*/

.small-arrow{

    margin-left:auto;

    color:#777;

    font-size:13px;

    transition:.35s;

}

/*==============================
    ARROW ROTATE
==============================*/

.dropdown.open>.small-arrow,

.dropdown.open>a .small-arrow{

    transform:rotate(180deg);

}

/*==============================
        HOVER
==============================*/

.main-menu>ul>li>a:hover{

    color:#D61F35;

}

.main-menu>ul>li>a:hover>i:first-child{

    transform:scale(1.15);

    transition:.3s;

}

/*==============================
        SUB MENU
==============================*/

.main-menu .submenu{

    display:none;

    margin:12px 0 15px 36px;

    padding:0;

    list-style:none;

    background:#fafafa;

    border-radius:14px;

    overflow:hidden;

    border:1px solid #ececec;

    box-shadow:0 8px 20px rgba(0,0,0,.06);

}

.main-menu li.open>.submenu{

    display:block;

}

.main-menu .submenu li{

    margin:0;

}

.main-menu .submenu li a{

    display:block;

    padding:14px 18px;

    color:#444;

    font-size:15px;

    text-decoration:none;

    border-bottom:1px solid #ececec;

    transition:.3s;

}

.main-menu .submenu li:last-child a{

    border-bottom:none;

}

.main-menu .submenu li a:hover{

    background:#D61F35;

    color:#fff;

    padding-left:28px;

}

/*==============================
        PDF MENU
==============================*/

.pdf-menu{

    display:none;

    margin:12px 0 15px 36px;

    padding:15px;

    background:#fafafa;

    border-radius:14px;

    border:1px solid #ececec;

}

.pdf-dropdown.open .pdf-menu{

    display:block;

}

.pdf-item{

    margin-bottom:15px;

    padding-bottom:15px;

    border-bottom:1px solid #eee;

}

.pdf-item:last-child{

    margin-bottom:0;

    padding-bottom:0;

    border:none;

}

.pdf-item h5{

    font-size:15px;

    color:#222;

    margin-bottom:12px;

}

.pdf-actions{

    display:flex;

    gap:10px;

}

.view-btn,

.download-btn{

    flex:1;

    text-align:center;

    padding:10px;

    border-radius:8px;

    text-decoration:none;

    font-size:13px;

    font-weight:600;

}

.view-btn{

    background:#D61F35;

    color:#fff;

}

.download-btn{

    background:#1E7D3A;

    color:#fff;

}

}
/*==================================================
        MOBILE MENU ANIMATION
==================================================*/

@media(max-width:991px){

/*-----------------------------
        MENU ITEMS
------------------------------*/

.main-menu > ul > li{

    opacity:0;

    transform:translateX(30px);

    transition:.45s;

}

.main-menu.active > ul > li{

    opacity:1;

    transform:translateX(0);

}

/* Delay */

.main-menu.active > ul > li:nth-child(1){transition-delay:.08s;}
.main-menu.active > ul > li:nth-child(2){transition-delay:.14s;}
.main-menu.active > ul > li:nth-child(3){transition-delay:.20s;}
.main-menu.active > ul > li:nth-child(4){transition-delay:.26s;}
.main-menu.active > ul > li:nth-child(5){transition-delay:.32s;}
.main-menu.active > ul > li:nth-child(6){transition-delay:.38s;}
.main-menu.active > ul > li:nth-child(7){transition-delay:.44s;}
.main-menu.active > ul > li:nth-child(8){transition-delay:.50s;}

/*-----------------------------
        LINK HOVER
------------------------------*/

.main-menu > ul > li > a{

    position:relative;

    transition:.3s;

}

.main-menu > ul > li > a::before{

    content:"";

    position:absolute;

    left:-25px;

    top:50%;

    width:4px;

    height:0;

    background:#D61F35;

    border-radius:10px;

    transform:translateY(-50%);

    transition:.3s;

}

.main-menu > ul > li > a:hover::before{

    height:22px;

}

.main-menu > ul > li > a:hover{

    padding-left:8px;

    color:#D61F35;

}

/*-----------------------------
        SUB MENU
------------------------------*/

.submenu{

    animation:submenuFade .35s ease;

}

@keyframes submenuFade{

    from{

        opacity:0;

        transform:translateY(-10px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*-----------------------------
        SCROLLBAR
------------------------------*/

.main-menu::-webkit-scrollbar{

    width:6px;

}

.main-menu::-webkit-scrollbar-thumb{

    background:#D61F35;

    border-radius:20px;

}

.main-menu::-webkit-scrollbar-track{

    background:#f4f4f4;

}

/*-----------------------------
        ACTIVE PAGE
------------------------------*/

.main-menu .active > a{

    color:#D61F35;

    font-weight:700;

}

/*-----------------------------
        LOGO
------------------------------*/

.logo-area img{

    width:60px;

    transition:.3s;

}

/*-----------------------------
        HEADER
------------------------------*/

.header-main{

    border-bottom:1px solid #eee;

}

/*-----------------------------
        DONATE BUTTON
------------------------------*/

.header-buttons{

    display:none !important;

}

}

/*==================================================
        SMALL MOBILE
==================================================*/

@media(max-width:576px){

.main-menu{

    width:280px;

}

.main-menu > ul > li > a{

    font-size:15px;

    padding:30px 0;

}

.submenu li a{

    font-size:14px;

}

.logo-area img{

    width:111px;

}

.menu-toggle{

    width:42px;

    height:42px;

}

.menu-toggle span{

    width:20px;

}

}

/*=========================================
        FORCE MOBILE DROPDOWN
=========================================*/

@media(max-width:991px){

.main-menu .submenu,
.main-menu .pdf-menu{

    position:relative !important;

    top:0 !important;

    left:0 !important;

    right:auto !important;

    width:100% !important;

    transform:none !important;

    float:none !important;

    clear:both !important;

    opacity:1 !important;

    visibility:visible !important;

    box-shadow:none !important;

    margin:8px 0 12px 0 !important;

    padding:0 !important;

    display:none;

}

.dropdown.open>.submenu,
.dropdown.open>.pdf-menu{

    display:block !important;

}

.main-menu .submenu li,
.main-menu .pdf-menu li{

    display:block;

    width:100%;

}

.main-menu .submenu li a{

    display:block;

    width:100%;

    padding:14px 18px;

    background:#fafafa;

    border-bottom:1px solid #ececec;

}

}