@charset "UTF-8";
/**
 * Main SCSS file for Custom Theme
 * 
 * This file imports all the partial SCSS files
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
/**
 * Variables
 * 
 * Define all theme variables here
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
/**
 * Main SCSS file for Custom Theme
 * 
 * This file imports all the partial SCSS files
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
/**
 * Mixins
 * 
 * Reusable SCSS mixins
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/**
 * Main SCSS file for Custom Theme
 * 
 * This file imports all the partial SCSS files
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
/**
 * Base Styles
 * 
 * Reset and base element styles
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

/* Remove default outlines from non-interactive elements */
img,
video,
svg,
iframe {
  outline: none;
}

/* Enable smooth scrolling */
html {
  scroll-behavior: smooth;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  font-size: 1rem;
  line-height: 1.6;
}

a {
  color: #114DA5;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: rgb(0, 39, 57);
  text-decoration: underline;
}
a:focus {
  outline: 2px solid #114DA5;
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  margin: 0 0 1rem 0;
  padding: 0;
}

li {
  margin-bottom: 0.25rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

th, td {
  padding: 0.5rem;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

th {
  font-weight: 600;
  background-color: #f2f2f2;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea,
select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  background-color: #ffffff;
  transition: border-color 0.3s ease;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #114DA5;
  box-shadow: 0 0 0 2px rgba(17, 77, 165, 0.1);
}
input[type=text]:disabled,
input[type=email]:disabled,
input[type=url]:disabled,
input[type=password]:disabled,
input[type=search]:disabled,
input[type=number]:disabled,
input[type=tel]:disabled,
input[type=range]:disabled,
input[type=date]:disabled,
input[type=month]:disabled,
input[type=week]:disabled,
input[type=time]:disabled,
input[type=datetime]:disabled,
input[type=datetime-local]:disabled,
input[type=color]:disabled,
textarea:disabled,
select:disabled {
  background-color: #f2f2f2;
  cursor: not-allowed;
}

button, input[type=submit] {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
button:hover, input[type=submit]:hover {
  text-decoration: none;
}
button:focus, input[type=submit]:focus {
  outline: 2px solid #114DA5;
  outline-offset: 2px;
}
button, input[type=submit] {
  background-color: #114DA5;
  color: #ffffff;
}
button:hover, input[type=submit]:hover {
  background-color: rgb(0, 39, 57);
  color: #ffffff;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.screen-reader-text:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: 0.5rem 1rem !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  background-color: #114DA5;
  color: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  z-index: 100000;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
[tabindex]:focus,
.swiper-button-next:focus,
.swiper-button-prev:focus,
.swiper-pagination-bullet:focus {
  outline: 2px solid #114DA5;
  outline-offset: 2px;
}

img:focus,
video:focus,
svg:focus {
  outline: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999999;
}
.skip-link:focus {
  left: 6px;
  top: 7px;
  padding: 0.5rem 1rem;
  background: #114DA5;
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
}

/**
 * Main SCSS file for Custom Theme
 * 
 * This file imports all the partial SCSS files
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
/**
 * Typography
 * 
 * Typography styles and heading hierarchy
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: pretty;
}

h1 {
  font-size: 2.25rem;
}
@media (max-width: 767px) {
  h1 {
    font-size: 1.875rem;
  }
}

h2 {
  font-size: 1.875rem;
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  h3 {
    font-size: 1.25rem;
  }
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin: 0 0 1rem 0;
  text-wrap: pretty;
}

.entry-content a {
  color: #114DA5;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.1em;
}
.entry-content a:hover {
  color: rgb(0, 39, 57);
  text-decoration-thickness: 2px;
}

blockquote {
  margin: 2rem 0;
  padding: 1rem 0 1rem 1.5rem;
  border-left: 4px solid #114DA5;
  font-style: italic;
  font-size: 1.125rem;
  color: #114DA5;
}
blockquote p:last-child {
  margin-bottom: 0;
}
blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-style: normal;
  color: #999999;
}
blockquote cite::before {
  content: "— ";
}

ul, ol {
  padding-left: 1.5rem;
}
ul ul, ul ol, ol ul, ol ol {
  margin-bottom: 0;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.list-inline {
  list-style: none;
  padding-left: 0;
}
.list-inline li {
  display: inline-block;
  margin-right: 0.5rem;
}
.list-inline li:last-child {
  margin-right: 0;
}

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

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

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

.text-small {
  font-size: 0.875rem;
}

.text-large {
  font-size: 1.125rem;
}

.text-light {
  color: #999999;
}

.text-muted {
  color: #114DA5;
}

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

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

.font-weight-medium {
  font-weight: 500;
}

.font-weight-semibold {
  font-weight: 600;
}

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

.entry-meta {
  font-size: 0.875rem;
  color: #114DA5;
  margin-bottom: 1rem;
}
.entry-meta a {
  color: #114DA5;
}
.entry-meta a:hover {
  color: #114DA5;
}

.entry-title {
  margin-bottom: 0.5rem;
}
.entry-title a {
  color: inherit;
  text-decoration: none;
}
.entry-title a:hover {
  color: #114DA5;
}

.posted-on,
.byline,
.cat-links,
.tags-links {
  display: inline-block;
  margin-right: 1rem;
}
.posted-on:last-child,
.byline:last-child,
.cat-links:last-child,
.tags-links:last-child {
  margin-right: 0;
}

/**
 * Main SCSS file for Custom Theme
 * 
 * This file imports all the partial SCSS files
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
/**
 * Layout
 * 
 * Main layout components and structure
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .container {
    padding: 0 25px;
  }
}

.site-main {
  min-height: calc(100vh - 200px);
}
@media (max-width: 767px) {
  .site-main {
    padding: 0;
  }
}

@media (min-width: 992px) {
  .content-area {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
  }
}

.widget-area {
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .widget-area {
    margin-top: 0;
  }
}

.widget {
  background: #f2f2f2;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.widget:last-child {
  margin-bottom: 0;
}

.widget-title {
  margin: 0 0 1rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #000000;
}

.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
}
.widget ul li:last-child {
  border-bottom: none;
}
.widget ul a {
  color: #114DA5;
  text-decoration: none;
}
.widget ul a:hover {
  color: rgb(0, 39, 57);
  text-decoration: underline;
}

ul, ol {
  margin: 0 0 1.5rem 0;
  padding-left: 1.5rem;
}
ul li, ol li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
ul li:last-child, ol li:last-child {
  margin-bottom: 0;
}

ul {
  list-style-type: disc;
}
ul ul {
  list-style-type: circle;
  margin: 0.5rem 0;
}
ul ul ul {
  list-style-type: square;
}

ol {
  list-style-type: decimal;
}
ol ol {
  list-style-type: lower-alpha;
  margin: 0.5rem 0;
}
ol ol ol {
  list-style-type: lower-roman;
}

.list-unstyled, .list-arrow, .list-check, .list-icon, .list-group, .list-group-flush, .list-inline {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.list-unstyled li, .list-arrow li, .list-check li, .list-icon li, .list-group li, .list-group-flush li, .list-inline li {
  margin-bottom: 0.25rem;
}
.list-unstyled li:last-child, .list-arrow li:last-child, .list-check li:last-child, .list-icon li:last-child, .list-group li:last-child, .list-group-flush li:last-child, .list-inline li:last-child {
  margin-bottom: 0;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.list-inline li {
  margin-bottom: 0;
}

.list-group li, .list-group-flush li {
  padding: 1rem;
  border: 1px solid #e9ecef;
  border-bottom: none;
  background: #ffffff;
}
.list-group li:first-child, .list-group-flush li:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.list-group li:last-child, .list-group-flush li:last-child {
  border-bottom: 1px solid #e9ecef;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.list-group li:hover, .list-group-flush li:hover {
  background: #f2f2f2;
}

.list-group-flush li {
  border-left: none;
  border-right: none;
  border-radius: 0;
}
.list-group-flush li:first-child, .list-group-flush li:last-child {
  border-radius: 0;
}

.list-icon li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.list-icon li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #114DA5;
  border-radius: 50%;
  margin-top: 0.5em;
  flex-shrink: 0;
}

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.list-check li::before {
  content: "✓";
  color: #114DA5;
  font-weight: 700;
  flex-shrink: 0;
}

.list-arrow li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.list-arrow li::before {
  content: "→";
  color: #114DA5;
  font-weight: 700;
  flex-shrink: 0;
}

.list-nested ul, .list-nested ol {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}
.list-nested li {
  margin-bottom: 0.25rem;
}

.list-spacing-sm li {
  margin-bottom: 0.25rem;
}

.list-spacing-lg li {
  margin-bottom: 1rem;
}

.list-spacing-xl li {
  margin-bottom: 1.5rem;
}

/**
 * Main SCSS file for Custom Theme
 * 
 * This file imports all the partial SCSS files
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
/**
 * Components
 * 
 * Reusable UI components
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
*:focus,
*:active,
*:focus-visible {
  outline: none !important;
  outline-width: 0 !important;
  outline-style: none !important;
  outline-color: transparent !important;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-focus-ring-color: transparent !important;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover {
  text-decoration: none;
}
.btn:focus {
  outline: 2px solid #114DA5;
  outline-offset: 2px;
}
.btn--primary {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--primary:hover {
  text-decoration: none;
}
.btn--primary:focus {
  outline: 2px solid #114DA5;
  outline-offset: 2px;
}
.btn--primary {
  background-color: #114DA5;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: rgb(0, 39, 57);
  color: #ffffff;
}
.btn--secondary {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--secondary:hover {
  text-decoration: none;
}
.btn--secondary:focus {
  outline: 2px solid #114DA5;
  outline-offset: 2px;
}
.btn--secondary {
  border: 1px solid #e9ecef;
  background-color: #f2f2f2;
  color: #000000;
}
.btn--secondary:hover {
  background-color: #e9ecef;
  color: #000000;
}
.btn--large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
.btn--small {
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #114DA5;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1030;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top span {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: rgb(0, 39, 57);
  transform: translateY(-2px);
}

.section-title {
  text-align: center;
  font-size: 1.875rem;
  color: #114DA5;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 1.5rem;
    text-align: left;
  }
}

.swiper-slide {
  background: transparent !important;
}

/**
 * Main SCSS file for Custom Theme
 * 
 * This file imports all the partial SCSS files
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
/**
 * Utilities
 * 
 * Utility classes for quick styling
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

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

.m-2 {
  margin: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.ml-3 {
  margin-left: 1rem !important;
}

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mr-4 {
  margin-right: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4 {
  margin-left: 1.5rem !important;
}

.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.m-5 {
  margin: 2rem !important;
}

.mt-5 {
  margin-top: 2rem !important;
}

.mr-5 {
  margin-right: 2rem !important;
}

.mb-5 {
  margin-bottom: 2rem !important;
}

.ml-5 {
  margin-left: 2rem !important;
}

.mx-5 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.my-5 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

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

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pr-3 {
  padding-right: 1rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pr-4 {
  padding-right: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4 {
  padding-left: 1.5rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.p-5 {
  padding: 2rem !important;
}

.pt-5 {
  padding-top: 2rem !important;
}

.pr-5 {
  padding-right: 2rem !important;
}

.pb-5 {
  padding-bottom: 2rem !important;
}

.pl-5 {
  padding-left: 2rem !important;
}

.px-5 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.py-5 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-grid {
  display: grid !important;
}

@media (max-width: 767px) {
  .d-none-mobile {
    display: none !important;
  }
  .d-block-mobile {
    display: block !important;
  }
}
@media (min-width: 768px) {
  .d-none-tablet {
    display: none !important;
  }
  .d-block-tablet {
    display: block !important;
  }
}
@media (min-width: 992px) {
  .d-none-desktop {
    display: none !important;
  }
  .d-block-desktop {
    display: block !important;
  }
}
.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

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

.flex-nowrap {
  flex-wrap: nowrap !important;
}

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

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

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

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

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

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

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

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

.align-baseline {
  align-items: baseline !important;
}

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

.text-left {
  text-align: left !important;
}

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

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

.text-justify {
  text-align: justify !important;
}

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

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

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

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-primary {
  color: #114DA5 !important;
}

.text-secondary {
  color: #F5692D !important;
}

.text-success {
  color: #28a745 !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-info {
  color: #17a2b8 !important;
}

.text-light {
  color: #999999 !important;
}

.text-dark {
  color: #333333 !important;
}

.text-muted {
  color: #114DA5 !important;
}

.text-white {
  color: #ffffff !important;
}

.bg-primary {
  background-color: #114DA5 !important;
}

.bg-secondary {
  background-color: #F5692D !important;
}

.bg-success {
  background-color: #28a745 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

.bg-light {
  background-color: #f2f2f2 !important;
}

.bg-dark {
  background-color: #333333 !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #e9ecef !important;
}

.border-top {
  border-top: 1px solid #e9ecef !important;
}

.border-right {
  border-right: 1px solid #e9ecef !important;
}

.border-bottom {
  border-bottom: 1px solid #e9ecef !important;
}

.border-left {
  border-left: 1px solid #e9ecef !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.rounded {
  border-radius: 10px !important;
}

.rounded-top {
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
}

.rounded-right {
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}

.rounded-bottom {
  border-bottom-right-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
}

.rounded-left {
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.shadow-none {
  box-shadow: none !important;
}

.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06) !important;
}

.shadow-lg {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05) !important;
}

/**
 * Main SCSS file for Custom Theme
 * 
 * This file imports all the partial SCSS files
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
/**
 * Navigation Styles
 * 
 * Styles for site header and navigation
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
.site-header {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 42.79%, rgba(255, 255, 255, 0) 100%);
  z-index: 1000;
  height: 0;
}
.site-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: slideDown 0.3s ease-out;
}

.header-content {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  margin: 0 auto;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 42.79%, rgba(255, 255, 255, 0) 100%);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  max-height: 60px;
  width: auto;
}
.logo .logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #114DA5;
  margin-left: 0.5rem;
}

.main-navigation {
  position: relative;
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: block !important;
  background: none !important;
  border: none !important;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
}
.menu-toggle:hover {
  background: none !important;
  transform: none !important;
}
.menu-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
}
.menu-toggle:active {
  outline: none !important;
  box-shadow: none !important;
}

.menu-toggle-icon {
  display: flex !important;
  flex-direction: column;
  width: 30px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}
.menu-toggle-icon span {
  display: block !important;
  height: 4px;
  width: 100%;
  background: #114DA5 !important;
  margin: 0;
  transition: all 0.3s ease;
  transform-origin: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

.menu-toggle.active {
  border: none !important;
  outline: none !important;
}
.menu-toggle.active .menu-toggle-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 11px);
}
.menu-toggle.active .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .menu-toggle-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(0, -6px);
}

.main-navigation ul {
  position: fixed;
  top: 2rem;
  right: 0;
  width: 33.333%;
  min-width: 300px;
  max-width: 400px;
  height: auto;
  min-height: calc(100vh - 4rem);
  background: #ffffff;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  transform: translateX(calc(100% + 1rem));
  transition: transform 0.3s ease;
  z-index: 1000;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 1.5rem 1.5rem;
  border-radius: 20px 0 0 20px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.main-navigation.menu-open ul {
  transform: translateX(0);
}

.main-navigation a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  position: relative;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}
.main-navigation a:hover {
  color: #114DA5;
  background: rgba(17, 77, 165, 0.05);
  padding-left: 1.5rem;
}
.main-navigation a:focus {
  outline: 2px solid #114DA5;
  outline-offset: 2px;
}
.main-navigation a:last-child {
  border-bottom: none;
}

.main-navigation .current-menu-item a,
.main-navigation .current_page_item a {
  color: #114DA5;
  font-weight: 600;
}

.main-navigation li {
  position: relative;
}
.main-navigation li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-navigation li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 200px;
  z-index: 1001;
}
@media (max-width: 768px) {
  .main-navigation li ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    margin-top: 0.5rem;
  }
}
@media (max-width: 768px) {
  .main-navigation li li {
    margin: 0;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .main-navigation ul {
    width: 50%;
    min-width: 280px;
    top: 1.5rem;
    right: 0;
    min-height: calc(100vh - 3rem);
    transform: translateX(calc(100% + 0.5rem));
  }
}
@media (max-width: 480px) {
  .header-content {
    padding: 0.25rem 0.5rem;
  }
  .logo img {
    max-height: 40px;
    margin: 10px 0 0 5px;
  }
  .main-navigation ul {
    width: 80%;
    min-width: 250px;
    top: 1rem;
    right: 0;
    min-height: calc(100vh - 2rem);
    border-radius: 15px 0 0 15px;
    transform: translateX(calc(100% + 0.25rem));
  }
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1002;
}
.skip-link:focus {
  left: 6px;
  top: 7px;
  background: #114DA5;
  color: #ffffff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 10px;
}

.main-navigation a:focus,
.menu-toggle:focus {
  outline: 2px solid #114DA5;
  outline-offset: 2px;
}

@media print {
  .site-header {
    position: static;
    box-shadow: none;
    border-bottom: 1px solid #e9ecef;
  }
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    position: static;
    transform: none;
    flex-direction: row;
    gap: 1rem;
  }
}
/**
 * Main SCSS file for Custom Theme
 * 
 * This file imports all the partial SCSS files
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
/**
 * Masthead Styles
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
.masthead {
  position: relative;
  z-index: -9999;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin: 0 0 -30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: inset(0);
  border-radius: 0.5px;
}
.masthead .masthead-video {
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  min-height: 100%;
  margin: -2px;
  object-fit: cover;
  object-position: bottom;
  display: block;
  outline: none;
  border: none;
  box-shadow: none;
  background-color: transparent;
  transform: scale(1.02) translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  will-change: transform;
  isolation: isolate;
  filter: brightness(1.001);
  -webkit-filter: brightness(1.001);
}
@media (min-width: 1400px) {
  .masthead {
    overflow: visible;
    clip-path: none;
  }
  .masthead .masthead-video {
    transform: translateZ(0);
  }
}
@media (max-width: 767px) {
  .masthead {
    height: 300px;
  }
}
@media (min-width: 1200px) {
  .masthead {
    margin-top: 0;
  }
}

.page-title {
  padding: 1.5rem 0;
  margin: 0;
  min-height: 120px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .page-title {
    padding: 1rem 0;
    min-height: 80px;
  }
}
.page-title .container {
  width: 100%;
}
.page-title h1 {
  color: #114DA5;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 2.25rem;
  line-height: 1;
  text-align: left;
  margin: 0;
}
@media (min-width: 992px) {
  .page-title h1 {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .page-title h1 {
    font-size: 1.875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .masthead .masthead-video,
  .masthead .masthead-content,
  .masthead .masthead-controls {
    animation: none;
  }
}
/**
 * Main SCSS file for Custom Theme
 * 
 * This file imports all the partial SCSS files
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
/**
 * Swiper.js Customizations
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 1.125rem;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
  color: #114DA5;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  transition: all 0.3s ease;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.125rem;
  font-weight: 700;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #114DA5;
  color: #ffffff;
  transform: scale(1.1);
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.swiper-pagination {
  position: relative;
  margin-top: 1.5rem;
}
.swiper-pagination .swiper-pagination-bullet {
  background: #999999;
  opacity: 0.5;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  transition: all 0.3s ease;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #114DA5;
  opacity: 1;
  transform: scale(1.2);
}

.testimonial-carousel .swiper-slide {
  padding: 1.5rem;
  background: transparent;
}

.updates-carousel .swiper-slide {
  padding: 1rem;
  background: transparent;
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  .swiper-pagination {
    margin-top: 1rem;
  }
}
/**
 * Main SCSS file for Custom Theme
 * 
 * This file imports all the partial SCSS files
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
/**
 * Footer Styles
 * 
 * All footer-related styles and components
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
.site-footer {
  background: #f2f2f2;
  padding: 2rem 0;
  margin-top: 4rem;
  color: #000000;
}
.site-footer a:hover {
  color: #114DA5;
  text-decoration: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 767px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer-content h4 {
  font-size: 1.25rem;
}

.footer-nav {
  margin-top: 1rem;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}
@media (max-width: 767px) {
  .footer-menu {
    grid-template-columns: 1fr;
  }
}
.footer-menu li {
  margin: 0;
}
.footer-menu a {
  text-decoration: none;
  transition: color 0.3s ease;
  color: #000000;
}
.footer-menu a:hover {
  color: #114DA5;
}

.footer-title {
  margin: 0 0 1rem 0;
}

.sitemap-column .footer-title {
  color: #114DA5;
  text-align: left;
}

.contact-column .footer-title {
  color: #F5692D;
  text-align: right;
}
@media (max-width: 767px) {
  .contact-column .footer-title {
    text-align: left;
  }
}

.contact-info {
  text-align: right;
}
@media (max-width: 767px) {
  .contact-info {
    text-align: left;
  }
}
.contact-info p {
  margin: 0 0 0.25rem 0;
  color: #000000;
}
.contact-info p:last-child {
  margin-bottom: 0;
}
.contact-info .address {
  font-weight: 700;
  font-size: 1.125rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
}

.copyright {
  margin: 0;
  font-size: 0.75rem;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-credits {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #999999;
}
.footer-credits a {
  color: #999999;
}
.footer-credits a:hover {
  color: #ffffff;
}

.site-info {
  border-top: 1px solid #555555;
  padding-top: 2rem;
  text-align: center;
}

/**
 * Main SCSS file for Custom Theme
 * 
 * This file imports all the partial SCSS files
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
/**
 * Front Page Styles
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
.site-main.front-page {
  min-height: 100vh;
}
.site-main.front-page .intro-section {
  padding: 4rem 0;
  background: #ffffff;
}
@media (min-width: 480px) {
  .site-main.front-page .intro-section {
    padding: 2rem 0;
  }
}
.site-main.front-page .intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 992px) {
  .site-main.front-page .intro-content {
    flex-direction: row;
    gap: 4rem;
  }
}
@media (min-width: 480px) {
  .site-main.front-page .intro-content {
    gap: 1.5rem;
  }
}
.site-main.front-page .intro-content h2 {
  color: #114DA5;
  margin-bottom: 0.5rem;
}
.site-main.front-page .intro-content p {
  margin-bottom: 0;
}
@media (min-width: 480px) {
  .site-main.front-page .intro-header {
    font-size: 1.5rem;
  }
}
@media (min-width: 480px) {
  .site-main.front-page .intro-description {
    font-size: 1rem;
  }
}
.site-main.front-page .intro-logo {
  flex-shrink: 0;
}
.site-main.front-page .intro-logo img {
  max-width: 200px;
  height: auto;
}
@media (min-width: 992px) {
  .site-main.front-page .intro-logo img {
    max-width: 280px;
  }
}
.site-main.front-page .feature-content-overlay-wrapper {
  background: #114DA5;
  border-radius: 20px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  margin: 3rem auto 0 auto;
  max-width: 600px;
}
@media (min-width: 992px) {
  .site-main.front-page .feature-content-overlay-wrapper {
    max-width: 1400px;
  }
}
.site-main.front-page .feature-content-overlay-wrapper--yellow {
  background: #ecbe06;
  margin-top: 5rem;
}
.site-main.front-page .feature-content-overlay-wrapper--yellow .feature-content-overlay-text {
  color: white;
}
.site-main.front-page .feature-content-overlay-wrapper--yellow .feature-content-overlay-text a {
  color: white;
}
@media (min-width: 992px) {
  .site-main.front-page .feature-content-overlay-wrapper--yellow .feature-content-overlay-text {
    order: 2;
    margin-left: -1.5rem;
    padding-left: calc(3rem + 1.5rem);
  }
}
@media (min-width: 992px) {
  .site-main.front-page .feature-content-overlay-wrapper--yellow .feature-content-overlay-image {
    order: 1;
    margin-right: -1.5rem;
  }
}
.site-main.front-page .feature-content-overlay-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 992px) {
  .site-main.front-page .feature-content-overlay-wrapper {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
}
.site-main.front-page .feature-content-overlay-text {
  padding: 2rem;
  color: #ffffff;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 2;
  margin-top: -3rem;
}
@media (min-width: 992px) {
  .site-main.front-page .feature-content-overlay-text {
    margin: 0;
    z-index: 1;
    order: 1;
  }
}
@media (min-width: 480px) {
  .site-main.front-page .feature-content-overlay-text {
    padding: 2rem;
  }
}
.site-main.front-page .feature-content-overlay-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.site-main.front-page .feature-content-overlay-text.animate {
  opacity: 1;
  transform: translateY(0);
}
.site-main.front-page .feature-content-overlay-title {
  margin-bottom: 0.5rem;
}
.site-main.front-page .feature-content-overlay-description {
  margin-bottom: 1rem;
}
.site-main.front-page .feature-content-overlay-description p {
  margin-bottom: 1rem;
}
.site-main.front-page .feature-content-overlay-description p:last-child {
  margin-bottom: 0;
}
.site-main.front-page .feature-content-overlay-cta {
  display: inline-block;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
}
.site-main.front-page .feature-content-overlay-cta:hover {
  text-decoration: underline;
  color: #ffffff;
}
.site-main.front-page .feature-content-overlay-image {
  flex: 0 0 auto;
  width: 100%;
  order: 1;
  padding: 0 2rem;
  position: relative;
  top: -2rem;
}
@media (min-width: 992px) {
  .site-main.front-page .feature-content-overlay-image {
    padding-right: 2rem;
    width: 40%;
    z-index: 2;
    order: 2;
  }
}
@media (min-width: 1400px) {
  .site-main.front-page .feature-content-overlay-image {
    width: 30%;
    min-height: auto;
  }
}
.site-main.front-page .feature-content-overlay-image {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.site-main.front-page .feature-content-overlay-image.animate {
  opacity: 1;
  transform: translateY(0);
}
.site-main.front-page .feature-content-overlay-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  object-fit: cover;
}
@media (min-width: 992px) {
  .site-main.front-page .feature-content-overlay-img {
    min-height: 400px;
  }
}
@media (min-width: 1200px) {
  .site-main.front-page .feature-content-overlay-img {
    min-height: auto;
  }
}
.site-main.front-page .testimonials {
  padding: 5rem 0;
  background: #ffffff;
}
@media (min-width: 480px) {
  .site-main.front-page .testimonials {
    padding: 3rem 0;
  }
}
.site-main.front-page .testimonials-title {
  text-align: center;
  color: #114DA5;
  margin-bottom: 2rem;
}
.site-main.front-page .testimonials-swiper {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
.site-main.front-page .testimonials-swiper .swiper-wrapper {
  align-items: flex-start;
}
.site-main.front-page .testimonials-swiper .swiper-slide {
  height: auto;
}
.site-main.front-page .testimonial-content {
  text-align: center;
  padding: 0 5rem;
}
@media (min-width: 480px) {
  .site-main.front-page .testimonial-content {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .site-main.front-page .testimonial-content {
    padding: 0 2rem;
  }
}
.site-main.front-page .testimonial-quote {
  margin-bottom: 2rem;
}
.site-main.front-page .testimonial-attribution {
  color: #F5692D;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
@media (min-width: 480px) {
  .site-main.front-page .testimonial-attribution {
    font-size: 1rem;
  }
}
.site-main.front-page .testimonial-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-main.front-page .testimonial-logo img {
  max-width: 200px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (min-width: 480px) {
  .site-main.front-page .testimonial-logo img {
    max-width: 150px;
    max-height: 60px;
  }
}
.site-main.front-page .testimonials {
  position: relative;
}
.site-main.front-page .testimonials .swiper-button-prev,
.site-main.front-page .testimonials .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 10;
  margin: 0;
  color: #114DA5;
}
.site-main.front-page .testimonials .swiper-button-prev:hover,
.site-main.front-page .testimonials .swiper-button-next:hover {
  color: #F5692D;
  background: none;
}
.site-main.front-page .testimonials .swiper-button-prev:hover::after,
.site-main.front-page .testimonials .swiper-button-next:hover::after {
  color: #ffffff;
}
@media (max-width: 767px) {
  .site-main.front-page .testimonials .swiper-button-prev,
  .site-main.front-page .testimonials .swiper-button-next {
    width: 24px;
    height: 24px;
  }
  .site-main.front-page .testimonials .swiper-button-prev::after,
  .site-main.front-page .testimonials .swiper-button-next::after {
    font-size: 12px;
  }
}
.site-main.front-page .testimonials .swiper-button-prev {
  left: 0;
}
@media (min-width: 480px) {
  .site-main.front-page .testimonials .swiper-button-prev {
    left: 10px;
  }
}
.site-main.front-page .testimonials .swiper-button-next {
  right: 0;
}
@media (min-width: 480px) {
  .site-main.front-page .testimonials .swiper-button-next {
    right: 10px;
  }
}
@media (min-width: 480px) {
  .site-main.front-page .testimonials .swiper-button-prev,
  .site-main.front-page .testimonials .swiper-button-next {
    width: 32px;
    height: 32px;
  }
  .site-main.front-page .testimonials .swiper-button-prev::after,
  .site-main.front-page .testimonials .swiper-button-next::after {
    font-size: 16px;
  }
}
.site-main.front-page .updates-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 4rem;
  background: #F5692D;
  border-radius: 20px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .site-main.front-page .updates-wrapper {
    padding: 1rem;
    overflow: hidden;
    position: relative;
  }
}
.site-main.front-page .updates-title {
  text-align: center;
  color: #ffffff;
  margin: 0.5rem 0 2rem 0;
  font-weight: 700;
}
.site-main.front-page .updates-swiper {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .site-main.front-page .updates-swiper {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
    margin-left: -1rem;
    margin-right: -1rem;
    width: calc(100% + 2rem);
    position: relative;
  }
  .site-main.front-page .updates-swiper .swiper-wrapper {
    overflow: visible;
  }
}
@media (min-width: 480px) {
  .site-main.front-page .updates-swiper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.site-main.front-page .updates-swiper .swiper-wrapper {
  align-items: stretch;
}
.site-main.front-page .updates-swiper .swiper-slide {
  height: auto;
}
@media (max-width: 767px) {
  .site-main.front-page .updates-swiper .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
    box-sizing: border-box;
    margin: 0;
  }
}
.site-main.front-page .update-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
  margin: 10px;
}
@media (max-width: 767px) {
  .site-main.front-page .update-card {
    width: calc(100% - 20px);
  }
}
.site-main.front-page .update-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.site-main.front-page .update-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site-main.front-page .update-image-placeholder {
  width: 100%;
  height: 200px;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
}
@media (min-width: 992px) {
  .site-main.front-page .update-image-placeholder {
    height: 180px;
  }
}
.site-main.front-page .update-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 20px 20px;
  background: transparent;
}
@media (min-width: 480px) {
  .site-main.front-page .update-content {
    padding: 1.5rem;
  }
}
.site-main.front-page .update-title {
  color: #F5692D;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
@media (min-width: 480px) {
  .site-main.front-page .update-title {
    font-size: 1rem;
  }
}
.site-main.front-page .update-description {
  color: #000000;
  margin-bottom: 1rem;
  flex: 1;
}
.site-main.front-page .update-description p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.site-main.front-page .update-description p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .site-main.front-page .update-description {
    font-size: 0.875rem;
  }
}
.site-main.front-page .update-link {
  color: #114DA5;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
  align-self: center;
}
.site-main.front-page .update-link:hover {
  color: #F5692D;
  text-decoration: underline;
}
.site-main.front-page .updates-swiper .swiper-pagination {
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.site-main.front-page .updates-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  margin: 0 6px;
  transition: 0.3s ease;
}
.site-main.front-page .updates-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ffffff;
}
.site-main.front-page .intro-section:focus-within {
  outline: 2px solid #114DA5;
  outline-offset: 2px;
}
.site-main.front-page .intro-header .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-main.front-page .partners h2 {
  text-align: center;
  margin: 4rem 0 3rem 0;
  color: #114DA5;
}
.site-main.front-page .partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px 48px;
}
@media (max-width: 767px) {
  .site-main.front-page .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
  }
}
@media (min-width: 768px) {
  .site-main.front-page .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 40px;
  }
}
@media (min-width: 992px) {
  .site-main.front-page .partners-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 72px 48px;
  }
}
.site-main.front-page .partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-main.front-page .partner-logo {
  max-width: 120px;
  max-height: 64px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/**
 * Main SCSS file for Custom Theme
 * 
 * This file imports all the partial SCSS files
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
/**
 * About Us Page Styles
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
.site-main.about-us .intro-section {
  padding: 2rem 0;
}
@media (max-width: 767px) {
  .site-main.about-us .intro-section {
    padding: 1.5rem 0;
  }
}
.site-main.about-us .intro-section .intro-content {
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: left;
}
@media (max-width: 767px) {
  .site-main.about-us .intro-section .intro-content {
    font-size: 1rem;
    line-height: 1.6;
  }
}
.site-main.about-us .intro-section .intro-content p {
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .site-main.about-us .intro-section .intro-content p {
    margin-bottom: 0.5rem;
  }
}
.site-main.about-us .intro-section .intro-content p:last-child {
  margin-bottom: 0;
}
.site-main.about-us .feature {
  padding: 2rem 0;
}
@media (max-width: 767px) {
  .site-main.about-us .feature {
    padding: 1.5rem 0;
  }
}
.site-main.about-us .feature .feature-wrapper {
  background: #ffffff;
  border-radius: 15px;
  padding: 3rem 3rem 2rem;
}
@media (max-width: 767px) {
  .site-main.about-us .feature .feature-wrapper {
    padding: 1.5rem 1.5rem;
    border-radius: 10px;
  }
}
.site-main.about-us .feature-header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .site-main.about-us .feature-header {
    text-align: left;
    margin-bottom: 2rem;
  }
}
.site-main.about-us .feature-header .feature-sub-header {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .site-main.about-us .feature-header .feature-sub-header {
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
}
.site-main.about-us .feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .site-main.about-us .feature-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (min-width: 992px) {
  .site-main.about-us .feature-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.site-main.about-us .feature-card {
  background: transparent;
  border-radius: 15px;
  padding: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.site-main.about-us .feature-card.animate {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .site-main.about-us .feature-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
  }
}
.site-main.about-us .feature-card__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .site-main.about-us .feature-card__icon {
    width: 70px;
    height: 70px;
  }
}
.site-main.about-us .feature-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.site-main.about-us .feature-card__content {
  flex: 1 1 auto;
}
.site-main.about-us .feature-card__title {
  margin-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 767px) {
  .site-main.about-us .feature-card__title {
    font-size: 1.125rem;
  }
}
.site-main.about-us .feature-card__description {
  text-align: left;
}
@media (max-width: 767px) {
  .site-main.about-us .feature-card__description {
    font-size: 0.875rem;
  }
}
.site-main.about-us .feature-card__description p {
  margin-bottom: 0.5rem;
}
.site-main.about-us .feature-card__description p:last-child {
  margin-bottom: 0;
}
.site-main.about-us .feature-card__description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-main.about-us .feature-card__description ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.25rem;
}
.site-main.about-us .feature-card__description ul li:before {
  content: "•";
  color: #F5692D;
  font-weight: 700;
  position: absolute;
  left: 0;
}
.site-main.about-us .feature-card__description ul li:last-child {
  margin-bottom: 0;
}
.site-main.about-us .team {
  padding: 3rem 0;
}
@media (max-width: 767px) {
  .site-main.about-us .team {
    padding: 2rem 0;
  }
}
.site-main.about-us .team .container {
  max-width: 1400px;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .site-main.about-us .team .container {
    margin-top: 1.5rem;
  }
}
.site-main.about-us .team-group {
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .site-main.about-us .team-group {
    margin-bottom: 2rem;
  }
}
.site-main.about-us .team-group:last-child {
  margin-bottom: 0;
}
.site-main.about-us .department-name {
  color: #ffffff;
  background-color: #F5692D;
  font-size: 1.125rem;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  text-align: center;
  padding: 0.5rem 2rem;
  border-radius: 20px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .site-main.about-us .department-name {
    text-align: left;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
  }
}
.site-main.about-us .team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  margin: 0 auto;
  max-width: 1400px;
}
@media (max-width: 767px) {
  .site-main.about-us .team-members {
    gap: 1.5rem;
    flex-direction: column;
  }
}
.site-main.about-us .team-member {
  text-align: center;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 15px;
  flex: 0 0 calc((100% - 1.5rem * 2) / 3);
  max-width: calc((100% - 1.5rem * 2) / 3);
  position: relative;
}
@media (max-width: 767px) {
  .site-main.about-us .team-member {
    padding: 1.5rem 1rem;
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 1rem;
  }
}
.site-main.about-us .member-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-main.about-us .member-image.placeholder {
  background: #e9ecef;
  color: #999999;
  font-size: 0.875rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .site-main.about-us .member-image.placeholder {
    font-size: 0.75rem;
  }
}
.site-main.about-us .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .site-main.about-us .member-image {
    width: 140px;
    height: 140px;
    margin: 0;
    flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .site-main.about-us .member-info {
    flex: 1;
    min-width: 0;
  }
}
.site-main.about-us .member-name {
  margin-bottom: 0.25rem;
}
@media (max-width: 767px) {
  .site-main.about-us .member-name {
    font-size: 1rem;
    margin-bottom: 2px;
  }
}
.site-main.about-us .member-title {
  margin-bottom: 0.25rem;
}
@media (max-width: 767px) {
  .site-main.about-us .member-title {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
}
.site-main.about-us .member-email {
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .site-main.about-us .member-email {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }
}
@media (max-width: 767px) {
  .site-main.about-us .member-email a {
    word-break: break-all;
  }
}
.site-main.about-us .member-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.25rem;
}
@media (max-width: 767px) {
  .site-main.about-us .member-social-links {
    justify-content: flex-start;
    gap: 0.5rem;
  }
}
.site-main.about-us .member-biography-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  color: #F5692D;
  transition: opacity 0.15s ease;
}
.site-main.about-us .member-biography-trigger svg {
  width: 100%;
  height: 100%;
  display: block;
}
.site-main.about-us .member-biography-trigger:hover {
  opacity: 0.8;
}
.site-main.about-us .member-biography-trigger:focus {
  outline: 2px solid #F5692D;
  outline-offset: 2px;
  border-radius: 2px;
}
.site-main.about-us .member-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  text-decoration: none;
}
.site-main.about-us .linkedin-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.site-main.about-us .biography-popup {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 1050 !important;
  display: none !important;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}
.site-main.about-us .biography-popup.active {
  display: flex !important;
  visibility: visible;
  opacity: 1;
}
.site-main.about-us body.biography-popup-open {
  overflow: hidden;
}
.site-main.about-us .biography-popup-backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(217, 217, 217, 0.8);
  backdrop-filter: blur(2px);
  z-index: 1050;
  margin: 0 !important;
  padding: 0 !important;
}
.site-main.about-us .biography-popup-modal {
  position: relative;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  width: 800px;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1051;
  padding: 3rem;
  margin: 2rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
}
@media (max-width: 767px) {
  .site-main.about-us .biography-popup-modal {
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
    max-height: calc(100vh - 2rem);
    padding: 1.5rem 1rem;
    margin: 1rem;
    border-radius: 10px;
  }
}
.site-main.about-us .biography-popup-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 19px;
  height: 19px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
}
.site-main.about-us .biography-popup-close svg {
  width: 100%;
  height: 100%;
  display: block;
}
.site-main.about-us .biography-popup-close:hover {
  opacity: 0.7;
}
.site-main.about-us .biography-popup-close:focus {
  outline: 2px solid #114DA5;
  outline-offset: 2px;
  border-radius: 2px;
}
@media (max-width: 767px) {
  .site-main.about-us .biography-popup-close {
    top: 1rem;
    right: 1rem;
  }
}
.site-main.about-us .biography-popup-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-right: 4rem;
}
@media (max-width: 767px) {
  .site-main.about-us .biography-popup-header {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding-right: 3rem;
    margin-bottom: 1rem;
  }
}
.site-main.about-us .biography-popup-image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-main.about-us .biography-popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .site-main.about-us .biography-popup-image {
    width: 70px;
    height: 70px;
  }
}
.site-main.about-us .biography-popup-title-wrapper {
  flex: 1;
  min-width: 0;
}
@media (max-width: 767px) {
  .site-main.about-us .biography-popup-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
}
.site-main.about-us .biography-popup-name {
  font-size: 1.5rem;
  line-height: 1.2;
  color: #000000;
  margin: 0 0 0.25rem;
}
@media (max-width: 767px) {
  .site-main.about-us .biography-popup-name {
    font-size: 1.125rem;
    margin: 0;
  }
}
.site-main.about-us .biography-popup-title {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #000000;
  margin: 0;
}
@media (max-width: 767px) {
  .site-main.about-us .biography-popup-title {
    font-size: 0.875rem;
    font-weight: 400;
  }
}
.site-main.about-us .biography-popup-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #000000;
}
.site-main.about-us .biography-popup-content > p {
  margin: 0 0 1rem;
  text-align: justify;
}
.site-main.about-us .biography-popup-content > p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .site-main.about-us .biography-popup-content > p {
    margin: 0 0 0.5rem;
    text-align: left;
  }
}
.site-main.about-us .biography-popup-content h3,
.site-main.about-us .biography-popup-content h4,
.site-main.about-us .biography-popup-content h5,
.site-main.about-us .biography-popup-content h6 {
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
  color: #000000;
}
.site-main.about-us .biography-popup-content h3:first-of-type,
.site-main.about-us .biography-popup-content h4:first-of-type,
.site-main.about-us .biography-popup-content h5:first-of-type,
.site-main.about-us .biography-popup-content h6:first-of-type {
  margin-top: 0;
}
@media (max-width: 767px) {
  .site-main.about-us .biography-popup-content h3,
  .site-main.about-us .biography-popup-content h4,
  .site-main.about-us .biography-popup-content h5,
  .site-main.about-us .biography-popup-content h6 {
    margin: 1rem 0 0.25rem;
    font-size: 1rem;
  }
}
.site-main.about-us .biography-popup-content ul,
.site-main.about-us .biography-popup-content ol {
  margin: 0 0 1rem;
  padding-left: 1.5em;
}
.site-main.about-us .biography-popup-content ul li,
.site-main.about-us .biography-popup-content ol li {
  margin-bottom: 0.25rem;
}
.site-main.about-us .biography-popup-content ul li:last-child,
.site-main.about-us .biography-popup-content ol li:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .site-main.about-us .biography-popup-content ul,
  .site-main.about-us .biography-popup-content ol {
    margin: 0 0 0.5rem;
    padding-left: 1.25em;
  }
}
.site-main.about-us .biography-popup-content a {
  color: #114DA5;
  text-decoration: underline;
}
.site-main.about-us .biography-popup-content a:hover {
  color: #F5692D;
}
@media (max-width: 767px) {
  .site-main.about-us .biography-popup-content {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

/**
 * Main SCSS file for Custom Theme
 * 
 * This file imports all the partial SCSS files
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
/**
 * Programmes Page Styles
 * 
 * Styles for the programmes we support page
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
.programmes-header {
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 9;
  display: block !important;
  visibility: visible !important;
}

.programmes-title {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  font-size: 3rem;
  line-height: 56px;
  color: #114DA5;
  text-transform: uppercase;
  text-shadow: rgba(0, 0, 0, 0.08) 0px 4px 10px;
  margin-bottom: 2rem;
  font-weight: 900;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .programmes-title {
    font-size: 1.875rem;
    line-height: 1.2;
  }
}

.programmes-intro {
  font-size: 1.125rem;
  line-height: 28px;
  color: #000000;
  text-align: justify;
  margin: 0;
}

.programmes-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .programmes-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.programmes-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 200px;
}
@media (max-width: 767px) {
  .programmes-nav {
    min-width: auto;
  }
}

.section-nav-title {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.5rem;
  line-height: 28px;
  margin: 0;
  white-space: nowrap;
  background: none !important;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.3s ease;
  opacity: 0.5;
}
@media (max-width: 767px) {
  .section-nav-title {
    white-space: normal;
  }
}
.section-nav-title--initiatives {
  color: #F5692D;
}
.section-nav-title--initiatives:hover:not(.loading):not(.active) {
  color: #F5692D;
}
.section-nav-title--initiatives.active {
  color: #F5692D;
}
.section-nav-title--multi {
  color: #f4c500;
  white-space: normal;
}
.section-nav-title--multi:hover:not(.loading):not(.active) {
  color: #f4c500;
}
.section-nav-title--multi.active {
  color: #f4c500;
}
.section-nav-title--platforms {
  color: #114DA5;
}
.section-nav-title--platforms:hover:not(.loading):not(.active) {
  color: #114DA5;
}
.section-nav-title--platforms.active {
  color: #114DA5;
}
.section-nav-title:hover:not(.loading):not(.active) {
  opacity: 0.8;
}
.section-nav-title.active {
  opacity: 1;
}
.section-nav-title.loading {
  opacity: 0.6;
  cursor: wait;
}
.section-nav-title:focus {
  outline: 2px solid #114DA5;
  outline-offset: 4px;
}
.section-nav-title:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.programmes-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  min-height: 200px;
}

.programmes-loading {
  text-align: center;
  padding: 3rem;
  color: #114DA5;
  font-size: 1.125rem;
}

.programme-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
}

.card-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .card-content {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.programme-name {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1rem;
  line-height: normal;
  color: #000000;
  margin: 0;
}

.programme-description {
  line-height: normal;
  color: #000000;
  margin: 0;
}
.programme-description p {
  margin: 0 0 0.5rem 0;
  text-align: justify;
  line-height: 150%;
}
.programme-description p:last-child {
  margin-bottom: 0;
}
.programme-description ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}
.programme-description ul li {
  margin-bottom: 0.5rem;
}
.programme-description ul li:last-child {
  margin-bottom: 0;
}

.card-footer {
  margin: 0;
}
.card-footer .find-out-more-link {
  color: #F5692D;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  line-height: normal;
}
.card-footer .find-out-more-link:hover {
  text-decoration: underline;
}
.card-footer:empty {
  display: none;
}

.programme-logo {
  margin: 0;
  text-align: left;
}
.programme-logo img {
  max-width: 200px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 767px) {
  .programme-logo img {
    max-width: 160px;
    max-height: 100px;
  }
}

@media (max-width: 767px) {
  .programmes-main {
    padding: 2rem 0;
  }
  .programmes-header {
    margin-bottom: 2rem;
  }
}
/**
 * Main SCSS file for Custom Theme
 * 
 * This file imports all the partial SCSS files
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
/**
 * Success Stories Archive Page Styles
 * 
 * Styles for the success stories archive page
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
.success-stories-header {
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 9;
  display: block !important;
  visibility: visible !important;
}

.success-stories-title {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  font-size: 3rem;
  line-height: 56px;
  color: #114DA5;
  text-transform: uppercase;
  text-shadow: rgba(0, 0, 0, 0.08) 0px 4px 10px;
  margin-bottom: 0;
  font-weight: 900;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .success-stories-title {
    font-size: 1.875rem;
    line-height: 1.2;
  }
}

.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .success-stories-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.success-story-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}
.success-story-card:hover {
  box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.15);
}

.success-story-image {
  width: 100%;
  height: 339px;
  overflow: hidden;
  position: relative;
}
.success-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.success-story-image a {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .success-story-image {
    height: 250px;
  }
}

.success-story-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
@media (max-width: 767px) {
  .success-story-content {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.success-story-title {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1rem;
  line-height: normal;
  color: #000000;
  text-align: justify;
  margin: 0;
}
.success-story-title a {
  color: inherit;
  text-decoration: none;
}
.success-story-title a:hover {
  text-decoration: underline;
}

.success-story-excerpt {
  line-height: normal;
  color: #000000;
  text-align: justify;
  margin: 0;
}
.success-story-excerpt p {
  margin: 0 0 0.5rem 0;
}
.success-story-excerpt p:last-child {
  margin-bottom: 0;
}

.success-story-footer {
  margin-top: auto;
}
.success-story-footer .learn-more-link {
  color: #F5692D;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  line-height: normal;
}
.success-story-footer .learn-more-link:hover {
  text-decoration: underline;
}
.success-story-footer:empty {
  display: none;
}

.no-posts {
  text-align: center;
  padding: 4rem;
  color: #114DA5;
  font-size: 1.125rem;
}

.success-stories-main .wp-pagenavi,
.success-stories-main .pagination {
  margin-top: 3rem;
  text-align: center;
}
.success-stories-main .wp-pagenavi a,
.success-stories-main .wp-pagenavi span,
.success-stories-main .pagination a,
.success-stories-main .pagination span {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  color: #114DA5;
  text-decoration: none;
  border: 1px solid #e9ecef;
  border-radius: 10px;
}
.success-stories-main .wp-pagenavi a:hover,
.success-stories-main .wp-pagenavi span:hover,
.success-stories-main .pagination a:hover,
.success-stories-main .pagination span:hover {
  background-color: #f2f2f2;
}
.success-stories-main .wp-pagenavi .current,
.success-stories-main .pagination .current {
  background-color: #114DA5;
  color: #ffffff;
  border-color: #114DA5;
}

@media (max-width: 767px) {
  .success-stories-main {
    padding: 2rem 0;
  }
  .success-stories-header {
    margin-bottom: 2rem;
  }
}
.single-success-stories .success-stories-main {
  margin-top: -3rem;
  padding-top: 0;
}

.success-story-decorative-bg {
  position: absolute;
  top: -181px;
  left: -75px;
  width: 1590px;
  height: 841px;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.success-story-decorative-bg .decorative-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 767px) {
  .success-story-decorative-bg {
    display: none;
  }
}

.success-story-content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .success-story-content-wrapper {
    padding: 0 25px;
  }
}

.single-success-story-main .success-stories-header {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 190px;
  padding-left: 0;
  max-width: 100%;
}
@media (max-width: 767px) {
  .single-success-story-main .success-stories-header {
    padding-top: 3rem;
  }
}

.success-story-hero-image {
  max-width: 1000px;
  height: auto;
  margin: 120px auto 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.success-story-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 1199px) {
  .success-story-hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1200/699;
  }
}
@media (max-width: 767px) {
  .success-story-hero-image {
    margin-top: 3rem;
    border-radius: 15px;
  }
}

.success-story-logos-array {
  margin: 2rem auto 0;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.success-story-logos-array img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 1199px) {
  .success-story-logos-array {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .success-story-logos-array {
    margin-top: 1.5rem;
    gap: 1rem;
    width: 100%;
  }
}

.success-story-logos {
  height: 187px;
  margin: 100px auto 0;
  position: relative;
}
.success-story-logos img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
@media (max-width: 1199px) {
  .success-story-logos {
    width: 100%;
    height: auto;
    max-height: 187px;
  }
}
@media (max-width: 767px) {
  .success-story-logos {
    margin-top: 3rem;
  }
}

.success-story-article-content {
  margin: 80px auto 0;
}
@media (max-width: 1199px) {
  .success-story-article-content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .success-story-article-content {
    margin-top: 3rem;
  }
}

.success-story-article-title {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 28px;
  color: #000000;
  text-align: justify;
  margin: 0 0 2rem 0;
}
@media (max-width: 767px) {
  .success-story-article-title {
    font-size: 1.5rem;
    text-align: left;
  }
}

.success-story-article-text {
  color: #000000;
  text-align: justify;
}
.success-story-article-text p {
  margin: 0 0 20px 0;
}
.success-story-article-text p:last-child {
  margin-bottom: 0;
}
.success-story-article-text p + .success-story-article-text h3, .success-story-article-text p + .success-story-article-text h4, .success-story-article-text p + .success-story-article-text h5 {
  margin-top: 2rem;
}
.success-story-article-text h3, .success-story-article-text h4, .success-story-article-text h5, .success-story-article-text h6 {
  font-weight: 900;
  color: #000000;
  margin: 20px 0 10px 0;
}
.success-story-article-text h3:first-child, .success-story-article-text h4:first-child, .success-story-article-text h5:first-child, .success-story-article-text h6:first-child {
  margin-top: 0;
}
.success-story-article-text h3 {
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 28px;
}
.success-story-article-text h4, .success-story-article-text h5, .success-story-article-text h6 {
  font-size: 1.125rem;
  line-height: 28px;
  font-weight: 700;
}
.success-story-article-text a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-skip-ink: none;
}
.success-story-article-text a:hover {
  color: #114DA5;
}
.success-story-article-text strong,
.success-story-article-text b {
  font-weight: 700;
}
@media (max-width: 767px) {
  .success-story-article-text {
    text-align: left;
  }
}

.success-story-connect-section {
  margin: 200px auto 0;
  padding-bottom: 4rem;
}
@media (max-width: 1199px) {
  .success-story-connect-section {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .success-story-connect-section {
    margin-top: 3rem;
  }
}

.connect-title {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 28px;
  color: #F5692D;
  text-align: justify;
  margin: 0;
}
@media (max-width: 767px) {
  .connect-title {
    text-align: left;
  }
}

.success-story-back-button {
  margin: 4rem auto 0;
  padding-bottom: 4rem;
  text-align: left;
}
@media (max-width: 1199px) {
  .success-story-back-button {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .success-story-back-button {
    margin-top: 3rem;
    padding-bottom: 3rem;
    text-align: center;
  }
}
.success-story-back-button .btn {
  font-weight: 500;
}
@media (max-width: 767px) {
  .success-story-back-button .btn {
    width: 100%;
    max-width: 300px;
  }
}

/**
 * Main SCSS file for Custom Theme
 * 
 * This file imports all the partial SCSS files
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
/**
 * Community Events Archive Page Styles
 * 
 * Styles for the community events archive page
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
.community-events-main {
  padding: 3rem 0;
}

.community-events-header {
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: -70px;
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .community-events-header {
    margin-top: 0;
  }
}
.community-events-header {
  display: block !important;
  visibility: visible !important;
}

.community-events-title {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  font-size: 3rem;
  line-height: 56px;
  color: #114DA5;
  text-transform: uppercase;
  text-shadow: rgba(0, 0, 0, 0.08) 0px 4px 10px;
  margin-bottom: 0;
  font-weight: 900;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .community-events-title {
    font-size: 1.875rem;
    line-height: 1.2;
  }
}

.community-events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .community-events-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.community-event-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}
.community-event-card:hover {
  box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.15);
}

.community-event-image {
  width: 100%;
  height: 339px;
  overflow: hidden;
  position: relative;
}
.community-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.community-event-image a {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .community-event-image {
    height: 250px;
  }
}

.community-event-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
@media (max-width: 767px) {
  .community-event-content {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.community-event-title {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1rem;
  line-height: normal;
  color: #000000;
  margin: 0;
}
.community-event-title a {
  color: inherit;
  text-decoration: none;
}
.community-event-title a:hover {
  text-decoration: underline;
}

.community-event-excerpt {
  line-height: normal;
  color: #000000;
  margin: 0;
  text-align: justify;
}
.community-event-excerpt p {
  margin: 0 0 0.5rem 0;
}
.community-event-excerpt p:last-child {
  margin-bottom: 0;
}

.community-event-footer {
  margin-top: auto;
}
.community-event-footer .learn-more-link {
  color: #F5692D;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  line-height: normal;
}
.community-event-footer .learn-more-link:hover {
  text-decoration: underline;
}
.community-event-footer:empty {
  display: none;
}

.no-posts {
  text-align: center;
  padding: 4rem;
  color: #114DA5;
  font-size: 1.125rem;
}

.community-events-main .wp-pagenavi,
.community-events-main .pagination {
  margin-top: 3rem;
  text-align: center;
}
.community-events-main .wp-pagenavi a,
.community-events-main .wp-pagenavi span,
.community-events-main .pagination a,
.community-events-main .pagination span {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  color: #114DA5;
  text-decoration: none;
  border: 1px solid #e9ecef;
  border-radius: 10px;
}
.community-events-main .wp-pagenavi a:hover,
.community-events-main .wp-pagenavi span:hover,
.community-events-main .pagination a:hover,
.community-events-main .pagination span:hover {
  background-color: #f2f2f2;
}
.community-events-main .wp-pagenavi .current,
.community-events-main .pagination .current {
  background-color: #114DA5;
  color: #ffffff;
  border-color: #114DA5;
}

@media (max-width: 767px) {
  .community-events-main {
    padding: 2rem 0;
  }
  .community-events-header {
    margin-bottom: 2rem;
  }
}
.single-community-events .community-events-main {
  margin-top: -3rem;
  padding-top: 0;
}

.community-event-decorative-bg {
  position: absolute;
  top: -181px;
  left: -75px;
  width: 1590px;
  height: 841px;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.community-event-decorative-bg .decorative-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 767px) {
  .community-event-decorative-bg {
    display: none;
  }
}

.community-event-content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .community-event-content-wrapper {
    padding: 0 25px;
  }
}

.single-community-event-main .community-events-header {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 190px;
  padding-left: 0;
  max-width: 100%;
}
@media (max-width: 767px) {
  .single-community-event-main .community-events-header {
    padding-top: 3rem;
  }
}

.community-event-hero-wrapper {
  margin: 120px auto 0;
}
@media (max-width: 1199px) {
  .community-event-hero-wrapper {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .community-event-hero-wrapper {
    margin-top: 3rem;
  }
}

.community-event-hero-image {
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.community-event-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 1199px) {
  .community-event-hero-image {
    height: auto;
    aspect-ratio: 1200/699;
  }
}
@media (max-width: 767px) {
  .community-event-hero-image {
    border-radius: 15px;
  }
}

.community-event-hero-caption {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #114DA5;
  text-align: center;
  font-style: italic;
}
@media (max-width: 767px) {
  .community-event-hero-caption {
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }
}

.community-event-logos-array {
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.community-event-logos-array img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 1199px) {
  .community-event-logos-array {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .community-event-logos-array {
    margin-top: 1.5rem;
    gap: 1rem;
    width: 100%;
  }
}

.community-event-logos {
  height: 187px;
  margin: 100px auto 0;
  position: relative;
}
.community-event-logos img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
@media (max-width: 1199px) {
  .community-event-logos {
    width: 100%;
    height: auto;
    max-height: 187px;
  }
}
@media (max-width: 767px) {
  .community-event-logos {
    margin-top: 3rem;
  }
}

.community-event-article-content {
  margin: 80px auto 0;
}
@media (max-width: 1199px) {
  .community-event-article-content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .community-event-article-content {
    margin-top: 3rem;
  }
}

.community-event-article-title {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 28px;
  color: #000000;
  text-align: justify;
  margin: 0 0 1rem 0;
}
@media (max-width: 767px) {
  .community-event-article-title {
    font-size: 1.5rem;
    text-align: left;
  }
}

.community-event-article-date {
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.6;
  color: #114DA5;
}
.community-event-article-date time {
  display: inline-block;
}
@media (max-width: 767px) {
  .community-event-article-date {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}

.community-event-article-text {
  color: #000000;
  text-align: justify;
}
.community-event-article-text p {
  margin: 0 0 20px 0;
}
.community-event-article-text p:last-child {
  margin-bottom: 0;
}
.community-event-article-text p + .community-event-article-text h3, .community-event-article-text p + .community-event-article-text h4, .community-event-article-text p + .community-event-article-text h5 {
  margin-top: 2rem;
}
.community-event-article-text h3, .community-event-article-text h4, .community-event-article-text h5, .community-event-article-text h6 {
  font-weight: 900;
  color: #000000;
  margin: 20px 0 10px 0;
}
.community-event-article-text h3:first-child, .community-event-article-text h4:first-child, .community-event-article-text h5:first-child, .community-event-article-text h6:first-child {
  margin-top: 0;
}
.community-event-article-text h3 {
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 28px;
}
.community-event-article-text h4, .community-event-article-text h5, .community-event-article-text h6 {
  font-size: 1.125rem;
  line-height: 28px;
  font-weight: 700;
}
.community-event-article-text a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-skip-ink: none;
}
.community-event-article-text a:hover {
  color: #114DA5;
}
.community-event-article-text strong,
.community-event-article-text b {
  font-weight: 700;
}
@media (max-width: 767px) {
  .community-event-article-text {
    text-align: left;
  }
}

.community-event-connect-section {
  margin: 200px auto 0;
  padding-bottom: 4rem;
}
@media (max-width: 1199px) {
  .community-event-connect-section {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .community-event-connect-section {
    margin-top: 3rem;
  }
}

.connect-title {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 28px;
  color: #F5692D;
  text-align: justify;
  margin: 0;
}
@media (max-width: 767px) {
  .connect-title {
    text-align: left;
  }
}

.community-event-back-button {
  margin: 4rem auto 0;
  padding-bottom: 4rem;
  text-align: left;
}
@media (max-width: 1199px) {
  .community-event-back-button {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .community-event-back-button {
    margin-top: 3rem;
    padding-bottom: 3rem;
    text-align: center;
  }
}
.community-event-back-button .btn {
  font-weight: 500;
}
@media (max-width: 767px) {
  .community-event-back-button .btn {
    width: 100%;
    max-width: 300px;
  }
}

/**
 * Main SCSS file for Custom Theme
 * 
 * This file imports all the partial SCSS files
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
/**
 * STEMPA Page Styles
 * 
 * Styles for the STEMPA page template
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
.stempa-main {
  position: relative;
  min-height: 100vh;
  background: #ffffff;
  padding: 0 0 4rem 0;
  padding-top: 0;
}

.stempa-content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .stempa-content-wrapper {
    padding: 0 25px;
  }
}

.stempa-hero {
  margin-top: 0;
  padding-top: 1.5rem;
  min-height: 120px;
}
@media (max-width: 767px) {
  .stempa-hero {
    padding-top: 1rem;
    min-height: 80px;
  }
}

.stempa-hero-title {
  font-family: "Open Sans", sans-serif;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1.2;
  color: #114DA5;
  text-transform: uppercase;
  text-shadow: rgba(0, 0, 0, 0.08) 0px 4px 10px;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .stempa-hero-title {
    font-size: 2.25rem;
  }
}

.stempa-intro {
  margin: 0 auto 3rem;
}
.stempa-intro p {
  color: #000000;
  margin: 0;
}
@media (max-width: 767px) {
  .stempa-intro {
    margin-bottom: 2rem;
  }
  .stempa-intro p {
    text-align: left;
  }
}

.stempa-what-to-expect {
  margin: 0 auto 3rem;
}
@media (max-width: 767px) {
  .stempa-what-to-expect {
    margin-bottom: 2rem;
  }
}

.stempa-what-to-expect-title {
  font-weight: 900;
  font-size: 1.875rem;
  line-height: 28px;
  color: #000000;
  margin: 0 0 1.5rem;
}
@media (max-width: 767px) {
  .stempa-what-to-expect-title {
    font-size: 1.5rem;
    text-align: left;
  }
}

.stempa-what-to-expect-list {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 28px;
  color: #000000;
  margin: 0;
  padding-left: 27px;
}
.stempa-what-to-expect-list li {
  margin-bottom: 12px;
}
.stempa-what-to-expect-list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .stempa-what-to-expect-list {
    font-size: 1rem;
    text-align: left;
    padding-left: 20px;
  }
}

.stempa-comparison-cards {
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .stempa-comparison-cards {
    margin-bottom: 3rem;
    gap: 1rem;
  }
}

.stempa-comparison-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
}
.stempa-comparison-card p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .stempa-comparison-card {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    text-align: center;
  }
}

.stempa-comparison-card-icon {
  flex-shrink: 0;
  width: 180px;
  height: 120px;
}
.stempa-comparison-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 767px) {
  .stempa-comparison-card-icon {
    width: 100%;
    max-width: 180px;
    height: auto;
    aspect-ratio: 180/120;
  }
}

.stempa-comparison-card-content {
  flex: 1;
}

.stempa-comparison-card-title {
  font-weight: 900;
  font-size: 1.125rem;
  line-height: 28px;
  color: #000000;
  margin: 0 0 0.25rem;
}

.stempa-comparison-card-subtitle {
  font-weight: 600;
  font-style: italic;
  font-size: 1.125rem;
  line-height: 28px;
  color: #000000;
  margin: 0 0 0.5rem;
}

.stempa-comparison-card-description {
  color: #000000;
  margin: 0;
}
.stempa-comparison-card-description strong {
  font-weight: 900;
}
@media (max-width: 767px) {
  .stempa-comparison-card-description {
    font-size: 1rem;
  }
}

.stempa-feature-cards {
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 767px) {
  .stempa-feature-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
}

.stempa-feature-card {
  background: #F5692D;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.stempa-feature-card:nth-child(2) {
  background: #ecbe06;
}
.stempa-feature-card:nth-child(3) {
  background: #114DA5;
}
@media (max-width: 767px) {
  .stempa-feature-card {
    min-height: auto;
    padding: 2rem;
  }
}

.stempa-feature-card-number {
  font-weight: 900;
  font-size: calc(3rem * 1.333);
  line-height: 28px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 1.5rem;
}
@media (max-width: 767px) {
  .stempa-feature-card-number {
    font-size: 3rem;
  }
}

.stempa-feature-card-icon {
  width: 108px;
  height: 108px;
  margin-bottom: 1.5rem;
}
.stempa-feature-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 767px) {
  .stempa-feature-card-icon {
    width: 80px;
    height: 80px;
  }
}

.stempa-feature-card-title {
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 28px;
  color: #ffffff;
  margin: 0 0 1.5rem;
}
@media (max-width: 767px) {
  .stempa-feature-card-title {
    font-size: 1.25rem;
  }
}

.stempa-feature-card-description {
  color: #ffffff;
  text-align: center;
  max-width: 351px;
}
.stempa-feature-card-description strong {
  font-weight: 900;
}
.stempa-feature-card-description p {
  margin: 0 0 0.5rem;
}
.stempa-feature-card-description p:last-child {
  margin: 0;
}
@media (max-width: 767px) {
  .stempa-feature-card-description {
    font-size: 1rem;
    max-width: 100%;
  }
}

.stempa-manifesto {
  margin: 0 auto 4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .stempa-manifesto {
    margin-bottom: 3rem;
  }
}

.stempa-manifesto-title {
  font-family: "Open Sans", sans-serif;
  font-size: 1.875rem;
  line-height: normal;
  color: #114DA5;
  text-align: center;
  margin: 0 0 2rem;
}
@media (max-width: 767px) {
  .stempa-manifesto-title {
    font-size: 1.5rem;
  }
}

.stempa-manifesto-quote {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 40px;
  color: #000000;
  text-align: center;
  margin: 0 0 1.5rem;
  max-width: 855px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .stempa-manifesto-quote {
    font-size: 1.25rem;
    line-height: 28px;
  }
}

.stempa-manifesto-description {
  font-family: "Open Sans", sans-serif;
  line-height: 30px;
  color: #000000;
  text-align: center;
  max-width: 1189px;
  margin: 0 auto;
}
.stempa-manifesto-description p {
  margin: 0 0 0.5rem;
}
.stempa-manifesto-description p:last-child {
  margin: 0;
}
@media (max-width: 767px) {
  .stempa-manifesto-description {
    font-size: 0.875rem;
    line-height: 24px;
  }
}

.stempa-logo-section {
  margin: 0 auto 4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .stempa-logo-section {
    margin-bottom: 3rem;
  }
}

.stempa-logo-section-title {
  font-weight: 900;
  font-size: 1.125rem;
  line-height: 28px;
  color: #000000;
  text-align: center;
  margin: 0 0 3rem;
}
@media (max-width: 767px) {
  .stempa-logo-section-title {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.stempa-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-items: center;
  align-items: center;
}
@media (max-width: 767px) {
  .stempa-logo-grid {
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.stempa-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  aspect-ratio: 270/122;
  max-width: 150px;
  max-height: 67px;
}
.stempa-logo-item img {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 767px) {
  .stempa-logo-item {
    aspect-ratio: 200/90;
    max-width: 111px;
    max-height: 50px;
  }
}

.stempa-logo-grid--two {
  justify-content: center;
  align-content: center;
  gap: 20px;
}
.stempa-logo-grid--two .stempa-logo-item {
  aspect-ratio: 242/110;
  max-width: 133px;
  max-height: 61px;
}
@media (max-width: 767px) {
  .stempa-logo-grid--two .stempa-logo-item {
    aspect-ratio: 180/80;
    max-width: 99px;
    max-height: 44px;
  }
}

/**
 * Main SCSS file for Custom Theme
 * 
 * This file imports all the partial SCSS files
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
/**
 * Help Page Styles
 * 
 * Styles for the "How We Can Help" page template
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
.help-main {
  position: relative;
  min-height: 100vh;
  background: #ffffff;
  padding-top: 0;
}

.help-content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .help-content-wrapper {
    padding: 0 25px;
  }
}

.help-hero {
  margin-top: 0;
  padding-top: 1.5rem;
  min-height: 120px;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .help-hero {
    padding-top: 1rem;
    min-height: 80px;
    margin-bottom: 2rem;
  }
}

.help-hero-title {
  font-family: "Open Sans", sans-serif;
  font-weight: 900;
  font-size: 3rem;
  line-height: 56px;
  color: #114DA5;
  text-transform: uppercase;
  text-shadow: rgba(0, 0, 0, 0.08) 0px 4px 10px;
  margin: 0;
}
@media (max-width: 767px) {
  .help-hero-title {
    font-size: 2.25rem;
    line-height: 40px;
  }
}

.help-intro {
  margin: 0 auto 3rem;
}
.help-intro p {
  color: #000000;
  text-align: justify;
  margin: 0 0 10px;
}
.help-intro p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .help-intro {
    margin-bottom: 2rem;
  }
  .help-intro p {
    text-align: left;
  }
}

.help-profile-selection {
  margin: 0 auto 4rem;
}
@media (max-width: 767px) {
  .help-profile-selection {
    margin-bottom: 3rem;
  }
}

.help-profile-selection-title {
  font-size: 1.875rem;
  line-height: normal;
  color: #114DA5;
  text-align: center;
  margin: 0 0 2rem;
}
@media (max-width: 767px) {
  .help-profile-selection-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.help-profile-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
@media (max-width: 767px) {
  .help-profile-cards {
    flex-direction: column;
    gap: 1rem;
  }
}

.help-profile-card {
  flex: 1;
  max-width: 400px;
  border-radius: 24px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.help-profile-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.15);
}
.help-profile-card:focus {
  outline: 2px solid #114DA5;
  outline-offset: 2px;
}
@media (max-width: 767px) {
  .help-profile-card {
    height: auto;
    margin: 0 auto;
    padding: 1.5rem;
  }
}

.help-profile-card--companies {
  background: #F5692D;
}

.help-profile-card--institutions {
  background: #ecbe06;
}

.help-profile-card-icon {
  width: auto;
  height: 100%;
  max-width: 70px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.help-profile-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 767px) {
  .help-profile-card-icon {
    margin-bottom: 1rem;
  }
}

.help-profile-card-title {
  font-size: 1.25rem;
  line-height: 33px;
  text-align: center;
  margin: 0;
  max-width: 365px;
}
.help-profile-card--companies .help-profile-card-title {
  color: #ffffff;
}
.help-profile-card--institutions .help-profile-card-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .help-profile-card-title {
    font-size: 1.125rem;
    line-height: 28px;
    max-width: 100%;
  }
}

.help-hub-section {
  margin: 0 auto 4rem;
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .help-hub-section {
    margin-bottom: 3rem;
  }
}

.help-hub-section-title {
  font-size: 1.875rem;
  line-height: 43px;
  color: #114DA5;
  text-align: center;
  margin: 0 0 2rem;
}
@media (max-width: 767px) {
  .help-hub-section-title {
    font-size: 1.5rem;
    line-height: 32px;
    margin-bottom: 1.5rem;
  }
}

.help-scale-section {
  margin: 0 auto 4rem;
}
@media (max-width: 767px) {
  .help-scale-section {
    margin-bottom: 3rem;
  }
}

.help-scale-section-title {
  font-size: 1.875rem;
  line-height: 43px;
  color: #114DA5;
  text-align: center;
  margin: 0 0 2rem;
}
@media (max-width: 767px) {
  .help-scale-section-title {
    font-size: 1.5rem;
    line-height: 32px;
    margin-bottom: 1.5rem;
  }
}

.help-carousel {
  position: relative;
  margin-bottom: 1.5rem;
  width: 100%;
}
.help-carousel.swiper {
  overflow: hidden !important;
  padding: 0 4rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.help-carousel.swiper .swiper-wrapper {
  display: flex;
}
@media (max-width: 767px) {
  .help-carousel.swiper {
    padding: 0 1.5rem;
  }
}

.help-carousel-card {
  background: #ffffff;
  border: 1px solid #b9b9b9;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  min-height: 234px;
  max-width: 1027px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .help-carousel-card {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    min-height: auto;
  }
}

.help-hub-swiper,
.help-scale-swiper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.help-hub-swiper .swiper-wrapper,
.help-scale-swiper .swiper-wrapper {
  display: flex;
}
.help-hub-swiper .swiper-slide,
.help-scale-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  height: auto;
}

.help-carousel-card-icon {
  flex-shrink: 0;
  width: 164px;
  height: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.help-carousel-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 767px) {
  .help-carousel-card-icon {
    width: 120px;
    height: 120px;
  }
}

.help-carousel-card-content {
  flex: 1;
  max-width: 604px;
  text-align: left;
}
@media (max-width: 767px) {
  .help-carousel-card-content {
    max-width: 100%;
    text-align: center;
  }
}
.help-carousel-card-content h4 {
  color: #F5692D;
  font-size: 2.25rem;
  line-height: 100%;
}

.help-carousel-card-title {
  font-size: 1.25rem;
  line-height: 28px;
  color: #000000;
  margin: 0 0 0.5rem;
}
@media (max-width: 767px) {
  .help-carousel-card-title {
    font-size: 1.125rem;
  }
}

.help-carousel-card-description {
  font-size: 1.125rem;
  line-height: 28px;
  color: #000000;
  margin: 0;
}
.help-carousel-card-description p {
  margin: 0;
}

.help-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
.help-carousel-nav svg {
  width: 100%;
  height: 100%;
  display: block;
}
.help-carousel-nav:hover {
  opacity: 0.8;
  transform: translateY(-50%);
}
.help-carousel-nav.swiper-button-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.help-carousel-nav.swiper-button-next svg {
  fill: transparent !important;
}
.help-carousel-nav.swiper-button-next::after {
  display: none;
}
.help-carousel-nav.swiper-button-next:hover {
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .help-carousel-nav.swiper-button-next {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .help-carousel-nav.swiper-button-next:hover {
    transform: translateY(-50%);
  }
}
.help-carousel-nav.swiper-button-prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.help-carousel-nav.swiper-button-prev svg {
  fill: transparent !important;
}
.help-carousel-nav.swiper-button-prev::after {
  display: none;
}
.help-carousel-nav.swiper-button-prev:hover {
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .help-carousel-nav.swiper-button-prev {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .help-carousel-nav.swiper-button-prev:hover {
    transform: translateY(-50%);
  }
}

.help-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.help-carousel-dots.swiper-pagination {
  position: relative;
  margin-top: 2rem;
}
.help-carousel-dots.swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b9b9b9;
  opacity: 1;
  margin: 0 6px;
  transition: background 0.15s ease;
}
.help-carousel-dots.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000000;
}
.help-carousel-dots.swiper-pagination .swiper-pagination-bullet:hover {
  background: #333333;
}

.help-carousel-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: none;
  background: #b9b9b9;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s ease;
}
.help-carousel-dot.active {
  background: #000000;
}
.help-carousel-dot:hover {
  background: #333333;
}

.help-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
.help-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body.overlay-open {
  overflow: hidden;
}

.help-overlay-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(217, 217, 217, 0.8);
  backdrop-filter: blur(2px);
}

.help-overlay-modal {
  position: relative;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1051;
  padding: 3rem;
  margin: 2rem;
}
@media (max-width: 767px) {
  .help-overlay-modal {
    width: 100%;
    max-width: 95vw;
    padding: 2rem;
    margin: 1rem;
  }
}

.help-overlay-modal--companies {
  min-height: 600px;
}
@media (max-width: 767px) {
  .help-overlay-modal--companies {
    min-height: auto;
  }
}

.help-overlay-modal--institutions {
  min-height: 680px;
}
@media (max-width: 767px) {
  .help-overlay-modal--institutions {
    min-height: auto;
  }
}

.help-overlay-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 19px;
  height: 19px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.help-overlay-close svg {
  width: 100%;
  height: 100%;
  display: block;
}
.help-overlay-close:hover {
  opacity: 0.7;
  background: transparent;
}
@media (max-width: 767px) {
  .help-overlay-close {
    top: 1rem;
    right: 1rem;
  }
}

.help-overlay-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-right: 4rem;
}
@media (max-width: 767px) {
  .help-overlay-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-right: 0;
    margin-bottom: 1.5rem;
  }
}

.help-overlay-icon {
  flex-shrink: 0;
  width: auto;
  height: 100%;
  max-width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.help-overlay-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 767px) {
  .help-overlay-icon {
    width: 120px;
    height: 110px;
  }
}

.help-overlay-title {
  font-size: 1.875rem;
  line-height: 33px;
  margin: 0;
}
.help-overlay-modal--companies .help-overlay-title {
  color: #F5692D;
}
.help-overlay-modal--institutions .help-overlay-title {
  color: #F4C500;
}
@media (max-width: 767px) {
  .help-overlay-title {
    font-size: 1.5rem;
    line-height: 28px;
  }
}

.help-overlay-content {
  font-size: 1.125rem;
  line-height: 33px;
  color: #000000;
}
.help-overlay-content > p {
  margin: 0 0 6px;
}
.help-overlay-content h3 {
  font-size: 1.125rem;
  line-height: 33px;
  margin: 1.5rem 0 0;
  color: #000000;
}
.help-overlay-content h3:first-of-type {
  margin-top: 0;
}
.help-overlay-content ul {
  list-style: disc;
  margin: 0;
  padding-left: 1.5em;
}
.help-overlay-content ul li {
  margin-bottom: 0;
}
.help-overlay-content ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .help-overlay-content {
    font-size: 1rem;
    line-height: 28px;
  }
  .help-overlay-content h3 {
    font-size: 1rem;
    line-height: 28px;
  }
}

/**
 * Main SCSS file for Custom Theme
 * 
 * This file imports all the partial SCSS files
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
/**
 * Contact Us Page Styles
 * 
 * Styles for the Contact Us page template
 *
 * @package Custom_Theme
 * @since 1.0.0
 */
.contact-main {
  position: relative;
  min-height: 100vh;
  margin-top: -80px;
}
@media (max-width: 767px) {
  .contact-main {
    margin-top: -20px;
  }
}

.contact-content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .contact-content-wrapper {
    padding: 0 25px;
  }
}

.contact-title {
  font-family: "Open Sans", sans-serif;
  font-weight: 900;
  font-size: 3rem;
  line-height: 56px;
  color: #114DA5;
  text-transform: uppercase;
  text-shadow: rgba(0, 0, 0, 0.08) 0px 4px 10px;
  margin: 0;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .contact-title {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 3rem;
  }
}

.contact-team-photo {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .contact-team-photo {
    padding: 0 25px;
  }
}
.contact-team-photo {
  width: 100%;
  max-width: 1400px;
  height: auto;
  margin: 5rem auto 4rem;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .contact-team-photo {
    height: auto;
    min-height: auto;
    margin-top: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 30px;
  }
}
.contact-team-photo .team-photo-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 20px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .contact-team-photo .team-photo-image {
    height: auto;
    min-height: auto;
  }
}
.contact-team-photo .team-photo-placeholder {
  width: 100%;
  height: 100%;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-size: 1.125rem;
}

.meet-team-button {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #f4c500;
  color: #000000;
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 40px;
  padding: 0.5rem 3rem;
  border-radius: 73px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  z-index: 3;
  display: inline-block;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .meet-team-button {
    font-size: 1.125rem;
    padding: 0.25rem 2rem;
    line-height: 32px;
  }
}
.meet-team-button a {
  color: white;
}
.meet-team-button:hover {
  background: #F5692D;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  transform: translateX(-50%) translateY(-2px);
}
.meet-team-button:hover a {
  text-decoration: none;
}

.contact-info-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .contact-info-section {
    padding: 0 25px;
  }
}
.contact-info-section {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .contact-info-section {
    margin-bottom: 3rem;
  }
}

.contact-office-name {
  font-size: 1.875rem;
  line-height: 28px;
  color: #F5692D;
  margin: 0 0 1.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .contact-office-name {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
}

.contact-address {
  font-size: 1.25rem;
  line-height: 40px;
  color: #000000;
  text-align: center;
}
.contact-address p {
  margin: 0;
}
@media (max-width: 767px) {
  .contact-address {
    font-size: 1.125rem;
    line-height: 1.6;
  }
}

.contact-map-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .contact-map-section {
    padding: 0 25px;
  }
}
.contact-map-section {
  width: 100%;
  max-width: 870px;
  margin: 0 auto;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .contact-map-section {
    margin-bottom: 3rem;
  }
}

.contact-map-container {
  position: relative;
  width: 100%;
  height: 452px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
}
@media (max-width: 767px) {
  .contact-map-container {
    height: 300px;
  }
}
.contact-map-container iframe,
.contact-map-container .contact-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
  display: block;
}

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