/*====================================================
                WOMEN MINISTRY
====================================================*/

:root{

    --primary:#0d6efd;
    --secondary:#f8c146;
    --dark:#07111f;
    --dark2:#0b1728;
    --white:#ffffff;
    --text:#d7d7d7;
    --glass:rgba(255,255,255,.05);
    --border:rgba(255,255,255,.08);

}

/*====================================================
                PAGE BANNER
====================================================*/

.page-banner{

    position:relative;

    padding:180px 0 120px;

    background:
    linear-gradient(rgba(5,8,22,.75),rgba(5,8,22,.90)),
    url("../images/activity/women-ministry/banner.jpg");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    overflow:hidden;

}

.page-banner::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(13,110,253,.25),
    transparent 60%);

}

.page-banner .container{

    position:relative;

    z-index:2;

}

.page-banner h1{

    color:#fff;

    font-size:clamp(42px,6vw,70px);

    font-family:"Poppins",sans-serif;

    font-weight:800;

    margin-bottom:18px;

}

.page-banner p{

    color:#ddd;

    font-size:20px;

}

/*====================================================
                SECTION
====================================================*/

.women-ministry{

    background:var(--dark);

    padding:100px 0;

    position:relative;

    overflow:hidden;

}

.women-ministry::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(13,110,253,.06);

    border-radius:50%;

    top:-150px;

    right:-150px;

}

.women-ministry::after{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    background:rgba(248,193,70,.05);

    border-radius:50%;

    bottom:-120px;

    left:-120px;

}

/*====================================================
            FEATURE IMAGE
====================================================*/

.featured-image{

    margin-bottom:70px;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,0,0,.35);

}

.featured-image img{

    width:100%;

    transition:.6s;

}

.featured-image:hover img{

    transform:scale(1.05);

}

/*====================================================
            CONTENT CARD
====================================================*/

.content-card{

    background:var(--glass);

    backdrop-filter:blur(14px);

    border:1px solid var(--border);

    border-radius:28px;

    padding:45px;

    margin-bottom:45px;

    transition:.35s;

    box-shadow:0 20px 50px rgba(0,0,0,.20);

}

.content-card:hover{

    transform:translateY(-6px);

    border-color:rgba(248,193,70,.30);

}

/*====================================================
            SECTION TITLE
====================================================*/

.section-heading{

    margin-bottom:30px;

}

.section-heading span{

    display:inline-block;

    color:var(--secondary);

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:700;

    font-size:13px;

    margin-bottom:10px;

}

.section-heading h2{

    color:#fff;

    font-size:38px;

    font-family:"Poppins",sans-serif;

    font-weight:700;

    margin-bottom:15px;

}

.section-heading h2::after{

    content:"";

    display:block;

    width:75px;

    height:4px;

    background:var(--secondary);

    margin-top:15px;

    border-radius:50px;

}

/*====================================================
                TEXT
====================================================*/

.content-card p{

    color:var(--text);

    line-height:1.9;

    font-size:17px;

    margin-bottom:18px;

}

.content-card strong{

    color:#fff;

}

.content-card h5{

    color:#fff;

    font-size:24px;

    margin-bottom:20px;

}

/*====================================================
                LIST
====================================================*/

.ministry-list{

    list-style:none;

    padding:0;

    margin:0;

}

.ministry-list li{

    position:relative;

    padding-left:38px;

    margin-bottom:18px;

    color:#ddd;

    font-size:17px;

    line-height:1.8;

}

.ministry-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:0;

    width:24px;

    height:24px;

    border-radius:50%;

    background:var(--secondary);

    color:#111;

    font-weight:700;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:14px;

}

/*====================================================
            SUGGESTION BOX
====================================================*/

.suggestion-box{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    height:100%;

    transition:.35s;

}

.suggestion-box:hover{

    background:rgba(13,110,253,.08);

    transform:translateY(-8px);

    border-color:rgba(248,193,70,.30);

}

.suggestion-box i{

    width:80px;

    height:80px;

    background:linear-gradient(135deg,#0d6efd,#2563eb);

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    margin:0 auto 25px;

}

.suggestion-box h5{

    color:#fff;

    margin-bottom:15px;

    font-size:22px;

}

.suggestion-box p{

    margin:0;

    color:#d5d5d5;

    font-size:16px;

    line-height:1.8;

}

/*====================================================
                RESPONSIVE
====================================================*/

@media(max-width:992px){

    .page-banner{

        padding:150px 0 90px;

        background-attachment:scroll;

    }

    .content-card{

        padding:35px;

    }

    .section-heading h2{

        font-size:32px;

    }

}

@media(max-width:768px){

    .women-ministry{

        padding:70px 0;

    }

    .page-banner h1{

        font-size:42px;

    }

    .page-banner p{

        font-size:16px;

    }

    .content-card{

        padding:25px;

    }

    .section-heading h2{

        font-size:28px;

    }

    .content-card p{

        font-size:16px;

    }

    .content-card h5{

        font-size:22px;

    }

    .suggestion-box{

        padding:30px 20px;

    }

}

@media(max-width:576px){

    .page-banner{

        padding:140px 0 80px;

    }

    .page-banner h1{

        font-size:34px;

    }

    .featured-image{

        border-radius:18px;

    }

    .content-card{

        border-radius:18px;

    }

}