/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');

/* COLORS */
:root {
    --cream:#F4F3F0;
    --pink:#DEDBD3;
    --pearl:#F9F8F6;
    --light-pearl:rgba(249,248,246, 0.5);
    --light-orange:rgba(210, 150, 45, 0.15);
    --mid-orange:#DFC89F;
    --orange:#E2AA24;
    --gray:#B6CBD8;
    --off-white:#EFF1F2;
    --white:#FFFFFF;
    --bluegray:#3F6983;
    --black-400:#24324C;
    --dark-gray:#606776;
    --black:#1B2232;
}


/* General */
html {
  font-size: 100%;
  scroll-behavior: smooth;
  height: auto;
}
body {
    font-size: 1.125rem;
	font-family: "Inter", sans-serif;
	font-weight: 400;
	font-style: normal;
    color: var(--black);
    background:var(--white);
    overflow-x:hidden;
}
h1, .h1-title, h2, .h2-title, h3, .h3-title, h4, .h4-title{
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-style: normal;
}
h1, .h1-title {
    font-size: 4rem;
    line-height: 0.95;
    margin-bottom: 15px;
}
h2, .h2-title{
	font-size: 3rem;
	font-style: normal;
	line-height: 100%; 
    margin-bottom: 15px;
}
h3, .h3-title{
	font-size: 1.75rem;
	font-style: normal;
	line-height: 100%; 
    margin-bottom: 15px;
}
h4, .h4-title {
    font-size: 1.375rem;
    margin-bottom: 9px;
    line-height: 130%;
}
.eyebrow{
    color: var(--dark-gray);

    font-size: 0.875rem;
    font-weight: 500;
    line-height: 142.857%;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.button, .wpcf7-submit {
	border-radius: 100px;
    background: var(--orange);
    display: inline-flex;
    padding: 12px 33px;
	opacity: 1;
	text-align: center;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
    color: var(--black);
    letter-spacing: 0.35px;
    transition: opacity 0.5s;
}

.button:hover, .button:focus, .wpcf7-submit:hover, .wpcf7-submit:focus{
	opacity: .8;
	text-decoration: none;
	color: var(--black);
}
a, a:hover, a:focus{
	color: var(--bluegray);
    text-decoration: underline;
}
a:hover, a:focus{
    transition: opacity 0.35s;
    color: var(--bluegray);
    opacity: 0.8;
}
.gradient-gray{
    background: linear-gradient(270deg, rgba(63, 105, 131, 0.00) 0%, rgba(63, 105, 131, 0.80) 50%, #3F6983 100%);
}
p.section-intro {
    font-size: 1.125rem;
    color: var(--dark-gray);
}
section {
	padding: 120px 0px;
}


/* Header */
header .main-logo {
    max-width: 253px;
}
header .navbar {
    background: var(--white);
    padding: 14px 40px;
    border-right: 0px;
    border-left: 0px;
    border-bottom: 0px;
}
header .container-nav {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
    background: var(--white);
    max-width: 1440px;
    margin: auto;
}
header .navbar-nav{
	margin-left: 10px;
    width: 100%;
}
header .navbar-expand-lg .navbar-nav{
    justify-content: end;
}
header .nav-item {
    margin-left: 32px;
}
header .navbar-light .navbar-nav .nav-link{
	color: var(--black);
    font-size: 0.938rem;
    text-decoration: none;
}
header .navbar-light .navbar-nav .nav-link:hover, header .navbar-light .navbar-nav .nav-link:focus{
	    color: var(--bluegray);
    text-decoration: underline;
}
header .navbar-brand{
	padding: 0px;
}
header .navbar-light .navbar-nav .button{

    padding: 10px 20px;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	background: var(--orange);

	font-size: 0.875rem;
	font-weight: 500;
    letter-spacing: ;
}
header .navbar-light .navbar-nav .button .nav-link, header .navbar-light .navbar-nav .button .nav-link:hover, header .navbar-light .navbar-nav .button .nav-link:focus{
	color: var(--black);
    padding: 0px;
    text-decoration: none;
}
header .navbar-light .navbar-nav .current-menu-item .nav-link {
    color: var(--bluegray);
    text-decoration: underline;
}


/* footer */
footer{
    background: var(--black-400);
    padding: 35px 0;
}
footer .copy{
	color: var(--light-pearl);
	text-align: left;
	font-size: 0.875rem;
    margin-bottom: 0px;
    line-height: 30px;
}
footer .address{
    color: var(--light-pearl);
    text-align: right;
    font-size: 0.875rem;
    margin-bottom: 0px;
}
footer .wrapper{
    display: flex;
    flex-direction: row;
    gap:24px;
    align-items: center;
    justify-content: right;
}
footer .social{
	margin-left: 0px;
    margin-top: 0px;
}
footer .social-link{
	margin-right: 8px;
	max-width: 30px;
	height: 30px;
}
footer .social-link:hover, footer .social-link:focus{
	opacity: 0.8;
}
footer .social-link .icon{
	width: 30px;
	height: 30px;
	object-fit: contain;
}


/* Homepage */
.home-hero {
    position: relative;
    color: var(--white);
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.home-hero .hero-intro {
    max-width: 460px;
}
.home-hero .hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.home-hero .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(270deg, rgba(63, 105, 131, 0.00) 0%, rgba(63, 105, 131, 0.80) 50%, #3F6983 100%);
}

.home-hero .hero-content {
    position: relative;
    z-index: 3;
}
.home-hero .hero-content .eyebrow {
    color: var(--white);
}
.home-hero h1.hero-title {
    line-height: 100%;
}
.home-hero .hero-intro p {
    margin-bottom: 32px;
    font-size: 1.25rem;
}
.hero-title i {
    color: var(--mid-orange);
    font-weight: 500;
}
.home-services {
    background: var(--pearl);
    position: relative;
}

.home-services .bg-shape {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 416px;
    height: 440px;
    background: url('./img/bg-graphic.webp') no-repeat center;
    background-size: contain;

}

.services-grid {
    margin-top: 34px;
}

.service-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 36px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--pink);
    margin-bottom: 24px;
    height: calc(100% - 24px);

}
.service-card.expanded-card{
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.service-card.expanded-card .top-content{
    display: flex;
    align-items: center;
    gap: 16px;
}
.service-card.expanded-card .desc p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--dark-gray);
}

.service-icon {
    width: 50px;
    height: 50px;
}

.service-title {
    font-size: 1.375rem;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    margin: 0;
    line-height: 130%;
    color: var(--black);
}
.home-about.blue-bg {
    background: var(--bluegray);
    color: var(--white);
}

.home-about .about-img {
    border-radius: 14px;
    width: 100%;
}

.home-about h2 {
    color: var(--white);
    margin-top: 10px;
}

.home-about .about-intro {
    margin: 0px 0 32px;
    max-width: 520px;
    line-height: 160%;
}
.home-about .about-intro > p {
    font-size: 1.125rem;
}
.home-about .about-wrapper{
    padding: 0 60px 0 78px;
}
.home-about .link {
    color: var(--white);
    margin-left: 20px;
}
.services-cta {
    margin-top: 16px;
}
.insurance-page .banner .banner-img{
	position: absolute;
    top: 0;
    right: 0;
    width: 56%;
    height: 100%;
}
.insurance-page .banner .overlay{
	background: linear-gradient(293deg, #00B3B3 -5.46%, #008C8C 18.83%, #066 63.24%);
}


/* Contact page */
.contact-page .form-section {
    background: url('./img/contact-bg-graphic.webp') no-repeat bottom right var(--pearl);
    background-size: 482px;
        padding-top: 200px;
}
.contact-page .form-section .intro{
    max-width: 260px;
    color: var(--dark-gray);
}
.contact-page .form-section .title{
    color: var(--black);
    font-weight: 500;
    margin-top: 24px;
}
.contact-page .form-section .phone {
    padding-left: 32px;
    background: url('./img/phone-icon.svg') no-repeat top 2px left transparent;
}
.contact-page .form-section .email {
    padding-left: 32px;
    background: url('./img/email-icon.svg') no-repeat top 4px left transparent;
}
.contact-page .form-section .address {
    padding-left: 32px;
    background: url('./img/office-icon.svg') no-repeat top 2px left transparent;
}
.contact-page .form-section .address .info {
    font-size: 1rem;
    color: var(--dark-gray);
}
.contact-page .form-section .phone a, .contact-page .form-section .email a{
     font-size: 1rem;
    color: var(--dark-gray);
}
.contact-page .background-img {
    aspect-ratio: 1440 / 500;
    position: relative;
}
.contact-page .background-img .overlay{
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(270deg, rgba(63, 105, 131, 0.00) 0%, rgba(63, 105, 131, 0.80) 50%, #3F6983 100%);
}
.contact-page .form-wrap {
    border-radius: 12px;
    border: 1px solid rgba(222, 219, 211, 0.40);
    background: var(--white);
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.10);
    padding: 70px 80px 70px;
    margin-left: 50px;
}
.contact-page .form-wrap input[type="text"], .contact-page .form-wrap input[type="tel"], .contact-page .form-wrap input[type="email"], .contact-page .form-wrap textarea {
    border-radius: 5px;
    border: 1px solid var(--pink);
    color: var(--dark-gray);
    background: var(--white);
    width: 100%;
    padding: 12px 16px !important;
    height: 48px !important;
    margin-top: 8px !important;
    font-size: 1rem !important;
}
.contact-page .form-wrap textarea{
    min-height: 127px;
}
.contact-page .form-wrap input[type="text"]:active,.contact-page .form-wrap input[type="text"]:focus, .contact-page .form-wrap input[type="tel"]:active, .contact-page .form-wrap input[type="tel"]:focus, .contact-page .form-wrap input[type="email"]:active, .contact-page .form-wrap input[type="email"]:focus, .contact-page .form-wrap textarea:active, .contact-page .form-wrap textarea:focus {
    background: var(--cream);
    color:var(--dark-gray);
    outline: none;
}
.contact-page .form-wrap .wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
}
.contact-page .wpcf7-form-control.wpcf7-submit {
    border: 0px;
    font-size: 1rem;
    font-weight: 500;
}
.contact-page label{
    width: 100%;
    font-size: 1rem;
    color: var(--dark-gray);    
    margin-bottom: 0px;
}
.contact-page .form-wrap p {
    margin-bottom: 30px;
}
.contact-page .form-wrap .submit-wrap p {
    margin-bottom: 0px;
}
.contact-page .submit-wrap p{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.contact-page .submit-wrap .wpcf7-spinner{
    order: -1;
}
.contact-page .wpcf7 form.invalid .wpcf7-response-output{
    display: none;
}
.contact-page .map-block {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(63, 105, 131, 0.2);
  margin-top: 10px;
}

.contact-page .map-embed {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.contact-page .map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
    filter: brightness(0.95) opacity(0.85);
}

.contact-page .map-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--bluegray);
  color: var(--white);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.contact-page .map-footer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--bluegray);
}

.contact-page .map-footer svg { margin-top: 3px; flex-shrink: 0; }

.contact-page .map-footer p {
  margin: 0;
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.5;
}

.contact-page .map-footer a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.contact-page .map-footer a:hover { text-decoration: underline; }

/* Why */
.why-page .home-hero {
    padding: 180px 0 100px 0;
    min-height: auto;
}
.why-page .home-about.focus-section h2, .why-page .home-about.expertise-section h2{
    color: var(--black);
}
.why-page .home-about .text-wrap{
    display: flex;
    gap:10px;
    align-items: center;
    flex-direction: row;
}
.why-page .home-about.expertise-section .about-wrapper, .why-page .home-about.focus-section .about-wrapper {
    padding: 0 0 0 80px;
}
.why-page .home-about.comm-section .about-wrapper {
    padding: 0 80px 0 0;
}
.why-page .expertise-section, .why-page .focus-section{
    background: var(--pearl);
    color: var(--dark-gray);
}

/* Offer */
.offer-page .home-hero{
    padding: 180px 0 170px 0;
    min-height: auto;
}
.thank-page .overview {
    padding: 200px 0;
}
.thank-page h1{
	margin-bottom: 50px;
}
.wpcf7 form.sent .wpcf7-response-output{
	display: none;
}

.thank-page {
    background: var(--pearl);
}
.thank-page .content-box p {
    color: var(--dark-gray);
}

/* FIRM PAGE */

.firm-page h1 {
    margin-bottom: 20px;
}

.firm-page .section-intro {
    max-width: 620px;
    margin: 0 auto;
    color: var(--dark-gray);
    line-height: 1.7;
}
.firm-page .section-intro p{
    color: var(--dark-gray);
}

.firm-page .firm-team {
    background: var(--pearl);
    padding: 200px 0 120px;
}

.firm-page .team-card-wrap {
    margin-top: 60px;
    text-align: center;
}
.firm-page .container.container-team {
    max-width: 970px;
}
/* CARD */

.firm-page .team-card {
    display: block;
    text-decoration: none;
    color: var(--black);
}

.firm-page .team-card:hover .img-wrap:after {
    opacity: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.firm-page .team-card .img-wrap:after {
    content: "Read Bio";
    background: url(./img/arrow-white.svg) no-repeat top 6px right transparent;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    width: 103px;
    height: 20px;
    position: absolute;
    text-align: left;
    opacity: 0;
    left: 50%;
    margin-left: -52px;
    top: 50%;
    margin-top: -20px;
}
.firm-page .team-card:hover .img-wrap::before {
    content: '';
    background: linear-gradient(180deg, rgba(122, 157, 177, 0.90) 0%, rgba(63, 105, 131, 0.90) 50%, rgba(36, 50, 76, 0.90) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.firm-page .team-card:hover .img-wrap::before{

}
.firm-page .team-card .img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow:  0 4px 15px 0 rgba(0, 0, 0, 0.10);;
    margin-bottom: 18px;
    position: relative;
}
.firm-page .team-card img {
    width: 100%;
    height: auto;
    display: block;
}
.firm-page .team-card .name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.75rem;
    margin-bottom: 15px;
}
.firm-page .team-card .position {
    font-size: 1.125rem;
    color: var(--dark-gray);
}


.firm-page .firm-team .row:first-child {
    margin-bottom: 20px;
}


.lightbox-magnolia .text-column {
    background: var(--white);
    padding: 65px 80px 70px 170px;
    border-radius: 16px;
    display: table-cell;
    float: none;
    min-height: 350px;
}
.lightbox-magnolia .image-column{
    display: table-cell;
    float: none;
    vertical-align: middle;
}
.lightbox-magnolia .img-wrap {
    margin-right: 0px;
    margin-top: 0px;
    position: relative;
    right: -100px;
    z-index: 10;
    top: 70px;
    width: 250px;
}
.lightbox-magnolia .person-picture {
    width: 100%;
    max-width: 250px;
    border-radius: 16px;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.10);
}
.lightbox-magnolia.fancybox-content{
    background: transparent;
}

.lightbox-magnolia .fancybox-close-small{
  background: url(./img/close-icon.svg) no-repeat center center transparent;
  background-size: 36px;
  top: 48px;
  right: 48px;
  width: 36px;
  height: 36px;
}
.lightbox-magnolia .fancybox-close-small:hover{
  background: url(./img/close-icon-hover.svg) no-repeat center center transparent;
  background-size: 36px;
}
.lightbox-magnolia{
     font-family: 'Inter', sans-serif;
}
.lightbox-magnolia .fancybox-close-small svg{
    display: none;
}
.lightbox-magnolia .name.h7-title {
    font-family: 'Cormorant Garamond', sans-serif;
    font-weight: 400;
    margin-bottom: 8px;
}
.lightbox-magnolia .title {
    display: block;
    margin-bottom: 16px;
    color: var(--black);
}
.lightbox-magnolia .facts-title {
    margin-top: 30px;
    font-size: 1.5rem;
}
.lightbox-magnolia article {
    margin-top: 30px;
}

.fancybox-overlay{
  background: rgba(0, 0, 0, 0.7);
}


/* ======================
   GLOBAL CTA SECTION
====================== */

.cta-section {
    background: var(--off-white);
    text-align: center;
    padding: 140px 0;
}

.cta-section .eyebrow {
    margin-bottom: 18px;
}

.cta-section h2 {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.cta-section .intro {
    margin: 0px auto 40px;
    color: var(--dark-gray);
}


@media all and (max-width: 1200px){
    .home-about .about-wrapper {
        padding: 0 58px;
    }

}



@media all and (max-width: 992px){
	 /* Nav */
  .navbar-brand{
  	margin-left: auto;
  	margin-right: auto;
  }
	.bottom-nav {
	   background: transparent;
	    bottom: 0;
	    height: 80px;
	    left: 50%;
	    position: fixed;
	    text-align: center;
	    transform: translateX(-50%);
	    -webkit-transform: translateX(-50%);
	    -moz-transform: translateX(-50%);
	    -o-transform: translateX(-50%);
	    width: 50%;
	    z-index: 9999;
	}
	.bottom-nav .navbar-toggler {
	    background: var(--orange);
	    border-radius: 50%;
	    display: inline-block;
	    outline: 0;
	    padding: 17px 14px;
	    position: relative;
	    vertical-align: middle;
	    z-index: 1032;
	    box-shadow: 1px 5px 16px rgba(0, 0, 0, 0.25);
	}
	.bottom-nav .animated-icon {
        cursor: pointer;
        height: 24px;
        margin: 0;
        position: relative;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        width: 30px
    }
    .bottom-nav .animated-icon,.animated-icon span {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }
    .bottom-nav .animated-icon span {
        background: var(--black);
        border-radius: 9px;
        display: block;
        height: 3px;
        left: 0;
        opacity: 1;
        position: absolute;
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
        width: 100%
    }
	 .bottom-nav .animated-icon span:nth-child(2),.animated-icon span:nth-child(3) {
        top: 10px
    }
    .bottom-nav .animated-icon span:nth-child(4) {
        top: 20px
    }
    .bottom-nav .animated-icon.open span:first-child {
        left: 50%;
        top: 11px;
        width: 0
    }
    .bottom-nav .animated-icon.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg)
    }
    .bottom-nav .animated-icon.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }
    .bottom-nav .animated-icon.open span:nth-child(4) {
        left: 50%;
        top: 11px;
        width: 0
    }
	.navbar-collapse {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;

        height: 100vh;
        background: var(--white);

        padding: 120px 30px 40px;

        overflow-y: auto;
        z-index: 11000;

        transform: translateY(100%);
        transition: transform .35s ease;

        display: block !important;   /* override bootstrap collapse height logic */
    }


    /* when bootstrap adds .show */
    .navbar-collapse.show {
        transform: translateY(0);
    }
    .navbar-collapse.collapsing {
        height: auto !important;
        transition: none !important;
    }
	.no-scroll{
         overflow: hidden;
         position: fixed;
         width: 100%;
  	}
  	header .navbar-nav{
  		    margin: auto;
    	text-align: center;
  	}
  	header .nav-item {
 	   margin: 10px 0px;
	}
	header .nav-item.tel{
		margin-right: auto;
		margin-left: auto;
		max-width: 150px;
	}
	header .navbar-expand-lg .navbar-nav .dropdown-menu {
	    border-radius: 0;
	    text-align: center;
	    box-shadow: none;
	    border: none;
	}
	header .navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item{
		margin:10px 0;
	}
	header .navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item:hover {
 	   background: transparent;
    	text-decoration: underline;
	}
    footer .copy{
        line-height: 120%;
        margin-bottom: 30px;
    }
	footer .wrapper {
	    flex-direction: column;
	     align-items: start;
	}
	footer .social {
	    margin-left: 0;
	}


	 .home-hero {
        min-height: 620px;
    }

    .home-hero .hero-overlay {
        background: linear-gradient(0deg, rgba(63, 105, 131, 0.00) 0%, rgba(63, 105, 131, 0.80) 30%, #3F6983 100%);
    }
    .home-about .about-wrapper {
        padding: 40px 0 0;
    }
    .services-grid {
        margin-top: 40px;
    }
    
    .contact-page .form-wrap{
        margin-top: 50px;
        margin-left: 0;
            padding: 60px 70px 60px
    }

    .why-page .home-about.expertise-section .about-wrapper, .why-page .home-about.focus-section .about-wrapper {
        padding: 40px 0 0;
    }
    .why-page .home-about.comm-section .about-wrapper {
        padding: 0;
    }

    .lightbox-magnolia .img-wrap {
        right: 0px;
        width: 220px;
    }
    .lightbox-magnolia .person-picture {
        max-width: 220px;
    }
    .lightbox-magnolia .text-column {
        padding: 65px 80px 70px 100px;
    }

}

@media all and (max-width: 767px){
	h1, .h1-title {
    	font-size: 2.5rem;
	}
	h2, .h2-title {
    	font-size: 1.875rem;
	}
	h3, .h3-title {
    	font-size: 1.5rem;
	}
	header .main-logo {
 	   max-width: 190px;
	}
	header .navbar-nav{
		text-align: left;
	}
	header .navbar-light .navbar-nav .button{
		max-width: 150px;
	}
    footer .address{
        text-align: left;
    }
	section {
	    padding: 80px 0px;
	}
    .cta-section {
        padding: 80px 0;
    }

	.home-page .banner {
        padding: 140px 0 150px 0;
    }
	.home-page .banner .overlay {
        mask-image: linear-gradient(180deg, #000 0%, #000 51.31%, rgba(0, 0, 0, 0.99) 63.74%, rgba(0, 0, 0, 0.85) 72.47%, rgba(0, 0, 0, 0.35) 80.68%, rgba(0, 0, 0, 0.00) 85.56%);
       background: linear-gradient(359deg, #066 -5.46%, var(--dark-gray) 11.83%, var(--black) 46.24%);
	}
	.home-page .banner .banner-img-home {
        background-position: bottom center;
        background-size: contain;
        background-repeat: no-repeat;
        width: 100%;
    }
   	.contact-page .form-wrap {
    	padding: 30px 30px 40px;
    	margin-top: 40px;
	}
    .contact-page .form-section {
        padding-top: 140px;
    }
    .offer-page .home-hero{
        padding: 180px 0 100px 0;
     }

     .lightbox-magnolia .img-wrap{
        right: inherit;
        width: 220px;
        margin-right: auto;
        margin-left: auto;
    }
    .lightbox-magnolia .person-picture {
        max-width: 220px;
    }
    .lightbox-magnolia .text-column {
        padding: 105px 30px 70px 30px;
    }
}