:root {
    --color-white: #fff;
    --color-black: #000;
    --color-main-theme: #741fa2;
    --color-main-theme-second: #5FC0D6;
    --color-main-theme-third: #DAF1F6;
    --color-main-theme-four: #092025;
}

@import url('https://fonts.googleapis.com/css2?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&display=swap');


body {
    font-family: "Montserrat", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: "Poppins", sans-serif;
}

/* Navbar Menu Styling */
.navbar-nav li {
    margin-right: 20px;
    /* spacing between menu items */
}

.navbar-nav li:last-child {
    margin-right: 0;
    /* remove margin from last item */
}

.navbar-nav li a {
    color: #fff !important;
    /* white text */
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-nav li a:hover {
    text-decoration: underline;
    /* underline on hover */
    color: #ddd !important;
    /* light grey on hover */
}

footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.coupon-card-body {
    display: flex;
    justify-content: space-between;
    padding: 20px 10px;
}