:root {
  --ff-primary: "Lato", sans-serif;
  --cl-body: #21272b;
  --cl-bg: #fff;
  --cl-link: #0f74a0;
  --cl-link-hover: #0c6991;
  --cl-cover: rgba(3, 15, 37, 0.65);
  --cl-cover-light: rgba(7, 14, 27, 0.45);
  --cl-border-light: rgb(214, 214, 214);
  --cl-background-light: rgb(243, 243, 243);
  --cl-border-alpha: rgba(17, 173, 235, 0.301);
  --cl-button: #0f74a0;
  --cl-button-hover: #0c6991;
  --cl-green:#f0bd00;
  --cl-red: #cf2642;
  --cl-blue: #1185b6;
  --cl-blue-dark: #0c6991;
  --cl-dark: #21272b;
  --wrapper-site-width: 100%;
  --wrapper-content-width: min(90%, 1400px);
  --wrapper-with-sidebar-width: min(90%, 1400px);
  --slider-height: max(45vh, 350px);
  --gap: 1rem;
  --border-radious: 0;
}

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

ol[class],
ul[class] {
  padding: 0;
  list-style: none;
}

body,
blockquote,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* a:focus {
  outline: 2px solid var(--cl-green);
} */
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

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

table {
  border-spacing: 0;
  border-collapse: collapse;
}

.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

html:focus-within {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}
html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-size: 1em;
  color: var(--cl-body);
  background-color: var(--cl-bg);
  font-family: var(--ff-primary);
}

i,
.icon {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.sr-only:focus, .sr-only:active {
  clip: auto;
  -webkit-clip-path: none;
          clip-path: none;
  height: auto;
  overflow: visible;
  white-space: normal;
  width: auto;
  background-color: #000;
  color: #ffff00;
  padding: 1rem;
}

.m-block {
  display: block;
}

.m-inline-block {
  display: inline-block;
}

.m-inline {
  display: inline;
}

.s-inline-block, .s-inline, .s-block {
  display: none;
}

@media (min-width: 1024px) {
  .m-block, .m-inline-block, .m-inline {
    display: none;
  }
  .s-block {
    display: block;
  }
  .s-inline-block {
    display: inline-block;
  }
  .s-inline {
    display: inline;
  }
}
a {
  color: var(--cl-link);
}

a:hover {
  color: var(--cl-link-hover);
}

.wrapper-site {
  width: var(--wrapper-site-width);
  margin: 0 auto;
}

.wrapper-content {
  width: var(--wrapper-content-width);
  margin: 0 auto;
}

.wrapper-with-sidebar {
  width: var(--wrapper-with-sidebar-width);
  margin: 0 auto;
}

.flex {
  display: flex;
  gap: var(--gap, 1rem);
}

.grid {
  display: grid;
  gap: var(--gap, 1rem);
}

.cover {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.cover::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--cl-cover);
  z-index: 0;
}

.cover-light::after {
  background-color: var(--cl-cover-light);
}

.top {
  padding: 1rem 0;
}

.top-sec {
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.top-sec__header {
  margin: 0;
  width: 290px;
}
.top-sec__logo {
  font-size: 1.2em;
  text-transform: uppercase;
  font-weight: 900;
}
@media (min-width: 640px) {
  .top-sec__logo {
    font-size: 1.5em;
  }
}
.top-sec__logo a {
  gap: 1rem;
  justify-content: space-between;
  text-decoration: none;
}
.top-sec__logo img {
  width: 100%;
  max-width: 60px;
  height: auto;
  align-self: center;
}
.top-sec__nav {
  margin: 0 auto;
  font-size: 0.6em;
  background-color: var(--cl-background-light);
  padding: 1rem;
  width: 100%;
}
@media (min-width: 777px) {
  .top-sec__nav {
    margin: 0 50px auto 0;
    width: auto;
  }
}
.top-sec__list {
  margin: 0 auto;
  align-items: center;
  line-height: 1.2em;
  gap: 1rem;
}
.top-sec__list li {
  margin: 0 auto;
}
.top-sec__list a {
  text-decoration: none;
  text-align: center;
  line-height: 1.5em;
  display: block;
}
.top-sec__list a:hover {
  background-color: transparent;
  color: var(--cl-link);
}
.top-sec__list i {
  display: block;
  margin: 0 auto;
  font-size: 1.7em;
}
.top-sec__list img {
  display: block;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .top-sec {
    gap: var(--gap);
  }
  .top-sec__nav {
    margin: 0 0;
    font-size: 0.8em;
    background-color: transparent;
    padding: 0;
  }
}

.nav-top {
  margin: 0;
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--cl-border-alpha);
  position: absolute;
  top: 0;
}
.nav-top__list {
  gap: 0;
  text-align: center;
  flex-flow: column;
  position: fixed;
  top: 0;
  right: 0;
  width: min(75%, 300px);
  background-color: var(--cl-link);
  overflow-y: auto;
  height: 100%;
  display: none;
  z-index: 5;
}
.nav-top__list li {
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--cl-border-alpha);
  line-height: 1em;
}
.nav-top__list li:first-child {
  margin-top: 80px;
}
.nav-top__list li ul {
  display: none;
}
.nav-top__list a {
  text-decoration: none;
  font-size: 1em;
  padding: 1rem;
  display: block;
  color: var(--cl-bg);
  width: 100%;
  height: 100%;
  font-weight: 600;
}
.nav-top__list a:hover {
  background-color: var(--cl-green);
  color: var(--cl-dark);
}
.nav-top__list a i {
  font-size: 0.9em;
}
@media (min-width: 1024px) {
  .nav-top {
    display: block;
    top: auto;
    left: auto;
    width: var(--wrapper-site-width);
    height: auto;
    padding: 0;
    position: relative;
    margin: 0 auto;
    background-color: var(--cl-link);
  }
  .nav-top__list {
    display: flex;
    flex-flow: row;
    border-left: 1px solid var(--cl-border-alpha);
    position: relative;
    height: auto;
    overflow-y: visible;
    top: auto;
    right: auto;
    width: var(--wrapper-content-width);
  }
  .nav-top__list li {
    border-bottom: 0 none;
    background-color: var(--cl-link);
    align-items: center;
    border-right: 1px solid var(--cl-border-alpha);
  }
  .nav-top__list li:first-child {
    margin-top: 0;
  }
  .nav-top__list li:hover {
    background-color: var(--cl-green);
    color: var(--cl-dark);
  }
  .nav-top__list li:hover ul {
    display: flex;
    flex-flow: row wrap;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--cl-link);
    border-top: 1px solid var(--cl-border-alpha);
    border-left: 1px solid var(--cl-border-alpha);
    color: var(--cl-dark);
  }
  .nav-top__list li:hover ul li {
    border-bottom: 1px solid var(--cl-border-alpha);
    width: 25%;
  }
  .nav-top__list li.auto {
    width: auto;
  }
}
.nav-top .current-menu-item,
.nav-top .current-menu-parent,
.nav-top .current-page-ancestor {
  background-color: var(--cl-green);
  color: var(--cl-dark);
}
.nav-top .current-menu-item a,
.nav-top .current-menu-parent a,
.nav-top .current-page-ancestor a {
  background-color: var(--cl-green);
  color: var(--cl-dark);
}

.button-menu {
  position: fixed;
  top: 20px;
  right: 5%;
  background-color: var(--cl-bg);
  border: 1px solid var(--cl-link);
  width: 40px;
  height: 40px;
  color: var(--cl-link);
  z-index: 99;
}
.button-menu i::before {
  content: "\f0c9";
  margin: 0 auto;
  display: block;
  font-family: "Font Awesome 5 Free";
  font-size: 1.2em;
  font-weight: 700;
  cursor: pointer;
}
.button-menu.active i::before {
  content: "\f00d";
}
@media (min-width: 1024px) {
  .button-menu {
    display: none;
  }
}

/* -- search form -- */
#searchform {
  background-color: var(--cl-dark);
  padding: 0;
  display: none;
  color: var(--cl-bg);
  position: relative;
  z-index: 99999;
}

#searchform fieldset {
  border: 0 none;
  padding: 0;
  width: auto;
}

#searchform fieldset legend {
  padding: 15px 0 5px 2%;
  text-transform: uppercase;
  margin: 0;
  width: 100%;
}

#searchform fieldset input {
  padding: 2%;
  border: 0 none;
  background-color: transparent;
  width: 90%;
  color: var(--cl-bg);
}

#searchform fieldset #searchsubmit {
  font-size: 1em;
  background-color: transparent;
  padding: 2%;
  width: auto;
  border: 0 none;
  font-family: "Font Awesome 5 Free";
  color: var(--cl-bg);
}

.card-button a {
  padding: 1rem 2rem;
  background-color: var(--cl-link);
  color: var(--cl-bg);
  text-decoration: none;
  border-radius: var(--border-radious);
  position: relative;
  z-index: 1;
  display: inline-block;
  width: auto;
  transition: color 210ms ease-in;
}
.card-button a:hover {
  color: var(--cl-body);
}
.card-button a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--cl-green);
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: var(--border-radious);
  transition: transform 200ms ease-in;
  transform: scaleY(0);
  transform-origin: bottom;
}
.card-button a:hover::after {
  transform: scaleY(1);
  transform-origin: top;
}
.card-button a.cfs-hyperlink {
  background-color: var(--cl-green);
  color: var(--cl-body);
}
.card-button a.cfs-hyperlink:hover {
  color: var(--cl-bg);
}
.card-button a.cfs-hyperlink::after {
  background-color: var(--cl-link);
}

.section-front {
  margin: 2em 0;
  padding: 2em 0;
}

.frontpage-slider {
  margin: 0;
  padding: 0;
}

.slider {
  position: relative;
}
.slider__container {
  position: relative;
  height: var(--slider-height);
}
.slider__section {
  position: relative;
  z-index: 2;
  align-items: center;
  height: 100%;
  color: var(--cl-bg);
}
.slider__header {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.slider h2 {
  font-size: 1.5em;
  line-height: 1.2em;
  font-weight: 900;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .slider h2 {
    font-size: 3em;
    margin-bottom: 1rem;
    line-height: 1.1em;
    font-weight: 900;
  }
  .slider h3 {
    font-size: 1.2em;
    line-height: 1.5em;
    margin-bottom: 1rem;
  }
}

.front {
  position: relative;
  z-index: 1;
}
.front__header {
  margin: 0 auto 2rem;
}
.front__header i,
.front__header img {
  font-size: 30px;
  margin-bottom: 1rem;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--cl-bg);
  color: var(--cl-body);
  box-shadow: 0px 0px 0px 8px var(--cl-border-alpha);
}
.front h2 {
  font-size: 1.5em;
  font-weight: 700;
  position: relative;
  margin: 0 auto 1rem;
}
.front h2::after {
  content: "";
  display: block;
  width: 30px;
  border-bottom: 5px solid var(--cl-red);
  margin: 5px 0;
}
.front__lead {
  line-height: 1.5em;
}
@media (min-width: 768px) {
  .front h2 {
    font-size: 2em;
    font-weight: 900;
  }
}

.cards {
  flex-flow: row wrap;
}

.cards-article {
  padding: 0.5rem;
  border: 1px solid var(--cl-border-light);
  border-radius: var(--border-radious);
  flex: 1 1 250px;
  background-color: var(--cl-bg);
  box-shadow: var(--box-shadow);
}
.cards-article h3 {
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.2em;
}
.cards-article a {
  text-decoration: none;
}
.cards-article a:hover {
  text-decoration: underline;
}

.front-posts-sidebar {
  flex-flow: row wrap;
  gap: var(--gap);
}

.front-posts {
  flex: 1 1 100%;
}
.front-posts .front__header {
  width: auto;
  margin: -2em 0 0 0;
  text-align: left;
  background-color: var(--cl-background-light);
  flex: 1 1 250px;
  padding: 2rem 1.5rem;
}

.front-posts--sidebar {
  flex: 8 1 800px;
  align-self: flex-start;
}

.cards-article--news {
  padding: 0;
  flex: 1 1 250px;
  position: relative;
  /* &:nth-child(-n+4) .cards-article__lead {
      display: block;
  } */
}
.cards-article--news .cards-article__lead {
  display: none;
}
.cards-article--news a {
  text-decoration: none;
}
.cards-article--news img {
  margin: 0 auto;
}
.cards-article--news header {
  padding: 1.5rem;
  line-height: 1.5em;
}
.cards-article--news a:hover h3 {
  text-decoration: underline;
}
.cards-article--news time {
  margin-top: 1em;
  padding: 0 1em;
  background-color: var(--cl-background-light);
  display: inline-block;
}

.cat-link {
  margin: 1em auto;
  text-align: center;
  flex: 1 1 100%;
}

.frontpage-icons {
  padding: 0;
}

.front-icons {
  position: relative;
  z-index: 1;
  margin-top: -3em;
  background-color: var(--cl-link-hover);
}

.cards-icons {
  gap: 1px;
  text-align: center;
}
.cards-icons a {
  flex: 1 1 120px;
  background-color: var(--cl-link);
  color: var(--cl-bg);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 1rem 1rem 0.5rem;
  border-radius: 0;
}
.cards-icons a i,
.cards-icons a img {
  font-size: 20px;
  margin: 0 auto 0.5rem;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--cl-bg);
  color: var(--cl-body);
  box-shadow: 0px 0px 0px 8px var(--cl-border-alpha);
}

.frontpage-background__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--cl-link);
  z-index: 1;
}
@media (min-width: 796px) {
  .frontpage-background__img {
    top: -2em;
    width: 45%;
    height: 100%;
  }
}

.front-page {
  flex-flow: row wrap;
  border-radius: var(--border-radious);
  border: 0 solid var(--cl-border-light);
  color: var(--cl-bg);
  padding-bottom: 1em;
}
.front-page .front__header {
  flex: 1 1 350px;
  padding: 3em;
}
@media (min-width: 796px) {
  .front-page .front__header {
    padding: 4em 3em;
  }
}
.front-page .front__aside {
  line-height: 1.5em;
  flex: 2 1 350px;
  padding: 2em;
  display: flex;
  flex-flow: row wrap;
  gap: var(--gap);
  align-self: flex-start;
}
@media (min-width: 796px) {
  .front-page .front__aside {
    padding: 4em 2em;
  }
}
.front-page .front__aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  gap: var(--gap);
  width: 100%;
  text-align: left;
}
.front-page .front__aside ul li {
  flex: 1 1 250px;
  border: 1px solid var(--cl-border-light);
  border-radius: var(--border-radious);
  background-color: var(--cl-bg);
  display: block;
  padding: 0.5rem;
}
.front-page .front__aside ul li:hover {
  border: 1px solid var(--cl-green);
}
.front-page .front__aside ul li a {
  display: flex;
  gap: var(--gap);
  line-height: 1.3em;
  text-decoration: none;
  font-weight: 600;
}
.front-page .front__aside ul li a:hover {
  color: var(--cl-green);
}
.front-page .front__aside p {
  flex: 1 1 250px;
  gap: var(--gap);
  display: flex;
  margin: 0;
}
.front-page .front__aside p a {
  color: var(--cl-bg);
  background-color: var(--cl-body);
  padding: 1em 1.5em;
  font-weight: 600;
}
.front-page .front__aside i {
  font-size: 2em;
}
.front-page .front__aside img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.front-page--background {
  text-align: center;
  max-width: 960px;
}
.front-page--background .front__header--background {
  padding: 2em 2em;
}
@media (min-width: 796px) {
  .front-page--background .front__header--background {
    padding: 3em 2em 1em;
  }
}
.front-page--background .front__header--background h2::after {
  margin: 5px auto;
}
.front-page--background .front__header--background img {
  margin: 0 auto 1em auto;
}
.front-page--background .front__aside--background {
  padding: 1em 2em 3em;
}
@media (min-width: 796px) {
  .front-page--background .front__aside--background {
    padding: 1em 2em;
  }
}

.front-children .front__header {
  flex-flow: row wrap;
  gap: var(--gap);
  align-items: center;
}
.front-children .front__header figure {
  flex: 1 1 auto;
}
.front-children .front__header h2 {
  flex: 1 1 auto;
}
.front-children .front__header .front__lead--children {
  flex: 1 1 100%;
  margin: 0;
  padding: 0;
}
.front-children .cards-article--child {
  flex: 1 1 300px;
}
.front-children .cards-article--child h3 {
  font-weight: normal;
  font-size: 1em;
  margin-top: 0.25em;
  font-weight: 700;
}

.frontpage-alert {
  margin: 0;
  padding: 0;
}
.frontpage-alert .cards-article--child {
  background-color: var(--cl-background-light);
  padding: 1em;
  border: 1px solid var(--cl-red);
}
.frontpage-alert .cards-article__lead--child {
  margin: 0;
}
.frontpage-alert .card-button a {
  padding: 5px 10px;
}

.with-background {
  padding: 4rem 0;
  position: relative;
  background-color: var(--cl-link);
}
.with-background .front-children .front__header {
  color: var(--cl-bg);
}

.without-background {
  position: relative;
}

.front-post-margin {
  flex: 1 1 250px;
  position: relative;
  z-index: 1;
  flex-flow: row wrap;
  gap: var(--gap);
  align-self: flex-start;
}

.subnews {
  margin: 2em auto;
}

.sec-margin {
  border: 1px solid var(--cl-border-light);
  padding: 1em;
  flex: 1 1 250px;
  background-color: var(--cl-bg);
}
.sec-margin__h2 {
  font-size: 1.2em;
  font-weight: 600;
}
.sec-margin__ul li {
  border-top: 1px solid var(--cl-border-light);
  display: block;
  margin: 5px 0;
  padding: 5px 0;
}
.sec-margin__ul li a {
  text-decoration: none;
}
.sec-margin__ul li a:hover {
  text-decoration: underline;
}
.sec-margin__ul li time {
  display: block;
  font-size: small;
  margin: 5px 0;
}
.sec-margin a.banners {
  margin: 1em auto;
  display: block;
  border: 1px solid var(--cl-border-light);
  padding: 2px;
}
.sec-margin a.banners-with-text {
  margin: 1em 0;
  display: block;
  border: 1px solid var(--cl-border-light);
  padding: 0.5rem;
  text-decoration: none;
}
.sec-margin a.banners-with-text figure {
  width: 100%;
  flex-flow: row nowrap;
  align-items: center;
}
.sec-margin a.banners-with-text figure img, .sec-margin a.banners-with-text figure i {
  flex: 1 1 30px;
  font-size: 1.2em;
  font-weight: 700;
  margin: 0;
}
.sec-margin a.banners-with-text figure figcaption {
  font-size: 1em;
  font-weight: 700;
  text-decoration: underline;
  flex: 1 1 100%;
}

.sec-bottom-logos {
  margin: 2rem auto;
  text-align: center;
}
.sec-bottom-logos h2 {
  margin: 2rem auto;
  font-size: 1em;
  font-weight: 700;
}
.sec-bottom-logos__content {
  flex-flow: row wrap;
  flex: 1 1 auto;
  justify-content: center;
  align-content: center;
  gap: 1.5em;
}

.entry-header {
  padding: 3rem 0;
  color: var(--cl-bg);
  background-image: url("http://localhost/www/test/files/2022/04/milad-fakurian-u8Jn2rzYIps-unsplash.jpg");
}
.entry-header .breadcrumbs,
.entry-header p {
  margin: 1rem auto;
  z-index: 1;
  position: relative;
  width: var(--wrapper-content-width);
}
.entry-header h2 {
  margin: 2rem auto;
  z-index: 1;
  position: relative;
  width: var(--wrapper-content-width);
  font-size: 2em;
  font-weight: 700;
}
@media (min-width: 760px) {
  .entry-header h2 {
    font-size: 4em;
  }
  .entry-header h2 span.entry-h2 {
    width: 80%;
    display: inline-block;
  }
  .entry-header h2 span.archive-h {
    width: 100%;
    display: inline;
  }
}
.entry-header a {
  color: var(--cl-bg);
}
.entry-header .breadcrumbs span {
  display: inline-block;
  margin: 0 5px;
}
.entry-header .resizer {
  margin-left: 10px;
}
.entry-header .resizer .sm {
  font-size: 0.85em;
}
.entry-header .resizer .md {
  font-size: 1em;
}
.entry-header .resizer .lg {
  font-size: 1.15em;
}
.entry-header button {
  background-color: transparent;
  border: 1px solid var(--cl-border-alpha);
  margin-left: 5px;
  color: var(--cl-bg);
  width: 40px;
  height: 40px;
  line-height: 30px;
  vertical-align: middle;
  border-radius: 50%;
}

.entry-column {
  flex-flow: row wrap;
}

.entry-content {
  line-height: 1.7em;
  margin: 2em 0 2rem;
  flex: 3 1 600px;
  font-size: 1.1em;
}
.entry-content h2 {
  font-size: 1.3em;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.5em;
}
.entry-content h3 {
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 1.5rem;
}
.entry-content ul:not([class]) li {
  padding-left: 0.5em;
  margin: 1rem auto;
}
.entry-content ul:not([class]) li ul {
  font-size: 0.95em;
  margin: 1rem 0.5rem;
}
.entry-content ul:not([class]) li::marker {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-size: 1em;
  font-weight: 700;
  color: var(--cl-link);
}
.entry-content .my-calendar-nav ul li::marker {
  content: none;
}
.entry-content ol:not([class]) li {
  padding-left: 0.25em;
  margin: 1rem auto;
}
.entry-content a,
.entry-content strong {
  font-weight: 700;
}
.entry-content .tags {
  margin: 2rem 0;
}
.entry-content .tags a {
  display: inline-block;
  margin: 5px 5px 5px 0;
  padding: 0.5rem 1rem;
  background-color: var(--cl-link);
  color: var(--cl-bg);
  text-decoration: none;
  border-radius: var(--border-radious);
}
.entry-content .tags a:hover {
  background-color: var(--cl-link-hover);
}
.entry-content a[href$=".pdf"],
.entry-content a[href$=".odt"],
.entry-content a[href$=".pptx"],
.entry-content a[href$=".doc"],
.entry-content a[href$=".docx"] {
  padding: 5px 10px;
  border: 1px solid var(--cl-border-light);
  display: inline-block;
  margin: 0;
  border-radius: var(--border-radious);
}
.entry-content a[href$=".pdf"]::before,
.entry-content a[href$=".odt"]::before,
.entry-content a[href$=".pptx"]::before,
.entry-content a[href$=".doc"]::before,
.entry-content a[href$=".docx"]::before {
  content: "\f56d";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  color: var(--cl-link);
  font-size: 1.5em;
  margin-right: 10px;
}
.entry-content a[target=_blank]::after {
  content: "\f35d";
  font-family: "Font Awesome 5 Free";
  font-size: 1em;
  font-weight: 700;
  color: var(--cl-link);
  margin-left: 5px;
}
.entry-content blockquote {
  background-color: var(--cl-background-light);
  padding: 1rem 2rem;
  border-left: 5px solid var(--cl-green);
  border-radius: var(--border-radious);
  margin: 2rem 0;
}
.entry-content p img {
  margin: 1rem auto;
}
.entry-content .entry__figure {
  margin: 1rem auto 2rem;
}
.entry-content .entry__figure img {
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 760px) {
  .entry-content h2 {
    font-size: 1.5em;
  }
}
@media (min-width: 1030px) {
  .entry-content {
    padding-right: 2rem;
  }
}
.entry-content .subpages-content {
  margin: 2em 0;
}
.entry-content .subpages-content ul {
  display: flex;
  flex-flow: row wrap;
  gap: var(--gap);
  width: 100%;
}
.entry-content .subpages-content ul li {
  flex: 1 1 250px;
  border: 1px solid var(--cl-link);
  border-radius: var(--border-radious);
  background-color: var(--cl-bg);
  display: flex;
  padding: 0.5rem;
  gap: var(--gap);
  color: var(--cl-link);
}
.entry-content .subpages-content ul li::before {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}
.entry-content .subpages-content ul li:hover {
  border: 1px solid var(--cl-green);
}
.entry-content .subpages-content ul li a {
  line-height: 1.3em;
  text-decoration: none;
  font-weight: 600;
}
.entry-content .subpages-content ul li a:hover {
  text-decoration: underline;
  color: var(--cl-link-hover);
}
.entry-content .prev-next {
  flex-flow: row wrap;
}
.entry-content .prev-next a {
  flex: 1 1 300px;
  text-decoration: none;
  flex-flow: row nowrap;
  padding: 0.5rem;
  border: 1px solid var(--cl-border-light);
  line-height: 1.2em;
}
.entry-content .prev-next img {
  flex: 1 1 30%;
  width: 100%;
  max-width: 150px;
  height: 100%;
  align-self: flex-start;
  -o-object-fit: cover;
     object-fit: cover;
}
.entry-content .prev-next p {
  flex: 1 1 70%;
}
.entry-content .prev-next .next p {
  text-align: right;
}
.entry-content .prev-next p span {
  display: block;
  font-size: x-small;
  letter-spacing: 1em;
}
.entry-content .entry-content__footer {
  margin: 3rem auto;
}

.resize-sm {
  font-size: inherit;
}

.resize-md {
  font-size: 1.1em;
}

.resize-lg {
  font-size: 1.5em;
}

.entry-aside {
  flex: 1 1 300px;
  margin: -2em 0 2em;
  position: relative;
}
.entry-aside h2 {
  font-size: 1.5em;
  font-weight: 900;
  margin-bottom: 1rem;
}
.entry-aside .cards {
  padding: 1rem;
  border: 1px solid var(--cl-border-light);
  border-radius: var(--border-radious);
  background-color: var(--cl-background-light);
}

.cards-article-aside {
  border-top: 1px solid var(--cl-border-light);
  margin-bottom: 1rem;
  padding-top: 1rem;
}
.cards-article-aside__link {
  gap: 1rem;
  text-decoration: none;
}
.cards-article-aside__link time {
  font-size: 0.85em;
}
.cards-article-aside figure {
  flex: 1 1 150px;
}
.cards-article-aside figure img {
  width: 100%;
  max-width: 150px;
}
.cards-article-aside__header {
  flex: 1 1 100%;
}
.cards-article-aside__header h3 {
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 1em;
}

.aside-submenu {
  border: 1px solid var(--cl-border-light);
  border-radius: var(--border-radious);
  margin-bottom: 2rem;
  background-color: var(--cl-background-light);
}
.aside-submenu__list {
  padding: 0;
  margin: 0;
}
.aside-submenu__list a {
  border-top: 1px solid var(--cl-border-light);
  padding: 1rem;
  display: block;
  text-decoration: none;
}
.aside-submenu__list a.link-parent {
  border-top: 0 none;
  background-color: var(--cl-green);
  color: var(--cl-dark);
}
.aside-submenu__list a.link-parent i {
  margin-right: 5px;
}
.aside-submenu__list a:hover,
.aside-submenu__list .current_page_item a {
  background-color: var(--cl-link);
  color: var(--cl-bg);
}

.archive-content {
  margin: 2rem auto;
  gap: 1em;
  flex: 8 1 800px;
  align-self: flex-start;
}
.archive-content .cards-article--news {
  flex: 1 1 300px;
  padding: 0;
}
.archive-content .cards-article__lead {
  display: block;
}
.archive-content header {
  padding: 1.5rem;
  line-height: 1.5em;
}
.archive-content .cards-article__lead, .archive-content time {
  color: var(--cl-body);
}

.front-post-margin--archive {
  margin: 2rem auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5em;
}
.gallery img {
  margin: 0 auto;
  text-align: center;
}
.gallery .wp-caption-text {
  margin: 0.5rem;
  text-align: center;
  font-size: 0.8em;
  line-height: 1.1em;
}
@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(5, 1fr);
  }
}

.navigation {
  margin: 1em auto;
  width: 90%;
}
.navigation ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.navigation li {
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--cl-border-light);
  margin: 0.5rem;
  border-radius: var(--border-radious);
}
.navigation a,
.navigation .current {
  display: block;
  padding: 0.5rem;
  text-decoration: none;
}
.navigation a:hover {
  background-color: var(--cl-bg);
  color: var(--cl-link);
}

.page-grid {
  flex-flow: row wrap;
}
.page-grid__figure {
  flex: 1 0 250px;
  border: 1px solid var(--cl-border-light);
}
.page-grid__figure figcaption {
  text-align: center;
  padding: 1rem;
  margin: 1rem auto;
  line-height: 1.5em;
}
.page-grid__figure img {
  margin: 1rem auto;
  max-width: 100px;
}
.page-grid__figure h3 {
  font-size: 1.5em;
  font-weight: 900;
  margin: 0 auto;
}
.page-grid__figure p {
  margin: 0.5rem auto;
}
.page-grid__figure ul {
  text-align: left;
}

table {
  width: 100%;
  margin: 20px 0 20px 0;
  background-color: #CECECE;
}

table td {
  background-color: #FFF;
  padding: 10px;
  text-align: center;
  font-size: 0.75em;
  line-height: normal;
  border: 1px solid #E6E6E6;
}

.footer-page {
  width: 100%;
  padding: 0 0 4em;
  background-color: var(--cl-blue-dark);
  font-size: 1em;
  margin-top: 5em;
  color: var(--cl-bg);
  background-image: url("https://www.powiatwodzislawski.pl/powiat/media-pw2022/pic/background-footer.jpg");
  position: relative;
}
.footer-page * {
  position: relative;
  z-index: 1;
}
.footer-page__wrapper {
  flex-flow: row wrap;
  gap: var(--gap);
}
.footer-page a {
  color: var(--cl-bg);
}
.footer-page p {
  margin: 2rem auto;
  text-align: center;
  max-width: 90%;
}
.footer-page .to-top {
  font-size: 2em;
  padding-top: 0.5em;
  margin: 2em auto;
  text-align: center;
  display: block;
}
.footer-page ul {
  margin: 1.5em 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.footer-page ul li {
  margin: 5px;
  padding: 0;
  display: inline-block;
}
.footer-page ul.social {
  font-size: 2em;
}

.owl-nav {
  margin: 0 auto;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-carousel-bottom::after {
  content: "";
  display: block;
  width: 100%;
  height: 50px;
  background-color: transparent;
}

.slider .owl-dots {
  margin: -70px auto 5px;
  z-index: 1;
  position: relative;
}

.owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-dots .owl-dot span {
  width: 30px;
  height: 30px;
  margin: 0;
  background: var(--cl-link);
  display: block;
  transition: opacity 200ms ease;
  border-radius: 50%;
  border: 0 none;
}

.owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--cl-bg);
  width: 30px;
  height: 30px;
  border: 0 none;
  border-radius: 50%;
}

.owl-prev,
.owl-next {
  display: none;
  visibility: hidden;
}

.owl-dots button {
  border: none;
  color: var(--cl-bg);
  background-color: var(--cl-link);
  margin: 5px 5px 0 5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
}
.owl-dots .active button {
  background-color: var(--cl-bg);
  color: var(--cl-link);
}

.cookiealert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0 !important;
  z-index: 999;
  opacity: 0;
  border-radius: 0;
  background: var(--cl-body);
  transform: translateY(100%);
  transition: all 500ms ease-out;
  color: var(--cl-bg);
}

.cookiealert-container {
  width: 90%;
  padding: 1em 0;
  margin: 0 auto;
  font-size: 0.9em;
  line-height: 1.4em;
}

.cookiealert.show {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 500ms;
}

.cookiealert a {
  text-decoration: underline;
}

.cookiealert .acceptcookies {
  vertical-align: baseline;
  border: 0 none;
  background-color: var(--cl-link);
  color: var(--cl-bg);
  padding: 0.5em 1em;
}/*# sourceMappingURL=style.css.map */