@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;800&display=swap");
:root {
  --gap: 1.5rem;
  --color-brand: #158936;
  --color-brand-alternate: #3b4e9a;
  --color-dark: #070c22;
  --header-height: 100px;
  --header-padding: .5rem;
}

body {
  font: 17px/1.5 "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: #444;
  margin: calc(var(--header-height) + var(--header-padding) * 2) 0 0;
  padding: 0;
}

h1, h2, h3, .head {
  line-height: 1.2;
}

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

*:before, *:after {
  line-height: 1;
}

a:link, a:visited {
  color: #020e1f;
  text-decoration: none;
}

input, textarea, select, button {
  font: inherit;
}

select,
textarea,
input[type=text],
input[type=number],
input[type=email],
input[type=date],
input[type=time],
input[type=datetime],
input[type=datetime-local] {
  border: 1px solid #ccc;
  padding: 0.3rem 0.9rem;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 0 0 2px #eee;
}

select:focus,
textarea:focus,
input[type=text]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=date]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus {
  outline: none;
  border-color: #3cc061;
  box-shadow: 0 0 0 2px #9be9b1;
}

.button,
button,
input[type=submit],
input[type=reset],
input[type=button] {
  border: 0;
  background: var(--color-brand-alternate);
  color: #fff;
  font-weight: bold;
  padding: calc(var(--gap) / 4) var(--gap);
  border-radius: 3px;
  cursor: pointer;
}

#wpcf7-f124-p61-o1 .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: var(--gap);
}

#wpcf7-f124-p61-o1 .wpcf7-form p {
  margin: 0;
  padding: 0;
}

#wpcf7-f124-p61-o1 .wpcf7-form p:nth-of-type(3),
#wpcf7-f124-p61-o1 .wpcf7-form p:nth-of-type(4) {
  grid-column: 1/3;
}

#wpcf7-f124-p61-o1 .wpcf7-response-output {
  grid-column: 1/3;
}

.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.container {
  width: 1200px;
  max-width: calc(100% - 60px);
  margin: 0 auto;
}

/*body.page-template-default .main-content {
    width: 1200px;
    max-width: calc(100% - 60px);
    margin: 0 auto;
    display: flex;
    gap: var(--gap);
}

body.page-template-default #primary {
    flex: 1;
}

body.page-template-default #secondary {
    flex: 0 0 260px;
}

body.page-template-default #primary > .container {
    width: 100%;
    max-width: unset;
    margin: 0;
}*/
#masthead {
  height: calc(var(--header-height) + var(--header-padding) * 2);
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
  background: #fff;
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s linear;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
}
#masthead * {
  transition: 0.2s linear;
}
#masthead .container {
  display: flex;
  gap: var(--gap);
  align-items: center;
}
#masthead .site-branding {
  flex: 0 0 200px;
}
#masthead .main-navigation {
  flex: 1;
}
#masthead .custom-logo-link {
  display: block;
}
#masthead .custom-logo {
  max-width: 200px;
  height: 100px;
  width: auto;
  display: block;
}
#masthead.sticky {
  height: calc(var(--header-height) / 2 + var(--header-padding) * 2);
}
#masthead.sticky .custom-logo {
  height: calc(var(--header-height) / 2);
}
#masthead .menu {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: calc(var(--gap) / 2);
}
#masthead .menu li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  position: relative;
}
#masthead .menu .current-menu-item > a,
#masthead .menu .current-menu-ancestor > a {
  color: var(--color-brand);
  font-weight: bold;
}
#masthead .menu > li > a {
  padding: 0.5rem 0.6rem;
}
#masthead .menu > li > a:hover {
  background: #f4f4f4;
}
#masthead .menu .sub-menu {
  position: absolute;
  top: 100%;
  left: calc(-.7rem - 1px);
  height: 0;
  margin: 0;
  width: auto;
  height: auto;
  visibility: hidden;
  overflow: hidden;
  min-width: 240px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.1s linear;
  background: #fff;
  padding: 0;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
}
#masthead .menu .sub-menu li {
  width: 100%;
}
#masthead .menu .sub-menu li > a {
  padding: 0.3rem 1.3rem;
  width: 100%;
}
#masthead .menu .sub-menu li > a:hover {
  background: #f4f4f4;
}
#masthead .menu li:hover > .sub-menu {
  visibility: visible;
  overflow: visible;
  height: auto;
  opacity: 1;
}
#masthead .menu-toggle {
  background: #fff;
  font: inherit;
  border: 1px solid #000;
  cursor: pointer;
  display: none;
}
#masthead .join-us {
  background: var(--color-brand);
  color: #fff;
  font-weight: bold;
  padding: 0.3rem 0.9rem;
  border-radius: 0 8px 8px 8px;
}

.header-home {
  position: relative;
}

.blocks-home {
  position: relative;
  margin-top: -180px;
  padding-top: 80px;
  z-index: 4;
  background: #020413;
  background: linear-gradient(0deg, #020413 0%, rgba(2, 4, 19, 0) 100%);
}
.blocks-home .blocks {
  display: flex;
}
.blocks-home .blocks .block {
  flex: 0 0 25%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  height: 100px;
  background: var(--color-brand);
  color: #fff;
  padding: 1.3rem;
  opacity: 0.9;
  transition: 0.1s linear;
}
.blocks-home .blocks .block + .block {
  opacity: 0.85;
}
.blocks-home .blocks .block + .block + .block {
  opacity: 0.8;
}
.blocks-home .blocks .block + .block + .block + .block {
  opacity: 0.75;
}
.blocks-home .blocks .block.block:last-child {
  border-top-right-radius: 40px;
}
.blocks-home .blocks .block .icon span {
  display: block;
  font-size: 2.4rem;
  text-align: center;
}
.blocks-home .blocks .block .label {
  font-weight: bold;
}
.blocks-home .blocks .block:hover {
  background: var(--color-brand-alternate);
  opacity: 0.9;
}

.posts-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin: var(--gap) 0;
}
.posts-container .post {
  display: flex;
  flex-direction: column;
}
.posts-container .post .content {
  padding: calc(var(--gap) / 1.5);
  background: #f3f3f3;
  flex: 1;
}
.posts-container .post .entry-title {
  font-size: 1rem;
  margin: 0;
  position: relative;
}
.posts-container .post .entry-title:before {
  content: "";
  top: calc(var(--gap) * -1);
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--color-brand-alternate);
  border-radius: 3px;
  box-shadow: 0 0 0 2px #f3f3f3;
}
.posts-container .post img {
  max-width: 100%;
  height: auto;
  display: block;
}
.posts-container .post .date {
  font-size: 0.75rem;
  margin: 0.5rem 0;
  color: #666;
  font-weight: bold;
}
.posts-container .post .read-more {
  font-size: 0.8rem;
  color: #444;
}

.hentry .date {
  font-size: 0.85rem;
  margin: 0.5rem 0;
  color: #666;
  font-weight: bold;
}

.entry-title {
  font-size: 1.4rem;
  margin: 0;
}

.entry-header {
  margin-bottom: var(--gap);
}

.page-header {
  padding: calc(var(--gap));
  margin: 0;
  margin-bottom: var(--gap);
  border-bottom: 1px solid #eee;
}
.page-header .entry-title {
  font-size: 1.6rem;
  margin: 0;
  font-weight: bold;
  color: var(--color-dark);
}

#events-categories {
  margin-bottom: var(--gap);
}
#events-categories ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: var(--gap);
  margin: 0;
  padding: 0;
  /*&.expanded {
      li {
          &:nth-child(n+4):not(.expand) {
              display: flex;
          }

          &.expand {
              display: none;
          }
      }
  }*/
}
#events-categories ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /*&:nth-child(n+4):not(.expand) {
      display: none;
  }*/
  /*&.expand {
      a {
          &:link, &:visited {
              background: var(--color-brand);
              color: #fff;
          }

          &:hover {
              background: var(--color-dark);
          }
      }
  }*/
}
#events-categories ul li a {
  display: flex;
  font-weight: bold;
  min-height: 150px;
  align-items: center;
  justify-content: center;
  flex: 1;
  background: rgba(0, 0, 0, 0.1);
  transition: 0.2s linear;
  position: relative;
  border-radius: 3px;
  /*&:before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      box-shadow: inset 0 0 0 0 rgba(255,255,255,.2);
      transition: .2s linear;
      pointer-events: none;
  }*/
}
#events-categories ul li a:hover {
  background: var(--color-dark);
  color: #fff;
  /*&:before {
      box-shadow: inset 0 0 0 10px #17204a;
  }*/
}

.site-footer {
  background: var(--color-dark);
  color: #fff;
  padding: 1.3rem;
}
.site-footer a:link, .site-footer a:visited {
  color: #46a0fd;
}
.site-footer p:last-child {
  margin-bottom: 0;
}
.site-footer .menu-footer-wrapper .menu {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
  padding: calc(var(--gap) / 2) 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  list-style: none;
}
.site-footer .menu-footer-wrapper .menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .menu-footer-wrapper .menu,
.site-footer .site-info {
  font-size: 0.95rem;
}
.site-footer .site-info {
  margin-bottom: var(--gap);
}

.introduction {
  border-bottom: 1px solid #eee;
}

.post-2.page {
  padding: 3rem;
}

body.single-post #primary .post .wp-post-image,
body.single-wydarzenia #primary .post .wp-post-image {
  max-width: 100%;
  height: auto;
  max-height: 800px;
  object-fit: cover;
}

.entry-content li {
  margin-bottom: calc(var(--gap) / 2);
}

.post-navigation-wrapper {
  background: #f4f4f4;
  padding: calc(var(--gap) / 2) 0;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.nav-links .nav-previous,
.nav-links .nav-next {
  flex: 0 0 50%;
  background: #f4f4f4;
  display: flex;
}
.nav-links .nav-previous a,
.nav-links .nav-next a {
  display: block;
  width: 100%;
  flex: 0 0 100%;
  padding: calc(var(--gap) / 2) var(--gap);
  position: relative;
}
.nav-links .nav-previous a:hover,
.nav-links .nav-next a:hover {
  background: #fff;
}
.nav-links .nav-subtitle {
  font-size: 0.85rem;
  color: #777;
  display: block;
  font-weight: bold;
  text-transform: uppercase;
}
.nav-links .nav-next {
  text-align: right;
  justify-self: flex-end;
}
.nav-links .nav-next a {
  padding-right: calc(var(--gap) * 2);
}
.nav-links .nav-next a:before {
  position: absolute;
  font-size: 1.6rem;
  right: calc(var(--gap) / 1.5);
  top: 50%;
  transform: translateY(-50%);
  content: "";
  font-family: "Material Symbols Outlined";
  text-align: center;
  width: 1rem;
}
.nav-links .nav-previous a {
  padding-left: calc(var(--gap) * 2);
}
.nav-links .nav-previous a:before {
  position: absolute;
  font-size: 1.6rem;
  left: calc(var(--gap) / 1.5);
  top: 50%;
  transform: translateY(-50%);
  content: "";
  font-family: "Material Symbols Outlined";
  text-align: center;
  width: 1rem;
}

body.single-post #primary,
body.single-wydarzenia #primary {
  padding: var(--gap) 0;
}
body.single-post #primary .entry-content .container p, body.single-post #primary .entry-content .container li,
body.single-wydarzenia #primary .entry-content .container p,
body.single-wydarzenia #primary .entry-content .container li {
  /*text-align: justify;*/
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: inline;
  }
}

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