:root{
--container: 75rem;         
--gutter: 1.5rem;
--ink: #12202a;
--muted: rgba(18, 32, 42, 0.7);
--navy: #243746;
--navy-2: #2f4556;
--light: #ffffff;
--soft: #f4f6f7;
--line: rgba(18, 32, 42, 0.16);
--radius: 0.75rem;
--shadow: 0 0.75rem 2rem rgba(0,0,0,0.18);
--btn-radius: 0.35rem;
}
*,
*::before,
*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
margin: 0;
font-family: Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 16px;
line-height: 1.5;
color: var(--ink);
background: var(--light);
}
img{
display: block;
max-width: 100%;
height: auto;
}
a{
color: inherit;
text-decoration: none;
}
a:focus-visible,
button:focus-visible{
outline: 0.2rem solid rgba(36, 55, 70, 0.45);
outline-offset: 0.2rem;
}
a:visited {
color: #fff;
opacity: 0.7;
}
.sr-only{
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0,0,0,0);
white-space: nowrap;
border: 0;
}
.container{
width: min(100%, var(--container));
margin-inline: auto;
padding-inline: var(--gutter);
} .topbar{
background: #1e2d39;
color: rgba(255,255,255,0.9);
}
.topbar__inner{
display: flex;
justify-content: flex-end;
align-items: center;
min-height: 2.25rem;
}
.topbar__links{
display: flex;
gap: 1.5rem;
list-style: none;
padding: 0;
margin: 0;
font-size: 0.875rem;
}
.header__nav {
background: #1e2d39;
}
.brand {
display: block;
width: 9rem;
margin: 2em 0;
}
.header__nav .brand {
display: none;
} .nav-toggle{
display: none; 
appearance: none;
border: 0;
background: transparent;
cursor: pointer;
padding: 0.75rem;
border-radius: 0.5rem;
}
.nav-toggle__bar{
display: block;
width: 1.75rem;
height: 0.15rem;
background: var(--navy);
border-radius: 999rem;
transition: transform 180ms ease, opacity 180ms ease;
}
.nav-toggle__bar + .nav-toggle__bar{
margin-top: 0.35rem;
} .nav-toggle.is-active .nav-toggle__bar:nth-child(1){
transform: translateY(0.5rem) rotate(45deg);
}
.nav-toggle.is-active .nav-toggle__bar:nth-child(2){
opacity: 0;
}
.nav-toggle.is-active .nav-toggle__bar:nth-child(3){
transform: translateY(-0.5rem) rotate(-45deg);
}
#primary-nav {
display: flex;
align-items: center;
}
.menu, .sub-menu{
list-style: none;
padding: 0;
margin: 0;
} #primary-nav >.menu { 
display: flex;
align-items: center;
gap: 3.3rem;
font-size: 0.95rem;
}
.menu-item {
position: relative; }
.menu-item a {
display: inline-flex;
align-items: center;
padding: 0.5rem 0.25rem;
color: #eee;
font-weight: 500;
}
.menu-item a:hover{
color: #fff;
}
.menu-item.menu-item-has-children {
display: flex;
align-items: center;
}
#primary-nav >.menu .sub-menu .menu-item {
padding: 0.5rem;
} .menu-item-has-children > a{
position: relative;
padding-right: 1.25rem;
} .menu-item-has-children > a::after{
content: "";
width: 0.5rem;
height: 0.5rem;
border-right: 0.12rem solid #ccc;
border-bottom: 0.12rem solid #ccc;
transform: rotate(45deg);
position: absolute;
right: 0.25rem;
top: 48%;
translate: 0 -60%;
opacity: 0.95;
} #primary-nav >.menu .sub-menu {
display: none;
min-width: 14rem;
background: #1e2d39;
border: 0.0625rem solid var(--line);
border-radius: 0;
box-shadow: var(--shadow);
}
#primary-nav >.menu li .sub-menu {
position: absolute;
top: 0;
left: calc(100% + 0rem);
}
#primary-nav >.menu >li>.sub-menu {
position: absolute;
top: calc(100% + 0rem);
left: 0;
}
#primary-nav >.menu .sub-menu a{
width: 100%;
padding: 0.6rem 0.75rem;
border-radius: 0.5rem;
}
#primary-nav >.menu .sub-menu a:hover{
background: rgba(36, 55, 70, 0.08);
} @media (min-width: 62em){
.menu-item-has-children:hover > li >.sub-menu{ display: block; }
li .sub-menu .menu-item-has-children:hover > li .sub-menu{ display: block; }
} #primary-nav li.menu-item.is-open > .sub-menu { display: block; }
li  .sub-menu .menu-item.is-open > li .sub-menu{ display: block; } .hero{
background: var(--soft);
}
.hero__grid{
display: flex;
min-height: 28rem;
}
.hero__content {
flex: 1 1 45%;
background: var(--navy-2);
color: rgba(255,255,255,0.95);
display: flex;
align-items: center;
justify-content: flex-end;
}
.hero__content-inner {
width: 40rem;
padding: 2rem 1.5rem;
max-width: 90%;
}
.hero h1 {
margin: 0 0 2rem;
font-size: 3.6em;
line-height: 1.1;
font-weight: 600;
}
.hero p{
margin: 0 0 2.5rem;
color: rgba(255,255,255,0.8);
max-width: 34rem;
}
.hero__media{
flex: 1 1 55%;
background: rgba(0,0,0,0.06);
}
.hero__media img{
width: 100%;
height: 100%;
object-fit: cover;
} .feature-bar {
margin-top: -5.5rem;
background: rgba(255,255,255,0.78);
backdrop-filter: blur(0.3rem);
border-radius: var(--radius);
box-shadow: var(--shadow);
display: flex;
justify-content: space-between;
gap: 1rem;
padding: 2.25rem 1.5rem;
}
.feature-bar__item{
display: inline-flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
flex: 1 1 0;
text-align: center;
padding: 0.5rem;
border-radius: 0.75rem;
}
.feature-bar__item {
display: flex;
justify-content: flex-end;
}
.feature-bar__item:hover{
background: rgba(36, 55, 70, 0.07);
}
.feature-bar__icon{
font-size: 1.4rem;
line-height: 1;
}
.feature-bar__label{
font-size: 0.875rem;
color: rgba(18, 32, 42, 0.75);
font-weight: 500;
} .btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 0.8rem 1.8rem;
border-radius: var(--btn-radius);
font-weight: 400;
font-size: 0.875rem;
letter-spacing: 0.16em;
text-transform: uppercase;
}
.btn--primary{
background: var(--navy);
color: var(--light);
border: 0.0625rem solid var(--navy);
}
.btn--outline{
background: transparent;
color: var(--navy);
border: 0.0625rem solid rgba(36, 55, 70, 0.35);
}
.btn--ghost {
background: transparent;
color: rgba(255,255,255,0.95);
border: 1px solid #fff;
opacity: 0.8;
transition: all 0.3s ease;
}
.btn--ghost:hover {
opacity: 1;
}
.btn.btn--white {
background: #fff;
border: 1px solid #333;
color: #333;
} .content-block{
background: #f1f1f0;
padding-block: 3.5rem;
}
.content-block__inner{
text-align: center;
}
.content-block h2{
margin: 0 0 1rem;
font-size: 1.5rem;
font-weight: 600;
}
.prose{
max-width: 56rem;
margin-inline: auto;
color: rgba(18, 32, 42, 0.75);
}
.prose p{
margin: 1rem 0 0;
font-size: 0.95rem;
}
.content-actions{
margin-top: 2rem;
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
} .contact-map{
padding-block: 3rem;
background: var(--light);
}
.contact-map__inner{
display: flex;
gap: 2rem;
align-items: stretch;
}
.contact-card{
flex: 0 0 28rem;
background: var(--light);
padding: 2rem;
}
.contact-card h3{
margin: 0 0 1.25rem;
font-size: 1.25rem;
font-weight: 600;
}
.contact-list{
list-style: none;
padding: 0;
margin: 0 0 1.5rem;
color: rgba(18, 32, 42, 0.75);
}
.contact-list li{
display: flex;
gap: 0.75rem;
align-items: flex-start;
margin: 0.75rem 0;
}
.contact-list__icon{
line-height: 1.2;
}
.map-frame {
flex: 1 1 auto;
min-height: 18rem;
background: rgba(0,0,0,0.06);
border-radius: 0;
line-height: 0;
overflow: hidden;
}
.map-frame iframe{
width: 100%;
height: 100%;
border: 0;
} #featured-news {
padding-block: 2.5rem 4rem;
background: var(--light);
}
#featured-news .container {
width: 90rem;
max-width: 100%;
}
.news-grid{
display: flex;
gap: 1.25rem;
}
.news-card{
flex: 1 1 0;
background: #f2f2f2;
border-radius: 0.5rem;
overflow: hidden;
display: flex;
flex-direction: column;
}
.news-card__media{
background: rgba(0,0,0,0.08);
}
.news-card__media img{
width: 100%;
aspect-ratio: 4 / 3;
object-fit: cover;
}
.news-card__body{
padding: 1.25rem;
display: flex;
flex-direction: column;
gap: 0.75rem;
flex: 1 1 auto;
}
.news-card__meta {
display: block;
font-size: 0.8rem;
color: #333;
background: rgb(255 221 226);
width: 7.2rem;
text-align: center;
}
.news-card__title{
margin: 0;
font-size: 1rem;
font-weight: 600;
line-height: 1.25;
}
.news-card__title a {
color: #333;
}
.news-card__excerpt{
margin: 0;
color: rgba(18, 32, 42, 0.7);
font-size: 0.9rem;
}
.news-card__cta{
margin-top: auto;
align-self: flex-end;
width: 2rem;
height: 2rem;
border-radius: 999rem;
background: rgba(18, 32, 42, 0.75);
color: #fff;
display: inline-flex;
align-items: center;
justify-content: center;
} .site-footer{
background: #e9ecec;
color: rgba(18, 32, 42, 0.85);
padding-top: 2.75rem;
}
.footer__inner {
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: space-between;
gap: 0;
padding-bottom: 2.5rem;
}
.footer__col{ }
.footer__col:first-child {
width: 45rem;
max-width: 100%;
}
.footer__col--right {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 1rem;
width: 15rem;
max-width: 100%;
}
.footer__title{
margin: 0 0 0.75rem;
font-weight: 600;
font-size: 0.95rem;
}
.footer__title--spaced{
margin-top: 1.75rem;
}
.footer-links{
list-style: none;
padding: 0;
margin: 0;
display: flex;
gap: 1.5rem;
flex-wrap: wrap;
font-size: 0.9rem;
}
.footer-links a {
color: #333;
}
.footer-contact{
list-style: none;
padding: 0;
margin: 0;
color: rgba(18, 32, 42, 0.75);
font-size: 0.9rem;
}
.footer-contact:last-child {
display: flex; justify-content: space-between;
}
.footer-contact li{
display: flex;
gap: 0.75rem;
margin: 0.6rem 0;
}
a.brand.brand--footer {
margin: 0;
width: 11rem;
}
.social{
list-style: none;
padding: 0;
margin: 0;
display: flex;
gap: 0.75rem;
}
.social a{
width: 2rem;
height: 2rem;
border-radius: 999rem;
background: rgba(255,255,255,0.15);
color: #333;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
}
footer .social {
margin-left: -0.7em;
width: 100%;
gap: 1.85rem;
}
footer .social a {
font-size: 1.1em;
}
.footer-bottom{
background: #1e2d39;
color: rgba(255,255,255,0.85);
}
.footer-bottom__inner{
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
padding-block: 0.85rem;
font-size: 0.85rem;
}
.footer-bottom__left{
display: flex;
gap: 1.25rem;
flex-wrap: wrap;
} .news-single{
width: min(100%, 75rem); margin-inline: auto;
padding: 3rem 1.5rem;
font-family: Helvetica, Arial, sans-serif;
color: rgba(0,0,0,0.85);
} .news-single__title {
font-size: 2rem;
line-height: 1.2;
font-weight: 600;
margin: 0 0 1rem;
}
.news-single__divider{
border: none;
height: 0.15rem;
background: rgba(0,0,0,0.1);
} .news-single__body{
display: flex;
gap: 2.5rem;
margin-top: 2.5rem;
align-items: flex-start;
} .news-single__media{
flex: 0 0 40%;
margin: 0;
}
.news-single__media img{
width: 100%;
height: auto;
display: block;
border-radius: 0.25rem;
} .news-single__content{
flex: 1 1 auto;
}
.news-single__content p{
margin: 0 0 1.25rem;
line-height: 1.4;
font-size: 0.95rem;
} .news-single__info{
margin-top: 2rem;
}
.news-single__content h3{
font-size: 1rem;
font-weight: 600;
margin-bottom: 1rem;
margin-top: 2rem;
} .news-single__content ol {
list-style: none;
padding: 0;
margin: 0;
counter-reset: info-counter;
}
.news-single__content ol  li{
counter-increment: info-counter;
display: flex;
align-items: flex-start;
gap: 0.75rem;
margin-bottom: 0.75rem;
font-size: 0.9rem;
line-height: 1.5;
}
.news-single__content ol  li::before {
content: counter(info-counter);
flex: 0 0 auto;
width: 1.4rem;
height: 1.4rem;
border-radius: 999rem;
background: rgba(0,0,0,0.85);
color: #fff;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 0.7rem;
font-weight: 600;
margin-top: -0.05em;
}
@media (min-width: 992px) and  (max-width: 1024px) {
.menu-item a {
font-size: 1.2em;
}
.news-grid { 
flex-wrap: wrap; 
}
.news-card { 
flex: 1 1 calc(50% - 0.625rem); 
}
.contact-map__inner { 
flex-direction: column; 
}
.contact-card { 
flex: 1 1 auto; 
}
.hero__grid {
flex-direction: column-reverse;
}
.hero__content {
justify-content: center;
}
.hero__content-inner {
width: 100%;
padding: 3rem 1.5rem 5rem;
}
.hero h1 {
font-size: 2.8em;
}
.hero p {
max-width: 100%;
}
.map-frame iframe {
height: 20rem;
} .news-single__body {
flex-direction: column;
}
} @media (min-width: 992px){ #primary-nav .menu-item-has-children:hover > .sub-menu{
display: block;
}
}
@media (max-width: 991px){
.news-grid { 
flex-wrap: wrap; 
}
.news-card { 
flex: 1 1 calc(50% - 0.625rem); 
}
.contact-map__inner { 
flex-direction: column; 
}
.contact-card { 
flex: 1 1 auto; 
}
.hero__grid {
flex-direction: column-reverse;
}
.hero__content {
justify-content: center;
}
.hero__content-inner {
width: 100%;
padding: 3rem 1.5rem 5rem;
}
.hero h1 {
font-size: 2.8em;
}
.hero p {
max-width: 100%;
}
.map-frame iframe {
height: 20rem;
} .news-single__body {
flex-direction: column;
}
.footer-contact:last-child {
flex-direction: column;
margin-bottom: 2rem;
}
}
@media (max-width: 767px){
body{
font-size: 13px;
}
.header__inner{ flex-wrap: wrap; }
.header__brand {
display: flex;
flex-direction: row;
width: 100%;
justify-content: space-between;
align-items: center;
}
.header__nav .container {
display: flex;
flex-direction: row;
width: 100%;
justify-content: space-between;
align-items: center;
} .nav-toggle {
display: flex;
flex-direction: column;
}
#primary-nav{
width: 100%;
display: none;
padding-top: 0.75rem;
}
#primary-nav.is-open{ display: block; }
#primary-nav >.menu {
flex-direction: column;
align-items: stretch;
gap: 0.25rem;
border-top: 0.0625rem solid var(--line);
padding-top: 0.75rem;
}
.menu-item a{
width: 100%;
padding: 0.75rem 0.5rem;
}
.menu-item.menu-item-has-children {
flex-wrap: wrap;
flex-direction: row;
}
.menu-item.menu-item-has-children a {
width: 90%;
} #primary-nav >.menu li .sub-menu {
position: static;
box-shadow: none;
border: 0;
background: rgb(0 0 0 / 12%);
border-radius: 0.1rem;
margin: 0.25rem 0 0.5rem;
width: 100%;
}
.hero__grid {
flex-direction: column-reverse;
}
.hero__content {
flex: 1 1 50%;
justify-content: center;
}
.hero__content-inner {
padding: 2rem 0.5rem 5rem;
}
.hero h1 {
font-size: 2.6rem;
}
.hero__media{ min-height: 16rem; }
.hero__media img {
max-width: 200%;
width: 120%;
margin-left: -10%;
}
.feature-bar{
flex-wrap: wrap;
gap: 0.75rem;
padding: 1rem;
}
.feature-bar__item{ flex: 1 1 calc(50% - 0.75rem); }
.prose p {
font-size: 1em;
line-height: 1.3;
}
.map-frame iframe {
height: 18rem;
max-height: 200%;
}
.news-card{ flex: 1 1 100%; } .news-single__body {
flex-direction: column;
}
.news-single__title {
font-size: 1.6rem;
}
.news-single__content p {
font-size: 0.8rem;
line-height: 1.3;
}
.footer-contact:last-child {
flex-direction: column;
margin-bottom: 2rem;
}
}
@media (max-width: 450px){
.feature-bar__item{ flex: 1 1 100%; }
.footer__inner{ flex-direction: column; }
}