:root{
    --primary-color: rgb(170, 47, 58);
    --secoundary-color: rgb(24, 33, 158);
    --info: rgb(241, 234, 225);
    --button-background: #0cf;
    --modal-background: #b9b9b9;
    --header-color: #b31822;
}
/**
Fonts
*/
/* roboto-300 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-v20-latin-300.eot');
    /* IE9 Compat Modes */
    src: local('Roboto Light'), local('Roboto-Light'),
        url('../fonts/roboto-v20-latin-300.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/roboto-v20-latin-300.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/roboto-v20-latin-300.woff') format('woff'),
        /* Modern Browsers */
        url('../fonts/roboto-v20-latin-300.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/roboto-v20-latin-300.svg#Roboto') format('svg');
    /* Legacy iOS */
}

/* roboto-regular - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v20-latin-regular.eot');
    /* IE9 Compat Modes */
    src: local('Roboto'), local('Roboto-Regular'),
        url('../fonts/roboto-v20-latin-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/roboto-v20-latin-regular.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/roboto-v20-latin-regular.woff') format('woff'),
        /* Modern Browsers */
        url('../fonts/roboto-v20-latin-regular.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/roboto-v20-latin-regular.svg#Roboto') format('svg');
    /* Legacy iOS */
}

/* roboto-700 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v20-latin-700.eot');
    /* IE9 Compat Modes */
    src: local('Roboto Bold'), local('Roboto-Bold'),
        url('../fonts/roboto-v20-latin-700.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/roboto-v20-latin-700.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/roboto-v20-latin-700.woff') format('woff'),
        /* Modern Browsers */
        url('../fonts/roboto-v20-latin-700.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/roboto-v20-latin-700.svg#Roboto') format('svg');
    /* Legacy iOS */
}
/**
Stucture
*/
@media (min-width: 576px){
    .row {
        margin-top: 2rem;
        margin-bottom: 2rem;
        clear: both;
    }
    .container {
        max-width: 100vw;
    }
}
@media (min-width: 768px){
    .row {
        margin-top: 2rem;
        margin-bottom: 2rem;
        clear: both;
    }
    .container {
        max-width: 100vw;
    }
}
@media (min-width: 992px){
    .row {
        margin-top: 2rem;
        margin-bottom: 2rem;
        clear: both;
    }
    .container {
        max-width: 100vw;
    }
}
@media (min-width: 1200px){
    .row {
        margin-top: 2rem;
        margin-bottom: 2rem;
        clear: both;
    }
    .container {
        max-width: 80vw;
    }
}




.row.wide {
	padding: 10vw !important;
	margin: 0 -10vw !important;
	background: var(--info);
}

/**
Main
*/
#slogan {
	font-size: 0.9rem;
	display: block;
	color: #fff;
	text-align: center;
	margin-top: -30px;
}
body{
    font-family: 'Roboto',Univers,arial, 'sans serif';
    font-size: 18px;
    padding-top: 11rem;
}
a {
    color: var(--primary-color);
}
iframe {
    width: 100%;
    height: 100vh;
    border: none;
    overflow: auto;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6, strong {
	font-family:'Roboto',Helvetica,arial !important;
}
h1 {
    font-weight: 300;
	font-size: 2.5rem !important;
    margin: 3rem 0;
}
h2 {
    font-size: 2rem !important;
    margin: 2rem 0;
}
h3 {
    font-size: 1.5rem !important;
}
h4 {
    font-size: 1.2rem !important;
}
@media(max-width: 576px){
    h1 {
        font-size: 1.6rem !important;
    }
    h2 {
        font-size: 1.2rem !important;
    }
    h3 {
        font-size: 1rem !important;
    }
}
img {
	width: 100%;
}
/**
Header
*/
.scrolled #slogan{
    display: none;
}
.scrolled .navbar-toggler {
	top: 20px;
}
.navbar-toggler {
	border: 1px solid #fff;
	border-radius: 50px;
	color: #fff;
	padding: 0;
	line-height: 1.4;
	position: absolute;
	right: 30px;
	top: 80px;
    
}
.navbar-brand img {
	width: 230px;
    margin: 1rem 0 2rem;
    transition: all 0.2s linear;
}
header.page, nav{
    background-color: var(--header-color) !important;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9;
}

.navbar .nav-link {
	color: #fff;
	font-size: 1.3rem;
	font-weight: normal;
	border-bottom: 3px solid var(--header-color);
}
.nav-link:hover {
	border-bottom: 3px solid #fff;
}
input.searchmuseum {
	border-radius: 50px;
	width: 10vw;
	padding: 0.5rem;
    border: none;
    transition: .4s;
}
#searchmuseum:focus {
	width: 100%;
}
#navbarNav {
    background: var(--header-color);
    color:#fff;
}

.page.scrolled .navbar {
	height: 70px;
}
.scrolled .navbar img {
	width: 100px !important;
	margin: 0;
}
@media(max-width: 576px) {
    #navbarNav {
        background: var(--header-color);
        color: #fff;
        padding: 1rem;
        width: 90vw;

        a {
            color: #fff;
        }
    }
    .page.scrolled .navbar-toggler {
        top: 20px;
    }
}
button.language {
	background: transparent;
	border: none;
	color: #fff;
}
body.page .container.content {
	margin-top: 3rem;
}
.infobox {
    background-color: var(--info);
    padding: 2rem;
}
/**
Footer
*/
footer {
    text-align: center;
    background: #ccc;
    padding-top: 1.5rem;
    margin-top: 3rem !important;
    .container {
        display: block;
        text-align: center;
        height: 40px;
        color: #000;
    }
    .nav-link {
        padding: 0 1rem;
        cursor: pointer;
        display: inline;
    }
    .footer {
        min-height: 100px;
        margin-top: 10rem;
        background: var(--primary-color);
        color: #fff;
        padding-top: 1rem;
    }
    .copy {
        padding: 1rem;
        display: block;
        color: var(--primary-color);
        background: #eee;
        margin: 1rem 0 0;
      }
}
@media(max-width: 576px) {
    .footer {
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
            min-height: 80px !important;
            display: block;
    
            & .container {
                display: block;
                text-align: center;
                color: #000;
                height: 80px;
            }
        }
}
/*
Elements
*/
#searchform {
	background: #fff;
	border-radius: 20px;
	position: absolute;
	right: 0;
	top: 70px;
	border: 1px solid #eee;
    box-shadow: rgba(25, 25, 25, 0.16) 0px 2px 8px;
}
.scrolled #searchform {
    top: 10px;
}
#results {
	display: none;
	padding: 0.5rem;
}
#results strong {
	font-family: 'Roboto',arial,'sans-serif';
}
#searchmuseum:focus + #results,#searchform:focus #results,#searchform:hover #results {
	display: block;
	max-width: 30vw;
	overflow: auto;
	max-height: 90vh;
}
@media(max-width: 576px){
    #searchform {
        display: none;
    }
}
.btn{
    border-radius: 60px;
}
.btn-primary {
	color: #fff;
	background-color: transparent;
	border-color: transparent;
}
.btn-big {
	display: inline-block;
	padding: 0.75rem 1.25rem;
	border-radius: 10rem;
	color: #333;
	text-transform: uppercase;
	font-size: 1rem;
	letter-spacing: 0.15rem;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
	z-index: 1;
	border: 1px solid #929292;
}
.btn-primary:hover {
	color: #fff;
	background-color: #fff;
	border-color: #fff;
}
.btn-big::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #f4f4f4;
	border-color: #abb9b9;
	border-radius: 10rem;
	z-index: -2;
}
  .btn-big:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #008fb3;
    transition: all 0.3s;
    border-radius: 10rem;
    z-index: -1;
  }
  .btn-big:hover {
    color: #fff;
  }
  .btn-big:hover:before {
    width: 100%;
  }
.outline-box {
    border: 1px solid #333;
    border-radius: 20px;
    padding: 1rem;
}
  /**
  Card
  */
.card {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	border: 1px solid rgba(0,0,0,.125);
	border-radius: 15px !important;
	overflow: hidden;
	box-shadow: rgba(25, 25, 25, 0.16) 0px 2px 8px;
    height: 100%;
}
.col-md-12 .card{
    height: auto;
}
.card-img-left {
	width: 100%;
	float: left;
}
.card.custom-card {
	flex-direction: row;
}
.card.custom-card .card-img-left{
	width: 33%;
}
.card.custom-card .card-body {
	width: 66%;
}
.card-image {
	height: 200px;
	background-origin: content-box !important;
	background-attachment: local !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: center center !important;
}
.card.magazin{
    background-color: var(--info);
}
.card.magazin img {
	width: 200px !important;
}
.card h2 {
	padding: 0;
}
.card-text img + small {
    margin-bottom: 1rem;
    display: block;
  }
.card-title {
    margin-bottom: .75rem;
    font-weight: 900;
}
/*
    Museum overview
**/
.content.museums {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 3rem;
    .card{
        flex: 1 0 32%;
        margin: 0.5rem;
    }
}
@media (max-width: 768px){
    .content.museums {
        display: flex;
        flex-wrap: wrap;
        padding-bottom: 3rem;
        .card{
            flex: 1 0 100%;
        }
    }
    .card {
        flex: 1 0 50%;
        margin: 0.5rem;
        max-height: 400px;
    }
}
@media (max-width: 576px){
    body {
            padding-top: 7rem;
        }
    .content.museums {
        display: block !important;
        padding-bottom: 3rem;
        .card {
            position: relative;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-direction: column;
            flex-direction: column;
            min-width: 0;
            word-wrap: break-word;
            background-color: #fff;
            background-clip: border-box;
            border: 0;
            border-radius: 0;
            overflow: hidden;
            box-shadow: none;
            height: 100%;
            max-height: none;
            margin: 0;
            .card-body {
                    -ms-flex: 1 1 auto;
                    flex: 1 1 auto;
                    padding: 0;
                }
            }
    }
    .content #content {
        padding: 0;
    }
    input.searchmuseum {
        border-radius: 50px;
        width: 30vw;
        padding: 0.5rem;
        border: none;
    }
    .promocode p {
        font-size: 0.9rem;
        text-align: center;
    }
    .box.logo img {
        width: 100px;
    }
    .box .navbar-toggler {
        top: 40px;
    }
    .col-md-3.mobil {
        width: 50%;
        margin-bottom: 1rem;
    }
    .mobil.outline-box {
        max-height: 12rem;
        /* Höhe im “eingeklappten” Zustand */
        overflow: hidden;
        position: relative;
        transition: max-height 0.4s ease;
    }

    /* Optionaler Fade-out-Hinweis am unteren Rand */
    .mobil.outline-box::after {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 3rem;
        pointer-events: none;
        background: linear-gradient(to bottom,
                rgba(255, 255, 255, 0),
                rgba(255, 255, 255, 1));
    }

    /* Voll ausfahren bei Fokus oder Hover */
    .mobil.outline-box:focus,
    .mobil.outline-box:focus-within,
    .mobil.outline-box:hover {
        max-height: none;
    }

    .mobil.outline-box:focus::after,
    .mobil.outline-box:focus-within::after,
    .mobil.outline-box:hover::after {
        opacity: 0;
    }
}
/**
Modal
*/
.modal-dialog {
    width: 100vw;
    margin: 0;
    height: 100vh;
}
.modal-content {
    position: relative;
    background-color: var(--modal-background);
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    outline: none;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    height: 100vh;
    overflow: hidden;
}
/**
audio guides
*/
#listing {
	padding: 0;
}