/*******************************
 * BASICS
 */

html {
  font-family: "Open Sans";
  font-size: 12pt;
}

body {
  background-color: #f5f5f5;
  color: #000000;
}

.bluePage {
  background-color: #2c3f54;
  color: #f0f0f0;
  text-align: center;
  padding-top: 2.5rem;
}

.beigePage {
  background-color: #e1c7a5;
  padding-top: 4rem;
}

.beigePage.hasAnimations {
  padding-top: 2rem;
}

h1 {
  font-family: "PT Serif", serif;
  font-size: 2.2rem;
  font-weight: 400;
  padding-bottom: 1rem;
}

h2 {
  font-family: "PT Serif", serif;
  font-size: 2rem;
  line-height: 2.6rem;
  font-weight: 400;
  padding-bottom: 0.8rem;
}

h3 {
  font-family: "PT Serif", serif;
  font-size: 1.8rem;
  font-weight: 400;
  padding-bottom: 0.6rem;
  text-align: left;
}

h4 {
  font-family: "Open Sans";
  font-size: 1.2rem;
  font-weight: 700;
  padding-bottom: 0.4rem;
}

em {
  font-weight: 700;
  font-style: normal;
}

.dotList {
  list-style: outside;
  padding-left: 1rem;
  text-align: left;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.6rem;
}

.buttonBox {
  background-color: #2c3f54;
  color: #f0f0f0;
  font-weight: 400;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  padding-left: 2rem;
  padding-right: 2rem;
  border-radius: 16rem;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-transform: uppercase;
}

.buttonBox.withIcon {
  padding-left: 1rem;
}

.downloadIcon {
  position: relative;
  height: 1.4rem;
  width: 1.4rem;
  padding-right: 0.1rem;
  top: 0.5rem;
}

.downloadIcon path {
  transition: fill 0.3s ease, color 0.3s ease;
}

.buttonBox:hover .downloadIcon path {
  fill: #2c3f54;
}

.buttonBox:hover {
  background-color: #f0f0f0;
  color: #2c3f54;
}

.buttonBox.gold {
  background-color: #ebc17d;
  color: #000000;
}

.buttonBox.gold:hover {
  background-color: #f0f0f0;
  color: #af9263;
}

.halfLeftRightPadding {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.pHeader {
  font-weight: 700;
  font-size: 1.3rem;
  padding-bottom: 0.2rem;
}

.navPusher {
  padding-bottom: calc(1rem + 103px);
}

.inlineLink {
  color: #000000;
  text-decoration: underline;
}

/*******************************
 * WRAPPER
 */

.wrapper1200 {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

.wrapper1400 {
  width: 90%;
  max-width: 1200px;
  text-align: center;
  margin: auto;
}

.wrapper1400x {
  width: 80%;
  max-width: 1500px;
  text-align: center;
  margin: auto;
}

.wrapper1430 {
  width: calc(90% + 30px);
  max-width: 1230px;
  text-align: center;
  margin: auto;
}

.wrapper1130 {
  width: calc(90% + 30px);
  max-width: 1130px;
  text-align: center;
  margin: auto;
}

.wrapper1000 {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

.wrapper1100 {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.wrapper75 {
  width: 75%;
  margin: auto;
}

.quarterBlock {
  vertical-align: top;
  display: inline-block;
  width: calc(100% / 4 - 30px - 1px);
  padding-left: 15px;
  padding-right: 15px;
}

.thirdBlock {
  vertical-align: top;
  display: inline-block;
  width: calc(100% / 3 - 30px - 1px);
  padding-left: 15px;
  padding-right: 15px;
  text-align: right;
}

.halfBlock {
  vertical-align: top;
  display: inline-block;
  width: calc(100% / 2 - 30px - 1px);
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 4rem;
}

.halfBlock.noPadding {
  width: calc(100% / 2 - 1px);
}

.strangeWidth {
  width: 10rem;
  display: inline-block;
  text-align: left;
  vertical-align: text-top;
}

.strangeWidth2 {
  width: 20rem;
}

.inline-block {
  display: inline-block;
}

.table {
  display: table;
}

.tr {
  display: table-row;
}

.td {
  display: table-cell;
  text-align: left;
}

p,
.td {
  text-align: left;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.6rem;
}

.centerAlign p,
.centerAlign .td {
  text-align: center;
}

p.smaller {
  font-size: 1rem;
  line-height: 1.6rem;
}

ul li {
  text-align: left;
}

a {
  text-align: left;
  outline: transparent;
}

.blackA {
  color: #000000;
}
.blackA:hover {
  border-bottom: 1px solid #000000;
}
.blackAunderscore {
  color: #000000;
  border-bottom: 1px solid #000000;
  padding-bottom: 1px;
}
.blackAunderscore:hover {
  border-bottom: 2px solid #000000;
  padding-bottom: 0px;
}
.whiteA {
  color: #f0f0f0;
}
.whiteA:hover {
  border-bottom: 1px solid #f0f0f0;
}

/*******************************
 * MODIFIER
 */

.block {
  display: block;
}
.nodecoration {
  text-decoration: none;
}
.clearBoth {
  clear: both;
}
.noWidth,
.floatLeft.noWidth,
.floatRight.noWidth {
  width: auto;
}
.capitals {
  text-transform: uppercase;
}
.bold {
  font-weight: bold;
}
.italic {
  font-style: italic;
}
.small {
  font-size: 0.8rem;
}
.centerAlign {
  text-align: center;
}
.leftAlign {
  text-align: left;
}
.rightAlign {
  text-align: right;
}
.inline {
  display: inline-block;
}
.line15 {
  line-height: 1.5rem;
}
.black {
  color: #000000;
}
.blue {
  color: #2c3f54;
}
.paddedFromTop1 {
  margin-top: 1rem;
}
.paddedFromTop2 {
  margin-top: 2rem;
}
.noPaddingBottom {
  padding-bottom: 0rem;
}
.paddingBottom05 {
  padding-bottom: 0.5rem;
}
.paddingBottom08 {
  padding-bottom: 0.8rem;
}
.paddingBottom1 {
  padding-bottom: 1rem;
}
.paddingBottom2 {
  padding-bottom: 2rem;
}
.paddingBottom25 {
  padding-bottom: 2.5rem;
}
.paddingBottom3 {
  padding-bottom: 3rem;
}
.paddingBottom4 {
  padding-bottom: 4rem;
}
.noPaddingTop {
  padding-top: 0;
}
.noMarginBottom {
  margin-bottom: 0rem;
}
.relative {
  position: relative;
}
.underline {
  text-decoration: underline;
}

.blockElement {
  height: 1px;
  display: block;
}

.noPadding {
  padding-left: 0rem;
  padding-right: 0rem;
}

/*******************************
 * IMAGES
 */

.img {
  width: 100%;
  display: inline-block;
  background-size: cover;
}

.patternDom {
  width: 120px;
  height: 28px;
  background-image: url(../img/patternDom.svg);
  margin-bottom: 1.5rem;
}

.slider01 {
  background-image: url(../img/slider01.jpg);
  background-position: center;
  display: block;
}

.slider03 {
  background-image: url(../img/slider03.jpg);
  background-position: center;
  display: block;
}

.slider04 {
  background-image: url(../img/slider04.jpg);
  background-position: center;
  display: block;
}

.slider05 {
  background-image: url(../img/slider05.jpg);
  background-position: center;
  display: block;
}

.bgimgindex02 {
  background-image: url(../img/bgimgindex02.jpg);
  background-position: center;
  display: block;
  height: 80vh;
  min-height: 400px;
}

.bgmap {
  background-image: url(../img/bgmap.jpg);
  background-position: center;
  display: block;
  height: 60vh;
  min-height: 400px;
}

.bgtitle {
  background-position: center;
  display: block;
  height: calc(100vh - 11.3rem - 136px);
  min-height: 400px;
}

.bgimghistory02 {
  background-image: url(../img/bgimghistory02.jpg);
  background-position: center;
  display: block;
  height: 80vh;
  min-height: 400px;
  z-index: 1;
}

.bgimghistory01 {
  background-image: url(../img/bgimghistory01.jpg);
  height: calc(100vh - 11.3rem - 76px);
}

.bgimgvisit01 {
  background-image: url(../img/bgimgvisit01.jpg);
}
.bgimgcathedral01 {
  background-image: url(../img/bgimgcathedral01.jpg);
}
.bgimgsouthtower01 {
  background-image: url(../img/bgimgsouthtower01.jpg);
}
.bgimgnorthtower01 {
  background-image: url(../img/bgimgnorthtower01.jpg);
}
.bgimgcatacombs01 {
  background-image: url(../img/bgimgcatacombs01.jpg);
}
.bgimgtreasury01 {
  background-image: url(../img/bgimgtreasury01.jpg);
}
.bgimgallinclusive01 {
  background-image: url(../img/bgimgallinclusive01.jpg);
}
.bgimgattic01 {
  background-image: url(../img/bgimgattic01.jpg);
}
.bgimggroups01 {
  background-image: url(../img/bgimggroups01.jpg);
}

.serviceImg,
.additionalImg,
.visitImg,
.kapitelImg {
  width: 100%;
  transition: all 0.5s ease 0.1s;
}

.serviceImg:hover,
.additionalImg:hover,
.visitImg:hover {
  transform: scale(1.05);
}

.imgBlock {
  display: block;
  margin-bottom: 1.5rem;
  overflow: hidden;
  line-height: 0;
}

/*******************************
 * HEADPAGE
 */

.headerFullBox {
  height: 100vh;
  min-height: 800px;
  position: relative;
  width: 100%;
  z-index: 1;
  overflow: hidden;
  background-color: #000000;
}

.headPage {
  height: 100vh;
  min-height: 800px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.headerFullBox .headPage {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s ease 0.1s;
}

.headerFullBox .headPage.shown {
  display: block;
  opacity: 1;
  z-index: 2;
}

.headerFullBox .slider {
  position: absolute;
  z-index: 3;
  top: 50%;
  cursor: pointer;
}

.headerFullBox .slider svg {
  border-radius: 2rem;
  width: 2rem;
  height: 2rem;
  padding: 0.5rem;
  transition: all 0.5s ease;
}

.headerFullBox .slider svg g path.arrow {
  fill: #c0c0c0;
  transition: all 0.5s ease;
}

.headerFullBox .slider:hover svg g path.arrow {
  fill: #f0f0f0;
}

.headerFullBox .slider.left {
  left: 2rem;
}

.headerFullBox .slider.right {
  right: 2rem;
}

.headerFullBox #loadBar {
  position: absolute;
  width: 0%;
  bottom: 0;
  left: 0;
  background-color: #c0c0c0;
  height: 2px;
  z-index: 4;
  transition: all 0.2s linear;
}

.headBoxPosition {
  position: absolute;
  bottom: 5rem;
  width: 42.5rem;
  max-width: 90%;
}

.headBox {
  background-color: rgba(44, 63, 84, 0.7); /* chrome does not understand #2c3f54ad */
  background-position: top;
  position: relative;
  color: #f0f0f0;
  padding: 2.5rem;
  padding-bottom: 3rem;
}

.headBox.red {
  background-color: rgba(154, 13, 44, 0.7);
}

.redBoxed {
  background-color: rgba(154, 13, 44, 0.4);
  margin-left: 3rem;
  margin-right: 3rem;
  padding: 2rem;
}

.attractionBox .redBoxed p {
  padding: 0;
  line-height: 1.5;
}

.engray {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  z-index: 3;
}

.engray .coronaBox {
  height: auto;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(154, 13, 44, 1);
  color: #f0f0f0;
  width: 50rem;
  max-width: 90%;
  padding: 3.5rem;
}

.coronaBox .closer {
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
  font-size: 2.5rem;
  padding: 0.5rem;
  font-weight: bold;
}

.coronaBox .headDate {
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 1rem;
  padding-bottom: 1rem;
}

.coronaBox .headTitle {
  font-family: "Open Sans";
  font-size: 3.3rem;
  line-height: 1.1;
  font-weight: 700;
  padding-bottom: 0;
  text-transform: uppercase;
  text-align: left;
  padding-bottom: 1.2rem;
  letter-spacing: 1px;
  max-width: calc(100% - 2rem);
}

.coronaBox .headSubline {
  font-size: 1.8rem;
  line-height: 1.1;
  color: #cecbcb;
  padding-bottom: 0.8rem;
  margin-bottom: 1rem;
  font-style: italic;
  font-weight: 400;
  border-bottom: solid 1.5px #ebc17d;
}

.coronaBox .smaller {
  font-size: 1.2rem;
  line-height: 1.4;
}

.overflowHidden {
  overflow: hidden;
}

.headDate {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1rem;
  padding-bottom: 1rem;
}

.headTitle {
  font-family: "Open Sans";
  font-size: 1.9rem;
  line-height: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  border-bottom: solid 1.5px #ebc17d;
}

.headTitle.noBottomBorder {
  border-bottom: none;
  line-height: 2.5rem;
  margin-bottom: 0;
}

.headSubline {
  font-size: 1.1rem;
  line-height: 1.3rem;
  color: #cecbcb;
  padding-bottom: 0.8rem;
  margin-bottom: 1rem;
  font-style: italic;
  font-weight: 400;
}

.headBuyTickets {
  position: absolute;
  bottom: -1.3rem;
  right: 2.5rem;
}

/*******************************
 * HISTORY
 */

.historyLine {
  position: absolute;
  left: calc(50% - 2px);
  width: 4px;
  height: 100%;
  background-color: #2c3f54;
  padding-top: -2.5rem;
  z-index: 2;
}

.kapitelLine {
  position: absolute;
  left: calc(50% - 2px);
  width: 4px;
  background-color: #2c3f54;
  top: 0rem;
  bottom: 15rem;
}

.histPusher {
  height: 1.5rem;
}

.historyToday {
  border: 4px solid #2c3f54;
  border-radius: 25px;
  display: inline-block;
  margin: auto;
  padding: 0.75rem 1.5rem 0.75rem;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.largeDot {
  width: 42px;
  height: 42px;
  background-image: url(../img/large-dot.svg);
  position: absolute;
  left: calc(50% - 21px);
  top: calc(50% - 21px);
  z-index: 3;
}

.smallDot {
  width: 42px;
  height: 42px;
  background-image: url(../img/small-dot.svg);
  position: absolute;
  top: calc(50% - 21px);
}

.leftAlign .smallHistoryBox .smallDot {
  right: calc(3rem - 21px);
}

.rightAlign .smallHistoryBox .smallDot {
  left: calc(3rem - 21px);
}

.pusher {
  padding-bottom: 1.5rem;
}

.bigHistoryBox {
  background-color: #f4dcbd;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
  padding: 1.5rem;
  text-align: left;
}

.smallHistoryBox {
  background-color: #f4dcbd;
  position: relative;
  display: inline-block;
  width: calc(50% - 4.5rem);
  text-align: left;
  padding-top: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 2rem;
}

.bigHistoryBox h3 {
  font-size: 3.2rem;
  font-family: "Open Sans";
  font-weight: 700;
}

.bigHistoryBox h3.small {
  font-size: 1.8rem;
}

.smallHistoryBox h3 {
  font-size: 2.5rem;
  font-family: "Open Sans";
  font-weight: 700;
}

.bigHistoryBox .subH3 {
  font-size: 1.3rem;
  font-weight: 700;
  padding-bottom: 1rem;
}

.smallHistoryBox .subH3 {
  font-size: 1.15rem;
  font-weight: 700;
  padding-bottom: 0.6rem;
}

.rightAlign .smallHistoryBox {
  padding-left: 6rem;
}

.leftAlign .smallHistoryBox {
  padding-right: 6rem;
}

.floatLeft {
  float: left;
  width: calc(50% - 3rem);
}

.floatRight {
  float: right;
  width: calc(50% - 3rem);
}

.historyImgWide {
  width: calc(50% - 3rem);
}

/*******************************
 * CONTACT
 */

.contactBlock {
  background-color: #f4dcbd;
  font-size: 0.8rem;
  position: relative;
  margin-bottom: 3rem;
}

.contactBlock .headline {
  background-color: #2c3f54;
  color: #f0f0f0;
  padding: 1.75rem 2rem 1.75rem;
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.6rem;
}

.contactBlock p {
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 0.9rem;
  line-height: 1.4rem;
}

.contactImg {
  width: 1.3rem;
  height: 1.3rem;
  vertical-align: middle;
  padding-right: 1rem;
}

.contactTable {
  padding: 1rem 2rem 1rem;
  bottom: 0;
}

.contactTable .tr .td {
  line-height: 2.3rem;
  font-size: 0.9rem;
}

/*******************************
 * ExpandBox
 */

.expandBox {
  background-color: #f4dcbd;
  margin-bottom: 1.5rem;
  padding: 1.5rem 2rem 1.5rem 4rem;
  position: relative;
}

.expandBox .title {
  font-family: "PT Serif", serif;
  font-size: 1.5rem;
  padding-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 700;
  display: inline-block;
  cursor: pointer;
}

.concerts .expandBox .title {
  margin-right: 15rem;
}

.expandBox .buttonBox {
  position: absolute;
  top: 2rem;
  right: 2rem;
  bottom: auto;
}

.expandBox .expandArrow {
  transition: all 0.3s ease;
  position: absolute;
  left: 2rem;
  top: 1.7rem;
  cursor: pointer;
}

.expandBox .expandArrow svg {
  width: 1.4rem;
  height: 1.4rem;
}

.expandBox .expandContent {
  overflow-y: hidden;
  max-height: 0px;
  transition: all 0.5s ease 0.1s;
}

.expandBox .expandContent p {
  padding-top: 0.5rem;
}

.expanded .expandArrow {
  transform: rotate(90deg);
}

/*******************************
 * VISIT
 */

.subline {
  font-size: 0.9rem;
  color: #444444;
  font-style: italic;
  padding-bottom: 0.9rem;
}

/*******************************
 * KAPITEL
 */

.kapitelImg {
  margin-bottom: 1rem;
}

/*******************************
 * ATTRACTION
 */

.attractionBox {
  background-color: #f4dcbd;
  font-size: 0.8rem;
  position: relative;
  margin-bottom: 4rem;
  text-align: right;
}

.attractionBox .headline {
  background-color: #2c3f54;
  color: #f0f0f0;
  padding: 2rem 3rem 2rem;
  font-family: "PT Serif", serif;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.9rem;
}

.attractionBox .pHeader {
  padding-bottom: 0.2rem;
}

.attractionBox p {
  padding-left: 3rem;
  padding-right: 3rem;
}

.attractionBox .table {
  padding-left: 3rem;
}

.attractionBox .table .tr .td {
  padding-right: 4rem;
}

.attractionBox .infoBox p {
  font-size: 0.8rem;
  line-height: 1.1rem;
}

.attractionBox .infoBox {
  padding-bottom: 3rem;
  padding-right: 16rem;
}

.attractionImg {
  width: 100%;
}

.attractionImg.smaller {
  width: 75%;
}

.attractionBox .buttonBox {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  line-height: 1.2rem;
}

.attractionBox .buttonBox.allInclusive {
  bottom: 7rem;
}

.attractionA {
  color: #f0f0f0;
  font-family: "PT Serif", serif;
  vertical-align: middle;
}

.attractionNav {
  position: absolute;
  top: 1rem;
}

.attractionNav.left {
  left: 0rem;
}

.attractionNav.right {
  right: 0rem;
  vertical-align: middle;
}

.attractionNavImg {
  width: 1.2rem;
  height: 1.2rem;
  vertical-align: middle;
}

.attractionNavImg.left {
  padding-right: 0.5rem;
}

.attractionNavImg.right {
  padding-left: 0.5rem;
}

/*******************************
 * TICKETS
 */

.ticketBlock {
  background-color: #f4dcbd;
  font-size: 0.8rem;
  position: relative;
}

.ticketBlock .headline {
  background-color: #2c3f54;
  color: #f0f0f0;
  padding: 1.75rem 2rem 1.75rem;
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.5rem;
}

.ticketBlock p {
  padding: 0rem 2rem 2rem;
  font-size: 1rem;
  line-height: 1.4rem;
}

.ticketTable {
  padding: 0rem 2rem 2rem;
  width: calc(100% - 4rem);
}

.ticketTable .tr .td {
  line-height: 1.5rem;
  font-size: 1rem;
}

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

#header {
  width: 100%;
  padding-top: 0.5rem;
  background-color: #e1c7a5;
  transition: background-color 0.3s ease;
  z-index: 3;
  text-align: center;
  font-size: 0.85rem;
  position: absolute;
}

#header .wrapper1400 {
  position: relative;
}

#header.transparent {
  background-color: transparent;
}

#headerPusher {
  height: 115px;
}

#headerPusher.withSub {
  height: 176px;
}

#domkirche {
  display: block;
  width: 190px;
  height: 90px;
}

#header #domkirche path,
#header #domkirche polygon {
  fill: #000000;
}

#header.transparent #domkirche path,
#header.transparent #domkirche polygon {
  fill: #f0f0f0;
}

#header .inline-block {
  vertical-align: middle;
}

#header a {
  color: #000000;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem;
}

#header a.selected {
  border-bottom: solid #000000 1px;
}

#header a.noPadding {
  padding: 0;
}

#header.transparent a {
  color: #f0f0f0;
}

#header .wrapper1400 {
  overflow: hidden;
}

#headerContent {
  max-height: calc(90px + 1rem);
  transition: all 0.3s ease;
}

.menuButton {
  position: absolute;
  right: 2rem;
  top: 2rem;
  display: block;
  width: 30px;
  z-index: 5;
}

.navCenter {
  display: inline-block;
}

.navLeft {
  position: absolute;
  top: 45px;
  right: calc(50% + 95px + 1rem);
  display: table;
  height: 2.5rem;
}

.navRight {
  position: absolute;
  top: 45px;
  left: calc(50% + 95px + 1rem);
  display: table;
  height: 2.5rem;
}

#searchbar {
  position: relative;
  display: inline-block;
}

#searchInput {
  width: 80px;
  padding: 0.5rem;
  padding-left: 2.2rem;
  border: 0;
  border-radius: 16px;
  background-color: #f0f0f0;
}

#searchbar #lupe {
  left: 10px;
  top: 0.5rem;
  position: absolute;
  height: 1.3rem;
  width: 1.3rem;
}

.navBlock {
  display: table-cell;
  vertical-align: middle;
  padding-left: 2rem;
  padding-right: 2rem;
}

.headImage {
  fill: #f0f0f0;
}

.nav.left {
  float: left;
}

.nav.right {
  float: right;
}

.subHeader,
.mobileSubHeader {
  background-color: #f4dcbd;
  padding-top: 1.5rem;
  text-align: center;
}

.subHeader a,
.mobileSubHeader a {
  font-size: 0.8rem;
}

.subHeader ul li,
.mobileSubHeader ul li {
  display: inline-block;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 1.5rem;
}

.mobileSubHeader {
  margin-top: 2rem;
  width: 100%;
  display: none;
  transition: max-height 0.3s ease;
}

.mobileSubHeader.expanded {
  display: block;
}

.mobileSubHeader ul li {
  display: block;
  text-align: center;
}

.languageBox {
  position: fixed;
  bottom: 0;
  right: 5rem;
  z-index: 3;
  background-color: #f4dcbd;
  border: #d1b795 2px solid;
}

.languageBox .languageButton {
  display: block;
}

.languageBox .dropdown {
  max-height: 0;
  overflow-y: hidden;
}

.languageBox .languageButton a {
  height: 2.2rem;
  display: block;
  padding-left: 0.7rem;
  padding-bottom: 0rem;
  padding-right: 0.8rem;
  background-color: #f4dcbd;
  text-decoration: none;
  color: #000000;
  font-size: 0.9rem;
}

.languageBox .languageButton a:hover {
  background-color: #d1b795;
}

.languageBox .languageButton a img.langImg {
  vertical-align: middle;
  height: 100%;
  padding-right: 1rem;
  width: 1.9rem;
  height: 1.9rem;
}

.languageBox .languageButton a img.langArrow {
  vertical-align: middle;
  height: 100%;
  width: 1rem;
  height: 1rem;
  transition: all 0.3s ease;
}

.languageBox.expanded .languageButton a img.langArrow {
  transform: rotate(-90deg);
}

.languageBox .languageButton a span {
  vertical-align: middle;
  line-height: 2.2rem;
  padding-right: 0.5rem;
}

.calendarGrid {
  display: grid;
  grid-template-columns: 6rem auto;
}

.calendarGrid > p {
  margin-bottom: 0.5rem;
}

.doubleGrid {
  display: grid;
  grid-template-columns: auto auto;
  width: max-content;
  grid-column-gap: 2rem;
}

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

#footer,
#footer p {
  font-size: 0.8rem;
  line-height: 1.5rem;
}

#prohibBar {
  background-color: #f0ebe2;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 4rem;
}

#prohibBar ul li {
  display: inline-block;
  padding-left: 2.15rem;
  padding-right: 2.15rem;
}

.prohibImg {
  width: 60px;
  height: 60px;
}

.milizImg {
  width: 80px;
  padding-top: 1em;
}

.textLeft {
  text-align: left;
}

#footerContent {
  color: #2c3f54;
  padding-bottom: 4rem;
}

#footerContent .quarterBlock {
  padding-bottom: 1rem;
}

#footerContent a {
  color: #2c3f54;
}

#footerContent a:hover {
  text-decoration: underline;
}

#footerContent .table .tr .td {
  padding-right: 1rem;
}

#footer .smallest {
  width: 100%;
  text-align: left;
  padding-bottom: 3rem;
  padding-top: 1rem;
  background-color: #000000;
  color: #a0a0a0;
  position: relative;
  z-index: 2;
}

#footer .smallest .wrapper1430 {
  text-align: left;
}

#footer .smallest .wrapper1430 .floatLeft,
#footer .smallest .wrapper1430 .floatRight {
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0rem;
}

#footer .smallest .wrapper1430 p {
  display: inline-block;
}

#footer .smallest .wrapper1430 p a {
  text-decoration: none;
  color: #a0a0a0;
}

/*******************************
 * ANIMATIONS
 */

.animated {
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  margin-top: 70px;
  margin-bottom: 0px;
  opacity: 0;
}

.animated.visible {
  margin-top: 30px;
  margin-bottom: 40px;
  opacity: 1;
}

.animated.bigHistoryBox,
.animated.smallHistoryBox {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.animated.bigHistoryBox.visible,
.animated.smallHistoryBox.visible {
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}

/*******************************
 * LIGHT A CANDLE
 */

#candleBox {
  background-color: #a53232;
  position: fixed;
  left: 2.5rem;
  bottom: 3rem;
  z-index: 2;
  height: 1.8rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  border-radius: 2.5rem;
}

.candleIcon {
  background-image: url(../img/candle.svg);
  background-color: #a53232;
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  width: 5rem;
  height: 5rem;
  border-radius: 2.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

a.lightACandleLink {
  color: #f0f0f0;
  line-height: 1.3;
  font-size: 1.2rem;
  font-weight: 700;
}

#candleExpander {
  max-width: 0;
  overflow: hidden;
  transition: all 0.5s ease 0.1s;
  white-space: nowrap;
}

.pusher25w {
  width: 2.5rem;
  display: inline-block;
}

/*******************************
 * NEW STYLE
 */

.newStyle h4 {
  text-align: left;
  margin-bottom: 0.25rem;
  padding-top: 1rem;
  padding-bottom: 0;
  line-height: 1.6;
}

.newStyle h3:not(:first-child) {
  padding-top: 1.5rem;
}

.newStyle h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 0;
}

.newStyle p {
  margin-bottom: 0.75rem;
  padding-bottom: 0;
}

.newStyle ul.dots {
  padding-left: 2.3rem;
  margin-bottom: 1.2rem;
}

.newStyle ul.dots li {
  margin-bottom: 0.45rem;
  list-style: circle;
}

.newStyle .tableGrid {
  display: grid;
  grid-template-columns: auto auto;
  width: max-content;
  grid-column-gap: 2rem;
  grid-row-gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.newStyle .tableGrid p {
  margin-bottom: 0;
}

.newStyle .specialGuideBox {
  margin-top: 2rem;
}

.newStyle .specialGuideBox .specialGuideDate {
  margin-left: 1rem;
  margin-bottom: 1rem;
}

.newStyle .specialGuideBox .specialGuideDate p {
  margin-bottom: 0;
}

.newStyle .specialGuideBox .specialGuideDate p:nth-child(2) {
  font-weight: bold;
}

.newStyle .tableGrid p.colSpanAll {
  grid-column-start: 1;
  grid-column-end: 3;
  margin-top: 0.5em;
}

/*******************************
 * RESPONSIVE
 */

@media only screen and (max-width: 500px) {
  .headerFullBox {
    min-height: 1000px;
  }

  .headBoxPosition {
    position: relative;
    margin-top: 15rem;
    width: 100%;
    max-width: 100%;
  }
}

@media only screen and (min-width: 501px) and (max-width: 900px) {
  .headBoxPosition {
    width: calc(80% - 4rem);
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .headerFullBox {
    min-height: 800px;
  }
}

@media only screen and (max-width: 600px) {
  #prohibBar ul li {
    display: inline-block;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .headTitle {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }

  .doubleGrid {
    grid-template-columns: auto;
    width: 100%;
  }

  /*************
   * NEW STYLE
   */
  .newStyle .tableGrid {
    grid-template-columns: auto;
    width: 100%;
  }

  .newStyle .tableGrid p:nth-child(even) {
    margin-bottom: 1rem;
  }
}

@media only screen and (max-width: 900px) {
  .nomobile {
    display: none;
  }
  .mobilePaddingTop1 {
    padding-top: 1rem;
  }
  .historyLine {
    left: calc(2.5rem - 2px);
  }
  .largeDot,
  .smallDot {
    left: calc(2.5rem - 21px);
  }
  .historyImgWide {
    padding-bottom: 1rem;
  }
  .leftAlign,
  .rightAlign {
    text-align: left;
  }
  .rightAlign .smallHistoryBox .smallDot {
    left: calc(2.5rem - 21px);
  }
  .mobileLeft {
    text-align: left;
  }
  .headerFullBox .slider.left {
    left: 0%;
  }
  .headerFullBox .slider.right {
    right: 0%;
  }
  .navCenter {
    padding-bottom: 1rem;
  }
  .subHeader {
    display: none;
  }
  #headerContent {
    width: 100%;
  }
  .kapitelLine {
    bottom: 25rem;
  }
  .wrapper75 {
    width: 100%;
  }
  .attractionBox.withAllIncl .infoBox {
    padding-bottom: 12rem;
  }
  #headerPusher {
    height: 116px;
  }
  #headerPusher.withSub {
    height: 116px;
  }
  .languageBox {
    right: 1rem;
  }

  .halfBlock {
    width: 90%;
    padding-left: 0;
    padding-right: 0;
  }

  .thirdBlock {
    width: 90%;
    padding-left: 0;
    padding-right: 0;
  }

  .quarterBlock {
    width: calc(100% - 30px - 1px);
    padding-left: 15px;
    padding-right: 15px;
  }

  .floatLeft,
  .floatRight {
    float: none;
    width: calc(100% - 4rem);
    margin-left: 4rem;
  }

  .smallHistoryBox,
  .historyBoxWrapper.leftAlign .smallHistoryBox,
  .historyBoxWrapper.rightAlign .smallHistoryBox {
    width: auto;
    padding-left: 5.5rem;
    padding-right: 1.5rem;
  }

  .navLeft,
  .navRight {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    width: 100%;
  }

  .navBlock {
    display: block;
    padding: 1rem;
  }

  .attractionBox .infoBox {
    width: 100%;
    padding-bottom: 8rem;
    padding-right: 0rem;
  }

  .expandBox .buttonBox {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    line-height: 1rem;
    display: inline-block;
    margin-top: 1rem;
  }

  .animated {
    margin-top: 50px;
    margin-bottom: 0px;
  }

  .animated.visible {
    margin-top: 10px;
    margin-bottom: 40px;
  }

  .concerts .expandBox .title {
    margin-right: 0;
  }
}

@media only screen and (min-width: 901px) {
  .menuButton {
    display: none;
  }
  .mobileSubHeader {
    display: none;
  }
  .mobileSubHeader.expanded {
    display: none;
  }
  .mobile {
    display: none;
  }
}

@media only screen and (min-width: 901px) and (max-width: 1200px) {
  .thirdBlock {
    width: calc(100% / 2 - 30px - 1px);
    padding-left: 15px;
    padding-right: 15px;
  }

  .quarterBlock {
    width: calc(100% / 3 - 30px - 1px);
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (max-width: 1000px) {
  .navBlock {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  .navBlock {
    padding-left: calc(30px + (100vw - 1200px) * 0.1);
    padding-right: calc(30px + (100vw - 1200px) * 0.1);
  }
}

@media only screen and (min-width: 901px) and (max-width: 1200px) {
  #headerPusher {
    height: 85px;
  }
  #headerPusher.withSub {
    height: 143px;
  }
  .bgtitle {
    height: calc(100vh - 11.3rem - 117px);
  }

  #domkirche {
    width: 150px;
    height: 71px;
  }

  .quarterBlock {
    width: calc(100% / 2 - 30px - 1px);
    padding-left: 15px;
    padding-right: 15px;
  }

  .navLeft {
    position: absolute;
    top: 35px;
    right: calc(50% + 75px + 0.5rem);
  }

  .navRight {
    position: absolute;
    top: 35px;
    left: calc(50% + 75px + 0.5rem);
  }
}

@media only screen and (min-width: 1201px) and (max-width: 1600px) {
  #headerPusher {
    height: 111px;
  }
  #headerPusher.withSub {
    height: 162px;
  }
}

@media only screen and (max-width: 1600px) {
  html {
    font-size: 10pt;
  }
  .wrapper1000 {
    max-width: 750px;
  }
  .wrapper1100 {
    max-width: 800px;
  }
  .wrapper1400 {
    max-width: 1000px;
  }
  .wrapper1400x {
    max-width: 1200px;
  }
}
