:root {
  --ff-primary: "Manrope", sans-serif;
  --ff-second: "Manrope", serif;
  --cl-body: rgb(0, 0 ,0);
  --cl-bg: #fff;
  --cl-theme: rgb(218, 41, 28);
  --cl-link: var(--cl-theme);
  --cl-link-hover: var(--cl-body);
  --cl-overlay: rgba(81, 80, 83, 0.5);
  --cl-overlay-light: rgba(81, 80, 83, 0.3);
  --cl-overlay-none: transparent;
  --cl-border: rgb(214, 214, 214);
  --cl-border-light: rgb(230, 230, 230);
  --cl-accent: var(--cl-theme);
  --cl-accent2: rgb(49, 50, 51);
  --cl-accent3: rgb(247, 247, 247);
  --wrapper-max-width: 1600px;
  --wrapper-site-width: 100%;
  --wrapper-content-width: min(90%, var(--wrapper-max-width));
  --gap: 1rem;
  --border-radius: 30px;
  --box-shadow: 0px 0px 5px 0px var(--cl-body);
}

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

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
}

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

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

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

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

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;
  }
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-size: 16px;
  color: var(--cl-body);
  background-color: var(--cl-bg);
  font-family: var(--ff-primary);
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 760px) {
  body {
    font-size: 18px;
  }
}

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

i [class~=fa],
.text-icon {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

strong {
  font-weight: bold;
}

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

.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-accent-b);
}

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

.top {
  margin: 1rem auto;
}

.header-site {
  align-items: center;
  justify-content: space-between;
}
.header-site__logo {
  width: 130px;
}
@media (min-width: 640px) {
  .header-site__logo {
    width: 200px;
  }
}
.header-site__logo img {
  width: 100%;
  height: auto;
  color: var(--cl-theme);
}

.top-nav {
  width: auto;
  z-index: 9;
  position: relative;
}
.top-nav__list {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  max-width: 350px;
  height: 100%;
  overflow: auto;
  background-color: var(--cl-bg);
  margin: 0 auto;
  text-align: center;
  gap: 2rem;
}
.top-nav__list a {
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--cl-hover);
}
.top-nav__list a:hover {
  color: var(--cl-link);
}
.top-nav__list li:first-child {
  padding-top: 100px;
}
@media (min-width: 1100px) {
  .top-nav__list {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    top: auto;
    right: auto;
    width: 100%;
    max-width: none;
    height: auto;
    overflow: visible;
    background-color: transparent;
    text-align: left;
  }
  .top-nav__list li:first-child {
    padding-top: 0;
  }
}
.top-nav__list-sec a {
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--cl-hover);
}
.top-nav__list-sec a:hover {
  color: var(--cl-link);
}
.top-nav .button-menu {
  z-index: 999;
  width: 35px;
  height: 35px;
  background-color: #000;
  border: 0 none;
  color: var(--cl-bg);
  line-height: 35px;
  position: relative;
}
@media (min-width: 1100px) {
  .top-nav .button-menu {
    display: none;
  }
}
.top-nav .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;
}
.top-nav .button-menu.active i::before {
  content: "\f00d";
}
.top-nav .button-menu:hover {
  background-color: var(--cl-link);
}

#style-toggle {
  background-color: transparent;
  border: 0 none;
  cursor: pointer;
}
#style-toggle i {
  color: var(--cl-body);
}

.section-silver {
  width: 100%;
  background-color: var(--cl-accent3);
}

.entry-content__subpage {
  padding: 6rem 0;
  line-height: 1.7rem;
  font-size: 1rem;
  /* div:not(.alignwide):not(.alignfull) {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  } */
}
.entry-content__subpage .wp-block-columns {
  gap: 2rem;
  margin: 2rem 0;
}
.entry-content__subpage h2 {
  font-size: 3rem;
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.4;
  text-transform: uppercase;
}
.entry-content__subpage h2.h2-big {
  font-size: 5rem;
  font-size: clamp(1.5rem, 4vw, 5rem);
}
.entry-content__subpage h3 {
  font-size: 1.6rem;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.entry-content__subpage h4 {
  font-size: 1.3rem;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.entry-content__subpage .wp-block-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.entry-content__subpage .width-80 {
  max-width: 800px;
  margin: 0 auto;
}
.entry-content__subpage .width-80 h2 {
  text-align: center;
  font-size: 2.5rem;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 6rem;
}
.entry-content__subpage .flex-red {
  gap: 0;
  width: 100%;
  flex: 1;
}
.entry-content__subpage .flex-red figure {
  width: 100%;
  height: 100%;
  margin: 0;
  position: relative;
}
.entry-content__subpage .flex-red img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.entry-content__subpage .flex-red .wp-block-column {
  align-content: center;
}
.entry-content__subpage .flex-red .wp-block-column:nth-child(1) {
  flex: 1 1 60%;
}
.entry-content__subpage .flex-red .wp-block-column:nth-child(2) {
  flex: 1 1 600px;
  position: relative;
}
@media (min-width: 781px) {
  .entry-content__subpage .flex-red .wp-block-column:nth-child(2) {
    margin-left: -10rem;
  }
}
.entry-content__subpage .flex-red .wp-block-group {
  padding: 3rem;
  border: 1rem solid var(--cl-accent);
}
@media (min-width: 781px) {
  .entry-content__subpage .flex-red .wp-block-group {
    padding-left: 13rem;
  }
}
.entry-content__subpage .flex-red-left .wp-block-column:nth-child(2) {
  flex: 1 1 60%;
  margin-left: 0;
}
.entry-content__subpage .flex-red-left .wp-block-column:nth-child(1) {
  flex: 1 1 600px;
  position: relative;
  z-index: 99;
}
@media (min-width: 781px) {
  .entry-content__subpage .flex-red-left .wp-block-column:nth-child(1) {
    margin-right: -10rem;
  }
}
@media (min-width: 781px) {
  .entry-content__subpage .flex-red-left .wp-block-group {
    padding-right: 13rem;
    padding-left: 3rem;
  }
}
.entry-content__subpage a[target=_blank]:not(:has(img))::after {
  content: "\f08e";
  font-family: "Font Awesome 5 Free";
  font-size: 1rem;
  font-weight: 700;
  color: var(--cl-link);
  margin-left: 5px;
}
.entry-content__subpage .opinions .wp-block-column {
  padding: 2rem;
  background-color: var(--cl-accent3);
}
.entry-content__subpage iframe {
  width: 100% !important;
  max-width: 100% !important;
}
.entry-content__subpage-flex {
  justify-content: space-between;
  flex-flow: row wrap;
  gap: 2rem;
  position: relative;
}
.entry-content__subpage-flex-header {
  flex: 1 1 50px;
  background-color: var(--cl-accent2);
  padding: 1rem;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  margin-top: 2rem;
  position: relative;
}
@media (min-width: 1320px) {
  .entry-content__subpage-flex-header {
    overflow: hidden;
  }
}
.entry-content__subpage-flex-header h2 {
  color: var(--cl-bg);
  text-transform: uppercase;
  position: relative;
}
@media (min-width: 1320px) {
  .entry-content__subpage-flex-header h2 {
    transform: rotate(90deg);
    transform-origin: top left;
    top: 1rem;
    left: 3rem;
    white-space: nowrap;
  }
}
.entry-content__subpage-flex-content {
  flex: 1 11 70%;
}
.entry-content__subpage-flex-reverse {
  flex-direction: row-reverse;
}
@media (min-width: 1320px) {
  .entry-content__subpage-flex-reverse header h2 {
    left: auto;
    right: -95%;
  }
}

.footer-master {
  color: var(--cl-bg);
  background-color: var(--cl-accent2);
  padding: 2rem 0;
  font-size: 0.9rem;
  text-align: center;
}
.footer-master .header-site__logo {
  margin: 1.5rem auto;
}
.footer-master .header-site__logo img {
  display: block;
  width: 90px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.footer-master .footer-nav__list {
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-flow: row wrap;
}
.footer-master .footer-nav a {
  text-decoration: none;
  color: var(--cl-bg);
}
.footer-master p {
  margin: 0.25rem auto;
  line-height: normal;
}

.wp-block-button a {
  padding: 1rem 3rem;
  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;
}
.wp-block-button a:hover {
  color: var(--cl-bg);
}
.wp-block-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;
}
.wp-block-button a:hover::after {
  transform: scaleY(1);
  transform-origin: bottom;
}
.wp-block-button a.cfs-hyperlink {
  background-color: var(--cl-accent);
  color: var(--cl-bg);
}
.wp-block-button a.cfs-hyperlink:hover {
  color: var(--cl-bg);
}
.wp-block-button a.cfs-hyperlink::after {
  background-color: var(--cl-link);
}

form {
  margin: 0 auto;
  width: 100%;
}
form fieldset {
  margin: 0;
  padding: 0;
  border: 0 none;
}
form input {
  padding: 5px;
  font-size: 1em;
  border: 1px solid var(--cl-border);
  background-color: var(--cl-bg);
}
form button {
  background-color: var(--cl-bg);
  border: 1px solid var(--cl-border);
  padding: 5px;
}

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

.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 */