:root {
  --font-size: 1rem;
  --violet: #522258;
  --bs-btn-bg: #000 !important;
  --bs-btn-hover-bg: #111;
}

::marker {
  color: var(--contrast);
}

section {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin-bottom: 0.5rem;
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  color: var(--violet);
}

@media (max-width: 1280px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 1281px) {
  .hide-desktop {
    display: none !important;
  }
}

/*header */
.header {
  background: #fff;
  padding: 1rem 0;
  border-bottom: solid 1px var(--muted-border-color);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.header-mobile-btn {
  width: 50px;
  height: 50px;
  padding: 0.4rem;
  margin: 0;
}

.header-mobile-btn img {
  width: 100%;
  height: 100%;
  filter: invert(100%);
}

.header-logo {
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  font-style: italic;
}

.header-grid {
  align-items: center;
}

.header-nav a {
  color: #333;
  padding: 7px 15px;
  border-radius: 1.2rem;
}

.header-nav a.current {
  background: var(--violet);
  color: #fff;
  padding: 7px 15px;
  border-radius: 1.2rem;
}

.header-nav .current a {
  color: #fff;
}

@media (min-width: 768px) {
  .header {
    padding: 1rem 0;
  }
}

@media (max-width: 1280px) {
  .header-grid {
    flex-wrap: wrap;
  }
  .header-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin-right: 0 !important;
    margin-left: 0 !important;
    margin-top: 20px;
  }
  .header-nav li {
    width: 100%;
    padding: 2px 0;
    margin: 0;
  }
  .header-nav a {
    width: 100%;
    text-align: center;
    padding: 10px;
    margin: 0;
  }
  .header-nav a[role="button"] {
    margin-left: 0;
    margin-right: 0;
    padding: inherit;
  }
}

/*content and aside */
.content {
  padding: 2rem 0;
  padding-bottom: 0;
}

.content-grid {
  display: grid;
  grid-column: 1fr;
  margin: 2rem 0;
  gap: 1.3rem;
}

@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: 9fr 3fr;
  }
}

.content-sidebar ul::marker {
  color: #000;
}

.content-sidebar h2 {
  margin-bottom: 10px;
}

.content-title {
  padding-bottom: 1rem;
}

.content-sidebar h2 {
  padding-bottom: 10px;
  border-bottom: solid 1px var(--muted-border-color);
  margin-bottom: 20px;
  display: block;
}

.content-sidebar ul {
  list-style-type: square !important;
  background: var(--violet);
  color: #fff;
  line-height: 1;
  border-radius: 5px;
  list-style-type: square;
  padding: 0;
}

.content-sidebar li {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

.content-sidebar a {
  color: #fff;
  width: 100%;
  padding: 20px 15px;
}

.content-sidebar a:hover, .content-sidebar a.active {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.2);
}

.content-main img {
  margin-bottom: 1.3rem;
  border-radius: 0.2rem;
}

.content-main nav[aria-label="breadcrumb"] li {
  padding: 0 0.5rem;
}

.content-main nav[aria-label="breadcrumb"] a {
  color: var(--muted-color);
}

/*footer */
.footer-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
  }
}

/*grid variant */
@media (min-width: 768px) {
  .content-grid-left {
    grid-template-columns: 3fr 9fr;
  }
  .content-grid-left .content-sidebar {
    order: 1;
  }
  .content-grid-left .content-main {
    order: 2;
  }
  .content-grid-nosidebar {
    grid-template-columns: 1fr;
  }
}

.content-grid-nosidebar .content-sidebar {
  display: none;
}

blockquote {
  font-family: "Roboto Slab", serif;
  font-weight: 300;
  font-style: italic;
  margin: 0;
  border: none;
  font-size: 2.2rem;
  color: var(--violet);
}

.btn {
  border-radius: 2rem;
  padding: 0.5rem 1.3rem;
}

.woman {
  width: 90%;
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 1;
}

.woman::after {
  content: 'test';
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  z-index: 2;
  border: solid 32px #000;
  background: #000;
}

.about h1 {
  margin-bottom: 20px;
}

.motto {
  background: var(--violet);
}

.motto blockquote {
  color: #fff;
  text-align: center;
}

a {
  text-decoration: none;
}

.btn-dark {
  background: var(--violet);
  border: none;
  transition: all 250ms linear;
}

.btn-dark:hover {
  background: var(--violet);
  filter: brightness(80%);
}

.strefa {
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: #000;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.strefa img {
  width: 100%;
  height: 100%;
  opacity: 0.5;
  object-fit: cover;
  transition: all 250ms linear;
  position: relative;
}

.strefa figcaption {
  position: absolute;
  color: #fff;
  z-index: 3;
}

.strefa h1,
.strefa h2,
.strefa h3,
.strefa h4,
.strefa h5,
.strefa h6 {
  color: #fff;
  font-size: 2.5rem;
}

.strefa:hover img {
  opacity: 0.2;
  transform: scale(1.2);
}

*[role="button"] {
  all: unset;
}

.boxes h4::after {
  content: '-----';
  display: block;
  margin: 10px 0;
  color: rgba(0, 0, 0, 0.3);
}

.footer {
  background: #000;
  padding: 5rem 15px;
  line-height: 1.8;
  color: #fff;
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
  color: #fff;
}

.footer h1::after,
.footer h2::after,
.footer h3::after,
.footer h4::after,
.footer h5::after,
.footer h6::after {
  content: '---';
  display: block;
}

.footer ul {
  margin: 0;
  padding: 0;
  margin-left: 18px;
}

.footer ul ::marker {
  color: #fff;
}

.footer ul a {
  color: #fff;
}

.footer ul li {
  margin: 0;
  padding: 0;
}

.title-section {
  position: relative;
  margin: 0;
  padding: 0;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.title-section img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(50%);
}

.title-section .content-title {
  position: relative;
  z-index: 2;
}

.title-section h1,
.title-section h2,
.title-section h3,
.title-section h4,
.title-section h5,
.title-section h6 {
  color: #fff;
}

.title-section a {
  color: #fff;
}

.easyContactForm {
  background: #fafafa;
  padding: 10px;
  border: solid 1px #ddd;
  margin-top: 20px;
}

.easyContactForm input {
  background: #fff;
  border-radius: 0 !important;
}

.easyContactForm input[type="checkbox"] {
  all: revert;
}

.footer {
  color: #fff;
}

.nm_post_image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom: solid 5px var(--violet);
}

a {
  color: var(--violet);
}

.nm_post_title {
  padding: 10px 0;
}

.footer p {
  color: #fff !important;
}
