:root {
    --blue-color--: #0075ff;
    --blue-alt-color--: #0d69d5;
    --orange-color--: #f59e0b;
    --green-color--: #22c55e;
    --red-color--: #f44336;
    --grey-color--: #888;
}

/* ----- Start Box ----- */
.d-flex {
    display: flex;
}


.align-center {
    align-items: center;
}

.space-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: flex-end;
}

.wrap {
    flex-wrap: wrap;
}

.d-grid {
    display: grid;
}

.gap-20 {
    gap: 20px;
}

.d-block {
    display: block;
}

@media(max-width: 767px) {
    .block-mobile {
        display: block;
    }

    .hide-mobile {
        display: none;
    }
}



/* ----- End Box ----- */
/* ----- Start Padding & Margin ----- */
.p-10 {
    padding: 10px;
}

.p-15 {
    padding: 15px;
}

.p-20 {
    padding: 20px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pl-15 {
    padding-left: 15px;
}

.m-5 {
    margin: 5px;
}

.m-15 {
    margin: 15px;
}

.m-20 {
    margin: 20px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.ml-10 {
    margin-left: 10px;
}


.w-full {
    width: 100%;
}

.w-fit {
    width: fit-content;
}

.h-full {
    height: 100%;
}

/* ----- End Padding & Margin ----- */
/* ----- Start Color ----- */
.bg-white {
    background-color: white;
}

.bg-eee {
    background-color: #eee;
}

.bg-blue {
    background-color: var(--blue-color--);
}

.bg-orange {
    background-color: var(--orange-color--);
}

.bg-green {
    background-color: var(--green-color--);
}

.bg-red {
    background-color: var(--red-color--);
}

.bg-twitter {
    background-color: #1da1f2
}

.bg-facebook {
    background-color: #1877f2
}

.bg-youtube {
    background-color: #ff0000
}

.bg-linkedin {
    background-color: #0077b5
}

.c-black {
    color: black;
}

.c-gray {
    color: var(--grey-color--);
}

.c-white {
    color: white;
}

.c-blue {
    color: var(--blue-color--);
}

.c-orange {
    color: var(--orange-color--);
}

.c-green {
    color: var(--green-color--);
}

.c-red {
    color: var(--red-color--);
}

/* ----- End Color ----- */
/* ----- Start Position ----- */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

/* ----- Endw Position ----- */
/* ----- Strat Font ----- */
.txt-c {
    text-align: center;
}

.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-25 {
    font-size: 25px;
}

.fw-normal {
    font-weight: normal;
}

.fw-bold {
    font-weight: bold;
}

@media(max-width: 767px) {
    .txt-c-mobile {
        text-align: center;
    }
}

.txt-lower {
    text-transform: lowercase;
}

.txt-capi {
    text-transform: capitalize;
}

.txt-upper {
    text-transform: uppercase;
}

/* ----- End Font ----- */
/* ----- Start border ----- */
.rad-6 {
    border-radius: 6px;
}

.rad-10 {
    border-radius: 10px;
}

.rad-half {
    border-radius: 50%;
}

.b-none {
    border: none;
}

.border-ccc {
    border: 1px solid #ccc;
}

.border-eee {
    border: 1px solid #eee;
}

.bt-ccc {
    border-top: 1px solid #ccc;
}

.bt-eee {
    border-top: 1px solid #eee;
}

.bb-ccc {
    border-bottom: 1px solid #ccc;
}

.bb-eee {
    border-bottom: 1px solid #eee;
}


/* ----- End border ----- */
/* ----- Start Components ----- */
.between-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.center-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-shape {
    padding: 4px 8px;
    border-radius: 6px;
}

.main-box {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    text-transform: capitalize;
}

.main-p {
    margin-top: 10px;
    margin-bottom: 20px;
    color: var(--grey-color--);
    font-size: 15px;
}

/* ----- End Components ----- */