@charset "UTF-8";
.primary-color-background {
  background-color: #3498db;
}

.secondary-color-background {
  background-color: #e74c3c;
}

.panel {
  background-color: #f4f4f4;
  border: 1px solid #bdc3c7;
}

h1, h3, h4, h5 {
  color: #333;
}

h2 {
  color: rgb(89.25, 89.25, 89.25);
}

p {
  color: #333;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.grid-item {
  background: #003366;
  color: white;
  padding: 16px;
  text-align: center;
}

html {
  font-size: 16px;
  font-family: "Oswald", sans-serif !important;
}

body {
  font-size: clamp(1rem, 2vw + 1rem, 1.25rem); /* fluid typography */
  line-height: 1.5;
  color: #333;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", serif;
  margin-bottom: 8px;
}

.bebas-neue-regular {
  font-family: "Oswald", serif;
  font-weight: 400;
  font-style: normal;
}

p {
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Heading styles */
/* clamp(min,preferred,max) */
h1, .h1 {
  font-size: clamp(2rem, 5vw + 1rem, 5rem);
}

h2, .h2 {
  font-size: clamp(1.5rem, 4vw + 1rem, 3rem);
}

h3, .h3 {
  font-size: clamp(1.25rem, 3vw + 1rem, 2.5rem);
}

h4, .h4 {
  font-size: clamp(1rem, 2vw + 1rem, 1.5rem);
}

h5, .h5 {
  font-size: clamp(1.25rem, 3vw + 1rem, 2.5rem); /* Subheading */
}

h6, .h6 {
  font-size: clamp(1.25rem, 3vw + 1rem, 2.5rem); /* Subheading */
}

/* Lead paragraph */
.lead {
  font-size: clamp(1.25rem, 2vw + 1rem, 1.5rem); /* Larger font for leads */
}

/* Normal paragraph */
p {
  font-size: clamp(1rem, 1vw + 0.25rem, 1.2rem); /* Standard text */
}

ul, ol {
  font-size: clamp(1rem, 1vw + 0.25rem, 1.2rem); /* Standard text */
}

.underline {
  border-bottom: 4px solid #256b9a;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  border: none;
  background-color: #256b9a;
  color: #ffffff;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  background-color: #4e97c5;
  border-color: rgb(33.1380753138, 125.1882845188, 186.8619246862);
}
.btn:focus {
  outline-offset: 2px;
}
.btn:active {
  transform: scale(0.98);
}

.btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  border: none;
  background-color: #4e97c5;
  color: #ffffff;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-secondary:hover {
  background-color: #4e97c5;
  border-color: rgb(33.1380753138, 125.1882845188, 186.8619246862);
}
.btn-secondary:focus {
  outline-offset: 2px;
}
.btn-secondary:active {
  transform: scale(0.98);
}

.btn-outline {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  border: none;
  background-color: transparent;
  color: #007bff;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-outline:hover {
  background-color: #4e97c5;
  border-color: rgb(33.1380753138, 125.1882845188, 186.8619246862);
}
.btn-outline:focus {
  outline-offset: 2px;
}
.btn-outline:active {
  transform: scale(0.98);
}

.btn-danger {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  border: none;
  background-color: #dc3545;
  color: #ffffff;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-danger:hover {
  background-color: #4e97c5;
  border-color: rgb(33.1380753138, 125.1882845188, 186.8619246862);
}
.btn-danger:focus {
  outline-offset: 2px;
}
.btn-danger:active {
  transform: scale(0.98);
}

/* Base styling for flex container */
.flex-row-column {
  display: flex;
  flex-direction: column; /* Default to column for mobile-first */
  width: 100%; /* Full width by default */
  /* Make flex items flexible and equal height */
  /* Adjust flex items for larger screens */
}
.flex-row-column .flex-item {
  flex: 1;
  width: 100%;
}
@media (min-width: 769px) {
  .flex-row-column {
    flex-direction: row; /* Switch to row on larger screens */
    gap: 30px; /* Increase gap for larger screens */
  }
  .flex-row-column .flex-item {
    width: 50%; /* Each flex item takes up 50% of the container on larger screens */
  }
}

.article-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
  gap: 20px;
  padding: 6px;
  width: 100%;
}
.article-container .article-link:hover .article-image {
  transform: scale(1.04);
}
.article-container .article-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.article-container article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #f4f4f4;
  outline: 1px solid #cccccc;
  padding: 10px 10px 20px 10px;
  border-radius: 4px;
  min-height: 100%;
}
.article-container article .article-image {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
  margin-bottom: 0.5em;
  transition: transform 0.3s ease;
}
.article-container article p {
  margin-top: 1.5em;
  margin-bottom: 0;
  font-size: 70% !important;
  font-family: "Oswald", sans-serif;
}
.article-container h3 {
  font-size: clamp(1.25rem, 1vw, 3rem);
  color: #333;
  font-weight: 400;
}
.article-container h4 {
  font-size: clamp(1rem, 1vw, 3rem);
  color: #2c3e50;
  font-weight: normal;
  font-family: "Oswald", sans-serif;
  line-height: 1.5em !important;
  margin-bottom: auto;
}
.article-container a.articleLink {
  display: block;
  text-align: right;
  color: #2c3e50;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
}

.grid-layout-a {
  display: flex;
  flex-direction: column;
}
.grid-layout-a .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 769px) {
  .grid-layout-a {
    flex-direction: row;
  }
}
.grid-layout-a .panel-1 {
  background-color: #0066cc;
  display: block; /* Make sure the panel-1 div is a block element */
  width: 100%;
  /* Optionally hide extra articles by default (will be revealed later via JS) */
}
.grid-layout-a .panel-1 .article {
  position: relative;
  height: 100%;
  overflow: hidden; /* Ensure articles don't overflow initially */
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #f0f0f0; /* Fallback background color */
}
.grid-layout-a .panel-1 .article .image {
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center;
  width: 100%;
}
.grid-layout-a .panel-1 .article .image .caption {
  position: absolute;
  bottom: 0px;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.6); /* Black with opacity */
  color: #fff; /* White text */
  font-size: 1.2rem;
  text-align: left;
  width: 100%;
}
.grid-layout-a .panel-1 .article:not(:first-of-type) {
  display: none;
}
.grid-layout-a .panel-2 {
  width: 100%;
  height: 100%;
  display: flex;
  background-color: #990000;
}
.grid-layout-a .panel-2 ul {
  flex-grow: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}
.grid-layout-a .panel-2 ul li {
  padding: 15px;
  background-color: #f0f0f0;
  text-align: center;
  font-size: 1.1rem;
}
.grid-layout-a .panel-2 ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.grid-layout-a .panel-2 ul li a:hover {
  color: #0077cc; /* Change color on hover */
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
  .grid-layout-a {
    flex-direction: column; /* Stack the panels vertically */
  }
  .grid-layout-a .panel-1 .article {
    height: auto; /* Adjust height on smaller screens */
  }
}
.grid-layout-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  position: relative;
}
.grid-layout-1 .overlay {
  grid-column: 1/span 2;
  grid-row: 1/span 2;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.grid-layout-1 .overlay > div {
  background-color: white;
  padding: 10px;
}
.grid-layout-1 .panel-1, .grid-layout-1 .panel-2 {
  height: 100%;
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.grid-layout-2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 16px;
}
.grid-layout-2 .overlay {
  display: flex;
  flex-direction: column;
  grid-column: 1/span 3;
}
.grid-layout-2 .overlay aside {
  background-color: #ccc;
  padding: 10px;
}
.grid-layout-2 .overlay article {
  padding: 10px;
}
.grid-layout-2 .overlay article div {
  margin-bottom: 16px;
}
.grid-layout-2 .panel {
  background-color: #f0f0f0;
  padding: 20px;
  text-align: center;
}

/* Margin and Padding Utilities */
.m-0 {
  margin: 0;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 1rem;
}

.m-4 {
  margin: 2rem;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.p-4 {
  padding: 2rem;
}

/* Gap Utilities */
.g-0 {
  gap: 0;
}

.g-1 {
  gap: 0.25rem;
}

.g-2 {
  gap: 0.5rem;
}

.g-3 {
  gap: 1rem;
}

.g-4 {
  gap: 2rem;
}

.g-5 {
  gap: 3rem;
}

.g-6 {
  gap: 4rem;
}

/* You could also combine margin and padding utilities, like mx-2 for margin-left and margin-right */
.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

/* Display Utilities */
.display-none {
  display: none;
}

.display-block {
  display: block;
}

.display-inline {
  display: inline;
}

.display-inline-block {
  display: inline-block;
}

.display-flex {
  display: flex;
}

.display-grid {
  display: grid;
}

.display-inline-flex {
  display: inline-flex;
}

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-stretch {
  align-items: stretch;
}

.perfectCentering {
  justify-content: center;
  align-items: center;
}

/* Grid Utilities */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-cols-auto {
  grid-template-columns: auto;
}

.grid-gap-1 {
  gap: 0.25rem;
}

.grid-gap-2 {
  gap: 0.5rem;
}

.grid-gap-3 {
  gap: 1rem;
}

/* Text Utilities */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-bold {
  font-weight: bold;
}

.text-normal {
  font-weight: normal;
}

.text-light {
  font-weight: 300;
}

/* Width & Height Utilities */
.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.w-screen {
  width: 100vw;
}

.h-full {
  height: 100%;
}

.h-auto {
  height: auto;
}

.h-screen {
  height: 100vh;
}

/* Positioning Utilities */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

form#mailingList, form#contactEdit, form#subscriberEdit, form#login {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
}
form#mailingList div.requiredHp, form#contactEdit div.requiredHp, form#subscriberEdit div.requiredHp, form#login div.requiredHp {
  display: none !important;
}
form#mailingList div.formGroup, form#contactEdit div.formGroup, form#subscriberEdit div.formGroup, form#login div.formGroup {
  width: 100%;
  margin-bottom: 20px;
}
form#mailingList div#robotCheck, form#contactEdit div#robotCheck, form#subscriberEdit div#robotCheck, form#login div#robotCheck {
  font-size: 120% !important;
  font-weight: bold;
  display: flex;
}
form#mailingList label, form#contactEdit label, form#subscriberEdit label, form#login label {
  display: block;
}
form#mailingList input[type=text], form#mailingList input[type=email], form#mailingList input[type=tel], form#mailingList input[type=password], form#contactEdit input[type=text], form#contactEdit input[type=email], form#contactEdit input[type=tel], form#contactEdit input[type=password], form#subscriberEdit input[type=text], form#subscriberEdit input[type=email], form#subscriberEdit input[type=tel], form#subscriberEdit input[type=password], form#login input[type=text], form#login input[type=email], form#login input[type=tel], form#login input[type=password] {
  padding: 10px;
  border: 1px solid #cccccc;
  width: 100%;
  font-size: 110% !important;
  border-radius: 2px;
  background-color: #ffffff;
}
form#mailingList input[type=submit], form#contactEdit input[type=submit], form#subscriberEdit input[type=submit], form#login input[type=submit] {
  width: 100%;
  text-transform: uppercase;
  padding: 10px;
  letter-spacing: 7px;
  text-indent: 7px;
  font-size: 100%;
  outline: 1px solid #ffffff;
  border: none;
  color: #ffffff;
  background-color: transparent;
}
form#mailingList input[type=submit]:hover, form#contactEdit input[type=submit]:hover, form#subscriberEdit input[type=submit]:hover, form#login input[type=submit]:hover {
  color: #000000;
  background-color: #ffffff;
  outline: 1px solid #000000;
  cursor: pointer;
}

body#login main h1 {
  text-transform: uppercase;
  font-size: 150% !important;
}
body#login main #forgotPasswordGroup {
  margin-bottom: 0 !important;
}
body#login main #authenticate {
  width: 500px;
  margin: auto;
  padding: 40px 0;
}
body#login main p {
  text-align: center;
  font-size: 85% !important;
  text-transform: uppercase;
}
body#login main p a {
  text-decoration: none;
  color: #0089ad;
}
body#login main p a:hover {
  text-decoration: underline;
}
body#login main button[type=submit] {
  width: 100%;
  text-transform: uppercase;
  padding: 10px;
  letter-spacing: 7px;
  text-indent: 7px;
  font-size: 100%;
  outline: none;
  border: none;
  color: #ffffff;
  background-color: #256b9a !important;
}
body#login main button[type=submit]:hover {
  color: #ffffff !important;
  background-color: #015568 !important;
  cursor: pointer;
}

form {
  width: 100%;
  margin: auto;
}

body#home form#contact {
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  grid-template-areas: "firstNameGroup lastNameGroup" "emailGroup phoneNumberGroup" "servicesGroup servicesGroup" "privacyGroup privacyGroup" "messageGroup messageGroup" "buttonGroup buttonGroup";
}
@media (max-width: 1000px) {
  body#home form#contact {
    width: 100%;
    grid-template-areas: "firstNameGroup firstNameGroup" "lastNameGroup lastNameGroup" "emailGroup emailGroup" "phoneNumberGroup phoneNumberGroup" "servicesGroup servicesGroup" "privacyGroup privacyGroup" "messageGroup messageGroup" "buttonGroup buttonGroup";
  }
}
body#home form#contact legend {
  color: #ffffff;
  margin-bottom: 10px;
}
body#home form#contact label {
  color: #ffffff;
  margin-bottom: 5px !important;
  display: inline-block;
}
body#home form#contact label[for=service1], body#home form#contact label[for=service2] {
  font-size: 75% !important;
}
body#home form#contact fieldset {
  outline: none;
  border: none;
}
body#home form#contact .formGroup {
  margin-bottom: 10px;
}
body#home form#contact textarea {
  width: 100%;
  height: 150px;
  border: none;
  padding: 25px;
}
body#home form#contact input {
  border: none;
}
body#home form#contact input[type=checkbox] {
  margin-right: 8px !important;
  margin-top: -1px !important;
}
body#home form#contact #firstNameGroup {
  grid-area: firstNameGroup;
}
body#home form#contact #lastNameGroup {
  grid-area: lastNameGroup;
}
body#home form#contact #emailGroup {
  grid-area: emailGroup;
}
body#home form#contact #phoneNumberGroup {
  grid-area: phoneNumberGroup;
}
body#home form#contact #servicesGroup {
  grid-area: servicesGroup;
}
body#home form#contact #privacyGroup {
  grid-area: privacyGroup;
  text-align: center;
  font-size: 80% !important;
}
body#home form#contact #privacyGroup p {
  color: #ffffff;
}
body#home form#contact #privacyGroup a {
  color: #ffffff;
}
body#home form#contact #messageGroup {
  grid-area: messageGroup;
}
body#home form#contact #buttonGroup {
  grid-area: buttonGroup;
}
body#home form#contact div.wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
body#home form#contact div.wrap > div {
  flex-basis: 100%;
  display: flex;
}

main.validationFlow form#contact {
  width: 100%;
  margin: auto;
}
main.validationFlow form#contact legend {
  color: #1d1d1d;
  margin-bottom: 10px;
}
main.validationFlow form#contact label {
  color: #1d1d1d;
  margin-bottom: 5px !important;
  display: inline-block;
}
main.validationFlow form#contact fieldset {
  outline: none;
  border: none;
}
main.validationFlow form#contact .formGroup {
  margin-bottom: 10px;
}
main.validationFlow form#contact textarea {
  width: 100%;
  height: 150px;
  border: 1px solid #c4c4c4 !important;
  outline: none;
  padding: 10px;
}
main.validationFlow form#contact input {
  padding: 10px;
  outline: 1px solid #c4c4c4 !important;
  border: none;
  font-size: 1rem;
}
main.validationFlow form#contact input[type=checkbox] {
  margin-right: 8px !important;
  margin-top: -1px !important;
  outline: none !important;
}
main.validationFlow form#contact #firstNameGroup {
  grid-area: firstNameGroup;
}
main.validationFlow form#contact #lastNameGroup {
  grid-area: lastNameGroup;
}
main.validationFlow form#contact #emailGroup {
  grid-area: emailGroup;
}
main.validationFlow form#contact #phoneNumberGroup {
  grid-area: phoneNumberGroup;
}
main.validationFlow form#contact #servicesGroup {
  grid-area: servicesGroup;
}
main.validationFlow form#contact #messageGroup {
  grid-area: messageGroup;
}
main.validationFlow form#contact #buttonGroup {
  grid-area: buttonGroup;
}
main.validationFlow form#contact div.wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
main.validationFlow form#contact div.wrap > div {
  flex-basis: 100%;
  display: flex;
}

main.validationFlow form#subscriberEdit {
  width: 100%;
  margin: auto;
}
main.validationFlow form#subscriberEdit button {
  margin: auto;
  display: block;
  width: 100%;
}
main.validationFlow form#subscriberEdit input {
  padding: 10px;
  outline: 1px solid #c4c4c4 !important;
  border: none;
  font-size: 1rem;
}
main.validationFlow form#subscriberEdit .formGroup {
  margin-bottom: 12px;
}

form#mailingList .formGroup {
  margin-bottom: 12px;
}
form#mailingList input[type=text], form#mailingList input[type=email] {
  padding: 10px;
}
form#mailingList #buttonGroup {
  grid-area: buttonGroup;
}

/* Form Utility Classes */
/* Full-width input */
.input-full {
  width: 100%;
}

/* Small, Medium, Large Inputs */
.input-sm {
  padding: 0.5rem;
  font-size: 0.875rem;
}

.input-md {
  padding: 0.75rem;
  font-size: 1rem;
}

.input-lg {
  padding: 1rem;
  font-size: 1.25rem;
}

/* Form alignment */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* Form row (for horizontal forms) */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Form column */
.form-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Button spacing */
.btn-group {
  display: flex;
  gap: 0.5rem;
}

/* Small, Medium, Large Button Sizes */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-md {
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
}

.btn-lg {
  padding: 1rem 1.5rem;
  font-size: 1.25rem;
}

/* Button colors */
.btn-primary {
  background-color: var(--primary-color, #007bff);
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-primary:hover {
  background-color: var(--primary-dark-color, #0056b3); /* Define this in _colors.scss */
}

.btn-danger {
  background-color: var(--error-color, #dc3545);
  color: #fff;
}
.btn-danger:hover {
  background-color: var(--primary-dark-color, #0056b3); /* Define this in _colors.scss */
}

/* Disabled buttons */
.btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

#search-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
#search-container p {
  font-size: 100% !important;
  color: #ffffff;
}
#search-container #quick-search input[type=text], #search-container #advanced-search input[type=text] {
  margin-bottom: 1.25em !important;
}
#search-container #quick-search a, #search-container #advanced-search a {
  border-radius: 4px;
}
#search-container form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#search-container form input, #search-container form select {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
#search-container form label {
  color: #ffffff;
  font-size: 100% !important;
}
#search-container .search-options {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px; /* Add some spacing if needed */
}
#search-container .search-options .radio-option {
  display: flex;
  align-items: center; /* Ensures radio and text are aligned */
  gap: 8px; /* Space between radio button and label */
}
#search-container a {
  display: block;
  margin-top: 10px;
  color: #ffffff; /* Replace with your $primary-color-dark */
  text-decoration: none;
  cursor: pointer;
}
#search-container a:hover {
  text-decoration: underline;
}
#search-container .hidden {
  display: none;
}

/* Loading State for AJAX Search */
#search-results, #advanced-search, #quick-search {
  padding: 10px;
  width: 90%;
  max-width: 1500px;
  margin: auto;
}
#search-results div.search-result:nth-child(odd), #advanced-search div.search-result:nth-child(odd), #quick-search div.search-result:nth-child(odd) {
  background-color: #efefef; /* Light background for odd elements */
}
#search-results div.search-result:nth-child(even), #advanced-search div.search-result:nth-child(even), #quick-search div.search-result:nth-child(even) {
  background-color: #ffffff; /* White background for even elements */
}
#search-results div.search-result, #advanced-search div.search-result, #quick-search div.search-result {
  padding: 10px;
}
#search-results div.search-result h3, #advanced-search div.search-result h3, #quick-search div.search-result h3 {
  font-size: 110% !important;
  font-weight: normal;
  margin: 0 !important;
  padding: 0 !important;
}
#search-results div.search-result p, #advanced-search div.search-result p, #quick-search div.search-result p {
  font-weight: normal;
  margin: 0 !important;
  padding: 0 !important;
}
#search-results div.search-result a, #advanced-search div.search-result a, #quick-search div.search-result a {
  color: #256b9a !important;
  text-decoration: none;
}
#search-results div.search-result a:hover, #advanced-search div.search-result a:hover, #quick-search div.search-result a:hover {
  text-decoration: underline;
}

.loading {
  color: #007bff;
  font-style: italic;
}

.error {
  color: #d9534f;
  font-weight: bold;
}

/* Honeypot */
.veryRequired {
  display: none;
}

#consentGroup {
  display: flex;
  align-items: center; /* vertically align label with checkbox */
  gap: 0.5em; /* space between checkbox and text */
}

#consentGroup label {
  margin: 0; /* remove default block label margin */
}

/* Branding */
header#branding {
  background-color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding: 0.4em 0 1.85em 0;
}
header#branding div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
header#branding img {
  width: 60%;
  max-width: 360px;
  height: auto;
}
header#branding h1 {
  font-size: clamp(2rem, 6vw, 4.5rem);
  margin: 0;
  color: #333;
  background-color: #ffffff;
  text-shadow: 1px 1px 0 #bcbcbc, 4px 4px 0 #9c9c9c;
  letter-spacing: 5px;
  text-indent: 5px;
}
header#branding h2 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin: 0;
  color: #666;
  font-weight: normal;
  letter-spacing: 10px;
  text-indent: 10px;
}

/* Ribbon Navigation Styles */
#ribbonNav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 15px;
}
#ribbonNav a {
  text-decoration: none;
  color: #2c3e50;
}
#ribbonNav ul:first-child {
  text-align: left;
  max-width: 500px;
}
#ribbonNav ul:last-child {
  text-align: right;
}
#ribbonNav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #ffffff;
  font-size: 15px;
}
#ribbonNav li {
  flex: 1 1 auto; /* Each item only takes as much space as needed */
  min-width: 90px; /* Prevents items from becoming too small */
}

/* Categories navigation container */
.category-nav {
  width: 100%;
}

.category-nav-list {
  width: 100% !important;
  display: flex; /* Flexbox for larger screens */
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  transition: all 0.4s ease; /* Transition for smooth changes */
}

/* Category items */
.category-nav-item {
  opacity: 1;
  max-height: 500px;
  transition: opacity 0.4s ease, max-height 0.4s ease;
  overflow: hidden;
}

/* Only apply flex stretch behavior on large screens */
@media (min-width: 1101px) {
  .category-nav-item {
    flex: 1 1 0;
  }
}
.category-nav-item.hidden {
  opacity: 0;
  max-height: 0;
  pointer-events: none;
}

/* Toggle button for mobile screens */
.toggle-menu {
  display: none; /* Initially hidden on larger screens */
  cursor: pointer;
  font-weight: bold;
  font-size: 150% !important;
}

/* For mobile screens */
@media (max-width: 1100px) {
  .category-nav-list {
    flex-direction: column;
  }
  .toggle-menu {
    display: block;
  }
  /* Mobile: hide nav items by default with transitions */
  .category-nav-item:not(.toggle-menu) {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, max-height 0.4s ease;
  }
  /* When expanded, show them */
  .category-nav-list.expanded .category-nav-item:not(.toggle-menu) {
    opacity: 1;
    max-height: 200px; /* adjust as needed */
    pointer-events: auto;
  }
}
/* Category links */
.category-nav-link {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  padding: 0.75rem 0.95rem;
  display: block;
  text-align: center;
  background-color: #256b9a;
  width: 100% !important;
  white-space: nowrap; /* Prevents text from breaking */
}
.category-nav-link:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* Hover & focus states */
.category-nav-link:hover,
.category-nav-link:focus {
  background-color: #4e97c5;
}
.category-nav-link:hover a,
.category-nav-link:focus a {
  text-decoration: underline;
}
/* -- CATEGORIES -- */
/* Styling for the "Browse articles" item */
.browse-item {
  flex: 0 0 auto; /* Prevents it from growing too large */
}

.browse-item .category-nav-link {
  background-color: #4e97c5;
}

.browse-item .category-nav-link:hover a,
.browse-item .category-nav-link:focus a {
  color: #ffffff;
}
.browse-item .category-nav-link:hover a:hover,
.browse-item .category-nav-link:focus a:hover {
  color: #ffffff;
}

/* Mobile Navigation */
nav#mobile {
  position: relative;
  justify-content: flex-end;
  padding: 1rem;
  background: #fff; /* optional, to make it visible */
  z-index: 10; /* make sure it's above other elements */
}

/* Hamburger Icon */
#navicon {
  cursor: pointer;
  z-index: 20; /* must be higher than #mobileMenu */
  position: relative;
}

#navicon div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 18px;
  width: 25px;
}

#navicon hr {
  margin: 0;
  padding: 0;
  border: none;
  background: #000;
  height: 2px;
  width: 100%;
}

/* Mobile Menu */
#mobileMenu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
  background: white;
  padding: 1.5rem;
  height: 100vh;
  overflow-y: auto;
}

#mobileMenu.active {
  display: block;
  opacity: 1;
}

#mobileMenu.hidden {
  display: none;
}

#mobileMenu ul {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#mobileMenu ul li {
  margin: 15px 0;
}

#mobileMenu ul li a {
  font-size: 18px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

#mobileMenu ul li:last-child {
  font-size: 16px;
  font-weight: normal;
}

#mobileMenu ul li a:hover {
  color: #007bff;
}

/* Media Queries */
/* Desktop and Tablet view - Show the ribbon navigation */
@media (min-width: 1300px) {
  #ribbonNav {
    display: flex;
  }
  #mobile {
    display: none;
  }
  #mobileMenu {
    display: none;
  }
  #navicon {
    display: none;
  }
}
/* Mobile view - Hide ribbon, show mobile menu */
@media (max-width: 1299px) {
  #ribbonNav {
    display: none;
  }
  #mobile {
    display: flex;
  }
  #navicon {
    display: block;
  }
}
section#welcomeGroup {
  justify-content: center;
  align-content: center;
  background-image: url("/css/images/heroShot.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 1200px) {
  section#welcomeGroup {
    padding: clamp(1em, 2vw, 4em) 0 clamp(1em, 2vw, 4em) 0;
  }
}
section#welcomeGroup .wrap {
  display: flex;
  flex-direction: column;
  width: 98%;
  max-width: 1400px;
  margin: auto;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.4); /* dark transparent background */
}
@media (min-width: 1200px) {
  section#welcomeGroup .wrap {
    flex-direction: row;
  }
}
section#welcomeGroup .portrait {
  width: 50%;
  max-width: 250px;
  margin: auto;
  display: block;
  border-radius: 50%;
}
section#welcomeGroup p {
  font-size: clamp(1rem, 1vw, 1.2rem);
  font-weight: normal;
  line-height: 1.5em;
}
section#welcomeGroup h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600 !important;
  margin: 0 !important;
}
section#welcomeGroup h2 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin: 0 0 15px 0 !important;
  font-weight: 400;
}
section#welcomeGroup h4 {
  font-size: clamp(2rem, 5vw + 1rem, 2rem);
  color: #333;
}
section#welcomeGroup .headline, section#welcomeGroup .copy {
  padding: 0 15px;
  width: 100%;
}
section#searchGroup {
  background-color: #256b9a;
  padding: clamp(1.75em, 2vw, 1em) 0 clamp(1.75em, 2vw, 1em) 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}

section#search-results-section {
  display: none;
  padding-top: 0.5em;
}
section#search-results-section h2 {
  text-align: center;
  font-weight: normal;
  font-size: 180% !important;
}

section#howHelp {
  padding: clamp(1em, 2vw, 4em) 0 clamp(1em, 2vw, 4em) 0;
  background: radial-gradient(circle, white 0%, #f6f5f5 200%);
  background-position: center;
  background-size: cover;
}
section#howHelp .container {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: auto;
  gap: 10px;
  padding: 10px;
  width: 100%;
}
@media (min-width: 1200px) {
  section#howHelp .container {
    flex-direction: row;
    max-width: 100% !important;
  }
}
section#howHelp .container > div {
  padding: 15px;
  display: flex;
  flex-direction: column; /* Stack children vertically */
  justify-content: space-between; /* Push button to the bottom */
  height: 100%; /* Ensure all divs are equal height */
  flex-grow: 1;
}
section#howHelp button {
  margin-top: 15px !important;
}
section#howHelp .container ul {
  list-style-position: inside;
  flex-grow: 1; /* Allow ul to grow and fill space */
  font-size: clamp(1rem, 1vw, 1.2rem);
  font-weight: normal;
  line-height: 1.85em;
  margin-bottom: 15px;
}
section#howHelp li {
  margin-bottom: 0px;
}
section#howHelp .container button {
  margin-top: auto; /* Push button to the bottom */
  display: block;
}
section#howHelp h2 {
  text-align: center;
  font-weight: 500;
  color: #256b9a !important;
}
section#howHelp h3 {
  font-size: clamp(1.5rem, 1vw + 1.5rem, 1.6rem);
  font-weight: 500 !important;
  margin-bottom: 10px;
  color: #333;
  word-spacing: 3px;
}
section#howHelp h4 {
  font-size: 1.1rem;
  color: #ecf0f1;
  font-weight: normal;
  font-family: "Poppins";
  line-height: 2em !important;
}
section#howHelp a.articleLink {
  color: #ffffff;
  text-decoration: none;
}

section#z-howHelp .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 10px;
  padding: 10px;
  width: 100%;
}
section#z-howHelp .container > div {
  outline: 1px solid #373737;
  padding: 15px;
}
section#z-howHelp .container > div ul {
  list-style-position: inside;
  font-size: 100% !important;
}
section#z-howHelp .container > div button {
  margin: auto;
  display: block;
}
section#z-howHelp h2 {
  text-align: center;
}
section#z-howHelp h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
  color: #333;
  word-spacing: 3px;
}
section#z-howHelp h4 {
  font-size: 1.1rem;
  color: #ecf0f1;
  font-weight: normal;
  font-family: "Poppins";
  line-height: 2em !important;
}
section#z-howHelp a.articleLink {
  color: #ffffff;
  text-decoration: none;
}

section#testimonials {
  background: radial-gradient(circle, #ffffff 0%, #e8e6e6 100%);
  background-position: center;
  background-size: cover;
  padding: clamp(0.75em, 2vw, 4em) 0 clamp(0.5em, 3vw, 4em) 0;
}
section#testimonials h2 {
  text-align: center;
  margin-bottom: 0.5em;
  font-weight: 500;
  color: #256b9a;
}
section#testimonials > div {
  width: 94% !important;
  max-width: 1400px;
  margin: auto;
  padding: 12px;
}
section#testimonials > div > div {
  text-align: center;
}

section#heroGroup {
  padding: 14px 14px 0 14px !important;
}
section#heroGroup h2 {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 500;
}

section#articlesGroup {
  padding: 1em 13px 13px 13px;
}
section#articlesGroup h2 {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 500;
  color: #256b9a;
}
section#articlesGroup .disclaimer {
  margin-bottom: 30px !important;
}
section#articlesGroup .disclaimer p {
  font-size: 80%;
  text-align: center;
  margin-bottom: 10px !important;
}

section#whyLearn img {
  width: 100% !important;
  height: 100% !important;
}
section#whyLearn .wrap {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  section#whyLearn .wrap {
    flex-direction: row;
  }
}
section#whyLearn .wrap h2 {
  color: #ffffff !important;
  font-weight: 500;
  text-align: center;
  font-size: 150% !important;
}
section#whyLearn .wrap .list {
  background-color: #256b9a;
  flex: 1 1 50%;
  color: #ffffff;
  display: flex;
}
@media (max-width: 1200px) {
  section#whyLearn .wrap .list {
    border-top: 1px solid #cccccc;
    padding: 2em;
  }
}
@media (min-width: 1200px) {
  section#whyLearn .wrap .list {
    border-left: 1px solid #cccccc;
    padding: 4em;
  }
}
section#whyLearn .wrap .list ul {
  text-align: center;
  list-style-type: none;
  font-size: 80% !important;
}
section#whyLearn .wrap .list li {
  margin-bottom: 10px;
}
section#whyLearn .wrap .list li:last-child {
  margin-bottom: 0 !important;
}
section#whyLearn .wrap .headline {
  background-color: #4e97c5;
  flex: 1 1 50%;
  color: #ffffff;
  display: flex;
}

section#contactGroup {
  font-family: "Oswald", sans-serif;
  background-color: #256b9a;
  padding: clamp(1em, 2vw, 4em) 0 clamp(1em, 2vw, 4em) 0;
}
section#contactGroup > div.wrap {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  section#contactGroup > div.wrap {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  section#contactGroup > div.wrap > div {
    justify-content: center;
    align-items: center;
  }
}
section#contactGroup > div.wrap .headline, section#contactGroup > div.wrap .form {
  padding: 0 2em !important;
}
section#contactGroup h2, section#contactGroup h3 {
  color: #ffffff;
}

footer {
  font-family: "Oswald", sans-serif;
}
footer .wrap {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1100px) {
  footer .wrap {
    flex-direction: row;
  }
}
footer .wrap > div {
  flex: 1;
  min-width: 0;
}
footer .connect {
  padding: 2em;
}
@media (max-width: 1100px) {
  footer .connect {
    order: 1;
  }
}
footer .connect ul {
  list-style-type: none;
}
footer .connect ul a {
  color: #256b9a;
  text-decoration: none;
}
footer .connect ul a:hover {
  text-decoration: underline;
}
footer .connect ul li {
  margin-bottom: 12px;
}
footer .connect ul li:last-child {
  margin-bottom: 0;
}
footer .subscribe {
  padding: 2em 2em 2em 4em;
}
@media (max-width: 1100px) {
  footer .subscribe {
    order: 2;
    padding: 2em;
  }
}
footer .subscribe label[for=consent] {
  font-size: 75% !important;
}
footer .footerLogo {
  text-align: center;
}
@media (max-width: 1100px) {
  footer .footerLogo {
    order: 3;
  }
}
footer .footerLogo img {
  width: 60%;
  max-width: 400px;
  height: auto;
}
footer .footerLogo h5 {
  font-size: clamp(2rem, 8vw + 1rem, 2rem);
  margin: 0;
  color: #333;
  letter-spacing: 5px;
  text-indent: 5px;
}
footer .footerLogo h6 {
  font-size: clamp(1rem, 1vw + 1rem, 1rem);
  margin: 0;
  color: #666;
  font-weight: normal;
  letter-spacing: 10px;
  text-indent: 10px;
}

section#copyright {
  text-align: center;
  padding: 1.5em 0;
}
section#copyright p {
  font-size: clamp(1rem, 1vw + 1rem, 1rem) !important;
}

#indexIntroduction {
  padding: 1.25em 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
#indexIntroduction > div {
  margin: auto;
  width: 98% !important;
  max-width: 1200px;
  background-color: rgba(255, 255, 255, 0.65);
  padding: 30px;
}
#indexIntroduction h1, #indexIntroduction h2, #indexIntroduction p {
  text-align: center;
}
#indexIntroduction h1 {
  font-size: clamp(0.9rem, 2vw, 3rem);
  font-weight: 600 !important;
  margin: 0 !important;
}
#indexIntroduction h2 {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin: 0 0 15px 0 !important;
  font-weight: 400;
}
#indexIntroduction p {
  font-size: clamp(1rem, 1.15vw, 1.5rem);
  margin: 0 0 15px 0 !important;
  font-weight: normal;
}

main.post-one-column {
  padding-top: 25px !important;
}
main.post-one-column audio {
  width: 98%;
  max-width: 500px;
  margin: 20px auto; /* vertical margin + center horizontally */
  display: block; /* makes margin auto work for centering */
}
main.post-one-column header {
  padding-bottom: 25px;
}
main.post-one-column header > div {
  width: 98% !important;
  max-width: 1000px !important;
  margin: auto;
}
main.post-one-column header a {
  text-decoration: none;
  color: #256b9a;
}
main.post-one-column header a:hover {
  text-decoration: underline;
}
main.post-one-column header h1, main.post-one-column header h2, main.post-one-column header h3, main.post-one-column header p {
  text-align: center;
}
main.post-one-column header h1 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 600 !important;
  margin: 0 !important;
}
main.post-one-column header h2 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin: 0 0 15px 0 !important;
  font-weight: 400;
}
main.post-one-column header h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: normal;
}
main.post-one-column header img {
  max-width: 100% !important;
  max-height: 400px;
  margin: 20px auto 20px auto !important;
  aspect-ratio: 16/9;
}
main.post-one-column header ul.share {
  display: flex;
  list-style-type: none;
  margin: 0 auto 20px auto !important;
  width: 98% !important;
  max-width: 500px;
  justify-content: space-around;
}
main.post-one-column header ul.share li {
  text-align: center;
  font-size: 90%;
  padding: 10px;
}
main.post-one-column header div.taxonomy {
  background-color: #efefef;
  display: flex;
}
main.post-one-column header div.taxonomy ul {
  list-style-type: none !important;
  flex-basis: 50% !important;
  display: flex;
  flex-direction: column;
  padding: 20px !important;
  font-size: 90% !important;
}
main.post-one-column header div.taxonomy li:first-child {
  font-weight: 700;
  margin-bottom: 8px;
}
main.post-one-column div#content {
  width: 100% !important;
  margin: 0 auto 15px auto;
  padding: 0 20px;
  max-width: 1200px;
  border-bottom: 1px solid #cccccc;
}
main.post-one-column div#content article iframe {
  display: block;
  margin: auto;
}
main.post-one-column div#content a {
  color: #256b9a;
}
main.post-one-column div#content a:hover {
  text-decoration: underline;
}
main.post-one-column div#content h1 {
  font-size: clamp(1.5rem, 1vw, 3rem);
}
main.post-one-column div#content h2, main.post-one-column div#content .h2 {
  font-size: clamp(1.8rem, 1vw, 2rem);
  margin-bottom: 20px !important;
  color: #256b9a !important;
}
main.post-one-column div#content h3, main.post-one-column div#content h4 {
  font-size: clamp(0.6rem, 1.3em, 1.5rem);
  margin-bottom: 20px;
  color: #256b9a;
}
main.post-one-column div#content p {
  font-family: "Georgia", serif !important;
  line-height: 1.75em !important;
}
main.post-one-column div#content ul {
  list-style-position: outside;
  font-family: "Georgia", serif !important;
  margin-bottom: 30px;
  padding-left: 20px;
}
main.post-one-column div#content ol {
  list-style-position: outside;
  font-family: "Georgia", serif !important;
  margin-bottom: 30px;
  padding-left: 20px;
}
main.post-one-column div#content li {
  margin-bottom: 15px;
  line-height: 1.75em !important;
}
main.post-one-column div#content li:last-child {
  margin-bottom: 0 !important;
}
main.post-one-column aside#meetDan {
  width: 98% !important;
  margin: auto;
}
main.post-one-column aside#meetDan .wrap {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  main.post-one-column aside#meetDan .wrap {
    flex-direction: row;
  }
}
main.post-one-column aside#meetDan .wrap a {
  color: #ffffff;
}
main.post-one-column aside#meetDan .wrap p {
  font-size: 15px;
  color: #ffffff;
}
main.post-one-column aside#meetDan .wrap h2 {
  color: #ffffff !important;
  font-weight: 500;
  text-align: center;
  font-size: 180% !important;
}
main.post-one-column aside#meetDan .wrap h3 {
  font-size: 120% !important;
  text-align: center;
  color: #ffffff;
  margin-bottom: 10px;
}
main.post-one-column aside#meetDan .wrap .list {
  background-color: #256b9a;
  flex: 1 1 50%;
  color: #ffffff;
  display: flex;
  padding: 0 2em;
}
main.post-one-column aside#meetDan .wrap .list ul {
  text-align: center;
  list-style-type: none;
  font-size: 75% !important;
  display: flex;
  width: 100% !important;
  margin-top: 20px;
  margin-bottom: 20px;
  flex-direction: column;
}
@media (min-width: 1200px) {
  main.post-one-column aside#meetDan .wrap .list ul {
    flex-direction: row;
  }
}
main.post-one-column aside#meetDan .wrap .list li {
  margin-bottom: 10px;
  flex: 1;
}
main.post-one-column aside#meetDan .wrap .list li:last-child {
  margin-bottom: 0 !important;
}
main.post-one-column aside#meetDan .wrap .headline {
  background: url("/images/DanAtBeach.jpg") no-repeat left center;
  background-size: cover;
  flex: 1 1 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px !important;
}
main.post-one-column aside#callToAction {
  width: 98%;
  margin: 0 auto;
  color: #fff;
  /* Reset anything inherited that might cause weird flex text wrapping */
  /* LEFT SIDE */
  /* RIGHT SIDE */
}
main.post-one-column aside#callToAction #payPalWrapper {
  width: 98%;
  max-width: 400px;
  margin: auto;
}
main.post-one-column aside#callToAction h2, main.post-one-column aside#callToAction h3 {
  display: block !important;
  text-align: center;
  white-space: normal !important;
  word-break: normal !important;
}
main.post-one-column aside#callToAction .wrap {
  display: flex;
  flex-direction: column;
  gap: 0 1.5em;
}
main.post-one-column aside#callToAction .cta-card {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
main.post-one-column aside#callToAction .cta-card h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 600;
  margin-bottom: 0.6em;
  color: #256b9a !important;
}
main.post-one-column aside#callToAction .cta-card p {
  font-size: clamp(1rem, 1vw + 0.25rem, 1.2rem);
  margin-bottom: 1.2em;
  color: #256b9a !important;
}
main.post-one-column aside#callToAction .cta-card ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 420px;
  text-align: left;
}
main.post-one-column aside#callToAction .cta-card ul li {
  font-size: clamp(1rem, 1vw + 0.25rem, 1.2rem);
  margin-bottom: 0.5em;
  line-height: 1.4;
}
main.post-one-column aside#callToAction .cta-card ul li:before {
  content: "✔";
  color: #fff;
  margin-right: 0.4em;
}
main.post-one-column aside#callToAction .cta-cta {
  flex: 1 1 50%;
  color: #333;
}
main.post-one-column aside#callToAction .cta-cta .cta-inner {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
main.post-one-column aside#callToAction .cta-cta h3 {
  font-size: clamp(1rem, 1vw + 0.4rem, 1.3rem);
  margin-bottom: 1em;
  font-weight: 500;
}
main.post-one-column aside#callToAction .cta-cta #paypal-container-DVM9E8WFPJSE8 {
  width: 100%;
  margin-top: 0.5em;
}

main.validationFlow {
  padding: 2em 0;
}
main.validationFlow h1 {
  font-size: 200% !important;
}
main.validationFlow h3 {
  font-size: 120% !important;
}
main.validationFlow header {
  text-align: center;
}
main.validationFlow section.container {
  width: 98%;
  max-width: 1200px;
  margin: auto;
}
main.validationFlow div.confirmation {
  margin-bottom: 1em;
}
main.validationFlow div.confirmation ul {
  list-style-position: inside;
}
main.validationFlow div.confirm {
  text-align: center;
  margin: 2em auto 1em auto;
  display: block;
}
main.validationFlow div.confirm a {
  color: #ffffff;
  text-decoration: none;
  font-size: 130% !important;
}
main.validationFlow div.edit {
  text-align: center;
  font-size: 110% !important;
}
main.validationFlow div.edit a {
  color: #256b9a !important;
  text-decoration: none;
}
main.validationFlow div.edit a:hover {
  text-decoration: underline;
}

/* Global Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*# sourceMappingURL=stylesBrochure.css.map */
