
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');
@import url('sentient.css');

*{
  margin: 0;
  padding: 0;
}
body{
  font-family: "Red Hat Display", sans-serif;
  /* font-family: "sentient"; */
  font-weight: 400;

}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	margin-bottom: 10px;
    margin-top: 30px;
}
body {
  /* Pfad zu deiner Datei */
  background-image: url('/asstes/images/blatt.png');
  /* kein Wiederholen */
  background-repeat: no-repeat;
  /* Position links unten */
  background-position: left bottom;
  /* Bild bleibt beim Scrollen an der Position */
    background-size: 40% auto;
	background-position: -120px bottom;
}
a{
  text-decoration: none;
}
img{
  width: 100%;
}
p{
  margin-bottom: 0px;
}
.container{
  max-width: 1700px;
  width: 100%;
  margin: auto;
  padding: 0px 24px;
}
.logo {
  position: absolute;
  top: 124px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
iframe {
  width: 100%; /* Fallback */
  max-width: 100%; /* Sicherstellen, dass es nicht über den Container hinaus geht */
}

/* Nur für größere Displays z. B. ab 769px */
@media screen and (min-width: 769px) {
  iframe {
    width: 500px; /* Hier deine gewünschte feste Desktop-Breite einsetzen, falls abweichend */
    height: 177px; /* Beibehalten */
  }
}

/* Optional für kleinere Displays */
@media screen and (max-width: 768px) {
  iframe {
    width: 100% !important;
    height: auto;
  }
}
.logo img {
  max-width: 474px;
  width: 100%;
  height: auto;
}
/* Banner area start */
.banner-area{
  position: relative;
}
.banner-slider {
  width: 100%;
  height: 100vh;
  position: relative;
}

.swiper-slide {
  width: 100%;
  height: 100%;
  padding: 530px 0px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.swiper-slide::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 50px;
  z-index: 10;
  font-family: Sentient-Regular;
}

.banner-content span {
  transition: all 0.3s ease;
  cursor: pointer;
  color: #F0EBE6;
  font-size: 60px;
  font-weight: 500;
  line-height: -1px;
  letter-spacing: 0px;
  text-align: left;
  opacity: 0.4;
}

.banner-content span.active {
  opacity: 1;
}


/* Scroll down animation */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 159px;
  transform: translateX(-50%);
  width: 31px;
  height: 56px;
  border: 2px solid #FFF;
  border-radius: 15px;
  box-sizing: border-box;
  z-index: 99999999;
}
.scroll-indicator::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  background-color: #FFF;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
  0% {
    top: 8px;
    opacity: 1;
  }
  50% {
    top: 20px;
    opacity: 0.6;
  }
  100% {
    top: 8px;
    opacity: 1;
  }
}
    

/* Hero area start  */
.font24px{
  color: #191919;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0px;
}
.font30px{
  color: #191919;
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 0px;
}
.hero-content{
  display: flex;
  align-items: center;
  gap: 0px 85px;
  padding-left: 76px;
}
.hero-title-content{
  max-width: 793px;
  width: 100%;
  padding: 79px 80px 93px 76px;
  background: #FFF;
  margin-top: -85px;
  position: relative;
  z-index: 1;
  border-radius: 8px; 
}
.hero-heading{
  color: #6E462D;
  font-size: 80px;
  font-weight: 500;
  line-height: 85px;
  letter-spacing: 0px;
  text-align: left;
  font-family: Sentient-Regular;
}
.hero-left-content{
  max-width: 467px;
  width: 100%;
  padding-bottom: 175px;
}
.hero-right-content{
  /* width: calc(100% - 467px); */
}
.hero-image img{
  max-width: 467px;
  width: 100%;
  border-radius: 5px;
}
.user-name-title{
  padding-top: 57px;
}
.user-name-title p{
  text-align: right;
  font-size: 20px;
  color: #191919;
  padding-right: 55px;
}
.user-name-title h4{
  font-size: 45px;
  color: #6E462D;
  white-space: nowrap;
}
.profile-img {
  max-width: 100%;
  border-radius: 5px;
}
.intro-text .font24px{
  padding-bottom: 40px;
}
.intro-text .font30px{
  padding-bottom: 40px;
  padding-top: 30px;
}
.mobile-intro-text{
  display: none;
}
.newsletter-form{
  max-width: 536px;
  width: 100%;
}
.newsletter-form .form-control{
  border-radius: 0px;
  font-size: 18px;
  padding: 7px 16px;
  border: none;
  border-bottom: 1px solid #6E462D;
  box-shadow: none;
  color: #6E462D;
}
.newsletter-form .form-control::placeholder{
  color: #6E462D;
  font-size: 18px;
}
.newsletter-form .btn{
  color: #6E462D;
  font-size: 24px;
  padding: 19px 39px;
  border: 1px solid #6E462D;
  background-color: transparent;
  border-radius: 5px;
  margin-top: 61px;
  transition: 0.3s;
}
.newsletter-form .btn:hover{
  background-color: #6E462D;
  color: #FFF;
}

/* footer area start  */
.hero-section{
  padding-bottom: 70px;
  border-bottom: 10px solid #6E462D;
}
.footer-content{
  padding-top: 206px;
  display: flex;
  flex-wrap: wrap;
  gap:15px 50px;

}
.single-footer-address .font30px{
  padding-bottom: 39px;
}
.single-footer-address a{
  display:flex;
}

/* modal css */
.modal-content {
  background-color: #d8a988;
  color: white;
  padding: 20px 15px;
}
.modal-title img{
  max-width: 240px;
}
.modal-header {
    padding-bottom: 75px;
}
.btn-close {
    width: 30px;
    height: 30px;
    opacity: 1;
}
.font32px{
  font-size: 32px;
  color: #F0EBE6;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0px;
}
.font20px{
  font-size: 20px;
  color: #F0EBE6;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0px;
}
.font20px strong{
  font-size: 24px;
  font-weight: 500;
  margin-top: 32px !important;
}
.font20px.strong{
  margin-top: 32px !important;
  padding-bottom: 5px;
}