body {
    font-family: 'Hind Guntur', sans-serif;
    /*background: linear-gradient(to bottom,#ededed, #fff);*/
    background: url('/images/background.png') top center repeat-x;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    font-weight: 300!important;
}

a {color:#878787;}

.page {
    width: 95%;
    max-width: 1200px;
    display: block;
    margin: 0 auto;
    background-color: #fff;
}

.delimiter {
    width: 90%;
    height: 1px;
    background-color: #878787;
    display: block;
    margin: 8px auto;
}

.smallscreen {
    display: none;
}

/******************************/
/*********** HEADER ***********/
/******************************/

header a.logo > img {
    display: block;
    margin: 5px auto;
    width: 100%;
}

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

header .languages > a {
    display: block;
    float: right;
    padding: 10px 15px;
    color: #878787;
    text-decoration: none;
    font-size: 0.85em;
}

header .languages > a:hover {
    color: #262626;
}

header .languages.bigscreen {
	min-height: 46px;
}

header .photos_presentation {
    width: 100%;
    position: relative;
}

header .photos_presentation .photos {
    position: relative;
}

header .photos_presentation .photos > img {
    width: 100%;
    display: block;
    transition: opacity 1000ms;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
}

header .photos_presentation .photos > img:first-child {
    opacity: 1;
    position: static;
} 

header .photos_presentation .photos > img.active { 
    opacity: 1; 
}

header .photos_presentation .photos_comments > * {
    position: absolute;
    z-index: 100;
    opacity: 0;
    transition: 1000ms;
}
header .photos_presentation .photos_comments > *.active {
    opacity: 1;
}

header .photos_presentation .photos_comments > .header_multi {
    top: 0;
    left: 392px;
    left: calc(50% - (((100% - 30px) / 3) / 2));
    width: calc((100% - 30px) / 3);
    height: calc((100% - 30px) / 3);
    background-color: #ededed;
    color: #262626;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
}

header .photos_presentation .photos_comments > .header_multi p {
    margin: 0;
    padding: 5px 0;
    font-size: 1.7em;
    line-height: 1.2em;
}

header .photos_presentation.mobile_presentation .photos_comments > .header_multi {
    top: 285px;
    left: 392px;
    left: calc(50% - (((100% - 30px) / 2) / 2));
    width: calc((100% + 10px) / 2);
    height: calc((100% - 70px) / 4);
    background-color: transparent;
    color: #262626;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
}
header .photos_presentation.mobile_presentation .photos_comments > #header_multi p {
   font-size: 1em;
}

header .photos_presentation .photos_navigation > .patent {
    position: absolute;
    /*bottom: 150px;*/
    bottom: 7%;
    right: 0;
    width: 130px;
    height: 100px;
    background-color: #fff;
    border-radius: 60px 0 0 60px;
    z-index: 200;
}

header .photos_presentation .photos_navigation > .patent > img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

header .photos_presentation .photos_navigation > .arrows > div {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #ededed;
    color: #878787;
    border-radius: 50%;
    top: calc(50% - 20px);
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 40px;
    transition: 1000ms;
    transition-delay: 2000ms;
    cursor: pointer;
    z-index: 200;
    opacity: 0;
}

header .photos_presentation:hover .photos_navigation > .arrows > div {
    opacity: 0.8;
    transition-delay: 0ms;
    transition: 300ms;
}

header .photos_presentation .photos_navigation > .arrows > .left_arrow {
    left: 20px;
    padding-right: 4px;
}
header .photos_presentation .photos_navigation > .arrows > .right_arrow {
    right: 20px;
    padding-left: 4px;
}
header .photos_presentation .photos_navigation > .arrows > div:hover {
    opacity: 1;
}

header #mobile_navigation_switcher > div {
    width: 50%;
    margin: 30px auto;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    height: 60px;
    line-height: 60px;
    overflow: hidden;
}

header .mobile_presentation h2 {
    text-transform: lowercase;
    color: rgb(139, 12, 32);
    font-size: 1.8em;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    font-family: 'Kaushan Script', cursive;
}

header .mobile_presentation > img{
    display: block;
    width: 100%;
}

header .hidden_heading {
    position: relative;
    overflow: hidden;
}

header .hidden_heading > h1 {
    position: absolute;
    opacity: 0;
}

/******************************/
/********* NAVIGATION *********/
/******************************/

nav > ul {
    list-style: none;
    margin: 8px auto;
    display: flex;
    justify-content: center;
    flex-direction: row;
    padding: 0;
}

nav > ul > li {
    position: relative;
}

nav > ul > li > a, nav > ul > li > span {
    color: #878787;
    text-transform: uppercase;
    line-height: 1.3em;
    font-size: 1em;
    padding: 5px 40px;
    text-decoration: none;
    transition: color 300ms;
    letter-spacing: 1px;
    box-sizing: border-box;
    max-width: 200px;
    text-align: center;
    /*height: 100%;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
}
nav > ul > li > a:hover, 
nav > ul > li.active > a,
nav > ul > li > a.active { color: #262626; }

nav.dark {
    background-color: #ededed;
    position: relative;
    padding: 15px 0;
}
nav.dark::after {
    display: block;
    clear: both;
    content: "";
}

nav.dark > ul {
    float: right;
    margin: 0;
}

nav.dark > ul > li > a,
nav.dark > ul > li > span {
    padding: 15px 35px;
    max-width: 165px;
}

nav.dark a > img {
    position: absolute;
    top: 9%;
    left: 4%;
    height: 80%;
}

nav.wide_navigation > ul > li { width: 29%; }
nav.wide_navigation > ul > li > a { width: 100%; max-width: none; }

nav > ul ul {
    position: absolute;
    display: none;
    top: 70%;
    left: 50%;
    border: 1px solid #fff;
    background-color: #ededed;
    width: 80%;
    padding: 5px;
    margin: 0;
    opacity: 0.9;
    list-style: none;
}

nav > ul li:hover > ul {
    display: block;
}

nav > ul li > ul > li > a {
    display: block;
    width: 100%;
    border-top: 1px solid #262626;
    color: #262626;
    text-align: center;
    text-decoration: none;
    padding: 8px 5px;
    box-sizing: border-box;
    line-height: 1.2em;
    font-size: 0.95em;
    transition: color 100ms;
}
nav > ul li > ul > li > a::after { content: "..."; }
nav > ul li > ul > li:last-child > a { border-bottom: 1px solid #262626; }
nav > ul li > ul > li > a:hover { color: rgb(139, 12, 32); }

/******************************/
/*********** CONTENT **********/
/******************************/

.lower {
	text-transform: lowercase;
}

.content h2,
.content h1,
.content h1.basic {
    width: 80%;
    color: #262626;
    letter-spacing: 1px;
    text-align: center;
    margin: 50px auto;
    font-size: 2.4em;
    font-weight: normal;
    line-height: 1.5em;
}

.content p,
.content h3 {
    width: 60%;
    color: #878787;
    letter-spacing: 1px;
    text-align: center;
    margin: 50px auto;
    font-size: 1.8em;
    font-weight: normal;
    line-height: 1.5em;
}
.content.kontakt p {font-size:1.3em}
.content h3:last-of-type { margin-bottom: 5px; }
.content p.wide { width: 80%; }
.content h2 + p.wide { margin-top: -35px; }

.content ul.content_navigation {
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 25px 0;
    background-color: #ededed;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.content ul.content_navigation li::before {
    content: "•";
    color: #878787;
    font-size: 1.3em;
    display: block;
    float: left;
    padding: 17px 0 0px 0;
    font-weight: bold;
}
.content ul.content_navigation li:first-child::before { display: none; }

.content ul.content_navigation li > a {
    color: #878787;
    font-size: 1.8em;
    text-decoration: none;
    padding: 10px 10px 0 10px;
    display: flex;
    transition: color 300ms;
    letter-spacing: 1px;
    text-transform: lowercase;
}
.content ul.content_navigation li > a:hover { color: #262626; }

.content .images {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 40px auto;
}

.content .images > img {
    display: block;
    margin: 8px;
}

.content .images.size_322x240 > img {
    width: 25%;
    height: 100%;
}
.content .images.size_294x350 > img {
    width: 25%;
    height: 100%;
}

.content .nearest_event {
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    background-color: #ededed;
}

.content .nearest_event p {
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 1.4em;
}
.content .actual_event {
    width: 90%;
    margin: 0 auto;
    padding: 35px 20px;
    box-sizing: border-box;
    background-color: transparent;
    border-bottom: 1px solid #cdcdcd;
}

.content .actual_event p {
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 1.4em;
}
.content .actual_event p a {
	display: inline-block;
}
.content .actual_event p img {
	margin: 10px 10px 0 10px;
}
.content .actual_event p.img {
	padding: 20px 0 0 0;
}
.content .actual_event p.bigger {
	font-size: 1.8em;
}
.content .actual_event p.text {
	font-size: 1.3em;
	padding-top: 20px;
}

.colored_text.blue { color: rgb(0, 125, 171); }
.colored_text.red { color: rgb(139, 12, 32); }
.colored_text.green { color: rgb(0, 120, 107); }
.colored_text.black { color: #000; }

/******************************/
/******* MARGINED LIST ********/
/******************************/

.margined_list {
    display: flex;
    justify-content: center;
}
.margined_list > * {
    width: calc(25% - 8px);
    margin: 4px;
}

/******************************/
/********** GALERY ************/
/******************************/

ul.galery {
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
    width: 90%;
    margin: 10px auto;
}

ul.galery li > img {
    width: 100%;
    display: block;
}

/******************************/
/******** PRODUCT NAV *********/
/******************************/

.content .products_navigation {
    width: 90%;
    margin: 20px auto;
}

.content .products_navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
}

.content .products_navigation ul li {
    display: flex;
    margin-bottom: 3px;
    flex-direction: column;
    justify-content: center;
}

.content .products_navigation ul li > a {
    width: 100%;
    text-decoration: none;
}
.content .products_navigation ul li > a:hover > span {
    color: #262626;
}

.content .products_navigation ul li > a > span { 
    width: 100%; 
    padding: 5px;
    box-sizing: border-box;
    background-color: #ededed;
    color: #878787;
    display: block;
    text-align: center;
    margin: 0 0 8px 0;
    font-size: 1.5em;
    transition: color 100ms;
    text-transform: lowercase;
}
.content .products_navigation ul li > a > span::after { content: "..."; }

.content .products_navigation ul li > a img {
    width: 100%;
    display: block;
}

/**********************************/
/******** FOTOGALERIE NAV *********/
/**********************************/

.content .fotogalerie_navigation {
    width: 90%;
    margin: 20px auto;
}

.content .fotogalerie_navigation h1 {
	margin-top: 0;
}

.content .fota {
	width: 70%;
	float:right;
}

.content .fotogalerie_navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
}

.content .fotogalerie_navigation ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
}

.content .fotogalerie_navigation ul li > a {
    width: 70%;
    text-decoration: none;
    margin: 0 auto;
}

.content .fota ul li > a {
    width: 85%;
    text-decoration: none;
}

.content .fotogalerie_navigation ul li > a:hover > span {
    color: #262626;
}

.content .fotogalerie_navigation ul li > a > span { 
    width: 100%; 
    padding: 5px;
    box-sizing: border-box;
    background-color: transparent;
    color: #878787;
    display: block;
    text-align: center;
    margin: 0 0 8px 0;
    font-size: 1.1em;
    transition: color 100ms;
    text-transform: lowercase;
}
.content .fotogalerie_navigation ul li > a > span::after { content: "..."; }

.content .fotogalerie_navigation ul li > a img {
    width: 100%;
    display: block;
}

.content .fotogalerie_left {
	width: 30%;
	text-transform: uppercase;
	box-sizing: border-box;
	padding-left: 60px;
}

.content .fotogalerie_left h2 {width:100%;padding:45px 0 0 0;font-size:14pt;color:#878787;text-align:left;background: transparent;}
.content .fotogalerie_left ul {padding:10px 0 30px 0 !important;float:left;list-style:none;}
.content .fotogalerie_left ul li {margin-bottom:5px !important;padding-left:0;font-size:14pt;}
.content .fotogalerie_left ul li a {color:#866a67;text-decoration:none;}


/******************************/
/*********** FOOTER ***********/
/******************************/

footer {
    margin: 175px 0 0;
}

footer .footer_info {
    width: 90%;
    margin: 8px auto;
    background: linear-gradient(to left, transparent, #ededed, transparent);
    background: -webkit-linear-gradient(left, white, #ededed 50%, white);
}

footer > p {
    color: #878787;
    text-align: right;
    font-size: 0.75em;
    padding: 0;
    margin: 0 auto;
    letter-spacing: 1px;
    width: 90%;
}

footer .footer_info .footer_boxes {
    margin: 0 0 50px 0;
}

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

footer .footer_info .footer_boxes > .box {
    width: 33.33%;
    float: left;
    text-align: center;
}

footer .footer_info .footer_boxes > .box h4 {
    width: 100%;
    display: block;
    font-size: 1.5em;
    color: #878787;
    font-weight: normal;
    margin: 0;
    padding: 10px 0 20px 0;
    letter-spacing: 1px;
}
footer .footer_info .footer_boxes > .box h4::after { content: "..."; }

footer .footer_info .footer_boxes > .box .box_content_container {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
}
footer .footer_info .footer_boxes > .box .box_content_container > * {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: bold;
    color: #878787;
}

footer .footer_info .footer_boxes > .box .box_content_container {
    font-size: 1.45em;
    padding: 0;
    margin: 0;
    letter-spacing: 1px;
    color: #878787;
    text-decoration: none;
}
footer .footer_info .footer_boxes > .box .box_content_container > * { transition: 300ms; }
footer .footer_info .footer_boxes > .box .box_content_container:hover > * { color: #262626; }

footer .footer_info .footer_boxes > .box .box_content_container > *:not(a) > .fa { 
    font-size: 1.3em; 
    padding: 0 7px 0 0;
    margin-top: -5px;
}

footer .footer_info .footer_boxes > .box .box_content_container > a {
    font-weight: normal;
    text-decoration: none;
    padding: 0 10px;
}

footer .footer_info .footer_boxes > .box .box_content_container > a > .fa.fa-instagram {
    width: 32px;
    height: 32px;
    font-size: 25px;
    line-height: 31px;
    color: #fff;
    border-radius: 25%;
    opacity: 0.8;
    background:
        linear-gradient(#400080, transparent), 
        linear-gradient(200deg, #d047d1, #ff0000, #ffff00);
}
footer .footer_info .footer_boxes > .box .box_content_container > a > .fa.fa-facebook-square {
    color: #3b5998;
    font-size: 36px;
    margin: -2px 0 0;
}

div.mapa {width:70%;margin:0 auto;}
div.mapa iframe {width:100%;height:50vw}

.content a.next {
    color: #000000;
    font-size: 1em;
    text-decoration: none;
    padding: 10px 20px;
    transition: color 300ms;
    letter-spacing: 1px;
    text-transform: lowercase;
}
p#buttons {margin-top:35px}