/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Museo Sans 300', Courier, sans-serif;
}

/*====================================
=            GLOBAL STYLES           =
====================================*/

body {
    line-height: 1.6;
    background-color: #373737;
    color: #333;
    margin: 0px 65px 65px 65px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% 344px;
    background-position-y: 18px;
    background-attachment: fixed;
}

section {
  padding: 80px;
}

@font-face {
    font-family: 'Museo Slab';
    font-style: normal;
    font-weight: 100;
    src: url('fonts/Museo_Slab_100.otf') format('opentype');
}

@font-face {
    font-family: 'Museo Slab 300';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/Museo_Slab_300.otf') format('opentype');
}

@font-face {
    font-family: 'Museo Sans 100';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/MuseoSans-100.otf') format('opentype');
}

@font-face {
    font-family: 'Museo Sans 300';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/MuseoSans-300.otf') format('opentype');
}

@font-face {
    font-family: 'Museo Sans 500';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/MuseoSans_500.otf') format('opentype');
}

@font-face {
    font-family: 'Museo Sans 500 Italic';
    font-weight: 500;
    src: url('fonts/MuseoSans_500_Italic.otf') format('opentype');
}

@font-face {
    font-family: 'Museo Sans 700';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/MuseoSans_700.otf') format('opentype');
}

#mediaSetting {
    /* Just for testing */
    position: fixed;
    font-family: 'Museo Sans 100', sans-serif;
    font-weight: 100;
    font-size: 11px;
    top: 10px;
    right: 10px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    /* Semi-transparent background */
    padding: 5px;
    z-index: 1000;
    /* Make sure it's above other content */
}

h2 {
    font-family: 'Museo Slab', Courier, sans-serif;
    font-weight: 100;
    font-size: 48px;
    color: #fff;
    padding: 0 0 8px 0;
}

h3 {
    font-family: 'Museo Slab', Courier, sans-serif;
    font-weight: 100;
    font-size: 36px;
    color: #fff;
    padding: 0 0 8px 0;
}

h4 {
    font-family: 'Museo Slab', Courier, sans-serif;
    font-weight: 300;
    font-size: 26px;
    margin-bottom: 20px;
    color: #fb3;
    padding: 0 0 8px 0;
}

p {
    color: #fafafa;
}
.full-width {
    width: 100%;
    padding: 0;
}
.limited-width {
    max-width: 900px;
    margin: 0 auto;
    /* Centers the content horizontally */
    padding: 30px 0;
}
.button {
    font-family: 'Museo Sans 700', sans-serif;
    display: inline-block;
    padding: 10px 26px;
    margin: 14px 18px 14px 0;
    border-radius: 50px;
    background-color: #fff;
    border: none;
    text-align: center;
    text-decoration: none;
    color: #00655f;
    font-size: 13px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}
button i {
    margin-right: 5px;
}
.button:hover,
.button a:hover {
    opacity: 0.8;
}

/* Nav */

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 10px 0 0;
    /* 10px padding from the right margin */
}
.logo {
    /* Ensures the logo is flush to the left */
    margin-right: auto;
    /* Pushes everything else to the right */
    padding: 18px 0 0 18px;
}
nav {
    display: flex;
    margin-left: auto;
    /* Pushes the nav to the right side */
    padding: 0;
    /* Adjust or remove padding as needed */
    justify-content: right;
    align-items: center;
    font-size: 13px;
    height: 122px;
    position: relative;
}

nav ul {
    padding: 0;
    margin: 10px 0 0 0;
    list-style-type: none;
    display: flex;
}

nav li {
    padding: 0 10px;
    margin: 0 14px;
}

nav a {
    font-family: 'Museo Sans 700', sans-serif;
    position: relative;
    color: #fafafa;
    text-transform: uppercase;
    text-decoration: none;
}

/* Color bar */
nav a::after {
    content: '';
    position: absolute;
    left: -3px;
    right: -3px;
    bottom: -14px;
    height: 3px;
    background-color: transparent;
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Color bar animation */
nav a:hover::after {
    opacity: 0.5;
    transform: scaleX(1);
}

/* Individual color bars */

/* Label for Home */
nav li:nth-child(1) a::after {
    background-color: #fff;
}

/* Label for strategy  */
nav li:nth-child(2) a::after {
    background-color: #fff;
}

/* Label for Services */
nav li:nth-child(3) a::after {
    background-color: #fff;
}

/* Label for Testimonials */
nav li:nth-child(4) a::after {
    background-color: #fff;
}

/* Label for Contact */
nav li:nth-child(5) a::after {
    background-color: #fff;
}

/* Modal Styles */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4); 
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto; 
  padding: 10px;
  border: 1px solid #888;
  width: 80%; 
  max-width: 500px; 
}

.close {
  color: rgb( 255, 255, 255, 1);
  float: right;
  font-size: 28px;
  font-weight: bold;
  margin-right: 14px;
}

.close:hover,
.close:focus {
  color: rgb( 255, 255, 255, 0.5);
  text-decoration: none;
  cursor: pointer;
}

/*====================================
=             HAMBURGER              =
====================================*/

.hamburger-wrapper {
    display: none;
    /* Initially hide the hamburger menu for larger screens */
}

.hamburger {
    display: inline-block;
    margin-top: 16px;
    cursor: pointer;
    font-size: 24px;
    /* Adjust size as needed */
    color: #efefef;
    /* Adjust color as needed */
}

/* Hamburger Menu Lines */
.hamburger {
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
}

.hamburger.is-active .line {
    background-color: #333;
}

.line {
    display: block;
    width: 25px;
    height: 3px;
    margin-bottom: 5px;
    background-color: #888;
    transition-property: transform, background-color;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
}

.line:first-child {
    transform-origin: top left;
}

.line:last-child {
    transform-origin: bottom left;
}

.hamburger.is-active .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Expanded Menu */
nav.expanded .menu-items {
    display: block;
    position: fixed;
    /* Updated to fixed to cover the entire viewport */
    top: 82px;
    left: 0;
    right: 0;
    width: 100%;
    /* Ensures it matches the viewport width */
    background-color: #333;
    /* Adjust background color as needed */
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    z-index: 999;
    /* Keeps it on top */
    max-height: 100vh;
    /* Limits the height to the viewport's height */
}
.menu-items {
    position: fixed;
    border: 0;
}

.menu-items li > a {
    font-family: 'Museo Sans 500', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
}

/* CSS to hide navigation bar */
nav.hidden-nav {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
}

/* Globle Section Styles */

.hero, .strategy-section, .products-section, .testimonials-section, .investors-section {
    text-align: center;
}

/*====================================
=              TOP BAR               =
====================================*/

#topbar {
    width: 100%;
    height: 40px;
    background-color: #000;
    /* Or any color you prefer */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: absolute;
    /* or absolute, depending on your layout needs */
    left: 0;
    right: 0;
}

.container {
    margin: 0 auto;
    padding: 0 15px;
    /* This is to ensure content doesn't touch the sides */
}

.phone-message {
    font-size: 14px;
    font-family: 'Museo Sans 500', sans-serif;
    color: #cb9f1a;
}

.phone-number {
    font-family: 'Museo Sans 500', sans-serif;
}


/*====================================
=                HOME                =
====================================*/

.hero {
    position: relative;
    height: 640px;
    /* Adjust the height as needed */
    background-image: url('../images/hero_graphic.jpg');
    /* Update with the path to your hero image */
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    /* This creates the parallax effect */
}
.hero img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 82px);
    /* Adjust the max-height based on the navigation height */
    object-fit: contain;
    max-width: 2800px;
}

.content-link {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}

.content-link:hover {
  color: rgb(255, 255, 255, 0.8);
}

.content-link:visited {
  color: rgb(255, 255, 255); /* Ensures visited links also appear white */
}

/*====================================
=             HERO BLOCK             =
====================================*/

.modal-content .document-form {
    background-color: #00655f;
    padding: 30px;
}
.hero-block {
    position: absolute;
    width: 46%;
    height: 640px;
    text-align: left;
    background-color: #00655f;
    border: 5px solid #fff;
    right: 65px;
    top: 162px;
    padding: 25px;
}
.promo-header {
    display: flex;
    align-items: center;
    background-color: #cb9f1a;
    padding: 10px;
    margin-top: 0;
    /* Ensure no margin at the top */
    width: 100%;
    /* Adjust the width to account for horizontal padding */
}
.promo-free {
    font-family: 'Museo Sans 500', sans-serif;
    font-weight: 500;
    margin: auto;
    text-align: center;
    font-size: 18px;
    /* Adjust size as needed */
    color: #000;
    /* Black color for the 'FREE' text */
}
.promo-content {
    padding: 20px 44px 30px;
}
.promo-content h3 {
    font-size: 48px;
    line-height: 60px;
    margin: auto;
    text-align: center;
}
.promo-doc-list {
    border: 1px solid #4e8682;
    padding: 10px;
    font-size: 14px;
    padding: 10px 0 10px 20px;
    margin-top: 20px;
    color: #fff;
}
.promo-doc-list ul {
    list-style-type: none; /* Removes default bullets */
  }
.promo-doc-list li::before {
    font-family: "Font Awesome 6 Pro";
    content: "\f15b"; /* FontAwesome icon unicode for fa-file-word */
    font-size: 15px;
    margin-right: 6px;
    padding-right: 2px;
}
.document-form {
    padding-top: 30px;
}
.form {
    background-color: #00655f;
    /* Replace with the actual color of your floating promo area */
    border-radius: 10px;
    /* Optional, add this if you want rounded corners */
}
.documents-form-group.half-width {
    float: left;
    width: 50%;
    padding-right: 10px;
    /* Adjust the padding as needed */
}

/* Clearfix for floated elements */
.form-row:after {
    content: "";
    display: table;
    clear: both;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="phone"] {
    background: transparent;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    margin-bottom: 5;
    padding: 10px 0;
    width: calc(100% - 20px); /* Full width minus padding */
}

.form input::placeholder {
    /* Placeholder text style */
    color: #fff;
    /* White placeholder text */
    opacity: 1;
    /* Make sure it's fully visible */
}

.form input:focus {
    outline: none;
    border-color: #b1b1b1;
    /* Color when the input is focused */
}

/* Style for the select dropdown */
.form select {
    background: #064b46;
    border: 1px solid #fff;
    /* White line for input border */
    color: #fff;
    /* Text color */
    margin-bottom: 15px;
    /* Space between inputs */
    padding: 12px;
    padding-right: 30px;
    /* Make room for the icon */
    width: calc(100% - 24px);
    /* Full width minus padding and icon space */
    -webkit-appearance: none;
    /* Removes default style of select in WebKit browsers */
    -moz-appearance: none;
    /* Removes default style of select in Firefox */
    appearance: none;
    position: relative;
    font-family: Arial, "Font Awesome 5 Free";
    /* Add FontAwesome alongside your default fonts */
}

/* Pseudo-element for the caret icon */
.form select::after {
    content: "\f0d7";
    /* FontAwesome icon code for caret-down */
    font-family: "Font Awesome 5 Free";
    /* Specify the font family for FontAwesome */
    font-weight: 900;
    /* FontAwesome requires font-weight of 900 for solid icons */
    position: absolute;
    right: 10px;
    /* Position the icon to the right */
    top: calc(50% - 8px);
    /* Center it vertically */
    pointer-events: none;
    /* Ensures click events pass through to the select element */
}

/*==================================
=              ABOUT               =
==================================*/

.about-section {
    background-color: #1d293c;
    text-align: center;
    padding: 40px; /* Adjust or maintain padding as needed */
}

.about-section h2 {
  padding-bottom: 20px;
}

.about-section h4 {
  color: #fff;
}


.about-text-container {
    margin: 0 auto; /* This centers the container horizontally */
    width: 100%; /* Ensure it responds to smaller widths appropriately */
    padding: 0 40px;
}

.about-text-container p {
  max-width: 880px;
  padding-bottom: 30px;
  margin: auto;
}

.about-ancillary {
    width: 370px; /* Fixed width for the left column */
    text-align: center;
    padding: 0 30px;
    border-right: 1px solid #636a75; /* Left border for higher resolutions */
}

.about-ancillary p {
  margin-bottom: 30px;
}

.about-heading {
    display: inline-flex; /* Use inline-flex to keep the heading sizing to its content */
    align-items: center; /* Align the icon and text vertically */
    justify-content: center; /* Center the contents */
    gap: 8px; /* Space between the icon and the text */
    text-transform: uppercase;
    font-size: 30px;
    color: #1fa4ab;
}

.about-mission::before, .about-vision::before {
    content: '';
    display: block;
    width: 50px; /* Adjust based on your icon size */
    height: 40px; /* Adjust based on your icon size */
    background-repeat: no-repeat;
    background-position: center; /* Center the background image */
}

.about-mission::before {
    background-image: url('../images/about-mission.png');
}

.about-vision::before {
    background-image: url('../images/about-vision.png');
}

.about-main {
    flex-grow: 1; /* Allows this column to fill the remaining space */
}

.about-main p {
  padding-bottom: 20px;
}

.about-main-copy {
    text-align: left;
    padding-left: 10px;
}

/*==================================
=            STRATEGY              =
==================================*/

.strategy-section {
    background-color: #11394a;
    text-align: left;
}

.strategy-section h2 {
    margin-bottom: 20px;
    /* Creates space between h2 and the content row */
}

.strategy-section p {
    margin: 16px 30px 0 0;
}

.content-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.strategy-image, .strategy-text-container {
    flex-basis: 50%;
    /* Adjust this value as needed */
}

.strategy-image {
    flex-basis: 100%;
    max-width: 580px;
    /* Ensures the thumbnail doesn't get too big */
    margin-right: 30px;
}

.strategy-image img {
      border: solid 3px #007871;
}

.strategy-text-container {
    display: flex;
    flex-direction: row;
    /* Stacks p1 and p2 vertically on smaller screens */
    gap: 20px;
    min-width: 360px;
}

.strategy-text {
    flex-basis: 50%;
    font-size: 16px;
    max-width: 400px;
    margin-left: 20px;
    /* Adds space between the image and paragraph */
}

.bullet-points {
    font-family: 'Museo Sans 300', sans-serif;
    color: #fff;
    font-size: 14px;
    list-style-type: disc;
    /* or any other style you prefer */
    padding-left: 20px;
    /* Adjust based on your design needs */
    width: 100%;
    /* Matches the thumbnail's width */
    margin: 30px 0;
}
.bullet-points li {
    list-style: none;
    /* Remove default list style */
    position: relative;
    padding-left: 25px;
    /* Adjust space for icon */
    margin-bottom: 10px;
    /* Space between bullet points */
}

.bullet-points li::before {
    content: '\f058';
    /* FontAwesome check circle icon */
    font-family: 'FontAwesome';
    /* Ensure this matches the font family for FontAwesome */
    position: absolute;
    left: 0;
    top: 0;
    color: #52b2aa;
    /* Adjust icon color */
    font-size: 16px;
    /* Adjust icon size */
}

.strategy-image, .strategy-text-container {
    flex: 1;
    /* Ensures they take up equal space side-by-side */
}

/*====================================
=             SERVICES               =
====================================*/

.services-section {
    background: url('../images/vancouver_bg.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    min-height: 860px;
    text-align: center;
}

.services-title {
    font-size: 48px;
    margin-bottom: 30px;
    color: #fff;
}

.services-copy {
  display: block;
  text-align: left;
  max-width: 900px;
  border: 1px solid #fff;
  margin-top: 80px;
  background: rgb(48,48,48,0.94);
  padding: 26px 0;
}

.services-copy p {
  margin: 20px 60px;
  
}

.services-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.service-column {
    padding: 10px 30px;
    text-align: left;
}

.service-column h3 {
    font-family: 'Museo Slab 300', serif;
    font-size: 20px;
    text-align: left;
    background-color: rgb(255, 255, 255, 0.9);
    color: #5f432b;
    padding: 5px 22px 2px 20px;
    display: inline-block;
    /* Allows the background to wrap tightly around the text */
    margin-bottom: 28px;
    border-radius: 20px;
}

.service-column ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-column ul li {
    font-family: 'Museo Sans 100', serif;
    font-size: 18px;
    display: flex;
    /* Makes the li a flex container */
    line-height: 1.6;
    margin-bottom: 14px;
}

.service-column-border {
    border-left: 1px solid #fff;
}

.service-column li::before {
    font-family: "FontAwesome";
    display: inline-block;
    margin-right: 14px;
    /* Spacing between the icon and text */
    content: "\f192";
}


/*=======================================
=            TESTIMONIALS               =
=======================================*/

.testimonials-section {
    background: url('../images/testimonials_bg.png') no-repeat center center;
    background-size: cover;
    background-color: #0b5b64;
    padding: 80px;
    text-align: center;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.testimonials-title {
    margin-bottom: 30px;
    font-size: 2em;
    /* Adjust font size as needed */
}

.testimonial-item {
    margin-bottom: 20px;
}

.testimonial-content, .testimonial-content cite {
    font-family: 'Museo Sans 100', Courier, sans-serif;
    font-size: 22px;
    /* Adjust font size as needed */
    color: #fff;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 600px;
    /* Adjust width as needed */
}

#testimonialIndicator {
    font-family: 'Museo Sans 300', Courier, sans-serif;
    font-size: 16px;
    /* Adjust font size as needed */
    color: #fff;
}

.testimonial-nav-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px;
    /* Increases the clickable area */
    margin: -20px;
    /* Counteracts the padding to keep the visual layout */
    font-size: 24px;
    /* Adjust the size of the arrow icon */
    color: #000;
    /* Adjust the color as needed */
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.testimonial-nav button {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5em;
    cursor: pointer;
}

.testimonial-indicator {
    font-size: 1em;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.testimonial-item.fade-in {
    animation: fadeIn 1s ease-in-out;
}

/*====================================
=              CONTACT               =
====================================*/

#contact {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%; 
    padding: 0;
}

.contact-section {
    text-align: right;
    top: 0;
    left: 0;
    height: 100% auto;
    width: 100% auto;
}

.map-background {
    width: 100% ;
    height: 100% ;
    padding: 80px;
    background-image: url("../images/map.png");
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
}

.contact-form-container, .documents-form {
    flex-direction: row;
    display: flex;
    width: 100%;
    max-width: 1200px; /* Adjust this value based on your design */
    align-items: start; /* Align items at the start of the container */
    background-color: #333;
    box-sizing: border-box; /* Ensures padding is included in the width calculation */
    color: #ffffff;
    margin: auto; /* Centers the container */
    padding: 40px;
    border: 1px solid #666;
}

.contact-form-container .form-group.name-group, .contact-step, .documents-form {
    display: flex;
    justify-content: space-between;
}

.contact-form-container .form-group.name-group input, .documents-form .form-group.name-group input {
    width: calc(50% - 10px); /* Adjust the width to fit both inputs in the same row */
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
}

.contact-info, .contact-form {
    flex: 1; /* Allows each column to take up equal space */
}

.contact-info {
    max-width: calc(50% - 30px);
    margin-right: 20px;
    /* Adds some space between the info and the form */
    text-align: left;
}

.contact-box {
    margin: 20px 40px 0 0;
    padding: 18px;
    border: 1px solid #888;
    background-color: #2f2f2f;
    max-width: 240px;
}

.contact-name {
    font-family: 'Museo Sans 700', sans-serif;
    font-weight: 700;
}

.contact-divider {
    border-bottom: solid 1px #888;
    margin: 5px 0;
}

.contact-phone {
    color: #cb9f1a;
    font-family: 'Museo Sans 700', sans-serif;
    font-weight: 700;
}

#contactStep1 {
  
}

#contactStep2 {
  display: none;
  text-align: left;
}

#contactStep3 {
  display: none; 
  text-align: left;
}

#contactDescriptionStep2 {
    color: #fff;
}

.contact-form {
    padding: 50px 0 0 24px;
    border-left: 1px solid #555;
    min-height: 580px;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form-container .form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
    z-index: 100;
}

.captcha-container input[type="text"] {
  border: 1px solid #333;
  width: 100px;
  background: #888;
}

/* Input fields styling */
.contact-form-container .form-group input[type="text"],
.contact-form-container .form-group input[type="email"],
.contact-form-container .form-group input[type="phone"]
{
    background: #222;
    border: 1px solid #555;
    font-size: 16px;
    margin-bottom: 8px;
    /* Space between fields */
    color: #fff;
    /* Text color */
    padding: 10px 8px;
}

/* Placeholder styling */
.contact-form-container .form-group input::placeholder,
.contact-form-container .form-group textarea::placeholder {
    color: #ccc;
    /* Placeholder text color */
}

/* Textarea styling */
.contact-form-container .form-group textarea {
    background: #222;
    border: 1px solid #555;
    font-size: 16px;
    color: #fff;
    /* Text color for textarea */
    min-height: 100px;
}

/* Adjusting input text color */
.contact-form-container .form-group input[type="text"],
.contact-form-container .form-group input[type="email"] {
    color: #fff;
    /* Input text color */
}

.contact-form-container .contact-step .button {
    color: #222;
    text-align: right;
}

.captcha-container {
  margin-top: 40px;
}

.captcha-image {
  margin-top: 20px;
}

#refreshCaptchaButton {
  padding: 5px;
  border: none;
  background-color: transparent;
  color: #52b2aa;
  cursor: pointer;
}

.thank-you-message {
    transition: opacity 2s ease-out;
    opacity: 1;
    background: #ca9e2b;
    margin: 5px 8px;
    padding: 6px 10px;
}

.thank-you-message.fade-out {
  opacity: 0;
}

/*====================================
=              FOOTER                =
====================================*/

.footer-section {
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  background: #111;
  bottom: 0;
  left: 0;
  border-top: 1px solid #555;
  padding: 5px 20px 0 20px;
  text-align: left;
}
.footer-section a {
    display: inline;
    font-size: 12px;
    margin: 8px;
    font-family: 'Museo Sans 700', sans-serif;
    color: #888;
    text-transform: uppercase;
    text-decoration: none;
}
.footer-section a:hover {
    text-decoration: underline;
}


/*====================================
=            BACK TO TOP             =
====================================*/

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #00655f;
    color: #fff;
    font-size: 24px;
    text-align: center;
    line-height: 50px;
    text-decoration: none;
    transition: opacity 0.3s ease-in-out;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
}

.back-to-top:hover {
    background-color: #555;
    cursor: pointer;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

/*====================================
=         DOCUMENT LIBRARY           =
====================================*/

.document-library table {
    width: 100%;
    border-collapse: collapse;
}

.document-library th, .document-library td {
    text-align: left;
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

.document-library tr:hover {
    background-color: #f5f5f5;
}

.inquiry-form form {
    /* Form styles similar to the landing page */
}
/* Add to the existing styles.css */
.top-header-container {
    padding: 20px;
    text-align: center;
}

.document-area {
    margin: 0 20px;
    background-color: #dbdbdb;
    /* Light grey background */
    max-width: 1200px;
    margin: auto;
}

.document-area h2, .document-area h3, .document-area p {
    color: #000;
}

.document-area p {
    margin-bottom: 30px;
}

.document-area table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.document-area table, .document-area th, .document-area td {
    border: 1px solid #666;
}

.document-area th {
  font-family: 'Museo Sans 500', Arial, sans-serif;
  font-weight: 500;
  background-color: #f5f5f5; /* Optional: Adds a background color to the header */
}

.document-area td {
  font-family: 'Museo Sans 300', Arial, sans-serif;
  font-weight: 300;
}

.document-area th, .document-area td {
    padding: 10px;
    text-align: left;
}

.doc-disclaimer {
  font-family: 'Museo Sans 500', Arial, sans-serif;
  font-weight: 500;
}

/* Additional styling for the document descriptions */
.document-area .doc-description {
    font-size: 12px;
    color: #666;
    display: block; /* Ensure description appears on a new line */
    margin-top: 4px; /* Optional: Adds a little space above the description for better readability */
}

.doc-description {
    font-size: 12px;
    /* Smaller text size for descriptions */
    color: #666;
    /* Grey text color for less emphasis */
    display: block;
    /* Ensure description appears on a new line */
}

.docs-form-section {
    margin-top: 20px;
}

.inquiry-form > .contact-form-container {
  /* custom styles */
}

/* Additional CSS for the form */
.documents-form-group {
    margin-bottom: 10px;
}

.documents-form-group input[type="text"],
.documents-form-group input[type="email"],
.documents-form-group input[type="phone"] {
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    /* White line for input border */
    color: #fff;
    /* Text color */
    margin-bottom: 15px;
    /* Space between inputs */
    padding: 10px 0;
    width: calc(100% - 20px);
    /* Full width minus padding */
}

.documents-form-group input::placeholder {
    /* Placeholder text style */
    color: #fff;
    /* White placeholder text */
    opacity: 1;
    /* Make sure it's fully visible */
}

.documents-form-group input:focus {
    outline: none;
    border-color: #b1b1b1;
    /* Color when the input is focused */
}

.docs-icon {
  width: 50px;
}

.inquiry-form button {
    color: #333;
}

.form-group label, .name-label  {
    display: block;
    flex-basis: 100%;
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 12px;
    color: #cb9f1a;
    text-transform: uppercase;
    margin-left: 5px; /* Aligns with the input fields */
}

.contact-form-container .form-group select {
    width: 100%; /* Ensures the select takes up the full width of its parent container */
    padding: 10px; /* Matches the padding of the input fields */
    margin: 5px 0; /* Matches the margin of the input fields */
    border: 1px solid #555; /* Matches the border style of the input fields */
    background-color: #222; /* Matches the background color of the input fields */
    color: #fff; /* Text color for the select options */
    font-size: 16px; /* Matches the font size of the input fields */
    -webkit-appearance: none; /* Removes the default browser dropdown button */
    -moz-appearance: none; /* Removes the default browser dropdown button for Firefox */
    appearance: none; /* Standard way to remove the default dropdown button */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="white" viewBox="0 0 20 20"><path d="M5.516 7.548c0.436-0.446 1.043-0.481 1.576 0l2.908 2.859 2.908-2.859c0.533-0.481 1.141-0.446 1.576 0 0.436 0.445 0.408 1.197 0 1.615l-4.313 4.242-4.313-4.242c-0.408-0.418-0.436-1.17 0-1.615z"/></svg>'); /* Custom dropdown arrow */
    background-repeat: no-repeat;
    background-position: right 10px top 50%; /* Positions the arrow correctly */
    border-radius: 0; /* Optionally, remove border radius if you prefer sharp edges */
}

/* Style focus state for select elements to match the input fields */
.contact-form-container .form-group select:focus {
    border-color: #b1b1b1; /* Highlight color when focused */
    outline: none; /* Removes default focus outline */
}

/* Sample Documents Callout Styles */
.sample-documents-callout {
  background-color: #1d293b;
  color: #ffffff;
  padding: 20px;
  margin-top: 40px;
  text-align: center;
  max-width: 360px;
  border: 1px #fff solid;
}

.sample-documents-callout h3 {
  margin: 0;
  font-size: 1.5em;
}

.sample-documents-link {
  display: inline-block;
  margin: 10px 0;
  padding: 10px 20px;
  background-color: #4894bb; /* Adjust color as needed */
  color: #ffffff;
  text-decoration: none;
  border-radius: 3px;
  font-size: 14px;
  text-transform: uppercase;
}

.sample-documents-link:hover {
  background-color: #367494; /* Adjust color as needed */
}

/*====================================
=            RESPONSIVE              =
====================================*/

@media (max-width: 380px) {
    /* Tiny Browsers */

}

@media (min-width: 380px) and (max-width: 767.98px) {
    /* Portrait Phones and Tablets */


}

@media (max-width: 768px) {
    /* Base styles for all mobile devices */
    body {
      margin: 0px 10px 10px 10px;
    }
    
    section {
      padding: 20px;
    }

    nav {
      flex-direction: column;
      height: 50px;
    }
    
    nav a {
      display: block;
      padding: 10px 0;
      text-decoration: none;
      color: #fff;
      font-size: 18px;
      text-transform: uppercase;
    }
    nav a::after {
      display: none;
    }
    
    .menu-items {
        position: fixed;
        border: 2px solid #fff;
    }
    
    .menu-items li > a {
        font-size: 18px;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav li {
        text-align: center;
    }

    nav ul, nav ul.expanded {
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      text-align: center;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-in-out;
    }

    nav li {
      text-align: center;
      margin: 0;
      padding: 5px 0;
    }
    
    /* About */
    nav li:nth-child(1) {
        border-bottom: solid 1px #444;
    }
    
    /* Strategy */
    nav li:nth-child(2) {
        border-bottom: solid 1px #444;
    }
    
    /* Services */
    nav li:nth-child(3) {
        border-bottom: solid 1px #444;
    }
    
    /* Testimonials */
    nav li:nth-child(4) {
        border-bottom: solid 1px #444;
    }
    
    /* Contact */
    nav li:nth-child(5) {
    }    

    .hamburger-wrapper, nav.expanded .menu-items {
      display: block;
    }

    .menu-items {
      display: none; /* Hide menu items initially */
    }

    nav.expanded .menu-items {
      display: block; /* Show menu items when expanded */
      width: calc(100% - 130px);
      margin: 0 auto;
    }
    .menu-items li > a:hover {
        color: #999;
    }

    .hero {
      height: 45vh;
      min-height: 330px; /* Ensures a minimum height */
      background-image: url('../images/hero_graphic-tablet.jpg');
      background-position: center top;
      background-repeat: no-repeat;
      position: relative;
      background-size: cover;
      background-attachment: scroll;
      width: 100%;
    }

    .hero img {
      margin: 0 auto;
      width: 100%;
      height: auto;
    }

    .promo-content {
      padding: 40px 20px;
    }

    .promo-content h3 {
      font-size: 36px;
      padding: 0;
      text-align: left; /* Align text to the left for h3 within .promo-content */
    }
    
    .about-section, .strategy-section, .services-section {
      padding: 30px;
      text-align: left;
      align-items: inherit;
    }
    
    .about-main-copy {
      max-width: none;
    }
    
    .about-text-container {
        flex-direction: column-reverse; /* Stack about-ancillary below about-main */
        text-align: left;
    }
    
    .about-text-container p {
        text-align: left;
    }
    
    .about-ancillary {
      border-right: none;
      border-top: 1px solid #636a75;
      width: auto;
    }

    .strategy-section, .contact-form-container, .map-background {
      padding: 30px;
    }

    .strategy-text-container, .strategy-image {
      min-width: 100px;
    }

    .strategy-image {
      flex-basis: 100%; /* Use 100% of the container's width */
      max-width: 100%; /* Allow the image to scale up to 100% of its container's width */
      width: 100%; /* Corrected this from '50% auto' to '100%' */
      margin-right: 0; /* You may want to remove the margin-right on smaller screens */
    }
    
    .strategy-image img {
      width: 100%;
    }
    
   .strategy-text-container {
      flex-basis: 100%; /* Let the text container also take up 100% of the width */
      margin-left: 0; /* Adjust if you have previously set any margin-left */
    }

    .services-container {
      flex-direction: column;
      align-items: center;
    }
    
    .services-title {
      margin-bottom: 10px;
    }
    
    .service-column {
      width: 100%;
      border-left: none;
      padding: 10px 15px;
      margin-bottom: 20px;
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: left;
    }
    .service-column h3 {
      max-width: 200px;
    }

    .service-column ul {
      text-align: left;
      display: inline-block;
    }
    
    .service-column ul li {
      line-height: 1.2;
      margin-bottom: 10px;
    }

    .divider {
      display: none; /* Hide dividers */
    }
    
    .sample-documents-callout {
      padding: 15px;
      font-size: 0.9em;
    }
    
    .sample-documents-link {
      padding: 8px 15px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    /* Desktop (M) */
    
    section {
      padding: 40px;
    }
    .menu-items {
      position: relative;
    }
    .logo {
      padding: 18px 0 0 0;
    }
    .logo img {
      width: 66%;
      height: 66%;
    }
    nav li {
        margin: 0 4px;
        padding: 0 8px;
    }
    .hero {
        height: 38vh;
        background-attachment: scroll;
        background-position: top 150px !important;
        background-image: url('../images/hero_graphic-mdesktop.jpg');
    }
    .hero-block {
        position: relative; /* Adjust based on layout needs */
        top: -502px; /* Adjust as necessary */
    }
    .strategy-image {
        max-width: 100%;
        /* Allow the image to fill the container */
        max-width: 760px;
        /* ...but to a reasonable degree */
    }

    .services-container {
        flex-wrap: wrap;
    }
    .service-column {
        width: calc(50% - 15px);
        /* Adjust the width for 2 columns layout */
        margin-bottom: 30px;
        /* Space between rows */
    }
    .services-container .service-column:nth-child(3) {
        border-left: none;
        /* Removes the left border from the third column */
    }
    /* Ensure there's no bottom margin on the last two service columns */
    .service-column:nth-last-of-type(-n+2) {
        margin-bottom: 0;
    }
    .contact-form-container {
        padding: 20px;
    }
}

@media (max-width: 1199px) {
    /* All except Desktop (L) */

    .hero-block {
        margin: 0 0 0 50px;
        position: relative;
        width: 100%;
        height: auto;
        border: none;
        top: 0;
        right: 50px;
        /* Removes the white border */
        box-shadow: none;
        /* Removes the box shadow */
        background-color: #00655f;
        /* Keeps the background color */
        border-top: 2px solid #fff;
    }
    
    .promo-content {
       background-color: #00655f;
    }
    
    .promo-free {
      display: none;
    }
    
    .about-section h2 {
      text-align: left;
    }
    
    .about-text-container {
        padding: 0;
    }
    
    .about-text-container p {
        text-align: center;
    }
    
    .about-main-copy {
      padding: 0;
    }
    
    .about-ancillary {
      text-align: left;
      padding: 30px 20px 0 0;
    }
    
    .content-row {
        flex-direction: column;
        /* Stack the image and paragraph vertically */
    }

    .strategy-text-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        /* Ensures the container takes up to 100% of its parent's width, up to the max-width */
        margin: 0;
        /* Centers the container within its parent */
    }

    .strategy-text {
        margin-left: 0;
        /* Resets any left margin that might push the text off center */
        margin-top: 20px;
        /* Adds space between the paragraphs */
        text-align: left;
        /* Ensures text is aligned to the left */
        max-width: 600px;
    }

    /* Adjust the video-thumbnail to ensure it is centered and not too wide */
    .video-thumbnail {
        width: 100%;
        /* Allows it to take full width of its parent */
    }
    .video-thumbnail img {
        width: 100%;
        /* Makes the image responsive to the container's width */
        height: auto;
        /* Maintains the image's aspect ratio */
        max-width: 760px;
        /* Maximum width of the image */
    }

    /* Styles for bullet points */
    .bullet-points {
        font-family: 'Museo Sans 300', sans-serif;
        font-size: 16px;
    }

    .contact-form-container> * {
        width: 100%;
        /* Makes the heading, contact box, and form span the full width */
        margin-bottom: 20px;
        /* Adds some space between them when stacked */
    }

    .contact-box {
        margin: 30px 0;
    }

    /* Remove the right margin on the contact-info to prevent it from pushing the form to the side */
    .contact-info {
        max-width: 100%;
        margin-right: 0;
    }

    /* Adjust the form width to take 100% of the container's width */
    .contact-form {
      width: 100%;
      padding: 0;
      border-left: none;
      min-height: 0;
    }
    .contact-form-container {
        flex-direction: column;
    }
}

@media (min-width: 1200px) {
      /* All high resolution screens */
     .hero {
        background-position: calc(10% + 28px) top;
      }
  }