/***ABOUT***/
.about-sctn {
    padding-bottom:calc(5% + 32px);
    padding-top:32px
}
.about-sctn .img-col img{
    mask-image:url(/wp-content/uploads/2026/01/Brush-ABW.svg);
    mask-size:cover;
    mask-repeat:no-repeat;
    mask-position:center;
}
@media(min-width:801px){
    .about-sctn .text-col{
        width:50%;
        padding-right:5%;
        display:flex;
        flex-direction:column;
        justify-content: center;
    }
    .about-sctn .img-col {
        width:50%;
        display: flex;
        align-items: center;
    }
    .about-sctn .text-col p:last-child{
        margin:0
    }
}
@media(max-width:800px){
    .about-sctn .text-col{
        width:100%;
        text-align:center
    }
    .about-sctn .img-col{
        width:100%
    }
}
/***VALUES***/
.values-sctn {
    padding-bottom:calc(5% + 32px);
    padding-top:32px
}
.values-sctn .icon-cont{
    display:flex;
    gap:32px;
    justify-content:space-evenly;
    text-align:center;
    width:100%;
    flex-wrap:wrap
}
.values-sctn .icon-col img{
    background-color:var(--secondary);
    padding:20px;
    width:100px;
    height:100px;
    border-radius:10px
}
.values-sctn .subtitle{
    margin-bottom:8px;
    margin-top:20px
}
.values-sctn .icon-col p{
    margin:0
}
@media(min-width:801px){
    .values-sctn .icon-col{
        width:calc(33% - 20px)
    }
}
@media(max-width:800px) and (min-width:501px){
    .values-sctn .icon-col{
        width:45%
    }
}