/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
 html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}
 
 /* This used to work for the parent element of button divs */
 /* But it does not work with newer browsers, the below doesn't hide the play button parent div */
 
 *::-webkit-media-controls-panel {
   display: none!important;
   -webkit-appearance: none;
 }
 
 /* Old shadow dom for play button */
 
 *::-webkit-media-controls-play-button {
   display: none!important;
   -webkit-appearance: none;
 }
 
 /* New shadow dom for play button */
 
 /* This one works! */
 
 *::-webkit-media-controls-start-playback-button {
   display: none!important;
   -webkit-appearance: none;
 }
 
 

html * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	outline: none;
	hyphens: auto;
	-ms-hyphens: auto;
    -moz-hyphens: auto;
	-webkit-hyphens: auto;
}

body {
	font-family: "Modern Era", sans-serif;
	font-size: 20px;
	overflow-x: hidden;
	color: #464646
}

body.menu-open, html.menu-open {
	overflow: hidden;
}

/* UNIFIED */

input[type='radio']:after {
	width: 15px;
	height: 15px;
	border-radius: 15px;
	top: -2px;
	left: -1px;
	position: relative;
	background-color: #fff;
	content: '';
	display: inline-block;
	visibility: visible;
	border: 2px solid #77207e;
}

input[type='radio']:checked:after {
	width: 15px;
	height: 15px;
	border-radius: 15px;
	top: -2px;
	left: -1px;
	position: relative;
	background-color: #77207e;
	content: '';
	display: inline-block;
	visibility: visible;
	border: 2px solid #77207e;
}

.align-right {
	text-align: right
}

.text-large {
	font-size: 1.9rem;
	font-weight: 400;	
}

.extra-small {
	font-size: 1rem
} 

.mb--2 {
	margin-bottom: -10px;
}

.h3, h3 {
	font-size: calc(1.3rem + .6vw);
}

.mw-auto {
	max-width: inherit !important
}

.rounded {
	border-radius: 15px !important
}

a {
	text-decoration: none;
	color: #4096CC;
	cursor: pointer
}

a:hover {
	color: #4096CC;
	text-decoration: underline
}

.form-control:focus {
	box-shadow: none;
}

#content a:not('.buttn'){
	text-decoration: underline
}

h1,h2,h3,h4,h5,h6 {
	font-weight: 700;
	display: inline-block
}

.ul-inline {
	list-style: none;
	padding: 0	
}

.ul-inline li {
	display: inline-block;
}
.ul-inline li a {
	padding-left: 10px;
	padding-right: 0;
}

/* BUTTONS */

.main-btn {
	position: relative;
	height: 50px;
	line-height: 50px;
	background-color: #FF9100;
	display: inline-block;
	color: #fff !important;
	text-decoration: none !important;
	padding: 0 30px 0 90px;
	transition: all 1s cubic-bezier(0.77,0.2,0.05,1.0);
	border-radius: 40px;
	text-transform: uppercase; 
}

.hero-buttn:before{
	background-color: #76217e !important;	
} 

.main-btn:before {
	content: "";
    position: absolute;
    display: block;
    height: 30px;
    width: 30px;
    top: 50%;
    left: 28px;
    margin-top: -15px;
    transition: all 1s cubic-bezier(0.77,0.2,0.05,1.0);
    background-image: url(/images/icons/arrow-right.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}


.main-btn:hover, .loop-item:not(.loop-item-3):hover .main-btn {
	padding-left: 30px;
	padding-right: 90px
}

.main-btn:hover:before, .loop-item:not(.loop-item-3):hover .main-btn:before {
	left: calc(100% - 60px);
}

.main-btn-block {
	border-radius: 0 !important;
	display: block;
}

.main-btn-block:before, #overlay-menu .overlay-menu-call-to-action:before {
	background-color: #FF9100;
}

.main-btn-lg {
	line-height: 80px;
    height: 80px;
}

.main-btn-lg:before {
	margin-top: -32px;
}

.main-btn-xl {
	line-height: 107px;
    height: 100px;
    font-size: 2.0rem
}


.main-btn-transparent {
	color: #76217E !important;
	background-color: transparent
}

.main-btn-transparent:before{	
	background-image: url('/images/icons/arrow-right-main-color.svg');
}


.owl-carousel-wrapper {
	position: relative
}

.owl-section-btn {
	display: inline-block;
	position: absolute;
	left: 200px;
	bottom: -5px;
	z-index: 5
}

.owl-section-btn .main-btn {
	font-size: 1.8rem;
	padding-top: 2px;
}

.owl-stage {
    left: -150px;
}

.front-page .container-fluid, header nav .container-fluid, .strange-section .container-fluid {
	padding-right: 0;
}

.front-page-heroes .overlay-item {
	height: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat
}

.front-page-heroes .item-3 {
	 width: 100%;
	 padding-bottom: 100%;
}


.slide-buttn {
	position: relative;
	transition: all 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

.slide-buttn:before {
	background-image: url('/images/icons/arrow-right.svg');
	position: absolute;
	display: block;
	line-height: 95px;
	left: 30px;
	transition: all 0.5s cubic-bezier(0.77,0.2,0.05,1.0)
}

.slide-buttn:hover {
	padding-left: 50px;
	padding-right: 130px
}

.slide-buttn:hover:before {
	left: calc(100% - 80px);
}


.buttn {
	border: none;
	background-color: #444;
	border-radius: 30px;
    font-size: 18px;
    padding-left: 30px;
    padding-right: 30px;
    text-decoration: none !important;
    text-align: center;
    min-width: 140px;
    display: inline-block;
    height: 50px;
    line-height: 49px;
    transition: all 0.2s ease-in-out;
}

.buttn-link {
	background-color: transparent;
	border: none;
	padding: 0
}

.buttn-light {
	background-color: #fff;
	color: #444
}

.buttn-primary {
	background-color: #FF9100;
	color: #fff;
}

.buttn-primary:hover {
	opacity: 0.8;
	color: #fff;
}

.buttn-outline-primary {
	border: 3px solid #76217E;
	background-color: transparent;
	color: #76217E !important;
	border-radius: 60px;	
	line-height: 47px;
	text-align: left;
	padding-right: 60px;
	min-width: 200px;
	position: relative;
	transition: all 0.4s cubic-bezier(0.77,0.2,0.05,1.0)
}

.buttn-outline-primary:hover {
	background-color: #76217E;
	color: #fff !important
}

.buttn-outline-primary:after, .buttn-outline-primary:before {
	content: "";
	background-image: url('/images/icons/arrow-right-secondary-color.svg');
	position: absolute;
	display: block;
	height: 30px;
	width: 30px;
    top: 50%;
    right: 15px;
    margin-top: -15px;
	z-index: 1;
	transition: all 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
}

.buttn-outline-primary:after {
	opacity: 0;
	z-index: 3;
	background-image: url('/images/icons/arrow-right.svg');
}

.buttn-outline-primary:hover:after {
	opacity: 1
}
.buttn-outline-primary:hover:before {
	opacity: 0
}

.buttn-secondary {
	background-color: #FDE04C;
	color: #0A1C55;
}

.buttn-secondary:hover {
	opacity: 0.8;
	color: #0A1C55;
}

.buttn-outline-secondary {
	border: 3px solid #fff;
	background-color: transparent;
	color: #fff !important;
	border-radius: 60px;	
	line-height: 47px;
}

.buttn-outline-secondary:hover {
	background-color: #76217E;
	border-color: #76217E;
}



.buttn-small {
	line-height: 40px;
    height: 40px;
}

.buttn-large {
    height: 60px;
    line-height: 59px;
    font-size: 20px;
    min-width: 200px
}

a.play-button {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -27px;
	margin-left: -23px;
	text-align: center;
	border: 0;
	background: transparent;
	box-sizing: border-box;
	width: 0;
	height: 54px;
/* 	border-color: transparent transparent transparent rgba(255,255,255,0.7); */
	border-color: transparent transparent transparent rgb(253 224 77);
	transition: 100ms all ease;
	cursor: pointer;
	border-style: solid;
	border-width: 27px 0 27px 50px;
  
}


a.play-button.paused {
  border-style: double;
  border-width: 0px 0 0px 50px;
}

a.play-button:hover {
  border-color: transparent transparent transparent rgb(253 224 77) /* rgba(255,255,255,1) */;
}


.add-to-favorites-trigger svg.in-favorites,
.add-to-favorites-trigger.active svg:nth-child(1) {
	display: none;
}

.add-to-favorites-trigger.active svg.in-favorites {
	display: inline-block;
	fill: #d74242;
	margin-right: -2px
}

.add-to-favorites-trigger.active {
	color: #d74242;
}

/* OWL */

.owl-nav, .owl-dots {
	display: inline-block
}

.owl-nav button {
	background-color: transparent !important
}

.owl-theme .owl-dots .owl-dot span {
	margin: 5px 15px
}

.owl-nav button svg {
	margin-top: -10px
}

.owl-theme .owl-dots .owl-dot span {
	background-color: #76217E
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background-color: #FF9100;
}

.owl-theme .owl-dots button:first-child span {
	margin-left: 0 !important
}

.owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 30px
}

/* ALERTS */

.fixed-alert {
	position: fixed;
    left: 1vw;
    top: 1vw;
    width: 280px;
    z-index: 2000;
    font-size: 0.8rem
}

.fixed-alert ul {
	margin: 10px 20px;
}

.fixed-alert ul li {
	margin-bottom: 10px;
}


.alert {
	border-radius: 0;
	border: none;
}

.chevron > span{
    top: 14px;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.chevron > * {
	position: relative;
	z-index: 3;
}
	
.chevron {
  height: 30px;
  position: relative;
  margin: -16px -16px 40px;
  text-align: center
}
.chevron:before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  height: 100%;
  width: 50%;
  -webkit-transform: skew(0deg, 6deg);
  -moz-transform: skew(0deg, 6deg);
  -ms-transform: skew(0deg, 6deg);
  -o-transform: skew(0deg, 6deg);
  transform: skew(0deg, 6deg);
  z-index: 2
}
.chevron:after {
  content: '';
  position: absolute;
  top: 20px;
  right: 0;
  height: 100%;
  width: 50%;
  -webkit-transform: skew(0deg, -6deg);
  -moz-transform: skew(0deg, -6deg);
  -ms-transform: skew(0deg, -6deg);
  -o-transform: skew(0deg, -6deg);
  transform: skew(0deg, -6deg);
  z-index: 2
}

.chevron.success, .chevron.success:after, .chevron.success:before {
	background-color: #72B55F;
	z-index: 2
}

.chevron.error, .chevron.error:after, .chevron.error:before {
	background-color: #9D0B0E;
	z-index: 2;
}


.chevron.list, .chevron.list:before, .chevron.list:after {
	background-color: #F5F6F7;
	z-index: 1
}
	
.chevron.list {
	margin-top: -30px;
    padding-top: 25px;
    height: auto;
    text-align: left
}

.chevron.list * {
	color: #888888
}
	
	
.alert {
	background-color: #fff;
	box-shadow: 0px 30px 30px #33333388;
}

.alert-footer {
	text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #464646;
    cursor: pointer;
    padding: 5px 0
}


/* COOKIE BLOCK */

.cookie-block {
	position: fixed;
    max-width: 500px;
    top: 33%;
    background-color: #fff;
    left: 50%;
    margin-left: -250px;
    padding: 30px;
    font-size: 1rem;
    box-shadow: 0 0 15px rgb(0 0 0 / 20%);	
}


/* TEXT */

.light-text {
	color: #fff;
}

.color-primary {
	color: #4096CC	
}

.color-secondary {
	color: #FDE04C	
}

.color-body {
	color: #464646
}

.color-indigo {
	color: #76217e
}

.color-indigo-light {
	color: #BE86BA
}

.color-orange {
	color: #ff9100
}

.color-orange-light {
	color: #f6a64f
}

.color-blue {
	color: #6e86ba
}

.color-white {
	color: #fff;
}

.color-black {
	color: #000
}

/* BACKGROUND */

.dark-bg {
	background-color: #76217E;
}

.semi-dark-bg{
	background-color: #BE86BA;
}

.light-bg {
	background-color: #E7F0F4
}

/* HEADER */

header {
    background-color: #fff;
}

header nav .navbar-nav {
/* 	padding-right: 90px; */
}

.nav-link.dropdown-toggle {
	text-transform: uppercase
}

.dropdown-toggle::after, .dropup .dropdown-toggle::after {
	border: none;
	margin-left: 0;
	border-style: solid;
    border-width: 2px 2px 0 0;
    content: '';
    display: inline-block;
    height: 8px;
    left: 8px;
    position: relative;
    vertical-align: top;
    width: 8px;
    top: 5px;
    transform: rotate(135deg);
    border-radius: 1px;
}

.dropup .dropdown-toggle::after {
	transform: rotate(-45deg);
	top: 9px;
}

/* BODY */

.fixed-website-button {
    position: fixed;
    right: 0;
    width: 96px;
	height: 96px;
    text-align: center;
    font-size: 1rem;
    color: #fff !important;
    background-color: #76217e;
    padding-bottom: 5px;
    text-decoration: none !important;
    z-index: 40
}

/* OVERLAY MENU */

#menuToggle
{
  display: block;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
  margin-right: 84px;
}

#menuToggle a
{
  text-decoration: none;
  color: #232323;
  transition: color 0.3s ease;
}

#menuToggle input{
	
	display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -5px;
    left: -3px;
    cursor: pointer;
    opacity: 0;
    z-index: 1004;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #76217E;
  
  z-index: 2;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:nth-child(3){
	background: #FF9100
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(3)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #ffffff;
  z-index: 1002;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(4)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#overlay-menu
{
	opacity: 0;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -11;
    display: block;
    background: #76217e;
    -webkit-font-smoothing: antialiased;
    transition: opacity 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
				z-index 2s cubic-bezier(0.77,0.2,0.05,1.0);
    padding-top: 120px;
	overflow: auto
}

#overlay-menu ul {
	list-style-type: none;
	padding: 0;
}



#overlay-menu li a {
  padding: 10px 0;
  font-weight: 300;
  font-size: 3rem;
  letter-spacing: 1.38px;
  color: #fff;
  display: inline-block
}

#overlay-menu .overlay-menu-call-to-action {
	display: block;
	position: absolute;
	right: 0;
	top: 120px;
	padding: 0 60px;
	padding-left: 90px;
	text-align: center;
	line-height: 100px;
	font-size: 2.2rem;
	height: 100px;
	background-color: #FF9100;
	color: #fff !important;
	transition: all 0.4s cubic-bezier(0.77,0.2,0.05,1.0)
}

.main-overlay-menu a {
	position: relative;
}

.main-overlay-menu a::before{
	content: "";
    left: 0;
    display: block;
    right: 100%;
	bottom: 20%;
	height: 20%;
    background-color: #FF9100;
    position: absolute;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.77,0.2,0.05,1.0)
}

.main-overlay-menu a:hover {
	font-weight: 700 !important
}

.main-overlay-menu a:hover:before {
	right: 0%;
}

#overlay-menu .main-overlay-menu li:last-child {
	display: none
}

#overlay-menu .main-overlay-menu li:nth-last-child(3) {
	margin-top: 40px;
}

#overlay-menu .main-overlay-menu li:last-child a,
#overlay-menu .main-overlay-menu li:nth-last-child(2) a,
#overlay-menu .main-overlay-menu li:nth-last-child(3) a
{
	font-size: 2.2rem;
	padding-left: 60px;
	padding-right: 80px;
	position: relative;
	transition: all 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
	font-weight: 400 !important;
}

#overlay-menu .main-overlay-menu li:last-child a:before,
#overlay-menu .main-overlay-menu li:nth-last-child(2) a:before,
#overlay-menu .main-overlay-menu li:nth-last-child(3) a:before
{
	background-color: #76217e
}

#overlay-menu .main-overlay-menu li:last-child a:before,
#overlay-menu .main-overlay-menu li:nth-last-child(2) a:before,
#overlay-menu .main-overlay-menu li:nth-last-child(3) a:before,
#overlay-menu .overlay-menu-call-to-action:before 
{
	content: "";
	background-image: url(/images/icons/arrow-right.svg);
	position: absolute;
	display: block;
	height: 30px;
	width: 30px;
    top: 50%;
    left: 0px;
    margin-top: -15px;
    transition: all 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
	z-index: 1
}

#overlay-menu .overlay-menu-call-to-action:before {
	left: 30px;
	margin-top: -17px;
}

#overlay-menu .overlay-menu-call-to-action:hover {
	padding-right: 120px;
	padding-left: 30px;
}

#overlay-menu .main-overlay-menu li:last-child a:hover, 
#overlay-menu .main-overlay-menu li:nth-last-child(2) a:hover,
#overlay-menu .main-overlay-menu li:nth-last-child(3) a:hover
{
	padding-left: 0px;
}

#overlay-menu .main-overlay-menu li:last-child a:hover:before,
#overlay-menu .main-overlay-menu li:nth-last-child(2) a:hover:before,
#overlay-menu .main-overlay-menu li:nth-last-child(3) a:hover:before,
#overlay-menu .overlay-menu-call-to-action:hover:before{
	left: calc(100% - 60px);
}


.common-links {
	position: fixed;
    bottom: 15px;
    left: 15px;
	z-index: 80;
}

.common-links .dropdown-menu a {
	background-color: transparent !important;
    color: #76217E !important;
    font-size: 1rem !important;
    letter-spacing: 0 !important;
    text-align: center;
    padding: 5px 10px !important;
}

.common-links .dropup > a {
	text-transform: uppercase
}

.common-links .dropdown-menu a:hover {
	background-color: #FF9100 !important;
}

.common-links a {
	display: inline-block;
	color: #fff !important;
	padding-right: 30px;
}

.social-media-links {
	position: absolute;
	right: 30px;
	bottom: 30px;
}

.social-media-links a{
	margin-left: 20px
}

.social-media-links svg, .social-media-links path {
	fill: #fff;
	width: 36px;
	height: 36px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ #overlay-menu
{
  opacity: 1;
  z-index: 1000;
  transition: opacity 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

.menu-open .menu-close-text {
	z-index: 2
}

.menu-close-text {
    position: absolute;
    top: -3px;
    font-size: 1rem;
    font-weight: 300;
    white-space: nowrap;
    left: 55px;
    color: #fff;
    z-index: -1;
    opacity: 0;
	transition: opacity 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menuToggle input:checked ~ .menu-close-text{
	opacity: 1;
	z-index: 1001;
	transition: opacity 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}


/* NAV */

nav a {
	text-decoration: none !important;
	font-size: 18px;
}

nav a.nav-link {
	padding: 0.2rem 1.6rem !important;
	color: #76217E !important;
	font-weight: 300;
	position: relative;
	z-index: 2
}

nav a.nav-link:before {
	content: "";
	position: absolute;
	left: 25px;
	right: 25px;
	width: 0;
	bottom: 8px;
	height: 5px;
	z-index: -1; 
	background-color: #FF9100;
	transition: all 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
}

nav a.nav-link.dropdown-toggle:hover:before {
	width: calc(100% - 58px);
}

nav a.nav-link.active:before, nav a.nav-link:hover:before {
	width: calc(100% - 50px);
}

.dropdown-menu {
	border-color: #76217E;
	border-radius: 0
}

.dropdown-item {
	color: #76217E;
	font-weight: 300;
	font-size: 1rem
}

.dropdown-item:focus, .dropdown-item:hover, .dropdown-item:active {
	background-color: #FF9100;
	color: #fff;
}

/* HERO */

.hero h1{
	color: #76217E;
	font-size: 8.4rem;
	font-weight: 400;
	margin-top: 70px;
}

.hero .scroll-screen, .single-page .scroll-screen {
	position: absolute;
	left: 50%;
	margin-left: -15px;
	bottom: 35px;
	transform: rotate(90deg);
	display: inline-block;
	animation: up-down 1500ms ease-out infinite;
}

.homepage-hero {
	position: relative;
	overflow: hidden
}

.homepage-hero .scroll-screen{
    margin-left: -15px;
    bottom: 135px;
}

.homepage-hero .has-image h1 {
	position: relative;
	z-index: 2;
	color: #fff
}

.homepage-hero .has-image {
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center
}

.homepage-hero .has-image:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5)
}


.page-hero .scroll-screen {
    position: absolute;
    left: 40vw;
    margin-left: 60px;
    bottom: -90px;
    transform: rotate(90deg);
    display: inline-block;
    animation: up-down 1500ms ease-out infinite;
}


.single-page .scroll-screen {
	position: static;
	animation: inherit
}

@keyframes up-down {

	0%{
	    margin-bottom: 0
	}
	
	50%{
		margin-bottom: 15px;
	}
	
	100%{
	    margin-bottom: 0		 
	}
	
}

iframe {
	max-width: 100%;
}

.hero em, .page-hero em, .loop-item-6 em, .loop-item-7 em {
	position: relative;
	font-style: inherit;
	display: inline-block;
	white-space: nowrap;
	line-height: 1.1;
}

.page-hero-title {
	text-transform: uppercase
}

.page-hero-title p{
	margin-bottom: 0
}

.page-hero-subtitle {
    font-size: 2rem;
    color: #76217E;
    line-height: 1.3;
    margin-bottom: 40px;
	position: relative
}

.page-hero-subtitle .bg-element{
	color: #ffdeb8;
	position: absolute;
	z-index: -1;
	font-size: 40vh;
	right: -180px;
	top: -70px;
	font-weight: 400;
}

.hero em:before, 
.page-hero em:before, 
.loop-item-6 em:before,
.loop-item-7 em:before,
.overlay-item-2 .overlay-item-title em:before {
	content: "";
    height: 20%;
    background-color: #FF9100;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20%;
    z-index: -1;
}

.page-hero {
	position: relative;
	background-size: cover;
/*     background-image: url(/images/image.jpg); */
    background-repeat: no-repeat;
    background-position: center;
    height: calc(100vh - 216px);
    margin-bottom: 120px;
}

.page-hero .page-hero-content {
	position: absolute;
	left: 0;
	padding: 40px 30px;
	bottom: -120px;
	background-color: #76217E;
	color: #fff;
	min-width: 280px;
	width: 40vw;
}

.page-hero h1 {
	position: relative;
	z-index: 1;
	font-weight: 400;
	margin: 10px 0;
	font-size: 3.4rem;
	line-height: 1.3
}

.page-hero h3.page-hero-description {
	font-weight: 400;
	font-size: 1.6rem
}

.page-hero em:before{
    height: 10px;
    position: absolute;
    left: 0px;
    right: 0;
    bottom: 8px;
    z-index: -1;
}

.hero-container {
	height: calc(100vh - 96px);
	position: relative;
}

.hero-buttn {
	position: absolute;
	width: 54vw;
	bottom: 0;
    left: 0;
    background-color: #76217E;
    color: #fff !important;
    text-decoration: none !important;
}

.news-carousel .item, .events-carousel .item {
	position: relative;
	z-index: 1;
	height: 0;
	padding-bottom: 100%;
	overflow: hidden;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover
}

.news-carousel > div, .events-carousel > div {
	margin-bottom: 30px
}

.news-carousel .item:before, .events-carousel .item:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.3);
	z-index: 0;
	transition: all 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

.news-carousel .item:hover:before, .events-carousel .item:hover:before {
	background-color: rgba(161, 85, 168, 0.8);
}

.news-carousel .item-date, .events-carousel .item-date {
	position: absolute;
	left: 30px;
	top: 30px;
	font-weight: 300;
	color: #fff;
}

.news-carousel a {
	background-color: transparent;
    position: absolute;
    bottom: 30px;
    left: 10px;
    right: 10px;
    height: 80%;
    padding-top: 70%;
    overflow: hidden
}

.new-loop-item {
	padding-bottom: 100%;	
}

.new-loop-item .main-btn:before {
    top: 100%;
    margin-top: -9%;
}

.new-loop-item .item-date {
    top: 15px !important;
    left: 15px !important;
}

.item-date {
	text-transform: uppercase	
}

.events-carousel .overlay-item-1 .overlay-item-content {
	top: calc(90% - 150px);
}

.events-carousel .overlay-item-1:hover .overlay-item-content {
	top: 10%;
}

.events-carousel .overlay-item-1 .overlay-item-title {
	font-weight: 400;
}

.events-carousel .overlay-item-1:hover .overlay-item-title {
	margin-bottom: 10px;
	
}

.overlay-item-1 .main-btn:before {
	background-color: #FF9100;
}

.events-carousel .arrow svg {
	transform: rotate(-90deg);
	transition: all 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

.events-carousel .item:hover .arrow svg {
	transform: rotate(90deg);
}

.item-social-links a {
	width: 40px;
	height: 40px;
	line-height: 38px;
	border-radius: 40px;
	border: 1px solid #fff;
	display: inline-block;
	text-align: center
}

.item-social-links a img {
	max-width: 18px !important;
	margin-top: -2px;
}


.events-category-section .overlay-item-1:hover .overlay-item-content {
	top: 15%;
}

.events-category-section .item-description {
	font-size: 1rem
}

.events-category-section .item-description {
	
}


.team-section .item {
	margin-bottom: 30px
}

.parolen-carousel .item {
	padding-bottom: 90%;
	color: #fff;
	background-color: #76217e;
	position: relative;
	overflow: hidden
}

.parolen-carousel .item .main-btn:before{
    top: inherit;
    margin-top: -3px
}

.parolen-carousel .item * {
	text-transform: uppercase;
}

.parolen-carousel .owl-item:nth-child(2n+2) .item, .row.parolen-carousel > div:nth-child(2n+2) .item  {
	background-color: #FF9100
}


.parolen-carousel .item-topic {
	position: absolute;
	left: 30px;
	top: 30px;
}

.parolen-carousel .item * {
	line-height: 1.2
}

.parolen-carousel .item a.main-btn {
	position: absolute;
    background-color: transparent;
    z-index: 10;
    bottom: 50%;
	padding-top: calc(70% - 30px);
    height: inherit;
}

.parolen-carousel  .item-note {
	position: absolute;
	left: 30px;
	bottom: 30px;	
}

.parolen-carousel .item a.main-btn, .parolen-carousel .item .item-note {
	font-size: 1.5rem;
	max-width: 90%;
}

.parolen-carousel .item:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255,255,255,0.3);
	transition: all 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

.parolen-carousel .item:hover:after {
	left: 0%;
}


.medienspiegel-carousel a {
	font-size: 1.2rem;
	bottom: 30px !important;
}

.medienspiegel-carousel .item {
	padding-bottom: 66%;	
}

.team-carousel .overlay-item-title {
	display: block;	
}

.team-carousel .overlay-item-title {
	font-size: 2rem !important;
	font-weight: 400;
	margin-bottom: 0 !important;
	display: block
}

.team-carousel .overlay-item{
	height: 0;
	padding-bottom: 100%;
}

.team-carousel .overlay-item-title:before {
	display: none;
}

.team-carousel .overlay-item-subtitle {
	font-weight: 400;
	margin-bottom: 30px;
	transition: all 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}


.team-carousel .item:hover .overlay-item-subtitle {
	margin-bottom: 10px;
}

.team-carousel .item .item-description {
	font-size: 1rem;	
}

.team-carousel .item .item-description a{
	color: #FF9100;
}

.team-carousel .overlay-item-1:hover .overlay-item-content {
	top: 20%;
}

.team-carousel .overlay-item-1 .overlay-item-content {
	top: calc(90% - 87px);
}



.podcast-category-section .item-note {
	font-size: 1rem
}

.podcast-category-section .item-note {
	
}


.podcast-category-section .item-note * {
	text-transform: none
}

.main-podcast-item {
	background-color: #76217e;
	height: 100%;
	position: relative;
	padding: 5% 5% 0;
    color: #fff;
    padding-bottom: calc(100px + 5%);
}


.main-podcast-item ul, .podcast-category-section .parolen-carousel .item ul {
	position: absolute;
    right: 1%;
    margin-bottom: 0;
    bottom: 4%;
    z-index: 10
}

.podcast-category-section .parolen-carousel .item .item-note {
	bottom: 80px;
}

.podcast-category-section .parolen-carousel .item ul {
	right: inherit;
	left: 20px;
}

.main-podcast-item ul img, .podcast-category-section .parolen-carousel .item ul img{
	filter: brightness(13);
}

.main-podcast-item .main-btn {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #a066a5;
}

.main-podcast-item .main-btn:before {
	background-color: transparent
}

.main-podcast-item .overlay-item-title em {
    position: relative;
    font-style: inherit;
    display: inline-block;
    z-index: 1;
}

.main-podcast-item .overlay-item-title em:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 6px;
    background-color: #ff9100;
    z-index: -1;
    bottom: 9px;
}


/*
.hero-buttn.slide-buttn:before {
	top:29px;
}
*/

/* OVERLAY ITEMS */


.overlay-item {
	position: relative;
	overflow: hidden;
	color: #fff;
}

.overlay-item img {
	width: 100%
}

.overlay-item:before {
	content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.3);
    z-index: 0;
    transition: all 0.4s cubic-bezier(0.77,0.2,0.05,1.0)
}

.overlay-item:hover:before {
	background-color: rgba(0,0,0,0.5);
}

.overlay-item-1 .overlay-item-content {
	position: absolute;
	top: calc(100% - 150px);
	right: 5%;
	left: 5%;
	transition: all 0.4s cubic-bezier(0.77,0.2,0.05,1.0)
}

.overlay-item-1:hover .overlay-item-content {
	top: 25%;
	transition: all 0.4s cubic-bezier(0.77,0.2,0.05,1.0)
}

.overlay-item-1 .overlay-item-title {
	font-size: 3rem;
	text-transform: uppercase;
	z-index: 1;
	margin-bottom: 100px;
	transition: all 0.4s cubic-bezier(0.77,0.2,0.05,1.0)
}

.overlay-item-1:hover .overlay-item-title {
	font-size: 2rem;
	margin-bottom: 20px;
}

.overlay-item-1 .overlay-item-title em {
	position: relative;
	z-index: 1;
	font-style: inherit;
}

.overlay-item-1 .overlay-item-title em:before {
	content: "";
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
    bottom: 10%;
    height: 10px;
    background-color: #FF9100;
    transition: all 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
}

.overlay-item-1:hover .overlay-item-title:before {
	bottom: 7px;
	height: 5px
}

.overlay-item-2 {
	overflow: inherit
}

.overlay-item-2 .image-wrapper {
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 0;
	padding-bottom: 66%
}

.overlay-item-2 .overlay-item-content {
	width: 54vw;
    position: absolute;
    top: 10%;
    background-color: #76217e;
    padding: 60px 60px 0;
}

.overlay-item-2.right .overlay-item-content {
	left: calc(-34vw + 4px);	
}

.overlay-item-2.left .overlay-item-content {
	right: calc(-34vw + 10px);
}

.overlay-item-2 .overlay-item-title {
    margin-bottom: 15px;
    font-size: 3.4rem;
    font-weight: 400;
    max-width: 90%;
}

.overlay-item-2 .overlay-item-content > p {
	margin-bottom: 8%;
	font-size: 1.4rem;
	line-height: 1.2;
}

.overlay-item-2 a.main-btn {
	margin-left: -10vw;
    margin-right: -60px;
    z-index: 10;
    background-color: transparent;
    padding-left: 120px;
}

.overlay-item-2.right a.main-btn {
	padding-left: calc(10vw + 90px);
}

.overlay-item-2.right a.main-btn:before {
	left: 10vw
}

.overlay-item-2.right a:hover.main-btn {
	padding-left: 10vw
}

.overlay-item-2.left a.main-btn {
	margin-left: -60px
}

.overlay-item-2 a.main-btn:before {
	background-color: #BE86BA;
	left: 60px;
}

.overlay-item-2 a:hover.main-btn:before  {
	left: calc(100% - 60px);
}

.overlay-item-2 a.main-btn:hover {
	padding-left: 60px;
}



.overlay-item-2 .overlay-item-title em {
	position: relative;
    font-style: inherit;
    display: inline-block;
    z-index: 1;
}



/* SECTION */


.section-content {	
	padding: 80px 0
}

.section-title {
	max-width: 600px;
}

.section-freeform .section-title{
	margin-bottom: 5px
}

.section-columns-allEvents {
	margin-bottom: -80px
}

.section-columns img {
	max-width: 100%
}

.section-columns figcaption {
	font-size: 1.1rem;
    color: #626262;
}

.gallery-section .section-title{
	text-transform: inherit;
	font-size: 3rem
}

section.section-pageContent h3, .gallery-section h3 {
    color: #76217E;
    font-weight: 300;
    margin: 30px 0;
    font-size: 2rem;
}

.gallery-section h3 {
	font-size: 2.4rem
}

section.section-columns {
	font-weight: 300;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #555
}

section.section-columns small{
	display: block;
	font-size: 1.2rem;
    line-height: 1.3;
}

.section-columns .section-title, .loop-section .section-title {
	margin-bottom: 60px
}

.section-columns .row h3 {
/* 	color: #76217e; */
	font-weight: 300;
	margin-bottom: 30px
}

.section-columns .row h4 {
    color: #ff9100;
    font-weight: 400;
    margin-bottom: 40px;
}

.section-columns .row > div.col-lg-4 {
	padding-right: 6%
}


.section-columns .row > div a {
	color: #ff9100
}

.section-columns .row > div > *:last-child a,
.section-columns-aboutUs .row .col-lg-6 .align-right a,
form input[name="wf-submit"],
form button[type="submit"]
 {
	margin-top: 20px;
    font-size: 18px;
    padding-left: 30px;
    text-decoration: none !important;
    text-align: center;
    min-width: 140px;
    display: inline-block;
    height: 50px;
    line-height: 49px;    
	border: 3px solid #76217E;
    background-color: transparent;
    color: #76217E !important;
    border-radius: 60px;
    line-height: 47px;
    text-align: left;
    padding-right: 60px;
    min-width: 200px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
}

form .radio-group {
	margin-top: 30px;
	margin-bottom: 10px
}

form .sex-radio-group {
	margin-top: 80px;
}

form input[type="radio"] {
	margin-right: 10px !important
}

form .input-group-one-line label:not(:first-child) {
	margin-left: 30px;
}

form input[type="checkbox"]{
	margin-top: 30px;
}

.section-columns .row > div > *:last-child a:after,
.section-columns-aboutUs .row .col-lg-6 .align-right a:after,
.section-columns .row > div > *:last-child a:before,
.section-columns-aboutUs .row .col-lg-6 .align-right a:before,
form input[name="wf-submit"]:before,
form button[type="submit"]:before,
form input[name="wf-submit"]:after,
form button[type="submit"]:after
{
    content: "";
    background-image: url(/images/icons/arrow-right-secondary-color.svg);
    position: absolute;
    display: block;
    height: 30px;
    width: 30px;
    top: 50%;
    right: 15px;
    margin-top: -15px;
	transition: all 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
}

.section-columns .row > div > *:last-child a:before,
.section-columns-aboutUs .row .col-lg-6 .align-right a:before,
form input[name="wf-submit"]:before, 
form button[type="submit"]:before{
	opacity: 0;
	background-image: url(/images/icons/arrow-right.svg);
}

.section-columns .row > div > *:last-child a:hover:before,
.section-columns-aboutUs .row .col-lg-6 .align-right a:hover:before,
form input[name="wf-submit"]:hover:before, 
form button[type="submit"]:hover:before {
	opacity: 1;
	background-image: url(/images/icons/arrow-right.svg);
}

.section-columns .row > div > *:last-child a:hover:after,
.section-columns-aboutUs .row .col-lg-6 .align-right a:hover:after,
form input[name="wf-submit"]:hover:after, 
form button[type="submit"]:hover:after {
	opacity: 0
}

.section-columns .row > div > *:last-child a:hover,
.section-columns-aboutUs .row .col-lg-6 .align-right a:hover,
form input[name="wf-submit"]:hover, 
form button[type="submit"]:hover {
	background-color: #76217E;
	color: #fff !important
}

section.back-button {
	margin-bottom: -100px;
	padding-top: 100px;
	margin-left: -120px;
}

section.section-buttons ul {
	padding: 0;
}

section.section-buttons ul li{
	display: inline-block;
	margin-right: 1.5rem;
	margin-bottom: 15px;
}

.back-button a {
	transform: rotate(-180deg);
	display: inline-block;	
}

section.section {
	padding: 60px 0
}

section.section-image {
    position: relative;
}

section.section-image .image-wrapper {
	padding: 0;
    margin: 60px 0;
    height: 0;
    overflow: hidden;
    padding-bottom: 66vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
    width: 74vw;
    position: relative
}

section.section-image img {
	width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    right: 50%;
    transform: translate(50%, 0);
	margin-top: -33vh;
}

section.section-image span {
    position: absolute;
    text-align: right;
    bottom: 70px;
    font-size: 1.1rem;
    color: #626262;
    display: block;
    width: 74vw;
    font-weight: 300;
}

.front-page section.section:not(.pre-footer) {
	padding: 120px 0
}

.single-page .pre-title{
	font-size: 35px;
	color: #FF9100;	
	margin-bottom: 0;
	font-weight: 700
}

section.single-page {
	color: #464646;
	font-weight: 300
}

.single-page a {
	color: #FF9100;
}

section.single-page h1 {
	color: #76217E;
	font-weight: 400;	
	font-size: 3rem;
	margin: 1rem 0;
	text-transform: uppercase;
	display: block
}

section.single-page h4 {
	color: #F6A64F;
	font-weight: 400;
	margin: 30px 0; 	
}

.section.small-padding {
	padding: 40px 0
}


.section-title, .gallery-section h1 {
	text-align: left;
    font-size: 3.4rem;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #76217e;
}

.gallery-section h1 {
	margin-bottom: 100px;
	display: block
}


.tilted {
	position: relative;
	margin: 100px 0
}

.tilted:before, .tilted:after {
    content: "";
    position: absolute;
    left: -60px;
    right: -20px;
    height: 100px;
    z-index: -1;
    top: -50px;
    background-color: #76217E;
    transform: rotate(2deg);
}

.tilted:after {
	top: inherit;
	bottom: -50px;
}

/* SPECIALS */


.specials h3 {
	font-size: 2.2rem;
	margin-bottom: 2rem	
}

/* OPTIONS */

.options .item h3{
	color: #4096CC;
}

.options .item {
	background-color: #E8F0F3;
	border-radius: 15px;
	padding: 40px 30px;
	position: relative;
	padding-left: 25%;	
}

.options .item-badge {
    position: absolute;
    right: 0;
    top: -130px;
}

.options .item-number {
	position: absolute;
    color: #fff;
    font-weight: 800;
    font-size: 14rem;
    left: 3%;
    bottom: 0px;
    height: 60px;
    line-height: 60px;
}

/* TRACK */

.item-track {
	background-color: #E8F0F3;
	border-radius: 15px;
	position: relative;
	padding: 15px;
	margin-bottom: 30px;
}

.item-track .item-title {
	word-break: break-all;
    height: 1.7rem;
    overflow: hidden;
    margin-bottom: 5px
}

.item-track .delete-from-cart {
	position: absolute;
    right: 5px;
    top: 5px;
    color: #ccc;
    transition: all 0.2s ease-in-out
}

.item-track .delete-from-cart:hover {
	color:#464646
}

.item-track .waveform-image {
	filter: invert(1);
	opacity: 0.2;
	width: 100%;
	max-height: 50px
}

.item-wave-wrapper {
	position: relative
}

.audio-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    height: 100%;
    z-index: 100;
    
}

.audio-progress span {
/* 	background-color: rgba(110, 214, 18, 0.48); */
	background-color: rgb(18 142 214 / 50%);
	display: block;
	position: absolute;
	left: 0;
	top: 0; 
	bottom: 0;
}

.track-details {
	position: absolute;
	bottom: 15px;
	left: 175px;
	right: 15px;
}

.track-actions {
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: right
}

.track-actions li {
	display: inline-block
}

.item-image-wrapper {
	width: 160px;
	position: relative;
}

.item-image-wrapper a {
	display: block	
}

.item-image-wrapper img {
	width: 100%;
	border-radius: 15px;
}

/* TRACK SINGLE */

.item-track-single h4{
	margin-top: 1rem
}

.item-track-single .note-block {
	margin-top: -130px
}

/* LATEST VIDEOS */

.latest-videos-inner {
	overflow-x: auto;
	white-space: nowrap;
}

.latest-videos .item {
	width: 300px;
	margin-right: 15px;
	display: inline-block;
}

.latest-videos .item a {
	padding-bottom: 60%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: block;
	border-radius: 15px;
	position: relative
}

.latest-videos .item a svg {
	position: absolute;
	fill: #fff;
	width: 50px;
	height: 50px;
	left: 50%;
	top: 50%;
	margin-top: -25px;
	margin-left: -25px;
	transition: all 0.2s ease-in-out
}

.latest-videos .item a:hover svg {
	opacity: 0.8
}

.latest-videos .item-title {
	margin: 15px 0;
}

/* LATEST SPECIALS */

.latest-specials-inner {
	overflow-x: auto;
	white-space: nowrap;
}

.latest-specials .item {
	position: relative;
	width: 510px;
	margin-right: 15px;
	display: inline-block;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 30px;
	border-radius: 30px;
	overflow: hidden
}

.latest-specials .item:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5)
}

.latest-specials .row {
	z-index: 1;
	position: relative
}

.latest-specials .item-price{
	font-size: 2rem
}

/* BLOG */

.blog .item {
	margin-bottom: 40px;
	border-radius: 15px;
	background-color: #E8F0F3;
	padding: 30px;	
	font-size: 1rem
}

.blog .item-image a{
	padding-bottom: 60%;
    border-radius: 15px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
}

/* CATEGORIES */

.categories-inner {
	overflow-x: auto;
	white-space: nowrap;
}

.categories-inner .item {
	width: 240px;
	margin-right: 15px;
	display: inline-block;
	color: #fff;
	text-align: center;
	border-radius: 15px;
	position: relative;
	overflow: hidden;
	margin-right: 15px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat
}

.categories-inner .item:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.4);
	z-index: 0;
	transition: all 0.2s ease-in-out
}

.categories-inner .item:hover:before {
	background-color: rgba(0,0,0,0.2);
}

.categories-inner h3 {
	font-size: 1.4rem;
	margin-top: 21%;
}

.categories-inner .item-content {
	height: 0;
	padding-bottom: 36%;
	font-size: 0.9rem;
	position: relative;
	z-index: 1;
	display: block;
	color: #fff;
	text-decoration: none
}

/* INSPIRED */

.inspired-inner {
	overflow-x: auto;
	white-space: nowrap;
}

.inspired-inner .item {
	width: 340px;
	margin-right: 15px;
	display: inline-block;
	color: #fff;
	text-align: center;
	border-radius: 15px;
	position: relative;
	overflow: hidden;
	margin-right: 15px;
}


.inspired-inner .item .item-content {
	padding-bottom: 150%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: block;
	position: relative;
	color: #fff;
	transition: all 0.2s ease-in-out
}

.inspired-inner .item .item-content:hover {
	opacity: 0.8
}

.inspired-inner .item .item-content svg {
	position: absolute;
	width: 50px;
	height: 50px;
	top: 50%;
	left: 50%;
	margin-top: -25px;
	margin-left: -25px;
}

/* PAGINATION */

.pagination {
	flex-wrap: wrap
}

.pagination .page-item {
	margin-bottom: 10px
}

.pagination .page-item .page-link {
	border: none;
    color: #4096cc;
    text-decoration: none;
    box-shadow: none;
    border-radius: 5px;
}

.page-item.active .page-link {
	background-color:#4096cc;
	color: #fff; 
	
}

.page-item:not(:first-child) .page-link {
	margin-left: 5px
}

/* REVIEWS */

.reviews .item {
	background-color: #E7F0F4;
	padding: 20px;
	border-radius: 15px;
	margin-bottom: 30px
}

.reviews .item-image {
	width: 80px;
}

.reviews .item-content {
	font-size: 16px
}

/* FOOTER */

.pre-footer {
	margin-top: 40px
}

footer {
	padding: 60px 0 40px 
}

footer, footer a {
	color: #fff
}

.footer__links a:hover {
	font-weight: 700 !important;
	text-decoration: none !important
} 

footer a:hover {
	color: #fff;
	text-decoration: underline
}

footer p {
	font-size: 1rem;
	margin-bottom: 0
}

footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
	margin-bottom: 20px
}

footer ul li a {
    margin-bottom: 10px;
    display: inline-block;
}

.footer__social-links {
	max-width: 140px
}

.footer__social-links li {
	display: inline-block;
	margin-bottom: 0.5rem
}

.footer__social-links li a {
	padding: 0 5px;
	max-width: 40px;
}

.footer__social-links li a img {
	width: 100%;
}

.footer__social-links svg {
	fill: #fff; 
	width: 25px;
	height: 25px;
}

footer .copyrights {
	margin-top: 80px;
	font-size: 14px
}

section.auth {
	font-size: 1rem
}

/* UI */


.freeform-row .freeform-column .freeform-label.freeform-required:after {
	display: none
}

form .wf-group > label.wf-label {
	display: none
}

.wf-group {
	margin-bottom: 15px;
}


form .wf-field[type="checkbox"], form .wf-field[type="radio"] {
	margin-right: 10px;
}


form .custom-col-3 {
	width: 24%;
	display: inline-block
}

form .custom-col-8 {
	width: 75%;
	display: inline-block
}

input[type="email"], input[type="text"], input[type="password"], input[type="search"], textarea, select {
	border-radius: 0;
	border: 2px solid #76217E;
	line-height: 60px;
	height: 60px;
	font-weight: 300;
	color: #7797a2;
	background-color: transparent;
	padding-left: 30px;
	padding-right: 30px;
	width: 100%;
}

form textarea {
	height: auto;
	line-height: inherit;
	min-height: 150px;
	padding-top: 10px;
}

form .radio-group-column {
	padding: 30px !important;
	background-color: #F8F8F8;
	margin-bottom: 30px !important;
	padding-top: 0 !important;
}

form .registration-radios .wf-group-heading {
	margin-bottom: 15px
}

form .registration-radios .wf-radio {
	margin-bottom: 10px;
	font-size: 1rem
}


/* SNIPPETS */

/* Accordion */


.accordion__number, .accordion__text {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #fff;
}

.accordion_header {
	background-color: #76217e;
	position: relative;
	cursor: pointer
}

.accordion_header > * {
	display: inline-block;
}

.accordion_header .accordion__number {
	font-weight: 400
}

.accordion_header .accordion__text {
	padding-left: 2rem;
	font-weight: 400;
	max-width: 84%;
	padding-top: 14px;
}

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

.accordion_header .accordion__btn {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 70px;
}

.accordion_header .accordion__number {
	width: 70px;
	line-height: 70px;
	text-align: center;
	background-color: #BE86BA;
	float: left
}

.accordion .accordion__content{
	padding: 2rem 0;
}

.accordion .accordion__content table {
	
}

.accordion .accordion__content img{
	max-width: 100%
}

.accordion .accordion__content table tr {
	
}

.accordion .accordion__content table tr td {
	
}

/* .accordion .accordion__content table img */
section table img {
	width: 100%;
	height: auto
}

.accordion .accordion__content figcaption {
	font-size: 1rem
}

@media(min-width: 992px){
	
	.accordion .accordion__content table tr td:first-child {
		padding-right: 8px
	}
	
	.accordion .accordion__content table tr td:last-child {
		padding-left: 8px
	}

}

@media(min-width: 992px) AND (max-width: 1699px){
	.hero em:before, 
	.page-hero em:before, 
	.loop-item-6 em:before,
	.loop-item-7 em:before,
	.overlay-item-2 .overlay-item-title em:before {
		bottom: 13%
	}
}

@media only screen and (min-width: 37.5em) {
  .accordion__number, .accordion__text {
    font-size: 2.2rem;
  }
}
.accordion__btn {
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}
.accordion__box {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
}

.accordion .open .accordion__box {
	max-height: 10000px;
}

.accordion button svg {
	transform: rotate(90deg);	
	transition: all 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
}

.accordion .open button svg {
  transform: rotate(-90deg);
}

.quote-section {
	padding-bottom: 100px !important;
}

.quote-section q {
	position: relative;
	display: block;
	color: #76217E;
	padding-left: 145px;
	font-size: 2rem;
	font-weight: 300;
}

.quote-section q:before {
	content: url('/images/icons/arrow-right-main-color.svg');
	position: absolute;
	display: block;
	height: 30px;
	width: 30px;
    top: 0;
    left: 0;
}

.quote-section q mark {
    background-color: transparent;
    position: absolute;
    left: 140px;
    bottom: -40px;
    font-size: 1rem;
    color: #707070;
}

.quote-section q mark:before {
	content: "-";
	padding-right: 5px;
}



/* LOOP ITEMS */


.loop-item {
	color: #fff;
	position: relative;
}

.loop-item-1 .main-btn,
.loop-item-2 .main-btn {
	padding-top: 5px;
}

.loop-item-1>a,
.loop-item-2>a,
.loop-item-3 {
	display: block;
	position: relative;
	height: 0;
	padding-bottom: 100%;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover
}

.loop-item-1 .main-btn,
.loop-item-2 .main-btn {
	background-color: transparent;
	position: absolute;
	bottom: 30px;
	left: 0;
	right: 0;
	z-index: 2;
	height: auto;
	font-size: 2rem;
	line-height: 1;
}

.section-positions .loop-item-2 .item-date,
.section-parolen .loop-item-2 .item-date {
	text-transform: uppercase
}

.section-positions .loop-item-2 .item-note,
.section-parolen .loop-item-2 .item-note {
	padding: 0 30px 0 0;
	font-size: 1.3rem;
	line-height: 
}

.loop-item-1 .main-btn:before,
.loop-item-2 .main-btn:before {
	top: 0;
	margin-top: 6px;
}

.loop-item img:not(.ul-inline img, .item-social-links a img),
.overlay-item .image-wrapper img
{
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	position: absolute;
	right: 50%;
	transform: translate(50%, 50%);
	z-index: 0;
	max-width: inherit;
	bottom: 50%;
}

.loop-item .item-date {
	position: absolute;
	left: 30px;
	top: 20px;
	font-weight: 400;
	font-size: 1.4rem;
	color: #fff;
	z-index: 2;
	text-transform: none;
}

.loop-item-1>a:before,
.loop-item-3:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 1;
	transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.loop-item-1>a:hover:before,
.loop-item-3:hover:before {
	background-color: rgba(118, 33, 126, 0.8);
}

.loop-item-2 {
	background-color: #76217e;
}

.loop-item-2 .main-btn {
	 top: 33%;
	 font-size: 2.2rem;
	 line-height: 1.1;
	 max-width: 80%;
}

.loop-item-2>a:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.5);
	transition: all 1s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.loop-item-2 a:hover:after {
	left: 100%;
}

.loop-item-2 .item-note {
	position: absolute;
	left: 30px;
	bottom: 30px;
	font-size: 2.2rem;
	color: #fff;
}

.loop-item-6 .item-note {
	font-size: 1.6rem
}

.loop-item-2 .item-description {
  position: absolute;
  left: 90px;
  bottom: 30px;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.1;
  max-width: 75%;
  font-weight: 300;
  transition: all 1s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.loop-item-2:hover .item-description {
  left: 30px;
}

.loop-section:not(.rotator-loop-section) .loop-item {
	margin-bottom: 30px;
}

.loop-item {
	background-size: cover
}

.rotator-loop-section .owl-item:nth-child(2n + 2) .loop-item-2,
.loop-section .row>div:nth-child(2n+2) .loop-item-2 {
	background-color: #FF9100;
}

.loop-item-3 {
	padding-bottom: 66%;
}

.loop-item-3 .overlay-item-content {
	position: absolute;
	left: 60px;
	right: 60px;
	bottom: 60px;
	z-index: 1;
	max-width: 75%
}

.loop-item-3 .overlay-item-content p {
	margin-bottom: 0;
	font-size: 1rem;
	line-height: 1.3;
}

.loop-item-3 .overlay-item-title {
	font-weight: 400;
	text-transform: uppercase;
	font-size: 2.4rem;
	width: 400px;
	max-width: 60%;
	line-height: 1.1
}

.loop-item-3 .main-btn:before {
	background-color: #FF9100;
}

.loop-item-3 .arrow svg {
	transform: rotate(-90deg);
	transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.loop-item-3:hover .arrow svg {
	transform: rotate(90deg);
}

.loop-item-3 .item-description {
	max-height: 0;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.loop-item-3:hover .item-description {
	max-height: 400px;
}

.loop-item-3 .item-description a {
	margin-top: 20px;
}

.loop-item-4 a {
	padding-bottom: 66%;
}

.loop-item-4 .main-btn {
	bottom: 30px;
	font-size: 1.5rem
}

.loop-item-4 .main-btn:before {
	top: -5px
}

.loop-item-5 {
	padding-bottom: 100%;
	margin-bottom: 30px;
	overflow: hidden
}

.loop-item-5 h3 a {
	text-decoration: none;
	color: #fff;
}

.loop-item-5 .overlay-item-content p {
	margin-bottom: 1rem;
}

.loop-item-5 .overlay-item-title {
	font-size: 2rem !important;
	margin-bottom: 0
}

.loop-item-5 .overlay-item-subtitle {
	font-size: 1.5rem
}

.loop-item-5 .overlay-item-title,
.loop-item-5 .overlay-item-subtitle {
	max-width: none;
	width: auto;
	display: block;
	font-weight: 400;
}

.loop-item-5 .item-description {
	font-size: 1rem
}

.loop-item-5 .item-description a {
	margin-top: 0;
	color: #FF9100;
}

.loop-item-5 .overlay-item-content {
	left: 30px;
	right: 30px;
	bottom: 30px;
}

.loop-item-6 {
	height: 0;
	padding-bottom: 90%;
	position: relative;
}

.loop-item-6 .item-title, .loop-item-6 .item-title p {
	text-transform: uppercase;
	font-size: 2.6rem;
	font-weight: 400;
	max-width: 80%;
	display: none;
	position: relative;
	z-index: 2;
}

.loop-item-6 .item-title p {
   margin-bottom: 0;
   max-width: none !important
}

.loop-item-6 .item-note > p {
	margin-bottom: 0
}

.loop-item-6 p {
	font-size: 1.2rem;
	line-height: 1.3
}

.loop-item-6>a {
	padding-bottom: 90%;
}

.loop-item-6 .ul-inline {
	position: absolute;
	right: 20px;
	z-index: 10;
	bottom: 24px;
	margin: 0;
}

.loop-item-6 .ul-inline img {
	filter: brightness(13);
	max-width: 40px;
}

.loop-item-6 .item-note {
	bottom: 90px;
	text-transform: none;
	color: #fff;
	font-weight: 300;
	right: 30px;
}

.loop-item-8 {
	padding-bottom: 66%;
}

.loop-item-8 .item-additionals {
	background-color: #76217e;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 40px;
	line-height: 40px;
	padding: 0 0 0 15px;
	font-size: 1rem;
}

.loop-item-8 .item-additionals svg {
	transform: scale(1.3);
	margin-top: -3px;
}

.section-podcast .additional-container {
	margin-top: 200px
}


.loop-item-7 .overlay-item-title {
  margin-bottom: 30px;
}

.loop-item-7 .overlay-item-title, .loop-item-7 .overlay-item-title * {
  font-size: 3.2rem !important;
  transition: all .4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
} 




.loop-item-7 video, .homepage-hero video {
   position: absolute;
   top: 50%;
   left: 50%;
   min-width: 100%;
   min-height: 100%;
   width: auto;
   height: auto;
   z-index: -100;
   transform: translateX(-50%) translateY(-50%);
   background-size: cover;
   transition: 1s opacity;
   z-index: 0;
}

.loop-item-7 .overlay-item-title:not(.item-1 .overlay-item-title) {
  max-width: inherit
}

.loop-item-7:before {
   background-color: rgba(0,0,0,0.5) !important
}

.loop-item-7 .main-btn, .loop-item-3 .main-btn {
  line-height: 62px;
  height: 60px;
}

.loop-item-7 .main-btn:before, .loop-item-3 .main-btn:before {
   transform: scale(0.8)
}

.loop-item-7.item-1 .item-description {
  max-width: 800px;
  width: 60%;
}

.loop-item-7 .overlay-item-content {
  left: 60px;
  right: 60px;
  bottom: 60px;
}

.loop-item-7.item-1 .overlay-item-content {
  bottom: 15%; 
}

.loop-item-7 .item-description p {
  font-size: 2.2rem;
  line-height: 1.1;
  transition: all 1s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.loop-item-7:hover .overlay-item-title, .loop-item-7:hover .overlay-item-title * {
  font-size: 1.6rem !important;
}

@media (max-height:950px){
	
	#overlay-menu li a {
		padding: 0
	}
	
}

@media (min-width:992px) AND (max-width:1200px){
	
	header .navbar-nav {
		margin-right: 70px;
	}
	
	header .navbar-nav .nav-item a {
		padding: 0 15px !important
	} 
	
}

@media (min-width:1400px) AND (max-width:1899px){
	
	header .navbar-nav {
		margin-right: 40px;
	}
	
}

@media (min-width:1200px) AND (max-width:1399px){
	
	header .navbar-nav {
		margin-right: 40px;
	}
	
}

@media(min-width:992px) {
   
	 .gallery-section .container {
		padding: 0       
	 }
	  
	.section-podcast .row>div:first-child .loop-item-6 .item-title,
	.section-podcast .row>div:first-child .loop-item-6 .item-title p {
		display: block;
		max-width: inherit;
	}
	.section-podcast .row>div:first-child .loop-item-6>a:after {
		display: none
	}
	.section-podcast .row>div:first-child .loop-item-6 .item-note {
		bottom: 140px;
		max-width: 75%;
	}
	.section-podcast .row>div:first-child {
		width: 66.66%
	}
	.section-podcast .row>div:first-child .loop-item-6 .ul-inline {
		left: inherit;
		right: 20px;
	}
	.section-podcast .row>div:first-child .loop-item-6>a {
		padding-bottom: inherit;
		height: 100%;
	}
	.section-podcast .row>div:first-child .loop-item-6 .main-btn {
		bottom: 0;
		top: inherit;
		height: 100px;
		line-height: 100px;
		background-color: rgb(255 255 255 / 30%);
		border-radius: 0;
		max-width: inherit;
	}
	
  .section-podcast .row>div:first-child .loop-item-6 .main-btn:before {
	 top: 50%;
	 margin-top: -17px;
  }
 
	.section-podcast .row>div:first-child .loop-item-6 {
		height: calc(100% - 30px);
		padding-bottom: inherit;
	}
	.section-podcast .row>div:first-child .loop-item-6:hover .main-btn:before {
		left: calc(100% - 40%);
	}
}

@media(max-width:991px) {
	.loop-item-4 .main-btn {
		line-height: 1.2;
		font-size: 1.4rem;
		word-break: break-word;
	}
	.loop-item-4 .main-btn:before {
		top: 11px
	}
	.section-podcast .additional-container .col {
		margin-top: 1rem;
		flex: inherit;
	}
	.section-podcast .additional-container .col ul {
		margin-left: -5px
	}
	.section-columns .row>div {
		padding-bottom: 30px;
	}
}


/* RESPONSIVE */




.overlay-item-2.right .overlay-item-content:after,
.overlay-item-2.left .overlay-item-content:after{
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	left:0;
	height: 100px;
	background-color: #BE86BA;
}	

body.news section:not(.loop-section, .rotator-loop-section, .gallery-section .owl-carousel-wrapper) .container,  
body.events section:not(.loop-section, .rotator-loop-section, .gallery-section .owl-carousel-wrapper) .container, 
body.parolen section:not(.loop-section, .rotator-loop-section, .gallery-section .owl-carousel-wrapper) .container, 
body.positions section:not(.loop-section, .rotator-loop-section, .gallery-section .owl-carousel-wrapper) .container {
	padding-left: 120px
}

@media (min-width:1200px){
	
	.page-hero {
		background-position: calc((100vw - 1140px) / 2) center
	}
	
	.page-hero .page-hero-content {
		padding-left: calc((100vw - 1140px) / 2);
	}
	
	.common-links {
		left: calc((100vw - 1140px) / 2);
	}
	
	.social-media-links{
		right: calc((100vw - 1140px) / 2);
	}
	
	.front-page .container-fluid, header nav .container-fluid, .strange-section .container-fluid {
		padding-left: calc((100vw - 1140px) / 2);
	}
	
	
	body.news section:not(.loop-section, .rotator-loop-section) .container-fluid,
	body.events section:not(.loop-section, .rotator-loop-section) .container-fluid,
	body.parolen section:not(.loop-section, .rotator-loop-section) .container-fluid,
	body.positions section:not(.loop-section, .rotator-loop-section) .container-fluid {
		padding-left: calc((100vw - 1140px) / 2 + 120px);
	}
	
	
	.hero-buttn {
	    padding-left: calc((100vw - 1140px) / 2 + 70px);
	}
	
	.hero-buttn:hover {
		padding-left: calc((100vw - 1140px) / 2 + 7px);
	}	
	
	.hero-buttn:before {
		left: calc((100vw - 1140px) / 2 + 7px);
	}
	
	.homepage-hero .scroll-screen{
		left: calc((100vw - 1140px) / 2 + 20px);
	}
	
	
	.overlay-item-2.right .overlay-item-content{
		padding-left: calc((100vw - 1140px) / 2);
	}
	
	.overlay-item-2.left .overlay-item-content {
		padding-right: calc((100vw - 1140px) / 2);
	}
	
	.loop-item-7.item-1 .overlay-item-content {
		left: calc((100vw - 1140px) / 2);
	}
	
	.container-item-2 .row > div:first-child{
		width: calc(54vw - calc((100vw - 1140px) / 2) + 25px) !important;
	}
	
}

@media (min-width: 1400px) {
	
	
	
	
	.page-hero {
		background-position: calc((100vw - 1340px) / 2) center
	}
	
	.page-hero .page-hero-content {
		padding-left: calc((100vw - 1340px) / 2);
	}
	
	.common-links {
		left: calc((100vw - 1340px) / 2);
	}
	
	.social-media-links {
		right: calc((100vw - 1340px) / 2);
	}
	
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	    max-width: 1340px;
	}
	
	.front-page .container-fluid, header nav .container-fluid, .strange-section .container-fluid {
		padding-left: calc((100vw - 1340px) / 2);
	}
	
	body.news section:not(.loop-section, .rotator-loop-section) .container-fluid,
	body.events section:not(.loop-section, .rotator-loop-section) .container-fluid,
	body.parolen section:not(.loop-section, .rotator-loop-section) .container-fluid,
	body.positions section:not(.loop-section, .rotator-loop-section) .container-fluid {
		padding-left: calc((100vw - 1340px) / 2 + 120px);
	}
	
	
	.container-item-2 .row > div:first-child{
		width: calc(54vw - calc((100vw - 1340px) / 2) + 25px) !important;
	}
	
	
	
	.hero-buttn {
	    padding-left: calc((100vw - 1340px) / 2 + 70px);
	}
	
	.hero-buttn:hover {
		padding-left: calc((100vw - 1340px) / 2);
	}
	
	.hero-buttn:before {
		left: calc((100vw - 1340px) / 2);
	}
	
	.homepage-hero .scroll-screen{
		left: calc((100vw - 1340px) / 2 + 20px);
	}
	
		
	.overlay-item-2.right .overlay-item-content{
		padding-left: calc((100vw - 1340px) / 2);
	}
	
	.overlay-item-2.left .overlay-item-content {
		padding-right: calc((100vw - 1340px) / 2);
	}
	
	.loop-item-7.item-1 .overlay-item-content {
		left: calc((100vw - 1340px) / 2);
	}	
	
}

@media (min-width: 1900px) {
	
	.page-hero {
		background-position: calc((100vw - 1700px) / 2) center
	}
	
	.page-hero .page-hero-content {
		padding-left: calc((100vw - 1700px) / 2);
	}
	
	.common-links {
		left: calc((100vw - 1700px) / 2);
	}
	
	.social-media-links {
		right: calc((100vw - 1700px) / 2);
	}
	
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	    max-width: 1700px;
	}
	
	.front-page .container-fluid, header nav .container-fluid, .strange-section .container-fluid {
		padding-left: calc((100vw - 1700px) / 2 );
	}
	
	body.news section:not(.loop-section, .rotator-loop-section) .container-fluid,
	body.events section:not(.loop-section, .rotator-loop-section) .container-fluid,
	body.parolen section:not(.loop-section, .rotator-loop-section) .container-fluid,
	body.positions section:not(.loop-section, .rotator-loop-section) .container-fluid {
		padding-left: calc((100vw - 1700px) / 2 + 120px);
	}
	
	
	
	.hero-buttn {
	    padding-left: calc((100vw - 1700px) / 2 + 70px);
	}
	
	.hero-buttn:hover {
		padding-left: calc((100vw - 1700px) / 2);
	}
	
	.hero-buttn:before {
		left: calc((100vw - 1700px) / 2);
	}
	
	.homepage-hero .scroll-screen{
		left: calc((100vw - 1700px) / 2 + 20px);
	}
	
		
	.overlay-item-2.right .overlay-item-content{
		padding-left: calc((100vw - 1700px) / 2);
	}
	
	.overlay-item-2.left .overlay-item-content {
		padding-right: calc((100vw - 1700px) / 2);
	}
	
	.loop-item-7.item-1 .overlay-item-content {
		left: calc((100vw - 1700px) / 2);
	}	
	
	.container-item-2 .row > div:first-child{
		width: calc(54vw - calc((100vw - 1700px) / 2) + 25px) !important;
	}
	
}


/*
@media (min-width:992px){
	.front-page .container-fluid, header nav .container-fluid, .strange-section .container-fluid {
		padding-left: calc((100vw - 960px) / 2);
	}
}

@media (min-width:768px){
	.front-page .container-fluid, header nav .container-fluid, .strange-section .container-fluid {
		padding-left: calc((100vw - 720px) / 2);
	}
}
*/

.owl-stage .overlay-item.overlay-item-1 {
	margin-bottom: 0;
	height: 0;
	padding-bottom: 60%;
}

.owl-carousel .owl-item img {
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    right: 50%;
    bottom: 50%;
    transform: translate(50%, 50%);
}


.front-page .events-carousel .overlay-item.overlay-item-1 {
	padding-bottom: 90%
}

.spacer-section {
	display: none !important
}



@media(min-width:992px) AND (max-width:1199px){
	.owl-stage {
		left: -50px
	}
	
	.section-podcast .row>div:first-child {
		width: 100%
	}
	
	.section-podcast .row>div:first-child .loop-item-6 {
		padding-bottom: 50%;
		height: 0
	}
	
	.owl-carousel-thirds .owl-stage {
		left: -150px
	}
	
	.loop-item-4 .main-btn {
		max-width: 100%
	}
}

@media(min-width:1200px) AND (max-width:1399px){
	
	.section-podcast .row>div:first-child .loop-item-6 .item-title, 
	.section-podcast .row>div:first-child .loop-item-6 .item-title p {
		font-size: 1.8rem	
	}
	
	.loop-item-6 p {
		font-size: 1rem;
		line-height: 1.1;
	}
	
	.owl-carousel-thirds .owl-stage {
		left: -30px
	}
	
	.loop-item-4 .main-btn {
		font-size: 1.5rem !important;
		max-width: 90%
	}
	
}

@media(min-width:992px) AND (max-width:1399px){
	
	.page-hero h1 {
		font-size: 2.8rem
	}
	
	.page-hero .page-hero-content {
		width: 50vw
	}
	
	.page-hero .scroll-screen {
		left: 50vw
	}
	
	.loop-item-1 .main-btn, .loop-item-2 .main-btn {
		font-size: 1.6rem
	}
}

@media(min-width:992px) AND (max-width:1699px){
	
	
	.loop-item-2:not(.loop-item-4) .main-btn, .loop-item-2:only-of-type(.loop-item-4) .item-note {
		font-size: 1.8rem		
	}
	
	.loop-item-2 .item-note {
		bottom: 30px
	}	
		
	.loop-item-2 .item-note p {
		margin-bottom: 0
	}
	
	.hero h1 {
		font-size: 5rem;
		margin-top: 0;
	}
	
	.section-threeHeroes .loop-item-3 .overlay-item-title p {
		line-height: 1
	}
	
	.loop-item-7 .main-btn, .loop-item-3 .main-btn {
		line-height: 52px;
		height: 50px;
	}
	
	.loop-item-7 .overlay-item-content {
		bottom: 30px
	}
	
	.loop-item-7 .item-description p {
		font-size: 1.6rem;
		line-height: 1.1;
	}
	
	.loop-item-7.item-2 .item-description p {
		max-height: 113px;
		overflow: hidden;
	}
	
	.loop-item-7 .overlay-item-title, .loop-item-7 .overlay-item-title * {
		font-size: 2.4rem !important
	}
		
	
	.loop-item-7.item-1 .item-description {
		width: 100%
	}
	
	.overlay-item-2.right .overlay-item-content:after, .overlay-item-2.left .overlay-item-content:after {
		height: 80px;
	}
	
	.overlay-item-2 .overlay-item-title {
		font-size: 2.4rem;
		line-height: 1;
	}
	
	.main-btn-xl {
		line-height: 85px;
		height: 80px;
		font-size: 1.8rem;
	}
	
	.loop-item-3 .overlay-item-content {
		left: 30px;
		right: 30px;
		bottom: 30px;
	}
	
	.loop-item-3 .overlay-item-title {
		max-width: none;
		font-size: 1.8rem
	}
	
	.loop-item-3 .overlay-item-title .arrow svg {
		transform: scale(0.8)
	}
	
}

@media (min-width: 468px) and (max-width:1199px){
	
	.loop-item-2.loop-item-6 .item-note {
		right: 30%
	}
	
}

@media (min-width:992px){
	
	section.hero .container {
		padding: 0
	}
	
	
	#overlay-menu .container {
		padding: 0
	}
	
	.spacer-section {
		min-height: inherit !important;	
	}

	
}

@media (max-width:991px){
	
	html, body {
		overflow-x: hidden
	}
	
	.section-title, .gallery-section h1 {
		font-size: 2.8rem;
		margin-bottom: 20px
	}
	
	body .section-content p, section.section-columns small{
		font-size: 1rem;
		line-height: 1.4;
	}
	
	/* BUTTONS */
	
	
	.buttn {
		height: 44px;
		line-height: 41px
	}
	
	.buttn-outline-secondary {
		line-height: 40px;
	}
	
	/* HEROES */
	
	.page-hero {
		height: calc(100vh - 94px);
		width: calc(100% - 15px);
		margin-left: auto;
		background-size: cover;
		margin-bottom: 30px
	}

	.page-hero h1 {
		font-size: 1.8rem;
		display: block
	}
	
	.page-hero h3.page-hero-description {
		font-size: 1rem
	}
	
	.page-hero .page-hero-content {
		padding: 10px 15px 30px;
		width: 100%;
		margin-left: -15px;
		bottom: -30px;
		padding-right: 20%;
	}
	
	.section-heroWithImage .scroll-screen {
		display: none
	}
	
	/* SECTIONS */
	
	.section-content {
		padding: 60px 0
	}
	
	.section-columns .section-title, .loop-section .section-title {
		margin-bottom: 30px
	}
	
	
/* 	.accordion .accordion__content table tbody */
	section table tbody {
		display: flex;
		flex-direction: column
	}
	
/* 	.accordion .accordion__content table td */
	section table td{
		display: block;
		width: 100%
	}
	
	body.news section:not(.loop-section, .rotator-loop-section, .gallery-section .owl-carousel-wrapper) .container, 
	body.events section:not(.loop-section, .rotator-loop-section, .gallery-section .owl-carousel-wrapper) .container, 
	body.parolen section:not(.loop-section, .rotator-loop-section, .gallery-section .owl-carousel-wrapper) .container, 
	body.positions section:not(.loop-section, .rotator-loop-section, .gallery-section .owl-carousel-wrapper) .container {
		padding-left: 15px
	}
	
	.quote-section q {
		padding-left: 55px;
		font-size: 1.3rem;
	}
	
	.quote-section q mark {
		left: 55px 
	}
	
	.page-hero-subtitle .bg-element {
		font-size: 50vh;
		right: -70px;
		top: -50px;
	}
	
	
	.section-team .loop-item-5 {
		overflow: inherit;
		height: auto;
		padding-bottom: 100px;
	}
	
	.section-team .loop-item-5 img {
		position: static !important;
		width: 100% !important;
		transform: none !important;
	}
	
	.section-team .loop-item-5:before {
		display: none !important
	}
	
	.section-team .loop-item-5 .overlay-item-content {
		position: relative;
		z-index: 10;
		left: 0 !important;
		right: 0 !important;
		bottom: 95px !important;
		max-width: inherit;
	}
	
	.section-team .loop-item-5 .overlay-item-title {
		padding-top: 15px !important
	}
	
	.section-team .loop-item-5 .overlay-item-subtitle {
		margin-bottom: 0;
		padding-bottom: 15px;
	}
	
	.section-team .loop-item-5 .arrow {
		display: none
	}
	
	.section-team .loop-item-5 .overlay-item-content h3, .section-team .loop-item-5 .overlay-item-content h4 {
		background-color: rgba(118, 33, 126, 0.8);
		padding: 0 20px;
		height: 47px;
		line-height: 40px;
		overflow: hidden
	}
	
	.section-team .loop-item-5 .item-description {
		padding: 20px;
	}
	
	.section-team .loop-item-5 .item-description {
		max-height: inherit;
		background-color: #77207e;
	}
	
	
	.spacer-section {
		height: inherit !important;	
	}
	
	
	body {
		line-height: 1.3
	}	
	
	section.back-button {
	    margin: 0;
		margin-left: -5px;
	    padding:0;
	}
	
	section.back-button svg{
		transform: scale(0.6)
	}
	
	.front-page .container-fluid, header nav .container-fluid, .strange-section .container-fluid {
		padding-left: 15px;
	}
	
	
	.front-page-heroes .overlay-item {
		height: 0;
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
		padding-bottom: 67%;
		width: 100%;
	}
	
	
	.main-podcast-item {
		padding-bottom: calc(60px + 5%)
	}
	
	.main-podcast-item ul, .podcast-category-section .parolen-carousel .item ul {
		bottom: 15px
	}
	
	.main-podcast-item ul a{
		padding-left: 5px;
		padding-right: 5px
	}
	
	.main-podcast-item ul img {
		width: 30px;
	}
	
	.news-carousel a {
		line-height: 34px;
	}
	
	.news-carousel > div, .events-carousel > div {
		margin-bottom: 0
	}
	
	.owl-stage .overlay-item.overlay-item-1 {
		
	}
	
	
	
	.hero .scroll-screen, .page-hero .scroll-screen, .single-page .scroll-screen {
		bottom: 75px;
	}	
	
	.section-heroWithImage .scroll-screen {
		bottom: -85px;
		left: calc(40vw + 105px);
	}

	.main-btn {
		height: 40px;
		line-height: 40px;
		padding: 0 30px 0 60px
	}
	
	.main-btn:hover, .loop-item:not(.loop-item-3):hover .main-btn {
		padding-left: 30px;
		padding-right: 60px;
	}
	
	.main-btn:before {
		height: 20px;
		width: 30px;
	    left: 15px;
	    margin-top: -10px;
	    transform: scale(0.8)
	}

	.main-btn:hover {
		padding-left: 30px;
		padding-right: 60px
	}
	
	.main-btn:hover:before {
		left: calc(100% - 50px);
	}
	
	.parolen-carousel .item .main-btn:before {
		margin-top: 4px
	}	
	
	.main-btn-xl {
		height: 60px;
		line-height: 67px;
		font-size: 1rem;
	}
	
	.fixed-website-button {
		width: 64px;
		top: 0;
		height: 64px;
		line-height: 61px;
		position: absolute;
	}
	
	.fixed-website-button img{
		width: 60%;
		max-width: inherit;
		margin-left: 4px;
	}
		
	.fixed-website-button span {
		display: none;
	}
	

	.owl-theme .owl-nav.disabled+.owl-dots {
		margin-top: 15px
	}
	
	.owl-theme .owl-dots .owl-dot span {
		margin-left: 10px;
		margin-right: 10px;
	}
	
	
	#overlay-menu .main-overlay-menu li:nth-last-child(2) a,
	#overlay-menu .main-overlay-menu li:nth-last-child(3) a
	{
		font-size: 1.2rem;
		padding-left: 40px;
	}
	
	#overlay-menu .main-overlay-menu li:nth-last-child(2) a:before,
	#overlay-menu .main-overlay-menu li:nth-last-child(3) a:before {
		transform: scale(0.6);
		margin-top: -17px	
	}
	
	
/*
	#overlay-menu .overlay-menu-call-to-action {
		
	}
	
	#overlay-menu .overlay-menu-call-to-action:hover {
		
	}
	
	#overlay-menu .overlay-menu-call-to-action:before {
		
	}
	
	#overlay-menu .overlay-menu-call-to-action:hover:before {
		
	}
*/
	
	
	.events-carousel .overlay-item-1 .overlay-item-content .arrow{
		display: none
	}
	
	.news-carousel .item-date, .events-carousel .item-date {
		bottom: 5px;
		left: auto;
		right: 10px;
		top: auto
	}
	
	.hero-container {
		height: calc(100vh - 64px)
	}
	
	.hero em:before, .page-hero em:before {
		height: 8px;
		bottom: 5px;
		left: -3px;
		right: -3px
	}
	
	.page-hero-subtitle {
		font-size: 1.4rem
	}
		
	.hero-buttn {
		width: 100%;
		overflow: hidden;
	}
	
	.common-links a {
	    padding-right: 20px;
	    font-size: 0.9rem;
	}
	
	.main-overlay-menu a::before {
		bottom: 13px;
		height: 13%;
	}
	
	.navbar-brand {
		padding-top: 0;
		margin-left: -20px;
	}
	
	.navbar-brand img{
		width: 160px;
	}
	
	#menuToggle input {
		top: 5px;
	}	
	
	#overlay-menu li a {
	    padding: 5px 0;
	    font-size: 1.5rem;
	    letter-spacing: 1px;
   	}
   	
   	#overlay-menu .overlay-menu-call-to-action {
	    padding: 0 13px;
	    line-height: 50px;
	    font-size: 1.4rem;
	    height: 50px;
	    padding-left: 40px;
	    display: none
	}
	
	#overlay-menu .overlay-menu-call-to-action:hover {
		padding-left: 15px;
		padding-right: 60px;
	}
	
	
	#overlay-menu .overlay-menu-call-to-action:before {
	    top: 26px;
	    left: 7px;
	    transform: scale(0.7);
	}
	
	#overlay-menu li a.text-smaller {
		font-size: 1.2rem
	}
	
	.overlay-item-2 .overlay-item-title em:before {
		height: 4px;
		bottom: 6px;
	}
	
	#overlay-menu {
		padding-top: 70px;
		padding-bottom: 15px;
		overflow-y: auto
	}
	
	#overlay-menu .dropdown-toggle {
		display: none
	}
	
	#overlay-menu .dropdown-menu {
		display: block;
		background-color: transparent;
		position: static;
		margin-left: -10px;
		margin-top: 15px;
	}
	
	#overlay-menu .dropdown-menu li {
		display: inline-block;
		height: 20px;
		line-height: 10px;
	}
	
	#overlay-menu .dropdown-menu li + li {
		border-left: 1px solid #fff;
	}
	
	#overlay-menu .dropdown-menu li.is-active a {
		text-decoration: underline !important;
		padding: 0px 10px !important;
	}
	
	#overlay-menu .dropdown-menu a {
		color: #fff !important
	}
	
	#overlay-menu ul {
		position: relative
	}
	
	
	
	#overlay-menu .main-overlay-menu li:nth-last-child(3) {
		margin-top: 130px;
	}
	
	#overlay-menu .main-overlay-menu li:nth-last-child(2){
		margin-top: 0	
	}
	
	#overlay-menu .main-overlay-menu li:nth-last-child(2) a,
	#overlay-menu .main-overlay-menu li:nth-last-child(3) a
	{
		padding-left: 60px;
		padding-right: 80px;
		position: relative;
		transition: all 0.4s cubic-bezier(0.77,0.2,0.05,1.0)
	}
	
	#overlay-menu .main-overlay-menu li:nth-last-child(2) a:before,
	#overlay-menu .main-overlay-menu li:nth-last-child(3) a:before,
	#overlay-menu .overlay-menu-call-to-action:before 
	{
		content: "";
		background-image: url(/images/icons/arrow-right.svg);
		position: absolute;
		display: block;
		height: 30px;
		width: 30px;
	    top: 50%;
	    left: 0px;
	    transition: all 0.4s cubic-bezier(0.77,0.2,0.05,1.0)
	}
	
	#overlay-menu .main-overlay-menu li:last-child {
		display: block;
	    position: absolute;
	    left: 0;
	    right: 0;
	    bottom: 120px;
	}
	
	#overlay-menu .main-overlay-menu li:last-child a {
		font-size: 1rem;
	    display: block;
	    padding: 15px 10px 15px 60px;
	    background-color: #FF9100;
	}
	
	#overlay-menu .main-overlay-menu li:last-child a:before {
		background-color: #FF9100
	}
	
	#overlay-menu .main-overlay-menu li:last-child a:hover {
		padding-left: 15px;
	}
	
	#overlay-menu .main-overlay-menu li:last-child a:before {
		margin-top: -15px;
		left: 10px
	}
	
	

	
	.common-links {
		position: static;
		padding-left: 15px;
	}
	
	.common-links a{
		display: block;
	}
	
	.social-media-links {
		position: static;
		margin-top: 40px;
	}
	
	.social-media-links a {
		margin-left: 15px;
	}
	
	.social-media-links svg, .social-media-links path, .social-media-links img {
		width: 26px;
		height: 26px;
	}
	
	
	.owl-stage {
	    left: -20px;
	}
	
	
	
	body {
		font-size: 1rem
	}
	
	.icons-menu {
		display: block
	}
	
	.icons-menu li:not(.d-block) {
		display: inline-block;
		margin: 1rem
	}
	
	section.section {
		padding: 30px 0
	}
	
	section.single-page h1 {
		font-size: 2rem
	}
	
	.section-title {
		margin-bottom: 20px;
		font-size: 2rem
	}
	
	.hero {
		padding-top: 0 !important;
		position: relative
	}
		
	.hero-content-inner {
		margin-bottom: 60px	
	}
	
	.hero h1 {
		font-size: 3.4rem;
		font-weight: 400
	}
	
	.overlay-item.overlay-item-1 {
		margin-bottom: 40px;
	}
	
	.overlay-item-1 .overlay-item-title {
		font-size: 1.5rem;
		margin-bottom: 5px !important;
	}
	
	.overlay-item-1 .overlay-item-content {
		top: 10px !important
	}
	
	.events-carousel .overlay-item-1:hover .overlay-item-content {
		top: 10px !important;
	}
	
	.overlay-item-1:hover .overlay-item-title {
		font-size: 1.5rem !important
	}
	
	.overlay-item-1 .overlay-item-title:before {
		bottom: 7px;
	}
	
	
	.overlay-item-1 .overlay-item-title p{
		height: inherit;
		margin-bottom: 5px
	}
	
	.overlay-item-1 p {
		height: 75px;
	    overflow: hidden;
	    margin-bottom: 8px;
	}
	
	.overlay-item-2:before {
		display: none
	}
	
	
	.overlay-item-2 .overlay-item-title {
	    font-size: 1.4rem;
	    max-width: 100%;
	    line-height: 1.8rem;
		margin-bottom: 10px
	}
	
	.overlay-item-2 .overlay-item-title p {
		margin-bottom: 0
	}
	
	.overlay-item a {
		overflow: hidden
	}
	
	.overlay-item-2.right .overlay-item-content:after, .overlay-item-2.left .overlay-item-content:after {
		height: 60px
	}
	
	/* LOOP ITEMS */
	
	.loop-item .item-date {
		font-size: 1rem
	}
	
	.loop-item-1 .main-btn {
		background-color: rgba(118, 33, 126, 0.8);
		border-radius: 0;
		bottom: 0;
		padding-bottom: 15px;
		padding-top: 20px;
		font-size: 1.2rem;
		line-height: 1.4;
	}
	
	.loop-item-1 .main-btn:before {
		top: 20px
	}
	
	.loop-item-1>a:hover:before {
		background-color: rgba(0, 0, 0, 0.3);
	}
	
	.loop-item-2 .main-btn,
	.loop-item-2 .item-note {
		font-size: 1.3rem
	}
	
	
	.loop-item-2.loop-item-4 .main-btn {
		top: auto
	}
	
	.loop-item-2.loop-item-6 .main-btn {
		top: 90px
	}
	
	.loop-item-2.loop-item-6 .main-btn:before {
		margin-left: 10px;
	}
	
	.loop-item-6 .ul-inline img {
		max-width: 40px
	}
	
	.loop-item-6 .item-note {
		bottom: 80px;
		overflow: hidden;
		max-height: 90px;
	}
	
	
	.loop-item-7 .overlay-item-content {
		left: 30px !important;
		right: 30px !important;
		bottom: 30px !important
	}
	
	.loop-item-3 .item-description {
		overflow: inherit;
		max-width: none
	}
	
	.loop-item-3:not(.loop-item-5) .overlay-item-content p,
	.loop-item-3:not(.loop-item-5) .overlay-item-content p * {
		font-size: 1.4rem !important
	}
	
	
	.rotator-loop-section .loop-item.loop-item-3:not(.loop-item-5),
	.loop-section .loop-item.loop-item-3:not(.loop-item-5){
		padding-bottom: 66%;
	}
	
	.rotator-loop-section .loop-item.loop-item-3 .image-wrapper,
	.loop-section .loop-item.loop-item-3 .image-wrapper{
		padding-bottom: 90%;
		display: block;
		position: relative;
		overflow: hidden;
	}
	
	.rotator-loop-section .loop-item.loop-item-3:before,
	.loop-section .loop-item.loop-item-3:before {
		background-color: rgba(0, 0, 0, 0.3);
	}
	
	.rotator-loop-section .loop-item.loop-item-3 .overlay-item-content,
	.loop-section .loop-item.loop-item-3 .overlay-item-content {
		position: absolute;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		max-width: none
	}
	
	.rotator-loop-section .loop-item.loop-item-3 .item-description,
	.loop-section .loop-item.loop-item-3 .item-description {
		max-height: none;
		overflow: auto;	
		padding: 20px;
		background-color: #77207e;
	}
	
	.rotator-loop-section .loop-item.loop-item-3 .arrow,
	.loop-section .loop-item.loop-item-3 .arrow {
		position: absolute;
		transform: scale(0.6) rotate(90deg) !important;
		top: 10px;
		left: 15px;
	}
	
	.rotator-loop-section .loop-item-3:hover .arrow svg,
	.loop-section .loop-item-3:hover .arrow svg {
		transform: rotate(-90deg) !important;
	}
		
	.rotator-loop-section .loop-item-3 .overlay-item-content p,
	.loop-section .loop-item-3 .overlay-item-content p {
		max-height: none;
		overflow: auto;
		font-size: 1rem !important;
		line-height: 1.1rem !important
	}
	
	
	.rotator-loop-section .loop-item-3 .overlay-item-title,
	.loop-section .loop-item-3 .overlay-item-title {
		margin: 0;
		padding: 15px 15px 15px 60px;
		background-color: rgba(118, 33, 126, 0.8);
		word-break: break-word;
	}
	
	
	
	.loop-item-7.item-1 .item-description {
		width: 100% !important
	}
	
	.loop-item-7 .main-btn, .loop-item-3 .main-btn {
		line-height: 42px !important;
		height: 40px !important
	}
	
	.loop-item-3 .overlay-item-content p {
		max-height: 33px; /* 49px */
		overflow: hidden;
		font-size: 1rem !important;
		line-height: 1rem !important;
	}
	
	.loop-item-3 .overlay-item-title {
		max-width: none;
		width: 100%;
	}
	
	.owl-section-btn {
		bottom: -10px;
		left: 180px
	}
	
	.owl-section-btn .main-btn {
		font-size: 1rem;
		white-space: nowrap;
		overflow: hidden;
		max-width: 200px;
	
	}
	
	.loop-item-7.item-1, .loop-item-7.item-2, .loop-item-7.item-3 {
		padding-bottom: 60%;
		width: calc(100% - 15px)
	}
	
	.container-item-2 .main-btn-block {
		width: calc(100% - 15px);
	}
	
	.loop-item-3 .overlay-item-title {
		font-size: 1.4rem !important
	}
	
/* 	.loop-item-3 .arrow {
		display: none
	} */
	
	.loop-item-3 .overlay-item-content {
		left: 30px !important;
		right: 30px !important;
		bottom: 20px !important;
	}
	
	.loop-item-7 .overlay-item-content {
		bottom: 30px !important
	}
	
	.loop-item-7 .main-btn:before, .loop-item-3 .main-btn:before {
		transform: scale(0.6)
	}
	
	
	.loop-item-7 .item-description {
		max-height: none
	}
	
	.loop-item-7 .overlay-item-title {
		margin-bottom: 10px
	}

	.loop-item-7 .overlay-item-content .overlay-item-title p,
	.loop-item-7 .overlay-item-content .overlay-item-title p * {
		font-size: 0.9rem !important;		
	}
	
	
	.loop-item-7 .overlay-item-content p {
		line-height: 1.2rem !important;
		max-height: none !important
	}
	
	
	
	.overlay-item-2 {
		margin-bottom: -90px
	}
	
	.overlay-item-2 .overlay-item-content {
		position: relative;
		width: 100%;
		margin-top: -20px;
		z-index: 2;
		left: auto !important;
		right: -15px !important;
		padding: 30px 30px 0 !important;
		top: -90px;
	}
	
	.overlay-item-2 .overlay-item-content > p {
		font-size: 1rem;
	}
	
	.overlay-item-2 .image-wrapper {
		width: calc(100% + 15px);
		left: -15px;
	}
	
	.overlay-item-2 a.main-btn {
	    margin-left: -30px;
	    margin-right: -30px;
	}
	
	.overlay-item-1 .main-btn {
		height: 40px;
		line-height: 40px
	}


	.front-page .container-fluid {
		padding-left: 15px 
	}
	
	.parolen-carousel .item a.main-btn {
		bottom: 40%;
	}
	
	

	.parolen-carousel .item a.main-btn, .parolen-carousel .item .item-note {
	    font-size: 1.5rem;
	    line-height: 2rem;
	}
	
	footer ul a {
		font-size: 1.4rem
	}
	
	.footer__links {
		position: relative;
	    margin-bottom: 0;
	    margin-top: 20px;
	    padding-top: 50px;
	}
	
	.footer__links:before {
		content: "";
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		height: 6px;
	    width: 40px;
	    background-color: #ff9100;
	}
	
	
/*
	img {
		max-width: 100%;
	}
*/
	
	.item-image-wrapper {
		width: 100px
	}
		
	a.play-button {
		transform: scale(0.6)
	}
	
	.item-track .item-title {
		margin-bottom: 0
	}
	
	.item-track .waveform-image {
		max-height: 20px;
		margin-top: -5px
	}
		
	.item-track .item-content {
		padding-left: 0	
	}
	
	.track-details {
		left: 105px;
	}
	
	.custom-margin {
		margin-top: 100px;	
	}
	
	.options .item {
		padding-left: 45%;
	}
	
	.options .item-badge {
		top: -80px
	}
	
	.options .item-badge img {
		width: 130px;
	}
	
	.item-track-single .note-block {
		margin-top: 30px
	}
	
	footer {
		padding-top: 30px;
	}
	
	.footer__social-links {
		margin-top: 40px
	}
		
	footer .copyrights {
		margin-top: 20px
	}
	
	
	.pre-footer h3 {
		font-weight: 400
	}
	
	.cookie-block {
	    max-width: 80%;
	    top: 120px;
	    left: 10%;
	    margin-left: inherit
	}
	
}

@media (min-width: 468px) and (max-width:991px){
	
	.loop-item-3:not(.loop-item-5) .overlay-item-content p, .loop-item-3:not(.loop-item-5) .overlay-item-content p * {
		font-size: 1.1rem !important;
	}
	
}

@media (max-width:467px){
	
	
	.accordion_header .accordion__text {
		padding-left: 1.2rem;
		max-width: 60%;
		word-break: break-word;
	}
	
	.rotator-loop-section .loop-item.loop-item-3:not(.loop-item-5),
	.loop-section .loop-item.loop-item-3:not(.loop-item-5) {
		padding-bottom: 100%
	}
	
	.loop-item-7.item-1, .loop-item-7.item-2, .loop-item-7.item-3 {
		padding-bottom: 100%;
		width: calc(100% - 15px)
	}
	
	.loop-item-3.loop-item-7 .overlay-item-content p, .loop-item-3.loop-item-7 .overlay-item-content p * {
		font-size: 1rem !important
	}
	
	.single-page .pre-title {
		font-size: 25px;
	}
	
	section.single-page h1 {
		font-size: 1.6rem
	}
	
	.hero h1 {
		font-size: 2.4rem;
		font-weight: 400
	}
	
}