html {
	font-size: 10px;
	height: 100%;
	width: 100%
}

html.is-locked {
	height: calc(var(--window-inner-height) - 1px);
	overflow: hidden;
	box-sizing: border-box
}

*,
*:before,
*:after {
	box-sizing: border-box
}

body {
	height: 100%;
	width: 100%;
	margin: 0;
	min-width: 320px;
	background-color: #070602;
	color: #fff;
	font: 400 1.6rem/1.5 "Inter", sans-serif;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

@media(max-width: 767px) {
	body {
		font-size: 1.5rem
	}
}

a {
	color: inherit;
	transition: all .3s ease
}

a:hover {
	text-decoration: none
}

button,
input[type=search],
input[type=button],
input[type=reset],
input[type=submit] {
	-webkit-appearance: none;
	cursor: pointer;
	transition: all .3s ease
}

button::-moz-focus-inner,
input[type=reset]::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner {
	border: none;
	padding: 0
}

p {
	margin-top: 0;
	margin-bottom: 1rem
}

h1,
h2,
h3,
h4,
h5 {
	margin-top: 0
}

.wrapper {
	min-height: 100vh;
	min-height: calc(var(--vh, 1vh)*100);
	display: flex;
	flex-direction: column;
	overflow: hidden
}

.container {
	padding-left: 15px;
	padding-right: 15px;
	max-width: 104rem;
	width: 100%;
	margin-left: auto;
	margin-right: auto
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px
}

.row>[class^=col] {
	padding-left: 15px;
	padding-right: 15px
}

.row .col-3 {
	width: 25%
}

.row .col-4 {
	width: 33.33333333%
}

.row .col-5 {
	width: 41.66666667%
}

.row .col-6 {
	width: 50%
}

.row .col-7 {
	width: 58.33333333%
}

.row .col-8 {
	width: 66.66666667%
}

.row .col-9 {
	width: 75%
}

.row .col-auto {
	flex: 0 0 auto;
	width: auto;
	max-width: none
}

.row .col-12 {
	width: 100%
}

.sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important
}

.h1,
.h2,
.h3,
.h4,
.h5 {
	font-weight: 700
}

.h1 {
	font-size: 5.7rem
}

@media(max-width: 767px) {
	.h1 {
		font-size: 4.1rem
	}
}

.h2 {
	margin-bottom: 4rem;
	font-size: 4.2rem;
	line-height: 1.19
}

@media(max-width: 767px) {
	.h2 {
		margin-bottom: 2rem;
		font-size: 3.2rem
	}
}

.color-primary {
	color: #cda744
}

.text-center {
	text-align: center
}

.text-uppercase {
	text-transform: uppercase
}

.fw-700 {
	font-weight: 700
}

.fw-900 {
	font-weight: 900
}

.mb-0 {
	margin-bottom: 0
}

.site-logo {
	display: inline-flex;
	align-items: center;
	font-weight: 500;
	font-size: 1.55rem;
	margin: 10px;
}

.site-logo .icon-holder {
	width: 4rem;
	height: 4rem;
	margin-right: 1rem
}

.swiper .swiper-nav {
	display: flex;
	justify-content: center;
	padding-top: 2rem
}

.swiper .swiper-nav .swiper-btn-next {
	margin-left: 2rem
}

.swiper .swiper-nav .swiper-btn-next,
.swiper .swiper-nav .swiper-btn-prev {
	color: #cda744;
	cursor: pointer
}

.swiper .swiper-nav .swiper-btn-next.swiper-button-disabled,
.swiper .swiper-nav .swiper-btn-prev.swiper-button-disabled {
	pointer-events: none;
	color: #918f8c
}

.swiper .swiper-nav .swiper-btn-next:hover,
.swiper .swiper-nav .swiper-btn-prev:hover {
	color: #cda744
}

.lang-selector {
	text-transform: capitalize
}

.sections-bg-1 {
	background-image: url(../images/bg-02.png);
	background-position: right;
	background-repeat: no-repeat;
	background-size: contain
}

@media(max-width: 991px) {
	.sections-bg-1 {
		background-image: url(../images/bg-03.png);
		background-size: 23rem
	}
}

.sections-bg-2 {
	background-image: url(../images/bg-04.png);
	background-position: left;
	background-repeat: no-repeat;
	background-size: 120rem
}

@media(max-width: 991px) {
	.sections-bg-2 {
		background-size: 43rem
	}
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	transition: .3s
}

.header.scrolled {
	background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%)
}

@media(max-width: 991px) {
	.header {
		min-height: 10rem
	}
}

.header .container {
	display: flex;
	align-items: center
}

.header .container>.dropdown {
	position: relative;
	z-index: 100
}

@media(min-width: 992px) {
	.header .container>.dropdown {
		display: none
	}
}

.menu-opened .header .container>.dropdown {
	z-index: 99
}

.header .site-logo {
	position: relative;
	max-width: 8.6rem;
	display: inline-flex;
	z-index: 100
}

@media(max-width: 991px) {
	.header .site-logo {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%)
	}
}

.header .site-logo img {
	width: 100%;
	height: auto
}

@media(min-width: 992px) {
	.header .dropdown {
		margin-right: 12rem
	}
}

@media(max-width: 991px) {
	.header .dropdown {
		margin-top: 4rem;
		margin-bottom: 4rem
	}
}

.header .main-navigation {
	flex-grow: 1
}

@media(max-width: 991px) {
	.header .main-navigation {
		position: fixed;
		left: 0;
		top: 0rem;
		width: 100%;
		height: 100%;
		padding-top: 16rem;
		padding-bottom: 4rem;
		display: flex;
		flex-direction: column;
		font-size: 2.4rem;
		background: #070602;
		transition: .3s;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		overflow: auto;
		z-index: 99;
		font-weight: 600
	}
}

@media(max-width: 991px) {
	.menu-opened .header .main-navigation {
		opacity: 1;
		visibility: visible;
		pointer-events: all
	}
}

@media(min-width: 992px) {
	.header .main-navigation .btn-primary {
		margin-left: 12rem
	}
}

.header .main-navigation .inner-holder {
	display: flex;
	align-items: center;
	justify-content: flex-end
}

@media(max-width: 991px) {
	.header .main-navigation .inner-holder {
		flex-grow: 1;
		flex-direction: column;
		justify-content: flex-start;
		text-align: center;
		overflow: auto
	}
}

.header .main-navigation .menu {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	font-weight: 600;
	font-size: 1.6rem;
	color: #cda744
}

@media(max-width: 991px) {
	.header .main-navigation .menu {
		flex-direction: column;
		margin-bottom: 4rem
	}
}

@media(min-width: 992px) {
	.header .main-navigation .menu .menu-item:not(:last-child) {
		margin-right: 2rem
	}
}

@media(max-width: 991px) {
	.header .main-navigation .menu .menu-item:not(:last-child) {
		margin-bottom: 2rem
	}
}

.header .main-navigation .menu .menu-item a {
	position: relative;
	text-decoration: none
}

.header .main-navigation .menu .menu-item a::before {
	content: "";
	position: absolute;
	bottom: -0.3rem;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	border-bottom: solid .1rem;
	transition: .3s
}

@media(hover: hover) {
	.header .main-navigation .menu .menu-item a:hover::before {
		width: 100%
	}
}

.header .open-menu {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 2rem;
	width: 2.4rem;
	height: 2.4rem;
	display: block;
	font-size: 0;
	line-height: 0;
	z-index: 100
}

@media(min-width: 992px) {
	.header .open-menu {
		display: none
	}
}

@media(max-width: 767px) {
	.header .open-menu {
		right: 2.4rem
	}
}

.header .open-menu span {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	background: #cda744;
	border-radius: 0;
	height: .2rem;
	transition: all .3s ease
}

.header .open-menu span:nth-child(1) {
	margin-top: -1rem
}

.header .open-menu span:nth-child(2) {
	margin-top: -0.1rem
}

.header .open-menu span:nth-child(3) {
	margin-top: .8rem
}

.menu-opened .header .open-menu span:nth-child(1) {
	margin-top: 0;
	transform: rotate(45deg)
}

.menu-opened .header .open-menu span:nth-child(2) {
	opacity: 0
}

.menu-opened .header .open-menu span:nth-child(3) {
	margin-top: 0;
	transform: rotate(-45deg)
}

.footer {
	position: relative;
	padding-top: 4rem;
	padding-bottom: 4rem;
	color: #fff;
	background: rgba(7, 6, 2, .2);
	-webkit-backdrop-filter: blur(8rem);
	backdrop-filter: blur(8rem);
	border-top: 1px solid hsla(0, 0%, 100%, .1019607843);
	z-index: 1
}

.footer .row {
	margin-bottom: 4rem
}

.footer .row .col {
	width: 25%
}

@media(max-width: 767px) {
	.footer .row .col {
		width: 100%;
		text-align: center
	}
}

.footer .subscribe-form {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 4rem
}

@media(max-width: 767px) {
	.footer .subscribe-form {
		flex-direction: column
	}
}

.footer .subscribe-form .form-title {
	margin-bottom: 0;
	font-weight: 700;
	font-size: 1.8rem
}

@media(max-width: 767px) {
	.footer .subscribe-form .form-title {
		margin-bottom: 2rem
	}
}

.footer .subscribe-form .btn-sm {
	padding: 1.25rem 2rem;
	transform: scale(1)
}

.footer .subscribe-form .input-holder {
	display: flex;
	max-width: 44rem;
	background: #1b1609;
	border: solid .2rem #cda744;
	border-radius: 2.9rem;
	overflow: hidden
}

@media(min-width: 768px) {
	.footer .subscribe-form .input-holder {
		margin-left: 2.1rem
	}
}

@media(max-width: 767px) {
	.footer .subscribe-form .input-holder {
		max-width: 32rem
	}
}

.footer .subscribe-form .input-holder input {
	padding: 1rem 2.4rem;
	flex-grow: 1;
	font-size: 1.6rem;
	color: #fff;
	background: rgba(0, 0, 0, 0);
	border: none;
	outline: none
}

@media(max-width: 767px) {
	.footer .subscribe-form .input-holder input {
		width: calc(100% - 11.7rem)
	}
}

.footer .subscribe-form .input-holder input::-moz-placeholder {
	color: #fff
}

.footer .subscribe-form .input-holder input::placeholder {
	color: #fff
}

.footer .subscribe-form .input-holder .btn {
	font-size: 1.6rem;
	background: #cda744
}

.footer .subscribe-form .input-holder .btn:hover {
	background: hsl(43.3576642336, 57.805907173%, 33.5294117647%)
}

.footer .footer-group {
	font-size: 1.5rem
}

@media(max-width: 767px) {
	.footer .footer-group {
		margin-bottom: 2rem
	}
}

.footer .footer-group .group-title {
	font-size: 1.6rem;
	color: #766539
}

.footer .footer-group .group-menu {
	margin: 0;
	padding: 0;
	list-style: none
}

.footer .footer-group .group-menu .menu-item:not(:last-child) {
	margin-bottom: .4rem
}

.footer .footer-group .group-menu a {
	text-decoration: none
}

.footer .footer-group .group-menu a:hover {
	text-decoration: underline
}

.footer .social-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	max-width: 18rem
}

@media(max-width: 767px) {
	.footer .social-list {
		justify-content: center;
		margin-left: auto;
		margin-right: auto
	}
}

.footer .social-list li {
	display: inline-flex
}

.footer .social-list li a {
	display: inline-flex;
	transition: .3s
}

.footer .social-list li a:hover {
	transform: scale(1.25)
}

.footer .copyright-holder {
	font-size: 1.7rem;
	color: #766539
}

.footer .copyright-holder p {
	margin-bottom: 0
}

.section-intro::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.5); /* dunkelt den Hintergrund ab */
	z-index: 0;
}

.section-intro {
	min-height: calc(100vh - 10rem);
	padding-top: 16.4rem;
	padding-bottom: 4rem;
	position: relative;
	background-image: url(../images/img-013.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	z-index: 1
}

.section-intro > * {
	position: relative; 
	z-index: 1; /* bringt alle Elemente über den abgedunkelten Hintergrund */
}

@media(max-width: 991px) {
	.section-intro {
 padding-top: clamp(16rem, 25vh, 32rem);
    padding-bottom: 4rem;
		text-align: center;
		background-image: url(../images/img-013.jpg);
		background-size: contain;
		background-position: 50% 13%
	}
}

@media(min-width: 992px) {
	.section-intro {
		min-height: 88rem
	}
}

@media(min-width: 992px) {
	.section-intro::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 26rem;
		background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%)
	}
}

@media(max-width: 574px) {
	.section-intro::after {
		content: "";
		position: absolute;
		top: calc(7vh + 5vw);
		left: 0;
		width: 100%;
		height: 15rem;
		background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%)
	}
}

.section-intro .row [class^=col-]:last-child {
	position: relative
}

@media(max-width: 991px) {
	.section-intro .row [class^=col-] {
		width: 100%
	}
}

@media(max-width: 991px) {
	.section-intro .row [class^=col-]:last-child {
		margin-bottom: 2rem
	}
}

.section-intro .h2 {
	margin-bottom: 5rem;
	max-width: 46rem;
	text-align: left
}

@media(max-width: 991px) {
	.section-intro .h2 {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 3rem
	}
}

.section-intro .text-holder {
	max-width: 40rem;
	margin-bottom: 6.4rem;
	font-weight: 500;
	line-height: 1.5
}

@media(max-width: 991px) {
	.section-intro .text-holder {
		margin-bottom: 3.6rem;
		margin-left: auto;
		margin-right: auto
	}
}

.section-intro .btns-holder {
	display: flex;
	flex-direction: column;
	align-items: flex-start
}

@media(max-width: 991px) {
	.section-intro .btns-holder {
		align-items: center;
		margin-bottom: 6rem
	}
}

.section-intro .btns-holder .btn:first-child {
	margin-bottom: 2rem
}

@media(min-width: 992px) {
	.section-intro .block-launch {
		transform: translateX(12rem);
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 4rem;
		border-radius: 3.2rem;
		background-image: rgba(26, 13, 2, .1);
		-webkit-backdrop-filter: blur(2.5rem);
		backdrop-filter: blur(2.5rem);
		box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, .25)
	}
}

@media(max-width: 991px) {
	.section-intro .block-launch {
		padding: 4rem 2rem 3rem 2rem;
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		border-radius: 3.2rem;
		background-image: rgba(26, 13, 2, .1);
		-webkit-backdrop-filter: blur(2.5rem);
		backdrop-filter: blur(2.5rem);
		box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, .25)
	}
}

.section-intro .block-launch::before {
	border-radius: inherit;
	content: "";
	display: block;
	position: absolute;
	inset: 0;
	border: .1rem solid #fff;
	-webkit-mask-image: linear-gradient(149.59deg, rgba(255, 255, 255, 0.32) 6.63%, rgba(255, 255, 255, 0.08) 49.19%, rgba(255, 255, 255, 0.24) 70.47%, rgba(255, 255, 255, 0.08) 91.76%);
	mask-image: linear-gradient(149.59deg, rgba(255, 255, 255, 0.32) 6.63%, rgba(255, 255, 255, 0.08) 49.19%, rgba(255, 255, 255, 0.24) 70.47%, rgba(255, 255, 255, 0.08) 91.76%);
	pointer-events: none
}

.section-intro .block-launch .block-title {
	margin-bottom: 2rem;
	font-weight: 500;
	font-size: 2.4rem
}

.section-intro .block-launch .timer-block {
	margin-bottom: 3rem
}

.section-intro .block-launch .timer-block .timer-holder {
	display: flex;
	justify-content: center
}

.section-intro .block-launch .timer-block .item-inner {
	min-width: 8rem
}

@media(max-width: 991px) {
	.section-intro .block-launch .timer-block .item-inner {
		min-width: 6rem
	}
}

.section-intro .block-launch .timer-block .timer-item {
	display: flex;
	align-items: center;
	text-align: center
}

.section-intro .block-launch .timer-block .timer-item p {
	margin-bottom: 0;
	font-weight: 500;
	font-size: 1.2rem;
	color: hsla(0, 0%, 100%, .7)
}

.section-intro .block-launch .timer-block .timer-item:not(:last-child)::after {
	content: ":";
	font-weight: 800;
	font-size: 4.2rem;
	color: hsla(0, 0%, 100%, .5);
	transform: translateY(-1.3rem)
}

@media(max-width: 991px) {
	.section-intro .block-launch .timer-block .timer-item:not(:last-child)::after {
		font-size: 3.2rem
	}
}

.section-intro .block-launch .timer-block .item-value {
	font-weight: 700;
	font-size: 4.2rem;
	line-height: 1.19
}

@media(max-width: 991px) {
	.section-intro .block-launch .timer-block .item-value {
		font-size: 3.2rem
	}
}

.section-intro .block-launch .progress-bar {
	position: relative;
	max-width: 35rem;
	margin-left: auto;
	margin-right: auto;
	min-height: 3rem;
	margin-bottom: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	background: rgba(0, 0, 0, .2);
	-webkit-backdrop-filter: blur(2.4rem);
	backdrop-filter: blur(2.4rem);
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, .2509803922);
	border-radius: .8rem;
	overflow: hidden
}

.section-intro .block-launch .progress-bar::before {
	border-radius: inherit;
	content: "";
	display: block;
	position: absolute;
	inset: 0;
	border: .1rem solid #fff;
	-webkit-mask-image: linear-gradient(149.59deg, rgba(255, 255, 255, 0.32) 6.63%, rgba(255, 255, 255, 0.08) 49.19%, rgba(255, 255, 255, 0.24) 70.47%, rgba(255, 255, 255, 0.08) 91.76%);
	mask-image: linear-gradient(149.59deg, rgba(255, 255, 255, 0.32) 6.63%, rgba(255, 255, 255, 0.08) 49.19%, rgba(255, 255, 255, 0.24) 70.47%, rgba(255, 255, 255, 0.08) 91.76%)
}

.section-intro .block-launch .progress-bar p {
	position: relative;
	z-index: 1;
	margin-bottom: 0;
	text-align: center
}

.section-intro .block-launch .progress-bar .progress-line {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: var(--progress-width);
	height: 100%;
	background: linear-gradient(180deg, #ffd041 0%, #d4a528 48.08%, #be9008 100%);
	border-radius: .8rem
}

.section-intro .block-launch .progress-bar .progress-line::before {
	border-radius: inherit;
	content: "";
	display: block;
	position: absolute;
	inset: 0;
	border: .1rem solid #fff;
	-webkit-mask-image: linear-gradient(99.97deg, rgba(255, 255, 255, 0.12) 4.71%, rgba(255, 255, 255, 0) 32.39%, rgba(255, 255, 255, 0.24) 69.03%, rgba(21, 21, 21, 0.6) 89.38%);
	mask-image: linear-gradient(99.97deg, rgba(255, 255, 255, 0.12) 4.71%, rgba(255, 255, 255, 0) 32.39%, rgba(255, 255, 255, 0.24) 69.03%, rgba(21, 21, 21, 0.6) 89.38%);
	box-shadow: inset 0px 8px 16px 0px rgba(0, 0, 0, .2509803922)
}

.section-intro .block-launch .txt-1,
.section-intro .block-launch .txt-2 {
	font-weight: 500
}

.section-intro .block-launch .txt-1 {
	margin-bottom: 1rem
}

.section-intro .block-launch .txt-2 {
	margin-bottom: 3rem
}

.section-sale {
	padding-top: 8rem
}

@media(max-width: 767px) {
	.section-sale {
		padding-top: 6rem;
		padding-bottom: 6rem
	}
}

.section-sale .row-1 {
	margin-left: -1rem;
	margin-right: -1rem;
	margin-bottom: 6rem
}

.section-sale .row-1>[class^=col] {
	padding-left: 1rem;
	padding-right: 1rem
}

@media(max-width: 991px) {
	.section-sale .row-1 {
		margin-bottom: 4rem
	}
}

.section-sale .row-1 [class^=col-] {
	margin-bottom: 2rem
}

@media(max-width: 767px) {
	.section-sale .row-1 [class^=col-] {
		width: 100%;
		display: flex;
		justify-content: center;
		margin-bottom: 1rem
	}
}

.section-sale .h2 {
	margin-bottom: 7.6rem
}

@media(max-width: 991px) {
	.section-sale .h2 {
		margin-bottom: 2rem
	}
}

.section-sale .card-type-1 {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	padding: .8rem 1rem;
	background: rgba(205, 167, 68, .5019607843);
	border-radius: 1.2rem
}

@media(max-width: 767px) {
	.section-sale .card-type-1 {
		max-width: 24rem;
		width: 100%
	}
}

.section-sale .card-type-1 .card-title {
	margin-bottom: 0;
	font-weight: 700;
	font-size: 2rem
}

.section-sale .card-type-1 .card-text {
	margin-bottom: 0;
	font-size: 1.5rem
}

.section-sale .card-type-1 .card-title,
.section-sale .card-type-1 .card-text {
	color: #fff
}

.section-sale .swiper-holder {
	margin-bottom: 8rem
}

@media(min-width: 992px) {
	.section-sale .swiper-holder {
		display: flex;
		align-items: center
	}
}

@media(max-width: 991px) {
	.section-sale .swiper-holder {
		position: relative;
		margin-bottom: 12rem
	}
}

.section-sale .swiper-button-next,
.section-sale .swiper-button-prev {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	margin: 0;
	width: 4.8rem;
	height: 4.8rem;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(50, 41, 17, .5019607843);
	border-radius: 50%;
	color: #cda744
}

@media(max-width: 991px) {

	.section-sale .swiper-button-next,
	.section-sale .swiper-button-prev {
		position: absolute;
		top: unset;
		bottom: -6rem;
		width: 4rem;
		height: 4rem
	}
}

.section-sale .swiper-button-next svg,
.section-sale .swiper-button-prev svg {
	width: 2.1rem
}

.section-sale .swiper-button-next::after,
.section-sale .swiper-button-prev::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	padding: .15rem;
	background: linear-gradient(149.59deg, rgba(255, 255, 255, 0.32) 6.63%, rgba(255, 255, 255, 0.08) 49.19%, rgba(255, 255, 255, 0.24) 70.47%, rgba(255, 255, 255, 0.08) 91.76%);
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude
}

.section-sale .swiper-button-prev {
	margin-right: .4rem
}

@media(max-width: 991px) {
	.section-sale .swiper-button-prev {
		left: 50%;
		right: unset;
		transform: translateX(calc(-50% - 4rem))
	}
}

.section-sale .swiper-button-next {
	margin-left: .4rem
}

@media(max-width: 991px) {
	.section-sale .swiper-button-next {
		left: unset;
		right: 50%;
		transform: translateX(calc(50% + 4rem))
	}
}

.section-sale .swiper-slide:first-child .card-type-2 {
	background: rgba(97, 75, 16, .5019607843)
}

.section-sale .swiper-slide:first-child .card-type-2::before {
	-webkit-mask-image: linear-gradient(149.59deg, rgba(212, 165, 40, 0.32) 6.63%, rgba(255, 252, 214, 0.363922) 49.19%, rgba(212, 165, 40, 0.24) 70.47%, rgba(255, 255, 255, 0.08) 91.76%);
	mask-image: linear-gradient(149.59deg, rgba(212, 165, 40, 0.32) 6.63%, rgba(255, 252, 214, 0.363922) 49.19%, rgba(212, 165, 40, 0.24) 70.47%, rgba(255, 255, 255, 0.08) 91.76%);
	border: .2rem solid #fff
}

.section-sale .card-type-2 {
	height: 100%;
	text-align: center;
	background: #f1eee8;
	border-radius: 1.6rem;
	background: rgba(50, 41, 17, .5019607843);
	-webkit-backdrop-filter: blur(2.4rem);
	backdrop-filter: blur(2.4rem);
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, .2509803922)
}

@media(max-width: 991px) {
	.section-sale .card-type-2 {
		max-width: 27rem;
		margin-left: auto;
		margin-right: auto;
		padding: 2rem 1rem
	}
}

.section-sale .card-type-2::before {
	border-radius: inherit;
	content: "";
	display: block;
	position: absolute;
	inset: 0;
	border: .1rem solid #fff;
	-webkit-mask-image: linear-gradient(149.59deg, rgba(255, 255, 255, 0.32) 6.63%, rgba(255, 255, 255, 0.08) 49.19%, rgba(255, 255, 255, 0.24) 70.47%, rgba(255, 255, 255, 0.08) 91.76%);
	mask-image: linear-gradient(149.59deg, rgba(255, 255, 255, 0.32) 6.63%, rgba(255, 255, 255, 0.08) 49.19%, rgba(255, 255, 255, 0.24) 70.47%, rgba(255, 255, 255, 0.08) 91.76%)
}

.section-sale .card-type-2 .block-header {
	position: relative;
	padding: 2rem 1rem 1rem 1rem;
	color: #cda744
}

@media(max-width: 991px) {
	.section-sale .card-type-2 .block-header {
		padding-top: 0
	}
}

.section-sale .card-type-2 .block-header::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 5.6rem);
	height: 0;
	border-bottom: solid .1rem hsla(0, 0%, 100%, .1)
}

.section-sale .card-type-2 .block-header .txt-1 {
	margin-bottom: .9rem;
	font-weight: 700;
	font-size: 2.7rem
}

@media(max-width: 991px) {
	.section-sale .card-type-2 .block-header .txt-1 {
		margin-bottom: 0
	}
}

.section-sale .card-type-2 .block-header .txt-2 {
	margin-bottom: 0;
	font-size: 2rem;
	font-weight: 500
}

.section-sale .card-type-2 .block-body {
	padding: 1rem 1rem 2rem 1rem
}

.section-sale .card-type-2 .block-body .txt-1 {
	margin-bottom: 0;
	font-weight: 400;
	font-size: 2rem;
	color: #fff
}

.section-sale .card-type-2 .block-body .txt-2 {
	margin-bottom: 0;
	font-weight: 400;
	font-size: 1.5rem;
	color: #766539
}

.section-sale .card-type-2 ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.section-sale .card-type-2 ul li:not(:last-child) {
	margin-bottom: 1rem
}

.section-sale .row-3 {
	margin-top: 2rem;
	margin-left: -2rem;
	margin-right: -2rem
}

.section-sale .row-3>[class^=col] {
	padding-left: 2rem;
	padding-right: 2rem
}

@media(max-width: 767px) {
	.section-sale .row-3 [class^=col-] {
		width: 100%;
		margin-bottom: 2rem
	}
}

.section-sale .card-type-3 {
	height: 100%;
	padding: 4rem 2rem;
	background: rgba(50, 41, 17, .4);
	-webkit-backdrop-filter: blur(2.4rem);
	backdrop-filter: blur(2.4rem);
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, .2509803922);
	border-radius: 1.6rem
}

.section-sale .card-type-3::before {
	border-radius: inherit;
	content: "";
	display: block;
	position: absolute;
	inset: 0;
	border: .1rem solid #fff;
	-webkit-mask-image: linear-gradient(149.59deg, rgba(255, 255, 255, 0.32) 6.63%, rgba(255, 255, 255, 0.08) 49.19%, rgba(255, 255, 255, 0.24) 70.47%, rgba(255, 255, 255, 0.08) 91.76%);
	mask-image: linear-gradient(149.59deg, rgba(255, 255, 255, 0.32) 6.63%, rgba(255, 255, 255, 0.08) 49.19%, rgba(255, 255, 255, 0.24) 70.47%, rgba(255, 255, 255, 0.08) 91.76%)
}

@media(max-width: 767px) {
	.section-sale .card-type-3 {
		padding: 4rem 2rem 4rem 2rem
	}
}

.section-sale .card-type-3 .card-title {
	margin-bottom: 2.4rem;
	font-weight: 700;
	font-size: 3rem;
	color: #cda744;
	text-align: center
}

@media(max-width: 767px) {
	.section-sale .card-type-3 .card-title {
		margin-bottom: 2rem
	}
}

.section-sale .card-type-3 .chart-holder {
	position: relative;
	max-width: 24rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 4rem
}

@media(max-width: 767px) {
	.section-sale .card-type-3 .chart-holder {
		margin-bottom: 2rem
	}
}

.section-sale .card-type-3 .chart-holder img {
	width: 100%;
	height: auto
}

.section-sale .card-type-3 ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.section-sale .card-type-3 ul p {
	margin-bottom: .8rem
}

.section-sale .card-type-3 ul li:not(:last-child) {
	margin-bottom: 2rem
}

.section-sale .card-type-3 .progress-bar {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-height: 2.8rem;
	padding: 0 .6rem;
	font-weight: 500;
	font-size: 1.5rem;
	background: hsla(0, 0%, 100%, .1);
	border-radius: .4rem
}

.section-sale .card-type-3 .progress-bar::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: var(--progress-width);
	height: 100%;
	background: var(--progress-background-color);
	border: solid .1rem var(--progress-border-color);
	border-radius: .4rem
}

.section-sale .card-type-3 .progress-bar p {
	margin-bottom: 0;
	position: relative;
	z-index: 1
}

.section-roadmap {
	position: relative;
	padding-bottom: 6rem;
	padding-top: 8rem
}

@media(max-width: 991px) {
	.section-roadmap {
		padding-top: 0;
		padding-bottom: 0
	}
}

.section-roadmap .swiper-holder {
	display: flex;
	justify-content: center
}

.section-roadmap .swiper {
	max-width: 90rem;
	width: 100%;
	margin-left: 1.2rem;
	margin-right: 1.2rem
}

.section-roadmap .swiper::before {
	content: "";
	top: var(--padding-top);
	display: block;
	width: 100%;
	border-top: solid .2rem #c29c53
}

.section-roadmap .swiper-slide {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 18rem
}

.section-roadmap .swiper-button-next,
.section-roadmap .swiper-button-prev {
	position: relative;
	top: 0;
	margin: 0;
	right: 0;
	left: 0;
	width: 4.8rem;
	height: 4.8rem;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(50, 41, 17, .5019607843);
	border-radius: 50%;
	transform: translateY(-50%);
	color: #cda744
}

.section-roadmap .swiper-button-next svg,
.section-roadmap .swiper-button-prev svg {
	width: 2.1rem
}

.section-roadmap .swiper-button-next::after,
.section-roadmap .swiper-button-prev::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	padding: .15rem;
	background: linear-gradient(149.59deg, rgba(255, 255, 255, 0.32) 6.63%, rgba(255, 255, 255, 0.08) 49.19%, rgba(255, 255, 255, 0.24) 70.47%, rgba(255, 255, 255, 0.08) 91.76%);
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude
}

.section-roadmap .roadmap-item {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 16rem
}

@media(max-width: 767px) {
	.section-roadmap .roadmap-item {
		width: 16rem
	}
}

.section-roadmap .roadmap-item .block-title {
	display: block;
	margin-bottom: .4rem;
	font-weight: 700;
	font-size: 1.6rem;
	text-transform: uppercase;
	line-height: normal
}

.section-roadmap .roadmap-item .info-block {
	position: relative;
	padding: 1rem;
	border-radius: .8rem;
	background: linear-gradient(#1c180a, #1c180a) padding-box, linear-gradient(149.59deg, rgba(255, 255, 255, 0.32) 6.63%, rgba(255, 255, 255, 0.08) 49.19%, rgba(255, 255, 255, 0.24) 70.47%, rgba(255, 255, 255, 0.08) 91.76%) border-box;
	border: .1rem solid rgba(0, 0, 0, 0)
}



@media(max-width: 574px) {
	.section-roadmap .roadmap-item .info-block {
		width: 100%
	}
}

.section-roadmap .roadmap-item .info-block::after {
	content: "";
	position: absolute;
	top: -3.6rem;
	left: 50%;
	transform: translateX(-50%);
	width: 3.2rem;
	height: 3.2rem;
	background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='16' cy='16' r='15.5' fill='%23CDA744' stroke='%23CDA744' style='fill:%23CDA744;fill:color(display-p3 0.8035 0.6546 0.2665);fill-opacity:1;stroke:%23CDA744;stroke:color(display-p3 0.8035 0.6546 0.2665);stroke-opacity:1;'/%3E%3Cpath d='M21.9141 9.03906C22.4062 9.03906 22.8459 9.20096 23.1934 9.54102L23.3154 9.67285C23.5809 9.99052 23.7109 10.3764 23.7109 10.8047C23.7109 10.9984 23.6769 11.191 23.6162 11.3799C23.5696 11.5247 23.5061 11.6675 23.4277 11.8076L23.3447 11.9473L23.3408 11.9531L16.0674 23.0859L16.0625 23.0938C15.6774 23.6609 15.1059 23.9453 14.4141 23.9453C13.7755 23.9453 13.234 23.6821 12.8203 23.1885L12.8174 23.1855L8.78613 18.3027L8.78711 18.3018C8.66523 18.1605 8.55904 18.013 8.47949 17.8564L8.40723 17.6934C8.32846 17.4857 8.28906 17.269 8.28906 17.0469C8.28906 16.5545 8.45759 16.117 8.80664 15.7754L8.94238 15.6553C9.26847 15.3934 9.66028 15.2656 10.0938 15.2656C10.597 15.2656 11.0321 15.4517 11.3779 15.7988L11.5205 15.957L11.5215 15.959L14.333 19.4395L20.3428 9.94336L20.3486 9.93555L20.4941 9.7334C20.6462 9.54003 20.8187 9.37567 21.0166 9.26172V9.2627C21.2861 9.10531 21.5927 9.03906 21.9141 9.03906Z' fill='%23070602' stroke='%23CDA744' style='fill:%23070602;fill:color(display-p3 0.0275 0.0235 0.0078);fill-opacity:1;stroke:%23CDA744;stroke:color(display-p3 0.8035 0.6546 0.2665);stroke-opacity:1;'/%3E%3C/svg%3E%0A");
	background-size: 3.2rem
}

.section-roadmap .roadmap-item .info-block ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: normal
}

.section-roadmap .roadmap-item .info-block ul li {
	position: relative
}

.section-roadmap .roadmap-item .info-block ul li:not(:last-child) {
	margin-bottom: .3rem
}

.section-roadmap .roadmap-item.to-bottom .info-block {
	margin-top: 3.6rem
}

.section-roadmap .roadmap-item.to-bottom .info-block::after {
	top: -5.3rem
}

.section-roadmap .roadmap-item.to-top .info-block {
	margin-top: -3.6rem;
	transform: translateY(-100%)
}

.section-roadmap .roadmap-item.to-top .info-block::after {
	top: unset;
	bottom: -5.1rem;
	transform: translateX(-50%)
}

.highlighted {
	background-color: #fff8e1; /* Helles Gold/Beige */
  box-shadow: 0 0 15px 4px rgba(255, 215, 0, 0.6); /* Goldener Glow */
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
  
  
}
@media(min-width: 992px) {
	.highlighted 
	{
		transform: translateX(-18rem);
	}
}

.section-team {
	padding-top: 8rem;
	padding-bottom: 8rem
}

@media(max-width: 767px) {
	.section-team {
		padding-top: 6rem;
		padding-bottom: 2.2rem
	}
}

.section-team .row {
	justify-content: center
}

@media(max-width: 767px) {
	.section-team .row [class^=col-] {
		width: 100%
	}
}

.section-team .h2 {
	margin-bottom: 8rem
}

@media(max-width: 991px) {
	.section-team .h2 {
		margin-bottom: 2rem
	}
}

.section-team .h2-second {
	margin-top: 8rem
}

@media(max-width: 767px) {
	.section-team .h2-second {
		margin-top: 2rem
	}
}

.section-team .card {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 1.8rem
}

@media(max-width: 991px) {
	.section-team .card {
		margin-bottom: 3rem
	}
}

.section-team .card .card-title,
.section-team .card .card-subtitle {
	font-size: 2.4rem
}

.section-team .card .card-title {
	margin-bottom: 1rem
}

.section-team .card .card-subtitle {
	margin-bottom: 0;
	font-size: 1.8rem
}

.section-team .card ul {
	font-weight: 400;
	font-size: 1.6rem
}

.section-team .card .img-holder {
	display: inline-flex;
	width: 18rem;
	height: 18rem;
	margin-bottom: 2rem
}

.section-team .card .img-holder img {
	width: 100%;
	height: 100%;
	border-radius: 50%
}

.section-banner {
	position: relative;
	padding-top: 14rem;
	padding-bottom: 9.2rem;
	color: #fff;
	background-size: cover;
	background-position: bottom;
	z-index: 1
}

.section-banner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 22rem;
	background: linear-gradient(0deg, rgba(7, 6, 2, 0) 0%, #070602 100%)
}

.section-banner::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-image: url(../images/bg-01.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1
}

@media(max-width: 1439px) {
	.section-banner::after {
		height: 80vh;
		background-position: 50% 51%
	}
}

@media(max-width: 767px) {
	.section-banner {
		padding-top: 3.8rem;
		padding-bottom: 4rem
	}
}

.section-banner .container {
	position: relative;
	z-index: 1
}

.section-banner .text-holder {
	margin-bottom: 4rem;
	font-size: 3rem;
	line-height: normal
}

@media(max-width: 991px) {
	.section-banner .text-holder {
		font-size: 2.4rem
	}
}

.section-banner .btn-primary {
	padding: 1.4rem 3.3rem;
	font-size: 2.2rem;
	min-width: 17.4rem
}

.section-resources {
	padding-top: 5.4rem;
	padding-bottom: 5.3rem;
	font-weight: 500;
	font-size: 1.6rem;
	color: #fff;
	background-size: cover
}

@media(max-width: 991px) {
	.section-resources {
		padding-bottom: 0
	}
}

@media(max-width: 767px) {
	.section-resources {
		text-align: center
	}
}

.section-resources .resources-block {
	padding: 8rem 4rem 6rem 4rem;
	background: #1b1609;
	border: 2px solid #cda744;
	box-shadow: 0px 18px 84px 0px rgba(205, 167, 68, .3019607843);
	border-radius: 3.2rem
}

@media(max-width: 991px) {
	.section-resources .resources-block {
		padding: 4rem 2rem
	}
}

@media(max-width: 767px) {
	.section-resources .row [class^=col-] {
		width: 100%
	}
}

@media(max-width: 767px) {
	.section-resources .row [class^=col-]:first-child .buttons-holder {
		display: none
	}
}

.section-resources .row [class^=col-]:last-child {
	display: flex;
	align-items: center;
	justify-content: flex-end
}

@media(max-width: 767px) {
	.section-resources .row [class^=col-]:last-child {
		flex-direction: column
	}
}

@media(min-width: 768px) {
	.section-resources .row [class^=col-]:last-child .buttons-holder {
		display: none
	}
}

.section-resources .text-holder {
	margin-bottom: 4rem
}

@media(max-width: 767px) {
	.section-resources .text-holder {
		margin-bottom: 2rem
	}
}

.section-resources .buttons-holder {
	display: flex;
	gap: 4rem;
	flex-direction: row
}

@media(max-width: 767px) {
	.section-resources .buttons-holder {
		padding-top: 1rem;
		flex-direction: column
	}
}

.section-resources .buttons-holder .btn:first-child {
	margin-right: 4rem
}

@media(max-width: 991px) {
	.section-resources .buttons-holder .btn:first-child {
		margin-right: 0
	}
}

.section-resources .img-holder {
	max-width: 22.7rem;
	display: flex
}

.section-resources .img-holder img {
	width: 100%;
	height: auto;
	
}

.section-cards {
	padding-top: 10.2rem;
	padding-bottom: 8.9rem;
	overflow: hidden
}

@media(max-width: 767px) {
	.section-cards {
		padding-bottom: 6rem
	}
}

.section-cards .h2 {
	margin-bottom: 10rem
}

@media(max-width: 991px) {
	.section-cards .h2 {
		margin-bottom: 4rem
	}
}

.section-cards .card:not(:last-child) {
	margin-bottom: 10rem
}

@media(max-width: 767px) {
	.section-cards .card:not(:last-child) {
		margin-bottom: 6rem
	}
}

@media(max-width: 767px) {
	.section-cards .card {
		text-align: center
	}
}

.section-cards .card .row {
	margin-left: -2rem;
	margin-right: -2rem
}

.section-cards .card .row>[class^=col] {
	padding-left: 2rem;
	padding-right: 2rem
}

@media(min-width: 768px) {
	.section-cards .card .row {
		align-items: center
	}
}

@media(max-width: 767px) {
	.section-cards .card .row [class^=col-] {
		width: 100%
	}
}

.section-cards .card .img-holder {
	display: flex
}

@media(max-width: 767px) {
	.section-cards .card .img-holder {
		margin-left: -1.5rem;
		margin-right: -1.5rem;
		margin-bottom: 4rem
	}
}

.section-cards .card .img-holder img {
	width: 100%;
	height: auto
}

@media(min-width: 768px) {
	.section-cards .card .img-holder img {
		border-radius: 2.4rem
	}
}

.section-cards .card .card-title {
	margin-bottom: 4rem;
	font-size: 3rem;
	line-height: normal
}

@media(max-width: 991px) {
	.section-cards .card .card-title {
		margin-bottom: 2rem;
		font-size: 2.4rem
	}
}

.section-cards .card .text-holder {
	line-height: 1.5;
	text-align: justify
}

.section-cards .card .text-holder p:not(:last-child) {
	margin-bottom: 3rem
}

.section-cards .card .text-holder p:last-child {
	margin-bottom: 0
}

.section-cards .card.card-reverse .row {
	flex-direction: row-reverse
}

.section-mission {
	padding-top: 6rem
}

@media(min-width: 992px) {
	.section-mission {
		padding-top: 10rem
	}
}

@media(max-width: 767px) {
	.section-mission {
		padding-bottom: 4rem
	}
}

.section-mission .h2 {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto
}

.section-mission .text-intro {
	margin-left: auto;
	margin-right: auto;
	max-width: 97rem;
	margin-bottom: 7.5rem;
	text-align: justify
}

.section-mission .plyr--full-ui.plyr--video .plyr__control--overlaid {
	display: flex
}

.section-mission .plyr--video .plyr__control:focus-visible,
.section-mission .plyr--video .plyr__control:hover,
.section-mission .plyr--video .plyr__control[aria-expanded=true] {
	color: #101038;
	background: linear-gradient(180deg, #ffdf8f 0%, #d4a528 48.08%, #be9008 100%), linear-gradient(292.6deg, rgba(255, 255, 255, 0) 17.21%, rgba(255, 255, 255, 0.5) 77.5%)
}

.section-mission .plyr__control--overlaid {
	width: 6rem;
	height: 6rem;
	align-items: center;
	justify-content: center;
	color: #101038;
	background: linear-gradient(180deg, #ffdf8f 0%, #d4a528 48.08%, #be9008 100%), linear-gradient(292.6deg, rgba(255, 255, 255, 0) 17.21%, rgba(255, 255, 255, 0.5) 77.5%);
	box-shadow: 0px -3px 4px 0px rgba(0, 0, 0, .2) inset
}

.section-mission .plyr__control--overlaid::before {
	border-radius: inherit;
	content: "";
	display: block;
	position: absolute;
	inset: 0;
	border: .1rem solid #fff;
	-webkit-mask-image: linear-gradient(99.97deg, rgba(255, 255, 255, 0.12) 4.71%, rgba(255, 255, 255, 0) 32.39%, rgba(255, 255, 255, 0.24) 69.03%, rgba(21, 21, 21, 0.6) 89.38%);
	mask-image: linear-gradient(99.97deg, rgba(255, 255, 255, 0.12) 4.71%, rgba(255, 255, 255, 0) 32.39%, rgba(255, 255, 255, 0.24) 69.03%, rgba(21, 21, 21, 0.6) 89.38%)
}

.section-mission .plyr__control svg {
	width: 3.5rem;
	height: 3.5rem
}

.section-mission .video-holder {
	max-width: 96rem;
	margin-left: auto;
	margin-right: auto;
	border-radius: 2.4rem;
	overflow: hidden;
	box-shadow: 0px 18px 84px 0px rgba(205, 167, 68, .3019607843)
}

.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	text-decoration: none;
	border: none;
	border-radius: 2.9rem;
	z-index: 1
}

.btn.btn-primary {
	color: #070602;
	background: linear-gradient(180deg, #ffdf8f 0%, #d4a528 48.08%, #be9008 100%), linear-gradient(292.6deg, rgba(255, 255, 255, 0) 17.21%, rgba(255, 255, 255, 0.5) 77.5%);
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, .2509803922)
}

.btn.btn-primary::before {
	border-radius: inherit;
	content: "";
	display: block;
	position: absolute;
	inset: 0;
	border: .1rem solid #fff;
	-webkit-mask-image: linear-gradient(99.97deg, rgba(255, 255, 255, 0.12) 4.71%, rgba(255, 255, 255, 0) 32.39%, rgba(255, 255, 255, 0.24) 69.03%, rgba(21, 21, 21, 0.6) 89.38%);
	mask-image: linear-gradient(99.97deg, rgba(255, 255, 255, 0.12) 4.71%, rgba(255, 255, 255, 0) 32.39%, rgba(255, 255, 255, 0.24) 69.03%, rgba(21, 21, 21, 0.6) 89.38%);
	box-shadow: 0px -3px 4px 0px rgba(0, 0, 0, .2) inset;
	pointer-events: none
}

.btn.btn-dark {
	color: #fff;
	background: linear-gradient(180deg, rgba(201, 200, 199, 0.4) 0%, rgba(108, 90, 49, 0.4) 48.08%, rgba(56, 38, 0, 0.4) 100%);
	-webkit-backdrop-filter: blur(2.4rem);
	backdrop-filter: blur(2.4rem);
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, .2509803922)
}

.btn.btn-dark::before {
	border-radius: inherit;
	content: "";
	display: block;
	position: absolute;
	inset: 0;
	border: .1rem solid #fff;
	-webkit-mask-image: linear-gradient(99.97deg, rgba(255, 255, 255, 0.12) 4.71%, rgba(255, 255, 255, 0) 32.39%, rgba(255, 255, 255, 0.24) 69.03%, rgba(21, 21, 21, 0.3) 89.38%);
	mask-image: linear-gradient(99.97deg, rgba(255, 255, 255, 0.12) 4.71%, rgba(255, 255, 255, 0) 32.39%, rgba(255, 255, 255, 0.24) 69.03%, rgba(21, 21, 21, 0.3) 89.38%);
	box-shadow: 0px -3px 4px 0px rgba(0, 0, 0, .2) inset
}

.btn.btn-sm {
	min-height: 4rem;
	padding: .8rem 2rem;
	font-size: 1.8rem
}

.btn.btn-md {
	min-height: 5.6rem;
	padding: 1.3rem 2.2rem;
	font-size: 1.8rem
}

.btn:hover {
	transform: scale(1.1)
}


@media(min-width: 992px) {
	.btn-login {
	transform: translateX(50px);
}
	.btn-login:hover {
		transform: translateX(50px) scale(1.1);
	}
}
@media(max-width: 991px) {
	.btn-login {
	transform: translateY(-50px);
}
	.btn-login:hover {
		transform: translateY(-50px) scale(1.1);
	}
}

@media(min-width: 992px) {
	.language-selector
	{
		position: relative; 
		display: inline-block;
	}
}
@media(max-width: 991px) {
	.language-selector
	{
		position: relative; 
		transform: translateY(-100px)
	}
}

.dropdown {
	position: relative
}

.dropdown .dropdown-btn {
	display: inline-flex;
	align-items: center;
	padding: .4rem;
	font-family: inherit;
	font-weight: 600;
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	background: #2a2a2a;
	border: none;
	border-radius: .4rem
}

.dropdown .dropdown-btn .icon-holder.icon-right {
	margin-left: .4rem;
	transition: .3s
}

.dropdown .dropdown-block {
	position: absolute;
	top: calc(100% + .2rem);
	right: 0;
	width: 100%;
	padding: 1rem;
	border-radius: .3rem;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: .3s;
	background: #2a2a2a;
	border-radius: .4rem;
	text-transform: uppercase;
	z-index: 2
}

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

.dropdown .dropdown-block ul li:not(:last-child) {
	margin-bottom: .5rem
}

.dropdown .dropdown-block ul a {
	text-decoration: none
}

.dropdown.opened .dropdown-block {
	opacity: 1;
	visibility: visible;
	pointer-events: all
}

.dropdown.opened .icon-right {
	transform: rotate(180deg)
}



