Zum Hauptinhalt springen Zur Suche springen Zum Menü springen

Aerotech



Artikel 1 - 10 von 87

/* ========================================================== GOLF PRIDE VERKAUFSSEITE CONTAINER 00 – HERO + TRUST ========================================================== */ /* ---------------------------------------------------------- BASIS ---------------------------------------------------------- */ .gps-hero, .gps-trust { --gps-red: #d71920; --gps-red-dark: #b51319; --gps-black: #151515; --gps-dark: #1b1b1b; --gps-grey: #666666; --gps-light: #f5f5f3; --gps-border: #dedede; --gps-green: #064b2e; } .gps-hero *, .gps-trust *, .gps-hero *::before, .gps-hero *::after, .gps-trust *::before, .gps-trust *::after { box-sizing: border-box; } /* ---------------------------------------------------------- HERO ---------------------------------------------------------- */ .gps-hero { height: 100%; min-height: 520px; display: flex; align-items: center; padding: 60px 0; color: #fff; background: linear-gradient( 135deg, #101010 0%, #191919 65%, #202020 100% ); } /* CONTENT */ .gps-hero__content { width: 100%; max-width: 720px; padding: 10px 15px 10px 0; } /* KICKER */ .gps-kicker { display: block; margin-bottom: 16px; color: var(--gps-red); font-size: 11px; font-weight: 850; letter-spacing: 2px; text-transform: uppercase; } /* H1 */ .gps-hero h1 { margin: 0 0 22px; color: #fff; font-size: clamp(38px, 4.5vw, 62px); font-weight: 850; line-height: 1.05; letter-spacing: -1.5px; } /* LEAD */ .gps-hero__lead { max-width: 680px; margin: 0 0 32px; color: rgba(255,255,255,.78); font-size: clamp(17px, 1.8vw, 21px); line-height: 1.65; } /* ---------------------------------------------------------- HERO USP ---------------------------------------------------------- */ .gps-hero__usp { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; } .gps-hero__usp > div { display: flex; gap: 10px; align-items: flex-start; padding: 14px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; background: rgba(255,255,255,.04); } .gps-hero__usp-icon { display: flex; width: 25px; height: 25px; flex: 0 0 25px; align-items: center; justify-content: center; border-radius: 50%; color: #fff; background: var(--gps-red); font-size: 13px; font-weight: 900; } .gps-hero__usp strong { display: block; margin-bottom: 3px; color: #fff; font-size: 13px; line-height: 1.3; } .gps-hero__usp small { display: block; color: rgba(255,255,255,.55); font-size: 10px; line-height: 1.35; } /* ---------------------------------------------------------- HERO BUTTONS ---------------------------------------------------------- */ .gps-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 27px; } .gps-btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 13px 24px; border-radius: 7px; font-size: 14px; font-weight: 800; text-decoration: none !important; transition: .2s ease; } .gps-btn--primary { color: #fff !important; border: 1px solid var(--gps-red); background: var(--gps-red); } .gps-btn--primary:hover { color: #fff !important; transform: translateY(-2px); background: var(--gps-red-dark); } .gps-btn--secondary { color: #fff !important; border: 1px solid rgba(255,255,255,.4); background: transparent; } .gps-btn--secondary:hover { color: #fff !important; transform: translateY(-2px); border-color: #fff; background: rgba(255,255,255,.06); } /* ---------------------------------------------------------- MICRO MODEL NAV ---------------------------------------------------------- */ .gps-hero__micro { display: flex; flex-wrap: wrap; gap: 7px; } .gps-hero__micro span { padding: 6px 9px; border-radius: 999px; color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); font-size: 10px; font-weight: 700; } /* ---------------------------------------------------------- TRUST BAR ---------------------------------------------------------- */ .gps-trust { padding: 0; border-bottom: 1px solid var(--gps-border); background: #fff; } .gps-trust__grid { display: grid; grid-template-columns: repeat(4,1fr); } .gps-trust__item { display: flex; min-height: 95px; gap: 14px; align-items: center; padding: 22px 25px; border-right: 1px solid var(--gps-border); } .gps-trust__item:last-child { border-right: 0; } /* NUMBER ICON */ .gps-trust__icon { display: flex; width: 42px; height: 42px; flex: 0 0 42px; align-items: center; justify-content: center; border-radius: 50%; color: var(--gps-green); background: #eff5f2; font-size: 11px; font-weight: 900; } /* TEXT */ .gps-trust__item strong { display: block; margin-bottom: 4px; color: var(--gps-black); font-size: 13px; line-height: 1.3; } .gps-trust__item small { display: block; color: #777; font-size: 11px; line-height: 1.35; } /* ---------------------------------------------------------- TABLET ---------------------------------------------------------- */ @media (max-width: 950px) { .gps-hero { min-height: auto; padding: 45px 0; } .gps-hero__usp { grid-template-columns: 1fr; } .gps-trust__grid { grid-template-columns: repeat(2,1fr); } .gps-trust__item:nth-child(2) { border-right: 0; } .gps-trust__item:nth-child(-n+2) { border-bottom: 1px solid var(--gps-border); } } /* ---------------------------------------------------------- MOBILE ---------------------------------------------------------- */ @media (max-width: 650px) { .gps-hero { padding: 40px 0; text-align: left; } .gps-hero__content { padding-right: 0; } .gps-hero h1 { font-size: 38px; letter-spacing: -1px; } .gps-hero__lead { font-size: 17px; } .gps-hero__actions { flex-direction: column; } .gps-btn { width: 100%; } .gps-hero__usp { gap: 7px; } .gps-trust__grid { grid-template-columns: 1fr; } .gps-trust__item { min-height: 80px; padding: 17px 12px; border-right: 0; border-bottom: 1px solid var(--gps-border); } .gps-trust__item:last-child { border-bottom: 0; } }