/* Global Styles */
:root {
    --rk-golden: #d4af37;
    --rk-golden-soft: #facc6b;

    /* Light, colorful palette */
    --rk-bg: #f4f6fb;              /* page background */
    --rk-blue-soft: #e8f1ff;       /* light blue */
    --rk-cream-soft: #fff8e6;      /* light golden cream */
    --rk-peach-soft: #ffe9dd;      /* soft warm peach */
    --rk-lilac-soft: #f3ecff;      /* soft lilac */
    --rk-section-white: #ffffff;

    --rk-deep-blue: #0f172a;       /* navbar/footer */
    --rk-slate: #1e293b;
    --rk-blue: #2563eb;
    --rk-text: #111827;
    --rk-muted: #6b7280;
    --rk-border: #e5e7eb;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top, #eef2ff 0%, #f4f6fb 45%, #e5e7eb 100%);
    color: var(--rk-text);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(to right, #0f172a, #1e293b);
    font-size: 0.85rem;
    color: #e5e7eb;
}

.top-bar span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.top-bar i {
    color: var(--rk-golden-soft);
}

/* Navbar */
.main-navbar {
    background: #fff;
    backdrop-filter: blur(12px);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
    font-size: 1.4rem;
    color: #f9fafb !important;
}

.brand-highlight {
    color: var(--rk-golden);
}

.main-navbar .nav-link {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 4px;
    position: relative;
    padding-bottom: 0.3rem;
    color: #000 !important;
}

.main-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--rk-golden), var(--rk-blue));
    transition: width 0.3s ease;
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
    width: 50%;
}

.logo{
  height: 85px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- MOBILE FIXES ---------- */
@media (max-width: 767.98px) {

    /* Reduce navbar height */
    .main-navbar {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    /* Smaller logo so it doesn’t push navbar down */
    .navbar-brand img.logo,
    .logo {
        height: 80px;
        padding-left: 20px;
    }

    /* Slightly smaller brand text */
    .navbar-brand {
        font-size: 1.1rem;
    }

    /* Collapse menu background & spacing */
    .main-navbar .navbar-collapse {
        background: rgba(15, 23, 42, 0.98);
        padding: 0.75rem 0 1rem;
        margin-top: 0.5rem;
    }

    .main-navbar .nav-link {
        padding: 0.45rem 0;
        margin: 0;
        text-align: left;
    }

    /* Make toggler sit nicely on the right */
    .navbar-toggler {
        padding: 0.25rem 0.4rem;
        border: none;
        box-shadow: none !important;
    }
    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }


    .main-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 25%;
    bottom: 2px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--rk-golden), var(--rk-blue));
    transition: width 0.3s ease;
}

.main-navbar .nav-link{
    color: #fff !important;
}

}

/* Buttons */
.btn-golden {
    background: linear-gradient(135deg, var(--rk-golden), #f6d365);
    color: #000;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 999px;
    padding: 0.6rem 1.6rem;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

.btn-golden:hover {
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.btn-outline-light {
    border-radius: 999px;
}

/* Hero / Carousel */
.hero-section {
    position: relative;
}

.hero-slide {
    height: 90vh;
    min-height: 520px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

/* Keep photos, but lighten overlays */
.hero-slide-1 {
    background-image:
        linear-gradient(to bottom right, rgba(15,23,42,0.4), rgba(15,23,42,0.7)),
        url('../img/1.jpeg');
}

.hero-slide-2 {
    background-image:
        linear-gradient(to bottom right, rgba(15,23,42,0.45), rgba(15,23,42,0.75)),
        url('../img/2.jpeg');
}

.hero-slide-3 {
    background-image:
        linear-gradient(to bottom right, rgba(15,23,42,0.4), rgba(15,23,42,0.7)),
        url('../img/3.jpeg');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(250,204,21,0.30) 0%, transparent 55%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 650px;
    animation: fadeUp 1.2s ease forwards;
    color: #f9fafb;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: var(--rk-golden-soft);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    line-height: 1.2;
    margin: 0.4rem 0 0.8rem;
}

.hero-title span {
    color: var(--rk-golden);
}

.hero-text {
    max-width: 540px;
    font-size: 0.98rem;
    color: #e5e7eb;
}

.hero-buttons {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

/* Light section instead of dark */
.bg-dark-section {
    background: #ffffff;
}

/* Section Titles */
.section-title .subtitle {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--rk-golden);
    font-size: 0.85rem;
}

.section-title .title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--rk-text);
}

.title-border {
    display: inline-block;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--rk-golden), var(--rk-blue));
    border-radius: 999px;
    margin-top: 6px;
}

.title-border.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-card {
    position: relative;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(212,175,55,0.7), rgba(37,99,235,0.5));
    overflow: hidden;
}

.about-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    mix-blend-mode: soft-light;
    background: radial-gradient(circle at bottom right, rgba(255,255,255,0.25) 0%, transparent 55%);
}

.about-inner {
    position: relative;
    padding: 28px 28px 26px;
    background: #ffffff;
    border-radius: 23px;
    color: var(--rk-text);
}

.about-inner h3 {
    font-family: 'Playfair Display', serif;
    color: var(--rk-text);
}

.about-inner p {
    color: var(--rk-muted);
}

.about-inner ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 4px;
    font-size: 0.92rem;
    color: var(--rk-text);
}

.about-inner i {
    color: var(--rk-golden);
    margin-top: 3px;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eef2ff;
    border: 1px solid var(--rk-border);
    font-size: 0.82rem;
    color: var(--rk-slate);
}

.about-badge i {
    color: var(--rk-golden);
}

/* ABOUT VISUAL WITH OVERLAY IMAGES */
.about-visual {
    position: relative;
    min-height: 280px;
    max-width: 420px;
    margin: 0 auto;
}

/* Base for each image card */
.about-img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: #ffffff;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Main image – slightly larger */
.about-img-main {
    top: 0;
    left: 0;
    width: 72%;
    height: 230px;
    animation: floatMain 6s ease-in-out infinite;
}

/* Overlay image – offset and overlapping */
.about-img-overlay {
    right: 0;
    bottom: 0;
    width: 60%;
    height: 200px;
    animation: floatOverlay 7s ease-in-out infinite;
}

/* Image label/tag */
.about-img-tag {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    color: #f9fafb;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.about-img-tag i {
    color: var(--rk-golden-soft);
}

/* Floating golden badge */
.about-floating-badge {
    position: absolute;
    top: -10px;
    right: 12%;
    animation: floatBadge 5.5s ease-in-out infinite;
}

.about-floating-badge .badge-inner {
    background: linear-gradient(135deg, var(--rk-golden), var(--rk-golden-soft));
    color: #111827;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
}

.about-floating-badge i {
    font-size: 1rem;
}

/* Animated decorative dots */
.about-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rk-blue);
    opacity: 0.6;
}

.about-dot-1 {
    left: -8px;
    top: 30%;
    animation: floatDot1 4.5s ease-in-out infinite;
}

.about-dot-2 {
    right: -10px;
    bottom: 18%;
    background: var(--rk-golden);
    animation: floatDot2 4s ease-in-out infinite;
}

/* Animations */
@keyframes floatMain {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatOverlay {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(8px);
    }
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-6px) scale(1.03);
    }
}

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

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

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .about-visual {
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .about-visual {
        max-width: 360px;
        min-height: 250px;
    }

    .about-img-main {
        width: 78%;
        height: 210px;
    }

    .about-img-overlay {
        width: 64%;
        height: 190px;
    }
}


/* Services */
.service-card {
    background: var(--rk-surface);
    border-radius: 20px;
    padding: 28px 22px;
    border: 1px solid var(--rk-border);
    box-shadow: 0 18px 40px rgba(148,163,184,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    height: 100%;
    color: var(--rk-text);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(148,163,184,0.35);
    border-color: rgba(212, 175, 55, 0.8);
}

.service-card .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    background: radial-gradient(circle at top left, rgba(212,175,55,0.3), rgba(37,99,235,0.45));
    color: #ffffff;
}

.service-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--rk-text);
}

.service-card p {
    color: var(--rk-muted);
}

/* Service card image */
.service-card .service-img {
    width: 100%;
    height: 180px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
}

.service-card .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

/* Keep existing icon-box look, just add rotation behavior */
.service-card .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    background: radial-gradient(circle at top left, rgba(212,175,55,0.3), rgba(37,99,235,0.45));
    color: #ffffff;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.service-card .icon-box i {
    font-size: 1.4rem;
}

/* Hover effects – 360° rotation + slight zoom img */
.service-card:hover .icon-box {
    transform: rotateY(360deg);
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}


/* Why Choose Us */
.why-card {
    background: linear-gradient(135deg, #ffffff, #eef2ff);
    border-radius: 18px;
    padding: 24px 18px;
    border: 1px solid var(--rk-border);
    height: 100%;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    color: var(--rk-text);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37,99,235,0.7);
    box-shadow: 0 18px 40px rgba(148,163,184,0.35);
}

.why-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(37,99,235,0.12);
    margin-bottom: 12px;
    color: var(--rk-blue);
}

.why-icon i {
    color: var(--rk-golden);
}

/* Counters */
.counters-section {
    background: linear-gradient(135deg, #e0ecff, #f9fafb);
}

.counter-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px 10px;
    border: 1px solid var(--rk-border);
    box-shadow: 0 18px 40px rgba(148,163,184,0.35);
}

.counter-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--rk-golden-soft);
    font-family: 'Playfair Display', serif;
}

/* Gallery */
#galleryGrid .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--rk-border);
    background: #ffffff;
}

.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
}

.gallery-img-wrapper img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 220px;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.05), rgba(15,23,42,0.7));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay-content {
    text-align: center;
}

.gallery-overlay-content i {
    font-size: 1.5rem;
    color: var(--rk-golden);
}

.gallery-overlay-content span {
    display: block;
    font-size: 0.9rem;
    margin-top: 6px;
    color: #f9fafb;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


/* VIDEO SECTION */
#video {
    background: linear-gradient(135deg, var(--rk-blue-soft), var(--rk-lilac-soft));
}

/* Video Card Style */
.video-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--rk-border);
    box-shadow: 0 16px 36px rgba(148,163,184,0.35);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(148,163,184,0.45);
}

/* Responsive video inside card */
.rk-video {
    width: 100%;
    height: 260px;          /* You can increase or decrease this */
    object-fit: cover;       /* Makes preview beautiful */
    border-radius: 18px;     
    display: block;
}

/* On tablet */
@media (max-width: 991px) {
    .rk-video {
        height: 240px;
    }
}

/* On mobile */
@media (max-width: 575px) {
    .rk-video {
        height: 200px;
    }
}


/* Video looks beautiful inside card */
.rk-video {
    width: 100%;
    height: 260px;
    object-fit: cover;       /* preview mode only */
    border-radius: 18px;
}

/* BUT when fullscreen → show actual full video */
.rk-video:fullscreen {
    object-fit: contain !important;
    width: 100% !important;
    height: 100% !important;
    background: #000;
}

/* Safari (Webkit) fullscreen support */
.rk-video:-webkit-full-screen {
    object-fit: contain !important;
    width: 100% !important;
    height: 100% !important;
    background: #000;
}



/* Modal */
.border-golden {
    border: 1px solid rgba(212, 175, 55, 0.7) !important;
}

.modal-content.bg-black {
    background: #0f172a !important;
    color: #f9fafb;
}

.text-golden {
    color: var(--rk-golden-soft);
}

/* Contact */
.contact-info-card,
.contact-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 22px;
    border: 1px solid var(--rk-border);
    box-shadow: 0 18px 40px rgba(148,163,184,0.35);
    color: var(--rk-text);
}

.contact-info-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--rk-text);
}

.contact-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.contact-list i {
    font-size: 1.3rem;
    color: var(--rk-golden);
    margin-top: 4px;
}

.contact-list span {
    font-size: 0.8rem;
    color: var(--rk-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.contact-list a {
    color: var(--rk-text);
    text-decoration: none;
}

.contact-list a:hover {
    color: var(--rk-blue);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    background: #f9fafb;
    border-radius: 14px;
    border: 1px solid var(--rk-border);
    color: var(--rk-text);
}

.contact-form-card .form-control::placeholder {
    color: var(--rk-muted);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: rgba(37,99,235,0.7);
    box-shadow: 0 0 0 0.18rem rgba(37,99,235,0.25);
    background: #ffffff;
}

/* Map */
.map-wrapper {
    width: 100%;
    height: 350px;
    border-top: 1px solid var(--rk-border);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer-section {
    background: #0f172a;
    padding: 50px 0 20px;
    color: #e5e7eb;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    color: #f9fafb;
}

.footer-text {
    font-size: 0.9rem;
    color: #9ca3af;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.footer-links a {
    color: #e5e7eb;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--rk-golden-soft);
}

.footer-contact i {
    color: var(--rk-golden-soft);
    margin-right: 8px;
}

.footer-bottom {
    color: #9ca3af;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 16px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.float-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-size: 1.4rem;
    box-shadow: 0 0 16px rgba(15,23,42,0.5);
    animation: pulse 1.6s infinite;
}

.float-whatsapp {
    background: #25d366;
    color: #fff;
}

.float-call {
    background: #2563eb;
    color: #fff;
	margin-bottom: 100px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: #0f172a;
    color: var(--rk-golden-soft);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 0 10px rgba(15,23,42,0.7);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 0 22px rgba(212, 175, 55, 0.9);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-slide {
        height: 78vh;
    }
    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .top-bar {
        text-align: center;
    }
    .hero-title {
        font-size: 1.7rem;
    }
    .hero-text {
        font-size: 0.9rem;
    }
    .gallery-img-wrapper img {
        height: 190px;
    }
}

@media (max-width: 575.98px) {
    .hero-slide {
        height: 70vh;
        min-height: 480px;
    }
    .section-padding {
        padding: 60px 0;
    }
    .floating-buttons {
        right: 14px;
        bottom: 76px;
    }
}







/* ---------- SECTION BACKGROUNDS (COLORFUL + LIGHT) ---------- */

/* ABOUT: warm golden-cream */
#about {
    background: linear-gradient(135deg, var(--rk-cream-soft), #fffdf4);
}

/* SERVICES: fresh light blue */
#services {
    background: linear-gradient(135deg, var(--rk-blue-soft), #f4f8ff);
}

/* WHY US: soft neutral with tiny peach hint */
#why-us {
    background: linear-gradient(135deg, #fdf5f0, #fffdf8);
}

/* ACHIEVEMENTS: blend of blue + cream */
#achievements {
    background: linear-gradient(135deg, var(--rk-blue-soft), var(--rk-cream-soft));
}

/* GALLERY: light lilac/blue for stylish vibe */
#gallery {
    background: linear-gradient(135deg, var(--rk-lilac-soft), var(--rk-blue-soft));
}

/* CONTACT: mostly white with a warm edge */
#contact {
    background: linear-gradient(135deg, #ffffff, #fdf5f0);
}


.service-card {
    background: #ffffff;
}

.why-card {
    background: linear-gradient(135deg, #ffffff, #f7f4ff);
}

.contact-info-card,
.contact-form-card {
    background: #ffffff;
}
@media(max-width:991px)
{
	.sticky-top{
		position:relative;
	}
}
@media(max-width:768px)
{
	.cu-mb-ds-nn{
		display:none!important
	}
}