:root {
    --main-color: rgba(181, 3, 39, 1);
    --main-hover-color: rgb(210, 15, 55);
    --secondary-color: rgba(255, 87, 34, 1);
    --main-font-color: #0a2b4a;
    /* --font-family: 'Inter', sans-serif; */
    /* --font-family: system-ui, -apple-system, BlinkMacSystemFont, 
    "Segoe UI", sans-serif; */
    --font-family: ui-sans-serif, system-ui, -apple-system,
        "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-size-base: 16px;
    --line-height-base: 1.5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

*:focus {
    outline: 0 !important;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background: #f7f8fa;
    height: 100%;
    margin: 0;
}

html {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

a,
a[href^="tel"] {
    -webkit-text-decoration: none;
    text-decoration: none;
    color: inherit;
}

.isp-header {
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
}

/* Page wrapper */
.isp-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 70px;
}

.isp-main {
    flex: 1 0 auto;
    width: 100%;
}

.container {
    /* max-width: 1236px; */
    max-width: 1200px;
    margin: auto;
    padding: 0 1.25rem;
}

.container-height {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
}

a {
    color: var(--main-color);
}

a:hover {
    color: var(--main-hover-color);
}

button {
    background-color: var(--main-color);
    border: none;
    color: white;
}

button:hover {
    background-color: var(--main-hover-color);
    color: white;
}

.btn-primary {
    background: var(--main-color);
    color: white;
    padding: 0.625rem 1.125rem;
    border-radius: 4px;
    cursor: pointer;
}

.btn-secondary {
    border: 1px solid var(--main-color);
    padding: 0.625rem 1.125rem;
    border-radius: 4px;
    color: var(--main-color);
    background-color: white;
    cursor: pointer;
}


.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: Arial, sans-serif;
    font-size: 0.875rem;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-consent-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-text {
    margin-bottom: 1rem;
}

.cookie-policy-link {
    color: white;
    text-decoration: underline;
}

.cookie-policy-link:hover {
    color: var(--secondary-color);
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
}

.btn-accept,
.btn-decline {
    padding: 0.625rem 1.25rem;
    border-radius: 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-accept {
    background-color: var(--main-color);
    color: white;
}

.btn-accept:hover {
    background-color: var(--main-hover-color);
}

.btn-decline {
    background-color: #ababab;
    color: white;
}

.btn-decline:hover {
    background-color: #888;
}

/* METRICS */
.metrics {
    background: #0a2b4a;
    color: white;
    padding: 60px 0;
}

.metrics-grid {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: space-between;
    text-align: center;
}

.metrics h3 {
    font-size: 2.4rem;
}

/* FOOTER */
.footer {
    background: #081f34;
    color: #cfd8e3;
    padding: 2.5rem 0;
    font-size: 0.875rem;
}

.footer-section {
    font-size: 0.875rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer .copyright {
    margin-top: 1.25rem;
}

.footer .footer-grid .footer-item {
    margin-bottom: 1.25rem;
}

.footer a {
    display: block;
    color: #cfd8e3;
    text-decoration: none;
    line-height: 2;
}

.footer a:hover {
    color: white;
    text-decoration: underline;
}

.footer h2 {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.footer li {
    list-style: none outside none;
}

.footer .subscribe-desc {
    font-size: 0.9375rem;
    color: rgba(233, 237, 243, 0.7);
    margin-bottom: 1rem;
}

.footer .subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer .subscribe-form input {
    width: 100%;
    height: 3rem;
    padding: 0 0.875rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    border: none;
    outline: none;
    background: #ffffff;
    color: #1f2933;
}

.footer .subscribe-form button {
    height: 2.875rem;
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform .05s ease, opacity .15s ease;
}

.footer .subscribe-form button:hover,
.footer .subscribe-form button:active {
    background: var(--main-hover-color);
}

.footer .subscribe-note {
    font-size: 0.8125rem;
    color: rgba(233, 237, 243, 0.7);
    margin-top: 0.5rem;
}

.footer .social {
    margin-top: 0.625rem;
    display: flex;
    gap: 0.5rem;
}

.footer .social a {
    width: 2.75rem;
    height: 2.75rem;
    padding: 0.25rem;
    border-radius: 0.625rem;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .15s ease, transform .05s ease;
}

.footer .social a:hover {
    text-decoration: none !important;
}

.footer .social a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-links img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer .social .youtube:hover {
    background-color: #FF0000;
    border: 1px solid #FF0000;
}

.footer .social .twitter:hover {
    background-color: #000000;
    border: 1px solid #000000;
}

.footer .social .linkedin:hover {
    background-color: #0078B5;
    border: 1px solid #0078B5;
}

.footer .social .xing:hover {
    background-color: #026466;
    border: 1px solid #026466;
}

.footer .footer-item .address {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer .footer-item .address .address-item {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.footer .footer-item .address .address-item svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile */
@media (max-width: 768px) {
    .container-height {
        padding-top: 2.75rem;
        padding-bottom: 2.75rem;
    }

    .metrics-grid {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .footer .footer-grid .footer-item {
        width: 100%;
    }
}

.error-page {
    padding: 3.75rem 1rem;
}

.landing-page-article {
    position: relative;
}

.landing-page-article a.target {
    position: absolute;
    top: -70px;
}