/* Color Palette & Base */
:root {
    --bg-dark: #0f122e;
    --bg-soft: #12142b;
    --gold: #ea911d;
    --gold-hover: #d48a12;
    --text-muted: #8e92a8;
}

a {text-decoration:none; color:white;}

h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.text-gold { color: var(--gold); }

/* Buttons */

.btn-primary {
	background:#ea911d;
	padding:10px 30px;
	border-radius:36px;
	border:2px solid #ea911d;
}

.btn-primary:hover {
	background:#f8a435;
	border:2px solid #f8a435;
}

.btn-outline-primary {
	padding:10px 30px;
	border-radius:36px;
	border:2px solid #ea911d;
	color:#ea911d;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
	background:#ea911d; 
	border:2px solid #ea911d;
}



.btn {font-weight:600;}

.nav-link {
	color:white;
	font-size:18px;
}


.nav-link:hover {
	opacity:0.8;
}

.nav-link img {
    margin-right: 6px;
}



/* Hero Section */
.hero-section {
    padding: 0px 0 40px;
    background: url(images/banner-bg.png) no-repeat center -180px;
    background-size: 100%;
}

.why-choose {
	padding: 40px 0 60px;
}

.howto {
    background: #1e2147;
    background-size: cover;
    padding: 50px 0 50px;
    margin-bottom: 40px;
}

.howto h6 {
	color: #e78f1e;
	font-size: 24px;
	font-weight: 700;
}

.lead {font-size:20px; color:white;}

.btn-lg {
    font-size: 18px;
    font-weight: 600;
    padding: 12px 30px;
}

.banner{
	padding-top:40px;
}

.banner .display-3 {
        font-size: 3.6rem;
        line-height: 3.6rem;
    }

.hero-img-container img {
	max-width:90%;
	margin-top:0px;
}

/* Features */


.title h2 {
	font-size:60px;
}

.title p {
	font-size:18px;
}

.feature-card {
    background:#1f223e;
    border: 1px solid #383b57;
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    transition: transform 0.3s ease;
    display:flex;
    margin-bottom:10px;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #4e527b;
}

.feature-text {
	margin-left:20px;
}

.feature-text p {
    color: white;
    margin-bottom: 0px;
}

.feature-text p b {
	color:#ea911d;
}


.feature-text h5 {
	font-weight:600;
}

.icon-box {
    font-size: 2rem;
}

/* Steps */
.bg-dark-soft {
    background-color: #0d0f22;
}




.step-circle {
    width: 140px;
    height: 140px;
    background-color: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: bold;
    font-size: 1.2rem;

}

/* Redeem Section */
.redeem-card {
	    background: #1e2147;
    color: #333;
    border-radius: 16px;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    max-width:230px;
    min-width:230px;
    padding-bottom:10px;
}

.redeem-card:hover {
    background: var(--gold);
    color: white;
}


.redeem-card figure {
	background:white;
	border-radius:16px 16px 0px 0px;
	padding: 10px;
	height:166px;
}

.redeem-card figure img {
	max-height:100%;
}

.redeem-card h2 {
	font-weight:700;
	font-size:20px;
	color:white;
}

.rewards-blocks {
background: #1e2147;
    padding: 50px 30px;
    border-radius: 16px;
    box-shadow: 0px 20px 20px #00000029;
    margin-top: -200px;
}
.blocks-container {
	gap:20px;
}



/* FAQ Accordion Custom Styling */


.faq {
	padding:60px 0px;
}

.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-color: #ffffff;
    --bs-accordion-btn-color: #ffffff;
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-active-color: var(--gold);
    --bs-accordion-active-bg: rgba(255, 255, 255, 0.03);
    --bs-accordion-border-color: rgba(255, 255, 255, 0.1);
}

.accordion-item {
	border-bottom:0px!important;
}

.accordion-button {
    font-size: 18px;
    font-weight: 600;
    background: #1f223e;
    padding: 20px 25px;
    border-radius: 16px !important;
    border: 1px solid #383b57;
    margin-bottom: 10px;
}



.accordion-item {
    background: transparent;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.1);
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
}

/* Custom Arrow Color */
.accordion-button::after {
    filter: invert(1) brightness(2); /* Makes the arrow white */
}

/* CTA Blue Box */
.cta-box {
    background: linear-gradient(120deg, #6d70d0 0%, #3e49b8 100%);
    padding: 60px 20px;
    border-radius: 25px;
    z-index: 1000;
    position:relative;
}

.cta-box h2 {
	font-size:50px;
	font-weight:700;
}

.btn-light {
    color: #366fee;
    font-size: 20px;
    padding: 16px 30px;
}

.btn-light:hover {
	background:#ea911d;
	color:white;
	border:1px solid #ea911d;
}

/* Footer */

.social a {padding-right:10px;}

footer {
	background: url(images/footer-bg.png) no-repeat center bottom;
    background-size: cover;
}

footer h6 {
	color:#f99a34;
	font-weight:600; 
	font-size:20px;
}
footer li {
    margin-bottom: 8px;
    cursor: pointer;
    margin-top:15px;
}

footer li:hover {
    color: var(--gold);
}


footer li a {
	color:#838ca1;
	font-size:18px;
	padding:6px 0px;
}

footer li a:hover {
	color:white;
	text-decoration:none;
}

.copyright {font-size:18px;}


/*Dashboard styles*/


.card {
    background: #1b1f43;
    border: 1px solid #323658;
    border-radius: 10px;
    padding: 20px 10px;
}


.card h2 {
	font-size:48px;
	font-weight:700;
}

.card p {font-size:18px;}

.form-control {
    display: block;
    width: 100%;
    padding: .675rem .95rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    background-color: #0f122e;
    background-clip: padding-box;
    border: 1px solid #3c4064;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .55rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.alert-info {
    color: #ffffff;
    background-color: #2571c7;
    border-color: #2571c7;
}
.input-group-text {
    display: flex;
    align-items: center;
    padding: .375rem .75rem;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
    background-color: #ea911d;
    border: 1px solid #ea911d;
    border-radius: .25rem;
}

.login-bg {
	padding: 0px 0 40px;
    background: url(images/banner-bg.png) no-repeat center top;
    background-size: 100%;
}

.card-title {
    padding: 10px 0 15px 0;
    font-size: 24px !important;
    font-weight: 700;
    color: #ffffff;
    font-family: "Inter", sans-serif;
}

.alert-light {
    color: #858bbd;
    background-color: #2a305d;
    border-color: #3e4377;
}

/* Base Table Styling */
.table-dark {
    --bs-table-bg: #1b1f43;
    --bs-table-striped-bg: #222752; /* Slightly lighter for stripes */
    --bs-table-hover-bg: #2d335d;   /* "Glow" effect on hover */
    --bs-table-border-color: #2d335d;
    color: #ffffff !important;
}

/* Header Styling */
.table-dark thead th {
    background-color: #151836; /* Deepest blue for headers */
    color: #868eda !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #2d335d;
    padding: 15px 10px;
}

/* Body Cell Styling */
.table-dark td {
    color: #e0e0e0 !important; /* Soft white for readability */
    border-color: #2d335d !important;
    padding: 12px 10px;
    vertical-align: middle;
}

/* Hover Effect Transition */
.table-hover tbody tr {
    transition: background-color 0.2s ease-in-out;
}

/* Custom Status Badges (to pop against the navy) */
.badge.bg-info-light { 
    background-color: rgba(0, 210, 255, 0.1) !important; 
    color: #00d2ff !important; 
    border: 1px solid rgba(0, 210, 255, 0.3);
}

.badge.bg-success-light { 
    background-color: rgba(46, 202, 106, 0.1) !important; 
    color: #2eca6a !important; 
    border: 1px solid rgba(46, 202, 106, 0.3);
}

/* Scrollbar for responsive tables on dark background */
.table-responsive::-webkit-scrollbar {
    height: 8px;
    background: #1b1f43;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: #2d335d;
    border-radius: 10px;
}

.dropdown-menu {
    background: #1b1f43;
    border-radius: 10px;
    box-shadow: 0px 0px 20px #0b0d1d;
}

.dropdown-item {color:white;}

.header-nav .profile .dropdown-item:hover {
	background:#242a5a;
	color:white;
}

#dashboard-footer {
    background-color: #1b1f43;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	border-top: 1px solid #323658;
    font-size: 13px;
    color: #ffffff; /* Soft grey-blue text */
    margin-left: 300px;
}

.footer .copyright {
    text-align: left;
    color: #ffffff;
}



#dashboard-footer .copyright strong {
    color: #ffffff;
    margin-left: 5px;
}

#dashboard-footer .footer-links a {
    color: #899bbd;
    text-decoration: none;
    margin-left: 15px;
    transition: 0.3s;
}

#dashboard-footer .footer-links a:hover {
    color: #00d2ff; /* Electric Cyan hover to match your charts */
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -3px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    #dashboard-footer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-left: 0px;
    }
    
    .footer .copyright {
    text-align: center;
    color: #ffffff;
}
    
    #dashboard-footer .footer-links a {
        margin: 0 7px;
    }
}

@media (min-width: 768px) {
    .dropdown-menu-arrow::before {
        content: "";
        width: 13px;
        height: 13px;
        background: #1b1f43;
        position: absolute;
        top: -7px;
        right: 20px;
        transform: rotate(45deg);
        border-top: 1px solid #1b1f43;
        border-left: 1px solid #1b1f43;
    }
}

.modal-content {
	background: #1f223e;
    border: 1px solid #383b57;
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #3a3e65;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
    font-weight:700;
}

.form-control:focus {
	    color: #ffffff;
    background-color: #1d2147;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.form-control:disabled, .form-control[readonly] {
    background-color: #282b50;
    opacity: 0.5;
}

.form-select {
	    color: #ffffff;
    background-color: #0f122e;
        border: 1px solid #3c4064;
}

.alert-warning {
    color: #ffffff;
    background-color: #ea911d;
    border-color: #ea911d;
}

.alert-primary {
    color: #ffffff;
    background-color: #3f77cc;
    border-color: #5693e8;
}

.header {
    transition: all 0.5s;
    z-index: 997;
    height: 80px;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
    background-color: #1e2147;
    padding-left: 20px;
}

.logo img {
    max-height: 36px;
    margin-right: 6px;
}

.logo span {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
}

.header .toggle-sidebar-btn {
    font-size: 24px;
    padding-left: 10px;
    cursor: pointer;
    color: #ffffff;
}

.sidebar {
    position: fixed;
    top: 80px;
    bottom: 0;
    width: 300px;
    z-index: 996;
    transition: all 0.3s;
    padding: 20px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #aab7cf transparent;
    box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
    background-color: #16193a;
}

.sidebar-nav .nav-link.collapsed {
    color: #ffffff;
    background: transparent;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    transition: 0.3s;
    background: #3a43a84d;
    padding: 10px 15px;
    border-radius: 4px;
}

.sidebar-nav .nav-link:hover {
    color: #ffffff;
    background: #3a43a899;
}

.header-nav .nav-profile span {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.points-block {
    background: #1b1f43;
    border: 1px solid #323658;
    border-radius: 10px;
    padding: 20px 10px;
    text-align: center;
    margin-bottom: 20px;
}

.sidebar-nav .nav-link i {
    font-size: 24px;
    margin-right: 10px;
        color: #5e67ac;

}

.sidebar-nav .nav-content a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    transition: 0.3s;
    padding: 10px 0 10px 40px;
    transition: 0.3s;
}

.sidebar-nav .nav-content a:hover {
	color: #ffffff;
	opacity:0.8;
}


.sidebar-nav .nav-content a i {
    font-size: 14px;
    margin-right: 8px;
    line-height: 0;
    border-radius: 50%;
    opacity: 0.6;
}

.footer-sub {
	background: #1b1e41;
	    border-top: 0px;
}

.nav-link:focus, .nav-link:hover {
    color: #ffffff;
}

.no-sidebar #main, .no-sidebar .footer { margin-left: 0 !important; padding:20px 0px 0px;}
    @media (max-width: 1199px) {
        .header-nav.public-nav { display: block !important; }
    }


.accordion-flush .accordion-button {
    padding: 15px 0;
    background: #1f223e;
    border: 1px solid #383b57;
    color: white;
    padding: 20px 25px;
}


.accordion-flush .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: #ea911d;
}

.accordion-flush .accordion-body {
    padding: 10px 0 15px 10px;
    color: white;
    font-size: 15px;
}

.pagetitle h1 {
    font-size: 30px;
    margin-bottom: 0;
    font-weight: 600;
    color: #ffffff;
    padding: 20px 0px 10px;
}

.sales-card .card-title, .revenue-card .card-title  {
    padding: 0px 0 10px 0;
    font-size: 18px !important;
    font-weight: 600;
    color: #ffffff;
    font-family: "Inter", sans-serif;
}

.text-muted {
    color: #8d9fd9c9 !important;
}

.breadcrumb {
    font-size: 16px;
    font-family: "Inter", sans-serif;
    color: #899bbd;
    font-weight: 400;
}

.header-nav .nav-icon {
    font-size: 20px;
    color: #ffffff;
}

.dashboard .sales-card .card-icon, .dashboard .revenue-card .card-icon {
    color: #ffffff;
    background: #e38b43;
    text-align:center;
}

.dashboard .sales-card .card-icon img, .dashboard .revenue-card .card-icon img  {
	width:32px;
	height:32px;
	margin-top:10px;
	margin:10px auto 0px;
}

.dashboard .info-card h6 {
    font-size: 26px;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.privacy h2 {
    color: white;
    margin-top: 30px;
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.form-control option:disabled, .form-control option:disabled:focus {
    color: #8d9fd9c9 !important;
    background: #3a43a84d;
    font-style: italic;
}

.card-login .card-title {
		font-size:36px!important;
}


.subtitle { color: #64748b; font-size: 1.1rem; margin-bottom: 3rem; font-weight: 500; }
        .hero-graphic { width: 100%; height: 350px; background-color: #f8fafc; border-radius: 16px; margin-bottom: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid #e2e8f0; }
        
        /* Graphic 1: The Bridging Concept (Audit-Approved Visual) */
        .bridge-graphic::after { content: 'Connecting Global Brands (BitLabs) with Real Human Insights (Qpointpay Users) • Data Quality Verified'; color: #94a3b8; font-weight: 600; font-size: 0.95rem; }

        .about-grid { margin: 40px 0; }
        .transparency-card { background: #1f223e;
    border: 1px solid #383b57;
    padding: 30px;
    border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
        .compliance-list { list-style: none; padding: 0; }
        
        .transparency-card h3 {
			color:#ea911d;
			font-weight:700;
			margin-bottom:10px;
        }
        
       .compliance-list li {
			background: #101235;
			padding: 12px;
			border-radius: 8px;
			margin-bottom: 10px;
			font-weight: 500;
			font-size: 1rem;
			color: #ffffff;
		}
	  .compliance-list li::before {
		content: '✓';
		color: #10b981;
		margin-right: 10px;
		font-weight: bold;
		font-size: 22px;
	}
       
       .main-content p {
			line-height:30px;
	}
       
 .fraud-graphic img {
	max-height:150px;
 }
        .office-section { background: linear-gradient(120deg, #6d70d0 0%, #3e49b8 100%); color: white; padding: 40px; border-radius: 16px; margin-top: 60px; }
		.office-section h2 {
			color: white;
			margin-top: 30px !important;

			text-transform: uppercase;
			font-size: 3rem !important;
		}
        .address-box { font-size: 1.2rem; line-height: 1.6; border-left: 5px solid #f39c12; padding-left: 30px;}


.about-grid h2 {
    color: white;
    margin-top: 0px;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 10px;
}

.about-standards {
    background: #111435;
    background-size: cover;
    padding: 40px 0px;

}


    .section {
      padding: 40px 0;
    }

.section-dark {
    background-color: #040b29;
}

 .highlight {
    color: #ea911d;
}
.card-text h5 {
    font-size: 30px;
    margin-top: 20px;
    font-weight: 600;
}

.card-text p{
	font-size:18px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
  }

  .feature-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    margin-bottom: 12px;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid #1e293b;
    border-radius: 12px;
    transition: all 0.25s ease;
  }

  .feature-list li:hover {
    transform: translateY(-2px);
    border-color: #334155;
    background: rgba(30, 41, 59, 0.7);
  }

  .feature-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #6070f2, #ffb144);
    color: white;
    font-size: 18px;
    flex-shrink: 0;
  }

  .feature-text {
    font-size: 18px;
    color: #e5e7eb;
  }

.card-custom {
    background: linear-gradient(145deg, #020617, #020617);
    border: 1px solid #1e293b;
    border-radius: 18px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
}

.card-custom h6 {
	font-weight:600;
}

.text-start h5 {
	font-size:2rem;
	margin-top:20px;
}

.text-start p {font-size:18px; line-height:1.5rem;}

    .card-custom img {
		max-width:180px;
    }
    
      .card-custom figure.w-icon {
      margin: 10px auto;
    background: #ffffff29;
    width: 110px;
    height: 110px;
    border-radius: 100%;
    text-align: center;
    vertical-align: middle;
    padding-top: 20px;
      }

    .badge-custom {
    background: #415679;
    color: #93c5fd;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    }
    
.b-title {
	    font-size: 2.5rem;
    font-weight: 600;
}    


.b-title2 {
    font-size: 2rem;
    font-weight: 600;
}

.card-custom h5 {
    color: #e78f1e;
    font-size: 24px;
    font-weight: 700;
}


 .compliance-card {
    background: linear-gradient(145deg, #020617, #020617);
    border: 1px solid #1e293b;
    border-radius: 18px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .compliance-card::before,
.card-custom::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(96,112,242,0.15), transparent);
    opacity: 0;
    transition: 0.4s;
  }

  .compliance-card:hover::before, .card-custom:hover::before  {
    opacity: 1;
  }

  .compliance-card:hover, .card-custom:hover  {
    transform: translateY(-6px) scale(1.02);
    border-color: #334155;
  }

  .compliance-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #6070f2, #ffb144);
    font-size: 26px;
    color: #fff;
    transition: 0.3s ease;
  }

  .compliance-card:hover .compliance-icon {
    transform: rotate(6deg) scale(1.1);
  }

  .compliance-title {
    font-size: 16px;
    font-weight: 500;
    color: #e5e7eb;
  }

  .compliance-desc {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 8px;
  }

  /* subtle floating animation */
  .compliance-card {
    animation: float 6s ease-in-out infinite;
  }

  .compliance-card:nth-child(2) {
    animation-delay: 1s;
  }

  .compliance-card:nth-child(3) {
    animation-delay: 2s;
  }

  .compliance-card:nth-child(4) {
    animation-delay: 3s;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

/* INFO BOX DESIGN */
.info-box {
  background: #1e2147;
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.info-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* ICON STYLE */
.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5b942, #ffcc70);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #000;
  transition: 0.3s;
}

/* ICON ANIMATION */
.info-box:hover .icon-box {
  transform: rotate(10deg) scale(1.1);
}

/* CONTACT BUTTON */
.contact-btn {
  padding: 10px 20px;
  border-radius: 30px;
  background: linear-gradient(135deg, #f5b942, #ffcc70);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #fff;
  color: #000;
}

/* TEXT COLOR FIX */
.section-dark .text-secondary {
  color: #aaa !important;
}


/* 
   Standard mobile breakpoint (768px and below). 
   Covers most tablets and smartphones. 
*/
@media screen and (max-width: 768px) {
   .blocks-container {
    display: block !important;
    
    }
    
    .hero-img-container img {
    max-width: 90%;
    margin-top: 20px;
}

.banner .display-3 {
    font-size: 3.2rem;
    line-height: 3.6rem;
}

.title h2 {
    font-size: 40px;
}
    
    .redeem-card {
		    min-width: 100%;
    }
    
    .navbar .align-items-center {
		justify-content: center;
    }
    
    .cta-box {
		margin-top:20px;
    }
    
    .faq {
    padding: 30px 0px 20px;
}

.copyright {
	text-align:center;
}


.last-responsive {
	    width: 100%;
    text-align: center;
    border-top:1px solid #6d70d0;
    margin-top:10px;
}

}

/* Optional: Extra Small devices (480px and below) */
@media screen and (max-width: 480px) {

}
