.banner {
    position: relative;
    width: 100%;
    height: 450px;
    /* border: 1px solid #f00; */
    padding: 60px 80px;
    padding-bottom: 0;
    /* background: linear-gradient(to bottom, #fff, #e5332da4); */
    background: linear-gradient(to bottom, #fff, #009dd663);
}

.banner .banner_content {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner .banner_content h1 {
    position: relative;
    width: 800px;
    font-family: 'Lemonada', cursive;
    font-size: 32px;
    line-height: 1.4;
    color: #009ED6;
}

.banner svg {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: auto;
}


/* ==================== responsive start ====================== */

@media only screen and (max-width:950px) {
    .banner {
        padding: 60px 50px;
    }

    .banner .banner_content h1 {
        width: 100%;
    }
}

@media only screen and (max-width:750px) {
    .banner {
        height: 400px;
    }

    .banner .banner_content h1 {
        font-size: 27px;
    }
}

@media only screen and (max-width:600px) {
    .banner {
        height: 300px;
    }

    .banner .banner_content h1 {
        font-size: 23px;
    }
}

@media only screen and (max-width:450px) {
    .banner {
        height: 250px;
    }
}


/* ================== volunteer section ================== */

.volunteer_section {
    position: relative;
    width: 100%;
    padding: 0px 55px;
    padding-bottom: 60px;
    /* border: 1px solid #f00; */
}

.volunteer_section .section_content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.volunteer_section .section_content .head {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.volunteer_section .section_content .head h1 {
    position: relative;
    width: max-content;
    font-family: 'Oleo Script', cursive;
    font-size: 40px;
    color: #E5322D;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.volunteer_section .section_content .head h1::before {
    content: '';
    position: absolute;
    bottom: -5px;
    width: 100px;
    height: 2px;
    border-radius: 25px;
    background: #009ED6;
    transition: 0.5s;
}

.volunteer_section .section_content .head h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    width: 60px;
    height: 2px;
    border-radius: 25px;
    background: #009ED6;
    transition: 0.5s;
}


.volunteer_section .section_content .volunteer_community {
    position: relative;
    margin-top: 80px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.volunteer_section .section_content .volunteer_community .empty_message {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    padding-bottom: 35px;
}
.volunteer_section .section_content .volunteer_community .empty_message h4 {
    position: relative;
    font-family: 'Lemonada', cursive;
    font-size: 23px;
    color: rgb(202, 202, 202);
}

.volunteer_section .section_content .volunteer_community .volunteer_box {
    position: relative;
    width: 350px;
    padding: 30px;
}

.volunteer_section .section_content .volunteer_community .volunteer_box .box_inner {
    position: relative;
    width: 100%;
    height: 320px;
    background: linear-gradient(180deg, #42c5f5, #009ED6);
    border-radius: 15px 15px 200px 200px;
    padding: 40px 24px 70px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 157, 214, 0.336);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.volunteer_section .section_content .volunteer_community .volunteer_box .box_inner:hover {
    background: #fff;
    transition: all 0.3s ease-in-out;
}

.volunteer_section .section_content .volunteer_community .volunteer_box .box_inner .box_border {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    border-radius: 50%;
    padding: 8px;
    background: rgba(71, 206, 255, 0.5);
    transition: all 0.4s ease-in-out;
}

.volunteer_section .section_content .volunteer_community .volunteer_box .box_inner:hover .box_border {
    width: 90px;
    height: 90px;
    padding: 5px;
    transition: all 0.4s ease-in-out;
}
.volunteer_section .section_content .volunteer_community .volunteer_box .box_inner .box_border .box_image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    border-radius: 50%;
    padding: 7px;
    background: rgba(16, 166, 221, 0.774);
    transition: all 0.4s ease-in-out;
}
.volunteer_section .section_content .volunteer_community .volunteer_box .box_inner:hover .box_border .box_image {
    padding: 0px;
    transition: all 0.4s ease-in-out;
}
.volunteer_section .section_content .volunteer_community .volunteer_box .box_inner .box_border .box_image img {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    border-radius: 50%;
    object-fit: cover;
}
.volunteer_section .section_content .volunteer_community .volunteer_box .box_inner h3 {
    position: relative;
    margin-top: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    padding: 0px 15px;
    transition: all 0.6s ease-in-out;
}
.volunteer_section .section_content .volunteer_community .volunteer_box .box_inner:hover h3 {
    margin-top: 15px;
    font-size: 16px;
    color: #009ED6;
    padding: 0px;
    transition: all 0.6s ease-in-out;
}
.volunteer_section .section_content .volunteer_community .volunteer_box .box_inner .contact_info {
    position: relative;
    padding: 0 20px;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}
.volunteer_section .section_content .volunteer_community .volunteer_box .box_inner:hover .contact_info {
    max-height: 200px;
    transition: all 1s ease-in-out;
}
.volunteer_section .section_content .volunteer_community .volunteer_box .box_inner ul {
    position: relative;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.volunteer_section .section_content .volunteer_community .volunteer_box .box_inner ul li {
    position: relative;
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}
.volunteer_section .section_content .volunteer_community .volunteer_box .box_inner ul li i {
    position: relative;
    font-size: 13px;
    margin-right: 7px;
    color: #E5322D;
}
.volunteer_section .section_content .volunteer_community .volunteer_box .box_inner ul li p {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #333;
    word-break: break-all;
}


/* ==================== responsive start ====================== */

@media only screen and (max-width:1150px) {
    .volunteer_section {
        padding: 0px 25px;
        padding-bottom: 60px;
    }
}

@media only screen and (max-width:1000px) {
    .volunteer_section .section_content .volunteer_community .volunteer_box {
        padding: 15px;
    }
}


@media only screen and (max-width:800px) {
    .volunteer_section .section_content .head h1 {
        font-size: 30px;
    }

    .volunteer_section .section_content .head h1::after {
        bottom: -10px;
    }

    .volunteer_section .section_content .volunteer_community {
        margin-top: 40px;
    }

    .volunteer_section .section_content .volunteer_community .empty_message {
        padding-bottom: 15px;
    }
    .volunteer_section .section_content .volunteer_community .empty_message h4 {
        font-size: 19px;
    }
}

@media only screen and (max-width:750px) {
    .volunteer_section .section_content .volunteer_community .volunteer_box {
        width: 50%;
    }
}


@media only screen and (max-width:650px) {
    .volunteer_section .section_content .volunteer_community .volunteer_box {
        width: 350px;
    }
}

@media only screen and (max-width:550px) {
    .volunteer_section {
        padding: 0px 5px;
        padding-bottom: 60px;
    }
}

@media only screen and (max-width:470px) {
    .volunteer_section .section_content .head h1 {
        font-size: 28px;
    }

    .volunteer_section .section_content .head h1::before {
        width: 85px;
    }

    .volunteer_section .section_content .head h1::after {
        width: 50px;
    }

    .volunteer_section .section_content .volunteer_community .empty_message h4 {
        font-size: 17px;
    }

    .volunteer_section .section_content .volunteer_community .volunteer_box {
        width: 100%;
    }
}