@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&display=swap');

:root {
    --white: #FFFFFF;
    --light: #F5F5F5;
    --blue: #05164d;
    --dark: #05164d;

    /* Plysystems COLORS */
    --ply-deep-blue: #05164D;
    --ply-deep-blue-shade: #041342;
    --ply-yellow: #FFAD00;
    --ply-yellow-shade: #cc8a00;
    --ply-white: #FFFFFF;
    --ply-gray-01: #D4D4D4;
    --ply-gray-02: #CCCCCC;
    --ply-gray-03: #B4B4B4;
    --ply-gray-04: #999999;
    --ply-gray-05: #878787;
    --ply-gray-06: #787878;
    --ply-gray-07: #666666;
    --ply-gray-08: #333333;
    --ply-gray-09: #282828;
    --ply-gray-digital-01: #F5F5F5;
    --ply-gray-digital-02: #EBEBEB;
    --ply-gray-digital-03: #DCDCDC;

}

/* Plysystems FONTS */

@font-face {
    font-family: PlysystemsLight;
    src: url('../fonts/plysystems/PlysystemsLight.ttf');
    font-weight: lighter;
    font-style: lighter;
}

@font-face {
    font-family: PlysystemsMedium;
    src: url('../fonts/plysystems/PlysystemsMedium.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Plysystems;
    src: url('../fonts/plysystems/PlysystemsOfficeText.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: PlysystemsHead;
    src: url('../fonts/plysystems/PlysystemsOfficeHead.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: PlysystemsBold;
    src: url('../fonts/plysystems/PlysystemsOfficeText-Bold.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: PlysystemsHeadBold;
    src: url('../fonts/plysystems/PlysystemsOfficeHead-Bold.ttf');
    font-weight: normal;
    font-style: normal;
}


body {
    color: var(--ply-gray-07);
    background-color: var(--ply-gray-digital-01);
    font-family: Plysystems;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    letter-spacing: 1px !important;
}

#imprint a {
    font-family: Plysystems;
    color: var(--ply-yellow)!important;
    text-decoration: none;
}

#imprint a:hover {
    color: var(--ply-deep-blue);
    transition: all 1s;
}

.text-primary {
    color: var(--ply-deep-blue)!important;
}

.text-muted {
    color: var(--ply-gray-06)!important;
}

.vh100 {
    height: 100vh;
}

#centered {
    display: block;
    margin: 0 auto;
}

.logo_text {
    font-family: PlysystemsHeadBold;
    font-weight: 500;
    color: var(--blue);
    font-size: 3rem;
    margin-top: 5px;
    margin-left: 15px;
}

.logo_text_xs {
    font-family: PlysystemsHeadBold;
    font-weight: 500;
    color: var(--blue);
    font-size: 1.5rem;
}

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-family: PlysystemsHead;
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-family: PlysystemsHeadBold;
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

.bg-light {
    background-color: var(--light);
}

footer {
    font-family: PlysystemsHead;
    background-color: var(--dark);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 300!important;
}

footer a {
    font-family: PlysystemsHead;
    color: var(--white);
    text-decoration: none;
}

footer a:hover {
    color: var(--ply-yellow);
    transition: all 1s;
}