.header-placeholder {
    height: 141px;
}

header {
    position: relative;
}

.home {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	background-image: linear-gradient(120deg, #f9f9f9, #f2f2f2);
	font-family: Tahoma, sans-serif;
    margin: 0 auto;
}

.slider-wrapper {
	position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    justify-content: center;
}

.slider {
    min-height: 100vh;
	display: grid;
	grid-auto-flow: column;
	scroll-snap-type: x mandatory;
	max-width: 100%;
    max-height: 100%;
	box-shadow: 0 2px 15px rgba(#000, 0.2), 0 2px 20px rgba(#000, 0.25);
	overflow-y: hidden;
    overflow-x: hidden;
	scroll-behavior: smooth;
	-ms-overflow-style: none;
	scrollbar-width: none;


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

.slide {
    display: inline-block;
	scroll-snap-align: start;
    background-size: cover;
	background-position: center;
    height: 100vh;
	background-repeat: no-repeat;

    /* zoom-effect */
    width: 100vw; 
    overflow: hidden;  

}

/* .slider img {
    width: 100vw;
} */

.slider::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, #10130C 0%, rgba(0, 0, 0, 0.00) 100%);
    z-index: 1;
}

.dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	gap: 15px;
	z-index: 1;

	display: flex;
	align-items: center;
	justify-content: center;

}

.dots a {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.75;
    transition: opacity ease 250ms;
    cursor: pointer;

    &:hover {
        opacity: 1;
    }
}

.home-logo {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);

    z-index: 2; 
}