/* --------------------------------------------------------------------------------------
                                  ALLGEMEIN
-------------------------------------------------------------------------------------- */
* {
  font-family: 'Roboto', sans-serif;
  font-weight: lighter;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  font-weight: normal;
  margin-top: 30px;
}

b, strong {
  font-weight: bold;
}

hr {
  border-color: black;
}

section.color-1 {
  background: white;
}

section.color-2 {
  background: #eeee;
}

section.color-3 {
  background: #282F34;
}

body>.body-wrapper>.content-wrapper {
  min-height: calc(100vh - 670px);
  z-index: 1;
  /*position: relative;*/
}

body.site-2>.body-wrapper>.content-wrapper,
body.site-45>.body-wrapper>.content-wrapper,
body.site-46>.body-wrapper>.content-wrapper
{
  min-height: calc(100vh + 50px);
  z-index: 1;
  /*position: relative;*/
}

body:not(.site-1):not(.site-2)>.body-wrapper>.content-wrapper {
  padding-top: 130px;
}

a, a:hover {
  color: #5e7185;
}

.btn {
  min-width: 24px;
  border-radius: 50%;
  border: 1px solid black;
  padding: 10px;
  display: inline-block;
  transition: 0.2s;
  background: rgba(255, 255, 255, 0.2);
  margin-top: 15px;
  text-align: center;
}

.btn:hover {
  background: black;
}

.btn>span {
  height: 20px;
  width: 20px;
  display: inline-block;
}

.btn>span>svg {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s;
  fill: black;
  color: black;
}

.btn:hover>span>svg {
  transform: translate(-54%, -52%) rotate(90deg);
  fill: white;
  color: white;
}

.btn.norotate:hover>span>svg {
  transform: translate(-54%, -52%) rotate(0deg);
}

.uk-input.btn, .btn.btn-text {
  border-radius: 30px;
  padding-left: 20px;
  padding-right: 20px;
  color: black;
  text-decoration: none;
}

.uk-input.btn:hover, .btn.btn-text:hover {
  text-decoration: none;
  color: white;
}

.invert.btn {
  border: 1px solid white;
  background: rgba(0, 0, 0, 0.3);
  color: white;
}

.invert.btn:hover {
  background: white;
  color: black;
}

.invert.btn>span>svg {
  fill: white;
  color: white;
}

.invert.btn:hover>span>svg {
  fill: black;
}

section:not(.parallax-wrapper) {
  padding-bottom: 50px;
}

.uk-modal-close-outside svg {
  transition: 0.3s;
}

.uk-modal-close-outside:hover svg {
  transform: rotate(90deg);
}

.uk-lightbox-toolbar-icon.uk-close svg {
  transition: 0.2s;
}

.uk-lightbox-toolbar-icon.uk-close:hover svg {
  transform: rotate(90deg);
}

.uk-modal-dialog {
  transform: scale(0.95);
  transition: .2s linear;
}

.uk-open>.uk-modal-dialog {
  transform: scale(1);
}

.texteingabe table {
  border-spacing: 0 10px;
}

.texteingabe table tr td {
  vertical-align: text-top;
  padding-right: 10px;
}

/* --------------------------------------------------------------------------------------
                                  NAVIGATION
-------------------------------------------------------------------------------------- */
.nav-wrapper {
  position: fixed;
  z-index: 99;
  width: 100%;
  transition: 0.2s;
}

body.site-2 .nav-wrapper {
  position: relative;
  z-index: inherit;
}

.uk-navbar {
  padding: 35px;
  transition: 0.2s;
}

/*.scroll*/
.uk-navbar {
  padding: 15px 35px;
}

.scroll .uk-navbar-right {
  background: rgba(40, 47, 52, 0);
}

.site-1 .nav-wrapper

/*.scroll*/
  {
  background: rgba(0, 0, 0, 0);
}

.nav-wrapper.scroll, .nav-wrapper {
  background: rgba(40, 47, 52, 1);
}

nav .uk-navbar .nav-item {
  font-family: 'Roboto Slab', serif;
  text-transform: inherit;
  font-size: 1.15rem;
  font-weight: lighter;
  color: #ffeeba;
  transition-delay: 0.1s;
}

nav .uk-navbar li a {
  position: relative;
  display: flex;
  z-index: 1;
  transition: 0.2s;
}

.uk-navbar .nav-item::after {
  width: 0%;
  transition: 0.2s ease-in-out;
  content: '';
  position: absolute;
  background-color: #ffeeba;
  height: 4px;
  left: 10px;
  bottom: 20px;
  z-index: -1;
  transition-delay: 0.1s;
}

.uk-navbar li:hover .nav-item::after, .uk-navbar li .nav-item.uk-open::after, .uk-navbar li.uk-active .nav-item::after, .uk-navbar li .nav-item:focus::after {
  width: calc(100% - 20px);
  right: 7px;
  transition-delay: 0s;
}

.uk-navbar-nav>li>a.uk-open, .uk-navbar-nav>li.uk-active>a, .uk-navbar-nav>li:hover>a, .uk-navbar-nav>li:focus>a, .uk-navbar-nav>li>a:focus {
  color: white;
  transition-delay: 0s;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5)
}

#nav-mobile .uk-nav {
  padding: 30px 0px;
}

#nav-mobile li button {
  background-color: transparent;
  border: none;
  color: white;
  padding: 7px 0px;
  text-decoration: none;
  display: inline-block;
  font-size: 2rem;
  cursor: pointer;
  font-weight: bold;
}

#nav-mobile li button:focus {
  outline: none;
}

#nav-mobile li.uk-active button, #nav-mobile li.uk-active>a {
  color: #ffeeba;
}

#nav-mobile .uk-nav>li>a {
  height: 18px;
  width: 40px;
  position: absolute;
  margin-top: 10px;
}

#nav-mobile .uk-logo img {
  padding: 10px 0px;
}

#nav-mobile .uk-nav-sub a {
  color: white;
  font-size: 1.2rem;
  display: inline-block;
}

.uk-nav-parent-icon>.uk-parent>a::after {
  left: 50%;
  transform: translateX(-50%);
}

#content {
  position: absolute;
  bottom: 110px;
}

.button {
  background-color: #4CAF50;
  /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

.uk-navbar-toggle, .uk-offcanvas-close {
  color: white !important;
}

.uk-navbar-toggle svg, .uk-offcanvas-close svg {
  width: 30px;
}

.uk-offcanvas-bar {
  width: 100%;
  left: -100%;
  background: #282f34;
}

.uk-offcanvas-close {
  padding-top: 15px;
}

.uk-offcanvas-bar .uk-nav-primary>li>a {
  font-size: 2.2rem;
  color: #fafafa;
}

.uk-offcanvas-bar .uk-nav-primary>li.uk-active {
  border-left: 1px solid white;
}

.uk-offcanvas-bar .uk-padding-small {
  padding: 0px 15px;
}

/* --------------------------------------------------------------------------------------
                                  SLIDER
-------------------------------------------------------------------------------------- */
.uk-slideshow-items {
  min-height: calc(100vh - 20px) !important;
  max-height: 100vh;
  background-color: #5e7185;
}

.uk-slideshow-items:active {
  cursor: grabbing;
}

.uk-slideshow-items .uk-position-cover {
  background-size: cover;
  background-position: center;
}

.uk-slideshow-items .caption-bg {
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  height: 450px;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
  margin-left: 65px;
  z-index: 1;
}

.carousel-parent {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.dotnav-wrapper {
  position: relative;
  bottom: 50vh;
  transform: translateY(calc(450px / 2));
  padding-top: 40px;
  padding-bottom: 13px;
}

.uk-dotnav>*>:focus, .uk-dotnav>*>:hover {
  background-color: rgba(255, 255, 255, .6);
}

.uk-slidenav {
  transition: 0.2s;
}

.uk-slidenav.uk-invisible {
  visibility: visible !important;
  opacity: 0.2;
}

.dotnav-wrapper ul {
  float: right;
}

.dotnav-wrapper ul>li>a {
  border-color: white;
  width: 15px;
  height: 15px;
}

.dotnav-wrapper ul>li.uk-active>a {
  background: white;
}

.uk-slidercaption {
  position: relative;
  top: 50%;
  transform: translateY(-50%) translateX(-65px);
}

.slider h2 {
  font-size: 3rem;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.4);
  display: initial;
  padding: 0px 0px;
  line-height: 3.95rem;
}

.slider .caption-margin {
  display: block;
  height: 10px;
}

.slider p {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 5px;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.4);
  display: inline;
  margin-top: 10px;
}

.slider a.btn.invert {
  display: table;
}

.scrolldown {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  height: 20vh;
}

.scrolldown a>img {
  height: 100%;
  padding: 30px;
}

.marken {
  position: absolute;
  bottom: 0;
  padding: 15px;
}

.marken>div {
  display: inline-block;
  padding: 12px;
}

.marken img {
  max-height: 50px;
}

/*.iframe-fahrzeug iframe {
  height: auto !important;
}
/*.iframe-fahrzeug {
  position: inherit !important;
}*/
.iframe-fahrzeug iframe {
  min-height: 80vh;
}

.site-2 {
  overflow: visible !important;
}

/* --------------------------------------------------------------------------------------
                                  INFO
-------------------------------------------------------------------------------------- */
.info .img {
  height: 330px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.info .img.img_contain {
  background-size: contain;
  background-color: #fafafafa;
}

.info .content h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 2rem;
  position: relative;
  display: inline-block;
}

.info .content p {
  margin-bottom: 5px;
}

.info .content.highlight .img {
  border: 10px solid #ffeeba;
  height: 310px;
}

.info .content.highlight h3:after {
  content: '';
  position: absolute;
  width: 100%;
  background-color: #ffeeba;
  height: 10px;
  left: 0px;
  bottom: 5px;
  z-index: -1;
  transition: 0.2s;
}

.info .content.highlight:hover h3:after {
  height: 75%;
}

.aktuell-inner .aktuell-datum {
  display: table;
  margin-top: 15px;
  border-bottom: 1px solid #ffeeba
}

.aktuell-inner.content h3 {
  margin-top: 5px;
  display: table;
  text-decoration: none;
}

.aktuell-wrapper a {
  text-decoration: none;
}

/* --------------------------------------------------------------------------------------
                                  PARALLAX
-------------------------------------------------------------------------------------- */
.parallax-wrapper>div {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax {
  padding-top: 150px;
  padding-bottom: 150px;
}

.parallax .content {
  background: white;
  padding: 40px 50px;
  text-align: center;
  height: 100%;
  box-sizing: border-box;
}

.parallax .content-center {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.parallax .content .btn {
  margin-top: 20px;
}

.parallax .content h3 {
  margin-top: 20px;
}

/* --------------------------------------------------------------------------------------
                                  TEAM
-------------------------------------------------------------------------------------- */
.team-slider ul>li>div {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 420px;
}

.team-slider .uk-slidenav, .team-slider .uk-slidenav:hover {
  color: black;
}

.team-slider .uk-slider-items>li>div>a>div {
  height: 100%;
  text-align: center;
  background: rgba(40, 47, 52, 0.8);
  opacity: 0;
  transition: 0.2s;
}

.team-slider .uk-slider-items>li>div:hover>a>div {
  opacity: 1;
}

.team-slider .uk-slider-items li>div>a {
  text-decoration: none;
}

.team-slider .uk-slider-items h4 {
  margin-bottom: 7px;
}

.team-slider .uk-slider-items p {
  margin-top: 0px;
  margin-bottom: 7px;
}

/*.team-slider .uk-slider-items .content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}*/
.team-modal .uk-modal-dialog {
  width: 450px;
}

.team-modal .uk-modal-header {
  padding: 0;
}

.team-modal .uk-modal-header img {
  width: 100%;
}

.team-modal .uk-modal-footer {
  padding-top: 7px;
  padding-bottom: 20px;
}

.team-modal .uk-modal-title {
  margin-bottom: 5px;
}

.team-modal .beruf {
  margin-top: 0px;
}

.team-modal .since {
  margin-top: 15px;
}

.team-modal .since b {
  font-weight: 600;
}

.team-modal .hobby {
  display: inline-block;
  padding-left: 5px;
  margin-top: 0;
  margin-bottom: 0;
}

.team-modal .kontaktieren .uk-grid-margin {
  margin-top: 12px;
}

/* --------------------------------------------------------------------------------------
                                  Fahrzeugmarkt
-------------------------------------------------------------------------------------- */
.title-markt {
  padding-left: 20px;
  padding-top: 25px;
  max-width: 1024px;
  display: block;
  width: 100%;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}

/* --------------------------------------------------------------------------------------
                                  Team Seite
-------------------------------------------------------------------------------------- */
.title-turned h3 {
  margin-top: 30px;
  margin-bottom: 20px;
}

.team-all>div>div>a>div, .team-slider>div>a>div {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 360px;
}

.team-all>div>div>a>div>div, .team-slider>div>a>div>div {
  overflow: hidden;
  height: auto;
  text-align: left;
  background: rgba(40, 47, 52, 0);
  opacity: 1;
  transition: 0.2s;
  z-index: 5;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.team-all>div>div>a>div>div:after, .team-slider>div>a>div>div:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 0;
  background: rgba(40, 47, 52, 0.8);
  transition: 0.2s;
}

.team-all>div>div>a>div:hover>div:after, .team-slider>div>a>div:hover>div:after {
  height: 100%;
}

.team-slider>div>a>div>div:hover {
  opacity: 1;
  transition: 0.2s;
}

.team-all>div>div>a, .team-all>div>a {
  display: block;
  position: relative;
  z-index: 3;
}

.team-all .content, .team-slider .content {
  padding: 17px 20px;
  position: relative;
  /*top: 50%;
  transform: translateY(-50%);*/
  color: white;
  z-index: 5
}

.team-all .content .text-inner, .team-slider .content .text-inner {
  display: inline-block;
  width: 100%;
}

.team-all .content .text-inner *, .team-slider .content .text-inner * {
  text-shadow: 0px 2px 12px rgba(0, 0, 0, 0.7);
  transition: 0.2s;
}

.team-all>div>div>a>div:hover .text-inner *, .team-slider>div>a>div:hover .text-inner * {
  text-shadow: 0px 2px 12px rgba(0, 0, 0, 0);
}

.team-all .content h4, .team-slider .content h4 {
  color: white;
  margin-bottom: 0px;
  margin-top: 0px;
  font-size: 1.3rem;
}

.team-all .content p, .team-slider .content p {
  color: white;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 0.9rem;
}

.team-all a {
  text-decoration: none;
}

.team-all .content .btn, .team-slider .content .btn {
  margin-top: 0px;
  background: none;
  float: right;
  min-width: 20px;
  height: 20px;
}

.team-all .content .btn>span, .team-slider .content .btn>span {
  width: 15px;
  height: 15px;
}

.team-all .content .btn-wrapper, .team-slider .content .btn-wrapper {
  display: none;
  width: 20%;
  opacity: 0;
  transition: 0.2s;
  margin-bottom: -30px;
}

.team-all>div>div>a>div:hover .btn-wrapper, .team-slider>div>a>div:hover .btn-wrapper {
  opacity: 1;
  margin-bottom: 0px;
}

.team-all .content .btn:hover, .team-slider .content .btn:hover {
  background: white;
}

.team-wrapper {
  position: relative;
  text-align: center;
}

.team-all .image-hover, .team-slider .image-hover {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 4;
  position: absolute;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.2s;
  opacity: 0;
}

.team-all>div>div>a>div:hover .image-hover, .team-slider>div>a>div:hover .image-hover {
  opacity: 1;
}

/*.team-wrapper .hover-title {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  text-shadow: 0px 3px 15px rgba(0,0,0,0.8);
  transition: 0.2s;
}
.team-all>div>div>a>div>div:hover+.hover-title {
  opacity: 0;
  bottom: 5px;
}*/
.uk-modal-title {
  margin-top: 0px;
}

.team-all .team-scroll {
  position: absolute;
  top: -120px;
}

/*.team-nav.fullscreen {
  position: fixed;
  left: 1vw;
  top: 300px;
  width: 180px;
}
.team-nav.fullscreen a {
  font-size: 1.2rem;
  display: block;
  width: 100%;
  padding: 4px 5px;
  border-bottom: 1px solid #1e2122;
  transition: 0.2s;
}
.team-nav.fullscreen a:last-of-type {
  border-bottom: none;
}
.team-nav.fullscreen a:hover {
  text-decoration: none;
  color: black;
}
.team-nav.fullscreen a:focus {
  color: #1e2122;
}
@media(max-height: 860px) {
  .team-nav.fullscreen {
    top: 35%;
  }
}
.team-nav.incontent {
  display: none;
}*/
.team-nav.incontent>div {
  position: relative;
  left: 0px;
  top: 0px;
  width: auto
}

.team-nav.incontent>div a {
  font-size: 1.2rem;
  display: inline-flex;
  padding: 7px 12px;
  margin-right: 7px;
  margin-bottom: 7px;
  border-bottom: none;
  background: #fafafa;
  transition: 0.2s;
}

.team-nav.incontent a:hover {
  text-decoration: none;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.team-nav.incontent a:active {
  background: #e4e4e4;
}

/*@media(max-height: 580px), (max-width: 1800px) {*/
.team-nav.fullscreen {
  display: none !important;
}

/*
  .team-nav.incontent {
    display: block;
  }
}*/
@media(max-width: 639px) {
  .team-nav.incontent {
    display: inherit;
    position: sticky;
    top: 80px;
    z-index: 98;
    background: white;
    margin-top: 0px;
    padding: 10px 0px 10px 30px;
  }

  .team-nav.incontent>div a {
    display: inline;
  }

  .title-turned h3 {
    margin-top: 15px;
  }

  .team-nav.incontent>div {
    overflow-x: scroll;
    overflow-y: hidden;
    height: 40px;
    padding-top: 10px;
    padding-right: 30px;
  }

  .team-nav.incontent::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: transparent;
    background: linear-gradient(90deg, transparent, #ffff);
    width: 30px;
    pointer-events: none;
  }

  .team-nav.incontent a:hover {
    text-decoration: none;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.05);
  }

  .team-all .team-scroll {
    position: absolute;
    top: -150px;
  }
}

/* --------------------------------------------------------------------------------------
                                  TILES
-------------------------------------------------------------------------------------- */
.tile-wrapper {
  height: 350px;
  transition: 0.4s;
}

.tiles-inner {
  transition: 0.4s;
  height: 105%;
}

.tile-wrapper:hover .tiles-inner {
  background: rgba(0, 0, 0, 0.4);
}

.tile-wrapper {
  overflow: hidden;
  position: relative;
  transition: 0.4s;
}

.tile-wrapper>div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: 0.4s;
  width: 100%;
  height: 100%;
}

.tile-wrapper:hover>div {
  -webkit-filter: blur(3px);
  filter: blur(3px);
  transform: translate(-5%, -5%);
  width: 110%;
  height: 110%;
}

.tile-wrapper span {
  opacity: 0;
  display: inline-block;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -40%);
  text-align: center;
  transition: 0.4s;
}

.tile-wrapper h3 {
  color: white;
}

.tile-wrapper:hover span {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/* --------------------------------------------------------------------------------------
                                  DIENSTLEISTUNGEN
-------------------------------------------------------------------------------------- */
.service {
  padding-top: 25px;
}

.service .service-wrapper {
  border: 2px solid #282F34;
  display: inline-block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative;
}

.service .service-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service .service-wrapper a {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(-0%, -0%);
  background: white;
  border-width: 2px;
  padding: 15px;
}

.service .service-wrapper a:hover {
  background: black;
}

.service h3 {
  margin-bottom: 0px;
}

.service p {
  margin-top: 7.5px;
}

.produkt-galerie a, .produkt-galerie img {
  width: 100%;
}

/* --------------------------------------------------------------------------------------
                                  KONTAKT
-------------------------------------------------------------------------------------- */
.btn.btn-send {
  border-radius: 35px;
  padding: 15px 25px;
  cursor: pointer;
}

.btn.btn-send:hover {
  color: white;
}

#rex-yform h4 {
  margin-top: 10px;
}

#rex-yform .date label {
  margin-top: 7px;
}

#rex-yform .date div {
  padding-left: 15px;
}

#rex-yform textarea {
  height: 150px;
  max-height: 250px;
  min-height: 120px;
  min-width: 100%;
}

.uk-input.btn {
  box-sizing: content-box;
  padding: 0;
  max-width: 100%;
}

.uk-input:focus, .uk-select:focus, .uk-textarea:focus {
  outline: 0;
  background-color: #fff;
  color: #666;
  border-color: #ffc000;
}

.uk-input, .uk-select, .uk-textarea {
  border: none;
  border-bottom: 1px solid black;
}

/* Label */
#rex-yform>form>div>div {
  position: relative;
  margin-bottom: 10px;
}

label {
  color: #666;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 10px;
  top: 7px;
  transition: all 0.2s ease;
}

.checkbox label {
  color: #999;
  position: inherit;
  pointer-events: all;
  left: 10px;
  top: 7px;
  transition: all 0.2s ease;
}

.checkbox label .uk-checkbox {
  margin-right: 6px;
  color: black;
}

.uk-checkbox:checked, .uk-checkbox:focus, .uk-checkbox:indeterminate, .uk-radio:checked {
  background-color: black;
}

.form-group.date {
  margin-left: -15px;
}

.form-group.date label {
  position: inherit;
  padding-left: 15px;
  margin-top: 0px;
}

#yform-formular .control-label {
  position: inherit;
  pointer-events: all;
}

.form-check-group {
  border-bottom: 1px solid black;
  padding-bottom: 30px;
}

.uk-input:focus~.control-label, .uk-input.used~label {
  top: -17px;
  transform: scale(.75);
  transform-origin: left;
  left: 7px;
  /* font-size: 14px; */
}

/* --------------------------------------------------------------------------------------
                                  CALL TO ACTION
-------------------------------------------------------------------------------------- */
.calltoaction {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: none;
  z-index: 2;
}

.calltoaction>a {
  position: relative;
  background: white;
  display: block;
  width: 80px;
  height: 80px;
  border: 2px solid #282F34;
  border-radius: 50%;
  margin-top: 15px;
  transition: 0.3s;
}

.calltoaction>a:hover {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
  background: #ffeeba;
  transform: scale(1.075);
}

.calltoaction>a img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* --------------------------------------------------------------------------------------
                                  VERMIETUNG
-------------------------------------------------------------------------------------- */
.vermietung-wrapper>a {
  text-decoration: none;
}

.vermietung-wrapper .content h3 {
  margin-top: 20px;
  margin-bottom: 0px;
}

.vermietung-modal .uk-modal-body h1, .vermietung-modal .uk-modal-body h2, .vermietung-modal .uk-modal-body h3, .vermietung-modal .uk-modal-body h4 {
  margin-top: 0;
}

.vermietung-modal .content-beschreibung {
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px lightgray solid;
}

/* --------------------------------------------------------------------------------------
                                  FOOTER
-------------------------------------------------------------------------------------- */
footer {
  position: relative;
  z-index: 1;
}

footer section {
  padding-top: 50px;
  padding-bottom: 50px;
}

footer p, footer h4, .footer-bottom p {
  color: white;
}

footer a, footer a:hover, .footer-bottom a, .footer-bottom a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom {
  background: #1E2122;
  padding-top: 15px;
  padding-bottom: 15px;
}

.footer-bottom p {
  margin: 0;
  display: inline-block;
}

.footer-bottom p.uk-text-right {
  float: right;
}

.newsletter-anmeldung .uk-input.btn {
  background: black;
  color: white;
  cursor: pointer;
}

.newsletter-anmeldung .uk-input.btn:hover {
  background: rgba(0, 0, 0, 0.8);
  color: white;
}

/* --------------------------------------------------------------------------------------
                                  COOKIE HINWEIS
-------------------------------------------------------------------------------------- */
.cc_container {
  box-shadow: none !important;
  right: inherit !important;
  left: 30px !important;
  bottom: 40px !important;
  padding-bottom: 60px !important;
  border-radius: 0px !important;
}

.cc_container .cc_message *, .cc_container .cc_message {
  font-size: 0.9rem !important;
  line-height: 1.3rem !important;
}

.cc_message:before {
  display: none !important;
}

.cc_container .cc_btn {
  bottom: 15px !important;
  border-radius: 0px !important;
}

@media (max-width: 500px) {
  .cc_container {
    left: 0px !important;
    bottom: 0px !important;
  }
}

/* --------------------------------------------------------------------------------------
                                  MEDIA QUERYS
-------------------------------------------------------------------------------------- */
@media (hover: none) {
  .tile-wrapper .tiles-inner {
    background: rgba(0, 0, 0, 0.4);
  }

  .tile-wrapper span {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@media (max-height: 800px) {
  .scrolldown {
    display: none;
  }

  .marken img {
    height: 40px;
  }
}

@media (max-width: 959px) {
  .dotnav-wrapper {
    bottom: 50vh;
    transform: translateY(calc(300px / 2));
    padding-top: 30px;
  }

  .info .img {
    height: 260px;
  }

  .info .content.highlight .img {
    height: 240px;
  }

  .uk-slideshow-items .caption-bg {
    background-size: cover;
    background-position-x: center !important;
    background-position-y: center !important;
    position: relative;
    height: 300px;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
    margin-left: 65px;
    z-index: 1;
  }
}

@media (max-height: 660px) {
  .uk-slideshow-items {
    min-height: 660px !important;
  }

  .dotnav-wrapper {
    bottom: 330px;
  }
}

@media (max-width: 639px) {
  body:not(.site-1):not(.site-2)>.body-wrapper>.content-wrapper {
    padding-top: 110px;
  }

  .uk-slidenav {
    margin: 15px 5px !important;
  }

  .team-all>div>div>a>div, .team-slider>div>a>div {
    height: 55vw;
  }

  .team-all .content .text-inner p, .team-slider .content .text-inner p {
    display: none;
  }

  body.site-2 .uk-navbar {
    padding: 10px 15px;
  }

  .calltoaction {
    bottom: 10px;
    right: inherit;
    left: 10px;
  }

  .calltoaction>a {
    display: inline-block;
  }

  .scrolldown {
    display: none;
  }

  .marken img {
    height: 40px;
  }

  .marken {
    right: 0;
    padding-right: 5px;
  }

  .info .img {
    height: 55vw !important;
  }

  .slider h2 {
    font-size: 2rem;
    text-shadow: 0px 0px 30px rgba(0, 0, 0, 1);
    line-height: 2.7rem;
  }

  .slider p {
    font-size: 1.15rem;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
    display: initial;
    line-height: 1.3rem;
  }

  .slider .caption-margin {
    display: block;
    height: 15px;
  }

  .uk-logo {
    width: 180px;
  }

  .uk-navbar {
    padding: 10px 15px;
  }

  .scroll .uk-navbar {
    padding: 0px 15px;
  }

  #rex-yform .date div {
    padding-left: 30px;
  }
}

@media (max-width: 380px) {
  .uk-child-width-1-2>* {
    width: 100%;
  }

  .team-all>div>div>a>div, .team-slider>div>a>div {
    height: 100vw;
  }

  .team-all .content .text-inner p, .team-slider .content .text-inner p {
    display: block;
  }
}