/* 1_Color */
/* 1_1_Vars */
:root {
    --primary: #E44038;
    --secondary: #9B2324;
    --darkgray: #4C525D;
    --gray: #6C6E70;
    --lightgray: #E5F0F1;
    --blue: #4372A0;
    --p-color: #333333;
}

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

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

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

/* raleway-300 - latin */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 300;
    src: local(''),
       url('../fonts/raleway-v28-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/raleway-v28-latin-300.woff') format('woff');

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

/* 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-v29-latin-500.woff2') format('woff2');

    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* raleway-500italic - 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: italic;
    font-weight: 500;
    src: url('../fonts/raleway-v29-latin-500italic.woff2') format('woff2');

    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* raleway-700 - 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: 700;
    src: url('../fonts/raleway-v29-latin-700.woff2') format('woff2');

    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* raleway-700italic - 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: italic;
    font-weight: 700;
    src: url('../fonts/raleway-v29-latin-700italic.woff2') format('woff2');

    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

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

.color--secondary {
    color: var(--secondary) !important;
}

.color--darkgray {
    color: var(--darkgray) !important;
}

.color--gray {
    color: var(--gray) !important;
}

.color--lightgray {
    color: var(--lightgray) !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;
}

h1,
h2 {
    text-align: center;
}

h1,
.heading_1 {
    font-size: 3rem;
    line-height: 1.2em;
}

h2,
.heading_2 {
    font-size: 3rem;
    line-height: 1.2em;
    color: var(--primary);
}

h3,
.heading_3 {
    font-size: 2.25rem;
    line-height: 1.25em;
    color: var(--primary);
}

h3.sub,
.heading_3.sub {
    font-size: 1.5rem;
    line-height: 1.25rem;
    font-style: italic;
    color: var(--secondary);
}

h3.boxheading,
.heading_3.boxheading {
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--blue);
    font-weight: 700;
}

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

.lead {
    font-size: 1.5rem;
    line-height: 1.2;
    color: var(--darkgray);
}

.lead.bold {
    font-weight: 700;
}

.lead--cta {
    font-size: 2.25rem;
    line-height: 1.25rem;
    color: #ffffff;
    font-weight: 700;
}

.lead--list {
    font-size: 1.5rem;
    line-height: 1.25rem;
    font-weight: 700;
    font-style: italic;
    color: var(--darkgray);
}

.counter {
    color: var(--primary);
    font-size: 4rem;
    font-weight: 700;
}

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

    h2,
    .heading_2 {
        font-size: 2rem;
        line-height: 1.25em;
    }

    h3,
    .heading_3 {
        font-size: 1.5rem;
        line-height: 1.25em;
    }

    h3.sub,
    .heading_3.sub {
        font-size: 1rem;
        line-height: 1.5rem;
    }

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

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

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

    .counter {
        font-size: 3rem;
    }
}

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

    h2,
    .heading_2 {
        font-size: 1.5rem;
    }

    h3,
    .heading_3 {
        font-size: 1.25rem;
        line-height: 1.5em;
    }

    .counter {
        font-size: 2.25rem;
    }
}

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

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

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;
}

img {
    width: 100%;
}

.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;
}

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

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

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

.fullscreen {
    min-height: 100vh;
}

.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;
    grid-template-rows: auto;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

@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: 1 / span 12;
    grid-row-gap: 24px;
    position: relative;
    padding-left: 24px;
    padding-bottom: 4px;
}

@media (max-width:1278px) {
    .coreGrid--content {
        grid-template-columns: repeat(12, 1fr);
        grid-column: 1 / span 14;
        padding-left: 24px;
        padding-right: 24px;
    }
}

@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: 1rem;
    line-height: 1;
    display: flex;
    background-color: var(--primary);
    font-weight: 500;
    padding: 0 1.5rem;
    align-items: center;
    overflow: hidden;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

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

.cta--secondary,
a.cta--secondary {
    background-color: transparent;
    border: 1px solid var(--p-color);
    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 4.5rem;
}

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

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

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

.cta--fax:before,
a.cta--fax:before {
    background-image: url('../gfx/cta--fax.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-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-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;
}
