.hero {
    position: relative;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background: #F6F6F6;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 68%, 0% 100%);
}
/* start logo area */
#full-logo {
    background: #ede056;
    position: relative;
    padding-top: 90px;
    padding-bottom: 50px;
}
#full-logo .top-box {
    position: absolute;
    background: #fff;
    height: 160px;
    left: 50%;
    top: -80px;
    transform: translateX(-50%);
    text-align: center;
}
/* end logo area */


/* start we-work */
.we-work .icon {
    width: 100px;
    padding: 0px 20px 0 0;
}
.we-work .right-content {
     width: 70%;
}
/* end we-work */


/* start how-it-work */
#how-it-work {
    padding: 200px 0 100px 0;
    position: relative;
}
#how-it-work::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
    background: #e2f0e1;
}
#how-it-work a {
    transition: all 0.3s linear;
}
#how-it-work a:hover {
    opacity: 0.7;
    color: rgb(37, 71, 119);
    text-decoration: none;
}
/* end how-it-work */

/* responsive */
@media (max-width: 768px) {
    #full-logo .top-box {
        width: 90%;
        height: auto;
    }
    #how-it-work {
        padding: 150px 0 100px 0;
    }
    #how-it-work::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%);
        background: #e2f0e1;
    }
}
@media (max-width: 575.98px) {
    #full-logo .logo-area  {
        margin-top: 75px!important;
    }
}