#aboutus-header{
    background: linear-gradient(90deg, #06BC51 0%, #00DA5A 50%, #00EB61 100%);
    border-radius: 0px 0px clamp(3.125rem, -4.938rem + 19.084vw, 9.375rem) 0px;
    min-height:500px;
    display: flex;
    align-items:center;
    color:var(--c-text-alt);
    position: relative;
    padding-bottom:0;
}
#aboutus-header::after{
    content:'';
    display: block;
    background-image:url('../images/aboutus-bgicon.svg');
    background-size:contain;
    background-position:center;
    background-repeat: no-repeat;
    padding-top:calc(415/268 * var(--w, 174px));
    width:var(--w, 174px);
    position: absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
}
#aboutus-header > .container{
    z-index:2;
}
#aboutus-header > .container > div{
    display: flex;
    flex-direction:column;
    gap:20px;
}
.aboutus-header__content{
    width:calc(65% - var(--gap)/2);
    align-self:center;
    margin-bottom:60px;
}
.aboutus-header__image{
    width:calc(35% - var(--gap)/2);
    position: relative;
}
@media screen and (max-width:992px){
    .aboutus-header__content{
        width:calc(55% - var(--gap)/2);
        margin-bottom:0;
    }
    .aboutus-header__image{
        width:calc(45% - var(--gap)/2);
    }   
}
@media screen and (max-width:767px){
    .aboutus-header__content, .aboutus-header__image{
        width:100%
    }
    .aboutus-header__image{
        justify-self:center;
    }
    #aboutus-header > .container > div:nth-child(2){
        align-items:center;
    }
}


#aboutus-values > .container{
    max-width:900px;
}

.item{
    box-shadow:0 0 10px rgba(0,0,0,.12);
    border-radius:15px;
    overflow: hidden;
}
.item-header{
    padding:30px 30px 0 30px;
    background: linear-gradient(180deg, #02FF9A 0%, #00DA5A 35%, #06BC51 100%);
    color:#fff;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction:column;
    align-items:center;
}
.item-header h3{
    font-size: clamp(1.375rem, 0.8912rem + 1.145vw, 1.75rem);
    margin-bottom:20px;
    display: inline-flex;
}
.item-header figure{
    max-width:130px;
    margin:0 auto -60px;
    display: inline-flex;
}
.item-content{
    padding:70px 30px 30px 30px;
}
.item:nth-child(odd) .item-header{
    background: linear-gradient(180deg, #0088BE 0%, #215B74 35%, #132A3C 100%);
}