/* @font-face{
	font-family: Signifier;
  src: url('../fonts/signifier-extralight.woff2') format('woff2');
	font-weight: 200;
	font-style:normal;
} */



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

:root{
  --white: #FFFFFF;
  --black: #000000;
  --accent-color: #1F4128;
  --accent-color-light: #DADFD3;

  --title-font: 'axia-stencil', sans-serif;;
  --body-font: 'basic-sans', sans-serif;
  --aside-width: 33.35vw;
  --aside-width: 25.5rem
}

html{
  font-size:20px;
  height: 100%;
  scroll-behavior: smooth;
}
body{
  font-size: 1.1rem;
  font-family: var(--body-font);
  font-weight: 300;
  line-height: 1.454;
  height: 100%;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}

#body{
  height: 100%;
}

footer{flex: 0 0 auto;}
main{
  flex: 1 0 auto;
  padding-bottom: 1.5rem
}

img {
	max-width: 100%;
	height: auto;
  display: block;
}

a {
	display: inline-block;
	text-decoration: none;
	/* transition:all 0.4s; */
  color:inherit;
}
a:hover{text-decoration:underline;}

p {
  margin-bottom: .75rem;
  /*margin-bottom:1rem;
	line-height:1.33; */
}
p:last-child {
	margin-bottom:0;
}
strong{font-weight: 600;}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6{
  font-family: var(--title-font);
  font-weight: 300;
  line-height: 1;
}



h1, .h1{font-size: 2.75rem;font-weight: 100;}/*55/44px*/
h2, .h2{font-size: 2.25rem;}/*45/px*/
h3, .h3{font-size: 2rem;}/*40/40px*/
h4, .h4{font-size: 1.75rem;}/*35/35px*/
/* h5, .h5{font-size: 1.3rem;line-height: 1.3;font-weight: 200;}26/4px */

.subtitle, 
.subtitle p{
  font-weight: 600;
  text-transform: uppercase;
}/*18px / 28px*/


button{cursor:pointer;}

.admin-bar {
  margin-top: 32px;
}

.btn{
  display: inline-flex;
}
.btn svg{
  display: flex;
  justify-content: center;
  background: var(--accent-color);
  border-radius:50%;
  width: 1.6rem;
  height: 1.6rem;
  padding: 0.475rem;
}
.btn svg *{
  fill:var(--white);
}
.btn span{
  margin-top: 0.1rem;
  margin-left: .4rem;
  text-transform: uppercase;
  font-weight: 600;
}
.btn:hover{
  text-decoration: none;
  opacity: .7;
}

.rounded-icon{
  border:1px solid var(--black);
  border-radius:50%;
  display: inline-flex;
}
.rounded-icon a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}
.preloader{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background:#fff;
  z-index: 30;
  pointer-events: none;
  opacity:1;
  display: flex;
  align-items:center;
  justify-content: center;
  animation-delay: 2s;
}




.mobile{display: none;}
.d-flex { display: flex;}
.align-right{margin-left: auto;}
.uppercase{text-transform: uppercase;}

/*************HEADER*************/

.site-header{
  background: var(--accent-color);
  position: fixed;

  top: 0;
  left: 0;
  /* height: 100vh; */
  height: calc(var(--vh) * 100);
  color: var(--white);
  padding-left: 1.5rem;
  padding-top: 2rem; 
  width: 6.5rem;
  z-index: 4;
}
.site-nav{
  /* width: 25.5rem; */
  width: var(--aside-width);
  background: var(--accent-color);
  /* height: 100vh; */
  height: calc(var(--vh) * 100);
  position: fixed;
  z-index: 3;
  top: 0;
  left: calc(6.5rem - 1px);
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically center the menu */
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  padding-bottom: 1.8rem;
  padding-top: 1.8rem;
  color: var(--white);
  transition: transform .4s ease;
}
.menu-toggler-wrap{
  position: absolute;
  margin-left: .25rem;
  top: 50%;
  transform:translateY(-50%);
}
.menu-toggler{cursor:pointer;}
.menu-open .site-nav{
  /* width: var(--aside-width);
  max-width: 32rem; */

}

#body:not(.menu-open) .site-nav{
  transform:translateX(-100%);
}


.main-content{
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-left: 6.5rem;
  padding-top: 6.5rem;
}

.menu-open .main-wrap, .menu-open .site-footer{
  margin-left: calc(var(--aside-width) - 6.5rem);
  margin-left: calc(var(--aside-width) - 1px);
}
.home .main-content, .home .main-wrap{padding: 0;}

.home.menu-open .main-wrap, 
.home.menu-open .site-footer{
  margin-left: 0;
}
.main-wrap, .site-footer{
  transition: all .4s ease;
}


.menu-toggler{
  position: relative;
  width: 3rem;
  height: 1.3rem;
  outline:none;
}
.menu-toggler span{
  display: block;
  width: 3rem;
  height: .1rem;
  background: var(--white);
  position: absolute;
  top: 0;
  transition: all 0.4s ease;
}
.menu-toggler span:nth-child(2){
  top: 50%;
}
.menu-toggler span:nth-child(3){
  top: 100%;
}


.menu-open .menu-toggler{
  width: 3rem;
  height: 3rem;
}
.menu-open .menu-toggler span{
  transform: rotate(135deg);
  top: 50%;
}
.menu-open .menu-toggler span:nth-child(2){transform: scale(0);}
.menu-open .menu-toggler span:last-child{
  transform: rotate(-135deg);
}


.header-menu-wrap {
  overflow-y: auto; /* Enable scrolling for long menus */
  max-height: 80vh; /* Maximum height to allow scrolling */
  flex-shrink: 1; /* Allow shrinking when content is too large */
  padding-bottom: 2rem; /* Bottom padding for scroll clearance */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

/* Custom scrollbar for menu */
.header-menu-wrap::-webkit-scrollbar {
  width: 4px;
}

.header-menu-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.header-menu-wrap::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.header-menu-wrap::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.main-menu{
  list-style:none;
}

.main-menu li a{
  font-size: 1.7rem;
  line-height: 1.29;
  font-family: serif;
  font-family: var(--title-font);
  padding-left: 0.8rem; /* Align all menu items */
  opacity: 1; /* Default: 100% white */
  transition: opacity 0.4s ease-in-out;
  position: relative;
}
.main-menu li a:hover,
.footer-menu li a:hover{text-decoration: none;}

/* Show bullet on hover for top-level menu items only (not submenu items) */
.main-menu > li:not(.menu-item-has-children) > a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: var(--white);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.main-menu > li:not(.menu-item-has-children) > a:hover::before {
  opacity: 1;
}

/* When active item exists (no hover), dim all other menu items */
.main-menu:has(.current_page_item):not(:has(li a:hover)) li a,
.main-menu:has(.current-menu-item):not(:has(li a:hover)) li a,
.main-menu:has(.current-menu-ancestor):not(:has(li a:hover)) li a,
.main-menu:has(.submenu-open):not(:has(li a:hover)) li a {
  opacity: 0.2;
}

/* Keep active items at 100% when no hover */
.main-menu:has(.current_page_item):not(:has(li a:hover)) .current_page_item > a,
.main-menu:has(.current-menu-item):not(:has(li a:hover)) .current-menu-item > a,
.main-menu:has(.current-menu-ancestor):not(:has(li a:hover)) .current-menu-ancestor > a,
.main-menu:has(.submenu-open):not(:has(li a:hover)) .submenu-open > a,
.main-menu:has(.current_page_item):not(:has(li a:hover)) .current_page_item .sub-menu li a,
.main-menu:has(.current-menu-item):not(:has(li a:hover)) .current-menu-item .sub-menu li a,
.main-menu:has(.current-menu-ancestor):not(:has(li a:hover)) .current-menu-ancestor .sub-menu li a,
.main-menu:has(.submenu-open):not(:has(li a:hover)) .submenu-open .sub-menu li a {
  opacity: 1;
}

/* Hover state: dim ALL menu items (including active ones) */
.main-menu:has(li a:hover) li a {
  opacity: 0.2 !important; /* All items turn to 20% white */
}

/* Keep hovered item at 100% - overrides everything */
.main-menu:has(li a:hover) li a:hover {
  opacity: 1 !important;
}

.main-menu .sub-menu li a{
  padding-left: 1rem;
}

.main-menu .sub-menu{
  list-style:none; 
  padding-left: 1.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  margin-bottom: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease, margin-bottom 0.3s ease;
  transition-delay: 0.2s; /* Add delay when closing */
}
.main-menu .current_page_item .sub-menu,
.main-menu .current-menu-item .sub-menu,
.main-menu .current-menu-ancestor .sub-menu,
.main-menu .menu-item-has-children.submenu-open .sub-menu{
  max-height: 500px; /* Adjust based on your max submenu height */
  opacity: 1;
  margin-top: 0rem;
  margin-bottom: 0.5rem;
  transition-delay: 0s; /* No delay when opening */
}

/* Hover effect removed - submenus only visible when parent/children are active */



/* Hide bullet by default */
.main-menu .menu-item-has-children > a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: var(--white);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

/* Show bullet for active parent items */
.main-menu .menu-item-has-children.submenu-open > a::before,
.main-menu .menu-item-has-children.current_page_item > a::before,
.main-menu .menu-item-has-children.current-menu-item > a::before,
.main-menu .menu-item-has-children.current-menu-ancestor > a::before {
  opacity: 1;
}

/* Show bullet on hover for parent items */
.main-menu .menu-item-has-children > a:hover::before {
  opacity: 1;
}

.main-menu .sub-menu li a { 
  font-family: var(--body-font);
  font-size: 1.3rem;
  line-height: 1.46;
  font-weight: 400;
}

/* Ensure submenu items never show bullets */
.main-menu .sub-menu li a::before {
  content: none !important;
  display: none !important;
}


.main-menu .current-menu-ancestor .sub-menu .current_page_item a,
.main-menu .sub-menu .current-menu-item a {  font-weight: 600; }


/*MENU ENDS*/
.page-title h1{padding-bottom: 1rem;}

.lang{
  position: absolute;
  bottom: 1.8rem;
  display: none;
}
.lang ul{
  list-style:none;
  display: flex;
}
.lang ul li:not(:last-child) {margin-right: .6rem;}
.lang ul li a:hover {text-decoration: none;}
.lang ul li.wpml-ls-current-language a span{font-weight: 600;}
.wpml-ls-legacy-list-horizontal a{padding: 0;}

/************ CTA LINK *************/
.cta-link{
  margin: 1rem 0;
}


/************* LOGO GRID *************/
.logo-grid img{
  max-width: 10.5rem;
  width: 100%;
  transition: all .4s ease;
}
.logo-grid a:hover{
  opacity:.5;
}

/* --------- TEXT WIDGET -------------- */
.page-title + .text-widget{margin-top: 3rem;}
.text-widget{
  margin-bottom: 2.5rem;
}
.text-widget span[style="text-decoration: underline;"]{
  text-decoration-thickness: 1px!important;
}
.text-widget a{
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.text-widget a:hover{
  text-decoration: none;
}
.text-widget ul{
  padding-left: 3rem;
  margin: 1.2rem 0;
}
.text-widget ul li{
  line-height: 1.7;
}
.text-widget ul li::marker{
  color: var(--accent-color);
}

/* --------- IMAGE WIDGET -------------- */
.image-widget{
  margin: 2.5rem 0;
}
.image-widget img{
  width: 100%;
  object-fit: cover;
}
.image-widget img.size-lg{
  height: 37.95rem;
}

.image-widget img.size-md{
  height: 18.75rem;
}
.image-widget img.size-sm{
  height: 15.65rem;
}


/* --------- AWARDS LIST WIDGET -------------- */
.awards-widget{
  margin-top: 3.5rem;
  margin-bottom: 2rem;
}
.awards-widget-list{
  list-style: none;
}
.awards-widget h2{margin-bottom: 2rem;}
.awards-widget-list li{margin-bottom: .75rem;}
.awards-widget-list a{text-decoration: underline;text-decoration-thickness: 1px;}
.awards-widget-list a:hover{text-decoration: none;}

/* --------- FULL HEIGHT RANDOM IMAGE WIDGET  -------------- */
.fullheight-image-widget img, .fullheight-image-widget video{
  height: 100vh;
  width: 100%;
  object-fit: cover;
}

.fullheight-image-widget video {
  display: block;
}

/* --------- INTRO IMAGE  -------------- */
.intro-image-widget{position: relative;}

.intro-image-widget .intro-image{
  width: 100%;
  height: 75vh;
  object-fit: cover;
}

.scroll-to {
  display: inline-flex;
  align-items: center;
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  text-transform: uppercase;
  color:var(--white);
  cursor:pointer;

}
.scroll-to span{
	display:inline-block;
	  margin-left: .9rem;
}
.scroll-to .rounded-icon {
  background: rgba(0,0,0,0.16);
  border-radius:50%;
  border: 1px solid #fff;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;

}
.scroll-to .rounded-icon svg{ transform: rotate(90deg) translateX(1px);}
.scroll-to:hover{
  text-decoration: none;
}



/*************TEAM WIDGET*************/
.team-widget{margin-top: .9rem;}
.team-widget .team-member-card{margin: 2.7rem 0 1.3rem 0;}
.team-widget .team-member-card a:hover{text-decoration: none;}


/*************TEAM MEMBER SINGLE PAGE*************/
.team-member{}
.team-member h1{
  text-transform: capitalize;
  margin-bottom: 4rem;
}

.team-member__desc p:not(:last-child){
  margin-bottom: .7rem;
}
.team-member-card > a{display: block;}
.team-member .team-member-card{
  margin-top: 4rem;
  margin-bottom: 1.2rem;
  max-width: 12.75rem;
}
.team-member-card__thumb{
  width: 12.75rem;
  height: 13rem;
  object-fit: cover;
}
.team-member-card ul{
  margin-top: .75rem;
  list-style:none;
  font-size: .9rem;
  line-height: 1.55;
  position: relative;
}
.team-member-card ul .rounded-icon{
  position: absolute;
  right: 0;
  top: .3rem;
}
.team-member-card ul .position{max-width:87%;}

/************* ACCORDION WIDGET *************/
.accordion-widget{margin-bottom: 2.5rem;}
.accordion-list{
  list-style:none;
}
.accordion-list li{
  border-top:1px solid var(--black);
}
.accordion-list li:last-child{  border-bottom:1px solid var(--black);}

.accordion-title{
  display: flex;
  justify-content: space-between;
  padding: .5rem 0 .3rem;
  cursor: pointer;
  margin-bottom: 0;
}
.accordion-title p{
  margin-bottom: 0;
}
.accordion-body{
  display: none;
  padding: .75rem 2.85rem 3rem;
}

.accordion-icon{
  position: relative;
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: .2rem;
	flex-shrink: 0;
	margin-left: .5rem;
}
.accordion-icon:before,
.accordion-icon:after{
  content:'';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  background: var(--black);
  transition: transform .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.accordion-icon:after{
  transform: rotate(-90deg);

}

.accordion-list li.active .accordion-icon:after{
  transform: rotate(180deg);
}

/*************QUOTE WIDGETS *************/
.quote{
  margin-bottom: 4rem;
}
.quote-content{
  max-width: 21rem;
  margin-left: 2rem;
}
.quote-content.wide{
  max-width: unset;
}
.quote-content span{
  font-size: 2.25rem;
  line-height: .62;
  font-family: var(--title-font);
  padding: .5rem .45rem .6rem;
  display: inline-block;
  border-bottom: 4px solid #fff;
  margin-left: -0.65rem;
}
.quote-content.style-has-bg span{
  color:#F0F0A3;
  background: var(--accent-color);
  display: inline-block;
  margin-left: -0.65rem;
}
.quote .quote-image img{
  object-fit: cover;
  width: 27rem;
  height: 100%;
}

/*************MAP WIDGET *************/
.map-widget{margin-bottom: 2.5rem;margin-top: 3.5rem;}

.map-widget a{display: block;}

.map-widget img{
  height: 18.75rem;
  width: 100%;
  object-fit: cover;
}

/*************PROJECTS WIDGETS*************/
.featured-projects{
margin-top: 3.3rem;
}
.featured-projects .project-card {margin-bottom: 4rem;}
.featured-projects .project-card:nth-child(even) > div:first-child{order:1}
.featured-projects .project-card a{display: block;}
.featured-projects .project-card a:hover{text-decoration: none;}
.featured-projects .project-card img{
  object-fit:cover ;
  width: 100%;
  height: 375px;
}
.featured-projects .project-card .project-title{ margin-top: -0.35rem; text-transform: uppercase;}
.featured-projects .project-card .project-title + p{margin-bottom: .65rem;}
.project-card .marked-intro, 
.featured-post .marked-intro{
  margin-top: 1.1rem;
}

.project-card {
  margin-bottom: 3.4rem;
}

.project-title{
  font-family: var(--body-font);
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.45;
}

.projects-grid-widget .projects-grid-widget-title{ margin-bottom: 2.3rem;}

.projects-grid-widget .project-card{ margin-bottom: 3.7rem;}
.projects-grid-widget .project-title{  
  font-size: .9rem;
  line-height: 1.55;
  margin-top: .08rem;
}
.projects-grid-widget .project-card a{display: block;}
.projects-grid-widget .project-card a:hover{text-decoration: none;}
.projects-grid-widget .project-card img{
  height: 12.7vw;
  height: 12.2rem;
  width: 100%;
  object-fit: cover;
}
.projects-grid-widget .project-title span{text-transform: uppercase;}

.project-category{
  font-size: .9rem; 
  display: block;
  margin-top: -.02rem;
}

.marked-intro{
  padding-left: 3.1rem;
  background: url('../images/arrow-large.svg') no-repeat;
  background-position: 0 .15rem;
}

/*************projects list widget*************/
.projects-list{
  margin-bottom: 2.5rem; 
}
.projects-list-widget h2{ margin-bottom: 3.7rem;}
.projects-list-widget h3{ margin-bottom: 3rem;}
.projects-list-widget h4{ margin-bottom: 2.4rem;}

.project-item{ 
  border-top:1px solid var(--black);
  padding: .4rem 0 .3rem;
}
.project-item > .row{  justify-content: space-between;}
.project-item:last-child{
  border-bottom:1px solid var(--black);
}
.project-item .project-item-link{text-decoration: underline;text-decoration-thickness: 1px;}
.project-item .project-item-link:hover{text-decoration: none;}
.project-item .project-year{text-align: right;}

.project-item-title{  position: relative; display: inline-block;}
.project-item .modal{
  display: none;
  position: absolute;
  z-index: 2;
  width: 17.3rem;
  top: -11.2rem;
  right: -19rem;
}
.project-item .modal img{
  width: 100%;
  height: 12.2rem;
  object-fit: cover;
}
.project-item .modal .modal-footer{
  background: var(--white);
  font-size: .9rem;
  line-height: 1.55;
  padding: .5rem .6rem .35rem;
}
.project-item .modal .modal-footer span{
  display: inline-block;
  text-transform: uppercase;
}



/*************ALL POSTS WIDGET*************/
.all-posts-widget{margin-top: 2.5rem;}

.all-posts-widget h2{
  padding-top: 0.8rem;
  padding-bottom: 1.5rem;
}

.all-posts-list{margin: 2.5rem 0;} 

.all-posts-list-item{
  border-top:1px solid var(--black);
  padding: .4rem 0 1.1rem;
}
.all-posts-list-item:last-child{
  border-bottom:1px solid var(--black);
}
.all-posts-list-item {
  display: block;  
  height: 100%;
}
.post-title{
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--body-font);
  line-height: 1.454;
}
/*************FEATURED POSTS WIDGET*************/
.featured-post .article-data{margin-bottom: .7rem;}
.featured-post .marked-intro{background-position: 0 .25rem;}

.featured-top{padding-top: 3.6rem;}
.featured-top .post-title{max-width: 21rem;}
.featured-post a:hover{
text-decoration: none;
}
.featured-thumb{
  height: 18.75rem;
  object-fit: cover;
}

.featured-list{
  padding-top: 4rem;
}
.featured-post .featured-list .list-item{margin-bottom: 3rem;display: flex;}
.featured-post .featured-list .author-thumb{margin-bottom: 0;margin-right: 1rem;} 
.featured-post .featured-list .article-data{margin-top: -.3rem;}
.featured-post .featured-list .post-title{margin-top: .7rem;}



/*************SINGLE POST*************/
.article .image-widget{
  margin: 3.5rem 0;
}
.article-title{
  margin-bottom: 6.3rem;
}
.article-data{margin-bottom: 1.3rem;}
.article-data p{margin-bottom: 0;}
.author-thumb{
  width: 6rem;
  height: 6rem;
  object-fit: cover;
  margin-bottom: .7rem;
}




/*************SINGLE PROJECT*************/
.single-project .main-content, .page-template-page-project-style .main-content,
.single-service .main-content, .page-template-page-project-style .main-content {
  padding-top: 0;
}

.project-intro-widget{padding: 5rem 0 2.7rem; position:relative; }
.project-intro-widget h1{margin-bottom: 2rem;}
.project-intro-widget .project-card {margin-bottom: 0;}

.project-intro-img{ width: 100%; object-fit: cover;}

/*************Project overview widget*************/
.project-overview-widget{
  padding: .8rem 0 4.2rem;
}
.project-overview-widget h2{margin-bottom: 2.55rem;}
.project-data{
  list-style:none;
}
.intro-image-widget + .project-overview-widget,
.intro-image-widget + .image-gallery{padding-top:5rem;}
.project-overview-widget + .project-intro-widget {padding-top:2rem;}

/*************Two Column widget*************/
.two-column-widget{margin-bottom: 3rem;}
.two-column-widget img{height: 100%; width: 100%;object-fit: cover;}
/* .two-column-widget .style-image-right > div:first-child{order:1;} */

/*************Contact us widget*************/
.contact-widget{
  padding: 3.6rem 0 0;
}
.contact-us-desc ul{
  list-style:none;
  margin-bottom: 2.5rem;
}
.contact-us-desc ul li{
  padding-left: 3rem;
  line-height: 1.8;
  position: relative;
}
.contact-us-desc ul li:before{
  content:'';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 1rem;
  background: url('../images/arrow-large.svg') no-repeat;
}

/*************Lightbox Gallery*************/
.image-gallery {
  margin-bottom: 3rem;
}
.image-gallery a{
  display: block;
  margin-bottom: .5rem;
}
.image-gallery img{
  /* height: 12.2rem; */
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
}
.pswp__counter,
.pswp--zoom-allowed .pswp__button--zoom {display: none!important;}


/*************SITE FOOTER*************/

.site-footer{
  font-size: .7rem;
  line-height: 1.71;
  padding: 2rem 0 0 0;
} 
.site-footer .primary-footer{
  padding-bottom: 1.68rem;
}
.site-footer .row {justify-content: space-between;}

.site-footer .site-logo{margin-right: .5rem;}
.site-footer .site-logo img {max-width: 3rem; width: 100%;}
.site-footer .contact-details{
  display: inline-block;
  border:1px solid;
  line-height: 1.28;
}

.site-footer .contact-details .contact-details-top{padding: 0.5rem .7rem 0.4rem; }
.site-footer .contact-details .contact-details-bottom div{ padding: 0.4rem .7rem 0.3rem; }
.site-footer .contact-details .contact-details-bottom{ border-top:1px solid ; }
.site-footer .contact-details .contact-details-bottom > div:not(:last-child){ border-right:1px solid ; }


.site-footer .right-column{align-self:flex-end; padding-top: 1rem;}
.site-footer .social-media{list-style:none; display: flex; }
.site-footer .social-media li{margin-right: .45rem;}
.site-footer .social-media li:last-child{margin-right:0;}
.site-footer .copy{font-size: .6rem; text-align: right;margin-top: .6rem;}

.site-footer .to-top-wrap{display: flex; justify-content: center; flex-grow: 1;}
.site-footer .to-top svg{transform: rotate(-90deg) translate(1px, .5px);}
.site-footer .to-top svg *{fill:var(--black); }

.site-footer .rounded-icon:hover{ opacity:.7; transition:all 0.4s;}

/*************Alternative footer*************/

.site-footer .alternative-footer{
  padding-top: 3.5rem;
  background: var(--accent-color-light);
  padding-bottom: 3rem;
  min-height: 400px;
}
.site-footer .alternative-footer .row{justify-content: flex-start;}

.site-footer .alternative-footer .footer-widget ul{
  list-style: none;
  padding-left: 0;
}
.site-footer .alternative-footer .footer-widget ul li{
  margin-bottom: 0rem;
}
.site-footer .alternative-footer .footer-widget ul li a{
  text-decoration: none;
  color: var(--accent-color);
  opacity: 0.5;
}
.site-footer .alternative-footer .footer-widget ul li a:hover{
  text-decoration: none;
}
.site-footer .alternative-footer .first-column ul li a{
  font-size: 1.7rem;
  line-height: 1.29;
  font-family: serif;
  font-family: var(--title-font);
  padding-left: 0.8rem; /* Align all menu items */
  opacity: 0.5; /* Default: 100% */
  transition: opacity 0.3s ease;
  position: relative;
}

.site-footer .alternative-footer ul li a:hover {
  color: var(--accent-color);
  opacity: 1;
}

/* When active item exists (no hover), dim all other menu items in FIRST COLUMN only */
.site-footer .alternative-footer .first-column:has(.current_page_item):not(:has(ul li a:hover)) ul li a,
.site-footer .alternative-footer .first-column:has(.current-menu-ancestor):not(:has(ul li a:hover)) ul li a,
.site-footer .alternative-footer .first-column:has(.submenu-open):not(:has(ul li a:hover)) ul li a {
  opacity: 0.5;
}

/* Keep active items at 100% when no hover in FIRST COLUMN */
.site-footer .alternative-footer .first-column:has(.current_page_item):not(:has(ul li a:hover)) .current_page_item > a,
.site-footer .alternative-footer .first-column:has(.current-menu-ancestor):not(:has(ul li a:hover)) .current-menu-ancestor > a,
.site-footer .alternative-footer .first-column:has(.submenu-open):not(:has(ul li a:hover)) .submenu-open > a,
.site-footer .alternative-footer .first-column:has(.current_page_item):not(:has(ul li a:hover)) .current_page_item .sub-menu li a,
.site-footer .alternative-footer .first-column:has(.current-menu-ancestor):not(:has(ul li a:hover)) .current-menu-ancestor .sub-menu li a,
.site-footer .alternative-footer .first-column:has(.submenu-open):not(:has(ul li a:hover)) .submenu-open .sub-menu li a {
  opacity: 1;
}

/* Hover state: dim ALL menu items in FIRST COLUMN only */
.site-footer .alternative-footer .first-column:has(ul li a:hover) ul li a {
  opacity: 0.5;
}

/* Keep hovered item at 100% in FIRST COLUMN */
.site-footer .alternative-footer .first-column:has(ul li a:hover) ul li a:hover {
  opacity: 1 !important;
}

/* Pseudo element for parent menu items in FIRST COLUMN only */
.site-footer .alternative-footer .first-column .menu-item-has-children > a {
  position: relative;
  padding-left: 0.8rem;
}

.site-footer .alternative-footer .first-column .menu-item-has-children > a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

/* Show bullet on hover for parent items */
.site-footer .alternative-footer .first-column .menu-item-has-children > a:hover::before {
  opacity: 1;
}

/* Show bullet for active parent items */
.site-footer .alternative-footer .first-column .menu-item-has-children.submenu-open > a::before,
.site-footer .alternative-footer .first-column .menu-item-has-children.current_page_item > a::before,
.site-footer .alternative-footer .first-column .menu-item-has-children.current-menu-ancestor > a::before {
  opacity: 1;
}

/* Hide bullet by default for items without children in first column */
.site-footer .alternative-footer .first-column ul > li:not(.menu-item-has-children) > a::before{
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show bullet on hover for items without children */
.site-footer .alternative-footer .first-column ul > li:not(.menu-item-has-children) > a:hover::before {
  opacity: 1;
}

/* Show bullet for active items without children */
.site-footer .alternative-footer .first-column ul > li.current_page_item:not(.menu-item-has-children) > a::before,
.site-footer .alternative-footer .first-column ul > li.current-menu-item:not(.menu-item-has-children) > a::before {
  opacity: 1;
}

/* Hide submenus by default in FIRST COLUMN only */
.site-footer .alternative-footer .first-column .sub-menu{
  list-style: none; 
  padding-left: 1.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  margin-bottom: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease, margin-bottom 0.3s ease;
  transition-delay: 0.2s; /* Add delay when closing */
}

/* Show submenu when parent is active or has submenu-open class in FIRST COLUMN */
.site-footer .alternative-footer .first-column .current_page_item .sub-menu,
.site-footer .alternative-footer .first-column .current-menu-ancestor .sub-menu,
.site-footer .alternative-footer .first-column .menu-item-has-children.submenu-open .sub-menu{
  max-height: 500px;
  opacity: 1;
  margin-top: 0rem;
  margin-bottom: 0.5rem;
  transition-delay: 0s; /* No delay when opening */
}

/* Hover effect removed - submenus only visible when parent/children are active */

/* Style submenu items in FIRST COLUMN */
.site-footer .alternative-footer .first-column .sub-menu li a { 
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
  padding-left: 0.5rem;
}

/* Ensure submenu items never show bullets in FIRST COLUMN */
.site-footer .alternative-footer .first-column .sub-menu li a::before {
  content: none !important;
  display: none !important;
}

.site-footer .alternative-footer .third-column ul li a,
.site-footer .alternative-footer .second-column ul li a{
  font-size: 1rem;
  font-weight: 400;
  padding-left: 0.8rem;
}


/*************404 page*************/
.error404 .btn-wrap {
  text-align: center;
  margin-top: 1.6rem;
}
.error404 .error-content{
  padding-top: 5rem;
}

/*FORMINATOR Styles*/
form.forminator-ui{display: block!important;margin-top:0!important;}
div.forminator_ajax{height:0;}
.forminator-edit-module{display: none;}

.forminator-button-submit{
  padding: .35rem 1.46rem!important;
  font-size: .9rem!important;
  background: var(--accent-color)!important;
  border:0!important;
  outline:0!important;
  color:var(--white)!important;
  font-weight: 300!important;
  font-family: var(--body-font)!important;
  margin-top: 1rem!important;
}
.forminator-button-upload{
  padding: .35rem .7rem!important;
  font-size: .8rem!important;
  font-weight: 300!important;
  border: 0!important;
  background: transparent!important;
  color: #000!important;
  border-right:1px solid !important;
  margin-bottom: 0!important;
  flex: 0 0 auto!important;
}
.forminator-button-submit:hover,
.forminator-button-upload:hover,
.forminator-button-upload:focus{
  box-shadow:none!important;
}
.forminator-field{
  border:1px solid var(--black)!important;
  border-bottom:none!important;
}
.forminator-row-last .forminator-field{
  border-left: 0!important;
  border-right: 0!important;
  border-top:0!important;
  text-align: right!important;
}
.forminator-file-upload > span{font-size:12px; color: #777771;}

.consent{cursor:pointer;}

::-webkit-input-placeholder { /* Edge */
  color: var(--black)!important;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--black)!important;
}

::-moz-placeholder {
  color: var(--black)!important;
}

::-ms-input-placeholder {
  color: var(--black)!important;
}

::placeholder {
  color: var(--black)!important;
}


.forminator-field input[type="email"], .forminator-field input[type="text"],  
.forminator-field textarea{
  outline:none!important;
  border:0!important;
  padding: .6rem .8rem!important;
  width: 100%!important;
  border-radius:0!important;
  -webkit-border-radius:0!important;
  font-size: .8rem!important;
  font-family: var(--body-font)!important;
  font-weight: 300!important;
  background: transparent!important;
  color:var(--black)!important;
}
.forminator-field input[type="email"], .forminator-field input[type="text"]{
  height: 1.9rem!important;
}
.forminator-field textarea{resize: none!important;}
.file-upload .forminator-field{
  /* border-left: 0!important; 
   border-right: 0!important; */
    /* padding-top: .5rem!important;  */
    border-bottom: 1px solid #000 !important;
  }

.forminator-field input[type="file"]{
  border:1px solid var(--black);
  border-radius:0;
}

.forminator-file-upload > span{font-weight: 300!important; }

.forminator-checkbox__label {padding-left: 1.2rem;}
.forminator-checkbox__label p{font-size: .65rem;}
.forminator-checkbox__wrapper{display: flex;}


.forminator-row.forminator-row-last{margin-bottom: 0!important;}

.forminator-error-message{font-size: .6rem;}
.forminator-response-message.forminator-error{display: none;}
.forminator-ui.forminator-custom-form[data-grid=open] .forminator-row:not(:last-child){margin-bottom: 0!important;}

.regular-h3 h3, .regular-h4 h4 {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.454;
  display: inline-block;
}

@media(max-width: 1740px){  
  .menu-open .main-wrap, .menu-open .site-footer{margin-left: 0;}
}


@media(max-width: 1199px){
  .team-member-card__thumb{width: 100%;height: 100%;aspect-ratio: 1 /1;}
}

@media(max-width: 1099px){
  .quote-content{margin-left: 1rem;}
}

/* TABLET */
@media(max-width: 1024px), /* iPad Pro Portrait */
only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {

  /* body.menu-open{
    height: 100%;
  } */

  h1, .h1{font-size: 2rem;}
  h2, .h2{font-size: 1.5rem;}
  h3, .h3{font-size: 1.25rem;}
  h4, .h4{font-size: 1rem;}

  .main-content{
    /* display: block;
    height: auto; */
    width: calc(100% - 2.45rem);
  }

  .site-header{
    padding-top: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    width: 2.45rem;
  }
  .site-nav{left: calc(2.45rem - 1px);padding-right: 0;padding-left: 0;}
  
  .menu-toggler-wrap{margin-left: 0;}
  .menu-toggler, .menu-open .menu-toggler{height: 1rem;}
  .menu-open .menu-toggler, .menu-toggler, .menu-toggler span{width: 1.45rem;}
  .main-content{
    margin-left: 2.45rem;
    padding-top: 1rem;
  }
  .intro-image-widget{margin-left: -.5rem;margin-right: -.5rem;}
  .image-widget img.size-lg{ height: 25rem; }
  .main-wrap, .site-footer .primary-footer{padding-left: .5rem;padding-right: .5rem;}
  .logo-grid .row{justify-content: space-between;}
  .logo-grid img{max-width: 8.5rem;}

}

/* MOBILE */
@media (max-width: 991.98px) {

  body{font-size: .9rem;}

  #body.home {overflow: hidden;} /*to fix 100vh on mobile emulation*/
  .desktop{display: none;}
  .mobile{display: block;}
  p:empty{display:none;}
  .featured-projects .project-card:nth-child(even) > div:first-child{order:0}
  .featured-projects .project-card .project-title{margin-top: .5rem;}

  .accordion-body{
    padding: .75rem 1rem 3rem;
  }
  .main-menu {margin-left: 1rem;}
  /*Intro image*/
  .intro-image-widget .intro-image{
	min-height:12.75rem;
	height:60vw;
  }
  .intro-image-widget .scroll-to{display:none;}

  /*Team widget*/
  .team-member-card{margin-bottom: 1.5rem;}
  .team-widget .team-member-card{margin: .7rem 0;}

  .marked-intro{
    padding-left: 2.1rem;
    background-position: 0 .25rem;
    background-size: 1.7rem;
  }
	
  .intro-image-widget + .project-overview-widget,
  .intro-image-widget + .image-gallery{padding-top:2rem;}
  .project-overview-widget + .project-intro-widget{padding-top:1rem;}
	
  .project-intro-widget{padding: 2rem 0 2rem;}
  .project-intro-widget h1{margin-bottom: 2rem;}
  .project-intro-img{margin-top: 1rem;}

  .projects-grid-widget .project-card{margin-bottom: 2rem;}
  .project-overview-widget{padding-bottom:2rem;}
	
  .projects-list-widget h2, .project-overview-widget h2,
  .projects-grid-widget .projects-grid-widget-title,
  .projects-list-widget h4{margin-bottom: 1.7rem;}

  .page-title + .text-widget,
  .awards-widget { margin-top: 1.8rem;}

  .awards-widget h2{margin-bottom: 1rem;}

  .featured-projects .project-card img{height: 50vw;}
  .image-widget{margin: 2rem 0;}	
  .featured-projects,
  .map-widget{margin-top: 2rem;}
  .team-widget{margin-top: 1.3rem;}

  .contact-widget{padding-top: 2rem;}
  .contact-form form{margin-bottom: 0!important;}
  .two-column-widget,
  .quote,
  .image-gallery{margin-bottom: 2rem;}

  .quote-content{max-width: 15rem;margin-left: .65rem;}
  .quote-content.style-simple{margin-left: 0.15rem;}
  .quote-content span{
    font-size: 1.35rem;
    padding: .4rem .45rem .4rem;
    border-bottom: 2px solid #fff;
  }
  .accordion-list{margin-top: 1rem;}

  .two-column-widget .style-image-right img{padding-top: 2rem;}
  .two-column-widget .style-image-left img{padding-bottom: 2rem;}

  .team-member h1{margin-bottom: 2rem;}
  .team-member__aside-img img{width: 100%; margin-bottom: 1rem;}

  .logo-grid img{max-width: 6.5rem;}

  .site-footer{padding-top: 2rem; padding-bottom: 0rem;}
  .site-footer .right-column{ width: 100%;padding-top: 2rem; flex: 0 0 auto;}
	.site-footer .right-column .to-top-wrap{ order: 1;flex-grow: 0;}
  .site-footer .d-flex{    justify-content: space-between;}
  .site-footer .contact-details .contact-details-top{padding: 0.5rem .3rem 0.4rem;}
  .site-footer .contact-details .contact-details-bottom div{padding: 0.4rem .3rem 0.3rem;}
  .site-footer .alternative-footer .footer-widget {margin-bottom: 1.5rem;}
  .site-footer .alternative-footer .footer-widget ul li a {display: inline-block;}

  .forminator-button-upload{width: auto!important; margin-right: .5rem!important;}

} /*992px*/

@media (max-width: 821px) {
  /*for iPads*/

}

@media (max-width: 767.98px) {

  h1, .h1{font-size: 1.5rem;}
  /* h2, .h2{font-size: 1.5rem;}
  h3, .h3{font-size: 1.25rem;}
  h4, .h4{font-size: 1rem;} */

  /* .main-menu-overlay{
    transform: translate(0,0);
    height: calc(var(--vh) * 100);
    width: calc(100% - 2.4rem);
  } */

  .site-nav{width: 100%;}
  .main-menu {margin-bottom: 0.5rem; margin-left: 1rem;}
  .main-menu .menu-item-has-children > a {
    padding-left: 1rem; /* Adjust space to bring pseudo element closer to text */
  }
  .main-menu li a{font-size: 1.2rem;}
  .main-menu .sub-menu li a{font-size: 1rem; padding-left: 0.3rem;}
  .lang{bottom: 1rem;}

  .quote .quote-image img{width: 100%;}
  .quote-content{max-width: 100%;margin-top: 1rem;}
  .quote-content span{font-size:6.5vw;}

  
  .accordion-icon{margin-top: 0;}

  .featured-post .featured-list .article-data{margin-top: .5rem;}
  .featured-post .featured-list .list-item{margin-bottom: 1rem;flex-wrap: wrap;}
  .featured-post .featured-list .author-thumb{width: 4rem;height: 4rem;}

  .featured-top{padding-top: 2rem;}
  .featured-thumb{height: 45vw;} 

  .featured-projects .project-card img{height: 47vw;}

  .article-title{margin-bottom: 2rem;}
  .article .image-widget{margin: 2rem 0;}
  .image-widget img.size-lg{ height: 15rem; }
  .image-widget img.size-md{ height: 12rem;}
  .image-widget img.size-sm{ height: 7rem; }


  .logo-grid img{max-width: 5rem;}

  .post-title{font-size: .9rem;}

  .text-widget ul{padding-left: 1.2rem;}
  .text-widget{margin-bottom: 2rem;}

  .all-posts-widget{margin-top: 2rem;}

  .all-posts-list{margin-top: 0;}

  .awards-widget-col:not(:last-child){margin-bottom: 2rem;}

  .site-footer .copy{text-align: left;}
} /*760px*/

@media (min-width:992px) and (max-width: 1280px){
	.quote-content span{font-size:3vw;}
}

@media (max-width: 376px) and (max-height:668px){


}


/*Large screens*/

@media (min-width: 1380px){
 

}
@media (min-width: 1480px){
 
}
@media (min-width: 1680px) and (max-height:998px){

}
@media (min-width: 1740px){

}
@media (min-width: 2000px){
  /* .menu-open .main-wrap, .menu-open .site-footer{margin-left: calc(var(--aside-width)/2);} */

} 


/*Touch hover*/
@media (hover: hover){

  .projects-tags .tag:hover{
    background: var(--black);
    color: var(--body-white);
  }

}
@media (pointer: coarse) {
  /* Code for touch devices */
  .forminator-checkbox input[type=checkbox]:checked::before{  left: 0; top: -.25rem; font-size:.5rem}
  #body.home {overflow: auto;} 
}

/*small height screen on laptop*/
@media (min-width: 1200px) and (max-height:800px){
  
  
}

/* For landscape layouts only */
@media only screen and (min-device-width: 320px) and (max-device-width: 1024px) and (orientation:landscape) {


}


@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) { 
   
}
@media screen 
and (min-device-width: 320px) 
and (max-device-height: 600px)   { 
   
}

/* Project Archive Layout */
.projects-archive {
}

.project-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.filter-chip {
    padding: 0.5rem 1rem;
    background: --accent-color-light;
    cursor: pointer;
    border-radius: 0;
    border: 0;
    border-radius: 100px;
}

.filter-chip.active {
    background: var(--accent-color);
    color: #fff;
    border-color: #000;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns for the cards */
    gap: 1rem 0rem; /* vertical gap, horizontal gap */
    margin: 3rem 0;
    align-items: start; /* Prevent items from stretching to match row height */
}

.projects-archive .project-card {
    display: grid;
    grid-template-columns: 1fr 1fr; /* image left, content right within each card */
    gap: 0.8rem;
    align-items: start; /* top aligned */
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.projects-archive .project-card:hover {
    text-decoration: none;
    opacity: 0.8;
}

.projects-archive .project-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Square aspect ratio */
    overflow: hidden;
}

.projects-archive .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.projects-archive .project-category-name {
    display: inline-block;
    margin-top: 0rem;
}

.category-name {
    color: var(--accent-color);
    font-weight: 400;
    font-size: 0.8rem;
}

.projects-archive .project-content {
    display: flex;
    flex-direction: column;
}

.projects-archive .project-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: 0.3rem;
    font-size: 0.75rem;
    color: var(--body-color);
}

.projects-archive .project-location,
.projects-archive .project-year {
    display: block;
}

.projects-archive .project-cta {
    margin-top: auto;
    padding-top: 0.5rem;
}

.projects-archive .project-cta svg {
    width: 32px;
    height: auto;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.projects-archive .project-card:hover .project-cta svg {
    opacity: 1;
}

.projects-pagination {
    margin-top: 3rem;
    text-align: center;
}

.projects-pagination a, .projects-pagination span {
    margin: 0 0.5rem;
}

.projects-pagination .prev-arrow,
.projects-pagination .next-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 19px;
    vertical-align: middle;
}

.projects-pagination .prev-arrow svg,
.projects-pagination .next-arrow svg {
    width: 100%;
    height: 100%;
}

.projects-pagination .prev-arrow {
    transform: rotate(180deg);
}

/* Project Archive Responsive - Must come after desktop styles */
@media(max-width: 1000px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr; /* 2 columns on tablet/mobile */
    gap: 1.5rem 0.8rem;
  }
  
  .projects-archive .project-card {
    grid-template-columns: 1fr; /* Stack: image on top, content below */
    gap: 0.3rem;
    margin-bottom: 0;
    align-items: start;
  }
  
  .projects-archive .project-content {
    height: auto;
    justify-content: flex-start;
  }
  
  .projects-archive .project-cta {
    margin-top: 0.5rem;
    padding-top: 0;
  }
  
  .projects-archive .project-title {
    font-size: 0.75rem;
    line-height: 1.2;
    margin-top: 0;
  }
  
  .projects-archive .category-name {
    font-size: 0.65rem;
  }
  
  .projects-archive .project-meta {
    font-size: 0.65rem;
    margin-top: 0.2rem;
  }
  
  .projects-archive .project-cta svg {
    width: 24px;
  }
  
  .projects-archive {
    padding: 2rem 1rem;
  }
}

@media (max-width: 600px) {
  .projects-grid {
    gap: 1rem 0.5rem;
  }
  
  .projects-archive .project-title {
    font-size: 0.7rem;
  }
  
  .projects-archive .category-name {
    font-size: 0.6rem;
  }
  
  .projects-archive .project-meta {
    font-size: 0.6rem;
  }
  
  .projects-archive .project-cta svg {
    width: 20px;
  }
}
