@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bs-heading-font-family: 'Montserrat', sans-serif;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  /* dla iOS */
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #090909;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  background-color: #F8F9FA;
}

h1 {
  font-size: 2.6rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

a {
  font-size: 1.8rem;
}

h1, h2, h3, h4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.4rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  h3 {
    font-size: 1.8rem;
  }
}
.btn-outline {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #2168F3;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1.8rem;
}
.btn-outline:hover, .btn-outline:active {
  background-color: #ffffff !important;
  color: #2168F3 !important;
}
.btn-outline:focus-visible {
  background-color: #F7D000 !important;
  outline: none;
  color: black;
}

.btn-primary-custom {
  background-color: #2168F3;
  border-color: #2168F3;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}
.btn-primary-custom:hover, .btn-primary-custom:focus {
  background-color: #2168F3 !important;
  outline: 2px solid #2168F3;
  color: #ffffff;
  border-color: black;
  border: 2px solid;
}
.btn-primary-custom:focus-visible {
  background-color: #077900 !important;
  outline: none;
  color: #ffffff;
}

.btn-accent {
  background-color: #F7D000;
  border-color: #F7D000;
  color: #212529;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 0.75rem 1.5rem;
}
.btn-accent:hover, .btn-accent:focus {
  background-color: rgb(255, 221.5263157895, 43) !important;
  color: #212529 !important;
}
.btn-accent:focus-visible {
  outline: 2px solid #2168F3;
  outline-offset: 2px;
  border-radius: 4px;
}

.image-frame::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4CAF50 0%, rgb(127.7589641434, 199.7410358566, 130.6673306773) 100%);
  z-index: 1;
}

.feature-card {
  background: #fff;
  border: none;
  border-radius: 1rem;
  padding: 3rem 2rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-card .icon-box {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(64, 64, 64, 0.248);
}
.feature-card .icon-box.icon-blue {
  background: rgba(33, 104, 243, 0.1);
  color: #2168F3;
}
.feature-card .icon-box.icon-green {
  background: rgba(7, 121, 0, 0.1);
  color: #077900;
}
.feature-card .icon-box.icon-yellow {
  background: rgba(247, 208, 0, 0.2);
  color: rgb(145, 122.1052631579, 0);
}

.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}
.wave-divider.wave-top {
  transform: rotate(180deg);
}

header {
  padding: 1.5rem 0;
}
header .navbar-brand {
  font-weight: 700;
  color: #2168F3 !important;
  font-size: 1.4rem;
}
header .navbar-nav {
  padding-top: 1rem;
}
header .navbar-nav .nav-link {
  color: #212529 !important;
  font-weight: 500;
  padding: 1rem !important;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
header .navbar-nav .nav-link:hover {
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-color: #2168F3 !important;
}
header .navbar-nav .nav-link:focus-visible {
  outline: 2px solid #2168F3;
  outline-offset: 2px;
  border-radius: 4px;
}

.footer .logo-title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.footer .logo-title .header {
  margin-left: 2rem;
  text-transform: uppercase;
  color: #F7D000;
}
.footer ul li a {
  text-decoration: none;
  color: #ffffff;
}
.footer ul li a:hover {
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-color: #F7D000 !important;
}

@media (min-width: 1024px) {
  header .navbar-brand {
    margin-left: 1rem;
    font-size: 1.6rem;
  }
  header .navbar-nav {
    padding-top: 0;
  }
  .footer .logo-title {
    justify-content: left;
  }
}
.hero-section {
  min-height: 70vh;
  background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(65, 131, 71, 0.8)), url("../img/boccia-hero.webp");
  background-size: cover;
  background-position: c;
  color: #ffffff;
  padding: 8rem 0;
  text-align: center;
}
.hero-section .hero-col-img {
  margin-bottom: 2rem;
}
.hero-section .slogan {
  color: #ffffff;
  font-size: 4.4rem !important;
  font-weight: 800 !important;
  margin-bottom: 1.5rem !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
}
.hero-section p {
  color: #ffffff;
  font-size: 1.8rem !important;
  font-weight: 600;
  margin: 0 auto 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (min-width: 1024px) {
  .hero-container {
    max-width: 1100px;
    margin: auto;
  }
}
@media (min-width: 1200px) {
  .hero-container {
    max-width: 1200px;
    margin: auto;
  }
}
.motivation .header {
  font-size: 3rem !important;
  color: #2168F3;
}
.motivation h2 {
  font-size: 1.8rem !important;
  line-height: 1.3;
}

.goal .title {
  font-size: 3.4rem;
  color: #077900;
}
.goal-check-list {
  list-style: none;
  padding-left: 0;
}
.goal-check-list li {
  position: relative;
  padding-left: 2.6rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.goal-check-list li::before {
  content: "\f26a"; /* kod ikony bi-check-circle-fill */
  font-family: "bootstrap-icons";
  color: #077900;
  position: absolute;
  left: 0;
  top: 0.1rem;
  margin-right: 0.25rem;
  font-size: 1.8rem;
}
.goal-check-list li:last-child {
  margin-bottom: 0;
}

.club-mision .badge {
  font-size: 1.6rem;
  color: #2196F3 !important;
  border-radius: 50rem;
  background-color: rgba(153, 193, 255, 0.21);
  padding: 1rem 2rem;
  margin-bottom: 3rem;
}
.club-mision .title {
  font-size: 3rem;
  font-weight: 700;
  margin: 2rem 0;
}
.club-mision .subtitle {
  max-width: 780px;
  text-align: center;
}
.club-mision .bi {
  font-size: 3rem !important;
}

.health-benefits .title {
  font-size: 3.2rem;
}
.health-benefits .check-list {
  list-style: none;
  padding-left: 0;
}
.health-benefits .check-list li {
  position: relative;
  padding-left: 2.6rem;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.health-benefits .check-list li::before {
  content: "\f26a"; /* kod ikony bi-check-circle-fill */
  font-family: "bootstrap-icons";
  color: #077900;
  position: absolute;
  left: 0;
  top: 0.1rem;
  margin-right: 0.25rem;
  font-size: 1.8rem;
}
.health-benefits .check-list li:last-child {
  margin-bottom: 0;
}
.health-benefits .img-wrap {
  position: relative;
  width: 70%;
  height: 70%;
  margin: 20px auto 0 auto;
}
.health-benefits .img-wrap::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 20px;
  right: -20px;
  bottom: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4CAF50 0%, #7fc782 100%);
  z-index: 1;
}
.health-benefits .img-wrap img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
}

.mini-baner .image-baner {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(65, 131, 71, 0.8)), url("../img/runway.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.mini-baner .image-baner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1rem 2rem 2rem;
  backdrop-filter: blur(2px);
}
.mini-baner .image-baner__content-text {
  font-size: 2rem;
  color: white;
}
.mini-baner .image-baner__content-author {
  font-size: 1.6rem;
  color: white;
  font-style: italic;
}

@media (min-width: 1400px) {
  .mini-baner .image-baner__content-text {
    font-size: 2.6rem;
  }
  .mini-baner .image-baner__content-author {
    font-size: 2rem;
  }
}
.hero-about {
  position: relative;
  min-height: 40vh;
  background: linear-gradient(135deg, #2168F3 0%, rgb(42.6769230769, 110.5820512821, 243.5230769231) 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-about .wave-divider {
  position: absolute;
  left: 0;
  bottom: -1px; /* usuwa ewentualną szczelinę */
  width: 100%;
  line-height: 0;
}
.hero-about .wave-divider svg {
  display: block;
  width: 100%;
  height: 50px; /* reguluj wysokość fali */
}
.hero-about .slogan {
  font-size: 3.6rem;
}

.our-mission .header {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
}
.our-mission span {
  font-weight: bold;
  font-size: 1.8rem;
}
.our-mission .icon-short-text {
  display: grid;
  grid-template-columns: 5rem 1fr;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.our-mission .icon-box {
  width: 80px;
  height: 80px;
  font-size: 2.6rem;
  color: #2168F3;
  flex-shrink: 0;
}
.our-mission .img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 20px auto 0 auto;
}
.our-mission .img-wrap::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #F7D000 0%, rgb(255, 225.5526315789, 68.5) 100%);
  z-index: 1;
}
.our-mission .img-wrap img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
}

.team .header {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.team .team-card {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.team .team-card:hover {
  transform: translateY(-5px);
}
.team .team-card-user {
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgb(248, 249, 250) !important;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
}
.team .team-card-user i {
  font-size: 40px;
  color: rgb(108, 117, 125);
}
.team .team-card .name {
  font-weight: bold;
  margin-bottom: 0;
}
.team .team-card .function {
  font-weight: bold;
  color: #2168F3;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.team .team-card .team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid rgba(33, 104, 243, 0.1);
}

.cta {
  background: linear-gradient(135deg, #2168F3 0%, rgb(42.6769230769, 110.5820512821, 243.5230769231) 100%);
  color: #ffffff;
}

@media (min-width: 1200px) {
  .our-mission .header {
    font-size: 3rem;
  }
  .team .header {
    font-size: 3.6rem;
    margin-bottom: 1rem;
  }
}
.hero-boccia {
  position: relative;
  min-height: 60vh;
  background: linear-gradient(135deg, #2168F3 0%, rgb(42.6769230769, 110.5820512821, 243.5230769231) 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-boccia .wave-divider {
  position: absolute;
  left: 0;
  bottom: -1px; /* usuwa ewentualną szczelinę */
  width: 100%;
  line-height: 0;
}
.hero-boccia .wave-divider svg {
  display: block;
  width: 100%;
  height: 50px; /* reguluj wysokość fali */
}
.hero-boccia .badge {
  font-size: 1.2rem;
  color: #090909 !important;
  border-radius: 50rem;
  background-color: #FFC107;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
}
.hero-boccia .header {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
}
.hero-boccia i {
  opacity: 0.5;
  font-size: 15rem;
}

.section-boccia .img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto 0 auto;
}
.section-boccia .img-wrap::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 20px;
  bottom: 20px;
  left: -20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2168F3 0%, rgb(105.5769230769, 153.3653846154, 246.9230769231) 100%);
  z-index: 1;
}
.section-boccia .img-wrap img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
}
.section-boccia .header {
  font-size: 2rem;
  line-height: 1.5;
}
.section-boccia .check-list {
  list-style: none;
  padding-left: 0;
}
.section-boccia .check-list li {
  position: relative;
  padding-left: 2.6rem;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.section-boccia .check-list li::before {
  content: "\f26a"; /* kod ikony bi-check-circle-fill */
  font-family: "bootstrap-icons";
  color: #077900;
  position: absolute;
  left: 0;
  top: 0.1rem;
  margin-right: 0.25rem;
  font-size: 1.8rem;
}
.section-boccia .check-list li:last-child {
  margin-bottom: 0;
}

.equipment-boccia .header {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.equipment-boccia .subheader {
  max-width: 630px;
  margin: auto;
}
.equipment-boccia .icon-box {
  margin-bottom: 2rem;
}
.equipment-boccia .icon-box i {
  font-size: 3rem;
}
.equipment-boccia .title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.give-boccia .header {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
.give-boccia .feature-card {
  background-color: #f8f9fa !important;
  height: 100%;
  box-shadow: none;
  border: 1px solid #dee2e6;
}
.give-boccia .feature-card i {
  color: #2168F3;
  font-size: 4rem;
  margin-bottom: 2rem;
}
.give-boccia .feature-card .title {
  font-size: 2rem;
  font-weight: 700;
}

.training-boccia {
  background: linear-gradient(135deg, #2168F3 0%, rgb(42.6769230769, 110.5820512821, 243.5230769231) 100%);
  color: #ffffff;
}
.training-boccia .header {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.training-boccia .subheader {
  margin-bottom: 3rem;
}
.training-boccia .feature-card {
  background-color: transparent;
  padding: 1rem;
  border: 1px solid #dee2e6;
  border-color: rgb(248, 249, 250);
}
.training-boccia .feature-card i {
  font-size: 4rem;
}
.training-boccia .feature-card .title {
  font-size: 2rem;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .section-boccia .header {
    font-size: 3rem;
    line-height: 1.5;
  }
  .equipment-boccia .header {
    font-size: 3.6rem;
  }
  .give-boccia .header {
    font-size: 3.6rem;
  }
  .training-boccia .header {
    font-size: 3.6rem;
  }
}
@media (min-width: 1400px) {
  .hero-boccia .header {
    font-size: 5rem;
  }
  .hero-boccia i {
    opacity: 0.5;
    font-size: 25rem;
  }
}
.hero-framerunning {
  position: relative;
  min-height: 60vh;
  background: linear-gradient(135deg, #077900 0%, rgb(7.5900826446, 131.2, 0) 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-framerunning .wave-divider {
  position: absolute;
  left: 0;
  bottom: -1px; /* usuwa ewentualną szczelinę */
  width: 100%;
  line-height: 0;
}
.hero-framerunning .wave-divider svg {
  display: block;
  width: 100%;
  height: 50px; /* reguluj wysokość fali */
}
.hero-framerunning .badge {
  font-size: 1.2rem;
  color: #090909 !important;
  border-radius: 50rem;
  background-color: #FFC107;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
}
.hero-framerunning .header {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
}
.hero-framerunning i {
  opacity: 0.5;
  font-size: 25rem;
}

.section-framerunning .space-between-col {
  --bs-gutter-x:4rem;
}
.section-framerunning .col-img {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-framerunning .img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto 0 auto;
}
.section-framerunning .img-wrap::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -20px;
  bottom: -20px;
  left: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #077900 0%, rgb(11.4256198347, 197.5, 0) 100%);
  z-index: 1;
}
.section-framerunning .img-wrap img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
}
.section-framerunning .header {
  color: #077900;
  font-size: 2.4rem;
  line-height: 1.5;
}
.section-framerunning .card-info {
  background-color: #f8f9fa !important;
  padding: 2.5rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}
.section-framerunning .card-info .icon-title-desc {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
.section-framerunning .card-info .icon-title-desc i {
  font-size: 2rem;
  color: #077900;
}
.section-framerunning .card-info .icon-title-desc .title-desc .title {
  font-size: 1.8rem;
  font-weight: 700;
}
.section-framerunning .check-list {
  list-style: none;
  padding-left: 0;
}
.section-framerunning .check-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.section-framerunning .check-list li::before {
  content: "\f26a";
  font-family: "bootstrap-icons";
  color: #077900;
  font-size: 1.8rem;
  margin-right: 0.75rem;
}
.section-framerunning .check-list li:last-child {
  margin-bottom: 0;
}

.profit-framerunning .header {
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.profit-framerunning .feature-card {
  padding: 3em 2em;
}
.profit-framerunning .feature-card .icon-box {
  width: 7rem;
  height: 7rem;
}
.profit-framerunning .feature-card .icon-box i {
  font-size: 4rem;
}
.profit-framerunning .feature-card .title {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.training-framerunning {
  background-color: #077900;
  color: #ffffff;
}
.training-framerunning .header {
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1.3;
}
.training-framerunning .feature-card {
  background-color: transparent;
  padding: 1rem;
  border: 1px solid #dee2e6;
  border-color: rgb(248, 249, 250);
}
.training-framerunning .feature-card i {
  font-size: 4rem;
}
.training-framerunning .feature-card .title {
  font-size: 1.8rem;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .section-framerunning .header {
    font-size: 4rem;
    line-height: 1.2;
  }
  .section-framerunning .check-list {
    list-style: none;
    padding-left: 0;
  }
  .section-framerunning .check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }
  .section-framerunning .check-list li::before {
    content: "\f26a";
    font-family: "bootstrap-icons";
    color: #077900;
    font-size: 1.8rem;
    margin-right: 0.75rem;
  }
  .section-framerunning .check-list li:last-child {
    margin-bottom: 0;
  }
  .section-framerunning .check-list li::before {
    font-size: 2.2rem;
  }
  .section-framerunning .card-info .icon-title-desc i {
    font-size: 3rem;
    color: #077900;
  }
}
.hero-home {
  position: relative;
  min-height: 40vh;
  background: linear-gradient(135deg, #F7D000 0%, rgb(255, 215.0842105263, 2.2) 100%);
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-home .wave-divider {
  position: absolute;
  left: 0;
  bottom: -1px; /* usuwa ewentualną szczelinę */
  width: 100%;
  line-height: 0;
}
.hero-home .wave-divider svg {
  display: block;
  width: 100%;
  height: 50px; /* reguluj wysokość fali */
}
.hero-home .slogan {
  font-size: 3.6rem;
}

.news-card {
  height: 100%;
  border-radius: 1rem;
  border: 0;
  box-shadow: 0 0.125rem 0.25rem 2.5px rgba(0, 0, 0, 0.075);
}
.news-card .img-badge {
  position: relative;
}
.news-card .img-badge .img {
  width: 100%;
  vertical-align: middle;
}
.news-card .img-badge .custom-badge {
  position: absolute;
  background-color: #2168F3;
  margin: 2rem;
  top: 0;
  right: 0;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  color: #ffffff;
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  vertical-align: baseline;
  border-radius: 0.3rem;
}
.news-card .news-card-body {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}
.news-card .news-card-body .data {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}
.news-card .news-card-body .data i {
  color: #2168F3;
}
.news-card .news-card-body .news-card-title {
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0.5rem 0;
}
.news-card .news-card-body .news-card-title a {
  text-decoration: none;
  color: #090909;
}
.news-card .news-card-body .news-card-title a:hover {
  text-decoration: underline;
}

.hero-contact {
  position: relative;
  min-height: 40vh;
  background: linear-gradient(135deg, #2168F3 0%, rgb(42.6769230769, 110.5820512821, 243.5230769231) 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-contact .wave-divider {
  position: absolute;
  left: 0;
  bottom: -1px; /* usuwa ewentualną szczelinę */
  width: 100%;
  line-height: 0;
}
.hero-contact .wave-divider svg {
  display: block;
  width: 100%;
  height: 50px; /* reguluj wysokość fali */
}
.hero-contact .slogan {
  font-size: 3rem;
}

.contact .header {
  font-size: 2.6rem;
  font-weight: 700;
}
.contact .contact-card {
  text-align: center;
  background: white;
  padding: 4rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact .contact-card .contact-icon {
  width: 8rem;
  height: 8rem;
  background-color: rgb(248, 249, 250) !important;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.contact .contact-card .contact-icon i {
  color: #2168F3;
  font-size: 3rem;
}
.contact .contact-card .contact-link, .contact .contact-card .contact-local {
  text-decoration: none;
  font-size: 1.8rem;
}

.main-content {
  padding: 2rem 0;
}

.single-content {
  background-color: #F8F9FA;
}

.single-bradcrumb {
  background: rgba(255, 255, 255, 0.8);
  padding: 1.2rem 2.6rem;
  border-radius: 50rem;
  display: inline-flex;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.single-bradcrumb a {
  text-decoration: none;
  font-weight: 500;
  color: #2168F3;
}
.single-bradcrumb a:hover {
  text-decoration: underline;
}

.single-article {
  background-color: #ffffff;
  margin: 2rem 0;
  padding: 1rem 2rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  border-radius: 2rem;
}
.single-article .header {
  padding-bottom: 2rem;
}
.single-article .header .data i {
  color: #2168F3;
}
.single-article .header .header-badge {
  margin-bottom: 2rem;
}
.single-article .header .header-badge .custom-badge {
  background-color: #2168F3;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  color: #ffffff;
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 1rem;
}
.single-article .img-cover {
  margin-bottom: 3rem;
  position: relative;
}
.single-article .img-cover .img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.nav-prev-next {
  display: flex;
  justify-content: space-between;
  margin-top: 2.6rem;
}
.nav-prev-next a {
  font-size: 1.6rem;
  text-decoration: none;
  font-weight: 700;
  color: #2168F3;
}

.sidebar-content {
  position: sticky;
  z-index: 1000;
  margin: 2rem 0;
}
.sidebar-content .custom-card {
  background: linear-gradient(135deg, #2168F3 0%, rgb(42.6769230769, 110.5820512821, 243.5230769231) 100%);
  border-radius: 2rem;
  margin-bottom: 4rem;
}
.sidebar-content .custom-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
  color: #ffffff;
}
.sidebar-content .custom-card-body i {
  font-size: 5rem;
}
.sidebar-content .custom-card-body .header {
  font-size: 2.6rem;
  font-weight: 700;
}
.sidebar-content .custom-card-body .subheader {
  text-align: center;
  font-size: 1.6rem;
}
.sidebar-content .custom-card-body .btn-accent {
  font-size: 1.6rem;
}
.sidebar-content .siderbar-news-card {
  background-color: #ffffff;
  padding: 2rem;
}
.sidebar-content .siderbar-news-card .card-header {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.sidebar-content .siderbar-news-card .card-img-desc {
  display: grid;
  grid-template-columns: 90px 1fr;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  padding: 1rem 0;
}
.sidebar-content .siderbar-news-card .card-img-desc .img {
  max-width: 80px;
  max-height: 100%;
}
.sidebar-content .siderbar-news-card .card-img-desc .title-date a {
  text-decoration: none;
  color: inherit;
}
.sidebar-content .siderbar-news-card .card-img-desc .title-date a:hover {
  text-decoration: underline;
}
.sidebar-content .siderbar-news-card .card-img-desc .title-date .title {
  margin: 0 0 0.5rem 0;
  padding: 0;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
}
.sidebar-content .siderbar-news-card .card-img-desc .title-date i {
  font-size: 1.4rem;
  margin-right: 0.5rem;
  color: #2168F3;
}
.sidebar-content .siderbar-news-card .card-img-desc .title-date .date {
  margin: 0;
  font-size: 1.4rem;
}

.skip-link {
  position: absolute;
  top: -100px;
  /* Styled to match the default WordPress screen reader text */
  background-color: #f1f1f1;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  color: #21759b;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  height: auto;
  left: 6px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar */
  transition: top 0.75s ease-out;
}

.skip-link:focus {
  color: #21759b;
  top: 7px;
  transition: top 0s;
}

.section-padding {
  padding: 10rem 0;
}

.section-padding-top {
  padding: 5rem 0 10rem 0;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
}/*# sourceMappingURL=style.css.map */