* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    transition: all 0.2s ease;
}


@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --color-primary: red;
    --color-secondary: #2ecc71;
    --color-accent: #e74c3c;
    --color-background: #ecf0f1;
    --color-text: #2c3e50;
    --nav-height: 50px;
    --hero-height: 283px;
    --font-raleway: 'Raleway', sans-serif !important;
    --font-poppins: 'Poppins', sans-serif !important;
    --font-nunito: 'Nunito Sans', sans-serif !important;

    --card-spacing: 2.5px 5px;
}

body {
    font-family: var(--font-nunito);
}


.rf_nav {
    height: var(--nav-height);
    transition: all 0.3s ease, padding 0.3s ease;
    background-color: transparent;
}

.rf_nav.scrolled {
    background-color: #7269DB;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
}

.rf_nav .nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-raleway);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.rf_nav.scrolled .nav-link {
    color: #ffffff;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #36216C;
    border-bottom: 4px solid #36216C;
}

.logo {
    transform: translateY(.5rem);
    width: 150px;
}

.logo-small {
    width: 100px;
    transform: translateY(0) !important;
}

.hero_section {
    height: var(--hero-height);
    position: relative;
}

.hero_section img {
    height: 100%;
    width: 100%;
    object-fit: fill;
}



.top_title {
    font-size: 1.35rem;
    font-weight: 600;
    font-family: var(--font-nunito);
    color: #fff;
    text-align: center;
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    top: 50%;
}

.scrolled {
    .top_title {
        font-size: 1.05rem;
    }
}

.product_section {
    margin-top: -128px;
    z-index: 9;
    position: relative;
}

.product_section .product_list:nth-child(even) {
    justify-content: flex-end;
    margin-top: 1rem;
}

.product_list {
    display: flex;
    gap: 1rem;
    list-style-type: none;
    justify-content: flex-start;
}

.product_card {
    width: 207px;
    height: 290px;
    background-color: #ffffff;
    border-radius: 5.6px;
    box-shadow: 0px 0.56px 5.6px 0px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    justify-content: space-between;
}

.product_card .img {
    width: 100%;
    height: 128px;
    overflow: hidden;
    background-color: #ccc;
    border-radius: 5.6px 5.6px 0 0;
}

.product_card .content {
    padding: 5px 5px 10px;
}

.product_card .content .header_panel {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 22.4px;
    margin-bottom: 16px;
    padding: var(--card-spacing);
}

.product_card .content .header_panel h3 {
    font-family: var(--font-poppins);
    color: #232233;
    font-weight: 600;
    font-size: 11.2px;
    line-height: 16.8px;
    text-transform: uppercase;
    max-width: calc(100% - 25.52px);
}

.product_card .content .header_panel .dropdwn_toggle {
    height: 25.52px;
    width: 25.52px;
    border-radius: 50px;
    background-color: #6750A4;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
}

.dropdown-toggle::after {
    display: none !important;
}

.product_card .content .header_panel .product_link {
    height: 25.52px;
    width: 25.52px;
    border-radius: 50px;
    background-color: #6750A4;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
}

.dropdown_menu {
    padding: 0;
    overflow: hidden;
}

.dropdown_item {
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 8.96px;
    color: #6750A4;
}


.dropdown_menu li:not(:last-child) {
    border-bottom: 1px solid #E4E4E7;
}

.product_link.disabled {
    pointer-events: none;
    cursor: not-allowed;
    background: #6750A466 !important;
}

.product_card .content .content_panel p {
    font-family: var(--font-nunito);
    font-weight: 400;
    font-size: 8.96px;
    color: #6C6C72;
    padding: var(--card-spacing);
}





/* container */

@media screen and (min-width: 1500px) {
    .container-fluid {
        max-width: 1400px
    }
}


@media screen and (min-width: 1280px) {
    .container-fluid {
        max-width: 1240px
    }
}

@media screen and (min-width: 1440px) {
    .container-fluid {
        max-width: 1380px
    }
}