.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, #e5332da4);
}
.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: #E5322D;
}
.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: 350px;
      }
      .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: 230px;
      }
}


/* ================== certificates ================== */

.certificate_section
{
    position: relative;
    width: 100%;
    padding: 0px 60px;
    padding-bottom: 60px;
    /* border: 1px solid #f00; */
}
.certificate_section .section_content
{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.certificate_section .section_content .head
{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}
.certificate_section .section_content .head h1
{
    position: relative;
    width: max-content;
    font-family: 'Oleo Script', cursive;
    font-size: 40px;
    color: #009ED6;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}
.certificate_section .section_content .head h1::before
{
    content: '';
    position: absolute;
    bottom: -5px;
    width: 100px;
    height: 2px;
    border-radius: 25px;
    background: #E5322D;
    transition: 0.5s;
}
.certificate_section .section_content .head h1::after
{
    content: '';
    position: absolute;
    bottom: -12px;
    width: 60px;
    height: 2px;
    border-radius: 25px;
    background: #E5322D;
    transition: 0.5s;
}

.certificate_section .section_content .certificate_box_sec
{
    position: relative;
    margin-top: 80px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.certificate_section .section_content .certificate_box_sec .certificate_box
{
    position: relative;
    width: 33.33%;
    padding: 20px;
}
.certificate_section .section_content .certificate_box_sec .certificate_box .c_inner
{
    position: relative;
    width: 100%;
    display: flex;
    box-shadow: -7px -7px 10px rgba(229, 51, 45, 0.409), 8px 8px 10px rgba(0, 157, 214, 0.442) , 15px 15px 15px rgba(0, 157, 214, 0.26);
}
.certificate_section .section_content .certificate_box_sec .certificate_box .c_inner img
{
    position: relative;
    width: 100%;
    height: auto;
}

/* ==================== responsive start ====================== */

@media only screen  and (max-width:1150px)
{
    .certificate_section
    {
        padding: 0px 30px;
        padding-bottom: 60px;
    }
}

@media only screen  and (max-width:1000px)
{
    .certificate_section .section_content .certificate_box_sec .certificate_box
{
    padding: 15px;
}
}

@media only screen  and (max-width:750px)
{
    .certificate_section .section_content .certificate_box_sec .certificate_box
{
    width: 50%;
}
}

@media only screen  and (max-width:550px)
{
    .certificate_section
    {
        padding: 0px 10px;
        padding-bottom: 60px;
    }
    .certificate_section .section_content .certificate_box_sec .certificate_box
    {
        padding: 10px;
    }
}

@media only screen  and (max-width:430px)
{
    .certificate_section
    {
        padding: 0px 13px;
        padding-bottom: 60px;
    }
    .certificate_section .section_content .certificate_box_sec .certificate_box
    {
        padding: 6px;
    }
}