:root {
  --ff-primary: "Inter", sans-serif;
  --ff-second: "Inter", serif;
  --cl-body: rgb(25, 25, 26);
  --cl-bg: #fff;
  --cl-theme: rgb(0, 133, 145);
  --cl-link: rgb(0, 133, 145);
  --cl-link-hover: rgb(17, 190, 206);
  --cl-overlay: rgba(3, 35, 37, 0.6);
  --cl-overlay-light: rgba(7, 89, 97, 0.6);
  --cl-overlay-none: transparent;
  --cl-border: rgb(214, 214, 214);
  --cl-border-light: rgb(230, 230, 230);
  --cl-accent: rgb(0, 133, 145);
  --cl-accent2: rgba(224, 230, 236, 1);
  --cl-accent3: rgb(239, 187, 10);
  --wrapper-max-width: 1280px;
  --wrapper-site-width: min(2100px, 100%);
  --wrapper-content-width: min(94%, var(--wrapper-max-width));
  --slider-height: 55vh;
  --slider-mobile-height: 30vh;
  --slider-width: 100%;
  --gap: 1rem;
  --border-radius: 0;
  --box-shadow: 0px 0px 5px 0px var(--cl-body);
}

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

*, html {
  scroll-behavior: smooth !important;
}

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;
  width: 100%;
  height: 100vh;
}

ol[class],
ul[class] {
  padding: 0;
  margin: 0 auto;
  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: none;
          text-decoration-skip-ink: none;
}

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;
}

.clear {
  clear: both;
  display: block;
  height: 0px;
  width: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-size: 18px;
  color: var(--cl-body);
  background-color: var(--cl-bg);
  font-family: var(--ff-primary);
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 760px) {
  body {
    font-size: 20px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-second);
  font-weight: 500;
}

i [class~=fa],
.text-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);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

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

.skipping {
  z-index: 999;
}

.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: 1280px) {
  .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);
}

a:focus {
  outline: 2px dotted var(--cl-body);
}

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

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

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

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

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

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

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

.overlay-none::after {
  background-color: var(--cl-overlay-none);
}

hr {
  border: 0;
  height: 1px;
  background: var(--cl-accent3);
  margin: 2rem 0;
}

.top {
  position: relative;
}

.header-site {
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0.5rem;
}
@media (min-width: 1280px) {
  .header-site {
    padding: 1rem;
  }
}
.header-site__logo {
  flex: 1 1 320px;
  width: auto;
  max-width: 550px;
  margin: 0.5rem 0;
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 700;
}
.header-site__logo a {
  display: flex;
  gap: 1rem;
  text-decoration: none;
}
.header-site__logo img {
  width: 20%;
  height: auto;
}
.header-site__logo span {
  width: 55%;
}
@media (min-width: 1280px) {
  .header-site__logo {
    font-size: 1.1rem;
  }
  .header-site__logo img {
    width: 33%;
  }
}

.top-nav__second {
  flex: 1 1 320px;
}
.top-nav__second #style-toggle,
.top-nav__second #resizeButton {
  background-color: transparent;
  border: 0 none;
  cursor: pointer;
  color: var(--cl-link);
  padding: 0;
  font-size: 1.2rem;
}
.top-nav__second ul {
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.top-nav__second ul a {
  font-size: 1.2rem;
  padding: 0;
}
.top-nav__second ul img {
  width: 45px;
  height: auto;
}
@media (min-width: 1280px) {
  .top-nav__second ul {
    justify-content: flex-end;
    gap: 1.5rem;
  }
  .top-nav__second ul a {
    font-size: 1.5rem;
  }
}
.top-nav__list {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  max-width: 350px;
  height: 100%;
  overflow: auto;
  background-color: var(--cl-accent);
  margin: 0 auto;
  text-align: center;
  margin: 5px 0;
  z-index: 9999;
}
.top-nav__list a {
  display: block;
  padding: 1rem;
  font-size: 1rem;
  color: var(--cl-bg);
  font-weight: 700;
  text-decoration: none;
  background-color: var(--cl-link);
}
.top-nav__list i {
  font-size: 0.9em;
}
.top-nav__list li:first-child {
  padding-top: 100px;
}
.top-nav__list li ul {
  display: none;
}
@media (min-width: 1280px) {
  .top-nav__list {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    gap: 0;
    top: auto;
    right: auto;
    width: 100%;
    max-width: none;
    height: auto;
    overflow: visible;
    text-align: left;
    justify-content: flex-start;
  }
  .top-nav__list a {
    color: var(--cl-bg);
    display: block;
    text-align: center;
    width: 100%;
    padding: 1rem 2rem;
  }
  .top-nav__list li:last-child,
  .top-nav__list .last-child {
    margin-left: auto;
  }
  .top-nav__list li:last-child a,
  .top-nav__list .last-child a {
    background-color: var(--cl-link-hover);
    padding: 1rem;
  }
  .top-nav__list li:first-child {
    padding-top: 0;
  }
  .top-nav__list li:first-child a {
    border-left: 0 none;
  }
  .top-nav__list li:hover a {
    background-color: var(--cl-link-hover);
    color: var(--cl-bg);
  }
  .top-nav__list li:hover ul {
    display: block;
    position: absolute;
    top: auto;
    left: auto;
    width: 13.85%;
    background-color: var(--cl-link-hover);
  }
  .top-nav__list li:hover ul a {
    color: var(--cl-bg);
  }
}
.top-nav__list a:hover,
.top-nav__list .current_page_item a,
.top-nav__list .current-menu-item a,
.top-nav__list .current-post-ancestor a,
.top-nav__list .current-menu-parent a,
.top-nav__list .current-post-parent a,
.top-nav__list .current-page-ancestor a {
  background-color: var(--cl-link-hover);
  color: var(--cl-bg);
}

.button-menu {
  position: absolute;
  top: 1.5rem;
  right: 0.5rem;
  z-index: 99999;
  width: 41px;
  height: 41px;
  background-color: #000;
  border: 0 none;
  color: var(--cl-bg);
  line-height: 40px;
}
@media (min-width: 1280px) {
  .button-menu {
    display: none;
  }
}
.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";
}
.button-menu:hover {
  background-color: var(--cl-link);
}

#header {
  transition: top 2s;
  background-color: var(--cl-bg);
}

#header.fixed {
  position: fixed;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.hero {
  width: 100%;
  position: relative;
  flex-direction: column;
  justify-content: center;
  background-color: var(--cl-accent);
  margin-top: 1px;
}
.hero__header {
  position: relative;
  z-index: 1;
  color: var(--cl-bg);
  margin-top: 50px;
}
.hero__header h2 {
  font-size: 3rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
}
.hero__header h3 {
  font-size: 1.5rem;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-top: 1rem;
}
.hero__header-home {
  margin-top: 0;
  min-height: 50vh;
  margin: 0 auto;
  width: 90%;
  max-width: 740px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem;
  /* &::after {
      content: "";
      position: absolute;
      width: 85%;
      height: 85%;
      background-color: var(--cl-accent);
      opacity: 0.7;
      z-index: -1;
      top: 7%;
      left: 7%;
      border-radius: 60% 20% 60% 30% / 40% 70% 30% 46%;
  }  */
}
@media (min-width: 768px) {
  .hero__header-home {
    margin: 0 0 0 2.5%;
    padding: 0 4rem 0 6rem;
  }
}
.hero__header-home::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  background-color: var(--cl-accent);
  opacity: 0.95;
  z-index: -1;
  top: 5%;
  left: 2%;
  border-radius: 73% 27% 66% 34%/44% 78% 22% 56%;
}
.hero__figure {
  width: 100%;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("../pic/hero2__.webp?new");
}
.hero__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.hero__figure video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: none;
  z-index: 1;
}
@media (min-width: 1280px) {
  .hero__figure video {
    display: block;
  }
}

.boxes {
  justify-content: space-between;
  flex-flow: row wrap;
  gap: 1px;
  margin-top: 1px;
}

.box {
  flex: 1 1 300px;
  text-align: center;
  position: relative;
  line-height: 1.2em;
  text-decoration: none;
  padding-bottom: 20px;
  border: 0 none;
  border-radius: var(--border-radius);
  background-color: var(--cl-accent);
}
.box__figure {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
.box__figure img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}
.box__figure i {
  display: block;
  width: 70px;
  height: 70px;
  background-color: var(--cl-accent);
  color: var(--cl-bg);
  border-radius: 50%;
  position: relative;
  margin: -35px auto 0;
  padding-top: 20px;
  font-size: 1.5rem;
  box-shadow: 0px -3px 2px rgba(0, 0, 0, 0.6);
}
.box__figure figcaption {
  margin-top: 10px;
  color: var(--cl-bg);
}
.box__figure figcaption h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 10px 20px;
}
.box__figure figcaption p {
  font-size: 1rem;
  margin: 0 20px;
}
.box__figure figcaption a {
  color: var(--cl-bg);
}

.grid-art {
  grid-template-rows: repeat(auto, 1fr);
  grid-template-columns: repeat(auto, 1fr);
  gap: var(--gap);
  margin-top: 2em;
}
@media (min-width: 1024px) {
  .grid-art {
    grid-template-rows: repeat(auto, 1fr);
    grid-template-columns: repeat(6, 1fr);
  }
}
.grid-art article {
  position: relative;
  border: 1px solid var(--cl-accent);
  border-radius: var(--border-radius);
}
.grid-art article a {
  display: block;
}
.grid-art article img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  background-color: var(--cl-accent);
}
.grid-art article header {
  padding: 1rem;
}
.grid-art article header h3 {
  font-size: 1rem;
  font-weight: 900;
}
.grid-art article header p {
  font-size: 1rem;
  margin: 0 0;
}
.grid-art article time {
  font-size: 0.8rem;
  display: block;
  margin-bottom: 10px;
}
.grid-art article .cards-article__lead {
  display: none;
}
@media (min-width: 640px) {
  .grid-art article:nth-child(1) {
    grid-row: span 1;
    grid-column: span 2;
  }
  .grid-art article:nth-child(1) header {
    position: absolute;
    bottom: 0;
    left: auto;
    width: 100%;
    background-color: var(--cl-accent);
  }
  .grid-art article:nth-child(1) header h3 {
    font-size: 1.2rem;
  }
  .grid-art article:nth-child(1) a {
    color: var(--cl-bg);
  }
  .grid-art article:nth-child(1) img {
    height: 300px;
    border-radius: var(--border-radius);
  }
}

.news-loop {
  padding: 1rem;
}
@media (min-width: 640px) {
  .news-loop {
    padding: 2rem;
  }
}
.news-loop h2 {
  font-size: 2rem;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 900;
  margin: 2rem 0 -2rem 0;
}

.logos__header {
  text-align: center;
  margin-top: 2rem;
}
.logos__header h2 {
  font-size: 1.2rem;
  font-weight: 900;
}
.logos__header p {
  font-size: 0.9rem;
}
.logos__div {
  justify-content: center;
  flex-flow: row wrap;
  gap: 1rem;
  text-align: center;
  align-items: center;
  width: 95%;
  margin: 0 auto;
}
.logos__div .logobox {
  flex: 1 1 120px;
  width: 120px;
  text-align: center;
}
.logos__div img {
  max-width: 120px;
  margin: 0 auto;
  display: block;
}

.padding-for-100 {
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .padding-for-100 {
    padding: 0 2rem;
  }
}

.hero-entry {
  min-height: 100px;
  padding: 2rem 0;
  text-align: center;
}

.breadcrumbs {
  position: relative;
  color: var(--cl-bg);
  z-index: 1;
  font-size: 0.9rem;
}
.breadcrumbs a {
  color: var(--cl-bg);
}
.breadcrumbs time {
  display: block;
  margin: 1rem auto;
  font-size: 0.9rem;
}
.breadcrumbs .bull {
  margin: 0 1rem;
}
.breadcrumbs button {
  border: 0 none;
  background-color: var(--cl-accent);
  border-radius: 5px;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  color: var(--cl-bg);
  cursor: pointer;
}
.breadcrumbs .author-info {
  margin: 1rem auto;
  display: block;
  width: auto;
  text-align: center;
}
.breadcrumbs .author-info img {
  width: 75px;
  height: 75px;
  display: block;
  border-radius: 50%;
  border: 5px solid var(--cl-accent);
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
  background-color: var(--cl-bg);
  padding: 0.5rem;
}
.breadcrumbs .author-info .author-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.entry__header h1 {
  font-weight: 900;
  font-size: 3rem;
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: normal;
  margin-bottom: 1rem;
}
.entry__header h2 {
  font-weight: 700;
  font-size: 1.5rem;
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  line-height: 1.5;
}

.entry__content {
  flex-flow: row wrap;
  gap: 5em;
}
.entry__content-left {
  flex: 10 1 450px;
  margin-top: 2rem;
  line-height: 1.7;
}
.entry__content-left h1,
.entry__content-left h2,
.entry__content-left h3,
.entry__content-left h4,
.entry__content-left h5,
.entry__content-left h6 {
  margin: 1rem 0;
}
.entry__content-left ul:not([class]),
.entry__content-left ol:not([class]) {
  margin: 2rem;
}
.entry__content-left ul:not([class]) li {
  padding-left: 0.5em;
  margin: 1rem auto;
}
.entry__content-left ul:not([class]) li ul {
  font-size: 0.95em;
  margin: 1rem 0.5rem;
}
.entry__content-left ul:not([class]) li::marker {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-size: 1em;
  font-weight: 700;
  color: var(--cl-link);
}
.entry__content-left ol:not([class]) {
  list-style: decimal;
}
.entry__content-left ol:not([class]) li {
  padding-left: 0.25em;
  margin: 1rem auto;
}
.entry__content-left h2 {
  font-weight: 700;
  font-size: 2rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: normal;
  margin: 2rem 0;
}
.entry__content-left h3 {
  font-weight: 700;
  font-size: 1.5rem;
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  line-height: normal;
  margin: 2rem 0;
}
.entry__content-left .entry__header h1 {
  font-weight: 900;
  font-size: 3rem;
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: normal;
  margin-bottom: 1rem;
}
.entry__content-left .entry__header h2 {
  font-weight: 700;
  font-size: 1.5rem;
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  line-height: 1.5;
}
.entry__content-left figure,
.entry__content-left .wp-caption {
  margin: 2rem auto;
  width: auto !important;
  max-width: 100%;
}
.entry__content-left figure img,
.entry__content-left .wp-caption img {
  max-width: 100%;
  margin: 0 auto;
}
.entry__content-left figure figcaption,
.entry__content-left .wp-caption figcaption {
  margin: 0.5rem auto 0.5rem;
  text-align: center;
  font-size: 0.8rem;
}
.entry__content-left p img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
}
.entry__content-left .gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
  margin: 2em auto;
}
.entry__content-left .gallery .gallery-item {
  margin: 0 auto;
  text-align: center;
}
.entry__content-left .gallery .wp-caption-text {
  margin: 0.5rem;
  text-align: center;
  font-size: 0.8em;
  line-height: 1.1em;
}
@media (min-width: 768px) {
  .entry__content-left .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
.entry__content-left blockquote {
  font-style: italic;
  font-size: 1.2rem;
  padding: 0 1rem;
  color: rgb(44, 47, 49);
  border-left: 5px solid rgb(81, 85, 88);
}
.entry__content-left a[href$=".pdf"],
.entry__content-left a[href$=".odt"],
.entry__content-left a[href$=".pptx"],
.entry__content-left a[href$=".doc"],
.entry__content-left a[href$=".docx"],
.entry__content-left a[href$=".wmv"],
.entry__content-left a[href$=".mpeg"] {
  padding: 0.5rem;
  border: 1px solid var(--cl-accent2);
  display: block;
  margin: 0.5rem 0;
  text-decoration: none;
  line-height: 1.5rem;
}
.entry__content-left a[href$=".pdf"]::before,
.entry__content-left a[href$=".odt"]::before,
.entry__content-left a[href$=".pptx"]::before,
.entry__content-left a[href$=".doc"]::before,
.entry__content-left a[href$=".docx"]::before,
.entry__content-left a[href$=".wmv"]::before,
.entry__content-left a[href$=".mpeg"]::before {
  content: "\f56c";
  font-family: "Font Awesome 5 Free";
  font-size: 1em;
  font-weight: 700;
  color: var(--cl-accent-b);
  font-size: 1.5em;
  margin-right: 10px;
}
.entry__content-left a[target=_blank]:not(:has(img))::after {
  content: "\f08e";
  font-family: "Font Awesome 5 Free";
  font-size: 1em;
  font-weight: 700;
  color: var(--cl-link);
  margin-left: 5px;
}
.entry__content-left .entry-content__footer {
  margin: 4rem auto;
}
.entry__content-left .tags a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--cl-accent3);
  color: var(--cl-body);
  margin: 5px 5px 0 0;
}
.entry__content-left .prev-next {
  flex-flow: row wrap;
  width: 100%;
}
.entry__content-left .prev-next a {
  flex: 1 1 320px;
  text-decoration: none;
  flex-flow: row nowrap;
  line-height: 1.2em;
  padding: 0.25em;
  gap: 10px;
  border: 1px solid var(--cl-accent);
}
.entry__content-left .prev-next img {
  width: 100%;
  max-width: 100px;
  height: auto;
  max-height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
.entry__content-left .prev-next p {
  flex: 1 1 70%;
  padding: 0.5em;
  margin: 0;
}
.entry__content-left .prev-next .next p {
  text-align: right;
}
.entry__content-left .prev-next .next i {
  margin-left: 10px;
}
.entry__content-left .prev-next .prev i {
  margin-right: 10px;
}
.entry__content-left .prev-next p span {
  display: block;
}
.entry__content-left .prev-next strong {
  display: block;
  margin-top: 0.5rem;
}
.entry__content-left .doc-info {
  margin: 2rem 0;
}
.entry__content-left .doc-info .ul-share {
  gap: 1rem;
  align-items: center;
}
.entry__content-left .doc-info .ul-share button {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 35px;
  font-size: 1.2rem;
  background-color: var(--cl-accent2);
  border: 1px solid var(--cl-link-hover);
  color: var(--cl-link);
  cursor: pointer;
}
.entry__content-left iframe {
  margin: 1rem auto;
  border: 0 none;
}
.entry__content-left .fb-post {
  display: flex;
  justify-content: center;
  margin: 1rem auto;
}
.entry__content-left .fb-post iframe {
  width: 100% !important;
  margin: 1rem auto;
  max-width: 500px;
  min-height: 100px;
}
.entry__content-left .iframemap {
  margin: 1rem auto;
  width: 100%;
  height: 300px;
}
.entry__content-left .boxes {
  gap: 1rem;
  margin: 1rem 0;
}
.entry__content-left .box {
  border: 1px solid var(--cl-accent2);
  padding: 1rem;
  background-color: transparent;
  text-align: left;
  line-height: normal;
}
.entry__content-right {
  flex: 2 1 200px;
  margin-top: 3rem;
}

.aside-submenu {
  width: 100%;
  /* position: -webkit-sticky;
  position: sticky;
  top: 50px; */
}
.aside-submenu h3 {
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 2rem;
}
.aside-submenu a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem;
  display: block;
  background-color: var(--cl-accent);
  color: var(--cl-bg);
  margin: 1px 0;
  border: 1px solid var(--cl-accent);
}
.aside-submenu a i {
  margin-right: 10px;
}
.aside-submenu a:hover,
.aside-submenu .current_page_item a {
  background-color: var(--cl-bg);
  color: var(--cl-link);
}

.entry__posts .entry-content__figure {
  margin: 2rem 0;
}

.columnloop__posts {
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
}
.columnloop__posts article {
  flex: 1 1 250px;
  font-size: 1rem;
  border: 0 none;
}
.columnloop__posts article a {
  color: var(--cl-body);
  text-decoration: none;
  display: block;
}
.columnloop__posts article time {
  font-size: 0.8rem;
  display: block;
  margin: 10px 0 0 0;
  padding: 0 0.5rem;
}
.columnloop__posts article h3 {
  font-size: 1.2rem;
  font-weight: 900;
  text-decoration: underline;
  margin: 0.5rem 0;
  padding: 0 0.5rem;
}
.columnloop__posts article p {
  padding: 0 0.5rem;
}
.columnloop__posts article img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  background-color: var(--cl-accent);
}

.subpages-content__list {
  margin: 2rem 0;
  padding: 0;
  justify-content: space-between;
  flex-flow: row wrap;
}
.subpages-content__list li {
  flex: 1 1 200px;
  background-color: var(--cl-bg);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cl-accent);
}
.subpages-content__list li a {
  display: block;
  text-align: center;
  line-height: normal;
  text-decoration: none;
}

.entry__content-right .aside-sec__h2 {
  margin: 1rem 0;
  font-size: 1.2rem;
  font-weight: 700;
}
.entry__content-right article a {
  justify-content: space-between;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1.2;
  margin-top: 1rem;
  padding-bottom: 1rem;
  border: 1px solid var(--cl-accent2);
  padding: 0.25rem;
}
.entry__content-right article a img {
  flex: 1 1 75px;
  width: 70px;
  height: 75px;
  -o-object-fit: cover;
     object-fit: cover;
}
.entry__content-right article a header {
  flex: 1 1 100%;
}
.entry__content-right article a h3 {
  font-size: 0.85rem;
  font-weight: 600;
}
.entry__content-right article a time {
  margin-top: 5px;
  font-size: 0.7rem;
}

table {
  width: 100%;
  margin: 1rem 0;
  background-color: #CECECE;
}

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

table th {
  font-weight: 700;
  font-size: 0.8rem;
}

.footer-site {
  font-size: 0.8rem;
  text-align: center;
  margin: 4rem auto 0;
  color: var(--cl-bg);
  background-color: var(--cl-accent);
  padding: 4rem 0;
}
.footer-site a {
  font-size: 1rem;
  color: var(--cl-bg);
  text-decoration: none;
  font-weight: 700;
}

.bottom-nav ul {
  list-style: none none;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  width: auto;
  gap: 1rem;
}
.bottom-nav li {
  margin: 0;
  padding: 0;
}

.card-button a {
  padding: 1rem 1.5rem;
  background-color: var(--cl-link);
  color: var(--cl-bg);
  text-decoration: none;
  border-radius: var(--border-radius);
  position: relative;
  z-index: 1;
  display: inline-block;
  width: auto;
  transition: color 210ms ease-in;
  line-height: 1em;
  text-shadow: none;
  font-weight: 700;
}
.card-button a:hover {
  color: var(--cl-bg);
}
.card-button a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--cl-link-hover);
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: var(--border-radius);
  transition: transform 200ms ease-in;
  transform: scaleY(0);
  transform-origin: top;
}
.card-button a:hover::after {
  transform: scaleY(1);
  transform-origin: bottom;
}
.card-button a.cfs-hyperlink {
  background-color: var(--cl-accent);
  color: var(--cl-bg);
}
.card-button a.cfs-hyperlink:hover {
  color: var(--cl-bg);
}
.card-button a.cfs-hyperlink::after {
  background-color: var(--cl-link);
}
.card-button i {
  margin-left: 10px;
}

.to-top i {
  font-size: 1.5rem;
}

.wp-block-contact-form-7-contact-form-selector {
  padding: 2rem;
  background-color: var(--cl-accent2);
}

form {
  margin: 0 auto;
  width: 100%;
}
form fieldset {
  margin: 0;
  padding: 0;
  border: 0 none;
  width: 100%;
}
form input {
  padding: 5px;
  font-size: 1em;
  border: 1px solid var(--cl-accent3);
  background-color: var(--cl-bg);
  width: 100%;
}
form button {
  background-color: var(--cl-bg);
  border: 1px solid var(--cl-accent3);
  padding: 5px;
}
form .wpcf7-submit {
  display: inline;
  width: auto;
  padding: 1rem 2rem;
  text-align: center;
  margin: 0 auto;
}
form textarea {
  background-color: var(--cl-bg);
  border: 1px solid var(--cl-accent3);
  padding: 5px;
  width: 100%;
}

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

.swiper {
  width: 100%;
  min-height: 50vh;
}

.swiper-slide header {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.35s;
}

.swiper-slide-active header {
  opacity: 1;
  transform: translateY(0);
}

.swiper-pagination-bullet {
  background-color: var(--cl-link-hover);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--cl-bg);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
}

.swiper-button-next, .swiper-button-prev {
  color: var(--cl-link-hover);
  font-size: 2.5rem;
  font-weight: 700;
}

.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=main.css.map */