/* Start Padding & Margen */
.p-10{
    padding: 10px;
}
.p-15{
    padding: 15px;
}
.p-20-0{
    padding: 20px 0;
}
.p-20-15{
    padding: 20px 15px;
}
.p-20{
    padding: 20px;
}
.pt-20{
    padding-top: 20px;
}
.m-0{
    margin: 0;
}
.mr-5{
    margin-right: 5px;
}
.mr-10{
    margin-right: 10px;
}
.m-20-0{
    margin: 20px 0;
}
.mt-20{
    margin-top: 20px;
}
/* End Padding & Margen */
/* Start Color */
.c-w{
    color: white;
}
.c-444{
    color: #444;
}
.c-b{
    color: black;
}
.c-main{
    color: var(--main-color);
}
.bg-main{
    background-color: var(--main-color);
}
.bg-black{
    background-color: black;
}
.bg-w{
    background-color: white;
}
.tran{
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}
/* End Color */
/* Start Position */
.p-re{
    position: relative;
}
.p-ab{
    position: absolute;
}
/* End Position */
/* Start Display */
.d-b{
    display: block;
}
.d-f{
    display: flex;
}
.a-c{
    align-items: center;
}
.flex-cen{
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-bet{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.d-g{
    display: grid;
}
.gap{
    gap: 30px;
}
.bor-rad-6{
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.bor-rad{
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
/* End Display */
/* Start Size */
.t-a{
    text-align: center;
}
.fw-b{
    font-weight: bold;
}
.fw-400{
    font-weight: 400;
}
.fw-700{
    font-weight: 700;
}
.fs-18{
    font-size: 18px;
}
.fs-20{
    font-size: 20px;
}
.fs-25{
    font-size: 25px;
}
.fs-30{
    font-size: 30px;
}
/* End Size */