/* 1_Color */
/* 1_1_Vars */
:root {
    --p-color: #333333;
    --prime: #9B2324;
}

/* 1_2_Scollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: var(--prime);
}

/* raleway-500 - latin */
@font-face {
    font-display: swap;

    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/raleway-v28-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('../fonts/raleway-v28-latin-500.woff') format('woff');

    /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* raleway-600 - latin */
@font-face {
    font-display: swap;

    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/raleway-v28-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('../fonts/raleway-v28-latin-600.woff') format('woff');

    /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* raleway-800 - latin */
@font-face {
    font-display: swap;

    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/raleway-v28-latin-800.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('../fonts/raleway-v28-latin-800.woff') format('woff');

    /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* Fonts */
/* 1_4_Body_Global_Colors */
.color--prime {
    color: var(--prime) !important;
}

/* 1_4_Body Global Colors */
body {
    color: var(--p-color);
}

main {
    position: relative;
    background: linear-gradient(0deg, #ffffff 0%, #fafafa 100%);
}

/* 2_Typografie */
/* 2_1_standard_Typo */
body {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

body a,
body p,
body h1,
body h2,
body h3 {
    position: relative;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    font-weight: 500;
    font-feature-settings: 'liga' off;
    letter-spacing: 0.03em;
}

h1,
h2 {
    color: var(--prime);
    text-align: center;
}

h1,
.heading_1 {
    font-weight: 500;
    font-size: 3rem;
    line-height: 1.25;
    margin-bottom: 3rem;
    margin-top: 1.5rem;
}

h2,
.heading_2 {
    font-size: 2.25rem;
    line-height: 1.25;
    margin-bottom: 3.5rem;
    margin-top: 3rem;
}

h3,
.heading_3 {
    font-size: 1.875rem;
    line-height: 1.33333;
    margin-bottom: 1rem;
}

h4,
.heading_4 {
    font-size: 1.5rem;
    line-height: 1.5;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.lead {
    font-size: 1.5rem;
    line-height: 1.5;
}

@media (max-width:767px) {
    h1 {
        font-size: 2rem;
        line-height: 1.25em;
    }

    h2 {
        font-size: 1.5rem;
        line-height: 1.25em;
    }

    h3 {
        font-size: 1.25rem;
        line-height: 1.4em;
    }

    p {
        font-size: 0.875rem;
        line-height: 1.4em;
    }

    .lead {
        font-size: 1.25rem;
        line-height: 1.4rem;
    }
}

@media (max-width:478px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
        line-height: 1.4em;
    }

    h3 {
        font-size: 1rem;
        line-height: 1.5em;
    }

    .lead {
        font-size: 1.1rem;
        line-height: 1.5rem;
    }
}

* strong,
* b {
    font-weight: 800;
}

a,
a:link {
    text-decoration: underline;
    color: var(--prime);
    margin-top: 0;
    font-weight: 800;
}

ul {
    padding-left: 0;
    list-style-image: url('../gfx/bullet.svg');
    list-style-position: outside;
}

li {
    font-size: 1rem;
    line-height: 1.5rem;
}

ul ul {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.icon {
    position: relative;
    padding-left: 30px;
}

.icon:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    left: 5px;
    background-position: center center;
    background-size: contain;
    top: 5px;
}

.icon--bullet:before {
    background-image: url('../gfx/bullet.svg');
}

.caps {
    text-transform: uppercase;
}

/* 3_Layout */
/* 3_1_standard_Layout */
*,
:after,
:before {
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
}

html * {
    box-sizing: border-box;
}

body {
    margin: 0;
    overflow-x: hidden;
}

/* 3_2_custom_Layout_classes */
.mb_1 {
    margin-bottom: 1.5rem;
}

.mb_2 {
    margin-bottom: 3rem;
}

.pt_2 {
    padding-top: 3rem;
}

.p0 {
    padding-left: 0;
    padding-right: 0;
}

.align-end {
    align-self: end;
}

@media (max-width:1279px) {
    .mb_1 {
        margin-bottom: 1rem;
    }

    .mb_2 {
        margin-bottom: 2rem;
    }
}

.fullscreen {
    min-height: 100vh;
    overflow: hidden;
}

.subhead:after,
.fullscreen:after {
    content: '';
    width: 100%;
    height: 30px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}

.vertical-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 3_3_CSS_Grid */
.mainGrid {
    display: grid;
    grid-template-columns: 1fr repeat(12, 1fr) 1fr;
    grid-column-gap: 24px;
    width: 100%;
    position: relative;
    z-index: 2;
    align-items: center;
    padding-bottom: 1.5rem;
    grid-template-rows: auto;
}

.mainGrid.fullscreen {
    grid-template-rows: auto 1fr;
}

@media (max-width:767px) {
    .mainGrid {
        grid-column-gap: 12px;
    }
}

@media (min-width:1600px) {
    .mainGrid {
        grid-template-columns: 1fr repeat(12, 88px) 1fr;
    }
}

.coreGrid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 24px;
    grid-column: 2 / span 12;
    grid-row-gap: 24px;
    position: relative;
}

@media (max-width:767px) {
    .coreGrid {
        grid-column: 1 / span 14;
        grid-column-gap: 12px;
        grid-row-gap: 24px;
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* call_to_action */
.cta,
a.cta {
    height: 3rem;
    font-size: 1.25rem;
    line-height: 1;
    display: flex;
    background-color: var(--prime);
    font-weight: 600;
    padding: 0 1rem;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    align-items: center;
    text-align: center;
    transition: all 0.5s ease-in;
}

.cta:hover,
a.cta:hover {
    background-color: #333;
    color: #ffffff;
    transition: all 0.3s ease-out;
    text-shadow: 0 0 48px var(--prime), 0 0 32px var(--prime);
}

.cta_icon {
    position: absolute;
    left: 1.5rem;
}

.cta--black,
a.cta--black {
    background-color: #333333;
    color: #fff;
}

.cta--disabled {
    opacity: 0.4;
    filter: grayscale();
}

.cta--prime,
a.cta--prime {
    background-color: transparent;
    color: var(--p-color);
}

@media (max-width:1028px) {
    .cta,
    a.cta {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width:478px) {
    .cta {
        font-size: 16px;
        line-height: 24px;
        padding: 12px 24px;
    }
}

.cta--icon,
a.cta--icon {
    padding: 0 1.5rem 0 4.5rem;
}

.cta--icon.cta--gray,
a.cta--icon.cta--gray {
    padding: 0 2rem 0 4.5rem;
}

.cta--icon span,
a.cta--icon span {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
}

.cta--icon:before,
a.cta--icon:before {
    content: '';
    width: 4.5rem;
    height: 3rem;
    position: absolute;
    left: 0;
    top: 0;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.leadcta:before,
a.leadcta:before {
    top: 0.75rem;
}

.cta--tel:before,
a.cta--tel:before {
    background-image: url('../gfx/cta--tel.svg');
}

.cta--tel.cta--gray:before,
a.cta--tel.cta--gray:before {
    background-image: url('../gfx/cta--tel_gray.svg');
}

.cta--tel2:before,
a.cta--tel2:before {
    background-image: url('../gfx/cta--tel2.svg');
}

.cta--mail:before,
a.cta--mail:before {
    background-image: url('../gfx/cta--mail.svg');
}

.cta--mail.cta--gray:before,
a.cta--mail.cta--gray:before {
    background-image: url('../gfx/cta--mail_gray.svg');
}

.cta--paper:before,
a.cta--paper:before {
    background-image: url('../gfx/cta--paper.svg');
}

.cta--map:before,
a.cta--map:before {
    background-image: url('../gfx/cta--map.svg');
}

.bgimg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background-position: center center;
    background-size: cover;
}

.glass_bg {
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

/* Layout atoms */
.col-1 {
    grid-column: span 1;
}

.col-2 {
    grid-column: span 2;
}

.col-3 {
    grid-column: span 3;
}

.col-4 {
    grid-column: span 4;
}

.col-5 {
    grid-column: span 5;
}

.col-6 {
    grid-column: span 6;
}

.col-6--center {
    grid-column: 4 / span 6;
}

.col-7 {
    grid-column: span 7;
}

.col-8 {
    grid-column: span 8;
}

.col-8--center {
    grid-column: 3 / span 8;
}

.col-9 {
    grid-column: span 9;
}

.col-10 {
    grid-column: span 10;
}

.col-10--center {
    grid-column: 2 / span 10;
}

.col-12 {
    grid-column: span 12;
}

@media (max-width:1279px) {
    .col-m-0 {
        display: none;
    }

    .col-m-3 {
        grid-column: span 3;
    }

    .col-m-4 {
        grid-column: span 4;
    }

    .col-m-5 {
        grid-column: span 5;
    }

    .col-m-6 {
        grid-column: span 6;
    }

    .col-m-6--center {
        grid-column: 4 / span 6;
    }

    .col-m-7 {
        grid-column: span 7;
    }

    .col-m-8 {
        grid-column: span 8;
    }

    .col-m-8--center {
        grid-column: 3 / span 8;
    }

    .col-m-9 {
        grid-column: span 9;
    }

    .col-m-10 {
        grid-column: span 10;
    }

    .col-m-10--center {
        grid-column: 2 / span 10;
    }

    .col-m-12 {
        grid-column: span 12;
    }
}

@media (max-width:767px) {
    .col-s-0 {
        display: none;
    }

    .col-s-3 {
        grid-column: span 3;
    }

    .col-s-4 {
        grid-column: span 4;
    }

    .col-s-6 {
        grid-column: span 6;
    }

    .col-s-6--center {
        grid-column: 4 / span 6;
    }

    .col-s-8 {
        grid-column: span 8;
    }

    .col-s-8--center {
        grid-column: 3 / span 8;
    }

    .col-s-9 {
        grid-column: span 9;
    }

    .col-s-10--center {
        grid-column: 2 / span 10;
    }

    .col-s-12 {
        grid-column: span 12;
    }
}

@media (max-width:478px) {
    .col-xs-0 {
        display: none;
    }

    .col-xs-12 {
        grid-column: span 12;
    }
}

/* micro-interactions */
.hoverscale {
    transform: scale(1);
    transition: all 0.3s ease-in;
}

.hoverscale:hover {
    transform: scale(1.05);
    transition: all 0.3s ease-out;
}

table {
    border-width: 0px;
}
