
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap');
/*==============Font-Face===============*/
@font-face {font-family: "Iskry Regular";
  src: url("../webfonts/font/c0c7e262b07e8f7d2bd87777a47e362f.eot"); /* IE9*/
  src: url("../webfonts/font/c0c7e262b07e8f7d2bd87777a47e362f.eot?#iefix") format("embedded-opentype"),
  url("../webfonts/font/c0c7e262b07e8f7d2bd87777a47e362f.woff2") format("woff2"),
  url("../webfonts/font/c0c7e262b07e8f7d2bd87777a47e362f.woff") format("woff"),
  url("../webfonts/font/c0c7e262b07e8f7d2bd87777a47e362f.ttf") format("truetype"),
  url("../webfonts/font/c0c7e262b07e8f7d2bd87777a47e362f.svg#Iskry Regular") format("svg");
}

/*===========================Design System=========================*/
:root {
  /* Typography - Font Families */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Typography Scale - Desktop */
  --text-display: 92px;
  --text-h1: 72px;
  --text-h2: 52px;
  --text-h3: 36px;
  --text-h4: 28px;
  --text-h5: 20px;
  --text-h6: 18px;
  --text-body-lg: 18px;
  --text-body: 16px;
  --text-body-sm: 14px;
  --text-caption: 12px;
  --text-overline: 11px;

  /* Line Heights */
  --lh-tight: 1.1;
  --lh-snug: 1.25;
  --lh-normal: 1.5;
  --lh-relaxed: 1.75;
  --lh-loose: 2;

  /* Spacing System - 8px Grid */
  --space-0: 0;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-7: 56px;
  --space-8: 64px;
  --space-9: 72px;
  --space-10: 80px;
  --space-12: 96px;
  --space-14: 112px;
  --space-16: 128px;

  /* Colors - Brand */
  --color-gold: #C4AD9E;
  --color-gold-dark: #B39A8A;
  --color-gold-light: #D4BFB0;
  --color-dark: #0B0809;
  --color-dark-lighter: #1A1415;
  --color-white: #FFFFFF;
  --color-white-muted: rgba(255, 255, 255, 0.4);
  --color-white-semi: rgba(255, 255, 255, 0.8);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Shadows - Premium, Subtle */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 4px 16px rgba(196, 173, 158, 0.15);

  /* Borders */
  --border-width-thin: 1px;
  --border-width-medium: 2px;
  --border-width-thick: 3px;
  --border-color: rgba(196, 173, 158, 0.2);
  --border-color-light: rgba(255, 255, 255, 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

/* Mobile Typography Adjustments */
@media (max-width: 768px) {
  :root {
    --text-display: 48px;
    --text-h1: 40px;
    --text-h2: 32px;
    --text-h3: 24px;
    --text-h4: 20px;
    --text-h5: 18px;
    --text-h6: 16px;
    --text-body-lg: 16px;
    --text-body: 15px;
    --text-body-sm: 14px;
  }
}

/*===========================Common CSS=========================*/
.m0 {
  margin: 0;
}

.p0 {
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  color: var(--color-gold);
  background: var(--color-dark);
  background-image: url('../images/Noise.png');
  font-size: var(--text-body);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Global Image Rules - Prevent Stretching & Overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a, .btn, button {
  text-decoration: none;
  outline: none;
  transition: all var(--transition-base);
}

a:hover, a:focus, .btn:hover, .btn:focus, button:hover, button:focus {
  text-decoration: none;
  outline: none;
}

ul {
  margin: 0;
  list-style: none;
  padding: 0;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: var(--color-gold);
}

h1 {
  font-size: var(--text-h1);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--text-h2);
  line-height: var(--lh-snug);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--text-h3);
  line-height: var(--lh-snug);
}

h4 {
  font-size: var(--text-h4);
  line-height: var(--lh-normal);
}

h5 {
  font-size: var(--text-h5);
  line-height: var(--lh-normal);
}

h6 {
  font-size: var(--text-h6);
  line-height: var(--lh-normal);
}

p {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--lh-relaxed);
  margin: 0 0 var(--space-2) 0;
}

/* Typography Utility Classes */
.text-display {
  font-family: var(--font-heading);
  font-size: var(--text-display);
  line-height: var(--lh-tight);
  letter-spacing: -0.03em;
  font-weight: 300;
}

.text-body-lg {
  font-size: var(--text-body-lg);
  line-height: var(--lh-relaxed);
}

.text-body-sm {
  font-size: var(--text-body-sm);
  line-height: var(--lh-normal);
}

.text-caption {
  font-size: var(--text-caption);
  line-height: var(--lh-normal);
}

.text-overline {
  font-size: var(--text-overline);
  line-height: var(--lh-normal);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
}

section.row, header.row, footer.row {
  margin: 0;
}

/* Spacing Utilities - 8px Grid System */
.mt-1 { margin-top: var(--space-1) !important; }
.mt-2 { margin-top: var(--space-2) !important; }
.mt-3 { margin-top: var(--space-3) !important; }
.mt-4 { margin-top: var(--space-4) !important; }
.mt-5 { margin-top: var(--space-5) !important; }
.mt-6 { margin-top: var(--space-6) !important; }
.mt-8 { margin-top: var(--space-8) !important; }
.mt-10 { margin-top: var(--space-10) !important; }

.mb-1 { margin-bottom: var(--space-1) !important; }
.mb-2 { margin-bottom: var(--space-2) !important; }
.mb-3 { margin-bottom: var(--space-3) !important; }
.mb-4 { margin-bottom: var(--space-4) !important; }
.mb-5 { margin-bottom: var(--space-5) !important; }
.mb-6 { margin-bottom: var(--space-6) !important; }
.mb-8 { margin-bottom: var(--space-8) !important; }
.mb-10 { margin-bottom: var(--space-10) !important; }

.pt-1 { padding-top: var(--space-1) !important; }
.pt-2 { padding-top: var(--space-2) !important; }
.pt-3 { padding-top: var(--space-3) !important; }
.pt-4 { padding-top: var(--space-4) !important; }
.pt-5 { padding-top: var(--space-5) !important; }
.pt-6 { padding-top: var(--space-6) !important; }
.pt-8 { padding-top: var(--space-8) !important; }
.pt-10 { padding-top: var(--space-10) !important; }

.pb-1 { padding-bottom: var(--space-1) !important; }
.pb-2 { padding-bottom: var(--space-2) !important; }
.pb-3 { padding-bottom: var(--space-3) !important; }
.pb-4 { padding-bottom: var(--space-4) !important; }
.pb-5 { padding-bottom: var(--space-5) !important; }
.pb-6 { padding-bottom: var(--space-6) !important; }
.pb-8 { padding-bottom: var(--space-8) !important; }
.pb-10 { padding-bottom: var(--space-10) !important; }

.px-4 { padding-left: var(--space-4) !important; padding-right: var(--space-4) !important; }
.px-6 { padding-left: var(--space-6) !important; padding-right: var(--space-6) !important; }
.py-4 { padding-top: var(--space-4) !important; padding-bottom: var(--space-4) !important; }
.py-6 { padding-top: var(--space-6) !important; padding-bottom: var(--space-6) !important; }
.py-8 { padding-top: var(--space-8) !important; padding-bottom: var(--space-8) !important; }

/* Shadow Utilities */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-gold { box-shadow: var(--shadow-gold); }

/* Border Utilities */
.border { border: var(--border-width-thin) solid var(--border-color); }
.border-light { border: var(--border-width-thin) solid var(--border-color-light); }
.border-top { border-top: var(--border-width-thin) solid var(--border-color); }
.border-bottom { border-bottom: var(--border-width-thin) solid var(--border-color); }

/* Border Radius Utilities */
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }

.img-gray {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.date a {
  font: 700 14px/6px "Arimo", sans-serif;
  color: #7b7b7b;
}
.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left:0; top: 0; }



/*===========Loader Start============*/
.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999999999999999999999999999;
  background: #fff;
}
.se-pre-con img {
  width: 230px;
  margin: auto;
  display: block;
  margin-top: 290px;
}


.preloader .left_pre {
  background: rgba(0, 0, 0, 0.9);
  width: 49%;
  left: 0px;
  top: 0px;
  position: fixed;
  height: 100%;
  z-index: 9999;
  transition: all 400ms ease-in-out 0s;
}

.preloader .right_pre {
  background: rgba(0, 0, 0, 0.9);
  width: 49%;
  right: 0px;
  top: 0px;
  position: fixed;
  height: 100%;
  z-index: 9999;
  transition: all 400ms ease-in-out 0s;
}

.preloader .content {
  position: fixed;
  z-index: 99999;
  top: -webkit-calc(50% - 137px);
  top: calc(50% - 137px);
  left: -webkit-calc(50% - 137px);
  left: calc(50% - 137px);
  -webkit-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
  -webkit-transition-duration: 2s;
  transition-duration: 2s;
}

.preloader .content .circle {
  width: 274px;
  height: 274px;
  background: rgba(186, 186, 186, 0.2);
  padding: 16px;
  border-radius: 100%;
}

.preloader .content .circle .red {
  background: #000;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.preloader .content .circle .red .rotator {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  -webkit-animation: rotation 4s linear infinite;
  animation: rotation 4s linear infinite;
}

.preloader .content .circle .red .rotator img {
  position: absolute;
  bottom: -4px;
  left: -4px;
}

.preloader .content .circle .red .logo {
  position: absolute;
  line-height: 56px;
  font-size: 48px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  top: -webkit-calc(50% - 28px);
  top: calc(50% - 28px);
  left: -webkit-calc(50% - 103px);
  left: calc(50% - 103px);
  display: inline-block;
}

.preloader.complete .left_pre {
  left: -100%;
}

.preloader.complete .right_pre {
  right: -100%;
}

.preloader.complete .content {
  top: 110%;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes mouseUpDown {
  0% {
    bottom: 151px;
  }
  25% {
    bottom: 170px;
  }
  50% {
    bottom: 151px;
  }
  75% {
    bottom: 130px;
  }
  100% {
    bottom: 151px;
  }
}

@keyframes mouseUpDown {
  0% {
    bottom: 151px;
  }
  25% {
    bottom: 170px;
  }
  50% {
    bottom: 151px;
  }
  75% {
    bottom: 130px;
  }
  100% {
    bottom: 151px;
  }
}



/*===== offcanvas menu css ====*/
.offcanvas_menu {
  max-width: 440px;
  height: 100%;
  background: #101010;
  position: fixed;
  top: 0;
  right: 0;
  z-index: -10;
  padding: 20px 20px 30px;
  overflow-y: scroll;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  visibility: visible;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  overflow: hidden;
  width: 100%;
}

.offcanvas_menu.open {
  z-index: 100000;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.offcanvas_menu .close-offcanvas {
  position: absolute;
  top: 30px;
  right: 25px;
  z-index: 1;
  color: #E00611 !important;
  line-height: 35px;
  text-align: center;
  font-size: 30px;
  transition: all 300ms linear 0s;
}

.offcanvas_menu .close-offcanvas:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  color: #E00611 !important;
}

.offcanvas_menu .navBox {
  padding-top: 30px;
  width: 100%;
}

.offcanvas_menu .navBox li {
  display: block;
  float: none;
}

.offcanvas_menu .navBox li a {
  color: #fff;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  padding: 10px 0px 10px;
  display: inline-block;
}

.offcanvas_menu .navBox li a:after {
  content: '';
  width: 0;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: all 300ms linear 0s;
}

.offcanvas_menu .navBox li a:focus {
  background: none;
}

.offcanvas_menu .navBox li:hover a {
  background: none;
}

.offcanvas_menu .navBox li:hover a:after {
  width: 90%;
}

.offcanvas_menu .navBox li.submenu .dropdown-menu {
  position: relative;
  width: 100%;
  border: none;
  box-shadow: none;
  border-radius: 0px;
  background: #4b4b4b;
  padding: 0px;
}

.offcanvas_menu .navBox li.submenu .dropdown-menu li {
  display: block;
}

.offcanvas_menu .navBox li.submenu .dropdown-menu li a {
  margin: 0px;
  color: #fff;
  padding: 10px 10px;
  transition: all 300ms linear 0s;
  display: block;
  position: relative;
}

.offcanvas_menu .navBox li.submenu .dropdown-menu li a:after {
  width: 0;
}

.offcanvas_menu .navBox li.submenu .dropdown-menu li:hover a {
  background: #262626;
}

.offcanvas_menu .navBox li.submenu .dropdown-menu li:hover a:after {
  width: 100%;
}

.offcanvas_closer {
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -10;
  transition: all 300ms linear 0s;
}




/*============banner-area css==========*/
.banner-area {
    overflow: hidden;
    position: relative;
    padding:0 70px;
    min-height: 92vh;
}
.banner-area::after{
    content:"";
    position: absolute;
    width:100%;
    left:0;
    top:0;
    height:100%;
    background-image:url("../images/michiMG.jpg");
    background-position:center;
    background-repeat:no-repeat;
    background-size:cover;
    opacity:.15;
    min-height:100vh;
}
.banner-area .carousel-inner .item {
  position: relative;
}
.banner-area .carousel-inner .item .div-image{
  position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 80px;
  width: 140px;
  height: 140px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  z-index: 9999999;
}
.banner-area .carousel-inner .item .div-image a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}
.banner-area .carousel-inner .item .content {
	width: 100%;
	max-width: 900px;
	border-radius: 30px;
	position: relative;
	z-index: 999;
	padding-left: clamp(16px, 4vw, 70px);
	padding-right: clamp(16px, 4vw, 70px);
	padding-top: clamp(72px, 10vh, 150px);
	margin: 0;
	transform: translateY(8vh);
}
.banner-area .carousel-inner .item .content h1 {
	font-family: var(--font-heading);
	font-style: normal;
	font-weight: 300;
	font-size: var(--text-display);
	line-height: var(--lh-tight);
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--color-gold);
	text-align: center;
	position: relative;
	margin-bottom: var(--space-10);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.banner-area .carousel-inner .item .content h1 span {
	font-size: var(--text-h2);
	font-family: var(--font-heading);
	text-transform: initial;
	font-style: italic;
	line-height: inherit;
}
.banner-area .carousel-inner .item .content h1::after {
	content: "";
	position: absolute;
	width: 100%;
	max-width: 693px;
	height: 1px;
	left: 0;
	bottom: calc(var(--space-5) * -1);
	background: var(--border-color);
}
.banner-area .carousel-inner .item .image-sping {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  transform-origin: center;
  -webkit-animation: rotate 7s infinite reverse linear;
  animation: rotate 7s infinite reverse linear;
  filter: contrast(1.2) brightness(1.08) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(-0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.banner-area .carousel-inner .item .div-image span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 24px;
  color: #C4AD9E;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-area .carousel-inner .item .content p {
	font-family: var(--font-body);
	font-style: normal;
	font-weight: 600;
	font-size: var(--text-overline);
	line-height: var(--lh-normal);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #FFFFFF;
	margin-bottom: 20px;
}
.banner-area .carousel-inner .item .content p.dp {
	font-family: var(--font-body);
	font-weight: 300;
	font-size: var(--text-body);
	line-height: var(--lh-relaxed);
	color: var(--color-gold);
	text-transform: none;
	letter-spacing: 0;
	text-align: center;
	margin-top: var(--space-5);
	margin-bottom: var(--space-14);
	margin-left: auto;
	margin-right: auto;
	max-width: 600px;
	white-space: nowrap;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


/*===== header css =====*/
.header-area {
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	z-index: 9999;
	padding: 60px 50px;
	transition: padding 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reduce padding when scrolled for compact header */
.header-area.is-scrolled {
	padding: 24px 50px;
}

/* Ensure one-line alignment */
.header-area .navbar {
	display: flex;
	align-items: center;
}

.header-area .navbar-brand {
	color: #39B54A;
	font-size: 34px;
	font-weight: 600;
	position: absolute;
	left: 50%;
	transform: translate(-50%,0px);
	z-index: 2;
	display: flex;
	align-items: center;
	padding: 10px 16px;
}
.navbar-brand img {
	height: 163px;
	width: auto;
	display: block;
	object-fit: contain;
	transition: height 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Wordmark (hidden) */
.navbar-brand .brand-wordmark {
	display: none;
}
.header-area .navbar-collapse {
	justify-content: end;
}
.header-area .navbar-collapse .navbar-nav .nav-link {
	font-family: 'Source Sans 3', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 11px;
	line-height: 14px;
	padding: 2px 18px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
	border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.header-area .navbar-collapse .navbar-nav .nav-link.active,
.header-area .navbar-collapse .navbar-nav .nav-link span,
.header-area .navbar-collapse .navbar-nav .nav-link:hover{
  color: rgba(255, 255, 255, 1) !important;
}
.header-area .navbar-collapse .navbar-nav .nav-item:last-child .nav-link{
  border-right:0 !important;
}

.header-area .navbar-collapse .navbar-nav .nav-link.gn-nav-keepcase {
  text-transform: none;
  letter-spacing: 0.2em;
}

@media (min-width: 576px) {
  .header-area .navbar-collapse .navbar-nav .nav-link.gn-nav-keepcase {
    text-transform: uppercase;
  }
}
.menu-fixed {
	position: fixed;
	top: 0;
	left: 0;
	box-shadow: 0 3px 15px 0 rgba(255, 255, 255, 0.05);
	animation: pos 1s linear;
	z-index: 9999;
	width: 100%;
	background-image: linear-gradient(rgba(19, 6, 6, 0.75), rgba(15, 4, 2, 0.55));
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	padding: 24px 50px;
	z-index: 999999999;
}

/* Logo shrinks when scrolled (desktop) */
.header-area.is-scrolled .navbar-brand img {
	height: 44px;
}

@keyframes pos{
  0%{
      top:-100px;
  }
  100%{
      top: 0;
  }
}
.down-top{
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99999;
  display: none;
  animation: bawntop 4s infinite;
}
@keyframes bawntop{
  0%{
      transform: translateY(0);
  }
  50%{
      transform: translateY(20px);
  }
  100%{
      transform: translateY(0px);
  }
}
.menu-fixed .logo img {
	max-width: 100%;
	height: auto;
	width: 75px;
	position: relative;
	top: 19px;
}



/* gentlenero-part */
.gentlenero-part{
  padding: 120px 0 75px 0;
  border:0;
}
.gentlenero-logo {
	text-align: center;
	padding-bottom: 50px;
}
.gentlenero-logo img {
	height: 80px;
	width: auto;
	display: block;
	object-fit: contain;
	margin: 0 auto;
}
.gentlenero-part .gentlenero-text h3{
	font-size: 32px;
	font-weight: 400;
	text-align: center;
  color:rgba(196, 173, 158, 1) ;
  padding-bottom: 50px;
}
.gentlenero-part .gentlenero-text h2 {
	font-size: 52px;
	font-weight: 400;
	text-align: center;
	color: #C4AD9E;
	line-height: 65px;
	padding-bottom: 50px;
}
.three-start {
	text-align: center;
	padding-bottom: 50px;
}
.three-start img {
	display: block;
	margin: 0 auto;
}
.gentlenero-video{
  position: relative;
}
.gentlenero-video img{
  width: 100%;
	padding-bottom: 50px;
}
.gentlenero-video .my-video-links {
	position: absolute;
	bottom: 235px;
	left: 200px;
}
.gentlenero-video .my-video-links img{
  padding: 0 !important;
}
.gentlenero-info-text p {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 28.8px;
  color: rgba(196, 173, 158, 1);
  text-align: left;
}

.gn-lamp-card {
  position: relative;
}

.gn-lamp-card::before {
  content: "";
  position: absolute;
  top: -52px;
  right: 16px;
  width: clamp(90px, 14vw, 150px);
  height: clamp(90px, 14vw, 150px);
  background: url("../images/Home/LampeHome.png") no-repeat center / contain;
  opacity: 0.92;
  pointer-events: none;
  z-index: 0;
}

.gn-lamp-card::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -6px;
  width: clamp(240px, 32vw, 420px);
  height: clamp(260px, 36vw, 520px);
  background:
    radial-gradient(ellipse at top right, rgba(255, 232, 190, 0.42), rgba(255, 232, 190, 0) 72%),
    radial-gradient(ellipse at 65% 30%, rgba(255, 214, 140, 0.24), rgba(255, 214, 140, 0) 70%);
  transform: rotate(-22deg);
  opacity: 0;
  filter: blur(6px);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.9s ease;
}

.gn-lamp-card > * {
  position: relative;
  z-index: 1;
}

.gn-lamp-card.is-lit::after {
  opacity: 0.7;
}

@media (min-width: 769px) {
  .gn-lamp-card::before {
    top: -47px;
    right: -422px;
    width: clamp(110px, 10vw, 160px);
    height: clamp(110px, 10vw, 160px);
  }

  .gn-lamp-card::after {
    top: 72px;
    right: -468px;
    width: clamp(280px, 26vw, 440px);
    height: clamp(320px, 30vw, 520px);
  }
}

@media (max-width: 768px) {
  .gn-lamp-card::before {
    top: calc(-10px - 1cm);
    right: 0.3cm;
    width: clamp(70px, 26vw, 120px);
    height: clamp(70px, 26vw, 120px);
    opacity: 1;
    z-index: 2;
  }

  .gn-lamp-card::after {
    top: 22px;
    right: -2px;
  }
}

.gn-process-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 6px 16px;
  border: 1px solid rgba(196, 173, 158, 0.8);
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(26, 20, 16, 0.7), rgba(38, 30, 24, 0.8));
  color: rgba(235, 222, 206, 0.95);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.gn-process-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  border-color: rgba(235, 222, 206, 0.9);
}
.gn-process-button:focus-visible {
  outline: 2px solid rgba(235, 222, 206, 0.6);
  outline-offset: 3px;
}
/* gentlenero-part */



/* da-mein-part */
.da-mein-part {
	padding: 100px 0 200px 0;
}
.da-mein-part .row {
	align-items: stretch;
}
.da-mein-part .da-img {
	height: 100%;
}
.da-mein-part .da-text img{
	padding-top: 70px;
	padding-bottom: 50px;
}
.da-mein-part .da-text h2{
  font-size: 40px;
  padding-bottom: 50px;
  color: #C4AD9E;
  position: relative;
}
.da-mein-part .da-text h2::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background-color: rgba(196, 173, 158, 0.2);
}
.da-mein-part .da-text .da-text-p p {
	font-size: 18px;
	font-weight: 300;
	padding: 50px 0;
	color: rgba(196, 173, 158, 1);
}
.da-mein-part .col-lg-4 {
	flex: 0 0 40%;
	max-width: 40%;
}
.da-mein-part .col-lg-6.offset-lg-1 {
	flex: 0 0 60%;
	max-width: 60%;
	margin-left: 0;
}
.da-mein-part .signature{
  padding: 30px 0 !important;
}
.da-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* da-mein-part */




/* es-gibt-part */
.es-gibt-part {
	position: relative;
	padding: 36px 0;
	background-image: url('../images/Home/knoepfe.png');
	background-position: center calc(50% + 4cm);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-size: cover;
}
.es-gibt-part::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.38);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	z-index: 0;
	pointer-events: none;
}
.es-content {
	position: relative;
	z-index: 1;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
	background-image: url('../images/lambo.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.es-gibt-part .es-content .row {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 28px;
	margin: 0;
	align-items: stretch;
	justify-items: center;
	min-height: auto;
	align-content: start;
}
.es-gibt-part .es-content .row > [class*="col-"] {
	padding-left: 0;
	padding-right: 0;
}
.es-gibt-part .col-lg-4 {
	justify-self: center;
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.es-gibt-part .col-lg-6.offset-lg-2 {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 100%;
}
.es-gibt-part .es-gibt-left {
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.es-gibt-part .es-gibt-left .es-left-headding{
  font-size: 14px;
  font-family: Source Sans 3;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  width: auto;
}
.es-gibt-part .es-gibt-left h1{
  font-size: 52px;
  font-weight: 400;
  color:#C4AD9E ;
  padding: 8px 0 2px;
  line-height: 1.1;
  text-align: center;
}
.es-gibt-part .es-gibt-left p{
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  color: rgba(196, 173, 158, 1);
  max-width: 760px;
  margin-bottom: 10px;
  text-align: center;
}
.es-gibt-part .es-usp-center {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin: 18px auto 16px;
	max-width: 760px;
	text-align: center;
}
.es-gibt-part .es-usp-line {
	font-family: 'Source Sans 3', sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.85;
	letter-spacing: 0.015em;
	color: rgba(214, 198, 186, 0.95);
	margin: 0;
}
.es-gibt-part .es-usps {
	display: grid;
	grid-template-columns: repeat(3, minmax(260px, 1fr));
	gap: 32px;
	margin: 22px auto 18px;
	max-width: 1160px;
	width: 100%;
	align-items: stretch;
	justify-content: center;
	place-content: center;
}
.es-gibt-part .es-usp {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 12px;
	padding: 32px 32px 30px;
	width: 100%;
	height: 100%;
	min-height: 280px;
	text-align: center;
	border: 1px solid rgba(196, 173, 158, 0.22);
	border-radius: 12px;
	background: rgba(10, 10, 10, 0.14);
	box-sizing: border-box;
}
.es-gibt-part .es-usp-marker {
	width: 12px;
	height: 12px;
	border: 1px solid rgba(196, 173, 158, 0.6);
	border-radius: 999px;
	margin-bottom: 6px;
	margin-left: auto;
	margin-right: auto;
}
.es-gibt-part .es-usp-title {
	font-family: 'Source Sans 3', sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.7;
	letter-spacing: 0.015em;
	color: rgba(229, 213, 201, 0.95);
	margin: 0 0 12px;
	max-width: 32ch;
	word-break: normal;
	overflow-wrap: normal;
	hyphens: none;
	margin-left: auto;
	margin-right: auto;
}
.es-gibt-part .es-usp-text {
	font-family: 'Source Sans 3', sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.85;
	letter-spacing: 0.015em;
	color: rgba(214, 198, 186, 0.9);
	margin: 0;
	max-width: 32ch;
	word-break: normal;
	overflow-wrap: normal;
	hyphens: none;
	flex: 1;
	margin-left: auto;
	margin-right: auto;
}
.es-gibt-part .es-cta {
	font-family: 'Source Sans 3', sans-serif;
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(196, 173, 158, 0.75);
	text-decoration: underline;
	text-underline-offset: 4px;
}
.es-gibt-part .es-gibt-box {
	padding: 32px 0;
	border-top: 1px solid rgba(196, 173, 158, 0.3);
}
.es-gibt-part .es-cta-panel {
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
.es-gibt-part .es-cta-column {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	min-height: auto;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.es-gibt-part .es-cta-top,
.es-gibt-part .es-cta-mid,
.es-gibt-part .es-cta-bottom {
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.es-gibt-part .es-cta-eyebrow {
	font-family: 'Source Sans 3', sans-serif;
	font-size: 12px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: rgba(196, 173, 158, 0.7);
	margin: 0 0 8px;
}
.es-gibt-part .es-cta-text {
	font-family: 'Source Sans 3', sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 30px;
	color: rgba(212, 195, 183, 0.95);
	margin-bottom: 0;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.es-gibt-part .es-cta-divider {
	height: 1px;
	width: 100%;
	background: rgba(196, 173, 158, 0.25);
	margin: 0 0 12px;
	margin-left: auto;
	margin-right: auto;
}
.es-gibt-part .es-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
}
.es-gibt-part .es-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 24px;
	height: 44px;
	border: 1px solid rgba(196, 173, 158, 0.5);
	border-radius: 12px;
	font-family: 'Source Sans 3', sans-serif;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(229, 213, 201, 0.95);
	background: transparent;
	text-decoration: none;
	transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
	min-width: 220px;
	width: 220px;
	text-align: center;
}
.es-gibt-part .es-cta-button.is-primary {
	border-color: rgba(196, 173, 158, 0.9);
	background: rgba(196, 173, 158, 0.18);
}
.es-gibt-part .es-cta-button.is-secondary {
	background: transparent;
}
.es-gibt-part .es-cta-button:hover {
	transform: translateY(-1px);
	border-color: rgba(220, 200, 186, 0.9);
	color: rgba(245, 235, 227, 0.95);
	background: rgba(196, 173, 158, 0.14);
}
.es-gibt-part .es-cta-button.is-primary:hover {
	background: rgba(196, 173, 158, 0.28);
}
.es-gibt-part .es-cta-button:focus-visible {
	outline: 2px solid rgba(196, 173, 158, 0.75);
	outline-offset: 2px;
}

@media (max-width: 992px) {
	.es-gibt-part .es-usps {
		grid-template-columns: repeat(2, minmax(260px, 1fr));
		max-width: 980px;
	}
}

@media (max-width: 768px) {
	.es-gibt-part .es-usps {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.es-gibt-part .es-usp {
		min-height: auto;
		padding: 26px 24px;
	}
	.es-gibt-part .es-cta-column {
		gap: 18px;
		align-items: center;
		text-align: center;
		min-height: auto;
	}
	.es-gibt-part .es-cta-actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		gap: 12px;
	}
	.es-gibt-part .es-cta-button {
		width: 100%;
		min-width: 0;
		height: 48px;
	}
}
.es-gibt-part .right-left-text h2 {
	font-style: normal;
	font-weight: 400;
	font-size: 32px;
	line-height: 38.4px;
	color: #C4AD9E;
	margin-bottom: 12px;
}
.es-gibt-part .right-left-text a {
	font-family: 'Georgia';
	font-style: italic;
	font-weight: 400;
	font-size: 16px;
	color: rgba(196, 173, 158, 1);
	text-decoration: underline;
}
.es-gibt-part .right-left-text p {
	font-family: 'Source Sans 3';
	font-style: normal;
	font-weight: 300;
	font-size: 18px;
	color: rgba(196, 173, 158, 1);
	padding: 0 10px;
	line-height: 28.8px;
}
.es-gibt-part .right-left-text p span{
  font-weight: 400;
}
/* es-gibt-part */




/* wir-kummern-part */
.wir-kummern-part {
	padding: 110px 0;
	text-align: center;
}
.wir-kummern-part .wir-kummern-header p{
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FFFFFF;
}
.wir-kummern-part .wir-kummern-header h1 {
	font-style: normal;
	font-weight: 400;
	font-size: 52px;
	line-height: 62.4px;
	text-align: center;
	color: #C4AD9E;
	margin-bottom: 38px;
	margin-top: 15px;
}
.slider-pan{
  position: relative;
  width:100%;
}
.slider-pan .left-opacity {
	width: 358px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-image: linear-gradient(to right, rgba(11,8,9,0.65), rgba(0,0,0,0));
	z-index: 999;
}
.slider-pan .right-opacity {
	width: 358px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	background-image: linear-gradient(to left, rgba(11,8,9,0.65), rgba(0,0,0,0));
	z-index: 999;
}
.slider-pan .show-all{
  font-family: 'Georgia';
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: #C4AD9E;;
  text-decoration: underline;
  margin-top: 70px;
}
.all-wir-slider {
	padding-top: 40px;
	padding-bottom: 60px;
}
.all-wir-slider .wir-slider-boder{
  margin: 20px;
  text-align: center;
}
.all-wir-slider .wir-slider-boder{
 background:linear-gradient(180deg, rgba(196, 173, 158, 0.2) 0%, rgba(196, 173, 158, 0) 100%);
}
.all-wir-slider .wir-slider-boder .wir-body {
	background-image: url('../images/Noise.png');
	background-color: #0B0809;
	margin: 1px;
	padding: 30px;
}
.all-wir-slider .wir-slider-boder .wir-img img{
  margin: 0 auto;
  padding-bottom: 10px;
}
.all-wir-slider .wir-slider-boder .wir-star h2{
  font-weight: 300;
  font-size: 18px;
  font-family: 'Source Sans 3';
  color: #FFFFFF;
}
.all-wir-slider .wir-slider-boder .wir-star p{
  display: inline-block;
  font-size: 16px;
  padding: 10px 5px;
  color: rgba(196, 173, 158, 1);
}
.all-wir-slider .wir-slider-boder .wir-star .stars{
  color:#E67530 ;
}
.all-wir-slider .wir-slider-boder .wir-star .stars i{
  padding: 0 2px;
}
.all-wir-slider .wir-slider-boder .wir-text{
  font-weight: 300;
  font-size: 16px;
  color: rgba(196, 173, 158, 1);
}
.all-wir-slider .wir-slider-boder .wir-text p {
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 20.8px;
	text-align: center;
	color: rgba(196, 173, 158, 1);
	padding-top: 10px;
}

.all-wir-slider .slick-dots li{
  display: inline-block;
  margin-left: 10px;
}
.all-wir-slider .slick-dots li button {
	position: relative;
	font-size: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 0px;
	background: rgba(196, 173, 158, 0.2);
}
.all-wir-slider .slick-dots .slick-active button{
  background: #C4AD9E;
}
.all-wir-slider ul {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	display: table;
	width: 100%;
}

.gn-partners {
  padding: 120px 0 130px;
  text-align: center;
  background:
    url("../images/Home/Racinggreenlampe.png") center top / cover no-repeat,
    radial-gradient(circle at 20% 0%, rgba(196, 173, 158, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(10, 8, 9, 0.9) 0%, rgba(7, 6, 6, 0.95) 100%);
  background-size: 11% auto, auto, auto;
  background-position: center -2cm, center top, center top;
  background-repeat: no-repeat, no-repeat, no-repeat;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .gn-partners {
    background-size: 14.3% auto, auto, auto !important;
    background-position: center 0cm, center top, center top !important;
  }

  .gn-partners::before {
    top: calc(-10% + 2.75cm) !important;
    width: 160% !important;
  }
}

.gn-partners::before {
  content: "";
  position: absolute;
  top: calc(-10% + 3.5cm);
  left: 50%;
  width: 140%;
  height: 130%;
  transform: translateX(-50%);
  clip-path: polygon(48% 0, 52% 0, 100% 100%, 0 100%);
  background: linear-gradient(165deg, rgba(233, 214, 185, 0.46), rgba(198, 171, 133, 0.12) 35%, rgba(255, 226, 180, 0) 72%);
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  z-index: 0;
}

.gn-partners.is-lit::before {
  opacity: 0.45;
}

@media (max-width: 768px) {
  .gn-partners::before {
    width: 200%;
  }
}

.gn-partners-header p {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(239, 228, 214, 0.8);
  position: relative;
  z-index: 1;
}

.gn-partners-header h1 {
  font-style: normal;
  font-weight: 400;
  font-size: 46px;
  line-height: 58px;
  color: #dcc2a4;
  margin-bottom: 14px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.gn-partners-sub {
  font-size: 16px;
  color: rgba(196, 173, 158, 0.9);
  letter-spacing: 0.04em;
  margin-top: -0.8cm;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.gn-partners-pan .left-opacity,
.gn-partners-pan .right-opacity {
  width: 240px;
  height: 100%;
  pointer-events: none;
  filter: blur(6px);
}

.gn-partners-pan .left-opacity {
  background-image: linear-gradient(to right, rgba(8, 6, 6, 0.45), rgba(0, 0, 0, 0));
}

.gn-partners-pan .right-opacity {
  background-image: linear-gradient(to left, rgba(8, 6, 6, 0.45), rgba(0, 0, 0, 0));
}

.gn-partners-slider {
  position: relative;
  padding: 20px 0 40px;
}

.gn-partner-card {
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(196, 173, 158, 0.25);
  background: linear-gradient(140deg, rgba(20, 16, 14, 0.8), rgba(12, 9, 8, 0.95));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(239, 228, 214, 0.85);
  font-size: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  padding: 0;
  margin: 14px;
}

.gn-partner-media {
  height: 140px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gn-partner-media span {
  font-size: 12px;
  color: rgba(239, 228, 214, 0.85);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gn-partner-lightbox {
  display: block;
  width: 100%;
  height: 100%;
}

@media (min-width: 769px) {
  .gn-partner-card {
    overflow: hidden;
    border-radius: 18px;
    border-color: rgba(220, 194, 164, 0.18);
    background: linear-gradient(160deg, rgba(18, 14, 12, 0.92), rgba(10, 8, 7, 0.98));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  }
}

.gn-partner-card-down img {
  object-position: center 85%;
}

.gn-partner-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(1.02) contrast(1.02);
}

.gn-partners-slider .gn-partner-card img {
  object-position: center;
}

@media (max-width: 768px) {
  .gn-partner-card img {
    object-fit: cover;
    background: transparent;
  }
}
.gn-partners-slider .slick-slide:not(.slick-center) .gn-partner-lightbox {
  pointer-events: none;
}

.gn-partners-slider .slick-center .gn-partner-card {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(220, 194, 164, 0.6);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
}

@media (min-width: 769px) {
  .vbox-overlay .vbox-close {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(12, 9, 8, 0.8);
    color: #dcc2a4;
    border: 1px solid rgba(220, 194, 164, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    top: auto;
    right: 50%;
    bottom: 24px;
    transform: translateX(50%);
    opacity: 1;
  }
}

.gn-partners-slider .slick-dots li button {
  background: rgba(220, 194, 164, 0.18);
}

.gn-partners-slider .slick-dots .slick-active button {
  background: #dcc2a4;
}

.gn-partners-slider ul {
  position: static;
  margin-top: 0;
}


br.mobile-only {
	display: none;
}
/* wir-kummern-part */



/* gentlenero-part */
.gent-part {
	padding: 75px 0 50px 0;
	text-align: center;
	border-top: 1px solid rgba(196, 173, 158, 0.2);
	border-bottom:1px solid rgba(196, 173, 158, 0.2);
  position: relative;
}
.gent-part .left-opacity {
	width: 480px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-image: linear-gradient(to right, rgba(11,8,9,0.85), rgba(0,0,0,0));
	z-index: 999;
}
.gent-part .right-opacity {
	width: 480px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	background-image: linear-gradient(to left, rgba(11,8,9,0.85), rgba(0,0,0,0));
	z-index: 999;
}
.gent-part .gentlenero-header p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FFFFFF;
}
.gent-part .gentlenero-header h1 {
	font-weight: 400;
	font-size: 52px;
	color: #C4AD9E;
	padding: 15px 0;
}
.all-gentlenero-slider {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	padding: 0 20px;
	max-width: 1400px;
	margin: 0 auto;
}
.gent-part .gentlenero-slider {
	overflow: hidden;
	border-radius: 16px;
	aspect-ratio: 1 / 1;
}
.gent-part .gentlenero-slider img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* gentlenero-part */




/* last-part */
.last-section{
  width:100%;
  padding:120px 0 110px 0;
}
.last-section .footer-logo{
  width:auto;
  margin:auto;
  display:table;
}
.last-section .footer-logo img{
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}
.last-section h3{
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 38.4px;
  text-align: center;
  color: rgba(196, 173, 158, 1);
  margin-top:30px;
}
.last-section h1 {
	font-style: normal;
	font-weight: 400;
	font-size: 92px;
	line-height: 110px;
	text-align: center;
	text-transform: uppercase;
	color: #C4AD9E;
	margin-top: 15px;
	margin-bottom: 35px;
}

.last-section h1 a {
  color: var(--color-gold);
  text-decoration: none;
}
.last-section h5{
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height:28.8px;
  text-align: center;
  color: rgba(196, 173, 158, 1);
}




/* footer-part */
.footer-area{
  padding: 0 60px;
  width: 100%;
}
.real-footer{
  padding:35px 0;
  border-top: 1px solid rgba(196, 173, 158, 0.2);
}
.real-footer p{
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.real-footer ul{
	margin: 0;
	padding: 0;
	float: right;
}
.real-footer ul li{
	list-style-type:none;
  display:inline-block;
}
.real-footer ul li a{
	display:block;
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding:0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Source Sans 3', sans-serif;
}
.real-footer ul li:first-child a{
  border-left:0;
}
.real-footer ul li:last-child a{
  padding-right:0;
}
.real-footer ul li a:hover{
  color:#fff;
}
.mobile-language{
  display:none;
}
.nav-area{
	width: 100%;
	display: flex;
}
.navbar-nav:last-child .nav-item label{
  display:none;
}
.navbar-nav:last-child .nav-item.not-desk{
  display:none;
}



.collection{
	background-color: #0E0E0E;
	width: 100%;
	background-image: url('../images/Noise.png');
	background-position: center;
	background-size: cover;
  position: relative;
  text-align: center;
  padding:145px 0 115px 0;
}
.collection .filled{
	width:auto;
  max-width:100%;
}
.collection .col-menus {
	width: 100%;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 15%;
	left: 0;
	z-index: 9;
}
.collection .col-menus li {
	width: 100%;
  z-index:-1;
}
.collection .col-menus .koll{
  font-family: 'Georgia';
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: rgba(196, 173, 158, 1);
  text-decoration: underline;
}
.collection .col-menus li button{
  width:100%;
  margin:auto;
  text-align: center;
  display:block;
  font-family: 'Iskry Regular';
  font-style: normal;
  font-weight: 400;
  font-size: 52px;
  line-height:62.4px;
  color: rgba(196, 173, 158, 0.5);
	padding: 10px 0;
}
.collection .col-menus li button:hover{
	color: #C4AD9E;
}
.collection .col-menus li button.active {
	color: #C4AD9E;
	background: rgba(0, 0, 0, 0.3);
}
.collection .col-menus li button span{
	position: relative;
}
.collection .col-menus li button.active span::before {
	content: "";
	position: absolute;
	width: 52px;
	left: -82px;
	height: 1px;
	background: #C4AD9E;
	top: 0;
	bottom: 0;
	margin: auto;
}
.collection .col-menus li button.active span::after {
	content: "";
	position: absolute;
	width: 52px;
	right: -82px;
	height: 1px;
	background: #C4AD9E;
	top: 0;
	bottom: 0;
	margin: auto;
}
.collection .tab-content{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
}
.collection .tab-content .tab-pane{
	width: 100%;
	height: 100%;
  background-attachment: scroll;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color:#0f0f0f;
  position: relative;
  -webkit-backdrop-filter: blur(5px);
backdrop-filter: blur(5px);
}
.tab-pane.pane-1{
  background-image: url('../images/collections/banner-1.png');
}
.tab-pane.pane-2{
  background-image: url('../images/collections/banner-2.png');
}
.tab-pane.pane-3{
  background-image: url('../images/collections/banner-3.png');
}
.tab-pane.pane-4{
  background-image: url('../images/collections/banner-4.png');
}
.tab-pane.pane-5{
  background-image: url('../images/collections/banner-5.png');
}
.tab-pane.pane-6{
  background-image: url('../images/collections/banner-6.png');
}
.tab-pane.pane-7{
  background-image: url('../images/collections/banner-7.png');
}

.collection .tab-content .tab-pane img {
	position: absolute;
	width: 20%;
	z-index: 99999999999999999;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.collection .tab-content .tab-pane.pane-1 .im1 {
	top: 5%;
	left: 3%;
}
.collection .tab-content .tab-pane.pane-1 .im2 {
	top: 30%;
	right: 2%;
}
.collection .tab-content .tab-pane.pane-1 .im3 {
	bottom: 7%;
	left: 9%;
	width: 30%;
}


.collection .tab-content .tab-pane.pane-2 .im1 {
	top: 30%;
	left: 13%;
}
.collection .tab-content .tab-pane.pane-2 .im2 {
	top: 5%;
	right: 2%;
}
.collection .tab-content .tab-pane.pane-2 .im3 {
	bottom: 2%;
	right: 14%;
	width: 24%;
}


.collection .tab-content .tab-pane.pane-3 .im1 {
	top: 3%;
	left: 2%;
	width: 24%;
}
.collection .tab-content .tab-pane.pane-3 .im2 {
	top: 30%;
	right: 2%;
}
.collection .tab-content .tab-pane.pane-3 .im3 {
	bottom: 1%;
	left: 13%;
}



.collection .tab-content .tab-pane.pane-4 .im1 {
	top: 30%;
	left: 7%;
}
.collection .tab-content .tab-pane.pane-4 .im2 {
	top: 2%;
	right: 13%;
}
.collection .tab-content .tab-pane.pane-4 .im3 {
	bottom: 4%;
	right: 2%;
	width: 20%;
}



.collection .tab-content .tab-pane.pane-5 .im1 {
	top: 10%;
	left: 6%;
}
.collection .tab-content .tab-pane.pane-5 .im2 {
	top: 4%;
	right: 3%;
}
.collection .tab-content .tab-pane.pane-5 .im3 {
	bottom: 4%;
	right: 17%;
}



.collection .tab-content .tab-pane.pane-6 .im1 {
	top: 4%;
	left: 2%;
}
.collection .tab-content .tab-pane.pane-6 .im2 {
	top: 2%;
	right: 20%;
}
.collection .tab-content .tab-pane.pane-6 .im3{
  bottom: 1%;
	right: 2%;
}


.collection .tab-content .tab-pane.pane-7 .im1 {
	top: 15%;
	left: 10%;
}
.collection .tab-content .tab-pane.pane-7 .im2 {
	top: 2%;
	right: 2%;
	width: 25%;
}
.collection .tab-content .tab-pane.pane-7 .im3 {
	bottom: 3%;
	right: 13%;
}

/*===========================Mobile Optimizations=========================*/
/* Ensure crisp text rendering on all devices */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  /* Improve readability on mobile */
  body {
    font-size: var(--text-body-sm);
    line-height: var(--lh-relaxed);
  }

  /* Ensure minimum tap target sizes (44x44px) */
  a, button, .btn {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Logo mobile sizing */
  .navbar-brand img {
    height: 38px;
  }

  .gentlenero-logo img {
    height: 64px;
  }

  .last-section .footer-logo img {
    height: 48px;
  }

  /* Banner mobile optimizations - ensure rotating element visible on first screen */
  .banner-area {
    padding: 0 var(--space-3);
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
  }

  .banner-area .carousel-inner,
  .banner-area .carousel-inner .item {
    height: 100%;
  }

  .banner-area .carousel-inner .item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .banner-area .carousel-inner .item .content {
    padding-top: calc(16vh * 1.3);
    padding-bottom: 6px;
    transform: translateY(10vh);
  }

  .banner-area .carousel-inner .item .content h1 {
    font-size: var(--text-display);
    line-height: var(--lh-snug);
    margin-bottom: var(--space-10); /* Luxury spacing: ~1.3x headline line-height */
    text-align: center;
    word-wrap: break-word;
    hyphens: auto;
  }

  .banner-area .carousel-inner .item .content h1::after {
    max-width: 100%;
    bottom: calc(var(--space-3) * -1);
  }

  .banner-area .carousel-inner .item .content p.dp {
    font-size: var(--text-body-sm);
    line-height: var(--lh-normal);
    margin-top: var(--space-5);
    margin-bottom: 6px;
    margin-left: auto;
    margin-right: auto;
    max-width: 95%;
    text-align: center;
    white-space: nowrap;
  }

  /* Ensure proper separation on mobile */
  .gentlenero-part {
    padding: var(--space-10) var(--space-3);
  }

  /* Mobile: Position rotating element at bottom-center, always visible */
  .banner-area .carousel-inner .item {
    --scroll-indicator-size: 110px;
  }

  .banner-area .carousel-inner .item .div-image {
    position: relative;
    left: 50%;
    right: auto;
    bottom: auto;
    top: auto;
    margin: 20px 0 0;
    transform: translateX(-50%);
    width: var(--scroll-indicator-size);
    height: var(--scroll-indicator-size);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
  }

  .banner-area .carousel-inner .item .div-image span {
    font-size: 18px;
  }


  /* Standardize mobile section spacing - prevent huge gaps */

  .gentlenero-logo {
    padding-bottom: var(--space-5);
  }

  .da-mein-part {
    padding: var(--space-8) var(--space-3);
  }

  .es-gibt-part {
    padding: var(--space-8) var(--space-3);
    background-image: none;
    background-color: #120e0b;
  }

  .collection {
    padding: var(--space-8) 0;
  }

  .wir-kummern-part {
    padding: var(--space-8) var(--space-3);
  }

  .gent-part {
    padding: var(--space-8) 0;
  }

  .last-section {
    padding: var(--space-10) var(--space-3);
  }

  /* Grid adjustments for mobile */
  .all-gentlenero-slider {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 var(--space-3);
  }

  .collection .tab-content .tab-pane img {
    width: 30%;
    border-radius: 12px;
  }

  /* Ensure proper text sizing on mobile */
  h1 {
    font-size: var(--text-h1);
    line-height: var(--lh-snug);
  }

  h2 {
    font-size: var(--text-h2);
    line-height: var(--lh-snug);
  }

  h3 {
    font-size: var(--text-h3);
    line-height: var(--lh-normal);
  }

  /* Improve button and link visibility */
  a:not(.navbar-brand) {
    padding: var(--space-1) var(--space-2);
  }
}

/* Small mobile devices (< 480px) */
@media (max-width: 480px) {
  .banner-area .carousel-inner .item .content {
    padding-top: calc(14vh * 1.3);
    padding-bottom: 6px;
    transform: translateY(10vh);
  }

  .banner-area .carousel-inner .item .content h1 {
    font-size: calc(var(--text-display) * 0.85);
    margin-bottom: var(--space-9); /* Luxury spacing: ~1.4x headline line-height */
    text-align: center;
  }

  .banner-area .carousel-inner .item .content p.dp {
    font-size: 14px;
    line-height: 1.4;
    margin-top: var(--space-5);
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    text-align: center;
    white-space: nowrap;
  }

  /* Maintain premium spacing on small mobile */
  .gentlenero-part {
    padding: var(--space-10) var(--space-3);
  }

  body {
    font-size: 14px;
  }

  /* Ensure comfortable reading */
  p {
    line-height: var(--lh-loose);
  }

  /* Smaller rotating element on very small screens - bottom-center, visible */
  .banner-area .carousel-inner .item {
    --scroll-indicator-size: 95px;
  }

  .banner-area .carousel-inner .item .div-image {
    bottom: auto;
    width: var(--scroll-indicator-size);
    height: var(--scroll-indicator-size);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
  }

  .banner-area .carousel-inner .item .div-image span {
    font-size: 16px;
  }

  /* Instagram grid - 1 column on very small screens for better visibility */
  .all-gentlenero-slider {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .collection .tab-content .tab-pane img {
    width: 40%;
  }
}

@media (max-width: 414px) {
  .banner-area .carousel-inner .item .content h1 {
    font-size: clamp(22px, 7.2vw, calc(var(--text-display) * 0.82));
    max-width: 20ch;
    margin-left: auto;
    margin-right: auto;
    hyphens: none;
    word-break: normal;
  }
}

/* Medium mobile (481-768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .all-gentlenero-slider {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Rotating element sizing for medium mobile */
  .banner-area .carousel-inner .item .div-image {
    bottom: 8px;
    width: 110px;
    height: 110px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
  }

  .banner-area .carousel-inner .item .div-image span {
    font-size: 20px;
  }
}

/* Tablet landscape and up - optimize for better readability */
@media (min-width: 769px) and (max-width: 1024px) {
  body {
    font-size: var(--text-body);
  }

  .banner-area .carousel-inner .item {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    box-sizing: border-box;
    padding-top: 35vh;
    padding-bottom: 120px;
  }

  .banner-area .carousel-inner .item .content h1 {
    font-size: calc(var(--text-display) * 0.9);
  }

  .banner-area .carousel-inner .item .content p.dp {
    margin-bottom: 12px;
  }

  /* Instagram grid - 3 columns on tablets */
  .all-gentlenero-slider {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .collection .tab-content .tab-pane img {
    width: 25%;
  }

  /* Rotating element sizing for tablets - bottom-center */
  .banner-area .carousel-inner .item .div-image {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 12px;
    transform: none;
    width: 130px;
    height: 130px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
  }

  .banner-area .carousel-inner .item .div-image span {
    font-size: 22px;
  }
}

/* Desktop (>= 1024px): bottom-center positioning */
@media (min-width: 1024px) {
  .banner-area {
    padding: 0;
    min-height: 100vh;
  }

  .banner-area .carousel-inner .item {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    box-sizing: border-box;
    padding-top: 0;
    padding-bottom: 120px;
  }

  .banner-area .carousel-inner .item .content {
    padding-top: 0;
    transform: none;
    margin: 32vh auto 0;
  }

  .banner-area .carousel-inner .item .content p.dp {
    margin-bottom: 12px;
  }

  .banner-area .carousel-inner .item .div-image {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 6px;
    transform: none;
    width: 140px;
    height: 140px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
  }

  .banner-area .carousel-inner .item .div-image span {
    font-size: 24px;
  }
}

/* ================== MOBILE HEADER: FIX TOP + SHRINK LOGO ================== */
@media (max-width: 768px){
  :root{
    --mobile-header-h: 80px;      /* Header-Höhe */
    --logo-h-start: 114px;        /* Logo beim Laden (hero-like, +30% larger) */
    --logo-h-scrolled: 60px;      /* Logo nach Scroll (matches nav-open size) */
  }

  /* Header immer oben */
  .header-area{
    position: fixed !important;
    top: 0; left: 0; right: 0;
    z-index: 999999;
    background: transparent !important;
    box-shadow: none !important;
  }

  .header-area .navbar{
    min-height: var(--mobile-header-h);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    background: transparent !important;
  }

  /* Hero startet unter dem fixed Header (sonst wirkt alles "mittig") */
  .banner-area{
    padding-top: var(--mobile-header-h) !important;
  }

  /* Logo: zentriert, groß beim Start */
  .navbar-brand{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }

  .navbar-brand img{
    height: var(--logo-h-start) !important;
    width: auto !important;
    display: block;
    object-fit: contain;
    transition: height 350ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Mobile wordmark styling */
  .navbar-brand .brand-wordmark {
    display: none;
  }

  /* Menü-Button links sauber halten */
  .navbar-toggler{
    z-index: 2;
  }

  /* Language rechts sauber halten */
  .mobile-language{
    z-index: 2;
    margin-left: auto;
  }

  /* Beim Scroll: Header bleibt, Logo schrumpft */
  .header-area.is-scrolled .navbar-brand img{
    height: var(--logo-h-scrolled) !important;
  }

  .header-area.is-scrolled .navbar-brand{
    top: 6px;
  }

  body.nav-open .header-area{
    background: rgba(11, 8, 9, 0.45) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  body.nav-open .header-area .navbar-brand{
    left: 50%;
    transform: translateX(-50%);
    top: 6px;
  }

  body.nav-open .header-area .navbar-brand img{
    height: 60px !important;
  }

}

/* Mobile scroll indicator positioning */
@media (max-width: 768px) {
  .banner-area .carousel-inner .item .div-image{
    bottom: auto;
    margin-top: 20px;
    transform: none;
  }
}

@media (max-width: 480px) {
  .banner-area .carousel-inner .item .div-image{
    bottom: auto;
    margin-top: 20px;
    transform: none;
  }
}
