.banner
{
    position: relative;
    width: 100%;
    height: 450px;
    padding: 60px 80px;
    padding-bottom: 0;
    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;
}


/* ================= Activity ================= */

.activity_box_sec {
    position: relative;
    width: 100%;
    padding: 100px 80px;
    padding-top: 0px;
    display: flex;
    flex-direction: column;
}
.activity_box_sec .activity_box {
    position: relative;
    width: 100%;
    padding: 60px 0;
    padding-bottom: 80px;
}
.activity_box_sec .activity_box .icon_part {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #009ED6;
    display: flex;
    justify-content: center;
}
.activity_box_sec .activity_box .icon_part span {
    position: relative;
    width: 100px;
    height: 50px;
    font-size: 50px;
    transform: translateY(-35px);
    background: #fff;
    color: #E5322D;
    display: flex;
    justify-content: center;
    align-items: center;
}
.activity_box_sec .activity_box .box_inner {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.activity_box_sec .activity_box .box_inner .box_heading {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}
.activity_box_sec .activity_box .box_inner .box_heading h3 {
    position: relative;
    font-family: 'Oleo Script', cursive;
    font-size: 27px;
    color: #74ba57;
}
.activity_box_sec .activity_box .box_inner .box_content {
    position: relative;
    margin-top: 50px;
    width: 100%;
}
.activity_box_sec .activity_box .box_inner .box_content .img_box {
    position: relative;
    width: 450px;
    height: 275px;
    border-radius: 20px;
    overflow: hidden;
    shape-outside: inset(0 0 0 0);
}
.activity_box_sec .activity_box:nth-of-type(odd) .box_inner .box_content .img_box {
    float: left;
    margin-right: 60px;
}
.activity_box_sec .activity_box:nth-of-type(even) .box_inner .box_content .img_box {
    float: right;
    margin-left: 60px;
}
.activity_box_sec .activity_box .box_inner .box_content .img_box img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.activity_box_sec .activity_box .box_inner .box_content p {
    position: relative;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    font-size: 16px;
    color: #333;
    text-align: justify;
}