:root {
  --dark-brown: #2C2C2C;
  --white: #FFFFFF;
  --black: #000000;
}

body {
  background-color: #FCFAF6;
}
body.open {
  overflow: hidden;
}

.hero-image {
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  transition: .4s
}

.hero-image.scrolled img {
  scale: 1.05;
}

footer {
  display: flex;
  flex-direction: column;
  background-color: var(--dark-brown);
}
footer img {
  width: 100%;
}
footer .site-info {
	background-color: var(--dark-brown);
	color: var(--white);
	display: flex;
	justify-content: space-around;
	margin-top: 25px;
	margin-bottom: 25px;
	flex-direction: column;
	padding: 0 15px;
}
@media only screen and (min-width: 768px) {
  footer .site-info {
	  	flex-direction: row;
		padding: 0;
	  	height: 120px;
	}
}
footer .site-info ul {
	margin: 0;
	list-style: none;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media only screen and (min-width: 768px) {
	footer .site-info ul {
		justify-content: start;
	}
}
footer .site-info ul li img {
  width: 12px;
}
footer .site-info ul li:first-child {
  margin-right: 16px;
}
footer .site-info ul li:last-child img {
  width: 21px;
}
footer .site-info p {
  font-size: 18px;
  font-weight: 200;
  padding-top: 8px;
  margin: 0;
}
footer .site-info .social p {
	text-transform: uppercase;
	margin-bottom: 16px;
	color: #fff;
}
@media only screen and (max-width: 768px) {
	footer .site-info .social .textwidget.custom-html-widget {
		width: 100%;
	}
}
footer .site-info .form form label {
	text-transform: uppercase;
}
footer .site-info .form form input {
	background-color: transparent;
    border: 1px solid #fff;
    border-radius: 521px;
	color: #fff;
	height: 25px;
}
@media only screen and (max-width: 768px) {
  	footer .site-info .form form input {
		width: 250px !important;
	}
}
footer .site-info .content {
  display: flex;
  align-items: center;
  text-align: center;
}
footer .site-info .form-wrapper button {
	background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
	width: 40px;
    height: 40px;
	padding: 10px 12px !important;
}
footer .site-info .form-wrapper button img {
	width: 12px;
    height: 13px;
	padding-top: 3px;
    padding-left: 3px;
}
footer .site-info .form-wrapper {
	margin-bottom: 35px;
}
@media only screen and (min-width: 768px) {
  	footer .site-info .form-wrapper {
		margin-bottom: 0;
	}
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background-color: #FCFAF6;
  height: 81px;
  transition: 0.4s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .site-branding {
  height: 100%;
}
header .site-branding a {
  height: 100%;
  display: flex;
}
header .site-branding a img {
  width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.4s ease-in-out;
}
@media only screen and (min-width: 768px) {
  header .site-branding a img {
    width: 420px;
  }
	header.scrolled {
  height: auto;
  height: 70px;
	}
	header.scrolled a img {
	  height: auto;
	  width: 320px;
	}	
}



.site-main {
  margin-top: 120px;
}
@media only screen and (min-width: 768px) {
	.site-main {
	  margin-top: 81px;
	}
}

.split {
  padding: 50px 15px;
}
@media only screen and (min-width: 768px) {
  .split {
    padding: 80px 0;
  }
}
.split.first-post {
  padding: 0;
}
.split.first-post .image-wrapper {
  aspect-ratio: 290/290;
}
@media only screen and (min-width: 768px) {
  .split.first-post .image-wrapper {
    aspect-ratio: unset !important;
  }
}
.split .content-block {
  margin: auto;
  display: flex;
  flex-direction: column-reverse;
}
@media only screen and (min-width: 768px) {
  .split .content-block {
    width: 80%;
    flex-direction: row;
  }
}
.split .content-block .image-wrapper {
  aspect-ratio: 290/290;
  overflow: hidden;
  width: 100%;
  margin-top: 34px;
}
@media only screen and (min-width: 768px) {
  .split .content-block .image-wrapper {
    width: 50%;
    margin-top: 0;
    aspect-ratio: 502/431;
  }
}
.split .content-block .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.split .content-block .text-content {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .split .content-block .text-content {
    width: 50%;
    padding-left: 60px;
  }
}
.split .content-block .text-content h3 {
  font-size: 22px;
  font-weight: 400;
  line-height: 120%;
  margin: 0;
  padding-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .split .content-block .text-content h3 {
    width: 80%;
    font-size: 30px;
  }
}
.split .content-block .text-content p {
  font-size: 19px;
  font-weight: 400;
}
.split .content-block .text-content a {
  color: #000;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
}
.split.reverse .content-block {
  flex-direction: column-reverse;
}
@media only screen and (min-width: 768px) {
  .split.reverse .content-block {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 768px) {
  .split.reverse .content-block .text-content {
    padding-left: 0;
    padding-right: 60px;
  }
}

.title-block {
  width: 80%;
  margin: auto;
  text-align: center;
  padding: 40px 0;
}
.title-block .title {
  margin: 0;
  font-size: 40px;
  padding-bottom: 15px;
}
@media only screen and (min-width: 768px) {
  .title-block .title {
    font-size: 3.65vw;
  }
}
.title-block .text {
  margin: 0;
  font-size: 20px;
  line-height: 120%;
}
@media only screen and (min-width: 768px) {
  .title-block .text {
    font-size: 1.56vw;
  }
}

.video-block {
  padding: 40px 15px;
}
@media only screen and (min-width: 768px) {
  .video-block {
    padding: 40px 0;
  }
}
.video-block div {
  position: relative;
  padding-bottom: 78.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  margin: auto;
  border-radius: 20px;
}
@media only screen and (min-width: 768px) {
  .video-block div {
    padding-bottom: 56.25%;
    width: 80%;
  }
}
.video-block div iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.home-post-wrapper .post .post-link {
  text-decoration: none;
  color: var(--black);
}
.home-post-wrapper .post .post-link:hover {
  text-decoration: none;
}
.home-post-wrapper .post .post-link .content-block {
  align-items: center;
  border: 1px solid #E4E4E4;
  border-radius: 20px;
  padding: 40px 30px 30px 30px;
  flex-direction: column;
  margin: 0 15px;
}
@media only screen and (min-width: 768px) {
  .home-post-wrapper .post .post-link .content-block {
    padding-bottom: 56.25%;
    width: 80%;
    flex-direction: row;
    padding: 40px 45px 30px 45px;
    margin: auto;
  }
}
.home-post-wrapper .post .post-link .content-block .text-content {
  text-align: center;
}
.home-post-wrapper .post .post-link .content-block .text-content h3 {
  font-size: 22px;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .home-post-wrapper .post .post-link .content-block .text-content h3 {
    font-size: 30px;
  }
}
.home-post-wrapper .post .post-link .content-block .text-content .post-outer-description p {
  margin: 0;
}
.home-post-wrapper .post .post-link .content-block .image-wrapper {
  overflow: unset;
  width: 100%;
}
.home-post-wrapper .post .post-link .content-block .image-wrapper .post-thumbnail {
  height: 100%;
}
.home-post-wrapper .post .post-link .content-block:first-child img {
  aspect-ratio: 261/176;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-post-wrapper .post.column-reverse .content-block {
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .home-post-wrapper .post.column-reverse .content-block {
    flex-direction: column-reverse;
  }
}
.home-post-wrapper .post.column-reverse .content-block .text-content {
  padding-left: 0;
  width: 100%;
  padding-bottom: 16px;
}
.home-post-wrapper .post.column-reverse .content-block .image-wrapper {
  aspect-ratio: 290/290;
  width: 100%;
  overflow: hidden;
  margin-top: 34px;
}
@media only screen and (min-width: 768px) {
  .home-post-wrapper .post.column-reverse .content-block .image-wrapper {
    aspect-ratio: 373/194;
    margin-top: 0;
  }
}
.home-post-wrapper .second-third-wrapper {
  display: flex;
  margin: auto;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .home-post-wrapper .second-third-wrapper {
    width: 85%;
    flex-direction: row;
  }
}
.home-post-wrapper .second-third-wrapper .split {
  padding: 30px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .home-post-wrapper .second-third-wrapper .split {
    padding: 30px 0 80px 0;
	width: 50%;
  }
}

.home-post-wrapper .second-third-wrapper .split:last-child {
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) {
  .home-post-wrapper .second-third-wrapper .post:first-child {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .home-post-wrapper .second-third-wrapper .post:last-child {
    margin-left: 15px;
  }
}
.home-post-wrapper .second-third-wrapper .content-block {
  border: 1px solid #E4E4E4;
  border-radius: 20px;
  padding: 50px;
  width: inherit !important;
}
.home-post-wrapper .second-third-wrapper .content-block .text-content {
  padding-bottom: 0;
}
.home-post-wrapper .second-third-wrapper .content-block .text-content h3 {
  width: auto;
  padding-bottom: 25px;
}

.paragraph-block {
  margin: auto;
  text-align: center;
  padding: 45px 15px;
}
@media only screen and (min-width: 768px) {
  .paragraph-block {
    width: 80%;
    padding: 45px 0;
  }
}
.paragraph-block p {
  margin: 0;
  font-size: 22px;
  font-weight: 200;
  line-height: 120%;
  padding-bottom: 35px;
}
@media only screen and (min-width: 768px) {
  .paragraph-block p {
    font-size: 30px;
  }
}
.paragraph-block a {
  text-decoration: underline;
  text-transform: uppercase;
  color: #000;
  font-size: 16px;
  font-weight: 300;
}

.goToArchive {
  text-align: center;
  padding-bottom: 60px;
}
.goToArchive a {
  color: #000;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
}

@keyframes up-rotate {
  0% {
    animation-timing-function: cubic-bezier(0.16, -0.88, 0.97, 0.53);
    transform: translateY(0px);
  }
  30% {
    transform-origin: center;
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(-10px);
  }
  100% {
    transform-origin: center;
    transform: translateY(-10px) rotate(45deg) scale(0.9);
  }
}
@keyframes down-rotate {
  0% {
    animation-timing-function: cubic-bezier(0.16, -0.88, 0.97, 0.53);
    transform: translateY(0px);
  }
  30% {
    transform-origin: center;
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(10px);
  }
  100% {
    transform-origin: center;
    transform: translateY(10px) rotate(-45deg) scale(0.9);
  }
}
@keyframes hide {
  29% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
svg {
  width: 65px;
  z-index: 9999;
}
@media only screen and (min-width: 768px) {
  svg {
    width: 95px;
  }
}
svg.open #top-line {
  animation: down-rotate 0.6s ease-out both;
}
svg.open #bottom-line {
  animation: up-rotate 0.6s ease-out both;
}
svg.open #middle-line {
  animation: hide 0.6s ease-out forwards;
}
svg:hover {
  cursor: pointer;
}

#top-line,
#bottom-line,
#middle-line {
  transform-box: fill-box;
  transform-origin: center;
}

#site-navigation {
  position: fixed;
  top: -100%;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  transition: 0.6s;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
#site-navigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
#site-navigation ul li {
  margin-bottom: 16px;
}
#site-navigation ul li a {
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 24px;
}
@media only screen and (min-width: 768px) {
  #site-navigation ul li a {
    font-size: 45px;
  }
}
#site-navigation .custom-logo-link {
  position: absolute;
  top: 0px;
  left: 0;
  top: 0px;
  left: 0;
}
@media only screen and (min-width: 768px) {
  #site-navigation .custom-logo-link {
    top: 30px;
    left: unset;
  }
}
#site-navigation .custom-logo-link .custom-logo {
  width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (min-width: 768px) {
  #site-navigation .custom-logo-link .custom-logo {
    width: auto;
  }
}
#site-navigation.open {
  top: 0;
}

.content-page-wrapper {
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .content-page-wrapper {
    width: 80%;
  }
}
.content-page-wrapper h1 {
  font-size: 44px;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .content-page-wrapper h1 {
    font-size: 70px;
  }
}
.content-page-wrapper p {
  margin: 0;
  font-size: 16px;
  padding: 0 15px 32px 15px;
}
@media only screen and (min-width: 768px) {
  .content-page-wrapper p {
    font-size: 22px;
    padding: 0 0 32px 0;
  }
}
.content-page-wrapper img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  padding-bottom: 32px;
}
.financial_wrapper {
  	margin: auto;
	padding: 0 15px;
	margin-bottom: 85px;
}
@media only screen and (min-width: 768px) {
	.financial_wrapper {
		padding: 0 55px;
	}
}
.financial_wrapper h1 {
  font-size: 44px;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .financial_wrapper h1 {
    font-size: 70px;
  }
}
.financial_wrapper div {
  text-align: center;
  font-size: 22px;
  padding-bottom: 16px;
}
@media only screen and (min-width: 768px) {
	.financial_wrapper div {
	  padding-bottom: 32px;
	}
}
.financial_wrapper div p {
  margin: 0;
}
.financial_wrapper div a {
  color: #000;
}
.financial_wrapper .financial-content {
	display: flex;
	padding-bottom: 0;
	flex-direction: column-reverse;
}
@media only screen and (min-width: 768px) {
	.financial_wrapper .financial-content {
		flex-direction: row;
	}
}
.financial_wrapper .financial-content .financial-data {
	width: 100%;
	padding-bottom: 0;
}
@media only screen and (min-width: 768px) {
	.financial_wrapper .financial-content .financial-data {
		width: 60%;
	}
}
.financial_wrapper .financial-content .financial-data a {
	text-decoration: none;
    border-radius: 51px;
    border: 1px solid #000;
    padding: 12px 20px;
}
.financial_wrapper .financial-content .financial-data h3 {
	font-weight: 300;
}

.financial_wrapper .financial-content .financial-data .financial-row {
  	display: grid;
    gap: 1rem;
	width: fit-content;
    margin: auto;
}
@media only screen and (max-width: 768px) {
	.financial_wrapper .financial-content .financial-data .financial-row {
		grid-template-columns: repeat(1, 1fr) !important;
	}
}
.financial_wrapper .financial-content .financial-data .financial-row a {
	width: 110px;
}

.financial_wrapper .financial-content .financial-image {
	width: 100%;
	padding-bottom: 0;
	aspect-ratio: 510 / 340;
    object-fit: cover;
}
@media only screen and (min-width: 768px) {
	.financial_wrapper .financial-content .financial-image {
		width: 40%;
	}
}
.financial_wrapper .financial-content .financial-image img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.author_wrapper {
  margin: auto;
  padding-bottom: 80px;
}
@media only screen and (min-width: 768px) {
  .author_wrapper {
    width: 80%;
  }
}
.author_wrapper h1 {
  font-size: 44px;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .author_wrapper h1 {
    font-size: 70px;
  }
}
.author_wrapper .grid-container {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 16px;
	padding: 16px;
}
@media only screen and (min-width: 992px) {
	.author_wrapper .grid-container {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (min-width: 1200px) {
	.author_wrapper .grid-container {
		grid-template-columns: repeat(3, 1fr);
	}
}

.author_wrapper .grid-item {
	padding: 40px;
	text-align: center;
	border-radius: 8px;
	border: 1px solid #E4E4E4;
    border-radius: 20px;
}
.author_wrapper .grid-item a {
	text-decoration: none;
}
.author_wrapper .grid-item h3 {
	font-size: 30px;
    margin: 0;
    padding-bottom: 18px;
	font-weight: 400;
	color: #000;
}
.author_wrapper .grid-item img {
	width: 100%;
   	object-fit: contain;
	height: auto;
}
.author_wrapper .grid-item p {
	font-size: 16px;
    margin: 0;
    padding-bottom: 18px;
    color: #5B5B5B;
}

.hidden-item {
    display: none;
}
.load-more-wrapper {
    text-align: center;
    margin-top: 20px;
}
#load-more-btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
	background: transparent;
    color: #000;
    text-transform: uppercase;
    text-decoration: underline;
}

.posts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.full-post { flex: 0 0 100%; }
.half-post { flex: 0 0 calc(50% - 8px); }

.hidden-item { display: none; }

@media (max-width: 768px) {
    .half-post { flex: 0 0 100%; }
}

.blog h1 {
  font-size: 44px;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .blog h1 {
    font-size: 70px;
  }
}
@media only screen and (min-width: 768px) {
  .blog .second-third-wrapper .split {
    padding: 30px 0 0 0;
	width: 50%;
  }
}
.blog .second-third-wrapper .split:last-child {
  margin-bottom: 30px;
}
.thisIsLast {
	margin-top: 30px; 
}

.contact-page {
	margin-top: 80px;
}
.contact-page .contact-wrapper {
	margin: auto;
  	display: flex;
    flex-direction: column-reverse;
	padding: 0 15px 80px 15px;
	
}
@media only screen and (min-width: 768px) {
  .contact-page .contact-wrapper {
    width: 80%;
    flex-direction: row;
	padding: 0 0 180px 0;
  }
}

.contact-page .contact-wrapper details {
	font-size: 16px;
}
.contact-page .contact-wrapper details b {
	font-size: 18px;
}
	
.right-side-contact-page, .form {
	font-size: 18px;
    line-height: 38px;
	padding-top: 25px;
	text-align: center;
}
@media only screen and (min-width: 768px) {
  	.right-side-contact-page, .form {
		width: 50%;
		padding-top: 0;
		padding-right: 45px;
		text-align: left;
	}
}
.right-side-contact-page img {
	width: 100%;
    object-fit: cover;
	margin-bottom: 18px;
}   
.contact-page h1 {
  font-size: 44px;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .contact-page h1 {
    font-size: 70px;
  }
}
.contact-page .form .wpforms-container {
	margin: 0;
}
@media only screen and (min-width: 768px) {
  	.contact-page .form .wpforms-container {
		padding: 0 70px 50px 0;
	}
}
.wpforms-container input.wpforms-field-medium, textarea, .wpforms-container select,
.wpcf7 input, .wpcf7 select{
	max-width: unset !important;
	width: 100%;
	background-color: transparent !important;
    border: 1px solid #000 !important;
    border-radius: 0 !important;
}
.wpforms-container .wpforms-field-label {
	font-weight: normal !important;
    font-size: 17px !important;
}
#wpforms-119-field_1-container {
	padding-top: 0 !important;
}
.wpforms-submit, .wpcf7-submit {
	background-color: #000 !important;
    width: 100% !important;
    height: 55px !important;
}
.post.type-post header {
	position: relative !important;
	height: auto;
	z-index: 1 !important;;
}
.post.type-post {
    margin: auto;
	padding: 0 15px;
}
@media only screen and (min-width: 768px) {
  	.post.type-post {
		width: 80%;
		padding: 0;
	}
}
.post.type-post img {
	width: 100%;
    height: auto;
}
.post.type-post h1 {
  font-size: 44px;
   height: auto;
}
@media only screen and (min-width: 768px) {
  .post.type-post h1 {
    font-size: 70px;
  }
}
.post.type-post p {
	font-size: 16px;
}
@media only screen and (min-width: 768px) {
  	.post.type-post p {
		font-size: 22px;
	}
}
.post.type-post footer {
	display: none;
}


.go-to-arxeio {
	width: 96%;
	background-color: #2C2C2C;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
		margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  	.go-to-arxeio {
		width: 562px;
	}
}
.go-to-arxeio a {
	color: #fff;
	text-decoration: none;
}

.site-search {
	display: flex;
    align-items: anchor-center;
	padding-right: 50px;
	position: absolute;
    bottom: -10px;
    left: 15px;
}
@media only screen and (min-width: 768px) {
	.site-search {
		display: flex;
		align-items: anchor-center;
		padding-right: 35px;
		position: relative;
		bottom: unset;
		left: unset;
	}
}
.site-search form {
	position: relative;
}
.site-search form input {
	border: none;
    border-bottom: 1px solid #000;
    background-color: transparent;
	width: 200px;
}
.site-search form button {
    padding: 0;
    position: absolute;
	top: -3px;
    right: 0;
	border: none;
    background-color: transparent;
}
.site-search form button svg {
    width: auto;
}
.search.search-results main {
	margin-bottom: 80px;
	padding: 0 15px;
	margin-top: 20px;
}
@media only screen and (min-width: 768px) {
	.search.search-results main {
		margin-bottom: 150px;
		margin-top: 80px;
	}	
}
.search.search-results article .entry-header h2 a {
	color: #000;
	font-size: 16px;
}
@media only screen and (min-width: 768px) {
	.search.search-results article .entry-header h2 a {
		font-size: 19px;
	}	
}
.search.search-results article, .search.search-results .page-header {
	width: 100%;
}
.search.search-results article, .search.search-results .page-header h1 {
	font-size: 18px;
}
.search.search-results article {
	padding: 0 !important;
}
@media only screen and (min-width: 768px) {
	.search.search-results article, .search.search-results .page-header h1 {
		font-size: 22px;
	}	
}
@media only screen and (min-width: 768px) {
	.search.search-results article, .search.search-results .page-header {
		width: 80%;
		margin: auto;
		padding: 0;
	}
}
.timeline_wrapper {
	margin-bottom: 85px;
}
@media only screen and (min-width: 768px) {
	.timeline_wrapper {
		margin-bottom: 120px;
	}
}
.timeline_wrapper .content-block {
	display: flex;
    align-items: center;
	gap: 65px;
    width: 80%;
    margin: auto;
	margin-bottom: 45px;
	flex-direction: row;
}
.timeline_wrapper .content-block.reverse {
    flex-direction: row-reverse;
  }
.timeline_wrapper .content-block .text-content{
	    min-width: 30vw;
}
@media only screen and (max-width: 768px) {
	.timeline_wrapper .content-block {
		width: auto !important;
		padding: 0 15px !important;
		flex-direction: column !important;
	}
	.timeline_wrapper .content-block.reverse {    
    flex-direction: column !important;
  }
}
/* .timeline_wrapper .content-block .image-wrapper {
	margin-right: 65px;
} */
@media only screen and (max-width: 768px) {
	.timeline_wrapper .content-block .image-wrapper {
		margin-right: 0;
	}
	.timeline_wrapper .content-block .image-wrapper img {
		width: 100%;
		object-fit: contain;
		height: auto;
	}
}
@media only screen and (max-width: 768px) {
	.timeline_wrapper .content-block .text-content {
		width: auto !important;
	}
}
.content-left   { justify-content: flex-start; }
.content-center { justify-content: center; }
.content-right  { justify-content: flex-end; }

.timeline-decade-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0px 0 40px;
}
.timeline-decade-nav ul {
	display: flex;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0 16px;
	flex-wrap: wrap;
	justify-content: center;
}
.timeline-decade-nav a {
	display: inline-block;
	padding: 6px 10px;
	text-decoration: none;
	color: #000;
	font-size: 40px;
	font-weight: 700;
}
@media only screen and (max-width: 768px) {
	.timeline-decade-nav a {
		font-size: 21px;
	}
}
/* --------------------------
   TIMELINE NAV – DESKTOP
--------------------------- */
.timeline-decade-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  padding: 10px 0;
  transition: box-shadow 0.2s ease;
}

.timeline-decade-nav.is-sticky {
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.timeline-decade-nav ul {
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline-decade-nav a {
  text-decoration: none;
  padding: 6px 10px;
  color: #333;
  font-weight: 500;
  border-radius: 20px;
  transition: 0.2s;
}

.timeline-decade-nav a.active {
  background: #000;
  color: #fff;
}

/* --------------------------
   MOBILE CAROUSEL
--------------------------- */
@media (max-width: 768px) {
  .timeline-decade-nav ul {
    overflow-x: auto;
    white-space: nowrap;
    gap: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .timeline-decade-nav ul::-webkit-scrollbar {
    display: none;
  }
  .timeline-decade-nav li {
    flex: 0 0 auto;
  }
  .timeline-decade-nav a {
    padding: 8px 14px;
    font-size: 14px;
    background: #f5f5f5;
  }
  .timeline-decade-nav a.active {
    background: #000;
    color: #fff;
  }
}
