*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--navy:       #0a1f3d;
--blue:       #1d4ed8;
--blue-mid:   #2563eb;
--blue-light: #3b82f6;
--blue-tint:  #eff6ff;
--white:      #ffffff;
--off-white:  #f8fafc;
--grey-light: #e2e8f0;
--grey:       #64748b;
--text:       #0f172a;
}
html { scroll-behavior: smooth; }
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
color: var(--text);
background: var(--white);
line-height: 1.6;
} .site-header {
position: fixed;
top: 0;
width: 100%;
z-index: 100;
background: rgba(10, 31, 61, 0.97);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
align-items: center;
justify-content: space-between;
height: 70px;
}
.site-branding a {
color: white;
font-size: 1.4rem;
font-weight: 700;
letter-spacing: 0.1em;
text-decoration: none;
}
.site-branding .accent { color: var(--blue-light); } .main-navigation ul {
display: flex;
gap: 2rem;
list-style: none;
margin: 0; padding: 0;
}
.main-navigation ul a {
color: rgba(255,255,255,0.8);
text-decoration: none;
font-size: 0.82rem;
font-weight: 500;
letter-spacing: 0.06em;
text-transform: uppercase;
transition: color 0.2s;
}
.main-navigation ul a:hover,
.main-navigation ul .current-menu-item > a { color: var(--blue-light); }
.nav-right {
display: flex;
align-items: center;
gap: 1.25rem;
}
.nav-lang { display: flex; align-items: center; gap: 0.3rem; }
.nav-lang a {
color: rgba(255,255,255,0.5);
text-decoration: none;
font-size: 0.78rem;
font-weight: 500;
letter-spacing: 0.06em;
transition: color 0.2s;
}
.nav-lang a.active, .nav-lang a:hover { color: white; }
.nav-lang span { color: rgba(255,255,255,0.2); }
.nav-cta {
background: var(--blue-mid);
color: white !important;
text-decoration: none;
padding: 0.5rem 1.25rem;
border-radius: 5px;
font-size: 0.82rem;
font-weight: 600;
transition: background 0.2s;
}
.nav-cta:hover { background: var(--blue) !important; } .hero-section {
min-height: 100vh;
background: linear-gradient(140deg, #071526 0%, #0c2043 55%, #132f60 100%);
display: flex;
align-items: center;
position: relative;
overflow: hidden;
}
.hero-section::before {
content: '';
position: absolute; inset: 0;
background:
radial-gradient(ellipse at 75% 45%, rgba(37,99,235,0.18) 0%, transparent 55%),
radial-gradient(ellipse at 15% 75%, rgba(59,130,246,0.1) 0%, transparent 45%);
}
.hero-grid-bg {
position: absolute; inset: 0;
background-image:
linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
background-size: 64px 64px;
}
.hero-content {
position: relative; z-index: 1;
max-width: 1200px; margin: 0 auto;
padding: 9rem 2rem 5rem;
display: grid;
grid-template-columns: 1fr 420px;
gap: 4rem;
align-items: center;
}
.hero-tag {
display: inline-flex; align-items: center; gap: 0.5rem;
background: rgba(59,130,246,0.12);
border: 1px solid rgba(59,130,246,0.3);
color: #93c5fd;
padding: 0.4rem 1rem; border-radius: 2rem;
font-size: 0.78rem; font-weight: 500;
letter-spacing: 0.12em; text-transform: uppercase;
margin-bottom: 1.75rem;
}
.hero-title {
font-size: clamp(2.4rem, 5vw, 4rem);
font-weight: 700; color: white;
line-height: 1.1; margin-bottom: 1.25rem;
letter-spacing: -0.025em;
}
.hero-title .accent { color: #60a5fa; }
.hero-sub {
font-size: 1.05rem; color: rgba(255,255,255,0.6);
max-width: 520px; margin-bottom: 2.5rem;
font-weight: 300; line-height: 1.75;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
background: var(--blue-mid); color: white;
padding: 0.85rem 2rem; border-radius: 6px;
text-decoration: none; font-weight: 600; font-size: 0.92rem;
transition: background 0.2s, transform 0.15s; display: inline-block;
}
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); color: white; }
.btn-outline {
border: 1px solid rgba(255,255,255,0.25); color: white;
padding: 0.85rem 2rem; border-radius: 6px;
text-decoration: none; font-weight: 500; font-size: 0.92rem;
transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.05); color: white; }
.hero-stats {
display: flex; gap: 2.5rem;
margin-top: 3.5rem; padding-top: 2.5rem;
border-top: 1px solid rgba(255,255,255,0.1);
flex-wrap: wrap;
}
.hero-stat-value { font-size: 2.2rem; font-weight: 700; color: white; line-height: 1; }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 0.3rem; }
.hero-card {
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 16px; padding: 2rem;
backdrop-filter: blur(10px);
}
.hero-card-title {
font-size: 0.8rem; font-weight: 600;
color: rgba(255,255,255,0.5);
letter-spacing: 0.1em; text-transform: uppercase;
margin-bottom: 1.5rem;
}
.hero-card-item {
display: flex; align-items: flex-start; gap: 1rem;
padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hero-card-item:last-child { border-bottom: none; }
.hero-card-icon {
width: 42px; height: 42px; border-radius: 10px;
background: rgba(59,130,246,0.15);
display: flex; align-items: center; justify-content: center;
font-size: 1.15rem; flex-shrink: 0;
}
.hero-card-item-title { font-size: 0.9rem; font-weight: 600; color: white; margin-bottom: 0.2rem; }
.hero-card-item-text { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.5; } section { padding: 6rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
font-size: 0.78rem; font-weight: 600;
letter-spacing: 0.16em; text-transform: uppercase;
color: var(--blue-mid); margin-bottom: 0.6rem;
}
.section-title {
font-size: clamp(1.75rem, 3vw, 2.5rem);
font-weight: 700; color: var(--navy);
line-height: 1.2; letter-spacing: -0.025em; margin-bottom: 1rem;
}
.section-desc { font-size: 1rem; color: var(--grey); max-width: 580px; line-height: 1.75; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; } .section-cmr { background: var(--off-white); }
.cmr-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.cmr-card {
background: white; border-radius: 12px; padding: 2rem;
border: 1px solid var(--grey-light);
transition: box-shadow 0.25s, transform 0.25s;
position: relative; overflow: hidden;
}
.cmr-card::before {
content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
background: linear-gradient(90deg, var(--blue), var(--blue-light));
}
.cmr-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.08); transform: translateY(-3px); }
.cmr-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cmr-card-title { font-size: 1rem; font-weight: 700; color: var(--navy); }
.cmr-badge {
background: var(--blue-tint); color: var(--blue-mid);
font-size: 0.68rem; font-weight: 600;
padding: 0.2rem 0.6rem; border-radius: 3px;
letter-spacing: 0.05em; text-transform: uppercase;
}
.cmr-card p { color: var(--grey); font-size: 0.9rem; line-height: 1.75; } .section-about { background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3.5rem; }
.about-text p { color: var(--grey); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.highlight-item { background: var(--off-white); border-radius: 8px; padding: 1.25rem; border-left: 3px solid var(--blue-mid); }
.highlight-title { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
.highlight-item p { font-size: 0.8rem; color: var(--grey); margin: 0; }
.about-visual {
background: linear-gradient(140deg, var(--navy) 0%, #1a3462 100%);
border-radius: 16px; padding: 2.5rem; color: white;
position: sticky; top: 90px;
}
.about-visual-title { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.about-pillar { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.pillar-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(59,130,246,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.pillar-text strong { display: block; color: white; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.pillar-text span { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.5; } .section-services { background: var(--navy); }
.section-services .section-label { color: #60a5fa; }
.section-services .section-title { color: white; }
.section-services .section-desc { color: rgba(255,255,255,0.55); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.service-card {
background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
border-radius: 14px; padding: 2.5rem 2rem;
transition: background 0.2s, transform 0.2s;
}
.service-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-3px); }
.service-icon { width: 56px; height: 56px; background: rgba(59,130,246,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.5rem; }
.service-title { font-size: 1.15rem; font-weight: 700; color: white; letter-spacing: 0.06em; margin-bottom: 1rem; }
.service-card p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.75; }
.service-tag { display: inline-block; margin-top: 1.5rem; background: rgba(59,130,246,0.15); color: #93c5fd; font-size: 0.72rem; font-weight: 600; padding: 0.25rem 0.75rem; border-radius: 3px; letter-spacing: 0.06em; text-transform: uppercase; } .section-team { background: var(--off-white); }
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; margin-top: 3rem; }
.person-card { background: white; border-radius: 16px; overflow: hidden; border: 1px solid var(--grey-light); transition: box-shadow 0.2s, transform 0.2s; }
.person-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.08); transform: translateY(-2px); }
.person-header { background: linear-gradient(135deg, #0a1f3d 0%, #1a3462 100%); padding: 2rem; display: flex; align-items: center; gap: 1.5rem; }
.person-avatar { width: 70px; height: 70px; border-radius: 50%; background: rgba(59,130,246,0.25); border: 2px solid rgba(59,130,246,0.5); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 700; color: white; flex-shrink: 0; }
.person-name { font-size: 1.1rem; font-weight: 700; color: white; }
.person-role { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 0.25rem; }
.person-body { padding: 1.75rem 2rem; }
.person-bio { list-style: none; }
.person-bio li { padding: 0.5rem 0; border-bottom: 1px solid var(--grey-light); font-size: 0.87rem; color: var(--grey); display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.5; }
.person-bio li:last-child { border-bottom: none; }
.person-bio li::before { content: '→'; color: var(--blue-light); flex-shrink: 0; font-size: 0.75rem; margin-top: 0.15rem; } .section-contact { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3.5rem; align-items: start; }
.contact-lead { font-size: 1rem; color: var(--grey); line-height: 1.8; margin-bottom: 2.5rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; font-size: 0.92rem; color: var(--text); }
.contact-item-icon { width: 38px; height: 38px; background: var(--blue-tint); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-form { background: var(--off-white); border-radius: 16px; padding: 2.5rem; border: 1px solid var(--grey-light); }
.form-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--text); margin-bottom: 0.4rem; }
.form-input { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--grey-light); border-radius: 6px; font-family: inherit; font-size: 0.88rem; background: white; color: var(--text); outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.form-input:focus { border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(37,99,235,0.08); }
textarea.form-input { height: 110px; resize: vertical; }
.form-submit { width: 100%; background: var(--blue-mid); color: white; border: none; padding: 0.9rem 2rem; border-radius: 6px; font-family: inherit; font-size: 0.92rem; font-weight: 600; cursor: pointer; margin-top: 0.5rem; transition: background 0.2s; }
.form-submit:hover { background: var(--blue); } .wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-email,
.wpcf7-form .wpcf7-textarea {
width: 100%; padding: 0.75rem 1rem;
border: 1px solid var(--grey-light); border-radius: 6px;
font-family: inherit; font-size: 0.88rem;
background: white; color: var(--text);
outline: none; transition: border-color 0.2s;
}
.wpcf7-form .wpcf7-submit {
width: 100%; background: var(--blue-mid); color: white;
border: none; padding: 0.9rem 2rem; border-radius: 6px;
font-family: inherit; font-size: 0.92rem; font-weight: 600;
cursor: pointer; transition: background 0.2s;
}
.wpcf7-form .wpcf7-submit:hover { background: var(--blue); } .site-footer { background: var(--navy); padding: 3rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { font-size: 1.2rem; font-weight: 700; color: white; letter-spacing: 0.1em; }
.footer-logo span { color: var(--blue-light); }
.footer-nav ul { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.footer-nav a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.83rem; transition: color 0.2s; }
.footer-nav a:hover { color: white; }
.footer-copy { max-width: 1200px; margin: 1.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.07); font-size: 0.78rem; color: rgba(255,255,255,0.3); text-align: center; } @media (max-width: 900px) {
.hero-content { grid-template-columns: 1fr; }
.hero-card { display: none; }
.cmr-grid { grid-template-columns: 1fr; }
.about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
.about-highlights { grid-template-columns: 1fr; }
.services-grid { grid-template-columns: 1fr; }
.team-grid { grid-template-columns: 1fr; }
.contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
.form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
.main-navigation { display: none; }
section { padding: 4rem 1.25rem; }
.hero-content { padding: 7rem 1.25rem 4rem; }
.hero-stats { gap: 1.5rem; }
}input[type="checkbox"].cmplz-category { width: initial; -webkit-appearance: checkbox;}input[type="checkbox"].cmplz-category:checked::before { content: '';}.cmplz-cookiebanner { box-sizing: border-box;}:root { --cmplz_banner_width: 526px; --cmplz_banner_background_color: #ffffff; --cmplz_banner_border_color: #f2f2f2; --cmplz_banner_border_width: 0px 0px 0px 0px ; --cmplz_banner_border_radius: 12px 12px 12px 12px; --cmplz_banner_margin: 10px; --cmplz_categories-height: 110px; --cmplz_title_font_size: 15px; --cmplz_text_line_height: calc(var(--cmplz_text_font_size) * 1.5); --cmplz_text_color: #222222; --cmplz_hyperlink_color: #3B29FF; --cmplz_text_font_size: 12px; --cmplz_link_font_size: 12px; --cmplz_category_body_font_size: 12px; --cmplz_button_accept_background_color: #3B29FF; --cmplz_button_accept_border_color: #3B29FF; --cmplz_button_accept_text_color: #ffffff; --cmplz_button_deny_background_color: #f9f9f9; --cmplz_button_deny_border_color: #f2f2f2; --cmplz_button_deny_text_color: #222222; --cmplz_button_settings_background_color: #f9f9f9; --cmplz_button_settings_border_color: #f2f2f2; --cmplz_button_settings_text_color: #333333; --cmplz_button_border_radius: 6px 6px 6px 6px; --cmplz_button_font_size: 15px; --cmplz_category_header_always_active_color: green; --cmplz_category_header_title_font_size: 14px; --cmplz_category_header_active_font_size: 12px; --cmplz-manage-consent-height: 50px; --cmplz-manage-consent-offset: -35px; --cmplz_slider_active_color: #3B29FF; --cmplz_slider_inactive_color: #555; --cmplz_slider_bullet_color: #ffffff;}body.cmplz-banner-active *:not(.cmplz-cookiebanner):not(.cmplz-cookiebanner *) { pointer-events: none !important; user-select: none !important;}.cmplz-cookiebanner * { pointer-events: auto !important; user-select: auto !important;}#cmplz-manage-consent .cmplz-manage-consent { margin: unset; z-index: 9998; color: var(--cmplz_text_color); background-color: var(--cmplz_banner_background_color); border-style: solid; border-color: var(--cmplz_banner_border_color); border-width: var(--cmplz_banner_border_width); border-radius: var(--cmplz_banner_border_radius); border-bottom-left-radius: 0; border-bottom-right-radius: 0; line-height: initial; position: fixed; bottom: var(--cmplz-manage-consent-offset); min-width: 100px; height: var(--cmplz-manage-consent-height); right: 40px; padding: 15px; cursor: pointer; animation: mc_slideOut 0.5s forwards;}#cmplz-manage-consent .cmplz-manage-consent:active { outline: none; border: none;}#cmplz-manage-consent .cmplz-manage-consent.cmplz-dismissed { display: none;}#cmplz-manage-consent .cmplz-manage-consent:hover,#cmplz-manage-consent .cmplz-manage-consent:focus { animation: mc_slideIn 0.5s forwards; animation-delay: 0;}@-webkit-keyframes mc_slideIn { 100% { bottom: 0; }}@keyframes mc_slideIn { 100% { bottom: 0; }}@-webkit-keyframes mc_slideOut { 100% { bottom: var(--cmplz-manage-consent-offset); }}@keyframes mc_slideOut { 100% { bottom: var(--cmplz-manage-consent-offset); }}@media (max-width: 425px) { .cmplz-cookiebanner .cmplz-header .cmplz-title { display: none; }}.cmplz-cookiebanner { max-height: calc(100vh - 20px); overflow-y: auto; position: fixed; height: auto; left: 50%; top: 50%; -ms-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); grid-template-rows: minmax(0, 1fr); z-index: 99999; background: var(--cmplz_banner_background_color);}.cmplz-cookiebanner a { transition: initial;}.cmplz-cookiebanner .cmplz-buttons a.cmplz-btn.tcf { display: none;}.cmplz-cookiebanner.cmplz-dismissed { display: none;}.cmplz-cookiebanner .cmplz-body { width: 100%; grid-column: span 3; overflow-y: auto; overflow-x: hidden; max-height: 55vh;}.cmplz-cookiebanner .cmplz-body::-webkit-scrollbar-track { border-radius: 10px; -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0); background-color: transparent;}.cmplz-cookiebanner .cmplz-body::-webkit-scrollbar { width: 5px; background-color: transparent;}.cmplz-cookiebanner .cmplz-body::-webkit-scrollbar-thumb { background-color: var(--cmplz_button_accept_background_color); border-radius: 10px;}@media (min-width: 350px) { .cmplz-cookiebanner .cmplz-body { min-width: 300px; }}@media (max-height: 400px) { .cmplz-cookiebanner { height: calc(100vh - 20px); display: flex; flex-direction: column; overflow: hidden; gap: 1px; grid-row-gap: 1px; padding: 7px 12px !important; zoom: 0.6; } .cmplz-cookiebanner .cmplz-body { flex: 1; min-height: 0; overflow-y: auto; max-height: none; margin-top: 15px !important; } .cmplz-cookiebanner .cmplz-header, .cmplz-cookiebanner .cmplz-divider, .cmplz-cookiebanner .cmplz-links, .cmplz-cookiebanner .cmplz-buttons, .cmplz-cookiebanner .cmplz-documents { flex-shrink: 0; } .cmplz-cookiebanner .cmplz-header { margin-bottom: 15px !important; max-height: 10px; } .cmplz-close { zoom: 0.6 !important; } .cmplz-cookiebanner .cmplz-buttons { gap: 1px !important; } .cmplz-cookiebanner .cmplz-buttons .cmplz-btn { height: 15vh !important; min-height: unset !important; padding: 0 !important; white-space: nowrap !important; font-size: 1.1rem !important; line-height: 14px !important; zoom: 0.5 !important; } .cmplz-cookiebanner .cmplz-documents, .cmplz-cookiebanner .cmplz-information { zoom: 0.5 !important; }}@media (max-height: 400px) and (max-width: 768px) { .cmplz-cookiebanner { gap: 1px; }}.cmplz-cookiebanner { border-style: solid; border-color: var(--cmplz_banner_border_color); border-width: var(--cmplz_banner_border_width); border-radius: var(--cmplz_banner_border_radius); padding: 15px 20px; display: grid; grid-gap: 10px;}.cmplz-cookiebanner .cmplz-divider { margin-left: -20px; margin-right: -20px;}.cmplz-cookiebanner .cmplz-header { grid-template-columns: 100px 1fr 100px; align-items: center; display: grid; grid-column: span 3;}@media (max-width: 399px) { .cmplz-cookiebanner .cmplz-header { grid-template-columns: auto 1fr auto; }}.cmplz-cookiebanner .cmplz-logo svg { max-height: 35px; width: inherit;}.cmplz-cookiebanner .cmplz-logo img { max-height: 40px; width: inherit;}.cmplz-cookiebanner .cmplz-title { justify-self: center; grid-column-start: 2; font-size: var(--cmplz_title_font_size); color: var(--cmplz_text_color); font-weight: 500;}.cmplz-cookiebanner .cmplz-close { line-height: 20px; justify-self: end; grid-column-start: 3; font-size: 20px; cursor: pointer; width: 20px; height: 20px; color: var(--cmplz_text_color);}.cmplz-cookiebanner .cmplz-close svg { width: 20px; height: 20px;}.cmplz-cookiebanner .cmplz-close:hover { text-decoration: none; line-height: initial; font-size: 18px;}.cmplz-cookiebanner .cmplz-message { word-wrap: break-word; font-size: var(--cmplz_text_font_size); line-height: var(--cmplz_text_line_height); color: var(--cmplz_text_color); margin-bottom: 5px;}.cmplz-cookiebanner .cmplz-message a { color: var(--cmplz_hyperlink_color);}.cmplz-cookiebanner .cmplz-message,.cmplz-cookiebanner .cmplz-categories,.cmplz-cookiebanner .cmplz-links,.cmplz-cookiebanner .cmplz-buttons,.cmplz-cookiebanner .cmplz-divider { grid-column: span 3;}.cmplz-cookiebanner .cmplz-categories.cmplz-tcf .cmplz-category .cmplz-category-header { grid-template-columns: 1fr auto;}.cmplz-cookiebanner .cmplz-categories .cmplz-category { background-color: rgba(239, 239, 239, 0.5);}.cmplz-cookiebanner .cmplz-categories .cmplz-category:not(:last-child) { margin-bottom: 10px;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header { display: grid; grid-template-columns: 1fr auto 15px; grid-template-rows: minmax(0, 1fr); align-items: center; grid-gap: 10px; padding: 10px;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-category-title { font-weight: 500; grid-column-start: 1; justify-self: start; font-size: var(--cmplz_category_header_title_font_size); color: var(--cmplz_text_color); margin: 0;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-always-active { font-size: var(--cmplz_category_header_active_font_size); font-weight: 500; color: var(--cmplz_category_header_always_active_color);}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-always-active label { display: none;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-banner-checkbox { display: flex; align-items: center; margin: 0;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-banner-checkbox input[data-category=cmplz_functional] { display: none;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-category-toggle { background: none; border: none; padding: 0; margin: 0; cursor: pointer; grid-column-start: 3; display: flex; align-items: center; justify-content: center; color: inherit;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-icon.cmplz-open { cursor: pointer; content: ''; transform: rotate(0deg); -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; background-size: cover; height: 18px; width: 18px;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-description { font-size: var(--cmplz_category_body_font_size); color: var(--cmplz_text_color); margin: 0; max-width: 100%; padding: 10px;}@media (max-width: 425px) { .cmplz-cookiebanner .cmplz-category .cmplz-category-header { grid-template-columns: 1fr!important; }}@media (max-width: 425px) { .cmplz-cookiebanner .cmplz-message { margin-right: 5px; }}.cmplz-cookiebanner .cmplz-buttons { display: flex; gap: var(--cmplz_banner_margin);}.cmplz-cookiebanner .cmplz-buttons .cmplz-btn { min-height: 45px; padding: 10px; margin: initial; width: 100%; white-space: nowrap; border-radius: var(--cmplz_button_border_radius); cursor: pointer; font-size: var(--cmplz_button_font_size); font-weight: 500; text-decoration: none; line-height: 20px; text-align: center; flex: initial;}.cmplz-cookiebanner .cmplz-buttons .cmplz-btn:hover { text-decoration: none;}.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-accept { background-color: var(--cmplz_button_accept_background_color); border: 1px solid var(--cmplz_button_accept_border_color); color: var(--cmplz_button_accept_text_color);}.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-deny { background-color: var(--cmplz_button_deny_background_color); border: 1px solid var(--cmplz_button_deny_border_color); color: var(--cmplz_button_deny_text_color);}.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-view-preferences { background-color: var(--cmplz_button_settings_background_color); border: 1px solid var(--cmplz_button_settings_border_color); color: var(--cmplz_button_settings_text_color);}.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-save-preferences { background-color: var(--cmplz_button_settings_background_color); border: 1px solid var(--cmplz_button_settings_border_color); color: var(--cmplz_button_settings_text_color);}.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-manage-options { background-color: var(--cmplz_button_settings_background_color); border: 1px solid var(--cmplz_button_settings_border_color); color: var(--cmplz_button_settings_text_color);}.cmplz-cookiebanner .cmplz-buttons a.cmplz-btn { display: flex; align-items: center; justify-content: center; padding: initial;}@media (max-width: 425px) { .cmplz-cookiebanner .cmplz-links.cmplz-information { display: initial; text-align: center; }}.cmplz-cookiebanner .cmplz-links { display: flex; gap: var(--cmplz_banner_margin);}.cmplz-cookiebanner .cmplz-links.cmplz-information { justify-content: space-between;}.cmplz-cookiebanner .cmplz-links.cmplz-documents { justify-content: center;}.cmplz-cookiebanner .cmplz-links .cmplz-link { color: var(--cmplz_hyperlink_color); font-size: var(--cmplz_link_font_size); text-decoration: underline; margin: 0;}.cmplz-cookiebanner .cmplz-links .cmplz-link.cmplz-read-more-purposes { display: none;}.cmplz-cookiebanner .cmplz-links ul { margin: 0; padding: 0; list-style: none; display: flex; gap: var(--cmplz_banner_margin); justify-content: center;}.cmplz-categories .cmplz-category .cmplz-description-statistics-anonymous { display: none;}.cmplz-categories .cmplz-category .cmplz-description-statistics { display: block;}.cmplz-categories .cmplz-category .cmplz-category-header .cmplz-category-toggle { background: none; border: none; padding: 0; margin: 0; cursor: pointer; grid-column-start: 3; display: flex; align-items: center; justify-content: center; color: inherit;}.cmplz-categories .cmplz-category .cmplz-category-toggle[aria-expanded="true"] .cmplz-icon.cmplz-open { transform: rotate(180deg);}@media (min-width: 768px) { .cmplz-cookiebanner { min-width: var(--cmplz_banner_width); max-width: 100%; display: grid; grid-row-gap: 10px; }}@media (max-width: 768px) { .cmplz-cookiebanner { width: 100%; gap: 1px; } .cmplz-cookiebanner .cmplz-buttons { flex-direction: column; }}@media (min-width: 769px) { .cmplz-message, .cmplz-categories { width: calc(var(--cmplz_banner_width) - 42px); }}.cmplz-cookiebanner .cmplz-categories,.cmplz-cookiebanner .cmplz-save-preferences,.cmplz-cookiebanner .cmplz-link.cmplz-manage-options,.cmplz-cookiebanner .cmplz-manage-vendors,.cmplz-cookiebanner .cmplz-read-more,.cmplz-cookiebanner .cmplz-btn.cmplz-manage-options { display: none;}.cmplz-cookiebanner .cmplz-categories.cmplz-fade-in { animation: fadeIn 1s; -webkit-animation: fadeIn 1s; -moz-animation: fadeIn 1s; -o-animation: fadeIn 1s; -ms-animation: fadeIn 1s; display: block;}@keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; }}@-moz-keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; }}@-webkit-keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; }}@-o-keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; }}@-ms-keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; }}.cmplz-cookiebanner .cmplz-links.cmplz-information { display: none;}#cmplz-cookiebanner-container .cmplz-cookiebanner { top: 100vh; -webkit-animation: slideIn 1s forwards; -webkit-animation-delay: 0; animation: slideIn 1s forwards; animation-delay: 0; -ms-transform: translateX(-50%) translateY(0%); transform: translateX(-50%) translateY(0%);}@-webkit-keyframes slideIn { 100% { top: 50%; left: 50%; -ms-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); }}@keyframes slideIn { 100% { top: 50%; left: 50%; -ms-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); }}.cmplz-cookiebanner .cmplz-preferences,.cmplz-manage-consent-container .cmplz-preferences { display: none;}.cmplz-cookiebanner .cmplz-statistics:not(.cmplz-tcf),.cmplz-manage-consent-container .cmplz-statistics:not(.cmplz-tcf) { display: none;}@media (max-width: 768px) { #cmplz-manage-consent .cmplz-manage-consent { display: none; }}.cmplz-cookiebanner .cmplz-close { display: none;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox { position: relative;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox input.cmplz-consent-checkbox { opacity: 0; margin: 0; margin-top: -10px; cursor: pointer; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); -moz-opacity: 0; -khtml-opacity: 0; position: absolute; z-index: 1; top: 0px; left: 0px; width: 40px; height: 20px;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox input.cmplz-consent-checkbox:focus + .cmplz-label:before { box-shadow: 0 0 0 2px #245fcc;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox input.cmplz-consent-checkbox:checked + .cmplz-label::before { display: block; background-color: var(--cmplz_slider_active_color); content: ""; padding-left: 6px;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox input.cmplz-consent-checkbox:checked + .cmplz-label:after { left: 14px;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox .cmplz-label { position: relative; padding-left: 30px; margin: 0;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox .cmplz-label:before,.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox .cmplz-label:after { box-sizing: border-box; position: absolute; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; transition: background-color 0.3s, left 0.3s;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox .cmplz-label:before { display: block; content: ""; color: #fff; box-sizing: border-box; font-family: 'FontAwesome', sans-serif; padding-left: 23px; font-size: 12px; line-height: 20px; background-color: var(--cmplz_slider_inactive_color); left: 0px; top: -7px; height: 15px; width: 28px; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox .cmplz-label:after { display: block; content: ""; letter-spacing: 20px; background: var(--cmplz_slider_bullet_color); left: 4px; top: -5px; height: 11px; width: 11px;}.cmplz-cookiebanner { box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;}#cmplz-manage-consent .cmplz-manage-consent { box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;}.cmplz-cookiebanner.cmplz-show { box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;}.cmplz-cookiebanner.cmplz-show:hover { transition-duration: 1s; box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;}.cmplz-categories .cmplz-category .cmplz-description-statistics-anonymous { display: block;}.cmplz-categories .cmplz-category .cmplz-description-statistics { display: none;}