/* So much colours */

.orange {
  background-color: #f90;
}

.navy {
  background-color: #1E265C;
}

.grey {
  background-color: #f5f5f5;
}

.darkgrey {
  background-color: #444;
}

.lightorange {
  background-color: #ffe2bf;
}

.offcanvas-full-screen-menu {
font-size: 2em;
}

/* Colours end */

/* Font Stuff */

/* source-sans-pro-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/source-sans-pro-v21-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/source-sans-pro-v21-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/source-sans-pro-v21-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/source-sans-pro-v21-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/source-sans-pro-v21-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/source-sans-pro-v21-latin-regular.svg#SourceSansPro') format('svg'); /* Legacy iOS */
}
/* source-sans-pro-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/source-sans-pro-v21-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/source-sans-pro-v21-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/source-sans-pro-v21-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/source-sans-pro-v21-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/source-sans-pro-v21-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/source-sans-pro-v21-latin-700.svg#SourceSansPro') format('svg'); /* Legacy iOS */
}

/* vollkorn-sc-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Vollkorn SC';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/vollkorn-sc-v11-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/vollkorn-sc-v11-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/vollkorn-sc-v11-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/vollkorn-sc-v11-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/vollkorn-sc-v11-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/vollkorn-sc-v11-latin-regular.svg#VollkornSC') format('svg'); /* Legacy iOS */
}
/* Font stuff End */

body {
	font-family: "Source Sans Pro", "Arial", sans-serif;
  color: #444;
}

body {
  background-color: #f5f5f5;
}

h1,h2,h3,h4,h5,h6 {
/*	font-family: "Vollkorn SC", "Times", serif;*/
font-family: "Source Sans Pro", "Arial", sans-serif;
color: #444;
text-transform: uppercase;
}

h2 {
  font-size: 2.75em;
}

.darkgreysection {
  background-color: #1E265C;
}

.marketingcallout {
  background: rgba(255, 255, 255, 0.5); /* Background with 30% opacity */
  padding: 2em;
}

.directions {
  background-color: #ffe2bf;
}

footer {
  background-color: #1E265C;
  color: #f5f5f5;
  padding-top: 3em;
  padding-bottom: 2em;
  font-size: 80%;
}

footer a,
footer a:link,
footer a:active,
footer a:visited {
  color: #f5f5f5;
  text-decoration: underline;
}
footer a:hover {
  color: #f90;
}

/* Off Canvas Burger Menue */


.offcanvas-full-screen {
  position: fixed;
  z-index: 1;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: #0a0a0a;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  overflow-y: auto;
}

[data-whatinput='mouse'] .offcanvas-full-screen {
  outline: 0;
}

.offcanvas-full-screen.is-transition-overlap {
  z-index: 10;
}

.offcanvas-full-screen.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
}

.offcanvas-full-screen.is-open {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

.offcanvas-full-screen.is-open ~ .off-canvas-content {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.offcanvas-full-screen.is-transition-push::after {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
  content: " ";
}

.offcanvas-full-screen.is-transition-overlap.is-open ~ .off-canvas-content {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.offcanvas-full-screen-inner {
  padding: 1rem;
  text-align: center;
}

.offcanvas-full-screen-menu {
  margin: 0;
  list-style-type: none;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.offcanvas-full-screen-menu > li {
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

[data-whatinput='mouse'] .offcanvas-full-screen-menu > li {
  outline: 0;
}

.offcanvas-full-screen-menu > li > a {
  display: block;
  padding: 0.7rem 1rem;
  line-height: 1;
}

.offcanvas-full-screen-menu input,
.offcanvas-full-screen-menu select,
.offcanvas-full-screen-menu a,
.offcanvas-full-screen-menu button {
  margin-bottom: 0;
}

.offcanvas-full-screen-menu > li {
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.offcanvas-full-screen-menu > li > a {
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.offcanvas-full-screen-menu a {
  color: #fefefe;
}

.offcanvas-full-screen-menu a:hover {
  color: #b2b2b2;
}

.offcanvas-full-screen-close {
  color: #fefefe;
  font-size: 5rem;
}

.offcanvas-full-screen-close:hover {
  color: #b2b2b2;
}




/* Full Screen Hero */

.hero-full-screen {
  height: 100vh;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: url("../img/DJI_0010.jpg") center center no-repeat;
  background-size: cover;
}

.hero-full-screen .middle-content-section,
.hero-full-screen .middle-content-section h1 {
  text-align: center;
  color: #fefefe;
}

.hero-full-screen .middle-content-section img {
  padding-bottom: 2em;
}

.hero-full-screen .top-content-section {
  width: 100%;
}

.hero-full-screen .bottom-content-section {
  padding: 1rem;
}

.hero-full-screen .bottom-content-section svg {
  height: 3.75rem;
  width: 3.75rem;
  fill: #fefefe;
}

.hero-full-screen .top-bar {
  background: transparent;
}

.hero-full-screen .top-bar .menu {
  background: transparent;
}

.hero-full-screen .top-bar .menu-text {
  color: #fefefe;
}

.hero-full-screen .top-bar .menu li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-full-screen .top-bar .menu a {
  color: #fefefe;
  font-weight: bold;
}

.gotrhythm {
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.gotrhythmheadline {
  padding-top: 2vh;
  padding-bottom: 3vh;
}

.roundup {
  width: 400px;
  height: 400px;
  border-radius: 2.5%;
  object-fit: cover;
}

.text-enlarge {
  font-size: 125%;
	font-family: "Vollkorn SC", "Times", serif;
}


.fullwidthwrapper { 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100% !important;
  z-index: 0;
  height: 75vh;
}

.fullwidthmarketing { 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100% !important;
  z-index: 0;
  height: auto;
}

.naturebg {
  background: url("../img/Karl-Peter Kappest_KPK841857.jpg") no-repeat center center; 
}

.mood2 {
  background: url("../img/DJI_0051.jpg") no-repeat center center; 
}

.mood3 {
  background: url("../img/2027_Foto\ Marco\ Rothbrust_639.jpg") no-repeat center center; 
}

.grouptravel {
  background: url("../img/DSC_1136.jpg") no-repeat center center;
  color: #f5f5f5;
}
.grouptravel h2 {
  color: #f5f5f5;
}
.grouptravel .button,
.accomodation .button,
.food .button {
  background-color: #f90;
  font-size: 1.25em;
}
.onlineshopper {
  color: #f5f5f5;
  background-color: #f90;
}

.onlineshopper .button {
  background-color: #1E265C;
  color:#f5f5f5;
  font-size:1.25em;
}

.onlineshopper h2 {
  color: #f5f5f5;
}
.mood4 {
  background: url("https://placehold.it/2048x1080") no-repeat center center; 
}

.landscapez,
.naturescapez {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.landscapez {
  background: url("../img/DJI_0276.png") no-repeat right bottom; 
}

.naturescapez {
  background: url("../img/nature.png") no-repeat left top; 
}
.foodz {
  background: url("../img/coffee.png") no-repeat center top; 
}
.dastorez {
  background: url("../img/wappen.png") no-repeat left top; 
}

.accomoimg,
.padderbelow {
  margin-bottom: 2em;
}
.beerpadder {
  padding-right: 4em;
}


#1abbeyandchurch .secondary {
  background-color: #fefefe;
}

.flagger {
  width: 50px;
  height: 30px;
}

.polylanglegal {
padding-top: 10vh;
padding-bottom: 10vh;
}


/* Media Query Scary Stuff begins */

/* On screens that are 800px wide or less, make the menu links stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .imgpadder {
    margin-bottom: 2em;
  }
  .gotrhythm {
    margin-top: 5vh;
    margin-bottom: 5vh;
  }
  
  .gotrhythmheadline {
    margin-top: 1vh;
    margin-bottom: 1.5vh;
  }

  .fullwidthwrapper,
  .fullwidthmarketing {
    text-align: center;
  }
.smalltextcenter {
  text-align: center;
}

.grouptravel {
  padding-left: 2em;
  padding-bottom: 2em;
}
.grouptravel h2 {
  font-size: 2em;
}
.flagger {
  width: 30px;
  height: 20px;
}
.shownotmobile {
  display: none;
}

.polylanglegal {
padding-top: 2vh;
padding-bottom: 3vh;
}

}
/* Media Query Scary Stuff ends */