/* Typography CSS */

html {
    font-size: 16px;
}

body {
    font-family: 'Zurich BT';
    font-weight: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    color: var(--font-blue);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

h1 { font-size: 2rem; line-height: 1.2; }      /* 32px */
h2 { font-size: 1.75rem; line-height: 1.25; }  /* 28px */
h3 { font-size: 1.5rem; line-height: 1.3; }    /* 24px */
h4 { font-size: 1.25rem; line-height: 1.35; }  /* 20px */
h5 { font-size: 1.125rem; line-height: 1.4; }  /* 18px */
h6 { font-size: 1rem; line-height: 1.4; }      /* 16px */

@media (min-width: 768px) {
    h1 { font-size: 2.5rem; }    /* 40px */
    h2 { font-size: 2rem; }      /* 32px */
    h3 { font-size: 1.75rem; }   /* 28px */
    h4 { font-size: 1.5rem; }    /* 24px */
    h5 { font-size: 1.25rem; }   /* 20px */
    h6 { font-size: 1.125rem; }  /* 18px */
}

@media (min-width: 1180px) {
    h1 { font-size: 3rem; }      /* 48px */
    h2 { font-size: 2.25rem; }   /* 36px */
    h3 { font-size: 2rem; }      /* 32px */
    h4 { font-size: 1.75rem; }   /* 28px */
    h5 { font-size: 1.5rem; }    /* 24px */
    h6 { font-size: 1.25rem; }   /* 20px */
}

.sub-content h1 {}

.sub-content h2 {}

.sub-content h3 {}

.sub-content h4 {}

.color-light {
    color: var(--font-light);
}

.color-dark {
    color: var(--font-dark);
}


/* Pretitel styles */
.pretitel {
    color: #737373;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2.44px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* Button styles */
a.btn,
.gform_button.button, a.btn.button {
    padding: 17px 16px;
    height: 52px;
    display: block;
    width: fit-content;
    transition: 0.2s;
    font-weight: 700;
    cursor: pointer;
    line-height: 100%;
    border-radius: 4px;
    color: white;
    border: 1px solid #E31029;
    background-color: #E31029;
    font-size: 18px;
    line-height: 18px !important;
    position: relative;
    font-family: sans-serif;
}

a.btn:hover,
.gform_button.button:hover {
    background-color: transparent;
    color: #E31029;
}

a.btn.text {
    background: none;
    padding: 0;
    border: 0;
    text-decoration: underline;
    display: flex
;
    align-items: center;
}

/* Desktop Typography */
@media (min-width: 1024px) {
    h1 {}

    h2 {}

    h3 {}

    h4 {}

    .sub-content h1 {}

    .sub-content h2 {}

    .sub-content h3 {}

    .sub-content h4 {}
}