/* =========================================================================== */
/* Root */
/* =========================================================================== */
@font-face {
    font-family: "Content";

    /* src: url(../fonts/Tangerine-Regular.ttf) format("truetype");
    src: url(../fonts/Quicksand-Light.ttf) format("truetype");
    src: url(../fonts/OpenSansCondensed-LightItalic.ttf) format("truetype");
    src: url(../fonts/Jura-Regular.ttf) format("truetype");
    src: url(../fonts/Michroma.ttf) format("truetype"); */
    src: url(../fonts/Jura-Regular.ttf) format("truetype");
}

/* =========================================================================== */
/* Section HTML */
/* =========================================================================== */
html {
    /* Font-Size relative according to Screen width */
    font-size: 1.2vw;
    color: #fff;
    background-color: #000;
}

body {
    font-family: Content ,'Arial', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
}

/* =========================================================================== */
/* SubSections: nav, main, footer */
/* =========================================================================== */
/* ---------------------------------------- */
/* nav */
/* ---------------------------------------- */
.Nav {
    position: -webkit-sticky;
    position: sticky;
    z-index: 500;
    padding: 1vw;
    background-color: #000;
}

.Nav::after {
    content: "";
    display: block;
    clear: both;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

/* ---------------------------------------- */
/* Navi Elements */
/* ---------------------------------------- */
.Nav a,
.Nav a:hover,
.Nav a:active,
.Nav a:checked,
.Nav a:visited {
    font-size: 2vw;
    white-space: nowrap;
    transition-duration: 1.0s;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    margin-right: 1vw;
}

.Nav a:hover {
    color: #F00;
    transition-duration: 1.0s;
}

/* ---------------------------------------- */
/* main */
/* ---------------------------------------- */
main {
    z-index: 1000;
}

main::after {
    content: "";
    clear: both;
    display: block;
}

/* ---------------------------------------- */
/* Footer */
/* ---------------------------------------- */
footer {
    z-index: 1;

    /* background-color: #f0f0f0 */
}

footer::after {
    content: "";
    clear: both;
    display: block;
}

/* ---------------------------------------- */
.StickyFooter {
    display: block;
    position: -webkit-sticky;
    position: sticky;
    z-index: 100;
    bottom: 0px;
    width: 100%;
}

.StickyFooter::after {
    content: "";
    display: block;
    clear: both;
}

/* =========================================================================== */
/* elements */
/* =========================================================================== */
p,
a {
    font-size: 1.0 rem;
    margin: 0.4rem 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition-duration: 1.0s;
}

a:hover {
    color: #f00;
    transition-duration: 1.0s;
}

/* --------------------------------------------- */
h1 {
    font-size: 2.0rem;
    margin: .7rem 0;
}

h2 {
    font-size: 1.8rem;
    margin: 0.5rem 0;
}

h3 {
    font-size: 1.6rem;
    margin: 0.4rem 0;
}

h4 {
    font-size: 1.4rem;
    margin: 0.3rem 0;
}

h5 {
    font-size: 1.2rem;
    margin: 0.2rem 0;
}

h6 {
    font-size: 1.1rem;
    margin: 0.2rem 0;
}

/* ------------------------------------ */
small {
    font-size: .675rem;
}

/* ------------------------------------ */
Ul {
    margin-left: -1rem;
}

li {
    /* margin-left: 2rem */
}

/* =========================================================================== */
/* Basics elements */
/* =========================================================================== */
label {
    font-size: 1.5rem;
    margin: 1rem;
}

input textarea {
    font-size: 1.5rem;
    margin-right: 1rem;
    padding: 0.5rem;
}

/* =========================================================================== */
video {
    display: block;
    width: 100%;
    height: auto;
}

/* =========================================================================== */
table {
    width: 100%;
    border-spacing: 0;
    text-align: center;
}

table td,
table th {
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    padding: 0.2rem 0.5rem;
}

table td {
    font-size: 1rem;
    text-align: center;
}

table th {
    font-size: 1.4rem;
}

table li {
    padding: 0 1rem;
}

table img {
    margin-top: 0.5rem;
}

.LTable th:first-child,
.LTable td:first-child {
    text-align: left;
}

.RTable th:first-child,
.RTable td:first-child {
    text-align: right;
}

.LBTable td:first-child {
    text-align: left;
}

.RBTable td:first-child {
    text-align: right;
}

.ColoredTable th {
    padding: 1rem 0.5rem;
    background-color: #333;
}

.ColoredTable tr:nth-child(odd) {
    background-color: #111;
}

.ColoredTable tr:nth-child(even) {
    background-color: #222;
}

.ColoredTable th:last-child,
.ColoredTable td:last-child {
    width: 100%;
}

/* =========================================================================== */
/* Buttons */
/* =========================================================================== */
.Button {
    /* display: inline-block */
    margin: 0 1vw;
    padding: 0.5vw 1vw;
    font-size: 1vw !important;
    font-weight: bold !important;
    color: inherit;
    -webkit-transition: background-Color .5s;
    transition: background-Color .5s;
    background-color: #a52020;
    text-decoration: none;
    border-radius: 2vw;
    -webkit-box-shadow: 0 0 0.8vw 0 rgba(0, 0, 0, 0.5), 0.3vw 0.3vw 1vw rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0.8vw 0 rgba(0, 0, 0, 0.5), 0.3vw 0.3vw 1vw rgba(0, 0, 0, 0.5);
    justify-content: center;
}

.Button:hover {
    -webkit-transition: background-Color .5s;
    transition: background-Color .5s;
    background-color: #FBB;
}

.Button:active {
    -webkit-transition: background-Color .5s;
    transition: background-Color .5s;
    background-color: #F88;
    -webkit-box-shadow: 0.1vw 0.1vw 1vw rgba(0, 0, 0, 0.8);
    box-shadow: 0.1vw 0.1vw 0.1vw rgba(0, 0, 0, 0.8);
}

/* =========================================================================== */
/* Pics / Icons */
/* =========================================================================== */
.DecoPic,
.Thumbs,
.ThumbsLeft,
.ThumbsRight {
    /* margin-top: 5px; */
    border-radius: 50%;
}

.Thumbs,
.ThumbsLeft,
.ThumbsRight {
    /* margin-top: 5px; */
    border-radius: 1rem;
}

.ThumbsLeft {
    float: left;
    margin-right: 10px;
}

.ThumbsRight {
    float: right;
    margin-left: 10px;
}

/* ---------------------------------- */
.ThumbsLink {
    width: 50%;
    opacity: 0.25;
}

.ThumbsLink:hover {
    transition: opacity 0.5s;
    opacity: 1;
}

/* ------------------------------------ */
.FlyInLeft {
    position: relative;
    -webkit-animation: FlyInLeft 2s;
    animation: FlyInLeft 2s;
}

.FlyInRight {
    position: relative;
    -webkit-animation: FlyInRight 2s;
    animation: FlyInRight 2s;
}

@-webkit-keyframes FlyInLeft {
    0% {
        left: -100%;
        opacity: 1;
    }

    100% {
        left: 0%;
        opacity: 0.25;
    }
}

@keyframes FlyInLeft {
    0% {
        left: -100%;
        opacity: 1;
    }

    100% {
        left: 0%;
        opacity: 0.25;
    }
}

@-webkit-keyframes FlyInRight {
    0% {
        left: 100%;
        opacity: 1;
    }

    100% {
        left: 0%;
        opacity: 0.25;
    }
}

@keyframes FlyInRight {
    0% {
        left: 100%;
        opacity: 1;
    }

    100% {
        left: 0%;
        opacity: 0.25;
    }
}

/* ---------------------------------- */
.Icon > img,
.Icon {
    display: block;

    /* width: 60%; */
    margin-left: auto;
    margin-right: auto;
    border-radius: 50% !important;
}

/* =========================================================================== */
/* Links */
/* =========================================================================== */
.LinkNoDeco {
    text-decoration: none;
}

.Clear {
    content: "";
    display: block;
    clear: both;
}

/* =========================================================================== */
/* Shadows */
/* =========================================================================== */
.Shadow {
    box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.5);
}

*/
/* ------------------------------------ */
.ShadowUp {
    box-shadow: 0 -0.3rem 0.3rem rgba(0, 0, 0, 0.5);
}

/* ------------------------------------ */
.ShadowDown {
    box-shadow: 0 0.3rem 0.3rem rgba(0, 0, 0, 0.5);
}

/* ------------------------------------ */
.ShadowAround {
    box-shadow: 0 0 1rem 1rem rgba(0, 0, 0, 0.6);
}

/* =========================================================================== */
/* Shapes and Widths */
/* =========================================================================== */
.w10 {
    width: 10%;
}

.w20 {
    width: 20%;
}

.w24 {
    width: 24%;
}

.w25 {
    width: 25%;
}

.w30 {
    width: 30%;
}

.w32 {
    width: 32%;
}

.w33 {
    width: 33.33%;
}

.w40 {
    width: 40%;
}

.w49 {
    width: 49%;
}

.w50 {
    width: 50%;
}

.w59 {
    width: 59%;
}

.w60 {
    width: 60%;
}

.w64 {
    width: 64%;
}

.w65 {
    width: 65%;
}

.w66 {
    width: 66.66%;
}

.w80 {
    width: 80%;
}

.w90 {
    width: 90%;
}

.w95 {
    width: 95%;
}

.w98 {
    width: 98%;
}

.w99 {
    width: 99%;
}

.w100 {
    width: 100%;
}

/* ------------------------------------ */
.w_prod {
    width: 40%;
}

/* =========================================================================== */
/* aligns */
/* =========================================================================== */
.TxtAlgnL {
    text-align: left;
}

.TxtAlgnC {
    text-align: center;
}

.TxtAlgnR {
    text-align: right;
}

.TxtAlgnJ {
    text-align: justify;
}

.TxtTop {
    vertical-align: top;
}

.TxtMiddle {
    vertical-align: middle;
}

.TxtBottom {
    vertical-align: bottom;
}

.HighLight {
    text-align: justify;
    padding: 0.5rem;
    margin: 0.8rem 0;

    /* color: black; */
    /* border-radius: 0.8rem; */
    background-image: linear-gradient(45deg, #222, #444, #222);
}

/* =========================================================================== */
/* Columns */
/* =========================================================================== */
.TxtCols1 {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
}

.TxtCols2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    column-gap: 2rem;
}

.TxtCols3 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    column-gap: 2rem;
}

/* =========================================================================== */
/* anchor */
/* =========================================================================== */
.Anchor {
    position: absolute;
    top: -4rem;
}

.Anchor::after {
    content: "";
    clear: both;
    position: relative;
    display: block;
}

/* =========================================================================== */
/* -- Arrow -- */
/* =========================================================================== */
.ArrowDown {
    -webkit-animation: Pulse 2s 1s ease-out infinite;
    animation: Pulse 2s 1s ease-out infinite;
    position: absolute;
    top: 50rem;

    /* top: 92vh; */
    left: calc(1%);
    z-index: 400;
    width: 4vw;
    height: 4vw;
    text-align: center;
    vertical-align: bottom;
    background-color: #FFF;
    border-radius: 50%;
    margin: 0 auto;
}

.ArrowDown::after {
    content: "";
    display: block;
    clear: both;
}

.ArrowDown img {
    position: absolute;
    top: 40%;
    left: calc(50% - 1.5rem);
    width: 3vw;
    -webkit-animation: Flash 1s 1s ease-out infinite;
    animation: Flash 1s 1s ease-out infinite;
}

/* @keyframes Pulse {
0% {
opacity: 1;
transform: translateY(0%);
}

50% {
opacity: 0;
transform: translateY(-100%);
}

100% {
opacity: 1;
transform: translateY(-0%);
}
} */
@-webkit-keyframes Pulse {
    0% {
        opacity: 0;
        -webkit-: translateY(-800%);
    }

    30% {
        opacity: 1;
        -webkit-: translateY(-800%);
    }

    100% {
        opacity: 0;
        -webkit-: translateY(0%);
    }
}

@keyframes Pulse {
    0% {
        opacity: 0;
        transform: translateY(-800%);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(0%);
    }
}

/* =========================================================================== */
/* Grid Structure */
/* =========================================================================== */
.Container {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
}

.Container::after {
    content: "";
    display: block;
    clear: both;
}

/* ------------------------------------ */
/* ------------------------------------ */
.Row {
    display: block;
    text-align: left;
}

.Row::after {
    content: "";
    clear: both;
    display: block;
}

/* ------------------------------------ */
/* ------------------------------------ */
[class*='Col-'] {
    float: left;
    padding: 0.3rem;
}

/* ------------------------------------ */
.Col-1,
.SubCol-1 {
    width: 16.666%;
}

/* ------------------------------------ */
.Col-2,
.SubCol-2 {
    width: 33.333%;
}

/* ------------------------------------ */
.Col-3,
.SubCol-3 {
    width: 50%;
}

/* ------------------------------------ */
.Col-4,
.SubCol-4 {
    width: 66.666%;
}

/* ------------------------------------ */
.Col-5,
.SubCol-5 {
    width: 83.333%;
}

/* ------------------------------------ */
.Col-6,
.SubCol-6 {
    width: 100%;
}

/* =========================================================================== */
/* responsive */
/* =========================================================================== */
@media (max-width: 1023px) {
    .Col-1 {
        width: 33.333%;
    }

    /* ------------------------------------ */
    .Col-5 {
        width: 66.666%;
    }

    /* ------------------------------------ */
    .Col-6 {
        width: 100%;
    }
}

@media (max-width: 480px) {
    [class*='Col-'] {
        width: 100%;
    }
}

/* =========================================================================== */
}
