:root {
	--color1-base: #124CB2;
	--color1-light: #2C79F5;
	--color1-dark: #0D367F;
	--color2-base: #41E577;
	--color2-light: #89FFC0;
	--color2-dark: #00BF2C;
	--color3-base: #CCF3E1;
	--color3-light: #fff;
	--color4-base: #101043;
	--color5-light: #f5f5f5;
	--color5-dark: #E7F2F1;
	--font-family-primary: Avenir Next, sans-serif;
	--font-family-secondary: Avenir Next Condensed, sans-serif;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0); /* Move items to original position */
    }
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	pointer-events: auto;
}

body, html {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	scroll-behavior: smooth;
	scroll-snap-type: y proximity;
}

body {
	font-family: var(--font-family-primary);
	background-color: var(--color1-base);
}

h1 {
	text-align: center;
	font-family: var(--font-family-secondary);
	font-weight: 800;
	font-size: 1.5em;
	text-transform: uppercase;
	margin-bottom: 3em;
	color: var(--color5-dark);
}

h2 {
	font-size: 3em;
}

h3 {
	font-family: var(--font-family-secondary);
	font-weight: 800;
	font-size: 2em;
	margin-top: 1em;
	margin-bottom: 1em;
}

h4 {
	font-family: var(--font-family-secondary);
	font-weight: 800;
	font-size: 1em;
	text-transform: uppercase;
	color: var(--color5-dark);
}

h5 {
	font-family: var(--font-family-primary);
	font-weight: 400;
	font-size: 1em;
}

a {
	color: var(--color2-base);
}

a:hover {
	color: var(--color2-light);
	text-decoration: none;
}


/*---------------------------------------------------------------------------------------------------------------------------------------------------

MENU

---------------------------------------------------------------------------------------------------------------------------------------------------*/

.top-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--color1-base);
	height: 6em;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: box-shadow 0.3s cubic-bezier(.5,0,0,1);
	cursor: pointer;
}

.top-menu.scrolled {
	box-shadow: 0 0px 50px rgba(0, 0, 0, 0.25);
}

.top-menu nav {
	width: 100%;
	display: flex;
	justify-content: center;
}

.top-menu ul {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 640px;
}

.top-menu ul li {
	flex: 1;
	text-align: center;
}

.top-menu ul li a {
	display: block;
	color: var(--color5-dark);
	text-decoration: none;
	font-size: 1.25em;
	line-height: 5em;
	text-shadow: 0 0 0 rgba(65, 229, 199, 0.2);
	transition: text-shadow 200ms cubic-bezier(.5,0,0,1), color 200ms cubic-bezier(.5,0,0,1);
}

.top-menu ul li:nth-child(3) {
	flex: 1;
	display: flex;
	justify-content: center;
}

.top-menu ul li a img {
	height: 4.8em !important;
	width: auto !important;
	display: block !important;
	transition: opacity 200ms cubic-bezier(.5,0,0,1);
}

/* Only display the normal image by default */
.top-menu ul li a img.normal-image {
	display: block;
}

/* Hide the hover and active images by default */
.top-menu ul li a img.hover-image,
.top-menu ul li a img.active-image {
	display: none;
	position: absolute;
}

/* On hover, show the hover image and hide the normal image */
.top-menu ul li a:hover img.normal-image {
	display: none;
}

.top-menu ul li a:hover img.hover-image {
	display: block;
}

/* On active, show the active image and hide the normal and hover images */
.top-menu ul li a:active img.normal-image,
.top-menu ul li a:active img.hover-image {
	display: none;
}

.top-menu ul li a:active img.active-image {
	display: block;
}

.top-menu ul li a:hover {
	color: var(--color2-base);
	text-shadow: 0 0 25px rgba(65, 229, 199, .75);
}

.top-menu ul li a:active {
	color: var(--color4-base);
	text-shadow: 0 0 50px rgba(65, 229, 199, .2);
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------

ANIMATED HEADER

---------------------------------------------------------------------------------------------------------------------------------------------------*/

.content-container {
	padding-top: 8em;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.scroll-container {
	width: 50%;
	height: 1100px;
	display: flex;
	align-items: flex-start;
	padding-top: 50px;
	transition: height 1s cubic-bezier(.5,0,0,1);
}

.scroll-container.active {
	height: 330px;
}

.scaling-element {
	display: flex;
	transition: transform 1s cubic-bezier(.5,0,0,1);
	transform: scale(1);
	width: 1920px;
	justify-content: flex-start;
	z-index: 0;
}

.title-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-size: 10em;
	font-weight: 800;
	font-family: var(--font-family-secondary);
	line-height: 0.88;
	position: absolute;
	top: 0;
	left: 0;
}

.image-container-lars {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	position: absolute;
}

.image-container-lars img {
	width: 40%;
	height: 40%;
	margin-top: 35em;
	transform: scale(2);
	transition: transform 0.75s ease;
}

.title-word {
	color: var(--color1-base);
	text-transform: uppercase;
	-webkit-text-stroke: 1px transparent;
	text-shadow: 0 0 1px rgba(65, 229, 199, 0.0);
	transition: -webkit-text-stroke 0.5s ease-out, text-shadow 0.5s ease-out;
	margin: 0;
	padding: 0;
}

.title-word.visible {
	-webkit-text-stroke: 1px var(--color2-base);
	text-shadow: 0 0 10px rgba(65, 229, 199, 0.2);
}

.title-word.fill {
	color: var(--color3-light);
	transition: none;
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------

CHEVRON

---------------------------------------------------------------------------------------------------------------------------------------------------*/

.chevron-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 20vh;
	width: 100%;
	z-index: 1;
	position: fixed;
	bottom: 0;
	flex-direction: column;
	transition: opacity 0.5s ease;
}

.chevron {
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 10px solid var(--color5-dark);
	animation: bounce 1s infinite;
}

.showreel-text {
	margin: 1em 0 .5em;
	font-size: 1em;
	font-weight: light;
	color: var(--color5-dark);
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(10px);
	}
	60% {
		transform: translateY(5px);
	}
}

.bottom-element {
	position: absolute;
	bottom: 0;
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------

HEADER Banner

---------------------------------------------------------------------------------------------------------------------------------------------------*/

.header-banner{
	padding-top: 8em;
	width: 100%; 
	height: 480px;
	background-color: black;
	color: var(--color5-dark);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.header-text{
	width: 600px;
	position: relative;
	bottom: 0;
}


/*---------------------------------------------------------------------------------------------------------------------------------------------------

CONTAINERS

---------------------------------------------------------------------------------------------------------------------------------------------------*/
section {
	flex-direction: column;
	align-items: center;
	padding-top: 3em;
	padding-bottom: 0px;
	scroll-snap-align: start;
	scroll-margin: 3em;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	scroll-snap-stop: always;
}

#showreel {
	scroll-snap-align: none;
	z-index: 2;
}

#showreel, #about, #work, #gallery {
	text-align: left;
}

.container-video {
	width: 100%;
	z-index: 2;
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------
gallery*/

.container-gallery {
	margin-left: 3em; /* Add left margin */
    margin-right: 3em; /* Add right margin */
    min-height: 75em;
    width: calc(100%); /* Adjust width to account for the left and right margins */
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: var(--color5-dark);
}

.container-gallery h1, .container-gallery work, .container-cases h1{
	margin-bottom: 0em;
}

.container-gallery ul p{
	text-align: center;
	margin-top: 1em;
	margin-bottom: 1em;
}

.titles{
	margin-bottom: 1em;
}

.container-gallery ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.container-gallery ul li {
	flex: 1 0 calc(16.6667% - 1px);
	background-color: var(--color1-base);
	margin: 0;
	padding: 0;
	opacity: 0; /* Initially hide the items */
    transform: translateY(25em); /* Optional: move items down slightly */
    animation: fadeIn 0.5s forwards cubic-bezier(.5,0,0,1); /* Apply fade-in animation */
}

.container-gallery ul li img {
	width: 100%;
	height: auto;
	display: block;
	cursor: zoom-in;
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------
work*/

.container-work {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--color5-dark);
    background: linear-gradient(to bottom, var(--color1-base) 50%, var(--color1-dark) 88%);
}

.container-work ul p {
    text-align: center;
    margin-top: 0em;
    margin-bottom: .2em;
}

.container-work ul {
    margin-left: 8em; /* Add left margin */
    margin-right: 8em; /* Add right margin */
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    width: calc(100%-16em);
}

/* Spacing between projects */
.container-work ul li {
    text-align: left;
    flex: 1 0 calc(33.3333% - 1rem); /* Adjust width for spacing */
    margin: .5rem; /* Add margin for spacing */
    background-color: var(--color1-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Ensure title/CTA is below image */
    padding-bottom: 2em;
    box-shadow: 0px 2px 25px var(--color1-dark);
}

/* Image styling */
.container-work ul li img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(100%);
    transition: filter 300ms cubic-bezier(.5,0,0,1);
}


/* Title and CTA below image */
.case-title {
    padding: 1rem;
    background-color: var(--color1-base); /* Optional: background for better contrast */
    text-align: left;
    color: var(--color5-dark);
}

.case-title h4 {
    margin: 0 0 0.5rem; /* Add space below title */
    font-size: 1.25rem;
    font-weight: bold;
}

.case-title h5 {
    margin: 0 0 .5rem; /* Add space below description */
    font-size: 1rem;
    color: var(--color5-dark); /* Optional: lighter color for description */
}

.cta-container a {
    text-decoration: none;
    color: var(--color2-base);
    font-weight: bold;
    transition: color 300ms ease;
}

.cta-container a:hover {
    color: var(--color2-light);
}


.cta-container {
    display: flex; /* Use flexbox to align text and SVG horizontally */
    align-items: center; /* Center the content vertically */
    gap: 0em; /* Optional: space between the text and SVG */
}

.cta-container svg{
	padding-top: 6px;
	background-color: rgba(0, 0, 0, 0.5); /* Optional: background for better contrast */
}

.container-work ul li:hover .case-title {
    opacity: 1;
}

/* Ensure the link is a container for positioning */
.image-container {
    position: relative; /* Parent for positioning the overlay */
    display: block; /* Ensure block-level display for proper spacing */
    width: 100%;
    height: auto;
    overflow: hidden; /* Prevent overlay from spilling out */
}

/* Styling for the image */
.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 300ms cubic-bezier(.5,0,0,1);
}

/* Hover effect for image */
.image-container:hover img {
    filter: brightness(44%); /* Subtle darkening on hover */
}

/* Default state of the overlay */
.case-title-overlay {
    position: absolute; /* Position relative to the .image-container */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    opacity: 0; /* Hidden by default */
    display: flex; /* Use flexbox for centering */
    flex-direction: column; /* Stack title and CTA vertically */
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    color: var(--color5-dark);
    transition: opacity 300ms cubic-bezier(.5,0,0,1);
    pointer-events: none; /* Prevent interaction when hidden */
}

/* Overlay visible on hover */
.image-container:hover .case-title-overlay {
    opacity: 1; /* Make visible on hover */
    pointer-events: auto; /* Enable interaction */
}


/*---------------------------------------------------------------------------------------------------------------------------------------------------
text*/

.container-text {
	width: 600px;
	color: var(--color5-dark);
	z-index: 50;
}

.container-text p, 
.container-text h2, 
.container-text h3, 
.container-text quote,
.container-text img
.container-text ul li {
	opacity: 0; /* Initially hide the items */
    transform: translateY(50px); /* Optional: move items down slightly */
    animation: fadeIn 1s forwards cubic-bezier(.5,0,0,1); /* Apply fade-in animation */
    z-index: 100;
    
}

.container-text h3{
	text-align: center;
	margin-bottom: 1em;
}

.container-text img{
	width: 100%;
	}

/*---------------------------------------------------------------------------------------------------------------------------------------------------
/* Styles for the about section */
#about {
    position: relative;
    overflow: hidden;
    margin: 2em 0 0em 0;
    background: linear-gradient(to bottom, var(--color1-base) 50%, var(--color1-dark) 88%);
}

/* General styles for images */
.parallax-images {
	z-index: 10;
}

.parallax-image {
    position: absolute;
    width: auto;
    height: auto;
}

.parallax-image img {
    display: block;
    width: 100%;
    height: auto;
    top: 0;
}

/* Specific styles for left and right images */
.left-image {
    display: block;
    min-width: 100px;
    width: calc(40% - 200px);
    left: 0;
}

.right-image {
    display: block;
    min-width: 100px;
    width: calc(40% - 200px);
    right: 0;
}

.front {
	z-index: 9;
}

.back {
	z-index: 8;
}

.backest {
	z-index: 7;
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------

Lightbox

---------------------------------------------------------------------------------------------------------------------------------------------------*/


/* Custom Lightbox Styles */
.lightboxOverlay {
    background: rgba(18, 76, 178, 0.9) !important;
}

.lightbox .lb-image {
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

* Adjust Lightbox container margin */
.lb-container {
    padding: 50em; /* Adjust this value to control the spacing around the Lightbox */
}

/* Adjust Lightbox image */
.lb-image {
    margin: 0 auto; /* Center image if it does not fill the screen */
}

/* If the Lightbox content is wider than the viewport, apply margin to avoid overflow */
.lb-data .lb-image {
    max-width: calc(100% - 5em); /* Adjust this value to control the margin around the image */
    max-height: calc(100% - 5em); /* Adjust this value to control the vertical margin */
}

/* Additional Lightbox styles to center content if needed */
.lb-data {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Lightbox Caption Styling */
.lb-caption {
    font-family: var(--font-family-primary);
    font-size: 1.2em;
    color: var(--color5-dark);
}

.lb-caption h2 {
    font-family: var(--font-family-primary);
    font-size: 1.5em;
    font-weight: bold;
}

.lb-caption p {
    font-family: var(--font-family-primary);
    margin: 0;
    line-height: 1.5;
}


/* Adjust the sizes of the navigation arrows */
.lb-prev,
.lb-next {
    width: 20%;
    height: 100%;
}

.lb-prev {
    left: 0;
    cursor: w-resize;
}

.lb-next {
    right: 0;
    cursor: e-resize;
}

/* Style for the central clickable area */
.lb-center {
    position: fixed;
    top: 0;
    left: 20%;
    width: 60%;
    height: 100%;
    cursor: pointer;
    background: transparent; /* Ensure it's transparent to only capture clicks */
    z-index: 10000; /* Ensure it's above other elements */
}


/*---------------------------------------------------------------------------------------------------------------------------------------------------

VIDEO PLAYER

---------------------------------------------------------------------------------------------------------------------------------------------------*/

.video-player {
	width: 960px;
	height: 540px;
	margin: 0 auto 2em;
	display: flex;
	justify-content: center;
	align-items: center;
}

.video-player iframe {
	width: 100%;
	height: 100%;
}


/*---------------------------------------------------------------------------------------------------------------------------------------------------

PROJECT

---------------------------------------------------------------------------------------------------------------------------------------------------*/
.project {
	flex-direction: column;
	align-items: center;
	padding-bottom: 8em;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: linear-gradient(to bottom, var(--color1-base) 44%, var(--color1-dark) 88%);
}

.Titles {
	text-align: center;
	margin :0px;
}

.Titles h1 {
	margin-top: 3em;
	margin-bottom: 0px;
	font-family: var(--font-family-secondary);
	font-weight: 800;
	font-size: 3em;
	text-transform: uppercase;
	color: var(--color5-dark);
}

.Titles h2 {
	margin-top: 0px;
	margin-bottom: 1em;
	font-size: 1em;
	color: var(--color2-base);
}


/*---------------------------------------------------------------------------------------------------------------------------------------------------

BUTTON

---------------------------------------------------------------------------------------------------------------------------------------------------*/

@keyframes scaleInBounce {
	0% {
		opacity: 0.5;
		transform: scale(0.25);
	}
	10% {
		opacity: 1;
		transform: scale(1.25);
	}
	30% {
		opacity: 1;
		transform: scale(0.8);
	}
	60% {
		opacity: 1;
		transform: scale(1.05);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.button-wrapper, .button-wrapper-small {
	transform: scale(1);
	opacity: 0;
	animation: scaleInBounce 1s forwards;
	margin-bottom: 1em;
	border-radius: .75em;
	box-shadow: .5em .5em var(--color4-base);
	display: flex;
	justify-content: center;
	transition: transform 100ms, box-shadow 100ms;
}

.button-wrapper-small {
	margin-right: 1em;
	margin-top: 1em;
	margin-bottom: 2em;
}
.custom-button {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 12em;
	padding: .5em;
	background-color: var(--color2-base);
	color: var(--color4-base);
	border: .15em solid var(--color4-base);
	font-weight: bold;
	font-size: 1.5em;
	cursor: pointer;
	border-radius: .5em;
	transition: transform 200ms cubic-bezier(.5,0,0,1), background-color 500ms cubic-bezier(.5,0,0,1);
}

.custom-button-small {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 10em;
	padding: .5em;
	background-color: var(--color2-base);
	color: var(--color4-base);
	border: .15em solid var(--color4-base);
	font-weight: bold;
	font-size: 1.2em;
	cursor: pointer;
	border-radius: .5em;
	transition: transform 200ms cubic-bezier(.5,0,0,1), background-color 500ms cubic-bezier(.5,0,0,1);
}

.button-title {
	flex-grow: 1;
	text-align: center;
}

.button-icon {
	flex-shrink: 0;
	margin-left: 1em;
}

.custom-button:hover {
	background-color: var(--color2-light);
	transition: transform 100ms cubic-bezier(.5,0,0,1), background-color 300ms cubic-bezier(.5,0,0,1);
}

.custom-button:active {
	background-color: var(--color2-base);
	transform: translate(.25em, .25em);
	transition: transform 100ms cubic-bezier(.5,0,0,1), box-shadow 100ms cubic-bezier(.5,0,0,1), background-color 300ms cubic-bezier(.5,0,0,1);
}

.button-wrapper:active {
	box-shadow: 0 0 var(--color1-base);
}


/*---------------------------------------------------------------------------------------------------------------------------------------------------

CTA

---------------------------------------------------------------------------------------------------------------------------------------------------*/

.cta {
	width: 600px;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	margin-left: 0px;
	position: relative;
	padding-bottom: 12em;
	z-index: 1;
}

.cta button-wrapper {
	display:block;
	background-color: #f00;
}

.lars-container {
	align-items: flex-end;
}

.pop-up-lars{
	width: 200px;
	position: absolute;
	right: 30%;
	bottom: 0;
	z-index: 0;
}

/* Class to trigger the popup */
.show-popup {
    bottom: 20px; /* Adjust this value to control the final position */
}

.container-text p {
	font-size: 1.25em;
	line-height: 1.75em;
	margin-bottom: 1em;
}

.container-text quote {
	display: block;
	font-size: 2.5em;
	margin: 1.5em 2em 1.5em 2em;
	font-style: italic;
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------

SECONDARY LINKS

---------------------------------------------------------------------------------------------------------------------------------------------------*/

.secondary-links {
	padding: 3em 0 2em;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.container {
	display: flex;
	gap: 20px;
	margin: 3em 0 4em;
}

.column {
	text-align: left;
}

.column img {
	width: 300px;
	height: 200px;
	object-fit: cover;
}

.column p {
	margin: 10px 0;
	max-width: 280px;
}

.link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: var(--color1-base);
	font-weight: bold;
}

.link:hover {
	color: var(--color1-light);
}

.link:active {
	color: var(--color1-dark);
}

.link-light {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: var(--color5-dark);
	font-weight: bold;
}

.link-light:hover {
	color: var(--color2-base);
}

.link-light:active {
	color: var(--color4-base);
}

.arrow, .arrow-light {
	margin-left: 5px;
	margin-top: 5px;
	color: var(--color1-base);
	align-items: bottom;
}

.arrow-light {
	width: 25px;
}


/*---------------------------------------------------------------------------------------------------------------------------------------------------

FOOTER

---------------------------------------------------------------------------------------------------------------------------------------------------*/

#contact {
	padding-top: 2em;
	z-index: 900;
	background-color: var(--color1-dark);
	display: flex;
}

footer {
	background-color: var(--color1-base);
	color: white;
	padding-top: 2em;
	text-align: center;
	width: 100%;
	margin-top: 0;
	padding-bottom: 4em;
}

.social-icons-wrapper {
	transform: scale(1);
	opacity: 0;
	animation: scaleInBounce 1s forwards;
	margin-top: 0;
	margin-bottom: 1em;
	border-radius: 1.25em;
	transition: transform 100ms, box-shadow 100ms;
	display: flex;
	justify-content: center;
}

.social-icons a {
	margin: .5em;
	display: inline-block;
	background-color: var(--color2-base);
	border-radius: .25em;
	box-shadow: .5em .5em var(--color4-base);
	transition: transform 200ms cubic-bezier(.5,0,0,1), background-color 500ms cubic-bezier(.5,0,0,1);
	padding: 0.1em; /* Increase touch area if possible */
}

.social-icons a:hover {
	background-color: var(--color2-light);
	transition: transform 100ms cubic-bezier(.5,0,0,1), background-color 300ms cubic-bezier(.5,0,0,1);
}

.social-icons a:active {
	background-color: var(--color2-base);
	box-shadow: 1px 1px var(--color4-base);
	transform: translate(.25em, .25em);
	transition: transform 100ms cubic-bezier(.5,0,0,1), box-shadow 100ms cubic-bezier(.5,0,0,1), background-color 300ms cubic-bezier(.5,0,0,1);
}

.social-icons a img {
	width: 3em;
	height: auto;
}

.footer-titles h3 {
	margin-bottom: 3em;
	font-size: 2em;
	font-family: var(--font-family-secondary);
	color: var(--color5-dark);
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------

Image SLIDER

---------------------------------------------------------------------------------------------------------------------------------------------------*/

.slider-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Adjust as needed */
    margin: auto;
}

.slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.before-image, .after-image {
    width: 100%;
    height: auto;
    display: block;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%; /* Initial slider position */
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.slider-overlay .after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the after image covers the entire overlay area */
}
 
.slider-range {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    z-index: 10; /* Ensure the slider is above the images */
}

