/* ==============================================
     ROOT
============================================== */

:root {
	--white: #ffffff;
	--lightgrey: #F8F8F8;
	--darkgrey: #1E1F24;
  --medgrey: #494A56;
	--primary: 'IBM Plex Sans Hebrew', sans-serif;
	--secondary: 'Grande', serif!important;
  --extrafont: 'monumentextended', sans-serif;
	--paragraph: 'IBM Plex Sans Hebrew', sans-serif;
	--underline-motion: fadein 2.5s 1s cubic-bezier(.59, 0, 0, .97);
	--cursor-timing: all 0.4s cubic-bezier(0.52, 0.02, 0, 0.99);
	--work-hover-motion: 1s cubic-bezier(.36, 0, 0, .99);
	--grid-gap: 3.819vw;
	--cta-motion-easing: cubic-bezier(.3, 0, 0, .99);
	--menu-lines-timing: 0.4s ease;
  --global-width-desktop: 92.3%;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;

}


.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--darkgrey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  font-size: 5vw;
  font-family: var(--secondary);
  transition: opacity 0.7s cubic-bezier(.77,0,.18,1);
}

.loading-line {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #fff;
  z-index: 10000;
}


html,
body {
  background: var(--darkgrey);
  visibility: hidden;
}


body {
	opacity: 0;
	visibility: hidden;
	animation: fadeIn 0.3s ease forwards 0.3s;
}

@keyframes fadeIn {
	to {
		opacity: 1;
		visibility: visible;
	}
}


.red {
	color: var(--red);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999999999999999;
  background: var(--darkgrey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  font-size: 5vw;
  font-family: var(--secondary);
 
}

.loader-counter {
  opacity:0;
  visibility: hidden;
  padding:0.3vw;
}


@media (max-width: 650px) {
  .page-loader {
    font-size: 12vw;
  }
}

/* ==============================================
       Hide Scrollbar
============================================== */

body::-webkit-scrollbar {
	display: none;
}

/* Chrome, Safari, Opera */

body {
	-ms-overflow-style: none;
}

/* IE & Edge */

html {
	scrollbar-width: none;
}

/* Firefox */

/* ==============================================
       Page Styles
============================================== */

html,
body {
	-webkit-font-smoothing: antialiased;
	font-size: 1vw;
	line-height: 1;
	font-family: var(--primary);
	background: var(--lightgrey);
	color: var(--darkgrey);
	cursor: default;
  
	user-select: none;
	-webkit-user-select: none;
  
	transition: background-color 0.3s ease, color 0.3s ease;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	scroll-behavior: auto;
	overflow-x: hidden;
  
	/*height: auto;*/
	min-height: 100svh;
}


html {
	touch-action: manipulation;
}





input,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 16px;
	/* Ensures the text size is not small, preventing zooming */
}

#page-wrapper {
	height: auto;
	min-height: 100%;
}

/* ==============================================
       CSS Reset
============================================== */

*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

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

.w-inline-block {
	all: unset;
}

svg {
	max-width: none;
	height: auto;
	box-sizing: border-box;
}

audio,
iframe,
img,
svg,
video,
picture,
figure {
	vertical-align: middle;
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	user-drag: none;
}


span {
	line-height: unset;
	padding: 0;
	margin: 0;
}

:focus {
	outline: none;
}

strong {
	display: inline-flex;
	font-weight: inherit;
}

.hide {
	display: none;
}

.divs-hide {
	display: none;
}

.w-webflow-badge {
	display: none!important;
}



/* ==============================================
    Page Transition Logic
 ============================================== */

.page-overlay-first {
	width: 100%;
	height: 100.5svh;
	background: var(--white);
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 9999999;
	transform-origin: bottom;
	display: none;
}

.page-overlay-second {
	width: 100%;
	height: 100vh;
	background: var(--darkgrey);
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
	z-index: 9;
}



.page-overlay-video {
	width: 100%;
	height: 100vh;
	background: var(--white);
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
	z-index: 999;
}

/* ==============================================
       Cursor Style
============================================== */

#cursor {
	position: fixed;
	z-index: 99999999999999 !important;
	left: 0;
	top: 0;
	border-radius: 100%;
	pointer-events: none;
	will-change: transform;
	opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
	.cursor__circle {
		width: 5vw;
		height: 5vw;
		border-radius: 100%;
		background: rgba(30, 31, 36, 0.3);
		color: var(--white);
		display: flex;
		align-items: center;
		justify-content: center;
		line-height: 1;
		text-align: center;
		position: relative;
		transform: scale(0);
		transition: transform 0.3s ease, background-color 0.3s ease;
    font-family:var(--extrafont);

    backdrop-filter: blur(20px);
	}
	.cursor__circle::before {
		content: "";
		font-size: 0.65vw;
    letter-spacing:0.03;
		color: var(--white);
		pointer-events: none;
		text-align: center;
		opacity: 0;
		transition: opacity 0.3s ease;
	}
	#cursor.scroll .cursor__circle {
		transform: scale(1);
	}
	#cursor.scroll .cursor__circle::before {
		content: "Scroll";
		opacity: 1;
	}
	#cursor.slide .cursor__circle {
		transform: scale(1);
	}
	#cursor.slide .cursor__circle::before {
		content: "Slide";
		opacity: 1;
	}
	#cursor.enter .cursor__circle {
		transform: scale(1);
	}
	#cursor.enter .cursor__circle::before {
		content: "Enter";
		opacity: 1;
	}
        #cursor.slide-gallery .cursor__circle {
            transform: scale(1);
        }
        #cursor.slide-gallery .cursor__circle::before {
            content: "Scroll";
            opacity: 1;
        }

	#cursor.change .cursor__circle::before {
		content: none !important;
		opacity: 0;
	}
	#cursor.hiding .cursor__circle {
		opacity: 0 !important;
	}
}

@media (max-width: 650px) {
	#cursor {
		display: none;
	}
}
/* ==============================================
       Reset Styles
============================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	font-weight: normal;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
  direction: rtl;
}

img {
	max-width: 100%;
	height: auto;
	border: none;
	margin: 0;
	padding: 0;
}

a,
button {
	text-decoration: none!important;
	color: inherit;
	background: none;
	margin: 0;
	padding: 0;
	border: none;
	cursor: pointer!important;
}

a:focus,
a:active {
	outline: none;
}

.btn {
	text-decoration: underline;
	text-underline-offset: 0.8vw;
}

/* ==============================================
     Fonts
============================================== */



@font-face {
  font-family: 'Grande';
  src: url('https://uploads-ssl.webflow.com/656f349790ab66e73956b52d/656f349790ab66e73956b549_grande%20italic.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ==============================================
       Typogoraphy
============================================== */

h1, .home-container .content .number {
  font-family: var(--secondary);
}

h2,
h3,
h4,
h5,
h6,
.menu-item,
label{
	font-family: var(--primary);
}

h1 {
	font-size: 12vw;
	line-height: 0.84;
	letter-spacing: -0.4vw;
  padding-right: 1.5vw;
}

h2 {
	font-size: 9vw;
	line-height: 1;
	letter-spacing: -0.15vw;
	margin-bottom: -0.6vw;
}

h3 {
	font-size: 4.2vw;
	line-height: 0.95;
  letter-spacing:-0.2vw;
}

h4 {
	font-size: 1.5vw;
	line-height: 1.3;
    letter-spacing:-0.02vw;
    font-weight:500;
}

h5 {
	font-size: 1.35vw;
	line-height: 1.39;
}

h6 {
	font-size: 0.868vw;
	line-height: 1.73;
}

p, label {
	font-size: 1.1vw;
	line-height: 1.7;
  letter-spacing: -0.02vw;
	font-family: var(--paragraph);
  direction: rtl;
  font-weight:normal;
  margin:unset!important;
  padding:unset!important;
  color: var(--medgrey)!important;
}

p {
   font-size: 1.2vw; 
}

.indicator {
	font-size: 1.042vw;
	font-family: var(--secondary);
	text-transform: uppercase;
}

.work-tag {
	font-size: 0.703vw;
	text-transform: uppercase;
	justify-self: start;
	width: auto;
	padding: 0.5vw;
	border: 1px solid var(--bordo);
}

.work-name {
	font-size: 1.447vw;
	text-transform: uppercase;
}

.home-properties p {
  font-size: 1.1vw;
}

.link-box {
  align-self: center;
  margin: auto;
}

.home-about .text-link {
  font-size: 1.3vw;
  letter-spacing:unset;
}

.home-about .text-link:after {
  padding-bottom: 0.4vw;
}

.text-link {
	font-size: 2vw;
  letter-spacing:-0.04vw;
	text-transform: uppercase;
	width: max-content!important;
  font-family: var(--primary);
  font-weight:500;
  display: inline-block;
  margin: auto;
}

.text-link:after {
	display: block;
	content: "";
	border-bottom: solid 0.099vw var(--darkgrey)!important;
	transform: scaleX(1);
	transition: transform 650ms var(--cta-motion-easing);
	transform-origin: 100% 50%;
	padding-bottom: 0.7vw;
	opacity: 0;
	animation: fadein 2.5s 0s var(--cta-motion-easing) forwards;
}

.text-link:hover:after {
	transform: scaleX(0);
	transform-origin: 0% 0%;
}

@keyframes fadein {
	0% {
		opacity: 1;
		clip-path: inset(0 100% 0 0%);
	}
	50% {
		clip-path: inset(0 100% 0 0%);
	}
	100% {
		opacity: 1;
		clip-path: inset(0 0 0 0);
	}
}

.cta-buttons {
	font-size: 0.868vw;
}

.footer-sitemap {
	font-size: 1.16vw;
}

.footer-legal {
	font-size: 0.752vw;
}

.text-link:after {
  
	display: block;
	content: "";
	border-bottom: solid 0.099vw var(--bordo);
	transform: scaleX(1);
	transition: transform 650ms var(--cta-motion-easing);
	transform-origin: 100% 50%;
	padding-bottom: 0.7vw;
	opacity: 0;
	animation: fadein 2.5s 0s var(--cta-motion-easing) forwards;
}

.text-link:hover:after {
	transform: scaleX(0);
	transform-origin: 0% 0%;
}

@keyframes fadein {
	0% {
		opacity: 1;
		clip-path: inset(0 100% 0 0%);
	}
	50% {
		clip-path: inset(0 100% 0 0%);
	}
	100% {
		opacity: 1;
		clip-path: inset(0 0 0 0);
	}
}

@media (max-width: 650px) {
  
  h1 {
    font-size: 20vw;
    line-height: 0.84;
    letter-spacing: -0.4vw;

    margin-left:-1.5vw;
  }
  h2 {
    font-size: 14.325vw;
    letter-spacing: -0.8vw;
  }
  
  h3 {
    font-size: 10vw;
    letter-spacing: -0.3vw;
  }
  
	h4 {
    font-size: 5vw;
    letter-spacing: -0.1vw;
	}
  
  h5 {
    font-size: 4.5vw;
    line-height: 1.39;
  }
  
  h6 {
      font-size: 2.7vw;
      line-height: 1.73;
  }
  
  p, label {
    font-size: 4vw;
  }
  
  .home-about .text-link {
    font-size: 4vw;
  }
  
  .home-about .text-link:after {
    padding-bottom: 1.5vw;
  }
  
  .home-properties p {
    font-size: 4vw;
  }
  
  .home-properties .text-link {
        font-size: 6.2vw;
  }
  .indicator {
    font-size: 3.5vw;
  }
  
  .home-featured .indicator {
    margin-bottom: 5vw;
  }
  
  .work-tag {
    margin-top: 3vw;
    font-size: 2.5vw;
    padding: 1vw;
    border: 1px solid var(--bordo);
  }

  .work-name {
    font-size: 5vw;
  }

  .text-link {
    font-size: 4.581vw;
  }
  
  .text-link:after {
    padding-bottom: 3vw;
    border-bottom: solid 0.3vw var(--bordo);
  }
  
  .footer-menu a {
    font-size: 6.245vw;
    height: 6.245vw;
  }
  
  .footer-menu a span {
    height: 6.245vw;
    text-shadow: 0 6.245vw 0 var(--white);
  }

}

/* ==============================================
       Grid Settings
============================================== */

.grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-gap: 3.819vw;
	padding: 3.819vw;
	margin: 0 auto;
}

.grid-overlay {
	position: fixed;
	top: 3.819vw;
	left: 3.819vw;
	width: calc(100% - 7.638vw);
	height: calc(100% - 7.638vw);
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-gap: 3.819vw;
	z-index: 999999999999999;
	pointer-events: none;
}

.grid-overlay div {
	background: rgba(255, 0, 0, 0.1);
}

@media (max-width: 650px) {

    .grid:not(.hero) {
      display: flex;
      flex-direction:column;
      padding: 8vw;
      width:100%;
    }
    .hero .grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      grid-gap: 8vw; 
      padding: 8vw;
      width: calc(100% - 16vw); 
  }
  
	.grid-overlay {
		position: fixed;
		top: 8vw;
		left: 8vw;
		width: calc(100% - 16vw);
		height: calc(100% - 16vw);
		display: grid;
		grid-template-columns: repeat(6, minmax(0, 1fr));
		grid-gap: 8vw;
		overflow: hidden;
		white-space: nowrap;
	}
	.grid-overlay div {
		height: 100vh;
	}
}

section {
  position:relative;
  height: auto;
}

section:not(.hero):not(:has(.footer)) {
  padding-top: 15vw;
}

@media (max-width: 650px) {

  section:not(.hero):not(:has(.footer)) {
    padding-top: 25vw;
    padding-right: 4.5vw;
    padding-left: 4.5vw;
  }

  section:has(.sticky-container), .home section:has(.home-properties) {
    padding:0!important;
  }
}

/* ==============================================
       Header
============================================== */

.header {
	width: 100%;
	position: fixed;
	top: 0;
	height: 1vw;
	z-index: 99999!important;
	pointer-events: unset;

}

.header .grid {
  padding-bottom:0;
}

.header .logo {
	grid-column: 1 / 3;
	overflow: hidden;
	position: fixed;
	z-index: 99;
}

.header .grid {
	width: 100%;
}

.header .menu, .menu {
  grid-column: 5 / 12;
  display: flex;
  align-items: end;
  justify-content: start;
  font-family: var(--primary);
  grid-gap: 2vw;
  overflow: hidden;
  font-size: 1.1vw;
  direction: rtl;
  
}

.header .menu a {
	height: 1.3vw;
	width: fit-content;
	overflow: hidden;
}

.header .menu a span {
	height: 1.3vw;
	text-shadow: 0 1.3vw 0 var(--darkgrey);
	display: inline-block;
	transition: transform 0.5s var(--cta-motion-easing);
}

.header .menu a:hover span {
	transform: translateY(-100%);
}


.header .logo img {
	width: 11.863vw;
	top: -1vw;
	left: 0;
}

@media (max-width: 650px) {
  
	.header .logo {
		grid-column: 1 / 3;
	}
  
  .header .logo img {
    width: 40vw;
    left: 0;
  }
  
  .header.scroll {
    top: -20vw;
    transition: top 0.8s cubic-bezier(.22, .19, 0, .99);
  }
  
  .header .menu {
    display: none;
  }
  
}


/* ==============================================
         Mobile Menu
  ============================================== */

.menu-toggle {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 12vw;
	height: 8vw;
	background: transparent;
	top: 0.3vw;
	right: -0.5vw;
	border: none;
	cursor: pointer;
	z-index: 9999999999999999!important;
  overflow:hidden;
}

.menu-bar {
	position: absolute;
	width: 3.356vw;
	height: 0.13vw;
	background: var(--darkgrey);
}


.menu-bar:nth-child(1) {
	top: calc(50% - 0.3vw);
}

.menu-bar:nth-child(2) {
	top: calc(50% + 0.3vw);
}

.mega-menu {
  position: fixed; /* <-- This is crucial */
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: var(--darkgrey);
  z-index: 99991;
  color: var(--white);
  display:none;
}

.mega-menu .menu-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  direction: rtl;
  padding: 4vw;
  height: 100vh;
  width: 100%;
  grid-gap: 8vw;
}

.mega-menu div {
  /*flex: 1;*/
  width: 100%;
}


.mega-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  	height: 100svh;
  background: #1E1F24;
  opacity: 0;
  z-index: 1;
  pointer-events: none; /* Always non-interactive */
}

.mega-menu .mega-menu-links {
  display: flex;
  flex-direction:column;
  margin-left:0vw;
  align-items:center;
  justify-content:end;
  grid-gap: 0vw;
  font-size: 8.309vw;
  letter-spacing: -0.1vw;
  position: relative;
  right: 1.8vw;
  text-align: left;
  width: 50%;
  counter-reset: h2-counter;
  font-family: var(--secondary);
}

.mega-menu-links a {
	height: 8.3vw;
	overflow: hidden;
  width:fit-content;
}

.mega-menu-links a span {
	height: 8.3vw;
  padding-right:3vw;
	text-shadow: 0 8.3vw 0 #626676;
	display: inline-block;
  transform: translateX(5%);
	transition: transform 0.7s cubic-bezier(.25,0,0,.99);
}

.mega-menu-links a:hover span {
	transform: translateY(-100%) translateX(5%);
}


.mega-menu .mega-menu-image {
  width: 50vw;
  height: 100%;
  padding: 0;
  overflow: hidden;
}

.mega-menu .mega-menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover!important;
  object-position: center!important;
}

.mega-menu-image {
  position: relative;
}

.mega-menu-image img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none; /* so images don't block link hovers */
}

@media (max-width: 650px) {
  
  .menu-toggle {
    top: 5.3vw;
    right: 8vw;  
  }
  
  .menu-bar {
    width: 13vw;
    height: 0.45vw;
  }
  
  .menu-bar:nth-child(1) {
    top: calc(50% - 1.5vw)!important;
  }
  
  .menu-bar:nth-child(2) {
    top: calc(50% + 1.5vw);
  }
  
  .symbol-menu {
    height:7vw;
    width: 7vw;
  }
  
  .infinite-menu li {
    font-size: 10vw;
    padding-top: 4vw;
    height: 19vw;
  }
  
  .menu-wrapper {
    width: 90vw;
  }
  
  .menu-link {
    grid-gap:13vw;
  }
  
  .mega-menu .menu-content {
    flex-direction: column;
    padding: 8vw;
  }
  
  .mega-menu .mega-menu-links {
    font-size: 19vw;
    grid-gap: 0vw;
    margin-top: 15vw;

    margin-left:5vw;
    grid-gap: 0vw;
    width: 100%;
  }

  
  .mega-menu .mega-menu-image {
    width: 84vw;
    	height: 30svh;
  }
  
  .mega-menu-links a {
    height: 20vw;
    overflow: hidden;
  }

  .mega-menu-links a span {
    height: 20vw;
    padding-right:6vw;
    text-shadow: 0 20vw 0 #626676;
    display: inline-block;
    transform: translateX(5%);
    transition: transform 0.7s cubic-bezier(.25,0,0,.99);
  }
  
  .mega-menu-links a::before {
    font-size: 2vw;
  }
}




/* ==============================================
       Home Page
============================================== */



.hero .grid {
	position: relative;
	height: 100svh;
	width: 100%;
	align-items: center;
	justify-content: center;
	align-items: end;
	position: relative;
}

.hero .hero-headline {
	grid-column: 1 / 13;
  max-width: 80%;
  margin: auto;
	display: grid;
	grid-gap: 1.3vw;
  text-align :center;
  
}

.hero .grid .scroll {
	position: absolute;
	bottom: 3.819vw;
	left: 3.819vw;
}

.scroll-indicator {
  width: 0.13vw;
  height: 5vw;
  background-color: #ccc;
  position: relative;
  overflow: hidden;
}

.line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  transform: translateY(-100%);
}

.hero .grid .scroll img {
	width: 2.389vw;
}


.hero .video-visual {
	position: absolute;
	bottom: 0%;
	left: 50%;
	transform: translate(-50%, -0%);
	width: 35svh;
	height: 38svh;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}


.hero .clipping-video {
	height: 100%;
  position:relative;
}


.hero .video-visual img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
}

.vimeo-bg {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.vimeo-thumbnail {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.video-placeholder img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 650px) {
  
  .hero .video-visual {
    	width: 32svh;
	height: 32svh;
  }

  .hero .hero-headline  h4 {
    margin-bottom:-1vw;
  }
  .hero .grid .scroll {
    bottom: 8vw;
    right: 8vw;
  }
  .hero .grid .scroll img {
    width: 6vw;
  }
}

.center {
	display: grid;
	grid-gap: 3vw;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.heading-space {
  margin-bottom:10vw;
}

.home-about h3 {
  width: 47vw;
  margin: auto;
}

.home-about h4 {
  width: 36vw;
  margin: auto;
}

.home-about p {
	justify-self: center;
  width: 38vw;
  margin: auto;
}

.home-about .logo {
  width: 16.319vw;
  margin: auto;
}

.sticky-container {
  display: flex;
  flex-direction: column;
  /*grid-gap: 8vw;*/
  position: relative;
  z-index: 0;
  margin: auto!important;
}

.home-container::after {
  content: "";
  position: fixed;
  top:0;
  left:0;
  min-width: 100vw;
  min-height: 100vh;
  background-color: var(--darkgrey);
  opacity: var(--after-opacity, 0);
}

.home-container {
  display: flex;
  margin: auto;
  grid-gap: 5vw;
  padding: 3.819vw!important;
  width: 100vw;
  min-height: 100svh;
  justify-content: center;
  align-items:center;
  background-color: var(--lightgrey);
  position: relative;
}

.home-container .image {
  width: 44.2vw;
  height: 84vh;
  min-height: 100%;
  overflow:hidden;
}

.image img {
  object-position: center center;
  object-fit: cover!important;
  min-width: 100%;
  min-height: 100%;
  margin: auto;
}

.home-container .content {
  display: grid;
  width: 50%;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: auto;
  grid-gap: 4vw;
  max-width: 25vw;
}

.home-container .content .icon {
  width: 4.803vw;
  margin: auto;
}

.home-container .content .number {
  font-size: 5vw;
}

.home-container .image img{
  width: 100%;
  height: 100%;
  object-fit: cover!important;
}

.home-featured .featured-projects {
	grid-column: 1 / 13;
	display: grid;
	grid-gap: 6vw;
}

.home-properties {
  top: 0vw!important;
  left: 0vw!important;
  width: var(--global-width-desktop);
  background-color: var(--lightgrey);
  z-index: 2;
  margin:auto;
  display: flex;
  flex-direction: column;
  grid-gap: 8vw;
  
  & h1 {
    text-align: center;
    max-width: 90%;
    margin: auto;
  }
}

.home .home-properties {
    min-width: 100vw;
    padding: 3.819vw;
}

.home-properties h1 {
  padding-top: 8vw;
}

.home-properties-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 3.819vw;
  grid-row-gap: 8vw;
	justify-content: space-between;
}

.home-properties-grid .property {
  display: flex;
  flex-direction: column;
  text-align: right;
  grid-gap: 1.3vw;
  direction: rtl;
}

.home-properties-grid .property .image {
  overflow: hidden;
  margin-bottom: 1.2vw;
  cursor:pointer;
  height: 25vw;
}

.filter {
  border: 0.08vw solid var(--darkgrey);
  padding: 0.05vw 0.5vw;
  border-radius: 3vw;
  width:max-content;
}

.home-properties-grid h5 {
  font-weight: 500;
}

.home-properties .link-box {
  margin:7vw 0vw;
}

.home-properties-grid .name {
  font-family: var(--extrafont);
  text-transform: uppercase;
}


.bottom-cta .center {
  max-width: 49.421vw;
  margin: auto;
  display: grid;
  grid-gap: 6vw;
  margin-bottom: 10vw;
}


.button-link {
  font-family: var(--primary);
  position: relative;
  display: flex;
  top: 0;
  margin: auto;
  text-align: center;
  border: 0.1vw solid var(--darkgrey);
  padding: 1.5vw 3vw;
  font-size: 1.5vw;
  background: transparent;
  overflow: hidden;
  color: var(--darkgrey);
  transition: color 0.5s ease;
  z-index: 1;
}

.button-link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100%;
  background: var(--darkgrey);
  z-index: -1;
  transition: left 0.7s cubic-bezier(0.75, 0.10, 0, 0.85);
}

.button-link:hover {
  cursor: pointer;
  color: var(--white);
}

.button-link:hover::before {
  left: 0;
}

/* Second button with reversed colors */
.button-link:nth-of-type(2) {
  background: var(--darkgrey);
  color: var(--white);
  border-color: var(--darkgrey);
}

.button-link:nth-of-type(2)::before {
  background: var(--white);
}

.button-link:nth-of-type(2):hover {
  color: var(--darkgrey);
}

.button-link:nth-of-type(2):hover::before {
  left: 0;
}


@media (max-width: 650px) {
  
  .home-about {
    padding: 5vw;
    margin-bottom: 5vw;
  }
  
  .home-about .logo {
    width: 40vw;
  }
  
  .home-about .center {
    grid-gap: 12vw;
  }
  
  .home-about h3, .home-about h4, .home-about p {
    width: unset;
  }
  
  
  .heading-space {
    margin-bottom:15vw;
  }
  
  .home-container {
    padding-top:10vw;
    padding-bottom: 10vw;
    display: flex;
    flex-direction: column-reverse;
    	grid-gap: 0svh;
    padding: 8vw!important;
    min-width: 100vw;
  }

  .home-container .content .number {
    font-size: 14vw;
  }

  .home-container .first,
  .home-container .third {
    display: flex;
    flex-direction: column-reverse!important;
  }

  .home-container.forth, .home-container.second {
    flex-direction: column !important;
  }
  
  .home-container .image {
    width: 100%;
    height: 34svh;
	  min-height: 34svh;
  }
  
  .home-container .content {
    max-width: unset;
    width: unset;
    grid-gap: 10vw;
  }
  
  .home-container .content .icon {
    width: 12vw;
  }
  
  .home-properties {
    margin-top: 15vw;
    grid-gap: 15vw;
  }

  .home .home-properties {
    padding: 8vw!important;
  }
  
  .home-properties .link-box {
    margin:15vw 0vw;
  }
  
  .home-properties-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 13vw;
  }
  
  .filter {
    padding: 0.05vw 2vw;
  }
  .home-properties-grid .property {
    grid-gap: 3vw;
  }
  
  .home-properties-grid .property .image {
    height: 45vw;
  }

/*
  .property .image img {
    min-height:50vw;
  }
    */
  
  .bottom-cta .center {
    max-width: 85%;
    grid-gap: 12vw;
  }
  
  .button-link {
    font-size: 4vw;
    padding: 4vw 8vw;
  }
}



/* ==============================================
       All Projects
============================================== */

.text-margin-bottom {
  margin-bottom: 10vw;
}

@media (max-width: 650px) {}

/* ==============================================
       Project
============================================== */


.project-about h2 {
  font-family: var(--extrafont);
  text-transform: uppercase;
  font-size: 3.377vw;
}


.project-about h3 {
  width: 47vw;
  margin: auto;
}

.project-about h4 {
  width: 36vw;
  margin: auto;
  font-weight: 500;
  border: 0.5px solid var(--darkgrey);
  padding: 0.5vw 2vw;
  width: auto;
}

.project-about .estimate-block {
  display: flex;
  grid-gap: 1vw;
  width: fit-content;
  margin: auto;
  
}

.project-about .estimate {
  width: auto;
}


.project-about p {
	justify-self: center;
  width: 45vw;
  margin: auto;
}

.slider {
  grid-column: 1 / 13;
  cursor: grab;
  width: 100%;
  margin-top: 17.13vw;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.slider-wrapper {
  display: flex;
  grid-gap: 3vw;
  height:34vw;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.slider-item  {
  min-width:45vw;
  min-height:100%;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.slider-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

/* FontAwesome expand icon for expanding images */
.slider-item .expand-icon {
  position: absolute;
  bottom: 2vw;
  left: 2vw;
  width: 4vw;
  height: 4vw;
  
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  font-size: 1.5vw;
  color: var(--darkgrey);
  font-weight: 300;
  opacity: 1;
  transition: all 0.3s ease;
}

.slider-item .expand-icon::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f065";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}



.slider-item .expand-icon:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

/* Gallery Navigation Arrows */
.gallery-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 0.5vw;
  margin-top: 4vw;
  width: 100%;
}

.gallery-arrow {
  border: 1px solid var(--darkgrey);
  border-radius: 50%;
  width: 3vw;
  height: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5vw;
  color: var(--darkgrey);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: monospace;
  user-select: none;
  -webkit-user-select: none;
  outline: none;
}

.gallery-arrow:hover {

  transform: scale(1.2);
  -webkit-transform: scale(1.2);
}

.gallery-arrow:active {
  transform: scale(0.95);
  -webkit-transform: scale(0.95);
}

/* Mobile styles for gallery navigation */
@media (max-width: 650px) {
  .gallery-navigation {
    margin-top: 8vw;
    grid-gap: 2vw;
  }
  
  .gallery-arrow {
    width: 11vw;
    height: 11vw;
    font-size: 6vw;
  }
  
  /* Hide expand icons on mobile */
  .slider-item .expand-icon {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}



.description {
  display: flex;
  grid-gap: 0.5vw;
  flex-wrap: wrap;
  width: 65vw;
  margin: auto;
  direction: rtl;
  align-items:center;
  justify-content: center;
  text-align:center;
}

.description:nth-of-type(2) {
  margin-top:5vw;
}

.description:nth-of-type(3) {
  margin-top:5vw;
}

.description h2 {
  width:100%;
  font-family:var(--secondary);
  margin-bottom: 5vw;
}

.description li {
  width: max-content;
  border: 1px solid var(--darkgrey);
  padding: 0.6vw 1.1vw;
  font-size: 1.446vw;
  border-radius: 3vw;
  font-weight: 500;
  font-family: var(--primary);
}

.bullets {
  direction:rtl;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 3.819vw;
  padding: 0vw 3.819vw;
	justify-content: space-between;
}

.bullet {
  background: white;
  padding: 3.819vw;
  display: flex;
  flex-direction: column;
  text-align: center;
  grid-gap: 3vw;
}

.bullet img {
  width: 5.597vw;
  margin: auto;
}

.places-grid {
  direction: rtl;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 3.819vw;
  grid-row-gap: 8vw;
	justify-content: space-between;
}

.place {
  display: grid;
  grid-gap: 2vw;
}

.place .image {
  overflow: hidden;
  height: 25vw;
}

.place .image img {
  width: 100%;
  min-height: 35vw;
  object-fit: cover;
}

.place .place-name {
  font-weight: 500;
}

.download-block {
  width: 30vw;
  margin: auto;
  display: grid;
  grid-gap: 1vw;
  text-align: center!important;
}

.download-block .button-link {
  width: 100%;
  justify-content:center;
  text-align: center!important;
}

@media (max-width: 650px) {
  
  .project-about {
    padding: 5vw
  }
  
  .project-about .logo {
    width: 40vw;
  }
  
  .project-about .center {
    grid-gap: 8vw;
  }
  .project-about h2 {
    font-size: 8vw;
    letter-spacing:-0.1vw;
  }
  .project-about h3, .project-about h4, .project-about p {
    width: unset;
  }
  
  .description {

    grid-gap: 1.5vw;
    width: unset;
  }
  
  .description li {
    padding: 1vw 2vw;
    font-size: 4vw;
  }
  
  .bullets {
    grid-gap: 6vw;
    grid-template-columns: repeat(1, 1fr);
  }
  
  .bullet {
    padding: 12vw;
    grid-gap: 6vw;
  }
  
  .bullet img {
    width: 12vw;
    margin: auto;
  }
  
  .places-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .place {
    grid-gap: 6vw;
  }
  
  .place .image {
    height: 45vw;
  }
  
  .place .image img {
      min-height: 55vw;
  }
  
  .download-block {
    width: unset;
    grid-gap: 3vw;
  }

.slider-wrapper {
	height:unset;
}
  
  .slider-item {
    	height: 95vw;
    min-width:80vw;
    max-width:80vw;
  }


  /* Mobile styles for expand icon */
  .slider-item .expand-icon {
    bottom: 4vw;
    left: 4vw;
    width: 10vw;
    height: 10vw;
    font-size: 4.5vw;
  }
  

}

/* ==============================================
       Footer
============================================== */


.footer {
  direction: rtl;
}

.footer-image {
  grid-column: 1 / 13;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  height: 35vw;
  width: 100%;
  margin-bottom:4vw;
}

.footer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.footer .footer-menu {
	display: grid;
  grid-column: 1 / 2;
  grid-gap: 3vw;
}

.footer-sitemap {
  grid-column: 1 / 13;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr; /* Block 1 is thinner */
  grid-gap: 2vw;
  justify-content: space-between;
}
/*
.footer-sitemap .spread-blocks {
  justify-content: space-between;
}
  */
.footer-sitemap .block {
	line-height: unset;
  grid-gap: 0.4vw;
  display:flex;
  flex-direction:column;
}

.footer .block .menu {
  direction: rtl;
  align-items: start;
  grid-gap:1vw;
  font-size: 1.2vw;
  flex-direction: column;
  color:var(--medgrey);
}

.footer a {
  width: fit-content;
}

.footer-sitemap .block h5, .footer-menu h5  {
	margin-bottom: 3vw;
  font-weight:500;
}

.footer-sitemap .block:nth-of-type(1) {
	width: fit-content;
}

.footer-sitemap .block:nth-of-type(2) {
	width: fit-content;
}

.footer-sitemap .block:nth-of-type(3) {
	width: 100%;
}

.footer .logo {
	grid-column: 1 / 13;
  margin-top: 8vw;
}

.footer .logo img {
  min-width: 100%;
}


.footer a:after{
	display: block;
	content: "";
	border-bottom: solid 0.099vw var(--medgrey)!important;
	transform: scaleX(0);
	transform-origin: 100% 50%;
  padding-bottom: 0.5vw;
	transition: transform 650ms var(--cta-motion-easing);
	opacity: 1;
}

.footer a:hover:after{
	transform: scaleX(1);
	transform-origin: 0% 0%;
}

.footer .privacy-policy {
  display: flex;
  margin-top:0.6vw;
  flex-direction: column;
  grid-gap: 0.8vw;
}


@media (max-width: 650px) {

  .footer-image {
    height:45vw;
  }

  .footer-sitemap {
    margin-top: 10vw;
    display:flex;
    grid-gap:15vw;
    flex-direction:column;
    font-size:4vw!important;
  }
  
  .footer-sitemap .block {
    grid-gap: 2.6vw;
  }

  .footer-sitemap .block h5, .footer-menu h5 {
    margin-bottom: 5vw;
  }
  
  .footer .block .menu {
    grid-gap: 4vw;
  }

  .footer .menu a {
    height: 4vw;
    font-size: 4vw!important;
    width: fit-content;
    overflow: hidden;
  }

  .footer .menu a span {
    height: 4vw;
    text-shadow: 0 4vw 0 var(--medgrey);
    display: inline-block;
    transition: transform 0.5s var(--cta-motion-easing);
  }

  .footer .menu a:hover span {
    transform: translateY(-100%);
  }

  .footer .privacy-policy {
    display: flex;
    margin-top:1.6vw;
    flex-direction: column;
    grid-gap: 3.5vw;
  }
  
}


/* ==============================================
       Contact
============================================== */


.menu-item {
  pointer-events: auto;
  touch-action: manipulation;
  cursor: pointer;
}


.w-form {
  all:unset;
}

.w-input, .w-select {
  background:unset;
  height:unset;
  border: unset;
  border-bottom: 0.8px solid var(--darkgrey);
  padding: 1vw 0vw;
  direction:rtl;
  font-family: var(--primary);
  margin-bottom:1vw;
  font-size:1.3vw;
  font-weight:500;
}

.w-button {
  all:unset;
  font-size: 2vw;
  padding: 1.1vw 2vw;
  font-weight:unset;
  color: var(--white);
  font-family: var(--primary);
  font-weight:500;
  background: var(--darkgrey);
  width: -webkit-fill-available;
  text-align: center;
  margin-top:2vw;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.w-button:hover {
  opacity: 0.8;
}

.terms-grid {
  grid-column: 2 / 12;
  direction:rtl;
  margin: auto!important;
  align-self: center;
  width: 62vw;
  display: flex;
  justify-content: space-between;
  margin-bottom: 5vw;
}

.terms-grid .block {
  display: flex;
  flex-direction: column;
  grid-gap: 0vw;
}

.terms-grid .w-richtext {
  display: flex;
  flex-direction: column;
  grid-gap: 2vw;
}

.terms-grid h5 {
  font-weight: 500;
}


.contact-grid {
  direction:rtl;
  grid-column: 2 / 12;
  display: flex;
  justify-content: space-between;
  margin-bottom: 5vw;
}

.contact-grid .block {
	line-height: unset;
  grid-gap: 0.4vw;
  display:flex;
  flex-direction:column;
}

.contact-grid .block h5, .contact-grid  h5  {
	margin-bottom: 3vw;
  font-weight:500;
}

.contact-grid .block:nth-of-type(1) {
	width: 36.3vw;
}

.contact-grid .block:nth-of-type(2) {
	width: 28.3vw;
}

.ltr {
  direction: ltr;
  display: inline-flex;
}

.whatsapp-link {
  display: flex;
  grid-gap: 1vw;
  border: 1px solid var(--darkgrey);
  width:fit-content;
  padding:0.5vw 1.2vw;
  padding-left:1.6vw;
  align-items: center;
}

.whatsapp-link img {
  width: 1.1vw;
  height: 1.1vw;
  opacity: 1!important;
}


.w-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="10" height="6" viewBox="0 0 10 6" xmlns="http://www.w3.org/2000/svg"><path d="M0 0l5 6 5-6H0z" fill="%23000"/></svg>');
  background-repeat: no-repeat;
  background-position: left center; /* RTL support */
  background-size: 1vw 0.6vw;
  font-weight:500;
  padding-left: unset;
  direction: rtl; /* Optional: Ensures proper alignment for RTL languages */
  font-size: 1.3vw;
}


@media (max-width: 650px) {
  .w-input, .w-select {
    padding: 2vw 0vw;
    margin-bottom:4vw;
    font-size: 5vw !important;
  }
  .w-select {
    background-size: 3vw 3.6vw;
    line-height: 2;
  }
  .w-button {
    font-size: 7vw;
    padding: 3.3vw 2vw;
  }
  .contact-form .grid {
    padding:4vw;
  }
  .contact-grid {
    flex-direction: column-reverse;
    grid-column: 1 / 6;
    grid-gap: 15vw;
  }
  .contact-grid .block{
    width: 100%!important;
    grid-gap:5vw;
  }
  .whatsapp-link {
    padding: 1.8vw 3vw;
    grid-gap:3vw;
    width: unset;
    justify-content: center;
    text-align: center;
  }
  .whatsapp-link img {
    width: 3.8vw;
    height: 3.8vw;
  }
  .contact-grid .block:nth-of-type(2) {
    grid-gap: 1.5vw;
  }
}



/* ==============================================
      Transition
============================================== */


.transition {
  position: fixed;
  inset: 0;
  z-index: 9999999999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  background: none;
}


#loadersvg {
    width: 180vw;
    height: 100vh;
  display: block;
}

/* ==============================================
       Extras
============================================== */


.mega-menu {
    display:none;
    }
    
    .home-properties-grid .info {
      display: -webkit-box;
      -webkit-line-clamp: 3; /* number of lines */
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis
     }
     
     .home-properties-grid {
         direction: rtl;
     }
    .location {
      display: flex;
    flex-direction: column;
    margin: auto;
    justify-content: center;
    align-items: center;
    }
    .location-icon {
        width:2vw;
      margin-bottom: 0.8vw;
    }
    
    .cyprus-map {
        margin-top: -10vw;
    }

    @media (min-width: 650px) {
      .cyprus-map {
        max-width: 80%;
        margin: auto;
      }
    }
    
    @media (max-width: 650px) {
      .location-icon {
        width:6vw;
        margin-bottom: 2vw;
      }
    }
    
    .w-radio, .w-form-label, .w-radio-input {
        all:unset;
    }
    
    .all-block .w-radio {
        cursor: pointer;
        margin-bottom: 0;
        font-weight: 400;
        display: inline-block;
        border: 0.08vw solid var(--darkgrey);
        border-radius: 1.5vw;
        font-size:1.2vw;
        padding: 0.5vw 0.9vw!important;
    }
    
    .fs-cmsfilter_active {
        background: var(--darkgrey);
        color: var(--white)!important;
     }
    
    .property .filters-list {
        margin: unset;
      justify-self: start;
      align-self: start;
    }
    
    .type-list{
      display:flex;
      /*width:100%;*/
      direction: rtl;
      grid-gap: 0.5vw;
      margin-top: -2vw!important;
      margin-bottom: 5vw!important;
      margin: auto;
      justify-self: center;
      align-self: center;
      justify-content: center;
    }

    .type-list .w-dyn-items {
      margin: auto;
      display: flex;
      grid-gap: 0.4vw;
      flex-direction: row-reverse;
    }

    
    @media (max-width:650px) {
      .type-list {
        margin-top: 15vw!important;
        margin-bottom: 0vw!important;
      }
      .all-block .w-dyn-items {
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        padding: 0 3.7vw;
        grid-gap: 0.8vw;
        grid-row-gap: 1.5vw;
        flex-direction: row;
      }

      .all-block .w-radio {
          border: 0.3vw solid var(--darkgrey);
          border-radius: 5vw;
          padding: 1.2vw 2.5vw!important;
          font-size:4.5vw!important;
      }

      .type-list .filters-list {
        flex-wrap: wrap;
        grid-gap: 1vw;
        grid-row-gap: 2vw;
        align-items: start;
        justify-content: start;
        direction: rtl;
        margin: 8vw 0;
      }
      
    }
.filters-list {
  display: flex;
  grid-gap: 0.4vw;
}

.uwy img {
  min-width: 2.3vw!important;
  min-height: 2.3vw!important;
}

body .uwy.userway_p3 .userway_buttons_wrapper {
  all: unset;
  position: fixed;
  bottom: 1vw;
  right: 1vw;
}
.uwy .uai {
  width: 2.3vw!important;
  height: 2.3vw!important;
}

@media (max-width: 650px) {
  .uwy img {
    min-width: 7.3vw!important;
    min-height: 7.3vw!important;
  }
  
  body .uwy.userway_p3 .userway_buttons_wrapper {
    all: unset;
    position: fixed;
    bottom: 2vw;
    right: 2vw;
  }
  .uwy .uai {
    width: 7.3vw!important;
    height: 7.3vw!important;
  }
}



/* ==============================================
      About Us
============================================== */

.about .grid-gap {
  grid-gap: 10vw;
}

.about-hero-image {
	width: 60.3vw;
  height: auto;
  margin: auto;
  overflow: hidden;
}

.about-hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.flex-container {
	display: flex;
  width: 73.206vw;
  grid-gap: 3.819vw;
  align-items: center;
}

.flex-container .text-box {
	display: flex;
  flex-direction: column;
  grid-gap: 1.5vw;
}

.text-box .keren-p {
	width: 27.3vw;
}

.text-box .or-p {
	width: 29.225vw;
}

.spread-icon img {
	min-width: 4.803vw;
}

.about-values {
	position: relative;
}

.about-values .image {
	width: 15.336vw;
  height: 19.734vw;
  overflow: hidden;
}

.about-values .image:nth-of-type(1) {
	grid-column: 1 / 3;
}

.about-values .image:nth-of-type(2) {
	grid-column: 11 / 13;
  position: absolute;
  bottom: 0;
  right: 5.3vw;
}

.about-values .text-block {
	grid-column: 4 / 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  grid-gap: 3vw;
  max-width: 37.789vw;
}

.about-values .text-block h3 {
	font-size: 3.183vw;
  line-height: 1.1;
  letter-spacing: -0.12vw;
}

.partners-block {
  display: flex;
  flex-direction: column;
  grid-gap: 6vw;
  margin-top: 5vw;
}

.partners-block .bullet img {
	width: 9.896vw;
	height: 5.787vw;
  object-fit: contain;
}

@media (max-width:650px) {

	.about-hero-image {
    width:92%;
    margin: auto;
  }

  .about .grid-gap {
    grid-gap: 15vw;
  }

  .flex-container {
    display: flex;
    flex-direction:column-reverse;
    width: 100%;
    grid-gap: 12vw;
  }
  
  .text-box {
  	grid-gap: 6vw!important;
	}
  
  .text-box p {
    width: 85%!important;
    margin: auto!important;
  }
  
  .spread-icon img {
   	width: 15vw;
  }
  
  .about-values {
  	margin: 40vw 0;
	}
  
  .about-values .image {
    width: 25.336vw;
    height: 29.734vw;
  }

  .about-values .image:nth-of-type(1) {
    position: absolute;
    top: -40vw;
    left: 3.3vw;
  }

  .about-values .image:nth-of-type(2) {
    position: absolute;
    bottom: -40vw;
    right: 5.3vw;
  }

  .about-values .text-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    grid-gap: 8vw;
    min-width: 100%;
  }

  .about-values .text-block h3 {
    font-size: 8.183vw;
  }

  .partners-block {
    display: flex;
    flex-direction: column;
    grid-gap: 15vw;
    margin-top: 5vw;
  }

  .partners-block .bullet img {
    width: 32vw;
    height: 20vw;
    object-fit: contain;
  }

  .about .grid-gap .link-box {
    margin: 15vw 0;
  }
  
}




/* ==============================================
     Extras
============================================== */


/* ==============================================
Display Toggle and Gallery View Styles
============================================== */

.display-toggle {
  position: fixed;
  top: 6vw;
  left: 50%;
  transform: translate(-50%, -0%);
  z-index: 9999;
  display: flex;
  grid-gap: 0.3vw;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.3vw;
  border-radius: 2vw;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15vw rgba(0, 0, 0, 0.5);
}

.display-toggle button {
  background: transparent;
  border: 0vw solid var(--darkgrey);
  color: var(--darkgrey);
  padding: 1vw 1.5vw;
  border-radius: 5vw;
  font-size: 1vw;
  cursor: pointer;
  transition: background 0.6s ease, color 0.6s ease;
  font-family: var(--primary);
  min-width: 8vw;
}

.display-toggle button:hover {
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
}

.display-toggle button.active {
  background: var(--darkgrey);
  color: var(--white);
  pointer-events: none;
}

/* New Fullscreen Gallery Styles */
.fullscreen-gallery {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  background: #1E1F24;
  z-index: 9998;
  overflow: hidden;
  opacity: 1;
  visibility: hidden;
}

.fullscreen-gallery.active {
  opacity: 1;
  visibility: visible;
}

.gallery-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slide img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.gallery-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent 0%, rgba(30, 31, 36, 1) 100%);
  padding: 3.819vw;
  color: var(--white);
  height: 30vw;
  grid-gap: 1vw;
  align-items: end;
  justify-content: end;
  display: flex;
  flex-direction: column;
}

.gallery-slide-content h3 {
  font-family: var(--extrafont);
  text-transform: uppercase;
  font-size: 3vw;
  margin-bottom: 1vw;
}

.gallery-slide-content h4 {
  font-size: 1.2vw;
  opacity: 0.8;
}

.gallery-slide-content p {
  display:none;
  font-size: 1.2vw;
  opacity: 0.7;
  line-height: 1.6;
  max-width: 60vw;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 3.819vw;
  z-index: 10;
}

.gallery-nav button {
  background: rgba(30, 31, 36, 0.5);
  border: 0.1vw solid var(--white);
  color: var(--white);
  width: 4vw;
  height: 4vw;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2vw;
  transition: all 0.3s ease;
  padding-bottom:0.3vw;
}

.gallery-nav button:hover {
  background: var(--darkgrey);
  transform: scale(1.1);
}



.gallery-counter {
  position: absolute;
  bottom: 3.819vw;
  left: 3.819vw;
  color: var(--white);
  font-size: 1.2vw;
  font-weight: 400;
  z-index: 10;
  font-family: 'Inconsolata', monospace;
}

.gallery-indicators {
  position: absolute;
  bottom: 3vw;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1vw;
  z-index: 10;
}

.gallery-indicator {
  width: 1vw;
  height: 1vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-indicator.active {
  background: var(--white);
}

/* Mobile Responsive */
@media (max-width: 650px) {
  .display-toggle {
    border-radius: 5vw;
    padding: 1.5vw;
    top: 23vw;
    grid-gap: 1.5vw;
    box-shadow: 0 0 5vw rgba(0, 0, 0, 0.1);
  }

  .display-toggle button {
    padding: 3vw 4vw;
    border-radius: 5vw;
    font-size: 3.6vw;
    min-width: 30vw;
  }

  .gallery-slide-content {
    padding: 8vw;
    padding-bottom: 10vw;
    background: linear-gradient(transparent 0%, rgba(30, 31, 36, 1) 90%);
    height: 70vw;
    grid-gap: 3vw;
  }

  .gallery-slide-content h3 {
    font-size: 6vw;
  }

  .gallery-slide-content h4 {
    font-size: 4.5vw;
  }

  .gallery-slide-content p {
    font-size: 2.5vw;
    max-width: 80vw;
  }

  .gallery-nav {
    padding: 0 8vw;
  }

  .gallery-nav button {
    width: 13vw;
    height: 13vw;
    font-size: 8vw;
    padding-bottom:1vw;
  }

  .gallery-counter {
    bottom: 6vw;
    left: 6vw;
    font-size: 4vw;
  }

  .gallery-indicators {
    bottom: 6vw;
    gap: 2vw;
  }

  .gallery-indicator {
    width: 2vw;
    height: 2vw;
  }
}

/* Gallery Slide Link Styles */
.gallery-slide-link {
  cursor: pointer;
}


@media (max-width:650px) {
  .mobile-thin-h1 {
    width: 90%;
    margin:auto;
    margin-top: 15vw;
    margin-bottom:7vw;
  }
  .projects .text-margin-bottom {
  	margin-top: 25vw;
  }
}

.header .menu, .menu { 
	direction: rtl;
	justify-content: start;
}
.wg-switcher-watermark {
	display:none!important;
}

/* Fullscreen Thumbnails Styles */

.fullscreen-thumbnails {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 1.5vw;
  width: 100vw;
  z-index: 999999999999;
  padding: 3.819vw 3.819vw;
  pointer-events: auto;
  opacity: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scroll-behavior: auto; /* We'll handle smooth scrolling with JavaScript */
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  cursor: grab;
  user-select: none;
}

.fullscreen-thumbnails:active {
  cursor: grabbing;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.fullscreen-thumbnails::-webkit-scrollbar {
  display: none;
}

.fullscreen-thumbnail {
  width: 7vw!important;
  height: 5vw!important;
  min-width: 7vw; /* Prevent shrinking */
  flex-shrink: 0; /* Prevent flex items from shrinking */
  border-radius: 0.2vw;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.7;
}

@media (max-width:650px) {
  .fullscreen-thumbnail {
    width: 15vw!important;
    height: 10vw!important;
  }
}

.fullscreen-thumbnail.active {
  border-color: #fff;
  opacity: 1;
}

.fullscreen-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover effects */
.fullscreen-thumbnail:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Animation states */
.fullscreen-thumbnails.entering {

  opacity: 0;
}

.fullscreen-thumbnails.exiting {

  opacity: 0;
}

/* Mobile Navigation Arrows */
.mobile-nav-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 12vw;
  height: 12vw;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999999999999999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  scale: 0.8;
}

.mobile-nav-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.mobile-nav-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.mobile-nav-arrow-left {
  left: 4vw;
}

.mobile-nav-arrow-right {
  right: 4vw;
}

.mobile-nav-arrow svg {
  width: 4vw;
  height: 4vw;
  filter: drop-shadow(0 0 0.5vw rgba(0, 0, 0, 0.5));
}

/* Only show on mobile screens */
@media (min-width: 650px) {
  .mobile-nav-arrow {
    display: none;
  }
}
