<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Custom child theme for GeneratePress
 Author:       HMH
 Template:     generatepress
 Version:      1.0
*/

/* General Styles */

:root {
	--blue: #145DA0;
	/* Primary (Degular) */
	--font-degular: "degular-display", "degular", sans-serif;

	/* Heading 2 */
	--font-helvetica-neue: "helvetica-lt-pro", Arial, system-ui, sans-serif;

	/* Body copy */
	--font-helvetica: "helvetica", Arial, system-ui, sans-serif;
}

.site-content {
    min-height: 75vh;
}

.inside-header.grid-container {
    max-width: 1300px;
}

.main-title {
	font-family: var(--font-degular);	
	letter-spacing: .2em;
	line-height: 1.1;
	font-weight: 700;
}

.hd-lrg {
	font-family: var(--font-degular);
	font-size: 3.55rem;
	letter-spacing: .02em;
	line-height: 1.1;
	font-weight: 500;
}

.hd-med {
	font-family:	var(--font-helvetica-neue);
	text-transform: uppercase;
    font-size: .875rem;
    letter-spacing: .04em;
    line-height: 1.5;
    font-weight: 700;
}

.subhd-reg {
	font-family:	var(--font-degular);
  	font-size: 1.5rem;
	letter-spacing: .02em;
	line-height: 1.3;
	font-weight: 400;
}

.txt-reg {
	font-family:	var(--font-helvetica);
    font-size: 1rem;
    letter-spacing: .01em;
    font-weight: 400;
    line-height: 1.5;
}

button, .btn-reg {
	font-family:	var(--font-helvetica-neue);
	text-transform: uppercase;
    font-size: .75rem;
    font-weight: 700;
    line-height: 1.3;
	letter-spacing: .04em;
	cursor: pointer;
}

hr.seperator {
	max-width: 30px;
	margin: 0 0 20px 0;
	z-index: 11;
}

/* Header */
.btn-header a:hover {
    background-color: #fff !important;
    border: 1px solid var(--blue);
    color: #333;
}

/* Single Member Page */
.single-member {
    background: #f4f4f4;
    flex: 1;
}

.member-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 0;
	min-height: 75vh;
}

.single-member article {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1rem;
	border-radius: 33px;
}

.company-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    h1 {
        margin-bottom: 0;
    }
}

.member-logo {
    max-width: 120px;
    height: auto;
}

.member-name {
    margin: 0;
    color: #333;
}

.member-contact p {
    margin: 0;
}

.company-website {
    display: inline-block;
    margin-top: 0.5rem;
    color: #0073aa;
    text-decoration: underline;
}

.services {
    margin-top: 1rem;
    color: #333;
}

/* Members Table -- Homepage */

/* Badges */
.form-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    margin-bottom: 1rem;
}

.badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: 1rem;
}

.badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #333;
    border: 1px solid var(--blue);
    padding: 10px 30px;
    border-radius: 33px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.badge:hover {
    background-color: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.badge.active {
    background-color: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

button.badge[type="button"]:focus {
    background-color: var(--blue) !important;
    color: #fff;
}

#members-output {
    padding: 0 1rem;
}

.members-table {
    background: #ffffff;
	border-radius: 33px;
	overflow: hidden;            /* â† clip child backgrounds */
}

	.members-table tbody tr.card-row:nth-child(even) {
		background-color: rgba(20, 93, 160, 0.05);
	}

table.members-table {
  border: 0;

  thead {
    border: 0;
	  
    th {
      border-width: 0 0 1px 0;
		text-align: left;
		padding: 20px 40px;
    }
  }

  tbody {
    border: 0;
	  
    td {
      border-width: 0 0 1px 0;
	  padding-left: 40px;
    }

    tr:last-child {
      td {
		  border-bottom: none;
      }
    }
  }
}

/* FORM */

.vbna-form {
	margin: 0 auto !important;
}

.vbna-form * {
	font-family:	var(--font-helvetica);
}

.wpforms-container .wpforms-field {
	padding: 5px 0;
}

div.wpforms-container-full input[type=text],
div.wpforms-container-full input[type=email],
.wpforms-field.wpforms-field-select-style-classic select,
div.wpforms-container-full .wpforms-form textarea {
	border-radius: 10px;
}

button.vbna-form-submit {
	font-family:	var(--font-helvetica-neue);
	border-radius: 33px !important;
	background-color: #fff !important;
	border: 1px solid var(--blue) !important;
	color: var(--blue) !important;
	text-transform: uppercase;
    font-size: .75rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
	letter-spacing: .04em !important;
	padding: 10px 50px !important;
	cursor: pointer;
}

button.vbna-form-submit:hover {
	background-color: var(--blue) !important;
	color: #ffffff !important;
}

@media (max-width: 768px) {

.inside-header {
    flex-direction: row;
    justify-content: space-between;
}

.hd-lrg {
    font-size: 2.25rem;
    letter-spacing: .02em;
    line-height: 1.1;
    font-weight: 400;
}

    .site-header .header-widget {
        margin-top: 0;
        margin-left: unset;
        margin-right: unset;
    }

    .tbl-mobile {
        font-size: .9rem;
        font-weight: 500;
        line-height: 1.2;
    }

    table.members-table,
    .members-table thead,
    .members-table tr,
    .members-table td {
        border: 0;
    }

    .members-table thead {
        display: none;
    }

    .members-table {
        display: flex;
        width: 100%;
        overflow-x: auto;
        /* -webkit-overflow-scrolling: touch; */
        border-collapse: collapse;
    }

    .members-table tbody {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 20px 0;
        width: 100%;
    }

    .members-table tr.card-row {
        display: grid;
        grid-template-columns: 1.5fr 2fr;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, .1);
        border-top: 1px solid rgba(0, 0, 0, .1);
    }

    .members-table td.company {
        grid-column: 1;
        grid-row: 1;
    }

    .members-table td.service {
        grid-column: 2;
        grid-row: 1;
    }

    .members-table td.name {
        grid-column: 1;
        grid-row: 2;
    }

    .members-table td.contact {
        grid-column: 2;
        grid-row: 2;
    }

	table.members-table {
	  thead {
		  th { padding: 20px; }
	  }
	  tbody {
		td { padding-left: 20px; }
		}
	  }
	
}

@media (max-width: 480px) {

    .single-member img {
        max-width: 100px;
    }
}</pre></body></html>