﻿@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

body {
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    padding-top: 70px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
p {
    line-height: 1.6;
    letter-spacing: 0.025em;
    margin-bottom: 5px;
}
p:last-child,
p:has(+a) {
    margin-bottom: 0 !important;
}
a {
    color: inherit;
}
img {
    max-width: 100%;
}
b, strong {
    font-weight: 500;
}

.maxPageWidth {
    width: 98%;
    margin: 0 auto;
    max-width: 1280px;
}

.actionButton {
    display: inline-block;
    background-color: #FFF;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    font-weight: 400;
    padding: 13px 20px 10px 20px;
    margin-top: 30px;
    line-height: 1;
}
.actionButton.primary {
    background-color: #000;
    color: #FFF;
}

.theMobileNav {
    display: none;
    position: absolute;
    top: 21px;
    right: 22px;
}
.theMobileNav i {
    font-size: 30px;
    cursor: pointer;
}

.mobileNavigaion {
    display: none;
    padding: 10px 0;
    width: 100%;
    position: fixed;
    top: 70px;
    left: 0;
    z-index: 100;
    background-color: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 4px rgba(0,0,0,0.4);
}

.mobileNavigaion .theLinks {
    list-style: none;
    margin: 15px 10px 0;
    padding: 0;
    text-align: center;
}

.mobileNavigaion .theLinks li a {
    text-decoration: none;
    font-size: 1.3rem;
    margin: 0 auto 15px;
    display: block;
    text-align: center;
}

.mobileNavigaion .iconLinks {
    list-style: none;
    margin: 15px auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobileNavigaion .iconLinks li {
    margin: 0 10px;
    font-size: 1.5rem;
}

header {
    position: fixed;
    background-color: rgba(255,255,255,0.8);
    padding: 15px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    top: 0;
    width: calc(100% - 20px);
    box-shadow: 0 0 4px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    z-index: 1000;
}
header img {
    height: 40px;
}
header .theLinksArea {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
header ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
header ul.menuLinks {
    margin: 0 20px 0 0;
}
header ul.menuLinks li {
    margin-right: 7px;
    padding-right: 7px;
    border-right: 1px solid #000000;
}
header ul.menuLinks li:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
header ul.menuLinks li a {
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    font-weight: 400;
}
header ul.menuLinks li.isActive a {
    font-weight: 800;
}

header .theLogo {
    display: flex;
    align-items: center;
    justify-content: center;
}
header .theLogo img {
    display: block;
}
header .theLogo .motif {
    margin: 0 8px 0 0;
}

header ul.iconLinks {
    font-size: 1.2rem;
}
header ul.iconLinks li {
    margin: 0 8px 0 0;
}
header ul.iconLinks li:last-child {
    margin-right: 0;
}

.homeHeroVideo {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: calc(100vh - 70px);
}
.homeHeroVideo iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
}

.sectionBackground {
    background-image: url('/images/template/background-grey.png');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
}


.centeredContent {
    text-align: center;
    padding: 150px 0;
}
.centeredContent h2 {
    text-transform: uppercase;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}
.centeredContent p,
.ourProjects .introText p {
    width: 70%;
    max-width: 600px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    text-align: center;
}
.centeredContent.closeTop {
    padding-top: 0;
}

.imageStrip ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.imageStrip ul li {
    width: 24%;
}
.imageStrip ul li img {
    width: 100%;
    aspect-ratio: 1/1;
    display: block;
    object-fit: cover;
    object-position: center;
}

.twoCol {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 150px 0;
}
.twoCol article {
    width: 48%;
}
.twoCol article.imgCol {
    width: 35%;
}
.twoCol article.textCol {
    width: calc(65% - 100px);
    padding: 20px 50px;
}
.twoCol h3,
.ourProjects .introText h3,
.centeredContent h3 {
    font-size: 2rem;
    margin: 0 0 30px;
    font-weight: 400;
}
.twoCol h3::after,
.ourProjects .introText h3::after,
.centeredContent h3::after {
    content: "";
    display: block;
    width: 25%;
    height: 2px;
    background-color: #000;
    margin: 30px auto 0 0;
}
.twoCol article.textCol p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    max-width: 650px;
}
.twoCol article.textCol h3 + p {
    font-weight: 500;
}
.twoCol article.textCol ul {
    padding: 0 0 0 20px;
    font-size: 1rem;
}
.twoCol article.textCol ul li {
    margin: 0 0 10px 0;
}


.ourProjects {
    padding: 50px 0 25px 0;
    margin-bottom: 125px;
}
.ourProjects .introText {
    text-align: center;
    padding: 0 0 75px;
}
.ourProjects .introText h3 {
    text-align: center;
}
.ourProjects .introText h3::after,
.centeredContent h3::after {
    margin: 30px auto 0;
}
.projectsList ul li:nth-child(n+4) {
    display: none;
}
.showAllOptions .projectsList ul li:nth-child(n+4) {
    display: block;
}

.projectsList ul {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: -50px;
}
.projectsList ul li {
    list-style: none;
    margin: 0 50px 75px;
    padding: 0;
    width: 25%;
}
.projectsList ul li img {
    width: 100%;
    aspect-ratio: 1/1.3;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 0 25px;
}
.projectsList ul li p.category {
    color: rgb(128, 128, 128);
}
.projectsList ul li h6 {
    font-size: 1.3rem;
}
.projectsList ul li p.location {
    font-weight: 400;
}


.factsAndFigures {
    padding: 75px 0 50px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    border-top: 1px solid rgb(128, 128, 128);
    border-bottom: 1px solid rgb(128, 128, 128);
    margin: 150px auto;
}
.factsAndFigures article {
    text-align: center;
    width: 30%;
}

.factsAndFigures p.theHeadline {
    font-size: 4.5rem;
    margin: 0 0 -10px;
    font-weight: 600;
    line-height: 1;
}
.factsAndFigures p.theContext {
    font-weight: 400;
    font-size: 1.3rem;
    color: rgb(128, 128, 128);
}

.pageHeaderImageArea {
    width: 100%;
    height: 25vh;
}
.pageHeaderImageArea img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.teamProfile {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 150px 0;
}
.teamProfile .imageCol {
    width: 28%;
}
.teamProfile .imageCol img {
    width: 100%;
    aspect-ratio: 1/1.3;
    display: block;
    object-fit: cover;
    object-position: center;
}
.teamProfile .textCol {
    width: 69%;
}
.teamProfile .textCol::after {
    content: "";
    display: block;
    width: 20%;
    height: 1px;
    background-color: rgb(128, 128, 128);
    margin: 30px auto 0 0;
}
.teamProfile .textCol .theHeader {
    padding: 0 0 15px;
    margin: 0 0 15px 0;
    border-bottom: 1px solid rgb(128, 128, 128);
    position: relative;
}
.teamProfile .textCol .theHeader h3 {
    margin: 0 0 5px 0;
    font-size: 1.8rem;
}
.teamProfile .textCol .theHeader p {
    line-height: 1;
    font-size: 1.3rem;
    margin: 0;
}
.teamProfile .textCol .theHeader .contactMethods {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    bottom: 15px;
    right: 0;
}
.teamProfile .textCol .theHeader .contactMethods li {
    margin: 0 0 0 10px;
    font-size: 1.3rem;
}
.teamProfile .textCol > p {
    margin: 0 0 15px 0;
}


.servicesList > article {
    padding: 20px 20px 40px;
    margin: 0 auto 20px;
    border-bottom: 1px solid rgb(128, 128, 128);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 110px;
}
.servicesList > article:last-child {
    margin-bottom: 0;
}

.servicesList > article .serviceNumber {
    font-size: 4rem;
    margin: 0 20px 0 0;
    line-height: 1;
    text-align: right;
    min-width: 50px;
}
.servicesList > article .serviceDetailsArea {
    flex-grow: 1;
}
.servicesList > article .serviceDetailsArea h4 {
    font-size: 1.8rem;
    margin: 0;
}
p.subtext {
    font-weight:500;
    margin: 0 0 20px 0;
}
.servicesList > article .serviceDetailsArea .serviceMoreDetails {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    margin: 30px auto 0;
}
.servicesList > article .serviceDetailsArea .serviceMoreDetails .text1 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 3;
    border-right: 1px solid rgb(225, 225, 225);
    margin: 0 30px 0 0;
}
.servicesList > article .serviceDetailsArea .serviceMoreDetails .text2 {
    padding: 0 0 30px 0;
    border-bottom: 1px solid rgb(225, 225, 225);
    margin: 0 0 30px 0;
}
.servicesList > article .serviceDetailsArea .serviceMoreDetails h6 {
    font-size: 1.1rem;
    margin: 0 0 20px 0;
    font-weight: 500;
    text-transform: unset;
}
.servicesList > article .serviceDetailsArea .serviceMoreDetails ul,
.projectDetailsArea .textCol ul {
    padding: 0 0 0 20px;
    font-size: 1rem;
}
.servicesList > article .serviceDetailsArea .serviceMoreDetails ul li,
.projectDetailsArea .textCol ul li {
    margin: 0 0 10px 0;
}



.internationalLocations {
    max-width: 1080px;
    margin: -5px auto 150px;
}
.internationalLocations ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.internationalLocations ul li {
    background: no-repeat center center;
    background-size: cover;
    margin: 0 20px;
}
.internationalLocations ul li.greyscale {
    filter: grayscale(100%);
}
.internationalLocations ul li a {
    width: 300px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
    flex-wrap: wrap;
}
.internationalLocations ul li h4 {
    font-size: 2rem;
    line-height: 1;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0,0,0,0.7);
    letter-spacing: 0;
    position: relative;
    top: 4px;
    width: 90%;
    text-align: center;
}
.internationalLocations ul li p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    text-shadow: 0 0 5px rgba(0,0,0,0.7);
    letter-spacing: 0;
    position: relative;
    top: 4px;
}


.projectDetails .theIntro {
    text-align: center;
    padding: 50px 0 15px 0;
}
.projectDetails .theIntro p.projectType {
    margin: 0 auto 15px;
}
.projectDetails .theIntro h2 {
    font-size: 2.5rem;
    margin: 0;
    line-height: 1;
}
.projectDetails .theIntro .projectIntroDetails {
    margin: 15px auto 0;
}
.projectDetails .theIntro p {
    font-weight: 300;
    font-size: 1.2rem;
}

.mainImageArea {
    margin: 0 auto 50px;
}
.mainImageArea img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.projectDetailsArea {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.projectDetailsArea .imageCol {
    width: 400px;
    margin: 0 50px 0 0;
}
.projectDetailsArea .imageCol img {
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
}
.projectDetailsArea .textCol {
    width: calc(100% - 450px);
}
.projectDetailsArea .textCol h3 {
    font-size: 1.3rem;
    margin: 30px 0 10px 0;
    text-transform: none;
}
.projectDetailsArea .textCol h3::after {
    content: "";
    display: block;
    margin: 10px 0 15px;
    width: 100%;
    height: 1px;
    background-color: rgb(225, 225, 225);
}
.projectDetailsArea .textCol h3:first-child {
    margin-top: 0;
}
.projectDetailsArea .textCol p {
    margin: 0 0 20px;
}
.projectDetailsArea .textCol p:first-child {
    font-weight: 400;
}
.projectDetailsArea .textCol ul {
    margin-bottom: 18px;
}
.projectDetailsArea .textCol p + ul {
    margin-top: -12px;
}


.contactFormArea {
    width: 90%;
    max-width: 650px;
}

.contactForm {
    margin: 0 auto 100px;
    padding-bottom: 50px;
}

.contactForm ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contactForm ul li:not(.buttonArea) {
    background-color: #FFF;
    border-radius: 8px;
    margin: 0 auto 10px;
    padding: 15px;
    font-weight: 300;
    border: 1px solid #000;
}

.contactForm ul li:not(.buttonArea) .theInputs {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.contactForm ul li label,
.contactForm ul li p {
    margin: 0 5px 0 0;
    position: relative;
    top: 5px;
    font-weight: 300;
}
.contactForm ul li label:has(+ input:focus-visible),
.contactForm ul li label:has(+ textarea:focus-visible),
.contactForm ul li p:has(+ input:focus-visible) {
    color: #000;
    font-weight: 400;
}
.contactForm ul li input[type="text"],
.contactForm ul li textarea {
    border: none;
    margin: 0;
    padding: 0;
    background-color: #FFF;
    flex-grow: 1;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    position: relative;
    top: 0;
    padding: 3px;
    border-bottom: 2px solid #FFF;
}
.contactForm ul li input[type="text"]:focus,
.contactForm ul li textarea:focus {
    font-weight: 400;
    outline: none;
    border-bottom: 2px solid #000;
}
.contactForm ul li textarea {
    height: 4rem;
}
.contactForm ul li .requiredError {
    width: 100%;
    text-align: right;
    margin: 10px 0 0 0;
    color: #e00000;
    font-weight: 400;
}
.contactForm ul li.buttonArea {
    text-align: center;
    padding: 10px 0 0 0;
}
.contactForm ul li:has(span[style*="display: inline;"]) {
    border: 2px solid #e00000;
}

.contactAddress p {
    margin: 0 auto;
}
.contactAddress p.location {
    font-size: 1.2rem;
    margin: 0 auto 5px;
}
.contactAddress p.telephone {
    font-size: 2.2rem;
    margin: 0 auto -5px;
}
.contactAddress p.email {
    font-size: 1.4rem;
    margin: 0 auto;
}
.contactAddress p a {
    text-decoration: none;
}

footer .contactStrip {
    background-color: #000;
    color: #FFF;
    font-size: 1.4rem;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    line-height: 1em;
    padding: 10px 20px 6px;
}
footer .contactStrip p {
    letter-spacing: 0.2em;
}
footer a {
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

footer .footerMainArea {
    padding: 35px 35px 15px;
    background-image: url('/images/template/background-white.png'), linear-gradient(to right, rgb(225, 225, 225), rgb(225, 225, 225));
    background-position: top -75px center, top center;
    background-repeat: no-repeat;
    background-size: 100% auto, cover;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

footer .footerMainArea .contactDetails {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
footer .footerMainArea .contactDetails .motifCol img {
    width: 125px;
    display: block;
    margin: 0 15px 0 0;
    position: relative;
}
footer .footerMainArea .contactDetails .detailsCol img {
    height: 75px;
    display: block;
    margin: 0 0 20px;
}
footer .footerMainArea .contactDetails .detailsCol p {
    margin-bottom: 10px;
    font-size: 1rem;
    max-width: 250px;
    line-height: 1.25em;
}

footer .footerMainArea .theLinks ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}
footer .footerMainArea .theLinks > ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    
}
footer .footerMainArea .theLinks > ul > li {
    margin: 0 20px 0 40px;
}
footer .footerMainArea .theLinks h3 {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin: 0 0 15px;
}
footer .footerMainArea .theLinks > ul > li ul li {
    margin: 0 0 5px 0;
}



footer .footerMainArea .legalText {
    width: 100%;
    text-align: center;
    margin: 40px auto 0;
}
footer .footerMainArea .legalText p {
    width: 70%;
    margin: 0 auto 5px;
    font-size: 0.8rem;
    max-width: 830px;
    line-height: 1.25em;
}

footer .footerMainArea .socialLinks {
    position: absolute;
    bottom: 13px;
    right: 20px;
}
footer .footerMainArea .socialLinks ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-content: flex-end;
    justify-content: flex-end;
}
footer .footerMainArea .socialLinks ul li {
    margin: 0 0 0 10px;
    font-size: 1.3rem;
}

footer .postFooter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
}
footer .postFooter p {
    margin: 0;
    font-size: 0.8rem;
}