.timeline-full {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #e3e0d8;
	color: #111;
}

.timeline-content {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.timeline-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 30px 0px 0 0px;
    box-sizing: border-box;
}

.timeline-left h1 {
    text-align: left ;
    margin-top: 0;
    font-size: 30em;
    margin-bottom: 30px;
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	transform: translateX(0px);
}

.timeline-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.timeline-right .timeline-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    object-fit: cover;
}

.timeline-left p {
    text-align: left ;
    font-size: 5em;
    margin: 0 0 10px 10px;
}

.timeline-left .button-container {
    margin-bottom: 0px;
    margin-top: 100px;
	margin-left: 160px;
    align-self: flex-start;
}

.timeline-right {
    width: 50%;
    
}
.timeline-full h1 {
    text-align: center;
    margin-top: 100px;
    font-size: 6.8em;
	font-weight: 500;
	margin-left: 100px;
	line-height: -4px;
	margin-bottom: 5px;
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
}


.timeline-full p {
    text-align: center;
    font-size: 1.8em;
    margin-top: 20px;
	margin-bottom: 70px;
    margin-left: 80px;
    margin-right: 10px;
	font-family: 'poppins';
	line-height: -4px;
}

/* Center the parent container */
.timeline-full .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
  
	margin-top: 100px;
}

@keyframes MoveUpInitial {
	to {
		transform: translate3d(0,-105%,0);
	}
}

@keyframes MoveUpEnd {
	from {
		transform: translate3d(0,100%,0);
	}
	to {
		transform: translate3d(0,0,0);
	}
}


.timeline-full a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
}

.timeline-full a:hover {
	color: var(--color-link-hover);
	outline: none;
}

/* https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible */
.timeline-full a:focus,
.timeline-full button:focus {
	/* Provide a fallback style for browsers
	 that don't support :focus-visible */
	outline: none;
}

.timeline-full a:focus:not(:focus-visible),
.timeline-full button:focus:not(:focus-visible) {
	/* Remove the focus indicator on mouse-focus for browsers
	 that do support :focus-visible */
}

.timeline-full a:focus-visible,
.timeline-full button:focus-visible {
	/* Draw a very noticeable focus style for
	 keyboard-focus on browsers that do support
	 :focus-visible */
	outline: 2px solid #443ffc;
	outline-offset: 3px;
}

.timeline-full a:focus-visible {
	background: none;
}

.timeline-full .button {
display: inline-flex ;
justify-content: center ;
align-items: center ;
	pointer-events: auto;
	cursor: pointer;
	background: #3d3e3e;
	border: none;
	padding: 1.5rem 3rem;
	margin-bottom: 100px;
	font-family: inherit;
	font-size: inherit;
	position: relative;
	display: inline-block;
}

.timeline-full .button::before,
.timeline-full .button::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



.button--greip {
	overflow: hidden;
	color: #fff;
	font-family: input-mono-narrow, monospace;
	font-weight: 500;
	padding: 1rem 2rem;
	margin-top: 49px;
	margin-left: 250px;
	scale: 0.8;
}

.button--greip span {
	display: block;
	position: relative;
}

.button--greip > span {
	overflow: hidden;
	mix-blend-mode: difference;
}

.button--greip:hover > span > span {
	animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
}

.button--greip::before {
	content: '';
	background: #000;
	width: 100%;
	height: 100%;
	transform-origin: 50% 100%;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	transition: clip-path 0.2s, -webkit-clip-path 0.2s;
	transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
}

.button--greip:hover::before {
	transition-duration: 0.3s;
	-webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
	clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
}
