/* ==========================================================
   STYLE.CSS — Main Stylesheet
   ----------------------------------------------------------
   Author: TheOwlCoders
   Description: Global styling, layout, colors, typography,
                utilities and component base styles.
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/* -----------------------------------------
   1. ROOT VARIABLES (colors, fonts)
----------------------------------------- */
:root {
    --primary-color: #34A27F;
    --secondary-color: #C8F2DF;
    --dark-green: #0F8A59;
    --light-black: #121212;

    --font-main: "Manrope", sans-serif;
    --font-head: "Futura PT", sans-serif;
}

/* ============================================
   Typography System (Based on Your Requirement)
   ============================================ */

/* H1 – Futura Bold */
h1 {
    font-family: "Futura PT", sans-serif;
    font-weight: 700;
}

/* Subheader – Manrope SemiBold */
.subheader,
h2,
h3,
h4,
h5 {
    font-family: "Futura PT", sans-serif;

}

p {
    font-family: "Manrope", sans-serif;
}

/* Body Text – Manrope Regular */
body,
p,
span,
li {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
}

/* CTA Buttons – Futura Medium */
.btn,
.button,
.cta {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 16px;
}


/* -----------------------------------------
   2. RESET / GLOBAL
----------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    background-color: #fff;
    color: var(--dark);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn.btn-theme {
    background-color: var(--dark-green);
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    line-height: 2;
    padding: 6px 15px;
    border-radius: 12px;
}
a.btn.btn-theme.btn-line {
    background: transparent;
    border-color: #fff;
}
ul {
    list-style: none;
    padding-left: 0;
}

.gap-block {
    padding: 50px 0px;
}

.header-top h2 {
    font-size: 40px;
    font-weight: 700 !important;
    text-align: center;
    color: var(--light-black);
}
.header-top h2.text-white {
font-weight: 500 !important;
}

.header-top {
    margin-bottom: 50px;
}

/* .container {
    max-width: 1200px;
} */
/* Chrome, Safari, Edge */
input::placeholder {
    color: #000;
    font-size: 16px;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
}

/* Firefox */
input::-moz-placeholder {
    color: #000;
    font-size: 15px;
    letter-spacing: 0.3px;
}

/* Internet Explorer 10–11 */
input:-ms-input-placeholder {
    color: #000;
    font-size: 15px;
    letter-spacing: 0.3px;
}

/* Microsoft Edge Legacy */
input::-ms-input-placeholder {
    color: #000;
    font-size: 15px;
    letter-spacing: 0.3px;
}

/* -----------------------------------------
 Onload Offer on Top
----------------------------------------- */
/* Popup overlay */
.welcome-popup {
    position: fixed;
    background: #34A27F;
    display: none;
    /* hidden initially */
    align-items: center;
    justify-content: center;
    z-index: 10000;
    width: 100%;
    padding: 10px 0;
}

/* Popup box */
.popup-content h2 {
    margin: 0;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
}

/* Close button */
.popup-close {
    position: absolute;
    top: 2px;
    right: 14px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    line-height: 13px;
    color: #fff;
}

/* Fade animation */
@keyframes popupFade {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* -----------------------------------------
 HEADER / NAVBAR
----------------------------------------- */
.top-header-gap {
    margin-top: 36px;
    transition: all 0.3s ease-in-out 0s;
}

.site-header {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.10);

}

/* After scroll */
.site-header.is-sticky {
    position: fixed;
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.search-box {
    max-width: 450px;
    margin: auto;
}

.search-box input[type="text"] {
    border-radius: 40px;
    background: #f5f5f5;
    padding-left: 20px;
    width: 100%;
    height: 52px;
    border: 1px solid #dddddd;
}

.search-box .search-icon {
    right: 20px;
    top: 10px;
    color: #000;
    font-size: 20px;
}

.menu-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-box input {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
}


.main-wrapper {
    padding-top: 90px;
}

/* -----------------------------------------
   4. HERO SECTION
----------------------------------------- */
.hero-slider {
    overflow: hidden;
}

.hero-slider .slick-list {
    overflow: visible;
    /* allow side slides to show */
}

.hero-slider .slick-slide {
    opacity: 0.5;
    transform: scale(0.95);
    transition: all 0.4s ease;
}

.hero-slider .slick-center {
    opacity: 1;
    transform: scale(1);
}

/* Optional: rounded banner like AJIO */
.hero-slider img {
    border-radius: 16px;
    width: 100%;
    display: block;
}

/* Slick dots wrapper */
.hero-slider .slick-dots {
    position: relative;
    bottom: 30px;
    display: flex !important;
    justify-content: center;
    gap: 0px;
}

/* Dot button */
.hero-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    padding: 0;
    font-size: 0;
    cursor: pointer;
}

/* Remove default slick before content */
.hero-slider .slick-dots li button:before {
    content: none;
}

/* Active dot */
.hero-slider .slick-dots li.slick-active button {
    background: #0d6efd;
    /* bootstrap primary */
    width: 24px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* -----------------------------------------
   Brand Slider
----------------------------------------- */
.partner-logo-slider {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    position: relative;
    background: #f5f5f5;
    padding: 15px 0;
}

.partner-logo-slide {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: partner-logo 30s linear infinite;
}

.partner-logo-slide span {
    width: 28px;
}

.partner-logo-slide:hover {
    animation-play-state: paused;
}

.partner-logo-slide div {
    font-size: 16px;
    color: #5C5C5C;
    font-weight: 600;
    font-family: var(--font-main);
}

@keyframes partner-logo {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media only screen and (max-width: 1025px) {
    .partner-logo-slide {
        gap: 20px;
    }

    .partner-logo-slide img {
        height: 45px;
    }
}

/* -----------------------------------------
   Shop by category
----------------------------------------- */
.category-box .category-icon {
    width: 175px;
    border-radius: 50%;
    overflow: hidden;
    height: 175px;
    margin: auto;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10);
    border: 1px solid #DDDDDD;
}

.category-box h5 {
    font-size: 24px;
    color: #000;
    margin-top: 25px;
}

.category-slider .slick-prev,
.category-slider .slick-next {
    background-color: #fff;
    border: 1px solid #B5B5B5;
    width: 52px;
    height: 52px;
    border-radius: 15px;
}

.category-slider .custom-arrow {

    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    transition: background 0.3s ease;
}

.category-slider .custom-arrow i {
    font-size: 18px;
    color: #0F8A59;
}
.category-slider.slick-slider{
    padding: 0 50px;
}
.category-slider .custom-arrow.active i {
    color: #fff;
}

/* ACTIVE arrow */
.category-slider .custom-arrow.active {
    background: #0F8A59;
}

/* Positions */
.category-slider .slick-prev {
    left: 0px !important;
}

.category-slider .slick-next {
    right: 0px !important;
}

/* Remove default slick arrows */
.slick-prev:before,
.slick-next:before {
    content: none;
}

/* -----------------------------------------
   Shop by Store
----------------------------------------- */
.store-block {
    background: #e8fff5;
    background: -webkit-linear-gradient(180deg, rgba(232, 255, 245, 1) 57%, rgba(199, 255, 255, 1) 100%);
    background: -moz-linear-gradient(180deg, rgba(232, 255, 245, 1) 57%, rgba(199, 255, 255, 1) 100%);
    background: linear-gradient(180deg, rgba(232, 255, 245, 1) 57%, rgba(199, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#E8FFF5", endColorstr="#C7FFFF", GradientType=0);
}

.store-card {
    background: #eafff9;
    border: 1.5px solid #9fe3d1;
    border-radius: 18px;
    padding: 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.store-logo {
    background: #fff;
    border-radius: 14px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-logo img {
    max-width: 80%;
    max-height: 70px;
    object-fit: contain;
}

.cashback-btn {
    background: #36a37c;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 12px;
    font-size: 14px;
}

.cashback-btn:hover {
    background: var(--dark-green);
    color: var(--secondary-color);
}

/* -----------------------------------------
   DEALS
----------------------------------------- */
.deal-card {
    border: 1px solid #34a27f82;
    padding: 10px;
    border-radius: 20px;
}

.deal-card .deal-item {
    background: #ffffff;
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%);
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#EFEFEF", GradientType=0);
    padding: 30px 0;
    position: relative;
}

.deal-card .deal-item img {
    width: auto;
    max-height: 210px;
    margin: auto;
}

.deal-card .deal-item span.deal-dealer {
    position: absolute;
    border: 1px solid #DDDDDD;
    border-radius: 30px;
    background: #fff;
    top: 10px;
    padding: 8px 14px;
    right: 0;
}

.deal-card .deal-item span.deal-dealer img {
    max-height: 20px;
}

.deal-card p {
    font-size: 18px;
    color: var(--light-black);
    font-weight: 500;
    margin-top: 15px;
}

span.current-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--light-black);
    margin-right: 10px;
}

span.old-deal {
    color: #A2A2A2;
    font-weight: 700;
    margin-right: 10px;
}

span.deal-offer {
    color: var(--dark-green);
    font-weight: 700;
}

/* -----------------------------------------
   How it Work
----------------------------------------- */
.how-work {
    background: #F2FFF9;
    background: -webkit-linear-gradient(180deg, rgba(242, 255, 249, 1) 0%, rgba(200, 242, 223, 1) 100%);
    background: -moz-linear-gradient(180deg, rgba(242, 255, 249, 1) 0%, rgba(200, 242, 223, 1) 100%);
    background: linear-gradient(180deg, rgba(242, 255, 249, 1) 0%, rgba(200, 242, 223, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F2FFF9", endColorstr="#C8F2DF", GradientType=0);
}

.step-box {
    position: relative;
    background: #128c57;
    border-radius: 22px;
    padding: 30px;
    color: #ffffff;
    overflow: hidden;
    min-height: 260px;
}

/* Step number */
.step-no {
    width: 60px;
    height: 60px;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 26px;
    font-family: var(--font-main);
}

/* Title */
.step-title h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 14px;
}

/* Description */
.step-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Abstract background shapes */
.step-box::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    right: -80px;
    top: 50px;
}

.step-box::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    right: -140px;
    bottom: -160px;
}
.max-width-work{
    max-width: 1200px;
    margin: auto;
}
/* -----------------------------------------
   Live Offer
----------------------------------------- */

.live-offer{
    background-image: url(../images/offer-background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.offer-card{
    background: #F1FFF8;
background: -webkit-linear-gradient(180deg, rgba(241, 255, 248, 1) 0%, rgba(201, 242, 224, 1) 100%);
background: -moz-linear-gradient(180deg, rgba(241, 255, 248, 1) 0%, rgba(201, 242, 224, 1) 100%);
background: linear-gradient(180deg, rgba(241, 255, 248, 1) 0%, rgba(201, 242, 224, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F1FFF8", endColorstr="#C9F2E0", GradientType=0);
border-radius: 15px;
overflow: hidden;
}
.offer-card .offercard-left{
    padding: 15px;
}
.offer-card .offercard-left .offer-brand {
    background: #fff;
    max-width: 126px;
    margin: 5px;
    padding: 8px;
    border-radius: 8px;
}

.offer-card .offercard-left .offer-brand img {
    max-height: 24px;
}
.offer-card .offercard-left .offers-details {
    margin-top: 100px;
}
.offer-card .offercard-left .offers-details h5{
    color: var(--light-black);
    font-size: 24px;
    font-weight: 500;
    font-family: var(--font-main);
}
.offer-card .offercard-left .offers-details h3{
    color: var(--dark-green);
    font-size: 30px;
    font-weight: 800;
    font-family: var(--font-main);
}
a.btn.btn-theme.btn-white{
    background-color: #fff;
    color: var(--dark-green) !important;
    font-weight: 500;
}


/* -----------------------------------------
   Credit Card Offer
----------------------------------------- */
.creditcard-offer{
   background: #0F8A59;
background: -webkit-linear-gradient(180deg, rgba(15, 138, 89, 1) 0%, rgba(9, 85, 54, 1) 100%);
background: -moz-linear-gradient(180deg, rgba(15, 138, 89, 1) 0%, rgba(9, 85, 54, 1) 100%);
background: linear-gradient(180deg, rgba(15, 138, 89, 1) 0%, rgba(9, 85, 54, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0F8A59", endColorstr="#095536", GradientType=0);

}
.credit-box{
    background: #042417;
background: -webkit-linear-gradient(180deg, rgba(4, 36, 23, 1) 0%, rgba(4, 24, 16, 1) 100%);
background: -moz-linear-gradient(180deg, rgba(4, 36, 23, 1) 0%, rgba(4, 24, 16, 1) 100%);
background: linear-gradient(180deg, rgba(4, 36, 23, 1) 0%, rgba(4, 24, 16, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#042417", endColorstr="#041810", GradientType=0);
border-radius: 16px;
overflow: hidden;
}
.credit-box .credit-card-image {
    right: 0;
    bottom: -29px;
    width: 34%;
    
}
.credit-box .credit-card-image::after{
    background: #0f0303;
background: -webkit-linear-gradient(180deg, rgba(15, 3, 3, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
background: -moz-linear-gradient(180deg, rgba(15, 3, 3, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
background: linear-gradient(180deg, rgba(15, 3, 3, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0F0303", endColorstr="#000000", GradientType=0);
content: "";
z-index: 10;
    position: absolute;
    z-index: 10;
    bottom: 0;
    height: 100%;
    width: 100%;
}
.credit-box .offer-details {
        margin-top: 12%;
        position: relative;
    z-index: 1;
}
.credit-box .offer-details h3{
    color: var(--dark-green);
    font-size: 30px;
    font-weight: 800;
    font-family: var(--font-main);
    letter-spacing: -2px;
}
.bank-logo img {
    width: auto;
    height: auto;
    max-height: 100%;
}
.bank-logo {
    height: 37px;
}
.header-top.d-flex {
    margin-bottom: 24px;
}
.for-mobileview{
    display: none;
}


/* -----------------------------------------
   Gift Card
----------------------------------------- */

a.btn.btn-theme.btn-line.btn-line-dark {
    border-color:var(--light-black);
    color: var(--light-black);
}
.giftcard-box{
    padding: 0 7px;
}


/* -----------------------------------------
   App Block
----------------------------------------- */

.app-block{
 background-image: url(../images/app-block-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.app-text-box h2 {
    font-size: 48px;
    font-weight: 600;
}
.app-text-box p {
    font-size: 18px;
}


/* -----------------------------------------
  Share Block
----------------------------------------- */
.max-width-lg{
    max-width: 980px;
    margin: auto;
}
.share-box {
    padding: 20px;
    border-radius: 15px;
    position: relative;
}
.share-box .share-icon{
    margin-bottom: 70px;
}
.share-box h2{
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 0;
}
.share-box p{
    font-size: 22px;
    color: #000;
}
.brand-image {
    position: absolute;
    bottom: -35px;
    right: -44px;
    width: 222px;
    opacity: 0.2;
}



.share-blue{
    background: #DFF4FF;
background: -webkit-linear-gradient(180deg, rgba(223, 244, 255, 1) 0%, rgba(42, 171, 238, 1) 100%);
background: -moz-linear-gradient(180deg, rgba(223, 244, 255, 1) 0%, rgba(42, 171, 238, 1) 100%);
background: linear-gradient(180deg, rgba(223, 244, 255, 1) 0%, rgba(42, 171, 238, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#DFF4FF", endColorstr="#2AABEE", GradientType=0);
}
.share-green{
    background: #DFFFF4;
background: -webkit-linear-gradient(180deg, rgba(223, 255, 244, 1) 0%, rgba(52, 162, 127, 1) 100%);
background: -moz-linear-gradient(180deg, rgba(223, 255, 244, 1) 0%, rgba(52, 162, 127, 1) 100%);
background: linear-gradient(180deg, rgba(223, 255, 244, 1) 0%, rgba(52, 162, 127, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#DFFFF4", endColorstr="#34A27F", GradientType=0);
}


/* -----------------------------------------
   FAQ
----------------------------------------- */
.faq-block {
    background-color: #ECECEC;
    padding: 80px 0;
}
.faq-right{
    border-radius: 15px;
    overflow: hidden;
}
#accordionFaq .accordion-item{
    background-color: transparent;
    border-color:#5A5A5A;
    border-width: 0px 0px 1px 0px;
    border-radius: 0;
    margin: 20px 0;
}
#accordionFaq .accordion-item h2.accordion-header .accordion-button{
    font-size: 20px !important;
    color: var(--light-black);
    font-family: var(--font-main);
    background-color: transparent;
    font-weight: 500;
    padding-left: 0;
}
.accordion-body{
    font-family: var(--font-main);
    color: #232323;
    font-size: 16px;
    padding: 0 0 20px 0;
}
.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
}
/* -----------------------------------------
   FOOTER
----------------------------------------- */
.footer-block {
    background: var(--light-black);
    color: #fff;
    padding: 50px 0;
}
.d-flex.applink img {
    max-width: 130px;
}

.footer-links {
    text-align: left;
    padding-left: 35px;
}
.footer-links h3{
    font-size: 20px;
    font-family: var(--font-main);
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-links ul.footer-link li{
    margin-bottom: 5px;
}
ul.footer-link li a {
    color: #8C8C8C;
    line-height: 7.5px;
}
.footer-bottom{
    border-top: 1px solid #787878;
    margin-top: 20px;
    padding-top: 30px;
}
.copy-text{
    color: #8C8C8C;
}
#backToTop{
    color:var(--light-black);
    background-color: var(--primary-color);
}
/* -----------------------------------------
   7. UTILITIES (handy shortcut classes)
----------------------------------------- */
.text-muted-small {
    color: #777;
    font-size: 14px;
}

.section-padding {
    padding: 80px 0;
}

.btn-rounded {
    border-radius: 50px;
}

.shadow-soft {
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
}


/* -----------------------------------------
   8. BACK TO TOP BUTTON
----------------------------------------- */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 998;
}

/* -----------------------------------------
   9. Login and Register Modal
----------------------------------------- */
.form-modal-box {
    max-width: 420px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(55px);
    padding: 2rem 3rem;
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    opacity: 1;
    background-image: none;
}

.form-modal-box .modal-title {
    color: #fff;
    font-size: 24px;
    text-align: center;
}

.form-modal-box .modal-body form input {
    background-color: transparent;
    border-radius: 30px;
    height: 46px;
    padding-left: 25px;
}

/* Chrome, Safari, Edge */
.form-modal-box .modal-body form input::placeholder {
    color: #fff;
    font-size: 20px;
    font-family: "Futura PT", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Firefox */
.form-modal-box .modal-body form inputinput::-moz-placeholder {
    color: #fff;
    font-size: 20px;
    font-family: "Futura PT", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Internet Explorer 10–11 */
.form-modal-box .modal-body form input:-ms-input-placeholder {
    color: #fff;
    font-size: 20px;
    font-family: "Futura PT", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Microsoft Edge Legacy */
.form-modal-box .modal-body form input::-ms-input-placeholder {
    color: #fff;
    font-size: 20px;
    font-family: "Futura PT", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

/* -----------------------------------------
   9. MEDIA QUERIES NOTICE
   (Add details inside responsive.css)
----------------------------------------- */
/*  
    RESPONSIVE STYLES SHOULD GO TO:  
    assets/css/responsive.css  
*/