.button {
  text-transform: uppercase;
  font-size: 1.2rem;
}
.button span {
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 20px;
  height: 10px;
  margin-left: 10px;
}

.white-button {
  color: white;
}
.white-button span {
  background-image: url("/wp-content/uploads/2025/11/arrow-right-white.svg");
}

.green-button {
  color: #497E75;
}
.green-button span {
  background-image: url("/wp-content/uploads/2025/11/green-arrow-right.svg");
}

.red-button {
  border: 2px solid #8B1428;
  padding: 0.45rem 1rem;
  text-transform: capitalize;
}

h1, h2, h3, h4, h5, h6, a {
  font-family: "baskerville-display-pt", serif;
  color: #333;
}

div, p {
  font-family: "avenir-next-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
}

p {
  line-height: 30px;
}

/*
 * CSS for the 'Fade In and Up' Entry Transition
 * Add this to your main stylesheet.
 */
.animate-section {
  opacity: 0;
  transform: translateY(50px);
  pointer-events: none;
  transition: all 0.9s ease;
}

.animate-section.animate-in {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body {
  background-color: #F4F8F7 !important;
}
body #main {
  margin-top: 0;
  padding: 0;
}

header {
  background-color: #497E75 !important;
}
header #header {
  padding: 16px 0;
}
header #header #navbar {
  margin-top: 0.75rem;
}
@media (min-width: 768px) {
  header #header #navbar {
    margin-top: 0;
  }
}
header .navbar-brand img {
  height: 30px;
}
header .navbar-toggler {
  border: 0;
}
header .navbar-toggler:focus {
  outline: 0 !important;
  box-shadow: none !important;
}
header .navbar-toggler .navbar-toggler-icon {
  background-image: url("/wp-content/uploads/2025/11/matsim-nav-toggler.svg");
}
header #menu-primary-navigation {
  margin-left: auto;
}
header #menu-primary-navigation .nav-link {
  color: white;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  header #menu-primary-navigation .nav-link {
    padding: 0 16px;
  }
}

#footer {
  padding: 5rem 0;
  background-color: #333 !important;
}
#footer a {
  font-family: "avenir-next-lt-pro", sans-serif;
}
#footer h4 {
  color: white;
  margin-bottom: 1.75rem;
}
#footer .footer-menu {
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  #footer .footer-menu {
    margin-bottom: 0;
  }
}
#footer .footer-menu .menu {
  flex-direction: column;
}
#footer .footer-menu .menu .nav-link {
  padding: 0 0 1rem 0;
  color: white;
}
#footer p {
  color: white;
}
#footer .footer-follow .follow-wrapper .socials-row {
  margin-bottom: 1.75rem;
}
#footer .footer-follow .follow-wrapper .socials-row svg {
  fill: white;
}
#footer .footer-follow .follow-wrapper .partners-row {
  margin-bottom: 1.75rem;
}
#footer .footer-follow .follow-wrapper .partners-row img {
  max-height: 30px;
  width: auto;
}
#footer .footer-contact {
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  #footer .footer-contact {
    margin-bottom: 0;
  }
}
#footer .footer-contact p, #footer .footer-contact a, #footer .footer-contact strong, #footer .footer-contact span {
  color: white;
}

.home-hero-section video {
  width: 100%;
}

.home-hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen */
  overflow: hidden;
}
.home-hero-section .home-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-hero-section .home-hero-overlay video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills container */
  object-position: center;
}
.home-hero-section .home-hero-overlay .home-hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  width: 100%;
}
.home-hero-section .home-hero-overlay .hero-text-fade-one {
  opacity: 0;
  animation: fadeinandout 20s forwards;
  animation-delay: 3s;
}
.home-hero-section .home-hero-overlay .hero-text-fade-two {
  opacity: 0;
  animation: fadeinandout 20s forwards;
  animation-delay: 5s;
}
@keyframes fadeinandout {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.home header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
@media (min-width: 768px) {
  .home header {
    background-color: transparent !important;
  }
}

.call-to-action-section {
  padding: 5rem 0;
  background-color: #497E75;
}
.call-to-action-section .row {
  justify-content: center;
  align-items: center;
}
.call-to-action-section .row .title-column, .call-to-action-section .row .body-column {
  color: white;
}
.call-to-action-section .row h1 {
  margin-bottom: 2.5rem;
}
.call-to-action-section .row .body-column .call-to-action-body-wrapper p {
  line-height: 40px;
  margin-bottom: 2.5rem;
}

.featured-projects-section {
  margin: 5rem 0;
}
@media (min-width: 768px) {
  .featured-projects-section {
    margin: 10rem 0;
  }
}
.featured-projects-section h2 {
  margin-bottom: 1.3rem;
}
.featured-projects-section .red-underline {
  width: 100px;
  border-bottom: 2px solid #8B1428;
  margin: 0 15px 2.5rem;
}
@media (min-width: 768px) {
  .featured-projects-section .red-underline {
    margin: 0 15px 5rem;
  }
}
.featured-projects-section .card {
  border: 0;
  border-radius: 0;
  box-shadow: -2px 5px 5px 0px #efefef;
}
.featured-projects-section .card .card-img-top {
  border-radius: 0;
  max-height: 312px;
  object-fit: cover;
}
.featured-projects-section .card .card-body {
  padding: 40px 20px;
}
.featured-projects-section .card .card-body .card-title {
  margin-bottom: 2.5rem;
}
.featured-projects-section .card .card-body .card-title a {
  color: #333;
}
.featured-projects-section .card .card-body .card-text {
  margin-bottom: 5rem;
}

.two-columns-section {
  margin: 5rem 0;
}
@media (min-width: 768px) {
  .two-columns-section {
    margin: 10rem 0;
  }
}
.two-columns-section h2 {
  margin-bottom: 1.3rem;
}
.two-columns-section .red-underline {
  width: 100px;
  border-bottom: 2px solid #8B1428;
  margin: 0 15px 2.5rem;
}
@media (min-width: 768px) {
  .two-columns-section .red-underline {
    margin: 0 15px 5rem;
  }
}
.two-columns-section .column .button {
  display: block;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .two-columns-section .column .button {
    margin-bottom: 0;
  }
}
.two-columns-section .column img {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
  margin-bottom: 2.5rem;
}

:root {
  --container: 100%; /* mobile default */
}

/* sm */
@media (min-width: 576px) {
  :root {
    --container: 540px;
  }
}
/* md */
@media (min-width: 768px) {
  :root {
    --container: 720px;
  }
}
/* lg */
@media (min-width: 992px) {
  :root {
    --container: 960px;
  }
}
/* xl */
@media (min-width: 1200px) {
  :root {
    --container: 1140px;
  }
}
/* xxl */
@media (min-width: 1400px) {
  :root {
    --container: 1320px;
  }
}
.text-and-image-section {
  background-color: #D6EBE9;
  padding: 0 !important;
}
.text-and-image-section .row {
  margin: 0;
}
.text-and-image-section .row .image-column {
  padding: 0;
}
.text-and-image-section .text-column {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 5rem 15px;
}
@media (min-width: 992px) {
  .text-and-image-section .text-column {
    margin-left: calc((100% - var(--container)) / 2);
    max-width: calc(var(--container) / 12 * 6) !important;
    padding-right: 40px !important;
    padding-left: 0;
  }
}
.text-and-image-section .text-column h2 {
  margin-bottom: 1.3rem;
}
.text-and-image-section .text-column .red-underline {
  width: 100px;
  border-bottom: 2px solid #8B1428;
  display: block;
  margin-bottom: 2.5rem;
}
.text-and-image-section .text-column .text-and-image-body p {
  line-height: 40px;
}
.text-and-image-section .text-column .text-and-image-button {
  margin-top: 2.5rem;
}
.text-and-image-section .image-column .text-and-image-image img {
  max-width: 100%;
}

.title-with-border-section {
  margin: 5rem;
}
.title-with-border-section .red-underline {
  width: 100px;
  border-bottom: 2px solid #8B1428;
  display: block;
  margin-bottom: 2.5rem;
}

.profiles-section {
  margin-bottom: 5rem;
}
.profiles-section .profile-item .profile-image img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
  object-position: center;
}
.profiles-section .profile-item .profile-email a {
  color: #497E75;
  text-decoration: underline;
  font-size: 20px;
  font-weight: 500;
}

.latest-news-section {
  margin: 5rem 0;
}
@media (min-width: 768px) {
  .latest-news-section {
    margin: 10rem 0;
  }
}
.latest-news-section .red-underline {
  width: 100px;
  border-bottom: 2px solid #8B1428;
  display: block;
  margin-bottom: 2.5rem;
}
.latest-news-section .card {
  border-radius: 0;
  border: 0;
  background-color: transparent;
}
.latest-news-section .card .card-img-top {
  border-radius: 0;
  max-height: 260px;
  object-fit: cover;
}
.latest-news-section .card .card-body {
  padding: 1rem 0 2.5rem 0;
}
.latest-news-section .card .card-body .press-date {
  color: #8B1428;
  text-transform: uppercase;
}
.latest-news-section .card .card-body .card-text {
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shortcode-section {
  margin-bottom: 5rem;
}
.shortcode-section .contact-details {
  margin-bottom: 2.5rem;
}
.shortcode-section .contact-details a {
  color: #497E75;
  font-family: "avenir-next-lt-pro", sans-serif;
}
.shortcode-section .contact-form input, .shortcode-section .contact-form textarea {
  border-radius: 0;
}

.project-archive .card {
  border: 0;
  border-radius: 0;
  box-shadow: -2px 5px 5px 0px #efefef;
}
.project-archive .card .card-img-top {
  border-radius: 0;
  object-fit: cover;
  max-height: 260px;
}
.project-archive .card .card-body {
  padding: 40px 20px;
}
.project-archive .card .card-body .card-title {
  margin-bottom: 0.8rem;
}
.project-archive .card .card-body .card-title a {
  color: #333;
}
.project-archive .card .card-body .card-text {
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
}

.project-single {
  margin: 5rem 0;
}
.project-single .project-image img {
  max-width: 100%;
  max-height: 600px;
}
.project-single .view-more-projects-button {
  margin-top: 5rem;
  display: block;
}

.project-filter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.project-filter input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.project-filter .form-check {
  padding-left: 0;
}
.project-filter .form-check-label {
  padding: 0.45rem 1rem;
  border-radius: 0;
  border: 1px solid #dee2e6;
  background: #f8f9fa;
  cursor: pointer;
  transition: all 0.15s ease;
  font-weight: 500;
  display: inline-block;
}
.project-filter .form-check-label:hover {
  background: #e9ecef;
}
.project-filter input[type=radio]:checked + .form-check-label {
  background: #497E75;
  color: #fff;
  border-color: #497E75;
  outline: 0;
}
.project-filter button[type=submit] {
  margin-left: 0.5rem;
  height: 40px;
}

.partners-section {
  margin-bottom: 5rem;
}
.partners-section .red-underline {
  width: 100px;
  border-bottom: 2px solid #8B1428;
  display: block;
  margin-bottom: 2.5rem;
}
.partners-section .single-partner {
  margin-bottom: 2.5rem;
}
.partners-section .single-partner img {
  max-width: 120px;
  display: block;
}
.partners-section .single-partner h4, .partners-section .single-partner p, .partners-section .single-partner a {
  margin-bottom: 0.5rem;
  display: block;
}
.partners-section .single-partner a {
  color: #497E75;
  text-decoration: underline;
  font-size: 20px;
  font-weight: 500;
}

.press-archive .red-underline {
  width: 100px;
  border-bottom: 2px solid #8B1428;
  display: block;
  margin-bottom: 2.5rem;
}
.press-archive .press-column {
  border-right: 1px solid #efefef;
}
.press-archive .press-column:nth-child(4n) {
  border-right: 0;
}
.press-archive .press-column .card {
  border-radius: 0;
  border: 0;
  background-color: transparent;
}
.press-archive .press-column .card .card-img-top {
  border-radius: 0;
}
.press-archive .press-column .card .card-body {
  padding: 1rem 0 2.5rem 0;
}
.press-archive .press-column .card .card-body .press-date {
  color: #8B1428;
  text-transform: uppercase;
}
.press-archive .press-column .card .card-body .card-text {
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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