@charset "UTF-8";
html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.6;
  color: #1F3A5F;
  background: #fff;
}

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

a {
  color: #4CAF88;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}
a:hover {
  color: #f2603d;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5rem;
  font-weight: 900;
  line-height: 1.2;
}

p {
  margin: 0 0 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 1rem;
}

h4 {
  font-size: 0.5rem;
}

.btn {
  width: fit-content;
  min-width: 100px;
  min-height: 40px;
  padding: 8px 25px;
  border-radius: 1000px;
  border-width: 1px;
  border-style: solid;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
@media screen and (max-width: 1024px) {
  .btn {
    font-size: 0.6rem;
  }
}
.btn:hover {
  color: #fff;
  text-decoration: none;
  background-color: #4CAF88;
  border-color: #4CAF88;
}
.btn:active {
  color: #fff;
}
.btn__primary {
  background-color: #1F3A5F;
  border-color: #1F3A5F;
  color: #fff;
}
.btn__primary:active {
  background-color: #4CAF88;
}
.btn__secondary {
  background-color: #f2603d;
  border-color: #f2603d;
  color: #fff;
}
.btn__secondary:active {
  background-color: #f2603d;
}
.btn:focus {
  outline: none;
}

@media screen and (max-width: 640px) {
  .hidden__xs {
    display: none !important;
  }
}
@media screen and (max-width: 810px) {
  .hidden__sm {
    display: none !important;
  }
}
@media screen and (min-width: 811px) {
  .hidden__min-sm {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .hidden__md {
    display: none !important;
  }
}
@media screen and (max-width: 1280px) {
  .hidden__lg {
    display: none !important;
  }
}
@media screen and (max-width: 1536px) {
  .hidden__xl {
    display: none !important;
  }
}
@media screen and (max-width: 1920px) {
  .hidden__xxl {
    display: none !important;
  }
}

.site-header {
  padding: 1rem;
}

.home-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem 0;
  width: 100%;
  margin: 0 auto;
}

.container {
  padding: 1rem;
  width: 90%;
  margin: 0 auto;
}
.container__card {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem;
}
@media screen and (max-width: 810px) {
  .container__card {
    width: 100%;
    padding: 1rem;
  }
}

.entry-title, .page-title, .site-title {
  margin: 0 0 0.5rem;
}

.site-main {
  margin: 0 auto;
  padding: 0;
  gap: 1rem;
}

.featured-banner {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 3rem;
  min-height: 500px;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 810px) {
  .featured-banner {
    min-height: 300px;
    max-height: 400px;
  }
}
.featured-banner__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.featured-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.featured-banner__content {
  position: relative;
  left: 25%;
  z-index: 2;
  text-align: left;
  color: #fff;
  padding: 2rem;
  max-width: 30%;
  height: 100vb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  background-color: rgba(242, 96, 61, 0.3);
  background-image: linear-gradient(180deg, rgba(242, 96, 61, 0.3) 0%, rgba(76, 175, 136, 0.3) 100%);
}
@media screen and (max-width: 1200px) {
  .featured-banner__content {
    max-width: 40%;
  }
}
@media screen and (max-width: 1024px) {
  .featured-banner__content {
    max-width: 55%;
  }
}
@media screen and (max-width: 510px) {
  .featured-banner__content {
    max-width: 80%;
    padding: 1rem;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.featured-banner__title {
  margin: 0 0 1rem;
  font-size: 3rem;
  line-height: 1.1;
}
@media screen and (max-width: 810px) {
  .featured-banner__title {
    font-size: 2rem;
  }
}
.featured-banner__excerpt {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 810px) {
  .featured-banner__excerpt {
    font-size: 1.1rem;
    line-height: 1.4;
  }
}

.page-banner {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 3rem;
  min-height: 560px;
  max-height: 670px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(180deg, rgba(242, 96, 61, 0.3) 0%, rgba(76, 175, 136, 0.3) 100%);
}
@media screen and (max-width: 810px) {
  .page-banner {
    min-height: 300px;
    max-height: 400px;
  }
}
.page-banner__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.page-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-banner__content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: #fff;
  padding: 3rem;
  width: fit-content;
  max-width: 40%;
  height: 100vb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  margin-left: 11rem;
  background-image: linear-gradient(180deg, rgba(242, 96, 61, 0.5) 0%, rgba(76, 175, 136, 0.5) 100%);
}
@media screen and (max-width: 1024px) {
  .page-banner__content {
    max-width: 60%;
    padding: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .page-banner__content {
    max-width: 80%;
    padding: 1.5rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 510px) {
  .page-banner__content {
    max-width: 90%;
    padding: 1rem;
  }
}
.page-banner__title {
  margin: 0;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1024px) {
  .page-banner__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 810px) {
  .page-banner__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 510px) {
  .page-banner__title {
    font-size: 1.5rem;
  }
}

.site-footer {
  margin-top: auto;
}

.footer-newsletter {
  background-color: rgba(76, 175, 136, 0.4);
  padding: 4rem 0;
  width: 100%;
  margin-top: 5rem;
}
.footer-newsletter .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.footer-newsletter__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .footer-newsletter__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
.footer-newsletter__text {
  flex: 1;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .footer-newsletter__text {
    max-width: 100%;
  }
}
.footer-newsletter__title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  color: #1F3A5F;
  margin: 0 0 1rem 0;
}
@media screen and (max-width: 768px) {
  .footer-newsletter__title {
    font-size: 2rem;
  }
}
.footer-newsletter__description {
  font-size: 1.5rem;
  line-height: 1.6;
  color: rgba(31, 58, 95, 0.8);
  margin: 0;
}
.footer-newsletter__form {
  flex: 1;
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  .footer-newsletter__form {
    max-width: 100%;
    width: 100%;
  }
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.newsletter-form__field {
  width: 100%;
}
.newsletter-form__input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: none;
  border-radius: 1000px;
  background-color: #fff;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  color: #1F3A5F;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.newsletter-form__input::placeholder {
  color: #999;
}
.newsletter-form__input:focus {
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.footer-copyright {
  background: linear-gradient(135deg, #4CAF88 0%, #f2603d 100%);
  padding: 2.5rem 0;
  width: 100%;
}
.footer-copyright .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.footer-copyright__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .footer-copyright__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.footer-copyright__left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-copyright__initiative {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.footer-copyright__text {
  font-size: 0.9rem;
  color: #fff;
  margin: 0;
  font-weight: 400;
}
.footer-copyright__link {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.footer-copyright__link:hover {
  color: #1F3A5F;
}
.footer-copyright__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-copyright__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.footer-copyright__logo {
  width: auto;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.chip {
  display: inline-block;
  background-color: #4CAF88;
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 1000px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}
.chip__big {
  font-size: 1.2rem;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
}
.chip--small {
  font-size: 0.75rem;
  padding: 0.35rem 0.9rem;
  letter-spacing: 0.3px;
}
@media screen and (max-width: 768px) {
  .chip {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
  .chip--small {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
  }
}

.site-header {
  background: linear-gradient(135deg, #4CAF88 0%, #f2603d 100%);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
  padding: 0;
  gap: 1rem;
}
.site-header .container .site-branding {
  width: 25%;
  display: flex;
  align-items: center;
}
.site-header .container .site-branding img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.site-header .container .site-branding .site-logo-link,
.site-header .container .site-branding .site-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.site-header .container .site-branding .site-title {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
@media screen and (max-width: 810px) {
  .site-header .container .site-branding {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  .site-header .container .site-branding {
    width: 70%;
  }
}

.main-navigation {
  display: none;
  width: 75%;
}
@media screen and (min-width: 811px) {
  .main-navigation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
.main-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.main-navigation ul li {
  position: relative;
  margin: 0 1rem;
}
.main-navigation ul li > a {
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.main-navigation ul li > a:hover, .main-navigation ul li > a.active {
  color: #E9C46A;
}
.main-navigation ul li.menu-item-has-children > a::after {
  content: "▾";
  margin-left: 0.5rem;
  font-size: 1.1rem;
  display: inline-block;
  transform: translateY(-1px);
  transition: transform 0.25s ease;
}
.main-navigation ul li.is-open > a::after {
  transform: rotate(180deg) translateY(1px);
}
.main-navigation ul li .sub-menu {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #f2603d;
  border-radius: 4px;
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 10;
}
.main-navigation ul li .sub-menu li {
  display: block;
  gap: 0;
  border-bottom: 1px solid #fff;
  padding: 0.4rem 0;
}
.main-navigation ul li .sub-menu li:last-child {
  border-bottom: none;
}
.main-navigation ul li .sub-menu li > a {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.4rem 0;
}
@media screen and (min-width: 811px) {
  .main-navigation ul li .sub-menu li > a {
    padding: 0.5rem 1rem;
    display: block;
  }
}
.main-navigation ul li.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-navigation ul li:hover > .sub-menu, .main-navigation ul li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media screen and (min-width: 811px) {
  .main-navigation ul li:hover > a::after, .main-navigation ul li:focus-within > a::after {
    transform: rotate(180deg) translateY(1px);
  }
}

.main-navigation__mobile {
  display: block;
}
@media screen and (min-width: 811px) {
  .main-navigation__mobile {
    display: none;
  }
}
.main-navigation__mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.main-navigation__mobile ul li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.main-navigation__mobile ul li > a {
  flex: 1;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 0.4rem 0;
}
.main-navigation__mobile ul li > a:hover, .main-navigation__mobile ul li > a.active {
  color: #E9C46A;
}
.main-navigation__mobile ul li.menu-item-has-children {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  place-items: flex-start;
}
.main-navigation__mobile ul li.menu-item-has-children a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-navigation__mobile ul li.menu-item-has-children > a::after {
  content: "▾";
  margin-left: 0.5rem;
  font-size: 1.1rem;
  display: inline-block;
  transform: translateY(-1px);
  transition: transform 0.25s ease;
}
.main-navigation__mobile ul li.is-open > a::after {
  transform: rotate(180deg) translateY(1px);
}
.main-navigation__mobile ul li .sub-menu {
  list-style: none;
  padding-left: 1rem;
  margin: 0;
  display: none;
  width: 100%;
}
.main-navigation__mobile ul li .sub-menu li {
  display: block;
  width: 100%;
  border-bottom: 1px solid #fff;
  padding: 0.4rem 0;
}
.main-navigation__mobile ul li .sub-menu li:last-child {
  border-bottom: none;
}
.main-navigation__mobile ul li .sub-menu li > a {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.3rem 0;
}
.main-navigation__mobile ul li.is-open > .sub-menu {
  display: block;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: none;
  border-radius: 0.4rem;
  height: 35px;
  width: 35px;
  color: #4CAF88;
  cursor: pointer;
}
@media screen and (min-width: 811px) {
  .menu-toggle {
    display: none;
  }
}

.offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(85vw, 320px);
  background: linear-gradient(135deg, #4CAF88 0%, #f2603d 100%);
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.35s ease-in-out;
  z-index: 1000;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 811px) {
  .offcanvas {
    display: none;
  }
}

.offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 999;
}
@media screen and (min-width: 811px) {
  .offcanvas-overlay {
    display: none;
  }
}

html.is-menu-open .offcanvas {
  transform: translateX(0);
}
html.is-menu-open .offcanvas-overlay {
  opacity: 1;
  pointer-events: auto;
}

.menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.menu-close:hover, .menu-close:focus-visible {
  background: rgba(0, 0, 0, 0.35);
  transform: scale(1.05);
}
@media screen and (min-width: 811px) {
  .menu-close {
    display: none;
  }
}

.entry-content {
  padding-left: 6rem;
  padding-right: 6rem;
}
@media screen and (max-width: 1024px) {
  .entry-content {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media screen and (max-width: 510px) {
  .entry-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.hero-card {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 90%;
}
@media screen and (max-width: 810px) {
  .hero-card {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}
.hero-card__left .tc-hero-section__content {
  width: 80%;
  max-width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}
@media screen and (max-width: 810px) {
  .hero-card__left .tc-hero-section__content {
    width: 100%;
  }
}
@media screen and (max-width: 810px) {
  .hero-card__left {
    width: 100%;
  }
}
.hero-card__right {
  width: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1rem;
}
@media screen and (max-width: 1024px) {
  .hero-card__right {
    flex-wrap: nowrap;
    overflow-x: scroll;
    align-items: stretch;
    width: 100%;
    padding-bottom: 25px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
.hero-card__right .tc-card {
  width: 200px;
  margin-top: 10px;
  flex: 1 1 auto;
  min-height: 100%;
  align-self: stretch;
}
.hero-card__right .tc-card.tc-card--flip {
  height: 100%;
}
.hero-card__right .tc-card .tc-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.hero-card__right .tc-card .tc-card__front,
.hero-card__right .tc-card .tc-card__back {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.hero-card__right .tc-card .tc-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  margin-top: 3rem;
}
.hero .tc-hero-section {
  padding: 0;
  height: 100%;
  display: flex;
  flex: 1;
}
.hero .tc-hero-section {
  width: 100%;
}
@media screen and (max-width: 810px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}
.hero__left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
}
.hero__left .tc-hero-section {
  height: 100%;
  flex: 1;
  display: flex;
}
.hero__left .tc-hero-section__image {
  height: 100%;
  flex: 1;
}
@media screen and (max-width: 810px) {
  .hero__left {
    width: 100%;
    align-self: auto;
  }
}
.hero__right {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  background: linear-gradient(135deg, #4CAF88 0%, #f2603d 100%);
  color: #fff;
  padding-left: 4rem;
  padding-right: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.hero__right__nobkg {
  background: transparent;
}
@media screen and (max-width: 810px) {
  .hero__right {
    width: 100%;
    align-self: auto;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media screen and (max-width: 510px) {
  .hero__right {
    width: 100%;
    align-self: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.full {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  gap: 4rem;
}
@media screen and (max-width: 1024px) {
  .full {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding: 1rem;
  }
}
.full__left {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .full__left {
    width: 100%;
    padding-left: 0;
  }
  .full__left__txtcenter {
    text-align: center;
  }
  .full__left .tc-hero-section__links {
    display: block;
  }
}
.full__right {
  width: fit-content;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 1rem 0;
  scroll-behavior: smooth;
  align-items: stretch;
}
@media screen and (max-width: 810px) {
  .full__right {
    width: 100%;
    padding-left: 2rem;
  }
}
@media screen and (max-width: 510px) {
  .full__right {
    padding-left: 1rem;
  }
}
.full__right-small {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .full__right-small {
    width: 90%;
    margin-top: -3rem;
  }
}
.full__left-small {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .full__left-small {
    width: 90%;
    margin-top: -3rem;
  }
}

.cardforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 810px) {
  .cardforms {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.cardforms .tc-card {
  width: 100%;
  max-width: 400px;
  margin: 0;
}
@media screen and (max-width: 810px) {
  .cardforms .tc-card {
    width: 90%;
    max-width: 320px;
  }
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
@media screen and (max-width: 768px) {
  .blog-container {
    padding: 2rem 1rem;
  }
}

.blog-filter {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .blog-filter {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }
}
.blog-filter__label {
  font-weight: 600;
  color: #1F3A5F;
  font-size: 1.1rem;
}
.blog-filter__select {
  padding: 0.75rem 1.5rem;
  border: 2px solid #1F3A5F;
  border-radius: 8px;
  background-color: #fff;
  color: #1F3A5F;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 250px;
}
.blog-filter__select:hover {
  background-color: rgba(31, 58, 95, 0.05);
}
.blog-filter__select:focus {
  outline: none;
  border-color: #4CAF88;
  box-shadow: 0 0 0 3px rgba(76, 175, 136, 0.1);
}

.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .blog-posts {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 1.5rem;
  }
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.blog-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-card__image a:hover img {
  transform: scale(1.05);
}
.blog-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.blog-card__category {
  width: fit-content;
}
.blog-card__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: -20px;
}
.blog-card__title a {
  color: #1F3A5F;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-card__title a:hover {
  color: #4CAF88;
}
.blog-card__date {
  font-size: 0.9rem;
  color: rgba(31, 58, 95, 0.6);
  font-weight: 500;
  margin-top: 0.5rem;
}
.blog-card__button {
  margin-top: auto;
  width: fit-content;
  text-decoration: none;
}

.blog-pagination {
  margin-top: 4rem;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .blog-pagination {
    padding: 0;
  }
}
.blog-pagination .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .blog-pagination .pagination {
    gap: 0.25rem;
  }
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0.5rem 0.75rem;
  color: #1F3A5F;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.blog-pagination .page-numbers li {
  border: 2px solid #1F3A5F;
  border-radius: 8px;
  background-color: #fff;
}
.blog-pagination .page-numbers li:hover {
  background-color: #1F3A5F;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.blog-pagination .page-numbers li:hover a {
  color: #fff;
}
.blog-pagination .page-numbers li .current {
  background-color: #1F3A5F;
  color: #fff;
  border-color: #1F3A5F;
  cursor: default;
}
.blog-pagination .page-numbers li .current:hover {
  transform: none;
  box-shadow: none;
  color: #fff;
}
.blog-pagination .page-numbers a {
  text-decoration: none;
}
.blog-pagination .page-numbers.dots {
  border: none;
  background: transparent;
  cursor: default;
}
.blog-pagination .page-numbers.dots:hover {
  background: transparent;
  color: #1F3A5F;
  transform: none;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .blog-pagination .page-numbers {
    min-width: 35px;
    height: 35px;
    padding: 0.4rem 0.6rem;
    font-size: 0.9rem;
  }
}
.blog-pagination ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.blog-pagination ul.page-numbers li {
  list-style: none;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .blog-pagination ul.page-numbers {
    gap: 0.25rem;
  }
}

.cards-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.cards-container .card {
  flex: 0 0 75%;
  max-width: 75% %;
  scroll-snap-align: start;
}

@media screen and (max-width: 768px) {
  .wp-block-media-text__media img {
    padding-bottom: 1.5rem;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../scss/partials/_base.scss%22,%22../scss/partials/_variables.scss%22,%22../scss/partials/_layout.scss%22,%22../scss/main.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22;AAEA;EAAO;;;AACP;EAAyB;;;AAEzB;EACE;EACA,aCHW;EDIX;EACA;EACA;EACA,OCHW;EDIX,YCNS;;;ADSX;EACE;EACA;;;AAGF;EACE,OCXgB;EDYhB;EACA;EACA;EACA;;AACA;EACE,OChBa;EDiBb;EACA;EACA;;;AAIJ;EACE;EACA;EACA;;;AAEF;EACE;;;AAGF;EACE;;;AAEF;EACE;;;AAEF;EACE;EACA;EACA,YClDQ;;;ADoDV;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,YC1EQ;;AD4ER;EApBF;IAqBI;;;AAGF;EACE;EACA;EACA,kBC3Ec;ED4Ed,cC5Ec;;AD8EhB;EACE;;AAGF;EACE,kBCpFY;EDqFZ,cCrFY;EDsFZ;;AACA;EACE,kBCvFY;;AD0FhB;EACE,kBC1Fa;ED2Fb,cC3Fa;ED4Fb;;AAEA;EACE,kBC/FW;;ADoGf;EACE;;;AAMA;EADF;IAEI;;;AAIF;EADF;IAEI;;;AAIF;EADF;IAEI;;;AAIF;EADF;IAEI;;;AAIF;EADF;IAEI;;;AAIF;EADF;IAEI;;;AAIF;EADF;IAEI;;;;AEpJN;EACG;;;AAGH;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE,SDbQ;ECcR,ODbgB;ECchB;;AAEA;EACE;EACA;EACA;EACA;;AACA;EALF;IAMI;IACA,SDxBI;;;;AC6BV;EAAyC;;;AC3BzC;EACE;EACA;EACA,KFLQ;;;AESV;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAbF;IAcI;IACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EF/BF;EAEA;;AEgCE;EAfF;IAgBI;;;AAGF;EAnBF;IAoBI;;;AAGF;EAvBF;IAwBK;IACA,SFpEG;IEqEH;IACA;IACA;;;AAIL;EACG;EACA;EACA;;AACA;EAJH;IAKI;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EARF;IASI;IACA;;;;AAMN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;;AAMA;EAnBF;IAoBI;IACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAMA;EArBF;IAsBI;IACA;;;AAGF;EA1BF;IA2BI;IACA;IACA;;;AAGF;EAhCF;IAiCI;IACA,SF9KI;;;AEmLR;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EARF;IASI;;;AAGF;EAZF;IAaI;;;AAGF;EAhBF;IAiBI;;;;AAMN;EACE;;;AAIF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EANF;IAOI;IACA;IACA;;;AAIJ;EACE;EACA;;AAEA;EAJF;IAKI;;;AAIJ;EACE;EACA;EACA;EACA,OF/OY;EEgPZ;;AAEA;EAPF;IAQI;;;AAIJ;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAEA;EAJF;IAKI;IACA;;;;AAMN;EACE;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA,aF/RS;EEgST,OF5RS;EE6RT;;AAEA;EACE;;AAGF;EACE;EACA;;;AAMN;EACE,YFpSY;EEqSZ;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EANF;IAOI;IACA;IACA;;;AAIJ;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE,OFhWU;;AEoWd;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;;AAKJ;EACE;EACA,kBF3XgB;EE4XhB;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA,YFhZM;;AEmZR;EACE;EACA;EACA;;AAGF;EAxBF;IAyBI;IACA;;EAEA;IACE;IACA;;;;AAMN;EACE,YFxZY;;AE0ZZ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA,KFhbM;;AEkbN;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAGF;AAAA;EAEE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EA3BF;IA4BI;;;AAGF;EA/BF;IAgCI;;;;AAMR;EACE;EACA;;AAEA;EAJF;IAKI;IACA;IACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA,KFzeM;;AE2eN;EACE;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAGA;EAEE,OF9eI;;AEkfR;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,YF1gBS;EE2gBT;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AACA;EACE;;AAGF;EACE;EACA;EACA;;AAEA;EALF;IAMI;IACA;;;AAMR;EACE;EACA;EACA;;AAGF;EAEE;EACA;EACA;;AAGF;EACE;IAEE;;;;AAOV;EACE;;AAEA;EAHF;IAII;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEE,OF9lBI;;AEkmBR;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACE;;AAGF;EACE;EACA,cF3oBE;EE4oBF;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AACA;EACE;;AAGF;EACE;EACA;EACA;;AAMN;EACE;;;AAMR;EACE;EACA;EACA;EACA,YFzqBS;EE0qBT;EACA;EACA;EACA;EACA,OF1qBgB;EE2qBhB;;AAEA;EAZF;IAaI;;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA,YFlrBY;EEmrBZ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,KFzsBQ;;AE2sBR;EAjBF;IAkBI;;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EATF;IAUI;;;;AAKF;EACE;;AAGF;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEE;EACA;;AAGF;EApBF;IAqBI;;;;AAOJ;EACE;EACA;;AACA;EAHF;IAII;IACA;;;AAEF;EAPF;IAQI;IACA;;;;AAKJ;EACE;EACA;EACA,KFtxBQ;EEuxBR;EACA;EACA;;AAEA;EARF;IASI;IACA,KF7xBM;IE8xBN;IACA;IACA;;;AAIA;EACE;EACA;EACA;EACA;EACA;EACA;;AACA;EAPF;IAQI;;;AAGJ;EAZF;IAaI;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA,KF1zBM;;AE4zBN;EARF;IASI;IACA;IACA;IACA;IACA;IACA;IACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGA;EACE;;AAIF;EACE;EACA;EACA;;AAIF;AAAA;EAEE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;;AAMR;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EApBF;IAqBI;IACA;IACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EAlBF;IAmBI;IACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA,YFr5BU;EEs5BV;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EAjBF;IAkBI;IACA;IACA;IACA;;;AAEF;EAvBF;IAwBI;IACA;IACA;IACA;;;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EARF;IASI;IACA;IACA;IACA;IACA,SF18BM;;;AE68BR;EACE;;AAEA;EAHF;IAII;IACA;;EAEA;IACE;;EAGF;IACE;;;AAIN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAZF;IAaI;IACA;;;AAGF;EAjBF;IAkBI,cF/+BI;;;AEk/BR;EACE;;AAEA;EAHF;IAII;IACA;;;AAGJ;EACE;;AAEA;EAHF;IAII;IACA;;;;AAON;EACE;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;;AACA;EAVF;IAWI;IACA;IACA;;;AAGF;EACE;EACA;EACA;;AACA;EAJF;IAKI;IACA;;;;AAMN;EACE;EACA;EACA;;AAEA;EALF;IAMI;;;;AAIJ;EACE;EACA;EACA,KF/iCQ;EEgjCR;EACA;;AAEA;EAPF;IAQI;IACA;IACA;;;AAGF;EACE;EACA,OFpjCY;EEqjCZ;;AAGF;EACE;EACA;EACA;EACA;EACA,OF7jCY;EE8jCZ;EACA,aFpkCS;EEqkCT;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA,cFzkCY;EE0kCZ;;;AAKN;EACE;EACA;EACA;EACA;;AAEA;EANF;IAOI;IACA;IACA;;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAGF;EACE;;AAIJ;EACE;EACA;EACA;EACA,KFvoCM;EEwoCN;;AAGF;EACE;;AAIF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE,OFjpCU;EEkpCV;EACA;;AAEA;EACE,OFrpCU;;AE0pChB;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;;AAIJ;EACE;EACA;EACA;EACA;;AAEA;EANF;IAOI;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAVF;IAWI;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EAGA,OF3sCY;EE4sCZ;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAEA;EACE,kBFvtCQ;EEwtCR;EACA;EACA;;AACA;EACE;;AAIJ;EACE,kBFjuCQ;EEkuCR;EACA,cFnuCQ;EEouCR;;AAEA;EACE;EACA;EACA;;AAKN;EACE;;AAIF;EACE;EACA;EACA;;AAEA;EACE;EACA,OF1vCQ;EE2vCR;EACA;;AAIJ;EA9DF;IA+DI;IACA;IACA;IACA;;;AAKJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EAfF;IAgBI;;;;AAMN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EAEA;;AAEA;EACE;EACA;EACA;;;AAOA;EADF;IAEI%22,%22file%22:%22main.css%22%7D */
