/*
Version: 1.0
Author: BENNI MEDIA
Author URI: https://benni-media.de
 */
@font-face {
  font-family: "Sofia";
  src: url("../assets/fonts/SofiaSansCondensed-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans-Regular.ttf") format("truetype");
}
body {
  background-color: #F1F1F1;
  font-family: "Open Sans", serif;
  color: #333;
  margin: 0;
  padding: 0;
  color: #141A26;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3 {
  font-family: "Sofia", serif;
}

.bg-primary {
  background-color: #938055 !important;
}

.btn-primary {
  color: #141A26;
  background-color: #938055;
  border-color: #938055;
  border-radius: 50px;
}

.btn-primary:hover {
  color: #fff;
  background-color: #938055;
  border-color: #938055;
}

a {
  color: #19223c;
}

a:hover {
  color: #938055;
}

#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 0.425rem 0;
  background: #938055;
}

#header.header-inner-pages,
#header.header-scrolled {
  background: rgba(147, 128, 85, 0.8);
}
#header.header-inner-pages .logo img,
#header.header-scrolled .logo img {
  max-width: 74px !important;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo img {
  max-width: 96px !important;
}

.navbar > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a {
  display: block;
  position: relative;
  color: #333333;
  transition: 0.3s;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-family: "Sofia", serif;
}

.navbar .active > a,
.navbar a:hover,
.navbar li:hover > a {
  color: #938055;
}

.navbar .drop-down ul {
  border-radius: 8px;
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .drop-down li {
  min-width: 180px;
  position: relative;
}

.navbar .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #0c3c53;
}

.navbar .drop-down ul .active > a,
.navbar .drop-down ul a:hover,
.navbar .drop-down ul li:hover > a {
  color: #194372;
}

.navbar .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.navbar .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.navbar .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.navbar .drop-down .drop-down > a {
  padding-right: 35px;
}

.navbar .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .navbar .drop-down .drop-down ul {
    left: -90%;
  }
  .navbar .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .navbar .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}
/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 40px;
  right: 20px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #938055;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #37517e;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #938055;
  text-decoration: none;
  font-weight: 800;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(40, 58, 90, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

.custom-shape-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom svg {
  position: relative;
  display: block;
  width: calc(107% + 1.3px);
  height: 143px;
}

.custom-shape-divider-bottom .shape-fill {
  fill: #F3F5FA;
}

.custom-shape-divider-bottom .shape-fill2 {
  fill: #938055;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#heroimage {
  width: 100%;
  height: 100%;
  background-image: url("../image/slider.jpg");
  background-position: center;
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
}

#hero .container {
  padding-top: 72px;
}

#hero .bmbox {
  min-height: 524px;
}

#hero h1 {
  margin: 0 0 10px;
  color: #141A26;
  margin-bottom: 30px;
  font-size: 46px;
  font-weight: 700;
  line-height: 48px;
}

.btn-get-started {
  font-family: "Sofia", serif;
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0;
  color: #141A26;
  background: #938055;
  text-decoration: none;
  color: #F3F5FA;
}

.btn-get-started:hover {
  background: #141A26;
}

.btn-watch-video:hover i {
  color: #4e4e4e;
}

#hero {
  position: relative;
  min-height: 666px;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }
  #hero .animated {
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}
.headlinebox {
  margin-top: 3rem;
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}
@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px;
  }
  #hero .btn-watch-video {
    font-size: 16px;
    padding: 10px 0 8px 40px;
    margin-left: 20px;
  }
  #hero .btn-watch-video i {
    font-size: 32px;
    top: 7px;
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
#galerie {
  background: #938055;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2,
.section-title h3 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #141A26;
}

.section-title h2::before,
.section-title h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after,
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #141A26;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
}

.services .icon-box {
  text-align: center;
}

.services .icon-box i {
  font-size: 24px;
  color: #938055;
  margin-bottom: 2rem;
}

.services .icon-box h4 {
  font-size: 24px;
  font-weight: 800;
  color: #938055;
}

.services .icon-box a {
  color: #141A26;
}

.services .icon-box p {
  color: #141A26;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

footer {
  color: #F3F5FA;
}

footer a {
  color: #F3F5FA;
}

#kontakt {
  color: #141A26;
}

.kontaktbox {
  background: #938055;
}

.footer-top {
  background: #141A26;
}

.footer-bottom {
  background: #141A26;
}

.footer-bottom a {
  color: white;
}

::-moz-selection {
  color: #938055;
  background: #F3F5FA;
}

::selection {
  color: #938055;
  background: #F3F5FA;
}

@media (max-width: 768px) {
  .scrollTop {
    display: none;
  }
}
.owl-nav {
  font-size: 3rem;
  text-align: center;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  margin: 2rem;
}

.scrollTop {
  position: fixed;
  right: 5%;
  bottom: 15px;
  background-color: #938055;
  padding: 0.6rem 1rem;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.scrollTop a {
  font-size: 18px;
  color: #fff;
}

.modal {
  z-index: 9999;
}

.rounded-xl {
  border-radius: 2rem;
}

.signatur {
  font-family: "Sofia", serif;
  font-size: 1.4rem;
}

.telebox a,
.emailbox a {
  color: #141A26;
}/*# sourceMappingURL=style.css.map */