@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
:root{
--vDarkBrand :#38646d;
--vHighContrast :#1d4149;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ul,
li,
fieldset,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video{
  margin: 0;
	padding: 0;
	border: 0;}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section{
	display: block;}

body{
  background: #fff;
	font-family: 'figtree', Arial, Helvetica, Sans-Serif;
	font-size: 16px;
    font-weight: 400;
	line-height: 1.2;}

h1,
h2,
h3,
h4,
h5,
h6{
  font-family: 'Figtree';
  font-weight: 500;
  font-style: normal;}

ul{
	list-style: none;}

blockquote,
q{
	quotes: none;}

blockquote:before,
blockquote:after,
q:before,
q:after{
	content: '';
	content: none;}

table{
	border-collapse: collapse;
	border-spacing: 0;}

.nomargin{
	margin: 0!important;}

.nopadding{
	padding: 0!important;}

  .site-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  max-height: 160px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-color: var(--vDarkBrand); 
  padding: 10px 20px;
  box-sizing: border-box;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
}
.burger-menu {
  position: absolute;
  left: 20px;
  font-size: 28px;
  cursor: pointer;
  color: white;
  line-height: 1;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.logo-container img{
  display: block;
  width: 100%;max-height: 100%;
  max-width: 320px;
  height: auto;}

#burgerNavStyle{
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1005;
  margin-right: 5px;}

#burgerNavStyle span{
  display: block;
  position: absolute;
  width: 100%;
  height: 6px;
  background-color:#fff;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;}

#burgerNavStyle span:nth-child(1){
  top: 5px;}

#burgerNavStyle span:nth-child(2){
  top: 18px;}

#burgerNavStyle span:nth-child(3){
  top: 31px;}

#burgerNavStyle.active span:nth-child(1){
  transform: rotate(45deg);
  top: 18px;}

#burgerNavStyle.active span:nth-child(2){
  opacity: 0;}

#burgerNavStyle.active span:nth-child(3){
  transform: rotate(-45deg);
  top: 18px;}

.nav-menu{
  font-weight:900;
  position: fixed;
  top: 160px;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  background: rgba(255,255,255, 0.9);
  text-align: center;
  transition: height 0.3s ease-out;
  z-index: 1000;}

.nav-menu.open{
  height: calc(100vh - 128px);
  display: flex;
  flex-direction: column;
  align-items: center;}

.nav-menu ul{
  list-style:none;
  padding:0;
  width:100%;
  max-width:768px;
  margin:0 auto;}

.nav-menu ul li{
  padding: 5px 0;}

.nav-menu ul li a{
  color: var(--qPurple);
  margin:15px 0px;
  text-decoration: none;
  font-size: 1.875em;
  transition: color 0.3s;
  display: block;}

.nav-menu ul.primeNav li a{
  text-transform: uppercase;}

.nav-menu ul li a:hover{
  color: var(--vDarkBrand);}

.nav-menu ul li.active a{
  color:/* var(--vHighContrast) */ red;}


/* Default: Mobile-first */
.burger-menu {
  display: block;
}

.nav-menu {
  position: fixed;
  top: 150px;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  background: rgba(255,255,255, 0.9);
  text-align: center;
  transition: height 0.3s ease-out;
  z-index: 1000;
}

.nav-menu.open {
  height: calc(100vh - 128px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-body {
 display:block;
 width:100%;
 margin-top: 150px;
 background:#fff;}

/* DESKTOP: show nav as horizontal row, hide burger */

@media (min-width: 768px) {
  

  
  .page-body {
 display:block;
 width:100%;
 margin-top:175px;}
  
  .burger-menu {
    display: none;
  }

  .nav-menu {
    top:123px;
    font-weight: 600;
    position: absolute;
    bottom: 0;
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    background: var(--vHighContrast);
    padding-bottom: 0px;
    overflow: visible;
  }

  .nav-menu ul {
    display: flex;
    gap: 20px;
    max-width:1240px;
    align-items: center;
    justify-content: center;
  }

  .nav-menu ul li {
    padding: 0;
  }

  .nav-menu ul li a {
    font-size: 1.4em;
    margin: 0;
    color:#fff;
    font-weight:400;
   }
   .nav-menu ul.primeNav li a{
  text-transform: none;}
  .nav-menu ul li.active a{
  color:#c9f3fc;}
  
  
  
}


@media (max-width: 768px) {
    
    
    
      .logo-container img{

  max-width: 220px;
}
  
 .bannerContainer img{
  max-width: 220px;}
 
 
}

/* Layout frame */
div.bannerWrapper{
display:block;width:100%;
background:#f2f6f6;
    
}
  <div class="bannerContainer">

.bannerContainer {
  max-width: 1399px;
  margin-inline: auto;
  padding-inline: 16px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;   /* 50/50 split */
  align-items: stretch;             /* equal column heights */
  gap: 24px;
  min-height: 420px;                /* tweak as needed */
  padding-block: 48px;
}

/* Left column (text) */
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 1.2rem + 2vw, 3rem);
  line-height: 1.1;
}

.hero p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #444;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  margin-top: 8px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.hero__phone {
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

/* Right column (image) */
.hero__media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #ddd;
}

/* Critical bit: image fills available space and keeps aspect ratio */
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills column height while maintaining aspect */
  display: block;
}

/* Responsive: stack under 786px and put image below text */
@media (max-width: 786px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: unset;          /* let content decide height */
  }
  .hero__media {
    height: 48vw;               /* gives a nice responsive height on mobile */
    min-height: 240px;          /* safety floor for small devices */
  }
}


div.servicesWrapper {display:block;width:100%;padding-left:40px;padding-right:40px;background:#f2f6f6}
div.servicesContainer {display:block;width:100%;max-width:1299px;padding-top:40px;padding-bottom:40px;margin:0 auto;background:#f2f6f6;}

div.servicesBlockContainer {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 2.33%;
    justify-content: space-between;
    align-items: stretch;
    background:#f2f6f6;
}

div.serviceBlockContainer {
    display: block;
    width: 31%;
    padding: 10px;
    text-decoration: none;
    text-align: center;
    color: inherit;
    border: 1px solid var(--vDarkBrand);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);}
    
@media (max-width: 768px)
{
    div.serviceBlockContainer
    {
        width: 100%;
        margin-bottom: 20px;
    }
}
    
div.serviceBlockContainer img {display:block;max-width:120px;width:100%;margin:0 auto;padding-bottom:20px;}
div.serviceBlockContainer p {}
div.serviceBlockContainer p.serviceSub {}
div.serviceBlockContainer a {color:black;font-weight:bold}
div.serviceBlockContainer a:hover {color:red}