/** * BizHub Theme CSS Variables * * @package BizHub * @since 1.0.0 */ * { margin: 0; padding: 0; box-sizing: border-box; font-family: "Inter", sans-serif; } :root { /* Color Variables */ --bizhub-dark-grey: #333333; --bizhub-medium-grey: #636363; --bizhub-light-grey: #eeeeee; --bizhub-light-v: #fde0f4; --bizhub-ash: #f4f4f4; --bizhub-white: white; --bizhub-black: #000; --bizhub-primary-color: #ffa200; --bizhub-primary-light: #ffcc72; --bizhub-font-color: #1A1A2E; --bizhub-border: 1px solid var(--bizhub-light-v); --bizhub-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px; /* Typography Variables */ --bizhub-mobile-font-size: 18px; --bizhub-desktop-font-size: 25px; --bizhub-mobile-title-font-size: 2.5rem; --bizhub-desktop-title-font-size: 3rem; --bizhub-desktop-heading-font-size: 4rem; } /** * Base Styles */ html { scroll-behavior: smooth; } body { color: var(--bizhub-font-color); background: #f9f9f9; margin: 0 auto; max-width: 1440px; width: 100%; } body.admin-bar .bizhub-ctb-section { margin-top: 32px; /* For desktop admin bar */ } @media screen and (max-width: 782px) { body.admin-bar .bizhub-nav { margin-top: 46px; /* For mobile admin bar height */ } } /** * Typography */ .bizhub-h1, .bizhub-h2 { font-family: 'Archivo Black', sans-serif; } /** * Lists & Links */ ul { list-style: none; } .bizhub a { text-decoration: none; color: inherit; } .bizhub a:hover { color:var(--bizhub-primary-color); } .bizhub li { list-style: none; } /** * Buttons */ button { border: none; background-color: transparent; cursor: pointer; color: inherit; } .btn { display: block; background-color: var(--bizhub-primary-color); color: var(--bizhub-font-color); text-align: center; padding: 0.6rem 1.4rem; font-size: 1rem; font-weight: 500; border-radius: 5px; } /** * Navigation */ .bizhub-nav-container { max-width: 1400px; margin: 0 auto; } .bizhub-nav { background-color: white; box-shadow: var(--bizhub-shadow); position: relative; z-index: 100; } .bizhub-navbar { position: fixed; top: 0; left: 0; width: 100%; background: transparent; z-index: 1000; transition: background 0.3s ease-in-out, padding 0.3s ease-in-out; padding: 0 1rem; display: flex; justify-content: space-between; align-items: center; column-gap: 1rem; gap:60px; height: 80px; } .bizhub-nav-container .bizhub-scrolled { background: var(--bizhub-white); } .bizhub-nav-container .bizhub-scrolled .bizhub-get-started { background-color: #000; color: #fff; } .bizhub-logo { margin: 0; padding: 0; } .bizhub-logo img { width: 60px; height: 60px; } .bizhub-logo, .bizhub-cta-button { flex: 0 0 auto; } .bizhub-menu-items { display: flex; align-items: center; } .bizhub-nav-links { display: flex; align-items: center; padding: 0 0.5rem; flex-wrap: wrap; } .bizhub-menu-items li { list-style: none; position: relative; } .bizhub-menu-items a { text-decoration: none; color: var(--bizhub-white); font-weight: 600; padding: 10px 15px; display: flex; align-items: center; gap: 5px; transition: all 0.3s ease; } .bizhub-menu-items a:hover { color: var(--bizhub-primary-color); } .bizhub-menu-items a .dropdown-icon { font-size: 12px; transition: transform 0.3s ease; margin-left: 5px; } .bizhub-menu-items li:hover > a .dropdown-icon { transform: rotate(180deg); } .bizhub-menu-items .bizhub-cta-button { margin: 0; display: inline-block; transition: all 0.3s ease; border: none; cursor: pointer; padding: 0.8rem 1.5rem; background-color: var(--bizhub-primary-color); border-radius: 25px; font-size: 1rem; font-weight: 600; color: var(--bizhub-white); text-decoration: none; /* ← Add this */ } .bizhub-cta-button:hover { background-color: var(--bizhub-black); transform: translateY(-2px); } .bizhub .sub-menu { position: absolute; top: 100%; left: 0; background-color: white; min-width: 200px; box-shadow: var(--bizhub-shadow); border-radius: 5px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; z-index: 100; } .bizhub .sub-menu li { padding: 0; } .bizhub .sub-menu a { padding: 10px 20px; width: 100%; color: var(--bizhub-primary-light); } .bizhub-menu-items li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); } .bizhub .sub-menu .bizhub .sub-menu { left: 100%; top: 0; } .bizhub-hamburger { display: none; cursor: pointer; font-size: 24px; color: var(--text-color); } @media (max-width: 767px) { .bizhub-hamburger { display: block; } .bizhub-menu-icon { font-size: 40px; color: var(--bizhub-primary-color); } .bizhub-menu-items { position: absolute; top: 80px; left: 0; width: 100%; background-color: var(--bizhub-black); flex-direction: column; align-items: flex-start; padding: 20px; gap: 0; box-shadow: var(--bizhub-shadow); opacity: 0; visibility: hidden; transform: translateY(-20px); transition: all 0.3s ease; z-index: 100; max-height: calc(100vh - 70px); overflow-y: auto; } .bizhub-menu-items.active { opacity: 1; visibility: visible; transform: translateY(0); } .bizhub-menu-items li { width: 100%; } .bizhub-menu-items a { padding: 15px 0; border-bottom: 1px solid #eee; width: 100%; } .bizhub .sub-menu { position: static; box-shadow: none; display: none; opacity: 1; visibility: visible; transform: none; padding-left: 20px; } .bizhub-menu-items li.open > .sub-menu { display: block; } .bizhub-menu-items li.open > a .dropdown-icon { transform: rotate(180deg); } .bizhub .sub-menu .sub-menu { padding-left: 20px; } .bizhub-cta-button { margin-top: 15px; width: 100%; text-align: center; } } /** * Hero Section */ .bizhub-hero-section { position: relative; top: 0; left: 0; width: 100%; height: 100vh; background-position: center; display: flex; justify-content: center; align-items: center; text-align: center; color: white; border-bottom-right-radius: 100px; border-bottom-left-radius: 100px; } .bizhub-hero-section::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.35); border-bottom-right-radius: 100px; border-bottom-left-radius: 100px; z-index: 1; } .bizhub-hero-container { margin-top: 10px; } .bizhub-hero-content { margin: 0 2rem; margin-top: 6rem; position: relative; z-index: 2; } .bizhub-hero-content h1 { margin-top: 5rem; font-size: var(--bizhub-mobile-title-font-size); margin-bottom: 2rem; } .bizhub-hero-content p { font-size: var(--bizhub-mobile-font-size); margin-bottom: 2rem; width: 100%; } /** * Hero Buttons */ .bizhub-hero-buttons { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 15px; margin-bottom: 3rem; } .bizhub-hero-btn { display: inline-block; padding: 15px 40px; font-size: 16px; text-decoration: none; color: white; border-radius: 35px; border: none; cursor: pointer; text-align: center; transition: background 0.3s ease-in-out; } .bizhub-hero-btn-primary { background-color: var(--bizhub-primary-color); color: white; } .bizhub-hero-btn-primary:hover { background-color: transparent; border: 1px solid var(--bizhub-primary-color); color:var(--bizhub-primary-color); } .bizhub-hero-btn-secondary button{ background-color: transparent; color: white; } .bizhub-hero-btn-secondary{ border: 1px solid #fff; } .bizhub-hero-btn-secondary:hover { background-color: var(--bizhub-white); color: #000; } /** * Page Title Section */ .bizhub-page-title-section { position: relative; top: 0; min-height: 60vh; display: flex; justify-content: center; align-items: center; text-align: center; color: white; border-bottom-right-radius: 100px; border-bottom-left-radius: 100px; } .bizhub-page-title-section::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.25); border-bottom-right-radius: 100px; border-bottom-left-radius: 100px; z-index: 1; } .bizhub-post-title-section { position: relative; top: 0; min-height: 30vh; display: flex; justify-content: center; align-items: center; text-align: center; } .bizhub-post-title-section::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.25); z-index: 1; } .bizhub-page-title { position: relative; display: flex; justify-content: center; align-items: center; text-align: center; z-index: 2; margin-top: -180px; font-size: var(--bizhub-mobile-title-font-size); margin-bottom: 150px; color: var(--bizhub-primary-light); } /** * NBS Section */ .bizhub-nbs-section { z-index: 3; margin-right: 2rem; margin-left: 2rem; position: relative; } .bizhub-nbs-container { display: flex; padding: 1.5rem 0; justify-content: center; align-items: center; background-color: var(--bizhub-white); height: auto; border-radius: 25px; box-shadow: 0 1px 25px rgba(0, 0, 0, 0.1); margin-top: -30px; } .bizhub-grid { display: grid; grid-template-columns: 1fr; gap: 40px; width: 95%; } .bizhub-nbs-content { color: var(--bizhub-font-color); padding: 20px 0; text-align: center; font-size: 1.2rem; border-radius: 5px; } .bizhub-nbs-content p, .bizhub-nbs-content h3 { padding-top: 15px; } .bizhub-nbs-content h3 { font-size: 25px; } .bizhub-nbs-container img { width: 40px; height: 40px; } /** * ABS Section */ .bizhub-abs-section { margin: 6rem 2rem; } .bizhub-abs-container { height: auto; box-shadow: #3498db; } .bizhub-abs { display: flex; justify-content: space-between; align-items: center; gap: 50px; flex-wrap: wrap; } .bizhub-abs-content { width: 100%; } .bizhub-abs-image { width: 100%; } .bizhub-abs img { width: 100%; height: 300px; border-radius: 35px; } .bizhub-abs h2 { font-size: var(--bizhub-mobile-title-font-size); } .bizhub-title::after { content: ""; display: block; width: 30%; margin-top: 1.5rem; height: 4px; background-color: var(--bizhub-primary-color); border-radius: 2px; } .bizhub-abs-subtext, .bizhub-abs-text { font-size: 1.2rem; margin-top: 1.5rem; } .bizhub-abs-text { margin-bottom: 2rem; } /** * WWD Section */ .bizhub-wwd-section { margin: 0 2rem 6rem 2rem; text-align: center; } .bizhub-tsm-header { margin: 0 2rem; text-align: center; } .bizhub-wwd-title { font-size: var(--bizhub-mobile-title-font-size); margin: 2rem 0; display: inline-block; } .bizhub-wwd-p { width: 100%; margin: 2rem auto; font-size: 1.2rem; } .bizhub-wwd-container { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 20px; } .bizhub-wwd { padding: 1rem 0; max-width: 350px; text-align: center; } .bizhub-wwd img { width: 100%; border-radius: 35px; } .bizhub-subtopic { font-size: 1.5rem; font-weight: bold; margin-top: 20px; display: inline-block; } .bizhub-paragraph { font-size: var(--bizhub-mobile-font-size); color: #555; margin: 1rem 0; } .bizhub-read-more { text-decoration: none; color: var(--bizhub-primary-color); font-weight: bold; } .bizhub-read-more:hover { color: #3498db; text-decoration: underline; } .bizhub-ptf-name { margin: 1rem auto; } /** * MD Section */ .bizhub-md-section { display: grid; grid-template-columns: 1fr; align-items: center; justify-content: space-between; margin: 0 auto; } .bizhub-md-section img { width: 100%; height: 400px; object-fit: cover; border-top-right-radius: 35px; } .bizhub-md-text { margin: 2rem; border-radius: 8px; text-align: left; } .bizhub-md { margin: 0 auto; } .bizhub-md h2 { font-size: var(--bizhub-mobile-title-font-size); } .bizhub-reverse { background-color: var(--bizhub-light-grey); } /** * SVC Section */ .bizhub-svc-section { margin: 6rem 2rem; text-align: center; } .bizhub-svc-title, .bizhub-ot-title, .bizhub-ptf-title, .bizhub-tsm-title { margin: 2rem 0; font-size: var(--bizhub-mobile-title-font-size); display: inline-block; } .bizhub-subtopic::after, .bizhub-wwd-title::after, .bizhub-svc-title::after, .bizhub-ot-title::after, .bizhub-ptf-title::after, .bizhub-tsm-title::after { content: ""; display: block; width: 60%; margin: 1.5rem auto; height: 4px; background-color: var(--bizhub-primary-color); border-radius: 2px; } .bizhub-wwd a { margin-top: 1rem; font-size: 20px; } .bizhub-svc-p { width: 100%; margin: 2rem auto; font-size: var(--bizhub-mobile-font-size); } .bizhub-svc-container { margin-top: 5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; } .bizhub-svc { max-width: 360px; padding: 10px; text-align: left; } .bizhub-svc img { width: 30px; height: 30px; } .bizhub-svc-subtopic { font-size: 1.5rem; } .bizhub-svc-text { font-size: var(--bizhub-mobile-font-size); } .bizhub-svc-subtopic, .bizhub-svc-text { margin-top: 1.5rem; } /** * Our Team */ .bizhub-wwd-social { display: flex; justify-content: center; align-items: center; gap: 10px; } .bizhub-wwd-social img { width: 30px; height: 30px; } /** * CTA Section */ .bizhub-cta-section { background-color: var(--bizhub-font-color); } .bizhub-cta-container { padding: 2rem; } .bizhub-cta { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 30px; text-align: center; } .bizhub-cta button { padding: 1rem 2rem; background-color: var(--bizhub-primary-color); border-radius: 35px; width: 200px; } .bizhub-cta h3, .bizhub-cta-text, .bizhub-cta button { color: var(--bizhub-light-grey); font-size: 1.2rem; margin-top: 1rem; } .bizhub-cta h3 { font-size: 2.5rem; } .bizhub-cta-text { width: 100%; } /** * TSM Section */ .bizhub-tsm-section { background-color: var(--bizhub-light-grey); text-align: center; } .bizhub-tsm-container { margin: 6rem 2rem; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 60px; } .bizhub-tsm { text-align: center; max-width: 350px; border-radius: 35px; background-color: var(--bizhub-white); padding: 1rem; margin-bottom: 3rem; } .bizhub-tsm img { width: 70px; height: 70px; margin-top: -40px; border-radius: 50%; background-color: #3498db; } .bizhub-tsm-subtopic, .bizhub-tsm-text { font-size: 1.2rem; margin-top: 1rem; padding: 0 1rem; } .bizhub-tsm-subtopic { font-size: 1.5rem; font-weight: 500; } /** * CT Section */ .bizhub-ct-section { position: relative; height: 100%; background-image: url('../images/1.jpg'); background-size: cover; background-position: center; background-attachment: fixed; display: flex; justify-content: center; align-items: center; } .bizhub-ct-container { background-color: var(--bizhub-white); border-radius: 35px; text-align: left; margin: 2rem; padding: 2rem; } .bizhub-ct { display: flex; justify-content: center; align-items: center; gap: 30px; flex-wrap: wrap; } .bizhub-ct-title { font-size: 2rem; display: inline-block; } .bizhub-ct-title::after { content: ""; display: block; width: 60%; margin: 1rem; height: 4px; background-color: var(--bizhub-primary-color); border-radius: 2px; } .bizhub-ct-info { display: flex; flex-direction: column; align-items: start; justify-content: center; gap: 30px; text-align: left; font-size: 20px; } .bizhub-ct-map { width: 100%; height: auto; } .bizhub-ct-map iframe { width: 100%; height: 300px; border-radius: 35px; border: 1px solid var(--bizhub-light-grey); } .bizhub-contact-item { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #333; font-weight: bold; } /** * Footer */ .bizhub-footer { text-align: center; padding: 1.5rem; background-color: var(--bizhub-white); color: var(--bizhub-font-color); font-size: 1.1rem; } .bizhub-footer .bizhub-website-name, .bizhub-footer .bizhub-developer-name { font-weight: bold; color: var(--bizhub-primary-color); } .bizhub-main { flex: 1; } .bizhub-ctb-section { display: none; } /** * Tablet Breakpoint (768px - 1023px) * * Styles specific to tablet devices * @media (min-width: 768px) and (max-width: 1023px) */ @media (min-width: 768px) and (max-width: 1023px) { /** * CTA Top Bar Section - Tablet */ .bizhub-ctb-section { display: flex; position: absolute; top: 0; left: 0; width: 100%; z-index: 2; padding: 1rem 0; display: block; background-color: rgba(0, 0, 0, 0.38); justify-content: space-between; align-items: center; } .bizhub-ctb-container { margin: 0 2rem; display: flex; justify-content: space-between; align-items: center; gap: 50px; } .bizhub-ctb-info { display: flex; justify-content: center; align-items: center; gap: 25px; color: var(--bizhub-white); } .bizhub-ctb-social { display: flex; justify-content: center; align-items: center; gap: 10px; color: var(--bizhub-white); } .bizhub-ctb-item { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--bizhub-white); font-weight: bold; } /** * Navigation - Tablet */ .bizhub-navbar { padding: 0 2rem; top: 3rem; } .admin-bar .bizhub-nav-container .bizhub-scrolled { top: 32px; } .bizhub-nav-container .bizhub-scrolled { background-color: var(--bizhub-white); top: 0; } .bizhub-hamburger { display: block; } .bizhub-menu-icon { font-size: 40px; color: var(--bizhub-primary-color); } .bizhub-menu-items { position: absolute; top: 80px; left: 0; width: 100%; background-color: var(--bizhub-black); flex-direction: column; align-items: flex-start; padding: 20px; gap: 0; box-shadow: var(--bizhub-shadow); opacity: 0; visibility: hidden; transform: translateY(-20px); transition: all 0.3s ease; max-height: calc(100vh - 80px); overflow-y: auto; } .bizhub-menu-items.active { opacity: 1; visibility: visible; transform: translateY(0); } .bizhub-menu-items li { width: 100%; } .bizhub-menu-items a { padding: 20px 0; width: 100%; font-size: 1.8rem; } .bizhub .sub-menu { position: static; box-shadow: none; display: none; opacity: 1; visibility: visible; transform: none; padding-left: 20px; } .bizhub-menu-items li.open > .sub-menu { display: block; } .bizhub-menu-items li.open > a .dropdown-icon { transform: rotate(180deg); } .bizhub .sub-menu .sub-menu { padding-left: 20px; } .bizhub-cta-button { margin-top: 15px; width: 100%; text-align: center; } /** * Hero Section - Tablet */ .bizhub-hero-container { margin-top: 0; } .bizhub-hero-content { margin: 0 2rem; margin-top: 0; position: relative; z-index: 2; max-width: 600px; } .bizhub-hero-buttons { margin-bottom: 0; } .bizhub-hero-content h1 { font-size: var(--bizhub-desktop-title-font-size); margin-bottom: 10px; } .bizhub-hero-content p { font-size: var(--bizhub-desktop-font-size); } /** * NBS Section - Tablet */ .bizhub-grid { grid-template-columns: repeat(2, 1fr); } /** * WWD Section - Tablet */ .bizhub-wwd-container { justify-content: space-between; } .bizhub-wwd { max-width: 220px; } /** * MD Section - Tablet */ .bizhub-md-section { grid-template-columns: repeat(2, 1fr); } .bizhub-md-section img { height: 650px; } .bizhub-md-section img { grid-area: image; } .bizhub-md-text { grid-area: md-text; } .bizhub-md-section:nth-child(odd) { grid-template-areas: "image md-text"; } .bizhub-md-section:nth-child(even) { grid-template-areas: "md-text image"; } /** * SVC Section - Tablet */ .bizhub-svc { max-width: 330px; } /** * TSM Section - Tablet */ .bizhub-tsm-container { /* justify-content: space-between; */ display: flex; align-items: center; justify-content: center; } .bizhub-tsm { max-width: 320px; } /** * Contact Section - Tablet */ .bizhub-ct-map iframe { width: 400px; height: 400px; } } /** * Desktop Breakpoint (1024px and up) * * Styles specific to desktop devices * @media (min-width: 1024px) */ @media (min-width: 1024px) { .bizhub-hero-container { margin-top: 0; } /** * CTA Top Bar Section - Desktop */ .bizhub-ctb-section { display: block; position: absolute; top: 0; left: 0; width: 100%; z-index: 2; padding: 1rem 0; background-color: rgba(0, 0, 0, 0.38); } .bizhub-ctb-container { margin: 0 6rem; display: flex; justify-content: space-between; align-items: center; gap: 50px; } .bizhub-ctb-info { display: flex; justify-content: center; align-items: center; gap: 25px; color: var(--bizhub-white); } .bizhub-ctb-social { display: flex; justify-content: center; align-items: center; gap: 15px; color: var(--bizhub-white); } .bizhub-ctb-item { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--bizhub-white); font-weight: bold; } /** * Navigation - Desktop */ .admin-bar .bizhub-nav { padding: 0 6rem; top: 5rem; } .bizhub-nav { padding: 0 6rem; top: 3rem; } .admin-bar .bizhub-nav-container .bizhub-scrolled { top: 32px; } .bizhub-navbar { padding: 0 6rem; top: 3rem; } .admin-bar .bizhub-navbar { padding: 0 6rem; top: 5rem; } .bizhub-navbar { padding: 0 6rem; top: 3rem; } .admin-bar .bizhub-nav-container .bizhub-scrolled { top: 32px; } .bizhub-nav-container .bizhub-scrolled { background-color: var(--bizhub-white); top: 0; } .bizhub-nav-container .bizhub-scrolled a { color: var(--bizhub-primary-light); } .bizhub-nav-container .bizhub-scrolled .bizhub-menu-items .bizhub-cta-button:focus { background-color: #294a70; color: #fff; } .bizhub-nav-container .bizhub-scrolled a:hover { color: var(--bizhub-black); } .bizhub-nav-container .bizhub-scrolled .bizhub-cta-button:hover { color: var(--bizhub-primary-color); } .bizhub-nav-container .bizhub-scrolled .bizhub-cta-button { background-color: var(--bizhub-black); } /** * Hero Section - Desktop */ .bizhub-hero-content { margin: 0 auto; margin-top: 0; position: relative; z-index: 2; max-width: 800px; } .bizhub-hero-buttons { margin-bottom: 0; } .bizhub-hero-content h1 { font-size: var(--bizhub-desktop-heading-font-size); margin-bottom: 2rem; } .bizhub-hero-content p { font-size: var(--bizhub-desktop-font-size); margin-bottom: 2rem; } .bizhub-page-title { font-size: var(--bizhub-desktop-title-font-size); } /** * NBS Section - Desktop */ .bizhub-nbs-section { margin-right: 6rem; margin-left: 6rem; } .bizhub-grid { display: grid; grid-template-columns: repeat(4, 1fr); } /** * ABS Section - Desktop */ .bizhub-abs-section { margin: 6rem; } .bizhub-abs-content { width: 450px; } .bizhub-abs-image { width: 600px; } .bizhub-abs img { height: 500px; } .bizhub-abs h2 { font-size: var(--bizhub-desktop-title-font-size); } .bizhub-abs-subtext, .bizhub-abs-text, .bizhub-abs p { font-size: 1.3rem; padding-top: 1.5rem; } /** * WWD Section - Desktop */ .bizhub-wwd-title, .bizhub-title, .bizhub-svc-title, .bizhub-ot-title, .bizhub-tsm-title, .bizhub-ptf-title { font-size: var(--bizhub-desktop-title-font-size); } .bizhub-wwd-p, .bizhub-svc-p, .bizhub-ot-p, .bizhub-ptf-p, .bizhub-tsm-p { width: 70%; font-size: var(--bizhub-desktop-font-size); margin-bottom: 3rem; } .bizhub-wwd-section { margin: 0 6rem 6rem; } .bizhub-wwd-container { justify-content: space-between; } .bizhub-wwd { max-width: 320px; } /** * MD Section - Desktop */ .bizhub-md-section { grid-template-columns: repeat(2, 1fr); } .bizhub-md-section img { grid-area: image; } .bizhub-md-text { grid-area: md-text; } .bizhub-md-section:nth-child(odd) { grid-template-areas: "image md-text"; } .bizhub-md-section:nth-child(even) { grid-template-areas: "md-text image"; } .bizhub-md-section img { height: 550px; } .bizhub-svc-section { margin: 6rem 6rem; } /** * CTA Section - Desktop */ .bizhub-cta-container { padding: 6rem; } .bizhub-cta { justify-content: space-between; flex-wrap: nowrap; text-align: left; } .bizhub-cta-text { width: 80%; } /** * TSM Section - Desktop */ .bizhub-tsm-section { margin: 6rem 0; } .bizhub-tsm-container { flex-wrap: nowrap; } /** * Contact Section - Desktop */ .bizhub-ct-container { background-color: var(--bizhub-white); border-radius: 35px; text-align: left; padding: 2rem; margin: 6rem; } .bizhub-ct-title { font-size: 3rem; } .bizhub-ct-p { font-size: 1.5rem; } .bizhub-ct-info { width: 45%; } .bizhub-ct { justify-content: space-between; flex-wrap: nowrap; } .bizhub-ct-info { align-items: start; } .bizhub-ct-map { width: 45%; } .bizhub-ct-map iframe { width: 400px; height: 400px; } }