body{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background-color: #fff;
}
.cblack{
    color: #000000c8;
}
.cwhite{
    color: #fff;
}
.cOrange{
    color: orange;
}

.borderall{
border: 1px solid #000000c8;
}
.borderbottom{
    border-bottom: 1px solid #5454543f;
}
a{
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}
p{
    transition: all 0.2s ease;   
}
.flexrow{
    display: flex;
    flex-direction: row;
}
.flexcol{
    display: flex;
    flex-direction: column;
}
.aligncenter{
    align-items: center;
}
.justifyright{
    justify-content: right;
}
.justifyleft{
    justify-content: left;
}
.justifycenter{
    justify-content: center;
}
.textcenter{
    text-align: center;
}
.posirelative{
position: relative;
}