* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: rgba(16, 17, 5, 0.9803921569);
  display: flex;
  justify-content: center;
  align-items: center;
}

header {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-image: url("../img/dek_post.jpg");
  background-position: center;
  background-size: cover;
  height: 300px;
}

header p {
  text-align: center;
  color: white;
  font-size: 28px;
  border: solid rgb(136, 115, 10);
  background-color: rgb(3, 39, 39);
  border-radius: 20px;
  overflow: hidden;
  padding: 5px;
  font-family: "Mea Culpa", serif;
}

header p:hover {
  cursor: pointer;
}

.wrapper {
  display: flex;
  flex-flow: row wrap;
  text-align: center;
}

.wrapper > * {
  padding: 10px;
  margin: 2px;
  flex: 1 100%;
}

nav {
  background-color: rgb(6, 18, 54);
  text-align: center;
  overflow: hidden;
}

.menu {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.menu-item {
  display: inline-block;
  height: 50px;
  width: 100%;
  line-height: 50px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s;
}

.menu-item:hover {
  background-color: rgb(8, 28, 88);
  border-radius: 5px;
}

.church-icon {
  display: none;
}

.dropdown {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: auto;
}

.dropdown li {
  display: none;
  opacity: 0;
  background-color: rgb(6, 18, 54);
  transition: color 0.5s;
  padding: 0px 20px;
  z-index: 100;
}

.dropdown li:hover {
  background-color: rgb(12, 37, 112);
}

.menu-item:hover .dropdown li {
  display: flex;
  animation: menu 0.5s forwards;
}

@keyframes menu {
  from {
    opacity: 0;
    transform: rotate(20deg);
  }
  to {
    opacity: 1;
    transform: rotate(0);
  }
}
nav ul li a {
  display: block;
  margin: 0px;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  color: rgb(136, 115, 10);
  text-decoration: none;
  transition: 0.5s;
}

nav .sidebar {
  position: fixed;
  padding: 20px;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: rgba(3, 39, 39, 0.808);
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: scroll;
  list-style: none;
}

nav .sidebar ul {
  border-top: solid rgb(6, 18, 54);
}

nav .sidebar li {
  padding: 10px;
  width: auto;
}

nav .sidebar li:hover {
  width: 100%;
  background-color: rgb(10, 48, 83);
  cursor: pointer;
}

nav .sidebar a {
  width: 100%;
  padding: 10px;
  transition: 0.5s;
}

.sidebar a:hover {
  color: white;
}

.sidebar a:hover .dropdown {
  display: flex;
}

.hamburgerMenu {
  display: none;
}

.submenu {
  display: none;
}

.submenu ul li {
  list-style: none;
}

.menu-link {
  color: rgb(136, 115, 10);
}

.submenuItem {
  color: rgb(189, 162, 12);
}

.footer {
  background-color: rgb(6, 18, 54);
  color: rgb(136, 115, 10);
}

.main h1 {
  color: rgb(136, 115, 10);
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(3, 39, 39);
  overflow: hidden;
  color: rgb(136, 115, 10);
}

.main ol {
  padding: 25px;
}

.sacraments {
  padding: 20px;
  text-align: left;
}

.sacraments h3 {
  padding-top: 15px;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.news {
  padding-top: 10px;
  text-align: left;
}

.news h3 {
  text-transform: uppercase;
}

.main .frontpage img {
  margin: 15px 0px;
  height: auto;
  width: 600px;
  max-width: 100%;
}

.intention {
  height: 100%;
  width: 100%;
  text-align: left;
  padding: 15px;
}

.intention h3 {
  text-decoration: underline;
}

.days {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
}

.daysSunday {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
}

.intention ul {
  padding: 20px;
}

.intention ul li {
  padding: 5px;
}

.intentionTime {
  font-weight: bold;
}

.news {
  width: 100%;
  height: 100%;
}

.news-date {
  float: right;
}

.main .news ol {
  padding-right: 5px;
  margin-top: 3px;
}

.main .news ol li {
  text-align: justify;
  margin-top: 15px;
}

.main .news ol li a {
  color: yellow;
}

.main .news ol li a:visited {
  color: rgb(136, 115, 10);
}

.contact {
  width: 100%;
  height: 100%;
  text-align: left;
  margin-top: 10px;
}

.contact section {
  margin: 20px;
}

.contact h2 {
  margin-top: 15px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.contact p {
  text-align: center;
  font-size: 1em;
  text-align: left;
  margin-top: 5px;
  margin-bottom: 2px;
}

.contact ul {
  padding: 10px;
}

.contact iframe {
  width: 50%;
  height: 250px;
  border-radius: 15px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 2em;
}

.container {
  position: relative;
  min-height: 100vh;
}

.container .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  padding: 10px;
}

.container .gallery .image {
  height: 200px;
  width: 200px;
  border: 2px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
}

.container .gallery .image img {
  transition: 0.5s linear;
}

.gallery img {
  width: 100%;
}

.container .popup-image {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  height: 100%;
  width: 100%;
  z-index: 100;
  display: none;
}

.container .popup-image span {
  position: absolute;
  right: 10px;
  font-size: 40px;
  font-weight: bolder;
  cursor: pointer;
  z-index: 100;
}

.container .popup-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-60%, -50%);
  border: 5px solid #fff;
  border-radius: 5px;
  width: 700px;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}

.history {
  text-align: left;
}

.history h1 {
  text-align: center;
}

.history p {
  text-align: justify;
  text-indent: 1rem;
  margin-top: 10px;
  margin-bottom: 15px;
}

.history h5 {
  text-align: right;
}

.action {
  text-align: left;
}

.action h1 {
  text-align: center;
}

.action img {
  width: 150px;
  max-width: 90%;
}

.action p {
  text-align: justify;
  text-indent: 1rem;
  margin-top: 10px;
  margin-bottom: 15px;
}

.action ol {
  margin-top: -20px;
}

.action h4 {
  text-align: right;
}

.action h5 {
  text-align: right;
}

.bibleCircle {
  text-align: left;
}

.bibleCircle h1 {
  text-align: center;
}

.bibleCircle p {
  text-align: justify;
  text-indent: 1rem;
  margin-top: 10px;
  margin-bottom: 15px;
}

.bibleCircle img {
  width: 50%;
  height: 50%;
  float: inline-end;
  margin: 10px;
}

.bibleCircle .circleImg {
  float: inline-start;
  width: 50%;
}

.bibleCircle h5 {
  text-align: right;
}

.events {
  height: 100%;
  width: 90%;
}

.events h3 {
  margin-top: 20px;
}

.events img {
  border-radius: 5px;
  max-width: 90%;
  margin: 20px;
  height: auto;
  width: 600px;
}

.events section {
  text-align: justify;
}

.events section p {
  text-align: justify;
  text-indent: 1rem;
  margin-top: 10px;
  margin-bottom: 15px;
}

.events h5 {
  text-align: right;
}

.news-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px;
}

.news-container .news-feed {
  height: 300px;
  width: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  cursor: pointer;
  margin: 15px;
  background-color: white;
  text-align: center;
  border-radius: 5px;
}

.news-container .news-feed img {
  width: 100%;
  margin-bottom: 10px;
  transition: 0.3s;
}

.news-container .news-feed .news-feed-date {
  font-size: 13px;
  margin-bottom: 2px;
}

.news-container .news-feed a {
  color: rgb(136, 115, 10);
  font-weight: bold;
  text-decoration: none;
}

.news-container .news-feed:hover img {
  transform: scale(1.1);
}

.buttonBack {
  align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: rgba(136, 115, 10, 0.788);
  border-radius: 24px;
  border-style: none;
  box-shadow: rgba(0, 0, 0, 0.2) 0 3px 5px -1px, rgba(0, 0, 0, 0.14) 0 6px 10px 0, rgba(0, 0, 0, 0.12) 0 1px 18px 0;
  box-sizing: border-box;
  color: #131e27;
  cursor: pointer;
  display: inline-flex;
  fill: currentcolor;
  font-family: "Google Sans", Roboto, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  height: 48px;
  justify-content: center;
  letter-spacing: 0.25px;
  line-height: normal;
  max-width: 100%;
  overflow: visible;
  padding: 2px 24px;
  position: relative;
  text-align: center;
  text-transform: none;
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 15ms linear 30ms, transform 270ms cubic-bezier(0, 0, 0.2, 1) 0ms;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: auto;
  will-change: transform, opacity;
  z-index: 0;
  font-weight: bold;
}

.buttonBack:hover {
  background: rgb(133, 114, 23);
  color: #174ea6;
}

.buttonBack:active {
  box-shadow: 0 4px 4px 0 rgba(60, 64, 67, 0.3), 0 8px 12px 6px rgba(60, 64, 67, 0.15);
  outline: none;
}

.buttonBack:focus {
  outline: none;
  border: 2px solid #4285f4;
}

.transmition {
  text-decoration: none;
  list-style: none;
}

.transmition h2 {
  padding-top: 10px;
}

.transmition li {
  margin: 2px;
  padding: 15px;
}

.transmition li ol {
  margin: 2px;
  padding-top: 2px;
  padding-bottom: 15px;
}

.transmition li ol li {
  list-style: none;
  padding: 5px;
}

.fa-brands.fa-youtube.fa-10x {
  color: rgb(194, 12, 12);
  transition: color 0.5s;
}

.fa-brands.fa-youtube.fa-10x:hover {
  color: rgb(129, 18, 18);
}

.fa-brands.fa-youtube.fa-5x {
  color: rgb(194, 12, 12);
  transition: color 0.5s;
}

.fa-brands.fa-youtube.fa-5x:hover {
  color: rgb(129, 18, 18);
}

.icons h5 {
  padding-bottom: 10px;
  color: rgb(136, 115, 10);
  transition: color 0.5s;
}

.icons a {
  text-decoration: none;
}

.icons h5:hover {
  color: rgba(146, 129, 45, 0.705);
}

.side {
  background-color: rgb(6, 18, 54);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}

.icon {
  width: 80%;
  height: 100px;
}

.datetime {
  margin: 8px;
  font-size: 14px;
  padding: 20px;
  color: rgb(136, 115, 10);
  background: rgb(6, 18, 54);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  width: 100%;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.time {
  font-size: 3em;
  color: rgb(136, 115, 10);
}

.date {
  margin-top: 12px;
  font-size: 1.2em;
}

.card {
  position: relative;
  height: 350px;
  width: 250px;
  max-width: 100%;
  margin: 20px;
}

.img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  transition: 1s;
  background-image: url("../img/michal-archaniol.jpg");
}

.pray {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 10px;
  background-image: linear-gradient(350deg, #fee2f8 0%, rgba(221, 204, 255, 0.5333333333));
  border-radius: 15px;
  transition: 1s;
  opacity: 0;
  font-size: 16px;
  transform: rotateY(-180deg);
}

.side .pray h2 {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.card:hover .pray {
  transform: rotate(0);
  opacity: 1;
}

.main ol li {
  text-align: left;
}

.read-side {
  margin: 8px;
  padding: 10px;
  color: rgb(136, 115, 10);
  background: rgb(6, 18, 54);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  width: 100%;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  text-align: left;
}

span.nd_liturgia_skrot_tytul {
  color: rgb(136, 115, 10);
  font-size: 15px;
}

span.nd_liturgia_skrot_tytul_swieto {
  color: red;
  font-weight: bold;
  margin: 5px;
}

span.nd_liturgia_skrot_sigla {
  font-weight: bold;
  margin: 5px;
}

a.nd_liturgia_skrot_link {
  text-decoration: none;
  margin-top: 2px;
}

p.nd_liturgia_skrot_baner {
  margin: 2px;
  padding: 2px;
  text-align: center;
  width: 100%;
}

.offer {
  width: 100%;
  height: 700px;
}

.offer iframe {
  height: 50%;
  width: 100%;
}

.offer h2 {
  margin-top: 3px;
}

.offer p {
  left: auto;
  margin-top: 5px;
  margin-bottom: 5px;
}

.offer p a {
  color: rgb(136, 115, 10);
  text-decoration: none;
}

.offer .date_offer {
  float: right;
  font-size: small;
}

.offer p a:visited {
  color: rgb(105, 89, 8);
  text-decoration: none;
}

.frontpage h2 {
  padding-bottom: 10px;
}

.frontpage a {
  color: rgb(136, 115, 10);
  text-decoration: none;
  margin: 10px;
  transition: color 0.5s;
  width: 100%;
  height: 100%;
  text-align: center;
}

.frontpage a:hover {
  color: yellow;
  text-decoration: none;
}

.main .frontpage p {
  border: solid;
  padding: 5px;
  margin: auto;
  height: auto;
  max-width: 80%;
  border-radius: 5px;
  margin-top: 6px;
}

.intention a {
  color: rgb(136, 115, 10);
  text-decoration: none;
  margin: 10px;
  transition: color 0.5s;
  width: 100%;
  height: 100%;
  text-align: center;
}

.intention a:hover {
  color: yellow;
  text-decoration: none;
}

@media all and (min-width: 800px) and (max-width: 915px) {
  .pray {
    font-size: 12px;
  }
}
@media all and (max-width: 800px) {
  header {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background-image: url("../img/dek_post.jpg");
    background-position: center;
    background-size: cover;
    height: 200px;
  }
  nav {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 1.5rem;
  }
  .hamburgerMenu {
    display: block;
    margin-left: auto;
    font-size: 20px;
  }
  .church-icon {
    display: block;
    font-size: 1.2rem;
    margin-right: auto;
  }
  .title-church {
    display: none;
  }
  .menu-item {
    display: none;
    opacity: 0;
  }
  .guest-box textarea {
    max-width: 100%;
    font-size: 16px;
  }
  .contact iframe {
    height: 200px;
    width: 70%;
  }
  .container .popup-image img {
    width: 70%;
    height: 50%;
  }
  .news-container .news-feed {
    width: 230px;
    height: 230px;
    font-size: 11px;
  }
  .news-container .news-feed .news-date {
    font-size: 10px;
  }
  .bibleCircle img {
    float: unset;
    width: 90%;
  }
  .bibleCircle .circleImg {
    float: unset;
    width: 90%;
  }
  .offer {
    width: 100%;
    height: 850px;
  }
  .offer iframe {
    height: 40%;
  }
}
@media all and (min-width: 800px) {
  .main {
    flex: 3;
  }
  .side1 {
    order: 1;
  }
  .main {
    order: 2;
  }
  .footer {
    order: 4;
  }
}
@media all and (min-width: 600px) {
  .side {
    flex: 1;
  }
}
@media all and (max-width: 400px) {
  nav .sidebar {
    width: 100%;
  }
}
@media all and (min-width: 1200px) {
  .wrapper {
    width: 1200px;
  }
}/*# sourceMappingURL=main.css.map */