*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
li{
    list-style-type: none;
}
button{
    cursor: pointer;
}
:root{
    --primaryColor:#FB2E86;
    --secondaryColor:#151875;
    --primaryFont:"Lato", sans-serif;
    --subFont:"Josefin Sans", sans-serif;
}
.img-fluid{
    width: 100%;
}
.height-fluid{
    height: 100%;
}
.cursor-pointer{
    cursor: pointer;
}
.text-underline{
    text-decoration: underline;
}
.text-center{
    text-align: center;
}
.d-flex{
    display: flex;
}
.d-none{
    display: none;
}
.flex-column{
    display: flex;
    flex-direction: column;
}
.align-center{
    align-items: center;
}
.align-start{
    align-items: flex-start;
}
.align-end{
    align-items: flex-end;
}
.justify-between{
    justify-content: space-between;
}
.justify-around{
    justify-content: space-between;
}
.justify-center{
    justify-content: center;
}
.justify-start{
    justify-content: flex-start;
}
.justify-end{
    justify-content: flex-end;
}
.row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.container{
    width:calc(100% - 550px);
    margin: auto;
}
body{
    font-family: var(--primaryFont);
}
.f-wrap{
    flex-wrap: wrap;
}
.f-nowrap{
    flex-wrap: nowrap;
}

/*start font weight*/
.font-weight-400{
    font-weight: 400;
}
.font-weight-500{
    font-weight: 500;
}
.font-weight-600{
    font-weight: 600;
}
.font-weight-700{
    font-weight: 700;
}
/*end font weight*/

/*start font size*/
.font-size-12{
    font-size: 12px;
}
.font-size-13{
    font-size: 13px;
}
.font-size-14{
    font-size: 14px;
}
.font-size-15{
    font-size: 15px;
}
.font-size-16{
    font-size: 16px;
}
.font-size-17{
    font-size: 17px;
}
.font-size-18{
    font-size: 18px;
}
.font-size-19{
    font-size: 19px;
}
.font-size-20{
    font-size: 20px;
}
/*end font size*/

/*start colors*/
.list-color{
    color:#0D0E43;
}
.secondaryColor{
    color: var(--secondaryColor);
}
.primary-color{
    color: var(--primaryColor);
}
.white-color{
    color: #fff;
}
/*end colors*/

/*start background colors*/
.bg-primarycolor{
    background-color: var(--primaryColor);
}
.bg-white{
    background-color: #fff;
}
/*end background colors*/

/*start outline colors*/
.outline-primarycolor{
    outline: 2px solid var(--primaryColor);
}
/*end outline colors*/

/*start gap*/
.gap-3{
    gap: 3px;
}
.gap-5{
    gap: 5px;
}
.gap-10{
    gap: 10px;
}
.gap-15{
    gap: 15px;
}
.gap-20{
    gap: 20px;
}
.gap-25{
    gap: 25px;
}
.gap-30{
    gap: 30px;
}
.gap-35{
    gap: 35px;
}
.gap-40{
    gap: 40px;
}
.gap-45{
    gap: 45px;
}
.gap-50{
    gap: 50px;
}
.gap-55{
    gap: 55px;
}
.gap-60{
    gap: 60px;
}
.gap-70{
    gap: 70px;
}
/*end gap*/

/*start margin bottom*/
.mrgn-bottom-10{
    margin-bottom: 10px;
}
.mrgn-bottom-18{
    margin-bottom: 18px;
}
.mrgn-bottom-20{
    margin-bottom: 20px;
}
.mrgn-bottom-25{
    margin-bottom: 25px;
}
.mrgn-bottom-30{
    margin-bottom: 30px;
}
.mrgn-bottom-35{
    margin-bottom: 35px;
}
.mrgn-bottom-40{
    margin-bottom: 40px;
}
.mrgn-bottom-55{
    margin-bottom: 55px;
}
.mrgn-bottom-60{
    margin-bottom: 60px;
}
/*end margin bottom*/

/*start margin top*/
.mrgn-top-30{
    margin-top: 30px;
}
.mrgn-top-35{
    margin-top: 35px;
}
.mrgn-top-60{
    margin-top: 60px;
}
.mrgn-top-80{
    margin-top: 80px;
}
.mrgn-top-95{
    margin-top: 95px;
}
.mrgn-top-128{
    margin-top: 128px;
}
/*end margin top*/

/*start margin left*/
.mrgn-left-10{
    margin-left: 10px;
}
.mrgn-left-20{
    margin-left: 20px;
}
.mrgn-left-30{
    margin-left: 30px;
}
.mrgn-left-40{
    margin-left: 40px;
}
.mrgn-left-50{
    margin-left: 50px;
}
.mrgn-left-60{
    margin-left: 60px;
}
/*end margin left*/

/*start padding xy*/
.pd-xy-10-3{
    padding: 3px 10px;
}
/*end padding xy*/

/*start padding y*/
.pd-y-35{
    padding: 35px 0;
}
/*end padding y*/

/*start padding x*/
.pd-x-15{
    padding: 0 15px;
}
.pd-x-50{
    padding: 0 50px;
}
/*end padding x*/

/*start padding left*/
.pd-left-10{
    padding-left: 10px;
}
.pd-left-15{
    padding-left: 15px;
}
.pd-left-70{
    padding-left: 70px;
}
/*end padding left*/

/*start padding right*/
.pd-right-15{
    padding-right: 15px;
}
.pd-right-50{
    padding-right: 50px;
}
/*end padding right*/

/*start padding top*/
.pd-top-5{
    padding-top: 5px;
}
.pd-top-15{
    padding-top: 15px;
}
.pd-top-50{
    padding-top: 50px;
}
.pd-top-95{
    padding-top: 95px;
}
/*end padding top*/

/*start padding bottom*/
.pd-bottom-35{
    padding-bottom: 35px;
}
.pd-bottom-90{
    padding-bottom: 90px;
}
.pd-bottom-115{
    padding-bottom: 115px;
}
/*end padding bottom*/

.border-none{
    border: none;
}
.outline-none{
    outline: none;
}
.search-form-border{
    border: 2px solid #E7E6EF;
    border-radius: 2px;
}
.text-decoration-underline{
    text-decoration: underline;
}
.text-decoration-through{
    text-decoration: line-through;
}
.circle{
    border-radius: 50%;
}
/*start border-radius*/
.border-rad-1px{
    border-radius: 1px;
}
.border-rad-2px{
    border-radius: 2px;
}
.border-rad-3px{
    border-radius: 3px;
}
.border-rad-4px{
    border-radius: 4px;
}
.border-rad-5px{
    border-radius: 5px;
}
.border-rad-6px{
    border-radius: 6px;
}
.border-rad-7px{
    border-radius: 7px;
}
.border-rad-8px{
    border-radius: 8px;
}
/*end border radius*/
.italic-none{
    font-style: normal;
}
.flex-grow-1{
    flex-grow: 1;
}
.flex-shrink-0{
    flex-shrink: 0;
}
/*start overflow*/
.overflow-auto{
    overflow: auto;
}
.overflow-auto-x{
    overflow-x: auto;
}
.overflow-auto-y{
    overflow-y: auto;
}
.overflow-hidden{
    overflow:hidden;
}
.overflow-scroll{
    overflow:scroll
}
/*end overflow*/

/*start position*/
.pos-abs{
    position: absolute;
}
.pos-rel{
    position: relative;
}
.pos-sticky{
    position: sticky;
}
/*end position*/