*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 40;
  background: #111;
  color: #fff;
  padding: 8px 12px;
}

.site-header {
  position: relative;
  z-index: 30;
  min-height: 116px;
}

.header-bar {
  margin-top: 50px;
  min-height: 66px;
  background-image: linear-gradient(90deg, #ffabab 2%, #ff3131 29%);
}

.header-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 50px;
  padding: 8px 0 8px 200px;
}

.logo {
  position: absolute;
  left: max(24px, calc((100% - 1140px) / 2));
  top: 0;
  z-index: 4;
  width: 170px;
}

.logo img {
  display: block;
  width: 170px;
  height: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop > li {
  position: relative;
}

.nav-desktop a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
}

.nav-desktop .caret {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

.nav-desktop .sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #ff3131;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  z-index: 20;
}

.nav-desktop .sub a {
  display: block;
  padding: 10px 16px;
}

.nav-desktop .sub a:hover {
  background: #ff4242;
}

.nav-desktop > li:hover > .sub,
.nav-desktop > li:focus-within > .sub {
  display: block;
}

.header-social {
  display: flex;
  gap: 5px;
}

.header-social a,
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.header-social a {
  background: #fff;
  color: #ff3131;
}

.footer-social a {
  background: #ff3131;
  color: #fff;
}

.header-social svg,
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  padding: 8px;
}

.mobile-panel {
  background: #ff3131;
}

.mobile-panel ul {
  list-style: none;
  margin: 0;
  padding: 8px 20px 20px;
}

.mobile-panel a {
  color: #fff;
  display: block;
  padding: 10px 0;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

.mobile-panel .sub a {
  padding-left: 16px;
  font-size: 13px;
}

.hero-slider {
  position: relative;
  height: 550px;
  overflow: hidden;
  background: #000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
}

.hero-slide.is-active .hero-slide-bg {
  animation: kenburns 12s ease-out forwards;
}

.hero-slide-bg.contain {
  background-size: auto;
  background-color: #b90000;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.hero-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 10%;
  max-width: 70%;
  color: #fff;
}

.hero-copy h2 {
  margin: 0 0 7px;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.15;
}

.hero-copy p {
  margin: 0;
  font-size: 34px;
  font-weight: 400;
  line-height: 35px;
}

.hero-copy .red {
  color: #ff3131;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
  line-height: 1;
}

.slider-btn.prev { left: 8px; }
.slider-btn.next { right: 8px; }

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
  cursor: pointer;
}

.slider-dots button.is-active {
  background: #fff;
}

@keyframes kenburns {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.news-home {
  padding: 50px 0;
}

.section-kicker {
  text-align: center;
  color: #ff3131;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 28px;
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 30px;
  row-gap: 35px;
}

.news-card {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  min-height: 146px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-card h3 {
  margin: 0;
  padding: 22px 20px 16px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: #54595f;
}

.news-card h3 a {
  color: inherit;
}

.news-card .meta {
  border-top: 1px solid #eee;
  padding: 12px 20px 16px;
  color: #9a9a9a;
  font-size: 13px;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff3131;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-red:hover {
  transform: scale(1.04);
}

.center-cta {
  text-align: center;
  margin-top: 28px;
}

.about-home {
  background: #eeeeee;
  padding: 5% 0 50px;
}

.about-home h2 {
  text-align: center;
  color: #ff3131;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 28px;
  line-height: 1.35;
}

.about-grid {
  background: #eeeeee;
  padding: 0 5% 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.about-grid img {
  display: block;
  width: 100%;
  box-shadow: 0 0 19px rgba(0, 0, 0, 0.5);
}

.about-grid .copy {
  color: #7a7a7a;
  font-size: 16px;
}

.about-grid .copy p {
  margin: 0 0 16px;
}

.flip-wrap {
  max-width: 960px;
  margin: 50px auto 0;
  padding: 0 4%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.flip-wrap.second {
  margin: 20px auto 0;
}

.flip {
  min-height: 220px;
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  min-height: 220px;
  border-radius: 23px;
}

.flip-face {
  position: absolute;
  inset: 0;
  border-radius: 23px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 16px;
  text-align: center;
  color: #fff;
  backface-visibility: hidden;
  transition: opacity 0.45s ease;
}

.flip-front {
  background: #ff3131;
  opacity: 1;
}

.flip-back {
  background: #747474;
  opacity: 0;
}

.flip:hover .flip-front,
.flip:focus-within .flip-front {
  opacity: 0;
}

.flip:hover .flip-back,
.flip:focus-within .flip-back {
  opacity: 1;
}

.flip-face h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 26px;
}

.flip-face svg {
  width: 36px;
  height: 36px;
  fill: #fff;
}

.flip-back .btn-ghost {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.partners {
  position: relative;
  min-height: 364px;
  display: grid;
  place-items: center;
  background: #000 center / cover no-repeat;
  background-attachment: fixed;
  margin-bottom: 50px;
  color: #fff;
  text-align: center;
}

.partners::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.41);
}

.partners-inner {
  position: relative;
  z-index: 1;
}

.partners h2 {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}

.loop-carousel {
  position: relative;
  max-width: 1140px;
  width: min(92%, 1140px);
  margin: 0 auto 36px;
}

.carousel-frame {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  container-type: inline-size;
}

.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 21px;
  will-change: transform;
}

.photo-carousel .carousel-track {
  gap: 10px;
}

.notice-carousel .carousel-frame {
  padding: 0 36px;
}

.notice-card {
  flex: 0 0 auto;
  width: calc((100cqi - 63px) / 4);
  background: #efefef;
  border-top: 2px solid #fefe00;
  min-height: 280px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.notice-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.notice-card h3 {
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #54595f;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.35;
}

.notice-card h3 a {
  color: inherit;
}

.photo-slide {
  flex: 0 0 auto;
  width: calc((100cqi - 10px) / 2);
  display: block;
}

.photo-slide img {
  width: 100%;
  height: 273px;
  object-fit: cover;
  display: block;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 3;
  line-height: 1;
  padding: 0 6px;
  user-select: none;
}

.notice-carousel .carousel-nav {
  color: #cfcfcf;
  font-size: 41px;
}

.notice-carousel .carousel-nav.prev { left: 0; }
.notice-carousel .carousel-nav.next { right: 0; }

.photo-carousel .carousel-nav {
  color: #fff;
  font-size: 52px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.photo-carousel .carousel-nav.prev { left: 8px; }
.photo-carousel .carousel-nav.next { right: 8px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #cfcfcf;
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: #7a7a7a;
}

.page-title {
  background: #f3f3f3;
  padding: 28px 0 18px;
  border-bottom: 4px solid #fefe00;
}

.page-title h1 {
  margin: 0;
  color: #ff3131;
  font-size: 32px;
  font-weight: 600;
}

.page-title .rule {
  width: 42px;
  height: 3px;
  background: #111;
  margin-top: 14px;
}

.page-body {
  padding: 40px 0 80px;
}

.prose {
  color: #7a7a7a;
  max-width: 960px;
}

.prose p,
.prose li {
  margin: 0 0 14px;
}

.prose ol {
  padding-left: 22px;
}

.prose h2,
.prose h3,
.prose h5 {
  color: #ff3131;
  font-weight: 600;
}

.page-heading {
  color: #ff3131;
  font-size: 22px;
  margin: 0 0 24px;
}

.historia-box {
  background: #f3f3f3;
  padding: 5% 5% 4%;
  margin-top: 36px;
}

.historia-box > h2 {
  text-align: center;
  color: #ff3131;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 24px;
}

.historia-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.historia-split img {
  width: 100%;
  display: block;
}

.icon-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.icon-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e5e5;
}

.icon-list .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #111;
  margin-top: 6px;
}

.icon-list h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
}

.icon-list p {
  margin: 0;
  color: #7a7a7a;
  font-size: 14px;
}

.tablepress {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 36px;
  font-size: 14px;
}

.tablepress th {
  background: #d7eaf6;
  text-align: left;
  padding: 10px 12px;
}

.tablepress td {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
}

.tablepress tbody tr:nth-child(even) {
  background: #f7f7f7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
}

.gallery-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 8px;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  display: block;
  border: 3px solid #e11d73;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.gallery-grid.cols-3 .gallery-item img {
  border: 3px solid #efefef;
  border-radius: 15px;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.gallery-item figcaption {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 10px;
  color: #444;
}

.notice-box {
  max-width: 760px;
  margin: 40px auto;
  background: #f3f3f3;
  padding: 28px 32px;
  text-align: center;
  color: #7a7a7a;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-box {
  background: #f3f3f3;
  padding: 28px 20px;
  text-align: center;
}

.contact-box h2 {
  color: #ff3131;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.contact-box a,
.contact-box li {
  color: #666;
}

.contact-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-box li {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 8px 0;
}

.fale-page {
  padding-bottom: 40px;
}

.fale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 10px auto 48px;
  max-width: 900px;
}

.fale-col {
  text-align: center;
}

.fale-col h2 {
  color: #ff3131;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.fale-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fale-list li {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
  color: #54595f;
  font-size: 15px;
  text-align: left;
}

.fale-list a {
  color: #54595f;
}

.fale-ico {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 3px;
}

.fale-ico svg {
  width: 16px;
  height: 16px;
  fill: #54595f;
}

.docs-page .docs-kicker {
  color: #ff3131;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
}

.docs-intro {
  text-align: center;
  color: #7a7a7a;
  max-width: 640px;
  margin: 28px auto 16px;
}

.docs-figure {
  margin: 36px auto 0;
  max-width: 720px;
  text-align: center;
}

.docs-figure img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.docs-figure figcaption {
  margin-top: 12px;
  font-size: 13px;
  font-style: italic;
  color: #7a7a7a;
}

.news-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 36px 0 8px;
  font-size: 15px;
}

.news-pagination .page-numbers {
  min-width: 28px;
  text-align: center;
  color: #54595f;
  padding: 4px 8px;
}

.news-pagination .page-numbers.current {
  color: #ff3131;
  font-weight: 600;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.news-list article {
  padding: 8px 0 18px;
  border-bottom: 1px solid #ff3131;
  margin-bottom: 18px;
}

.news-list h2 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: #54595f;
}

.news-list .meta {
  color: #9a9a9a;
  font-size: 13px;
  margin-bottom: 8px;
}

.news-list .more {
  color: #ff3131;
  font-size: 14px;
}

.post-date {
  color: #888;
  font-size: 14px;
  margin-bottom: 18px;
}

.post-content img {
  max-width: 100%;
  height: auto;
}

.post-content a {
  color: #ff3131;
}

.post-content .wp-caption {
  max-width: 100%;
  margin: 0 0 18px;
}

.post-content .wp-caption-text {
  font-size: 13px;
  color: #888;
  margin-top: 8px;
}

.prose a {
  color: #ff3131;
}

.assoc-form {
  display: grid;
  gap: 12px;
  max-width: 640px;
  margin: 20px auto 28px;
}

.assoc-form input,
.assoc-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 12px 14px;
  font-size: 15px;
}

.assoc-form button {
  width: 20%;
  min-width: 120px;
}

.site-footer {
  position: relative;
  margin-top: 40px;
}

.socio-bar {
  position: relative;
  z-index: 2;
  width: min(92%, 1140px);
  margin: 0 auto -90px;
  background: #696969;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10%;
  padding: 28px 3%;
}

.socio-bar h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 400;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 25px;
}

.footer-main {
  background: #eeeeee;
  padding: 120px 0 24px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 18% 27% 27% 28%;
  gap: 20px;
  align-items: start;
}

.footer-cols h3 {
  color: #ff3131;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.footer-cols p,
.footer-cols li,
.footer-cols a {
  font-size: 15px;
  color: #000;
}

.footer-cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-cols li {
  display: flex;
  gap: 8px;
  margin: 6px 0;
  align-items: flex-start;
}

.footer-address {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.footer-social {
  margin-top: 12px;
}

.footer-logo {
  max-width: 150px;
}

.footer-cta {
  text-align: center;
  padding: 8px 0 40px;
  background: #eeeeee;
}

.footer-cta h2 {
  color: #ff3131;
  font-size: 25px;
  font-weight: 600;
  margin: 0 0 8px;
}

.footer-cta p {
  color: #4d4d4d;
  font-weight: 600;
  margin: 0;
}

.copy-bar {
  background: #ff3131;
  min-height: 50px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 8px 16px;
}

.wa-float {
  position: fixed;
  right: 25px;
  bottom: 67px;
  z-index: 40;
}

.wa-float-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  place-items: center;
  z-index: 80;
  padding: 24px;
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 88vh;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}

.lightbox-close {
  top: 12px;
  right: 20px;
}

.lightbox-nav.prev { left: 12px; }
.lightbox-nav.next { right: 12px; }

.hp {
  position: absolute;
  left: -9999px;
}

.form-feedback {
  min-height: 1.4em;
}

.help-band {
  background: #f3f3f3;
  padding: 36px 20px 32px;
  text-align: center;
  margin: 48px auto 0;
  width: min(92%, 1140px);
}

.help-band h2 {
  color: #333;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 22px;
}

.help-band .row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.help-btn {
  min-width: 220px;
  gap: 10px;
  font-size: 16px;
  padding: 16px 22px;
  text-transform: none;
}

@media (max-width: 1024px) {
  .header-inner {
    padding-left: 180px;
    gap: 16px;
  }
  .nav-desktop { gap: 10px; }
  .nav-desktop a { font-size: 12px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .notice-card { width: calc((100cqi - 21px) / 2); }
  .footer-cols { grid-template-columns: 1fr 1fr 1fr; }
  .footer-cols .logo-col { grid-column: 1 / -1; text-align: center; }
}

@media (max-width: 767px) {
  .header-bar {
    margin-top: 0;
    min-height: 72px;
  }
  .header-inner {
    justify-content: flex-end;
    padding: 8px 12px;
  }
  .logo {
    position: static;
    width: auto;
    margin: 0 auto;
  }
  .logo img { width: 92px; }
  .header-top {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nav-desktop,
  .header-social { display: none; }
  .nav-toggle { display: block; }
  .hero-slider { height: 302px; }
  .hero-copy { max-width: 80%; padding-left: 8%; }
  .hero-copy h2 { font-size: 20px; }
  .hero-copy p { font-size: 12px; line-height: 2.1em; }
  .news-cards,
  .about-grid,
  .flip-wrap,
  .historia-split,
  .contact-grid,
  .fale-grid {
    grid-template-columns: 1fr;
  }
  .notice-carousel .carousel-frame { padding: 0 28px; }
  .notice-card { width: 100cqi; }
  .photo-slide { width: 100cqi; }
  .photo-slide img { height: 180px; }
  .socio-bar {
    flex-direction: column;
    margin-bottom: 0;
    gap: 16px;
    text-align: center;
  }
  .socio-bar h2 { font-size: 22px; }
  .btn-wa { font-size: 16px; padding: 16px; }
  .footer-main { padding-top: 40px; }
  .footer-cols { grid-template-columns: 1fr; text-align: center; }
  .footer-address,
  .footer-cols li { justify-content: center; }
  .footer-logo { margin-inline: auto; }
  .assoc-form button { width: 100%; }
  .page-title h1 { font-size: 26px; }
  .partners { background-attachment: scroll; }
}
