Updated CSS styles
This commit is contained in:
+344
-595
@@ -1,601 +1,350 @@
|
||||
/* ==========================================================================
|
||||
/* =====================================================
|
||||
AAideA — Responsive Stylesheet
|
||||
Mobile-first overrides on top of style.css.
|
||||
Breakpoints (Bootstrap 5 aligned):
|
||||
xs : < 576px (default / mobile)
|
||||
sm : >= 576px
|
||||
md : >= 768px
|
||||
lg : >= 992px
|
||||
xl : >= 1200px
|
||||
xxl: >= 1400px
|
||||
========================================================================== */
|
||||
All rules are wrapped in media queries only.
|
||||
Desktop styles live in style.css and are not touched.
|
||||
===================================================== */
|
||||
|
||||
/* ---------------- GLOBAL TOKENS & BASE ---------------- */
|
||||
:root {
|
||||
--ux-radius: 14px;
|
||||
--ux-gap: clamp(12px, 2vw, 24px);
|
||||
--ux-section-y: clamp(48px, 8vw, 110px);
|
||||
--ux-container-x: clamp(16px, 4vw, 32px);
|
||||
--ux-tap: 44px;
|
||||
}
|
||||
|
||||
html { -webkit-text-size-adjust: 100%; }
|
||||
body { overflow-x: hidden; }
|
||||
img, svg, video { max-width: 100%; height: auto; }
|
||||
* { box-sizing: border-box; }
|
||||
/* =====================================================
|
||||
TABLET — max-width: 1024px
|
||||
===================================================== */
|
||||
@media (max-width: 1024px) {
|
||||
|
||||
.container, .container-fluid {
|
||||
padding-left: var(--ux-container-x);
|
||||
padding-right: var(--ux-container-x);
|
||||
}
|
||||
|
||||
/* Touch-friendly defaults: every interactive element gets minimum 44px tap target */
|
||||
.ux-btn-primary,
|
||||
.ux-btn-secondary,
|
||||
.ux-footer-cta-btn,
|
||||
.ux-result-btn,
|
||||
button,
|
||||
a.btn {
|
||||
min-height: var(--ux-tap);
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.ux-input,
|
||||
.ux-textarea {
|
||||
width: 100%;
|
||||
font-size: 16px; /* prevent iOS zoom on focus */
|
||||
}
|
||||
|
||||
/* ============================================================
|
||||
HEADER + MOBILE NAVIGATION
|
||||
============================================================ */
|
||||
.ux-header { padding: 14px 0; }
|
||||
|
||||
.ux-navbar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 12px;
|
||||
padding: 12px 16px;
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
|
||||
.ux-navbar img { width: auto; height: auto; max-width: 110px; }
|
||||
|
||||
.ux-brand { display: inline-flex; align-items: center; }
|
||||
|
||||
.ux-header-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
/* HAMBURGER (mobile only by default) */
|
||||
.ux-hamburger {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
display: inline-flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
background: transparent;
|
||||
border: 1px solid rgba(255,255,255,0.18);
|
||||
border-radius: 10px;
|
||||
padding: 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
.ux-hamburger span {
|
||||
display: block;
|
||||
width: 20px;
|
||||
height: 2px;
|
||||
background: #fff;
|
||||
border-radius: 2px;
|
||||
transition: transform .25s ease, opacity .2s ease;
|
||||
}
|
||||
.ux-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
|
||||
.ux-hamburger.is-active span:nth-child(2) { opacity: 0; }
|
||||
.ux-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
|
||||
|
||||
/* CONTACT TOGGLE: hide the close icon by default and reveal when active */
|
||||
.ux-menu { width: 40px; height: 40px; background: transparent; border: 0; padding: 0; }
|
||||
.ux-menu .icon {/* width: 100%; *//* height: 100%; */}
|
||||
.ux-menu .close-icon { opacity: 0; transform: rotate(90deg); }
|
||||
.ux-menu.active .open-icon { opacity: 0; transform: rotate(90deg); }
|
||||
.ux-menu.active .close-icon { opacity: 1; transform: rotate(0); }
|
||||
|
||||
/* OVERLAY (shared by mobile nav + contact panel on small screens) */
|
||||
.ux-overlay {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background: rgba(0,0,0,0.55);
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
transition: opacity .3s ease;
|
||||
z-index: 0;
|
||||
}
|
||||
.ux-overlay.active { opacity: 1; pointer-events: auto; }
|
||||
|
||||
/* MOBILE NAV DRAWER (default = mobile) */
|
||||
.ux-nav {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: min(82vw, 320px);
|
||||
height: 100dvh;
|
||||
background: #0e1414;
|
||||
flex-direction: column;
|
||||
gap: 6px;
|
||||
padding: 88px 24px 32px;
|
||||
margin: 0;
|
||||
list-style: none;
|
||||
transform: translateX(100%);
|
||||
transition: transform .35s ease;
|
||||
z-index: 95;
|
||||
box-shadow: -10px 0 40px rgba(0,0,0,0.45);
|
||||
overflow-y: auto;
|
||||
}
|
||||
.ux-nav.is-open { transform: translateX(0); }
|
||||
.ux-nav li {/* width: 100%; */}
|
||||
.ux-nav li a {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
padding: 14px 8px;
|
||||
font-size: 17px;
|
||||
color: #fff;
|
||||
border-bottom: 1px solid rgba(255,255,255,0.06);
|
||||
text-decoration: none;
|
||||
min-height: var(--ux-tap);
|
||||
}
|
||||
.ux-nav .ux-nav-cta a {
|
||||
margin-top: 12px;
|
||||
background: var(--primary);
|
||||
color: #000 !important;
|
||||
border-radius: 30px;
|
||||
justify-content: center;
|
||||
border: 0;
|
||||
padding: 12px 22px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
/* CONTACT PANEL: full-width sheet on mobile */
|
||||
.contact-panel {
|
||||
top: 0;
|
||||
right: -100%;
|
||||
width: min(88vw, 360px);
|
||||
height: 100dvh;
|
||||
border-radius: 0;
|
||||
padding: 80px 22px 24px;
|
||||
overflow-y: auto;
|
||||
z-index: 96;
|
||||
}
|
||||
.contact-panel.active { right: 0; }
|
||||
.contact-panel .images { flex-wrap: wrap; }
|
||||
.contact-panel .images img { width: 72px; height: 72px; }
|
||||
|
||||
/* ============================================================
|
||||
HERO
|
||||
============================================================ */
|
||||
.ux-hero-section {
|
||||
padding: 120px 0 40px;
|
||||
background-size: cover;
|
||||
background-position: center top;
|
||||
}
|
||||
.ux-hero-title { font-size: clamp(28px, 7vw, 52px); }
|
||||
.ux-hero-subtitle { width: 100%; font-size: 15px; }
|
||||
.ux-hero-actions {
|
||||
flex-wrap: wrap;
|
||||
gap: 12px;
|
||||
margin-top: 28px;
|
||||
}
|
||||
.ux-hero-actions .btn {/* width: 100%; */max-width: 320px;}
|
||||
|
||||
.ux-bottom-wrapper { margin-top: 40px; }
|
||||
.ux-bottom-wrapper .ux-img-card img { width: 100%; }
|
||||
.ux-stat-box { padding: 24px 20px; }
|
||||
.ux-counter { font-size: 32px; }
|
||||
.ux-dark h2 { font-size: 28px; }
|
||||
.ux-dark h5,
|
||||
.ux-dark p {font-size: 21px;line-height: 1.45;}
|
||||
.ux-about-img{
|
||||
margin: 0 0 20px;
|
||||
}
|
||||
/* ============================================================
|
||||
ABOUT SECTION
|
||||
============================================================ */
|
||||
.ux-about-section { padding: var(--ux-section-y) 0; }
|
||||
.ux-section-label {/* width: 100%; */}
|
||||
.ux-main-heading { font-size: clamp(20px, 4vw, 32px); }
|
||||
.ux-sub-heading { font-size: 16px; }
|
||||
.ux-big-counter { font-size: clamp(40px, 10vw, 70px); }
|
||||
.ux-small-text { width: 100%; }
|
||||
.ux-about-img { height: auto; max-height: 280px; }
|
||||
.ux-card-text { max-width: 100%; }
|
||||
|
||||
/* PARTNERS */
|
||||
.partners-wrapper {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 8px;
|
||||
}
|
||||
.partner-item { height: 80px; }
|
||||
.partner-item img { max-width: 90px; }
|
||||
|
||||
/* ============================================================
|
||||
WORK / SWIPER
|
||||
============================================================ */
|
||||
.ux-work-section { padding: 30px 0 50px; }
|
||||
.ux-work-card img { height: auto; max-height: 240px; }
|
||||
.ux-work-card h4 { font-size: 17px; }
|
||||
.displayflexhead {
|
||||
width: 100%;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
}
|
||||
.ux-swiper-nav { gap: 10px; }
|
||||
.ux-swiper-nav .ux-arrow {
|
||||
width: 70px;
|
||||
height: 40px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
/* ============================================================
|
||||
WHY SECTION
|
||||
============================================================ */
|
||||
.ux-why-section { padding: var(--ux-section-y) 0; }
|
||||
.ux-why-img img { height: auto; max-height: 260px; }
|
||||
.ux-why-card { padding: 22px 20px; }
|
||||
.main-headingexit { width: 100%; }
|
||||
|
||||
/* ============================================================
|
||||
BUILD / SELL SECTION
|
||||
============================================================ */
|
||||
.ux-build-section { padding: var(--ux-section-y) 0; background-size: cover; }
|
||||
.ux-build-card { padding: 26px 22px; }
|
||||
.ux-build-card h5 {}
|
||||
.ux-build-card p {}
|
||||
.ux-build-swiper .swiper-slide { width: 86%; }
|
||||
|
||||
/* ============================================================
|
||||
PROCESS SECTION
|
||||
============================================================ */
|
||||
.ux-process-section { padding: var(--ux-section-y) 0; }
|
||||
.ux-process-card {/* width: 100%; *//* padding: 24px 22px; */}
|
||||
.ux-step-arrow { display: none; }
|
||||
|
||||
/* ============================================================
|
||||
FOOTER CTA + MAIN FOOTER
|
||||
============================================================ */
|
||||
.ux-footer-hero { padding: 60px 0; background-size: cover; background-position: center; }
|
||||
.ux-footer-title { font-size: clamp(22px, 5vw, 30px); }
|
||||
.ux-footer-cta-btn {
|
||||
font-size: 16px;
|
||||
padding: 6px 6px 6px 22px;
|
||||
}
|
||||
.ux-footer-cta-btn .ux-btn-icon { width: 38px; height: 38px; }
|
||||
|
||||
.ux-footer-grid {
|
||||
grid-template-columns: 1fr;
|
||||
border-left: 0;
|
||||
border-right: 0;
|
||||
}
|
||||
.ux-footer-left {
|
||||
padding: 32px 22px;
|
||||
border-right: 0;
|
||||
border-bottom: 1px solid rgba(255,255,255,0.08);
|
||||
}
|
||||
.ux-footer-desc { max-width: 100%; font-size: 15px; line-height: 1.7; }
|
||||
.ux-footer-right { grid-template-columns: repeat(2, 1fr); }
|
||||
.ux-footer-links { padding: 26px 22px; }
|
||||
.ux-footer-links h6 { font-size: 16px; margin-bottom: 12px; }
|
||||
.ux-footer-links a { font-size: 14px; margin-bottom: 10px; }
|
||||
|
||||
.ux-footer-bottom {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
padding: 18px 22px;
|
||||
gap: 14px;
|
||||
text-align: left;
|
||||
}
|
||||
.ux-footer-bottom p { font-size: 13px; }
|
||||
.ux-footer-social { gap: 14px; flex-wrap: wrap; }
|
||||
|
||||
/* ============================================================
|
||||
START PROJECT / BREADCRUMB HERO
|
||||
============================================================ */
|
||||
.ux-project-hero { padding: 130px 0 60px; background-size: cover; }
|
||||
.ux-project-title { font-size: clamp(26px, 6vw, 50px); }
|
||||
.ux-project-subtitle { font-size: 15px; }
|
||||
.ux-breadcrumb-wrap { margin-bottom: 36px; flex-wrap: wrap; }
|
||||
.ux-joined-box {
|
||||
position: static;
|
||||
margin: 30px auto 0;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.ux-avatar-group img { width: 48px; height: 48px; border-width: 2px; margin-left: -10px; }
|
||||
|
||||
/* CONTACT FORM */
|
||||
.ux-contact-section { padding: 50px 0; }
|
||||
.ux-contact-left,
|
||||
.ux-contact-box {}
|
||||
.ux-contact-email { font-size: clamp(24px, 6vw, 35px); margin-bottom: 36px; }
|
||||
.ux-contact-link { font-size: 18px; }
|
||||
.ux-contact-title { font-size: clamp(20px, 4vw, 26px); margin-bottom: 24px; }
|
||||
.ux-input {}
|
||||
.ux-textarea { font-size: 16px; padding: 16px 18px; }
|
||||
|
||||
/* CASE ACCORDION */
|
||||
.ux-case-section { padding: 50px 0; }
|
||||
.ux-case-btn { padding: 22px 22px !important; flex-wrap: wrap; gap: 10px; }
|
||||
.ux-case-head {/* width: 100%; */}
|
||||
.ux-case-head h3 { font-size: clamp(20px, 5vw, 29px); }
|
||||
.ux-case-head p { font-size: 15px; }
|
||||
.ux-case-right { padding-right: 0; margin-left: 0; }
|
||||
.ux-case-body { padding: 0 18px 24px !important; }
|
||||
.ux-case-inner {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 18px;
|
||||
padding: 18px;
|
||||
}
|
||||
.ux-case-img { height: auto; max-height: 220px; }
|
||||
.ux-case-grid { grid-template-columns: 1fr; gap: 18px; }
|
||||
.ux-case-grid strong { font-size: 17px; }
|
||||
|
||||
/* RESULT / DELIVER */
|
||||
.ux-result-section { padding: 50px 0; }
|
||||
.ux-result-box {
|
||||
grid-template-columns: 1fr;
|
||||
margin-bottom: 50px;
|
||||
padding: 26px;
|
||||
}
|
||||
.ux-result-left { padding-right: 0; border-right: 0; padding-bottom: 22px; border-bottom: 1px solid #e3e3e3; }
|
||||
.ux-result-right { padding-left: 0; padding-top: 22px; }
|
||||
.ux-build-grid { grid-template-columns: repeat(2, 1fr); }
|
||||
.ux-ai-grid { grid-template-columns: 1fr; }
|
||||
.ux-mini-card { min-height: auto; }
|
||||
.ux-mini-card span { font-size: 32px; top: 8px; right: 12px; }
|
||||
.ux-mini-card p { margin-top: 56px; font-size: 14px; }
|
||||
|
||||
.ux-deliver-box {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 24px;
|
||||
padding: 26px;
|
||||
}
|
||||
.ux-deliver-center img { height: auto; max-height: 240px; }
|
||||
|
||||
/* ============================================================
|
||||
PROCESS STEP CARD
|
||||
============================================================ */
|
||||
.ux-process-step-section { padding: 50px 0; }
|
||||
.ux-process-step-box { padding: 24px 22px; margin: 0 0 28px; }
|
||||
.ux-process-title { font-size: clamp(20px, 5vw, 28px); }
|
||||
.ux-process-grid { grid-template-columns: 1fr; gap: 24px; }
|
||||
.ux-process-image img { height: auto; max-height: 280px; }
|
||||
.ux-process-content { padding-right: 0; }
|
||||
.ux-process-item { margin-bottom: 22px; }
|
||||
|
||||
/* SYSTEMS WRAPPER */
|
||||
.systems-wrapper {
|
||||
flex-direction: column;
|
||||
gap: 30px;
|
||||
padding: 40px 0;
|
||||
}
|
||||
.systems-left,
|
||||
.systems-right { width: 100%; }
|
||||
.systems-left { position: static; }
|
||||
.systems-left .desc { width: 100%; }
|
||||
.system-card { padding: 22px; }
|
||||
.system-card ul { grid-template-columns: 1fr; }
|
||||
|
||||
/* CONNECT SECTION (FLOW) */
|
||||
.connect-section { padding: 50px 0 30px; }
|
||||
.connect-section h2 { font-size: clamp(22px, 5vw, 30px); }
|
||||
.connect-flow { gap: 8px; }
|
||||
.flow-item { padding: 8px 18px 8px 8px; font-size: 13px; }
|
||||
.arrow { display: none; }
|
||||
.bottom-text { font-size: 17px; margin: 30px auto; }
|
||||
|
||||
/* APPROACH / DELIVER */
|
||||
.ux-approach-section { padding: 60px 0; }
|
||||
.ux-section-desc { font-size: 16px; margin-left: 0; max-width: 100%; }
|
||||
.ux-card { padding: 22px 20px; }
|
||||
.ux-card-top { margin-bottom: 22px; }
|
||||
.ux-card h4 { font-size: 19px; }
|
||||
|
||||
.ux-deliver-section { padding: 30px 0 60px; }
|
||||
.ux-snapshot-box { padding: 28px 24px; }
|
||||
.ux-snapshot-box h2 { font-size: clamp(30px, 8vw, 48px); }
|
||||
.ux-snapshot-box p { font-size: 17px; }
|
||||
|
||||
/* GROWTH SECTION */
|
||||
.ux-growth-section { margin: 24px auto; padding: 30px 0; }
|
||||
.ux-growth-title { font-size: clamp(22px, 5vw, 30px); }
|
||||
.ux-growth-bottom { font-size: 17px; }
|
||||
|
||||
/* BREACAMP OFFLINE TEXT BLOCK */
|
||||
.breacampoffline {
|
||||
flex-direction: column;
|
||||
gap: 14px;
|
||||
margin: 30px auto 0;
|
||||
align-items: stretch;
|
||||
}
|
||||
.breacampoffline p { width: 100%; }
|
||||
|
||||
/* ==========================================================================
|
||||
>= 576px (sm)
|
||||
========================================================================== */
|
||||
@media (min-width: 576px) {
|
||||
|
||||
.ux-hero-actions .btn { width: auto; }
|
||||
.partners-wrapper { grid-template-columns: repeat(3, 1fr); }
|
||||
.ux-build-grid { grid-template-columns: repeat(2, 1fr); }
|
||||
.ux-ai-grid { grid-template-columns: repeat(2, 1fr); }
|
||||
.ux-footer-right { grid-template-columns: repeat(3, 1fr); }
|
||||
.ux-build-swiper .swiper-slide { width: 60%; }
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
>= 768px (md / tablet)
|
||||
========================================================================== */
|
||||
@media (min-width: 768px) {
|
||||
.ux-header { padding: 18px 0; }
|
||||
.ux-navbar { padding: 14px 22px; }
|
||||
|
||||
.ux-hero-section { padding: 160px 0 50px; }
|
||||
.ux-hero-subtitle { width: 80%; }
|
||||
|
||||
.partners-wrapper { grid-template-columns: repeat(4, 1fr); }
|
||||
.partner-item { height: 90px; }
|
||||
|
||||
.ux-case-inner { grid-template-columns: 280px 1fr; }
|
||||
.ux-case-grid { grid-template-columns: repeat(2, 1fr); }
|
||||
|
||||
.ux-result-box { grid-template-columns: 1.3fr .9fr; }
|
||||
.ux-result-left {
|
||||
padding-right: 26px;
|
||||
padding-bottom: 0;
|
||||
border-right: 1px solid #e3e3e3;
|
||||
border-bottom: 0;
|
||||
/* ---------- GLOBAL ---------- */
|
||||
body { overflow-x: hidden; }
|
||||
img, video { max-width: 100%; height: auto; }
|
||||
.container { padding-left: 24px; padding-right: 24px; }
|
||||
|
||||
/* ---------- HEADER / NAV ---------- */
|
||||
.ux-header { padding: 14px 0; }
|
||||
.ux-navbar { padding: 12px 18px; }
|
||||
.ux-nav { gap: 22px; }
|
||||
.ux-nav a { font-size: 14px; }
|
||||
.ux-brand img { width: 100px; height: auto; }
|
||||
|
||||
/* ---------- HERO ---------- */
|
||||
.ux-hero-section { padding: 160px 0 50px; background-size: cover; }
|
||||
.ux-hero-title { font-size: 40px; line-height: 1.2; }
|
||||
.ux-hero-subtitle { width: 80%; font-size: 16px; }
|
||||
|
||||
.ux-bottom-wrapper { margin-top: 50px; }
|
||||
.ux-bottom-wrapper .col-lg-3,
|
||||
.ux-bottom-wrapper .col-lg-2 { flex: 0 0 auto; width: 50%; margin-bottom: 16px; }
|
||||
.ux-stat-box { padding: 28px 24px; }
|
||||
.ux-light { padding: 36px 0; }
|
||||
.ux-counter { font-size: 34px; }
|
||||
.ux-dark h2 { font-size: 32px; }
|
||||
.ux-dark p, .ux-dark h5 { font-size: 18px; line-height: 1.4; }
|
||||
|
||||
/* ---------- ABOUT SECTION ---------- */
|
||||
.ux-about-section { padding: 60px 0; }
|
||||
.ux-section-label { width: 100%; }
|
||||
.ux-main-heading { font-size: 24px; }
|
||||
.ux-big-counter { font-size: 56px; }
|
||||
.ux-small-text { width: 80%; }
|
||||
.ux-about-img { height: 260px; }
|
||||
|
||||
.partners-wrapper { flex-wrap: wrap; gap: 18px; justify-content: center; }
|
||||
.partner-item img { max-height: 36px; width: auto; }
|
||||
|
||||
/* ---------- WORK / SWIPER ---------- */
|
||||
.ux-work-section { padding: 0 0 50px; }
|
||||
.ux-work-card img {/* height: 240px; */}
|
||||
.ux-work-card h4 { font-size: 18px; }
|
||||
|
||||
/* ---------- WHY ---------- */
|
||||
.ux-why-section { padding: 70px 0; }
|
||||
.ux-why-img img { height: 260px; }
|
||||
.ux-why-card { padding: 20px 22px; }
|
||||
|
||||
/* ---------- BUILD ---------- */
|
||||
.ux-build-section { padding: 60px 0; }
|
||||
.ux-build-card { padding: 28px; }
|
||||
.ux-build-card h5 { font-size: 18px; line-height: 26px; min-height: auto; margin-top: 16px; }
|
||||
.ux-build-card p { min-height: auto; }
|
||||
|
||||
/* ---------- PROCESS ---------- */
|
||||
.ux-process-section { padding: 60px 0; }
|
||||
.ux-process-card { width: 100%; padding: 24px; }
|
||||
.ux-process-card img { margin-top: 16px; }
|
||||
.ux-step-arrow { display: none !important; }
|
||||
|
||||
/* ---------- FOOTER HERO ---------- */
|
||||
.ux-footer-hero { padding: 70px 0; }
|
||||
.ux-footer-title { font-size: 26px; }
|
||||
|
||||
/* ---------- MAIN FOOTER ---------- */
|
||||
.ux-footer-grid { grid-template-columns: 1fr; }
|
||||
.ux-footer-left { padding: 32px 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.09); }
|
||||
.ux-footer-right { grid-template-columns: repeat(3, 1fr); }
|
||||
.ux-footer-links { padding: 28px 18px; }
|
||||
.ux-footer-links h6 { font-size: 16px; }
|
||||
.ux-footer-bottom { padding: 16px 24px; flex-wrap: wrap; }
|
||||
|
||||
/* ---------- PROJECT HERO ---------- */
|
||||
.ux-project-hero { padding: 150px 0 70px; }
|
||||
.ux-project-title { font-size: 40px; }
|
||||
.ux-project-subtitle { font-size: 16px; }
|
||||
.ux-breadcrumb-wrap { margin-bottom: 50px; }
|
||||
|
||||
/* ---------- SERVICES SYSTEMS LAYOUT ---------- */
|
||||
.systems-wrapper { display: block; }
|
||||
.systems-left { position: static; margin-bottom: 32px; }
|
||||
.system-card { padding: 28px; margin-bottom: 20px; }
|
||||
|
||||
/* ---------- PROCESS STEP PAGE ---------- */
|
||||
.ux-process-step-section { padding: 60px 0; }
|
||||
.ux-process-grid { gap: 24px; }
|
||||
.ux-process-image img { width: 100%; height: auto; border-radius: 12px; }
|
||||
|
||||
/* ---------- HVAC / CASE PAGES ---------- */
|
||||
.ux-deliver-right { padding-top: 24px; }
|
||||
|
||||
/* ---------- BUTTONS ---------- */
|
||||
.ux-hero-actions { flex-wrap: wrap; gap: 12px; justify-content: center; }
|
||||
.ux-btn-primary { padding: 6px 6px 6px 22px; font-size: 14px; }
|
||||
.ux-btn-secondary { padding: 11px 22px; font-size: 14px; }
|
||||
|
||||
/* ---------- CONTACT PANEL ---------- */
|
||||
.contact-panel { width: 360px; max-width: 80vw; }
|
||||
}
|
||||
.ux-result-right { padding-left: 30px; padding-top: 0; }
|
||||
|
||||
.ux-build-grid { grid-template-columns: repeat(3, 1fr); }
|
||||
.ux-ai-grid { grid-template-columns: repeat(3, 1fr); }
|
||||
|
||||
.ux-deliver-box { grid-template-columns: .9fr 1fr .8fr; }
|
||||
.ux-process-grid { grid-template-columns: 1fr 1fr; }
|
||||
|
||||
.ux-footer-grid { grid-template-columns: 1.1fr 1fr; }
|
||||
.ux-footer-left {
|
||||
padding: 38px 32px;
|
||||
border-right: 1px solid rgba(255,255,255,0.08);
|
||||
border-bottom: 0;
|
||||
|
||||
|
||||
/* =====================================================
|
||||
MOBILE — max-width: 768px
|
||||
===================================================== */
|
||||
@media (max-width: 768px) {
|
||||
|
||||
/* ---------- GLOBAL ---------- */
|
||||
body { overflow-x: hidden; }
|
||||
.container { padding-left: 16px; padding-right: 16px; }
|
||||
|
||||
/* ---------- HEADER / NAV ---------- */
|
||||
.ux-header { padding: 10px 0; }
|
||||
.ux-navbar { padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; }
|
||||
.ux-brand img { width: 90px; height: auto; }
|
||||
|
||||
/* slide-in mobile menu */
|
||||
.ux-nav {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
height: 100vh;
|
||||
width: 80%;
|
||||
max-width: 320px;
|
||||
background: #0c0f0e;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
gap: 0;
|
||||
padding: 90px 28px 28px;
|
||||
transform: translateX(100%);
|
||||
transition: transform 0.35s ease;
|
||||
z-index: 50;
|
||||
overflow-y: auto;
|
||||
box-shadow: -10px 0 30px rgba(0,0,0,0.35);
|
||||
}
|
||||
.ux-nav.is-open { transform: translateX(0); }
|
||||
.ux-nav li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
|
||||
.ux-nav li a {
|
||||
display: block;
|
||||
color: #fff;
|
||||
padding: 16px 4px;
|
||||
font-size: 16px;
|
||||
text-decoration: none;
|
||||
}
|
||||
.ux-nav-cta a { color: var(--primary) !important; font-weight: 600; }
|
||||
|
||||
.ux-hamburger {
|
||||
display: inline-flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
gap: 5px;
|
||||
width: 38px;
|
||||
height: 38px;
|
||||
padding: 8px;
|
||||
background: transparent;
|
||||
border: 1px solid rgba(255,255,255,0.18);
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
z-index: 60;
|
||||
position: relative;
|
||||
}
|
||||
.ux-hamburger span {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
background: #fff;
|
||||
transition: transform 0.3s ease, opacity 0.2s ease;
|
||||
}
|
||||
.ux-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
|
||||
.ux-hamburger.is-active span:nth-child(2) { opacity: 0; }
|
||||
.ux-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
|
||||
|
||||
.ux-overlay {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background: rgba(0,0,0,0.55);
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
transition: opacity 0.3s ease;
|
||||
z-index: 40;
|
||||
}
|
||||
.ux-overlay.active { opacity: 1; pointer-events: auto; }
|
||||
|
||||
/* ---------- HERO ---------- */
|
||||
.ux-hero-section { padding: 130px 0 40px; }
|
||||
.ux-hero-title { font-size: 30px; line-height: 1.25; }
|
||||
.ux-hero-title br { display: none; }
|
||||
.ux-hero-subtitle { width: 100%; font-size: 15px; margin: 14px auto 0; }
|
||||
.ux-hero-actions {flex-direction: column;gap: 10px;}
|
||||
.ux-hero-actions .btn {justify-content: center;width: fit-content;}
|
||||
|
||||
/* ---------- BOTTOM CARDS (stat row) ---------- */
|
||||
.ux-bottom-wrapper { margin-top: 32px; }
|
||||
.ux-bottom-wrapper .col-lg-3,
|
||||
.ux-bottom-wrapper .col-lg-2 { width: 100%; flex: 0 0 100%; margin-bottom: 14px; }
|
||||
.ux-img-card img { width: 100%; }
|
||||
.ux-stat-box { padding: 24px 22px; text-align: center; }
|
||||
.ux-light { padding: 28px 0; }
|
||||
.ux-counter { font-size: 30px; }
|
||||
.ux-dark h2 { font-size: 28px; }
|
||||
.ux-dark p, .ux-dark h5 { font-size: 16px; line-height: 1.4; }
|
||||
.ux-dark .ux-icon { display: flex; justify-content: center; margin-top: 12px; }
|
||||
|
||||
/* ---------- ABOUT ---------- */
|
||||
.ux-about-section { padding: 50px 0; }
|
||||
.ux-main-heading { font-size: 20px; line-height: 1.45; }
|
||||
.ux-sub-heading { font-size: 15px; }
|
||||
.ux-big-counter { font-size: 44px; }
|
||||
.ux-small-text { width: 100%; font-size: 14px; }
|
||||
.ux-about-img { height: 220px; margin: 18px 0; }
|
||||
.ux-card-title { font-size: 18px; }
|
||||
.ux-card-text { font-size: 14px; max-width: 100%; margin-bottom: 24px; }
|
||||
|
||||
.partners-wrapper {gap: 14px;grid-template-columns: repeat(2, 1fr);}
|
||||
.partner-item img { max-height: 28px; }
|
||||
|
||||
/* ---------- WORK ---------- */
|
||||
.ux-work-section { padding: 0 0 40px; }
|
||||
.ux-work-card img {/* height: 200px; */}
|
||||
.ux-work-card h4 { font-size: 17px; }
|
||||
.ux-work-card p { font-size: 13px; }
|
||||
.ux-swiper-nav { gap: 10px; }
|
||||
.ux-arrow img {/* width: 36px; */height: 31px;}
|
||||
.displayflexhead {width: 70%;margin-bottom: 16px;DISPLAY: BLOCK;}
|
||||
|
||||
/* ---------- WHY ---------- */
|
||||
.ux-why-section { padding: 50px 0; }
|
||||
.ux-why-img img { height: 220px; margin-bottom: 20px; }
|
||||
.ux-why-card { padding: 18px 20px; }
|
||||
.ux-number { font-size: 26px; margin-bottom: 8px; }
|
||||
.ux-why-card h6 { font-size: 15px; }
|
||||
.main-headingexit { font-size: 20px !important; }
|
||||
.existpadd { gap: 0 !important; }
|
||||
|
||||
/* ---------- BUILD ---------- */
|
||||
.ux-build-section { padding: 50px 0; }
|
||||
.ux-build-card { padding: 22px; }
|
||||
.ux-build-card h5 { font-size: 17px; line-height: 24px; min-height: auto; margin-top: 14px; }
|
||||
.ux-build-card p { font-size: 14px; min-height: auto; }
|
||||
.ux-build-swiper { padding-top: 24px; }
|
||||
|
||||
/* ---------- PROCESS ---------- */
|
||||
.ux-process-section { padding: 50px 0; }
|
||||
.ux-process-card { padding: 22px; width: 100%; }
|
||||
.ux-process-card h4 { font-size: 18px; margin: 0 0 14px; }
|
||||
.ux-process-card p { font-size: 14px; }
|
||||
.ux-step { font-size: 24px; }
|
||||
.ux-step-arrow { display: none !important; }
|
||||
|
||||
/* ---------- FOOTER HERO ---------- */
|
||||
.ux-footer-hero { padding: 50px 0; background-size: cover; }
|
||||
.ux-footer-title { font-size: 22px; line-height: 1.35; }
|
||||
|
||||
/* ---------- MAIN FOOTER ---------- */
|
||||
.ux-footer-grid { grid-template-columns: 1fr; border-left: none; border-right: none; }
|
||||
.ux-footer-left { padding: 28px 18px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
|
||||
.ux-footer-desc { font-size: 14px; line-height: 1.7; }
|
||||
|
||||
.ux-footer-right { grid-template-columns: 1fr; }
|
||||
.ux-footer-links { padding: 22px 18px; border-bottom: 1px solid rgba(255,255,255,0.06); }
|
||||
.ux-footer-links:last-child { border-bottom: none; }
|
||||
.ux-footer-links h6 { font-size: 14px; margin-bottom: 14px; }
|
||||
.ux-footer-links a { font-size: 14px; margin-bottom: 10px; }
|
||||
|
||||
.ux-footer-bottom {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
text-align: left;
|
||||
padding: 16px 18px;
|
||||
gap: 12px;
|
||||
}
|
||||
.ux-footer-bottom p { font-size: 12px; }
|
||||
.ux-footer-social { gap: 14px; }
|
||||
.ux-footer-social img { width: 18px; height: 18px; }
|
||||
|
||||
/* ---------- PROJECT HERO ---------- */
|
||||
.ux-project-hero { padding: 130px 0 60px; }
|
||||
.ux-project-hero.ux-project-heropad { padding: 130px 0 40px; }
|
||||
.ux-project-title { font-size: 30px; line-height: 1.25; }
|
||||
.ux-project-title br { display: none; }
|
||||
.ux-project-subtitle { font-size: 15px; }
|
||||
.ux-project-subtitle br { display: none; }
|
||||
.ux-breadcrumb-wrap { margin-bottom: 30px; flex-wrap: wrap; }
|
||||
|
||||
/* ---------- SERVICES SYSTEMS ---------- */
|
||||
.systems-section { padding: 50px 0; }
|
||||
.systems-wrapper { display: block; }
|
||||
.systems-left { position: static; margin-bottom: 24px; }
|
||||
.systems-left h2 { font-size: 22px; }
|
||||
.systems-left .desc { font-size: 14px; }
|
||||
.system-card { padding: 22px; margin-bottom: 18px; }
|
||||
.system-card h4 { font-size: 17px; }
|
||||
.system-card p, .system-card li { font-size: 14px; }
|
||||
|
||||
/* ---------- PROCESS STEP PAGE ---------- */
|
||||
.ux-process-step-section { padding: 40px 0; }
|
||||
.ux-process-step-box { padding: 24px 18px; }
|
||||
.ux-process-number { font-size: 36px; }
|
||||
.ux-process-title { font-size: 26px; }
|
||||
.ux-process-subtitle { font-size: 15px; }
|
||||
.ux-process-grid { display: block; }
|
||||
.ux-process-image img { width: 100%; height: auto; margin: 16px 0; border-radius: 12px; }
|
||||
.ux-process-item h4 { font-size: 17px; }
|
||||
.ux-process-item p { font-size: 14px; }
|
||||
|
||||
/* ---------- GROWTH SECTION (detail pages) ---------- */
|
||||
.ux-growth-section { padding: 24px 0; }
|
||||
.ux-growth-title { font-size: 22px; line-height: 1.35; }
|
||||
.ux-growth-subtitle { font-size: 15px; }
|
||||
.ux-growth-list { padding-left: 18px; }
|
||||
.ux-growth-list li { font-size: 14px; }
|
||||
|
||||
/* ---------- HVAC / LYNKEDUP CASE PAGES ---------- */
|
||||
.ux-deliver-right { padding-top: 18px; }
|
||||
.ux-result-heading { font-size: 22px; }
|
||||
.ux-result-btn { display: inline-block; margin-top: 14px; }
|
||||
|
||||
/* ---------- START PROJECT FORM ---------- */
|
||||
.ux-contact-left { padding: 24px 18px; }
|
||||
.ux-contact-link { font-size: 22px; }
|
||||
.ux-contact-email { font-size: 16px; }
|
||||
.ux-social-list a { font-size: 14px; }
|
||||
|
||||
/* ---------- CONTACT PANEL (slide-out) ---------- */
|
||||
.contact-panel { width: 86%; max-width: 320px; padding: 22px 18px; }
|
||||
.contact-panel h4 { font-size: 18px; }
|
||||
.contact-panel .images { gap: 8px; }
|
||||
.contact-panel .images img { width: 60px; height: 60px; }
|
||||
.contact-panel p { font-size: 13px; }
|
||||
|
||||
/* ---------- BUTTONS ---------- */
|
||||
.ux-btn-primary { padding: 6px 6px 6px 18px; font-size: 13px; gap: 8px; }
|
||||
.ux-btn-icon { padding: 6px 10px; }
|
||||
.ux-btn-secondary { padding: 10px 18px; font-size: 13px; }
|
||||
|
||||
/* ---------- TYPOGRAPHY UTILS ---------- */
|
||||
h2 { font-size: 22px; }
|
||||
.ux-section-label { font-size: 14px; width: 100%; }
|
||||
}
|
||||
.ux-footer-bottom {
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
text-align: left;
|
||||
padding: 18px 28px;
|
||||
}
|
||||
|
||||
.systems-wrapper { padding: 60px 0; }
|
||||
.ux-build-swiper .swiper-slide { width: 45%; }
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
>= 992px (lg / desktop) — restore original desktop nav
|
||||
========================================================================== */
|
||||
@media (min-width: 992px) {
|
||||
.ux-header { padding: 20px 0; }
|
||||
.ux-navbar { padding: 15px 25px; }
|
||||
|
||||
.ux-hamburger { display: none; }
|
||||
|
||||
.ux-nav {
|
||||
position: static;
|
||||
width: auto;
|
||||
height: auto;
|
||||
background: transparent;
|
||||
flex-direction: row;
|
||||
gap: 30px;
|
||||
padding: 0;
|
||||
transform: none;
|
||||
box-shadow: none;
|
||||
overflow: visible;
|
||||
}
|
||||
.ux-nav li a {
|
||||
padding: 0;
|
||||
border-bottom: 0;
|
||||
font-size: 16px;
|
||||
min-height: auto;
|
||||
}
|
||||
.ux-nav .ux-nav-cta a {
|
||||
margin-top: 0;
|
||||
background: transparent;
|
||||
color: var(--primary) !important;
|
||||
padding: 0;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
/* Contact panel returns to floating card */
|
||||
.contact-panel {
|
||||
top: 100px;
|
||||
right: -350px;
|
||||
width: 320px;
|
||||
height: auto;
|
||||
border-radius: 12px;
|
||||
padding: 20px;
|
||||
}
|
||||
.contact-panel.active { right: 40px; }
|
||||
|
||||
.ux-overlay { display: none; }
|
||||
|
||||
.ux-hero-section { padding: 200px 0 60px; }
|
||||
.ux-hero-subtitle { width: 60%; }
|
||||
|
||||
.partners-wrapper { grid-template-columns: repeat(6, 1fr); }
|
||||
.partner-item { height: 100px; }
|
||||
.partner-item img { max-width: 120px; }
|
||||
|
||||
.ux-build-grid { grid-template-columns: repeat(4, 1fr); }
|
||||
.ux-build-swiper .swiper-slide { width: 330px; }
|
||||
|
||||
.ux-joined-box {
|
||||
position: absolute;
|
||||
right: 8%;
|
||||
bottom: 50px;
|
||||
margin: 0;
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
.ux-avatar-group img { width: 64px; height: 64px; border-width: 3px; margin-left: -14px; }
|
||||
|
||||
.ux-step-arrow { display: block; }
|
||||
|
||||
.systems-wrapper {
|
||||
flex-direction: row;
|
||||
gap: 80px;
|
||||
padding: 80px 20px;
|
||||
}
|
||||
.systems-left { width: 45%; position: sticky; top: 90px; }
|
||||
.systems-right { width: 65%; }
|
||||
.systems-left .desc { width: 70%; }
|
||||
|
||||
.system-card ul { grid-template-columns: 1fr 1fr; }
|
||||
|
||||
.breacampoffline {
|
||||
flex-direction: row;
|
||||
align-items: self-start;
|
||||
gap: 20px;
|
||||
justify-content: center;
|
||||
}
|
||||
.breacampoffline p { width: 33%; }
|
||||
|
||||
.displayflexhead { flex-direction: row; width: 62%; gap: 0; }
|
||||
|
||||
.arrow { display: inline; }
|
||||
.flow-item { padding: 10px 40px 10px 10px; font-size: 14px; }
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
>= 1200px (xl)
|
||||
========================================================================== */
|
||||
@media (min-width: 1200px) {
|
||||
.ux-hero-section { padding: 200px 0 60px; }
|
||||
.ux-project-hero { padding: 190px 0 100px; }
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Reduced motion respect
|
||||
========================================================================== */
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.ux-nav,
|
||||
.contact-panel,
|
||||
.ux-overlay,
|
||||
.ux-hamburger span,
|
||||
.ux-menu .icon { transition: none !important; }
|
||||
}
|
||||
|
||||
+68
-13
@@ -23,7 +23,7 @@ h2 {
|
||||
|
||||
/* NAVBAR */
|
||||
.ux-header {
|
||||
padding: 20px 0;
|
||||
padding: 30px 0;
|
||||
position: absolute;
|
||||
z-index: 9;
|
||||
width: 100%;
|
||||
@@ -141,7 +141,9 @@ h2 {
|
||||
padding: 80px 0;
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
.ux-footer-hero .ux-section-label {
|
||||
color: white;
|
||||
}
|
||||
/* COMMON HEADINGS */
|
||||
.ux-section-label {
|
||||
font-size: 16px;
|
||||
@@ -197,7 +199,7 @@ h2 {
|
||||
|
||||
.ux-card-text {
|
||||
color: black;
|
||||
margin-bottom: 20px;
|
||||
margin-bottom: 40px;
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
@@ -332,7 +334,7 @@ h2 {
|
||||
.ux-number {
|
||||
font-size: 32px;
|
||||
font-weight: 700;
|
||||
color: #bbb;
|
||||
color: #bbbbbb3d;
|
||||
display: block;
|
||||
margin-bottom: 13px;
|
||||
}
|
||||
@@ -482,6 +484,10 @@ h2 {
|
||||
.ux-footer-hero-content{
|
||||
position:relative;
|
||||
z-index:2;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.ux-footer-hero-content .ux-hero-actions {
|
||||
margin-top: 20px;
|
||||
@@ -1682,18 +1688,24 @@ h2 {
|
||||
.ux-nav-cta { color: #baff00; }
|
||||
|
||||
/* TOGGLE ICON */
|
||||
|
||||
.ux-menu {
|
||||
width: 26px;
|
||||
height: 26px;
|
||||
width: unset;
|
||||
height: 30px;
|
||||
/* width: 30px; */
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
background: unset;
|
||||
box-shadow: unset;
|
||||
border: unset;
|
||||
}
|
||||
|
||||
.icon {
|
||||
.ux-header-actions .icon {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
width: 20px;
|
||||
height: 19px;
|
||||
transition: 0.3s;
|
||||
top: 11px;
|
||||
}
|
||||
|
||||
.close-icon {
|
||||
@@ -1811,10 +1823,7 @@ h2 {
|
||||
opacity: 1;
|
||||
transform: scale(1.05);
|
||||
}
|
||||
.ux-navbar img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.ux-navbar img {width: 100%;height: 100%;}
|
||||
.ux-footer-left img {
|
||||
width: auto;
|
||||
height: auto;
|
||||
@@ -1822,4 +1831,50 @@ h2 {
|
||||
.ux-footer-social img {
|
||||
width: 19px;
|
||||
height: 19px;
|
||||
}
|
||||
|
||||
.ux-header-actions button {
|
||||
border: none;
|
||||
background: unset;
|
||||
}
|
||||
.faq-wrapper {
|
||||
max-width: 800px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.faq-item {
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
padding: 20px 0;
|
||||
}
|
||||
|
||||
.faq-question {
|
||||
width: 100%;
|
||||
background: none;
|
||||
border: none;
|
||||
font-size: 20px;
|
||||
font-weight: 600;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.faq-icon {
|
||||
font-size: 24px;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.faq-item.active .faq-icon {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.faq-answer {
|
||||
overflow: hidden;
|
||||
transition: max-height 0.4s ease;
|
||||
}
|
||||
|
||||
.faq-answer p {
|
||||
margin-top: 10px;
|
||||
color: #666;
|
||||
line-height: 1.6;
|
||||
}
|
||||
Reference in New Issue
Block a user