/* Desgin Font REM */
@import url("https://fonts.googleapis.com/css2?family=REM:ital,wght@0,100..900;1,100..900&display=swap");

/* common styles start */

.font-rem {
    font-family: "REM", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

.font-abtera {
    font-family: "Abtera Regular", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

.text-white {
    color: white;
}

.text-black {
    color: black;
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.d-none {
    display: none;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.flex-col {
    flex-direction: column;
}

.w-100 {
    width: 100%;
}

.w-max {
    width: max-content;
}
.h-max {
    height: max-content;
}
.h-100 {
    height: 100%;
}

.h-100vh {
    height: 100vh;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: flex-end;
}

.align-center {
    align-items: center;
}

.align-between {
    align-items: space-between;
}
.align-end {
    align-items: flex-end;
}
.overflow-y-hidden {
    overflow-y: hidden;
}

.overflow-y-scroll {
    overflow-y: scroll;
}
.overflow-hidden {
    overflow: hidden;
}

.object-fit-cover {
    object-fit: cover;
}

.object-fit-contain {
    object-fit: contain;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.fixed {
    position: fixed;
}

.inset-0 {
    inset: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.top-0 {
    top: 0;
}

.bg-none {
    background: none;
}

.bg-color-none {
    background-color: none;
}

.bg-color-black {
    background-color: black;
}

.bg-color-white {
    background-color: white;
}

.bg-white {
    background: white;
}

.bg-black {
    background: black;
}

.bg-theme {
    background-color: #353535;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}
.fw-800 {
    font-weight: 800;
}
.fw-900 {
    font-weight: 900;
}

input::placeholder {
    font-family: "Abtera Regular", sans-serif;
    color: transparent;
}

.mt-4 {
    margin-top: 0.4rem;
}

.mt-10 {
    margin-top: 1rem;
}

.mt-20 {
    margin-top: 2rem;
}
.mt-30 {
    margin-top: 3rem;
}
.mt-40 {
    margin-top: 4rem;
}
.mt-50 {
    margin-top: 5rem;
}
.mb-10 {
    margin-bottom: 1rem;
}
.mr-20 {
    margin-right: 2rem;
}
.mt-16 {
    margin-top: 1.6rem;
}

.my-16 {
    margin-top: 1.6rem;
    margin-bottom: 1.6rem;
}

.my-100 {
    margin-top: 10rem;
    margin-bottom: 10rem;
}
.p-10 {
    padding: 1rem;
}

.p-20 {
    padding: 2rem;
}
.p-30 {
    padding: 3rem;
}
.px-10 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-20 {
    padding-left: 2rem;
    padding-right: 2rem;
}
.px-30 {
    padding-left: 3rem;
    padding-right: 3rem;
}
.py-10 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.py-20 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-50 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-100 {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.fs-12 {
    font-size: 1.2rem;
}

.fs-14 {
    font-size: 1.4rem;
}

.fs-15 {
    font-size: 1.5rem;
}

.fs-16 {
    font-size: 1.6rem;
}

.fs-18 {
    font-size: 1.8rem;
}

.fs-20 {
    font-size: 2rem;
}

.fs-22 {
    font-size: 2.2rem;
}

.fs-24 {
    font-size: 2.4rem;
}
.fs-32 {
    font-size: 3.2rem;
}
.fs-40 {
    font-size: 4rem;
}

.m-auto {
    margin: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 0.5px;
    background-color: #ffffff40; /* Blue border */
}

.light-gray {
    color: #ffffff9c;
}

.divider span {
    margin: 0 10px;
}

.outline-none {
    outline: none;
}

.border-none {
    border: none;
}

.cursor-pointer {
    cursor: pointer;
}

.border-gray {
    border: 1px solid #363636;
}

.border-b-gray {
    border-bottom: 1px solid #363636;
}

.gap-10 {
    gap: 1rem;
}

.gap-20 {
    gap: 2rem;
}

.gap-30 {
    gap: 3rem;
}
.gap-40 {
    gap: 4rem;
}

.gap-50 {
    gap: 5rem;
}
.strike-through {
    text-decoration: line-through;
}

.uppercase {
    text-transform: uppercase;
}

.scrollbar-hidden::-webkit-scrollbar {
    scrollbar-width: none;
}
.visibility-hidden {
    visibility: hidden;
}
.gradiant-bg {
    background: linear-gradient(
        90deg,
        #000 -35.39%,
        #1f1f1f 7.91%,
        #000 42.32%,
        #252525 70.22%,
        #000 91.68%,
        #202020 119.73%,
        #000 165.88%,
        #333232 202.65%,
        #000 215.69%,
        #666 294.66%
    );
}
.gradiant-button {
    border: 0.543px solid #353535;
    background: linear-gradient(
        90deg,
        #000 -35.39%,
        #1f1f1f 7.91%,
        #000 42.32%,
        #252525 70.22%,
        #000 91.68%,
        #202020 119.73%,
        #000 165.88%,
        #333232 202.65%,
        #000 215.69%,
        #666 294.66%
    );
    color: #fff;
    font-family: "Abtera";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.18px;
    padding: 2rem 5.5rem;
}

/* common styles end */

/* -------------------------------------------------------------------
   for empty page ends here
------------------------------------------------------------------- */
.empty_c_w {
    margin: auto;
    margin-bottom: 14rem;
    margin-top: 3rem;
    text-align: center;
    max-width: 37.9rem;
    width: 100%;
}
.empty_c_w img {
    margin: auto;
    margin-bottom: 2rem;
    max-width: clamp(12rem, 10.754rem + 4.451vw, 19.3rem);
}
.empty_c_w h3 {
    font-size: clamp(2rem, 1.932rem + 0.244vw, 2.4rem);
    line-height: clamp(2.2rem, 2.098rem + 0.366vw, 2.8rem);
    color: #0e1422;
    font-weight: 700;
    margin-bottom: 1.4rem;
}
.empty_c_w div {
    color: #5c5f6a;
    line-height: clamp(2.2rem, 2.115rem + 0.305vw, 2.7rem);
}
/* -------------------------------------------------------------------
   for empty page ends here
------------------------------------------------------------------- */


/* common styles for tablet start */
@media (max-width: 767.98px) {
    .tab-w-100 {
        width: 100%;
    }
    .tab-h-max {
        height: max-content;
    }
    .tab-h-60 {
        height: 6rem;
    }
    .tab-fs-12 {
        font-size: 1.2rem;
    }

    .tab-fs-14 {
        font-size: 1.4rem;
    }

    .tab-fs-15 {
        font-size: 1.5rem;
    }

    .tab-fs-16 {
        font-size: 1.6rem;
    }

    .tab-fs-18 {
        font-size: 1.8rem;
    }

    .tab-fs-20 {
        font-size: 2rem;
    }

    .tab-fs-22 {
        font-size: 2.2rem;
    }

    .tab-fs-24 {
        font-size: 2.4rem;
    }

    .tab-fs-26 {
        font-size: 2.6rem;
    }

    .tab-fs-40 {
        font-size: 4rem;
    }
    .tab-fw-300 {
        font-weight: 300;
    }

    .tab-fw-400 {
        font-weight: 400;
    }

    .tab-fw-500 {
        font-weight: 500;
    }

    .tab-fw-600 {
        font-weight: 600;
    }
    .tab-fw-800 {
        font-weight: 800;
    }
    .tab-fw-900 {
        font-weight: 900;
    }

    .tab-d-none {
        display: none;
    }
    .tab-flex-row {
        flex-direction: row;
    }
    .tab-flex-col {
        flex-direction: column;
    }
    .tab-flex-center {
        justify-content: center;
        align-items: center;
    }
    .tab-justify-center {
        justify-content: center;
    }

    .tab-justify-between {
        justify-content: space-between;
    }

    .tab-justify-end {
        justify-content: flex-end;
    }

    .tab-align-center {
        align-items: center;
    }

    .tab-align-start {
        align-items: flex-start;
    }

    .tab-align-between {
        align-items: space-between;
    }

    .tab-object-fit-cover {
        object-fit: cover;
    }

    .tab-object-fit-contain {
        object-fit: contain;
    }

    .tab-absolute {
        position: absolute;
    }

    .tab-relative {
        position: relative;
    }

    .tab-fixed {
        position: fixed;
    }

    .tab-inset-0 {
        inset: 0;
    }

    .tab-left-0 {
        left: 0;
    }

    .tab-right-0 {
        right: 0;
    }

    .tab-bottom-0 {
        bottom: 0;
    }

    .tab-top-0 {
        top: 0;
    }

    .tab-bg-none {
        background: none;
    }

    .tab-bg-none {
        background: none;
    }

    .tab-bg-theme {
        background-color: #353535;
    }
    .tab-gap-0 {
        gap: 0rem;
    }

    .tab-gap-10 {
        gap: 1rem;
    }

    .tab-gap-20 {
        gap: 2rem;
    }

    .tab-gap-30 {
        gap: 3rem;
    }
    .tab-gap-40 {
        gap: 4rem;
    }
    .tab-m-0 {
        margin: 0;
    }
    .tab-mt-4 {
        margin-top: 0.4rem;
    }

    .tab-mt-10 {
        margin-top: 1rem;
    }

    .tab-mt-20 {
        margin-top: 2rem;
    }
    .tab-mt-30 {
        margin-top: 3rem;
    }
    .tab-mt-40 {
        margin-top: 4rem;
    }
    .tab-mt-50 {
        margin-top: 5rem;
    }
    .tab-mt-100 {
        margin-top: 10rem;
    }
    .tab-mb-10 {
        margin-bottom: 1rem;
    }
    .tab-mb-20 {
        margin-bottom: 2rem;
    }
    .tab-mb-30 {
        margin-bottom: 3rem;
    }
    .tab-mb-40 {
        margin-bottom: 4rem;
    }
    .tab-mb-50 {
        margin-bottom: 5rem;
    }

    .tab-mb-10 {
        margin-bottom: 1rem;
    }

    .tab-mt-16 {
        margin-top: 1.6rem;
    }

    .tab-my-16 {
        margin-top: 1.6rem;
        margin-bottom: 1.6rem;
    }

    .tab-my-100 {
        margin-top: 10rem;
        margin-bottom: 10rem;
    }
    .tab-p-10 {
        padding: 1rem;
    }

    .tab-p-20 {
        padding: 2rem;
    }
    .tab-p-30 {
        padding: 3rem;
    }
    .tab-px-10 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .tab-px-20 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .tab-pb-30 {
        padding-bottom: 3rem;
    }

    .tab-px-20 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .tab-py-10 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .tab-py-14 {
        padding-top: 1.4rem;
        padding-bottom: 1.4rem;
    }
    .tab-py-20 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .tab-gradiant-button {
        font-size: 1.8rem;
        font-weight: 300;
        letter-spacing: 0.18px;
        padding: 2rem 5.5rem;
    }
    .gradiant-button {
        font-size: 1.4rem;
        padding: 1rem 1.5rem;
    }
}
/* common styles for tablet end */

/* common styles for tablet start */
@media (max-width: 374.98px) {
    .mobile-w-100 {
        width: 100%;
    }
    .mobile-h-max {
        height: max-content;
    }
    .mobile-fs-10 {
        font-size: 1rem;
    }
    .mobile-fs-12 {
        font-size: 1.2rem;
    }

    .mobile-fs-14 {
        font-size: 1.4rem;
    }

    .mobile-fs-15 {
        font-size: 1.5rem;
    }

    .mobile-fs-16 {
        font-size: 1.6rem;
    }

    .mobile-fs-18 {
        font-size: 1.8rem;
    }

    .mobile-fs-20 {
        font-size: 2rem;
    }

    .mobile-fs-22 {
        font-size: 2.2rem;
    }

    .mobile-fs-24 {
        font-size: 2.4rem;
    }

    .mobile-fs-40 {
        font-size: 4rem;
    }
    .mobile-fw-300 {
        font-weight: 300;
    }

    .mobile-fw-400 {
        font-weight: 400;
    }

    .mobile-fw-500 {
        font-weight: 500;
    }

    .mobile-fw-600 {
        font-weight: 600;
    }
    .mobile-fw-800 {
        font-weight: 800;
    }
    .mobile-fw-900 {
        font-weight: 900;
    }
    .mobile-d-none {
        display: none;
    }
    .mobile-flex-row {
        flex-direction: row;
    }
    .mobile-flex-col {
        flex-direction: column;
    }
    .mobile-justify-center {
        justify-content: center;
    }

    .mobile-justify-between {
        justify-content: space-between;
    }

    .mobile-justify-end {
        justify-content: flex-end;
    }

    .mobile-align-center {
        align-items: center;
    }

    .mobile-align-between {
        align-items: space-between;
    }

    .mobile-object-fit-cover {
        object-fit: cover;
    }

    .mobile-object-fit-contain {
        object-fit: contain;
    }

    .mobile-absolute {
        position: absolute;
    }

    .mobile-relative {
        position: relative;
    }

    .mobile-fixed {
        position: fixed;
    }

    .mobile-inset-0 {
        inset: 0;
    }

    .mobile-left-0 {
        left: 0;
    }

    .mobile-right-0 {
        right: 0;
    }

    .mobile-bottom-0 {
        bottom: 0;
    }

    .mobile-top-0 {
        top: 0;
    }

    .mobile-bg-none {
        background: none;
    }

    .mobile-bg-none {
        background: none;
    }

    .mobile-bg-theme {
        background-color: #353535;
    }

    .mobile-gap-10 {
        gap: 1rem;
    }

    .mobile-gap-20 {
        gap: 2rem;
    }

    .mobile-gap-30 {
        gap: 3rem;
    }
    .mobile-gap-40 {
        gap: 4rem;
    }

    .mobile-mt-4 {
        margin-top: 0.4rem;
    }

    .mobile-mt-10 {
        margin-top: 1rem;
    }

    .mobile-mt-20 {
        margin-top: 2rem;
    }
    .mobile-mt-30 {
        margin-top: 3rem;
    }
    .mobile-mt-40 {
        margin-top: 4rem;
    }
    .mobile-mt-50 {
        margin-top: 5rem;
    }
    .mobile-mt-100 {
        margin-top: 10rem;
    }
    .mobile-mb-10 {
        margin-bottom: 1rem;
    }
    .mobile-mt-16 {
        margin-top: 1.6rem;
    }
    .mobile-my-16 {
        margin-top: 1.6rem;
        margin-bottom: 1.6rem;
    }
    .mobile-my-100 {
        margin-top: 10rem;
        margin-bottom: 10rem;
    }
    .mobile-p-10 {
        padding: 1rem;
    }
    .mobile-p-20 {
        padding: 2rem;
    }
    .mobile-p-30 {
        padding: 3rem;
    }
    .mobile-px-10 {
        padding: 0 1rem;
    }
    .mobile-px-20 {
        padding: 0 2rem;
    }
    .mobile-py-10 {
        padding: 1rem 0;
    }
    .mobile-py-20 {
        padding: 2rem 0;
    }
    .mobile-gradiant-button {
        font-size: 1.8rem;
        font-weight: 300;
        letter-spacing: 0.18px;
        padding: 0.8rem 1.2rem;
    }
}
