@charset "utf-8";
/* CSS Document */
.navigator-mobile-box {
	display: none;
}
.header {
	position: fixed;
	top: 0;
	width: 100%;
	left: 0;
	z-index: 990;
	 transition: transform 0.3s ease, background-color 0.3s ease;
}
.header.active {
	background-color: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(40px);
}
.header.hidden {
    transform: translateY(-100%); /* Ukrywa nagłówek */
}
.header-wrapper {
	padding: 0px 48px;
}
.header-box {
	flex: 1;
	display: flex;
	flex-direction: row;
	position: relative;
	justify-content: space-between;
	height: 90px;
}
.header-navigation, .header-extra {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	height: 100%;
	gap: 40px;
	align-items: center;
	z-index: 999;
}
.navigator-button:hover span, .navigator-button.active span{
	border-bottom-color: var(--primary-color);
}
.navigator-button {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	padding: 5px 0px 4px;
	text-transform: uppercase;
	font-weight: 400;
}
.navigator-button span {
	border-bottom: 1px solid transparent;
}
.header-logo-box {
	position: absolute;
	left: 50%;
	height: 100%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	text-decoration: none;
}
.header-logo-box img {
	height: 100%;
	object-fit: contain;
}
.navigator-button-outline, .element-button {
	height: 50px;
	padding: 0px 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	font-size: 16px;
	cursor: pointer;
	background: transparent;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	text-transform: uppercase;
	text-decoration: none;
	transition: color 0.3s ease;
	overflow: hidden;
}

.navigator-button-outline::before, .element-button::before {
	content: "";
	position: absolute;
	bottom: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	z-index: 0;
	transition: all 0.3s ease;
}

.navigator-button-outline:hover::before, .element-button:hover::before {
	bottom: 0;
}

.navigator-button-outline:hover, .element-button:hover {
	color: #fff;
}

.navigator-button-outline span, .element-button span {
	position: relative;
	z-index: 1;
}
.navigator-mobile {
	display: none;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
/*	border: 1px solid var(--primary-color);*/
	text-decoration: none;
	border: 0px;
	border-radius: 0px;
	outline: none;
	background-color: transparent;
	cursor: pointer;
}
.navigator-mobile i {
	font-size: 30px;
	color: var(--primary-color);
}
/*HERO*/
.hero-section {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
.semi-hero-section {
	display: flex;
	flex-direction: column;
	min-height: 520px;
}
.semi-hero-section img {
	opacity: 0.8;
}
.hero-section img {
	opacity: 0.8;
}
.element-full {
	display: flex;
	flex: 1;
	height: 100%;
	width: 100%;
}
.element-full-padding {
	display: flex;
	flex: 1;
	height: 100%;
	width: 100%;
	flex-direction: column;
	padding: 0px 48px;
}
.hero-element-box-media, .hero-element-box-swiper {
	position: relative;
	width: 50%;
}
.semi-hero-element-box-media {
	position: relative;
	width: 100%;
}
.hero-element-box-media, .semi-hero-element-box-media {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero-box-media-image, .hero-box-media-swiper-image {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.hero-box-media-content {
	z-index: 2;
	max-width: 220px;
	text-align: center;
}
.semi-hero-box-media-content {
	z-index: 2;
}
.hero-box-media-content-title{
	text-align: center;
	color: #fff;
    font-family: six caps;
    font-size: 200px;
	line-height: 200px;
    text-transform: uppercase;
	word-wrap: break-word;
}
.semi-hero-box-media-content-title {
	text-align: center;
	color: #fff;
    font-size: 48px;
	line-height: auto;
    text-transform: uppercase;
}
.swiperHero {
	width: 100%;
	height: 100%;
}

.swiper-slide-hero {
	text-align: center;
	background: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
}

.swiper-slide-hero img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-swiper-box {
	width: 400px;
	padding: 100px;
	background-color: #0E0D0A;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 0px 100px 0px 100px;
}
.hero-swiper-box-media{
	width: 160px;
	height: 160px;
	padding: 10px;
	border: 1px solid var(--primary-color);
}
.hero-swiper-box-media img{
	width: 100%;
	height: 100%;
}
.hero-swiper-box-content {
	display: flex;
	flex-direction: column;
}
.hero-swiper-box-content-title, .element-title-md {
	padding: 20px 0px 10px;
	font-size: 20px;
	color: #fff;
}
.hero-swiper-box-content-desc {
	font-weight: 300;
	color: var(--zinc-300);
	font-size: 16px;
}
.swiper-button-next, .swiper-button-prev {
	color: var(--primary-color);
}
.swiper-pagination-bullet-active {
	background-color: var(--primary-color);
}
/*PAGE*/
.section {
	
}
.section-padding {
	padding: 100px 0px;
}
.section-padding-bottom {
	padding: 0px 0px 100px;
}
.section-padding-top {
	padding: 100px 0px 0px;
}
.element-sm {
	max-width: 1048px;
	width: 100%;
	margin: 0px auto;
	padding: 0px 24px;
	display: flex;
	flex-direction: column;
}
.element-normal {
	max-width: 1448px;
	width: 100%;
	margin: 0px auto;
	padding: 0px 24px;
	display: flex;
	flex-direction: column;
}
.element-showcase-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	row-gap: 20px;
	justify-content: center;
}
.element-showcase-box {
	margin-right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.element-showcase-box span{
	font-size: 3.75rem;
    line-height: 4.25rem;
	font-family: "Cormorant", serif;
}
.element-showcase-box img {
	width: 142.22px;
	height: 80px;
	object-fit: cover;
	border-radius: 999px;
}
.element-header .element-desc, .element-header .element-extra {
	padding-top: 20px;
	font-weight: 300;
}
.element-header {
	display: flex;
	flex-direction: column;
}
.element-header-center {
	text-align: center;
	justify-content: center;
}
.element-title {
	font-size: 2.25rem;
    line-height: 2.5rem;
	font-weight: 400;
}
.element-extra, .element-desc {
	color: var(--zinc-300);
}
/*PRODUCTS*/
.lg-product-wrapper {
	padding-top: 40px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 40px;
}
.sm-product-wrapper {
	padding-top: 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-row-gap: 40px;
	grid-column-gap: 80px;
}
.md-product-wrapper {
	padding-top: 40px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-row-gap: 40px;
	grid-column-gap: 80px;
}
.lg-product-box {
	display: flex;
	flex-direction: column;
	padding: 40px;
	width: 100%;
	height: 100%;
	border: 1px solid var(--primary-color);
}
.sm-product-box {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	width: 100%;
	gap: 40px;
}
.md-product-box {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	width: 100%;
	gap: 40px;
	align-items: center;
}
.lg-product-header {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 20px;
}
.sm-product-header {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	padding: 10px 0px;
}
.sm-product-price{
    white-space: nowrap;
    padding-left: 20px;
} 
.sm-product-media-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: var(--zinc-900);
}
.sm-product-media-icon i {
    display: flex;
    font-size: 30px;
    color: var(--primary-color);
}
.md-product-header {
	display: flex;
	flex-direction: column;
	padding: 10px 0px;
	gap: 10px;
}
.md-product-content .sm-product-price{
	padding-top: 10px;
}
.lg-product-title, .lg-product-price {
	font-size: 16px;
}
.vertical-product-title {
	font-size: 1.875rem;
}
.vertical-product-desc {
	font-size: 1.125rem;
}
.vertical-product-price {
	font-size: 1.25rem;
}
.vertical-product-desc-wrapper {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.vertical-product-header {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-bottom: 20px;
}
.lg-product-price {
	color: var(--zinc-300);
}
.md-product-media-wrapper {
	max-width: 280px;
	width: 100%;
}
.lg-product-media {
	width: 100%;
	padding-bottom: 100%;
	border-radius: 0px 25px 0px 25px;
	position: relative;
	overflow: hidden;
}
.sm-product-media {
	width: 100px;
	height: 100px;
	border-radius: 0px 25px 0px 20px;
	position: relative;
    display: flex;
	overflow: hidden;
    justify-content: center;
    align-items: center;
}
.vertical-product-media {
	width: 100%;
	padding-bottom: 141.4%;
	border-radius: 0px 0px 0px 0px;
	position: relative;
	overflow: hidden;
}
.vertical-product-media.right {
	border-radius: 0px 100px 0px 0px;
}
.vertical-product-content {
	max-width: 500px;
}
.lg-product-media img {
    object-fit: contain!important;
}
.lg-product-media img, .sm-product-media img, .vertical-product-media img {
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
	object-fit: cover;
}
.sm-product-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.lg-product-desc {
	padding-top: 20px;
	text-align: center;
	color: var(--zinc-300);
}
.md-product-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.vertical-product-wrapper {
	padding-top: 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-row-gap: 40px;
	grid-column-gap: 80px;
}
.vertical-product-media-wrapper {
	max-width: 500px;
}
.vertical-product-box {
	padding-top: 100px;
}
.main-baner-wrapper {
	padding: 10px;
	width: 100%;
	border: 1px solid var(--primary-color);
}
.main-baner {
	position: relative;
	width: 100%;
	padding-bottom: 37.813%;
}
.main-baner img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.element-content-info {
	gap: 40px;
}
.content-info-wrapper {
	min-height: 630px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}
.content-info-box {
	width: 100%;
	padding-left: 10%;
	display: flex;
	align-items: center;
	border: 1px solid var(--primary-color);
}
.content-info-box-center {
	justify-content: center;
	padding-left: 0px;
}
.content-media-box {
	width: 100%;
}
.content-media-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.content-info {
	max-width: 500px;
	width: 100%;
	flex-direction: column;
	display: flex;
}
.content-info-center {
	max-width: 400px;
	width: 100%;
	flex-direction: column;
	display: flex;
	align-items: center;
	text-align: center;
}
.content-info .element-button {
	margin-right: auto;
}
.content-info .element-title, .content-info p, .content-info-center .element-title,.content-info-center p{
	padding-bottom: 20px;
}
.content-info .element-link, .content-info-center .element-link {
	text-decoration: none;
}
.content-info .element-link:hover, .content-info-center .element-link:hover {
	color: #fff;
}
.content-info .element-title, .content-info-center .element-title-md {
	text-transform: uppercase;
}
.content-info-center .element-button {
	margin-top: 20px;
}
.content-media-box-left {
	border-top-right-radius: 100px;
	overflow: hidden;
}
.content-info-center-media {
	width: 250px;
	height: 320px;
	position: relative;
	border-radius: 999px;
	overflow: hidden;
}
.content-info-center-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonials-wrapper {
	min-height: 300px;
	width: 100%;
	margin: 0 auto;
	display: flex;
}
.testimonialsSwiper {
	flex: 1;
}
.swiper-slide-testimonials {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.testimonials-box {
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	display: flex;
	flex-direction: column;
}
.swiper-wrapper-testimonials {
	width: 100%;
}
.testimonials-desc {
	padding-bottom: 20px;
	font-size: 20px;
	width: 100%;
	font-weight: 300;
}
.testimonials-extra {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: nowrap;
}
.testimonials-extra span {
	text-transform: uppercase;
	font-weight: 300;
	font-size: 14px;
}
.testimonials-extra span:not(:last-child) {
	margin-right: 10px;
}
.testimonials-extra span::before {
	content: "/";
	margin-right: 10px;
	color: var(--primary-color);
}
.testimonials-title {
	color: var(--primary-color);
	text-transform: uppercase;
}
.swiper-pagination-testimonials {
	padding-top: 40px;
}
.element-gallery-wrapper-full, .element-gallery-wrapper-half {
	width: 100%;
	height: 100%;
	display: flex;
}
.element-gallery-wrapper-full img, .element-gallery-wrapper-half img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.element-content-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}
.element-gallery-wrapper-half {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
/*FOOTER*/
.footer-wrapper {
	display: flex;
	flex-direction: column;
}
.footer-wrapper-top {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	padding: 100px 0px;
}
.footer-box-top {
	padding: 30px;
	max-width: 33.3333%;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	border: 1px solid transparent;
}
.footer-box-top:not(:first-child) {
	border-left-color: #fff;
}
.footer-box-top h4 {
	padding-bottom: 20px;
	font-weight: 400;
}
.footer-box-extra {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}
.footer-box-extra a, .footer-box-extra span {
	font-weight: 300;
	color: var(--zinc-300);
	text-decoration: none;
}
.footer-box-extra a:hover {
	color: #fff;
}
.footer-wrapper-bottom {
	padding: 30px 0px; 
	display: flex;
	width: 100%;
	flex-direction: row;
	border-top: 1px solid #fff;
	justify-content: space-between;
}
.footer-wrapper-bottom-left {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
}
.footer-wrapper-bottom-right {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-end;
}
.footer-wrapper-bottom-left span, .footer-wrapper-bottom-left a, .footer-wrapper-bottom-right span, .footer-wrapper-bottom-right a {
	font-size: 14px;
	color: var(--zinc-300);
	text-decoration: none;
	text-transform: uppercase;
}
.footer-wrapper-bottom-left a:hover,.footer-wrapper-bottom-right a:hover {
	color: #fff;
}
/*MENU*/
.menu-wrapper {
	max-width: 1448px;
	width: 100%;
	margin: 0px auto;
	padding: 0px 24px;
	display: flex;
	flex-direction: row;
}
.menu-navigator {
	display: flex;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(40px);
	padding: 10px;
	border-bottom: 1px solid #ccc;
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: top 0.3s ease, background-color 0.3s ease;
	z-index: 6;
}

.menu-navigator.active {
	top: 90px;
}
.categories {
	display: flex;
	overflow-x: hidden;
	scroll-behavior: smooth;
	flex: 1;
}

.category {
	padding: 8px 20px;
	font-size: 14px;
	text-decoration: none;
	white-space: nowrap;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	text-transform: uppercase;
}

.category.active {
	border-bottom-color: var(--primary-color);
	color: var(--primary-color);
}

.scroll-arrow {
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
	padding: 5px;
	align-items: center;
	display: flex;
}

.menu-section {
    min-height: 70vh;
}
/*CONTACT*/
.contact-info-wrapper {
	display: grid;
	grid-template-columns: 4fr 5fr;
	gap: 60px;
}
.contact-media-box {
	width: 100%;
	padding-bottom: 
}
.contact-media-box {
	width: 100%;
	padding-bottom: 75%;
	border-radius: 0px 0px 0px 0px;
	position: relative;
	overflow: hidden;
}
.contact-media-box img, .alt-contact-media-box img, .bon-contact-media-box img{
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
	object-fit: cover;
}
.contact-info {
	padding-top: 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-row-gap: 40px;
	column-gap: 120px;
}
.contact-info-content h4{
	padding-bottom: 16px;
	text-transform: uppercase;
	font-weight: 400;
}
.contact-info-content h4::before {
	content: "//";
	margin-right: 6px;
	color: var(--primary-color);
}
.contact-info-content {
	display: flex;
	flex-direction: column;
	font-weight: 300;
	gap: 4px;
}
.contact-alt-info-wrapper {
	display: grid;
	grid-template-columns: 4fr 5fr;
	gap: 60px;
}
.alt-contact-media-box {
	width: 100%;
	padding-bottom: 133.33%;
	border-radius: 0px 0px 0px 0px;
	position: relative;
	overflow: hidden;
	border-top-right-radius: 100px;
}
.contact-delivery-wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.contact-delivery-bottom, .contact-delivery-header {
	height: 50%;
	width: 100%;
}
.contact-delivery-header {
	padding-left: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	max-width: 600px;
}
.contact-delivery-header h2{
	padding-bottom: 20px;
	font-size: 1.875rem;
    line-height: 2rem;
    font-weight: 400;
	text-transform: uppercase;
}
.contact-delivery-header p {
	color: var(--zinc-300);
}
.contact-delivery-header p::before {
	content: "//";
	margin-right: 6px;
	color: var(--primary-color);
}
.contact-bon-info-wrapper {
	display: grid;
	grid-template-columns: 3fr 6fr;
	gap: 60px;
}
.bon-contact-media-box {
	width: 100%;
	padding-bottom: 50%;;
	border-radius: 0px 0px 0px 0px;
	position: relative;
	overflow: hidden;
}
.contact-bon-wrapper .contact-delivery-header{
	height: 100%;
}
.row-3-info-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 120px;
}
.row-3-box-body h4{
	padding: 20px 0px;
	font-weight: 500;
	text-transform: uppercase;
}
.row-3-box-body p {
	font-weight: 300;
}
.instagram-row-wrapper {
	padding-top: 40px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: 0px;
}
.instagram-row-box:nth-last-child(odd) {
	transform: rotate(-5deg) translateY(48px);
}
.instagram-image {
	width: 100%;
	padding-bottom: 100%;
	border-radius: 0px 0px 0px 0px;
	position: relative;
	overflow: hidden;
}
.instagram-image img, .gallery-image img{
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
	object-fit: cover;
}
.instagram-row-box-mobile {
	display: none;
}
/*GALLERY*/
.gallery-box {
	position: relative;
}
.gallery-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
}
.gallery-image img {
	transition: all 0.3s;
}
.gallery-box:hover .gallery-image img{
	transform: scale(1.1);
}
.gallery-image {
	width: 100%;
	padding-bottom: 133.33%;
	position: relative;
	overflow: hidden;
}
.gallery-text-wrapper {
    position: absolute;
	z-index: 10;
    bottom: 0;
    left: 0px;
    width: 100%;
    padding: 0px 20px 20px;
}
.gallery-text-box {
    display: flex;
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 0px;
    overflow: hidden;
    transition: max-width 0.5s ease-in;
    backdrop-filter: blur(10px);
}
.gallery-text-box-md {
    padding: 20px;
}
.gallery-text-box-md h3{
    white-space: nowrap;
}
.gallery-box:hover .gallery-text-box{
    max-width: 500px;
}
.lightbox {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh;
    background: rgba(0, 0, 0, 0.9); 
    display: flex; 
    align-items: center; 
    justify-content: center;
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.3s ease;
    z-index: 9999;
}
.lightbox.active { 
    opacity: 1; 
    visibility: visible; 
    display: flex;
    flex-direction: column;
    padding: 0px 60px;
}
.lightbox img { 
    max-width: 100%;
    max-height: 80vh; 
}
.lightbox .controls { 
    position: absolute; 
    top: 50%; 
    width: 100%; 
    display: flex; 
    justify-content: space-between; 
    padding: 0px 20px;
}
.lightbox .controls button {
    background: none; 
    border: none; 
    color: white; 
    font-size: 2rem; 
    cursor: pointer;
}
.lightbox .counter {
    padding-top: 10px;
    color: white; 
    font-size: 0.8rem; 
}
.lightbox .close {
    position: absolute; 
    top: 20px; 
    right: 20px; 
    color: white; 
    font-size: 2rem;
    cursor: pointer; background: none; border: none;
}
.special-ofert-baner-box {
    display: flex;
    flex-direction: row;
}
.special-ofert-baner-box-img {
    width: 50%;
    display: flex;
    justify-content: center;
    padding-right: 20px;
}
.special-ofert-baner-box-img-wrapper {
    max-height: 800px;
    max-width: 600px;
    height: 100%;
    display: flex;
    padding: 20px;
    flex-shrink: 1;
    border: 1px solid var(--primary-color);
}
.special-ofert-baner-box-img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.special-ofert-baner-box-title h3 {
    
}
.special-ofert-baner-box-price span{
    font-size: 20px;
}
.special-ofert-baner-box-info {
    padding-left: 20px;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 600px;
    justify-content: center;
}
.select-lang-wrapper {
    display: flex;
    flex-direction: row;
}
.select-lang-wrapper a{
    text-decoration: none;
    padding: 2px 10px;
}
.select-lang-wrapper a:hover{
    background-color: var(--primary-color);
}
.select-lang-wrapper a:not(:last-child){
    border-right: 1px solid var(--primary-color);
}