* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Open Sauce One', sans-serif;
    font-weight: normal;
    /* Regular */
    font-style: normal;
    src: url("{{ assets_path }}/fonts/open-sauce-one/OpenSauceOne-Regular.ttf") format('truetype');
}

@font-face {
    font-family: 'Open Sauce One', sans-serif;
    font-weight: 700;
    /* Bold */
    font-style: normal;
    src: url("{{ assets_path }}/fonts/open-sauce-one/OpenSauceOne-Bold.ttf") format('truetype');
}

@font-face {
    font-family: 'Open Sauce One', sans-serif;
    font-weight: 800;
    /* Extra Bold */
    font-style: normal;
    src: url("{{ assets_path }}/fonts/open-sauce-one/OpenSauceOne-ExtraBold.ttf") format('truetype');
}

@font-face {
    font-family: 'Open Sauce One', sans-serif;
    font-weight: 900;
    /* Black */
    font-style: normal;
    src: url("{{ assets_path }}/fonts/open-sauce-one/OpenSauceOne-Black.ttf") format('truetype');
}

@font-face {
    font-family: 'Open Sauce One', sans-serif;
    font-weight: normal;
    /* Italic */
    font-style: italic;
    src: url("{{ assets_path }}/fonts/open-sauce-one/OpenSauceOne-Italic.ttf") format('truetype');
}

@font-face {
    font-family: 'Open Sauce One', sans-serif;
    font-weight: 700;
    /* Bold Italic */
    font-style: italic;
    src: url("{{ assets_path }}/fonts/open-sauce-one/OpenSauceOne-BoldItalic.ttf") format('truetype');
}

@font-face {
    font-family: 'Open Sauce One', sans-serif;
    font-weight: bold;
    /* Semi Bold */
    font-style: normal;
    src: url("{{ assets_path }}/fonts/open-sauce-one/OpenSauceOne-SemiBold.ttf") format('truetype');
}

@font-face {
    font-family: 'Open Sauce One', sans-serif;
    font-weight: bold;
    /* Semi Bold Italic */
    font-style: italic;
    src: url("{{ assets_path }}/fonts/open-sauce-one/OpenSauceOne-SemiBoldItalic.ttf") format('truetype');
}

@font-face {
    font-family: 'Open Sauce One', sans-serif;
    font-weight: light;
    /* Light */
    font-style: normal;
    src: url("{{ assets_path }}/fonts/open-sauce-one/OpenSauceOne-Light.ttf") format('truetype');
}

@font-face {
    font-family: 'Open Sauce One', sans-serif;
    font-weight: normal;
    /* Medium */
    font-style: normal;
    src: url("{{ assets_path }}/fonts/open-sauce-one/OpenSauceOne-Medium.ttf") format('truetype');
}

@font-face {
    font-family: 'Open Sauce One', sans-serif;
    font-weight: normal;
    /* Medium Italic */
    font-style: italic;
    src: url("{{ assets_path }}/fonts/open-sauce-one/OpenSauceOne-MediumItalic.ttf") format('truetype');
}

@font-face {
    font-family: 'Open Sauce One', sans-serif;
    font-weight: 800;
    /* Extra Bold Italic */
    font-style: italic;
    src: url("{{ assets_path }}/fonts/open-sauce-one/OpenSauceOne-ExtraBoldItalic.ttf") format('truetype');
}

@font-face {
    font-family: 'Open Sauce One', sans-serif;
    font-weight: 900;
    /* Black Italic */
    font-style: italic;
    src: url("{{ assets_path }}/fonts/open-sauce-one/OpenSauceOne-BlackItalic.ttf") format('truetype');
}


.navbarv2 {
    background-color: white !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
    position: absolute !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar {
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: absolute;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    max-width: 60rem;
    width: calc(100% - 40px);
    border-radius: 10px;
    box-sizing: border-box;
    z-index: 10;
}

.dropdown-menu.active {
    display: block;
    transition: opacity 3s ease;
}

.blue-tiles {
    justify-content: start;
    width: 100%;
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.custom-card-header {
    gap: 10px !important;
}

.custom-card {
    background-color: #fff;
    border: 0.0625rem solid #e7eaf3;
    display: flex;
    border-radius: 0.3125rem;
    flex-direction: column;
    gap: 1.5rem;
    word-wrap: break-word;
    background-clip: border-box;
    min-height: 147px !important;
    max-height: 160px;
    justify-content: space-between;
}

.svg-iconing {
    border: 2px solid #E4EBEF;
    border-radius: 4px;
    overflow: hidden;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
}

.card-title {
    font-size: 18px;
    white-space: nowrap;
    color: rgb(30, 32, 34);
}

.card-subtitle {
    font-size: 10px;
    opacity: 60%;
    color: rgb(103, 119, 136);
}

.card-title-section {
    line-height: 20.7px;
}

.cardp-description {
    opacity: 80%;
    font-size: 14px;
    line-height: 120%;
}

.cardp-icon {
    display: flex;
    align-items: flex-end;
    cursor: pointer;
}

@media (max-width: 768px) {
    .blue-tiles {
        justify-content: center;
    }

    .product-cards {
        max-width: 90%;
    }

    .custom-card {
        min-height: 100%;
        overflow-x: hidden;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .blue-tiles {
        padding: 0 10px;
    }
}