/**
 * URDAY intro site — modern UI layer
 * Uses dashboard-driven CSS variables: --main, --hover, --main2, --white, --gray
 */

/* ---------- Base / typography ---------- */
html {
    scroll-padding-top: 96px;
}

body {
    font-family: "Tajawal", "myFont", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text, #1f2937);
    background: var(--surface, linear-gradient(180deg, #f8fafc 0%, #f1f5f9 40%, #ffffff 100%));
    -webkit-font-smoothing: antialiased;
}

.grey-color {
    color: var(--muted, #64748b) !important;
}

/* ---------- Header ---------- */
header.site-header {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.82);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

header.site-header.is-scrolled {
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1);
}

.the-logo {
    max-height: 64px;
    filter: drop-shadow(0 6px 18px rgba(15, 23, 42, 0.08));
}

.nav_bar li {
    margin: 0 6px;
}

.nav_bar a {
    font-weight: 600;
    font-size: 14px;
    color: #334155 !important;
    padding: 8px 12px;
    border-radius: 999px;
    position: relative;
}

.nav_bar a:hover {
    color: var(--main) !important;
    background: rgba(0, 0, 0, 0.03);
}

.nav_bar a.active {
    color: var(--main) !important;
    background: color-mix(in srgb, var(--main) 12%, transparent);
}

.dropdown-toggle {
    border-radius: 999px !important;
    padding: 8px 14px !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    background: #fff !important;
    font-weight: 600;
    color: #334155 !important;
}

.dropdown-menu {
    border-radius: 14px !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    box-shadow: var(--shadow-md, 0 18px 50px rgba(15, 23, 42, 0.12));
}

/* ---------- Sections & shells ---------- */
.sec-padd {
    padding-top: 72px;
    padding-bottom: 72px;
    scroll-margin-top: 88px;
}

.intro-section.sec-padd {
    padding-top: 88px;
    padding-bottom: 88px;
}

/* Hero wrapper */
.intro-hero {
    position: relative;
    overflow: hidden;
}

.intro-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 56px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(248, 250, 252, 0), #f1f5f9);
    z-index: 2;
}

/* Section blocks */
.intro-section {
    position: relative;
    isolation: isolate;
}

.intro-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.intro-section > .container {
    position: relative;
    z-index: 1;
}

.intro-section + .intro-section,
.intro-hero + .sec-padd {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.intro-section--about .intro-panel {
    margin-top: 0.25rem;
}

.intro-section--about::before {
    background:
        radial-gradient(560px 260px at 82% 18%, color-mix(in srgb, var(--main) 16%, transparent), transparent 62%),
        radial-gradient(480px 220px at 12% 85%, rgba(148, 163, 184, 0.18), transparent 55%);
}

.intro-section--services::before {
    background: radial-gradient(700px 320px at 50% -10%, color-mix(in srgb, var(--main) 18%, transparent), transparent 55%);
}

.intro-section--how::before {
    background:
        radial-gradient(520px 240px at 20% 30%, color-mix(in srgb, var(--main) 12%, transparent), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 250, 252, 0.95));
}

.intro-section--faq::before {
    opacity: 0.55;
    background-image: radial-gradient(rgba(15, 23, 42, 0.07) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(to bottom, black 40%, transparent);
}

.intro-section--partners::before {
    background:
        radial-gradient(640px 280px at 70% 20%, color-mix(in srgb, var(--main) 12%, transparent), transparent 60%),
        linear-gradient(180deg, #ffffff, #f8fafc);
}

.intro-section--contact::before {
    background:
        radial-gradient(520px 260px at 50% 110%, color-mix(in srgb, var(--main) 22%, transparent), transparent 55%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 55%);
}

/* Raised inner panel (about + density) */
.intro-panel {
    background: #ffffff;
    border-radius: 24px;
    padding: clamp(1.25rem, 3vw, 2.75rem);
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
}

.intro-how-inner {
    margin-top: 0.5rem;
    padding: clamp(1rem, 2vw, 1.75rem);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

/* Section headings */
.intro-section .the_title {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.intro-section .the_title h3 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.35rem;
}

.intro-section .the_title h3::before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    border-radius: 999px;
    margin: 0 auto 14px;
    background: var(--main2);
    opacity: 0.95;
}

.intro-section .the_title h3::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    border-radius: 999px;
    margin: 14px auto 0;
    background: linear-gradient(
        90deg,
        transparent,
        color-mix(in srgb, var(--main) 55%, transparent),
        transparent
    );
}

.intro-section .the_title p {
    margin-top: 0.75rem;
    line-height: 1.8;
}

.the_title h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--text, #0f172a);
}

.the_title p {
    font-size: 1rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Hero / slider ---------- */
.owl-index .info_owl,
.owl-index .hero-slide {
    background: linear-gradient(125deg, #f8fafc 0%, #eef2ff 42%, #f8fafc 100%);
}

.hero-slide {
    position: relative;
    min-height: 540px;
    align-items: center;
}

.hero-slide__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        105deg,
        rgba(248, 250, 252, 0.97) 0%,
        rgba(248, 250, 252, 0.78) 38%,
        rgba(248, 250, 252, 0.25) 62%,
        transparent 72%
    );
}

.hero-slide__mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
    background-image:
        radial-gradient(color-mix(in srgb, var(--main) 28%, transparent) 1.2px, transparent 1.2px),
        radial-gradient(rgba(148, 163, 184, 0.22) 1px, transparent 1px);
    background-size: 28px 28px, 18px 18px;
    background-position: 0 0, 12px 8px;
    mask-image: radial-gradient(70% 55% at 70% 40%, black 22%, transparent 72%);
}

.hero-slide .container {
    position: relative;
    z-index: 3;
}

.hero-slide__copy.ads_wol {
    max-width: 520px;
    padding: clamp(1.25rem, 2.5vw, 2rem);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.hero-slide__eyebrow {
    margin: 0 0 10px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--main) 78%, #334155);
}

.hero-slide__copy h3 {
    font-size: clamp(1.85rem, 3.2vw, 2.55rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.18;
    margin: 0 0 14px;
    color: #0f172a;
}

.hero-slide__copy p {
    font-size: 1.06rem;
    line-height: 1.75;
    color: #475569;
    margin: 0;
    max-width: 46ch;
}

.hero-slide__cta-line {
    display: block;
    width: 120px;
    height: 4px;
    margin-top: 22px;
    border-radius: 999px;
    background: var(--main2);
    box-shadow: 0 10px 26px color-mix(in srgb, var(--main) 35%, transparent);
}

.hero-slide__figure.img_owl_index {
    z-index: 2;
}

.info_owl {
    height: 560px;
    align-items: center;
}

/* Hero image: replace legacy tilt / pill shape from style.css */
.intro-hero .hero-slide .img_owl_index.hero-slide__figure {
    position: absolute !important;
    width: min(520px, 42vw) !important;
    height: min(430px, 52vh) !important;
    max-height: 520px !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    left: clamp(12px, 5vw, 64px) !important;
    right: auto !important;
    bottom: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    transform-origin: center center !important;
    box-shadow:
        0 36px 90px rgba(15, 23, 42, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 0 0 10px rgba(248, 250, 252, 0.65);
}

.intro-hero .hero-slide .img_owl_index.hero-slide__figure img {
    transform: none !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}

.intro-hero .hero-slide .img_owl_index.hero-slide__figure::after {
    background: linear-gradient(
        115deg,
        color-mix(in srgb, var(--main) 22%, transparent) 0%,
        rgba(255, 255, 255, 0) 55%
    ) !important;
    opacity: 0.75;
}

[dir="ltr"] .intro-hero .hero-slide .img_owl_index.hero-slide__figure {
    left: auto !important;
    right: clamp(12px, 5vw, 64px) !important;
}

.intro-hero .owl-carousel .owl-stage-outer,
.intro-hero .owl-carousel .owl-stage,
.intro-hero .owl-carousel .owl-item {
    height: 100%;
}

.intro-hero .owl-dots {
    bottom: 96px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    gap: 8px;
}

.intro-hero .owl-nav {
    position: absolute !important;
    left: 50% !important;
    bottom: 28px !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    max-width: calc(100% - 32px);
    display: flex !important;
    gap: 12px !important;
    justify-content: center !important;
    align-items: center !important;
}

.intro-hero .owl-nav > div {
    position: relative !important;
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    border-radius: 14px !important;
    font-size: 16px !important;
}

.owl-carousel .owl-dot.active {
    transform: scale(1.08);
}

.owl-carousel .owl-dot.active span,
.owl-carousel .owl-dot.active:after {
    transition: transform 0.2s ease;
}

.owl-nav > div {
    background: rgba(255, 255, 255, 0.92) !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
}

.owl-nav > div:hover {
    background: var(--main) !important;
    color: #fff !important;
    border-color: transparent !important;
}

/* ---------- About ---------- */
.info_JM h4.main-color {
    font-weight: 800;
    font-size: 1.35rem;
}

.img_info_JM img {
    box-shadow: var(--shadow-md, 0 20px 50px rgba(15, 23, 42, 0.12));
}

/* ---------- Services ---------- */
.bacg_section {
    background: linear-gradient(180deg, color-mix(in srgb, var(--main) 14%, #ffffff) 0%, #ffffff 100%) !important;
}

.bacg_section .the_title h3,
.bacg_section .the_title p {
    color: #0f172a !important;
}

.intro-services-grid {
    margin-top: 0.5rem;
}

.intro-services-grid > [class*="col-"] {
    display: flex;
}

.intro-services-grid .box-servess::after {
    display: none !important;
}

.intro-services-grid .service-card.box-servess {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border-radius: 22px !important;
    border: 1px solid rgba(15, 23, 42, 0.075);
    background: linear-gradient(168deg, #ffffff 0%, #f8fafc 48%, #ffffff 100%);
    box-shadow:
        0 2px 4px rgba(15, 23, 42, 0.04),
        0 20px 48px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    overflow: hidden;
    transition:
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.32s ease,
        border-color 0.32s ease;
    position: relative;
}

.intro-services-grid .service-card.box-servess::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
    background: radial-gradient(
        120% 70% at 100% 0%,
        color-mix(in srgb, var(--main) 16%, transparent),
        transparent 58%
    );
    opacity: 0.55;
}

.intro-services-grid .service-card.box-servess > * {
    position: relative;
    z-index: 1;
}

.service-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 2;
    background: linear-gradient(
        90deg,
        color-mix(in srgb, var(--hover) 35%, var(--main)),
        var(--main),
        color-mix(in srgb, var(--main) 65%, #ffffff)
    );
    box-shadow: 0 8px 22px color-mix(in srgb, var(--main) 35%, transparent);
}

.service-card__header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1.35rem 1.5rem 1.05rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 250, 252, 0.45));
}

.service-card__icon-ring {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow:
        0 12px 28px rgba(15, 23, 42, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition:
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.service-card__icon {
    max-width: 44px !important;
    max-height: 44px !important;
    margin: 0 !important;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(15, 23, 42, 0.08));
}

.service-card__body {
    padding: 1.35rem 1.5rem 1.7rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.service-card__title {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.35;
    color: #0f172a;
    margin: 0;
}

.service-card__text {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.78;
    color: #64748b !important;
}

.intro-services-grid .service-card.box-servess:hover {
    transform: translateY(-10px);
    border-color: color-mix(in srgb, var(--main) 32%, rgba(15, 23, 42, 0.1));
    box-shadow:
        0 32px 72px rgba(15, 23, 42, 0.14),
        0 0 0 1px color-mix(in srgb, var(--main) 18%, transparent),
        0 2px 4px rgba(15, 23, 42, 0.05);
}

.intro-services-grid .service-card.box-servess:hover .service-card__icon-ring {
    transform: translateY(-4px) scale(1.04);
    border-color: color-mix(in srgb, var(--main) 42%, rgba(15, 23, 42, 0.12));
    box-shadow:
        0 16px 38px color-mix(in srgb, var(--main) 22%, rgba(15, 23, 42, 0.16)),
        0 0 0 1px rgba(255, 255, 255, 0.85) inset;
}

.intro-services-grid .service-card.box-servess:hover .service-card__accent {
    box-shadow: 0 12px 28px color-mix(in srgb, var(--main) 42%, transparent);
}

.box-servess:not(.service-card) {
    border-radius: 18px !important;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--shadow-sm, 0 10px 30px rgba(15, 23, 42, 0.06));
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.box-servess:not(.service-card):hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md, 0 22px 50px rgba(15, 23, 42, 0.12));
}

.box-servess:not(.service-card) h6 {
    font-size: 1.05rem;
    margin-top: 8px;
}

/* ---------- How it works ---------- */
.how_work {
    gap: 12px;
    padding: 24px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.how_work img {
    border: 4px solid #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.how_work li div {
    font-weight: 700;
    color: #334155;
    margin-top: 8px;
}

/* ---------- FAQ ---------- */
.bacg_section2 {
    background: #f8fafc !important;
}

#pills-tab.nav-pills {
    flex-wrap: wrap;
    gap: 8px;
}

#pills-tab .nav-link {
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    background: #ffffff !important;
    color: #334155 !important;
    font-weight: 600;
    box-shadow: var(--shadow-sm, 0 6px 18px rgba(15, 23, 42, 0.05));
}

#pills-tab .nav-link.active {
    border-color: transparent !important;
    background-image: var(--main2) !important;
    color: #ffffff !important;
}

.accordion .card {
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    border-radius: 14px !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06) !important;
}

.accordion .card-header button {
    font-weight: 700;
    color: #0f172a;
}

/* ---------- Contact ---------- */
#connect_us .form-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--shadow-md, 0 22px 55px rgba(15, 23, 42, 0.08));
}

.form-control {
    border: 1px solid rgba(15, 23, 42, 0.1) !important;
    background: #f8fafc !important;
    border-radius: 12px !important;
    padding: 14px 16px !important;
    font-size: 15px !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    background: #ffffff !important;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--main) 22%, transparent) !important;
}

.btn-main {
    border-radius: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
    box-shadow: 0 14px 34px color-mix(in srgb, var(--main) 35%, transparent);
}

.btn-main:hover {
    filter: brightness(1.03);
    transform: translateY(-1px);
}

/* ---------- Partners carousel ---------- */
.owl-brands .item {
    padding: 18px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--shadow-sm, 0 10px 24px rgba(15, 23, 42, 0.05));
}

.owl-brands .item img {
    max-height: 52px;
    width: auto !important;
    margin: 0 auto;
    object-fit: contain;
}

/* ---------- Footer ---------- */
footer {
    padding-top: 48px !important;
    background: linear-gradient(135deg, color-mix(in srgb, var(--main) 92%, #000) 0%, var(--main) 55%, color-mix(in srgb, var(--hover) 75%, var(--main)) 100%) !important;
}

.link-footer a {
    opacity: 0.95;
}

.social-m li a {
    background: rgba(255, 255, 255, 0.18) !important;
    border: 1px solid rgba(255, 255, 255, 0.28);
    transition: transform 0.2s ease, background 0.2s ease;
}

.social-m li a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.28) !important;
}

.under_footer {
    background: rgba(0, 0, 0, 0.18) !important;
}

/* ---------- Loader ---------- */
.loader {
    background: rgba(248, 250, 252, 0.92) !important;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

/* ---------- Mobile nav (brand tint) ---------- */
@media (max-width: 991.98px) {
    .nav_bar {
        background: linear-gradient(165deg, color-mix(in srgb, var(--main) 92%, #1e293b), color-mix(in srgb, var(--hover) 88%, #0f172a)) !important;
        color: #ffffff !important;
        border-left: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: -12px 0 40px rgba(15, 23, 42, 0.25);
    }

    .nav_bar a {
        color: #ffffff !important;
    }

    .nav_bar a.active {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.14) !important;
    }

    .sec-padd {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .info_owl.hero-slide {
        height: 520px;
    }

    .intro-hero .hero-slide .img_owl_index.hero-slide__figure {
        width: min(440px, 48vw) !important;
        height: min(380px, 46vh) !important;
    }

    .hero-slide__copy.ads_wol {
        margin-inline-start: 0;
        margin-inline-end: auto;
    }
}

@media (max-width: 767.98px) {
    .hero-slide__shade {
        background: linear-gradient(
            to top,
            rgba(15, 23, 42, 0.88) 0%,
            rgba(15, 23, 42, 0.35) 42%,
            transparent 100%
        );
    }

    .hero-slide__mesh {
        opacity: 0.35;
    }

    .hero-slide__copy.ads_wol {
        background: rgba(15, 23, 42, 0.42);
        border-color: rgba(255, 255, 255, 0.14);
        box-shadow: 0 22px 50px rgba(15, 23, 42, 0.35);
    }

    .hero-slide__eyebrow {
        color: rgba(255, 255, 255, 0.82);
    }

    .hero-slide__copy h3 {
        color: #ffffff !important;
    }

    .hero-slide__copy p {
        color: rgba(248, 250, 252, 0.92) !important;
    }

    .hero-slide__cta-line {
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    }

    .ads_wol h3 {
        color: #ffffff !important;
    }

    .ads_wol p {
        color: rgba(255, 255, 255, 0.92) !important;
    }

    .intro-hero .hero-slide .img_owl_index.hero-slide__figure {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        width: min(100%, 520px) !important;
        height: min(52vw, 260px) !important;
        max-height: 300px !important;
        margin: 1.25rem auto 0 !important;
        border-radius: 20px !important;
        box-shadow:
            0 24px 55px rgba(15, 23, 42, 0.14),
            0 0 0 1px rgba(255, 255, 255, 0.35) inset !important;
    }

    .info_owl.hero-slide {
        height: auto !important;
        min-height: 0 !important;
        padding: 1.5rem 0 5.5rem !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
    }

    .intro-hero .owl-dots {
        bottom: 120px !important;
    }

    .intro-hero .owl-nav {
        bottom: 24px !important;
    }
}
