@font-face {
font-family: 'Rubik';
src: url('/fonts/rubik-regular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Rubik';
src: url('/fonts/rubik-bold.ttf') format('truetype');
font-weight: 700;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Lato';
src: url('/fonts/lato-regular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
font-display: swap;
}
:root {
--font-rubik: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
--font-lato:  "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: #f5f5f5;
font-family: Arial, sans-serif;
}
.section-title {
font-size: 2em;
}
.lighthouse-banner {
width: 100%;
height: 480px;
background-image: url('/images/lhbg.jpg');
background-size: cover;
background-position: center;
display: flex;
justify-content: center;
align-items: center;
}
.lighthouse-banner-content h1 {
margin: 5px;
color: #ffffff;
font-size: 3.8rem;
font-weight: bold;
font-family: 'Rubik', sans-serif;
transform: translateY(-20px);
}
@media (max-width: 1239px) {
.lighthouse-banner {
height: auto;
min-height: 240px;
max-height: 480px;
aspect-ratio: 1920 / 640;
}
}
@media (max-width: 768px) {
.lighthouse-banner-content h1 {
font-size: 9vw;
transform: translateY(-2vw);
}
}
.lighthouse-button-group {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 18px;
width: 100%;
}
.lighthouse-pmt-btn,
.lighthouse-call-btn {
display: flex;
justify-content: center;
width: 80%;
padding: 18px 36px;
border-radius: 6px;
color: #ffffff;
font-family: sans-serif;
font-size: 16px;
font-weight: 600;
text-decoration: none;
transition: background-color 0.2s ease;
}
.lighthouse-pmt-btn {
background-color: rgba(74, 108, 47, 0.95);
}
.lighthouse-call-btn {
background-color: rgba(35, 100, 119, 0.95);
}
.lighthouse-pmt-btn:hover {
background-color: #3b5626;
}
.lighthouse-call-btn:hover {
background-color: #1c505f;
}
@media (min-width: 768px) {
.lighthouse-button-group {
flex-direction: row;
}
}
.parallax-container {
width: 100%;
padding: 25px 0;
background-image: url('/images/pattern.png');
background-size: cover;
background-position: center;
background-attachment: fixed;
color: black;
}
.contact-flex-container {
display: flex;
flex-direction: row;
gap: 16px;
width: 75%;
margin: 0 auto;
color: #173042;
font-family: var(--font-rubik);
}
.contact-flex-child-left,
.contact-flex-child-right {
padding: 20px;
}
.contact-flex-child-left {
flex: 60%;
}
.contact-flex-child-right {
flex: 40%;
}
.contact-flex-child-left p {
margin-top: 6px;
}
@media (max-width: 768px) {
.contact-flex-container {
flex-direction: column;
align-items: center;
width: 100%;
gap: 0;
}
.contact-flex-child-left,
.contact-flex-child-right {
flex: 100%;
text-align: center;
}
}
.blue-container {
display: flex;
flex-direction: row;
justify-content: center;
padding: 45px 12%;
background-color: rgb(23, 48, 66);
}
.blue-container-left-half {
width: 40%;
padding: 60px 0;
color: white;
font-family: var(--font-rubik);
}
.blue-container-right-half {
width: 60%;
padding: 10px 20px;
border-left: 2px solid #7cad3e;
color: white;
}
.blue-container-right-half-service {
padding: 0 0 15px 20px;
color: #7cad3e;
font-family: var(--font-lato);
}
.blue-container-right-half-service-description {
padding: 0 0 45px 20px;
color: white;
font-family: var(--font-lato);
}
@media (max-width: 768px) {
.blue-container {
flex-direction: column;
padding-top: 25px;
}
.blue-container-left-half {
width: 100%;
padding: 10px 0;
}
.blue-container-right-half {
width: 100%;
}
}
.footer-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 10px;
width: 100%;
padding: 10px 20px;
}
.footer-top,
.footer-mid,
.footer-bottom {
width: 100%;
font-size: 65%;
text-align: center;
}
.footer-logo {
height: 70px;
}
#contact-section,
#services-section {
scroll-margin-top: 108px;
}
@media (max-width: 768px) {
#contact-section,
#services-section {
scroll-margin-top: 78px;
}
}
