:root {
  --primary: #d2232a;
  --secondary: #25408f;
  --tertiary: #ffc9cb;
  --cuaternary: #97aef4;
  --quinary: #b1060d;
  --senary: #0e225c;
  --septenary: #222222;
  --octanary: #999999;
  --nonary: #3d5ec1;
}

::selection {
  background: var(--secondary);
  color: white;
}

input[type="search"], input[type=text], input[type=email] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:focus, button:focus, textarea:focus, select:focus {
  outline: none;
  box-shadow: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 1em;
  font-family: 'Roboto Slab';
}

body.scroll-blocked {
  overflow: hidden;
}

/* Animation */

.animated {
  animation-duration: .3s;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/* Bootstrap */

table > thead tr th {
  vertical-align: bottom;
  background: #f9f9f9 !important;
  border-top: solid 2px var(--septenary) !important;
}

.form-check-input:checked {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.form-check-input:focus {
  box-shadow: 0 0 0 rgba(0 0 0 / 0%);
}

a {
  color: var(--nonary);
  font-weight: 500;
  text-decoration: none;
  transition: .3s;
}

a:hover {
  color: var(--secondary);
}

.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 rgba(0 0 0 / 0%);
}

.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
  border: none;
  border-color: transparent;
}

/* Fancybox */

.fancybox-thumbs__list a::before {
  border-color: var(--cuaternary);
}

.fancybox-progress {
  background: var(--cuaternary) !important;
}

.fancybox-thumbs {
  background: var(--septenary);
}

/* Framework */

#platform > * {
  margin: auto;
}

.figure {
  margin: 0;
  width: 100%;
}

.fnt-roboto-slab {
  font-family: 'Roboto Slab';
}

.fnt-roboto {
  font-family: 'Roboto';
}

.bg-black {
  background: var(--septenary) !important;
}

.bg-blue {
  background: var(--secondary);
}

.bg-dark-blue {
  background: var(--senary);
}

.fnt-xs {
  font-size: .8em;
}

.fnt-sm {
  font-size: .9em;
}

.fnt-md {
  font-size: 1.1em;
}

.fnt-lg {
  font-size: 1.2em;
}

.fnt-xl {
  font-size: 1.4em;
}

.fnt-xxl {
  font-size: 1.6em;
}

.fnt-red {
  color: var(--primary);
}

.fnt-blue {
  color: var(--secondary);
}

.btn-red a {
  display: block;
  padding: 7px 21px;
  background: var(--primary);
  width: fit-content;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: .3s ease;
}

.btn-red a:hover {
  background: var(--quinary);
}

.btn-blue a {
  display: block;
  padding: 7px 21px;
  background: var(--secondary);
  width: fit-content;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: .3s ease;
}

.btn-blue a:hover {
  background: var(--senary);
}

.btn-gray a {
  display: block;
  padding: 7px 21px;
  background: #f6f6f6;
  width: fit-content;
  color: var(--secondary);
  text-decoration: none;
  border-radius: 5px;
  transition: .3s ease;
}

.btn-gray a:hover {
  background: #ddd;
}

.btn-white a {
  display: block;
  padding: 7px 21px;
  background: white;
  width: fit-content;
  color: var(--secondary);
  text-decoration: none;
  border-radius: 5px;
  transition: .3s ease;
}

.btn-white a:hover {
  background: #f1f1f1;
}

.btn-black a {
  display: block;
  padding: 7px 21px;
  background: var(--septenary);
  width: fit-content;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: .3s ease;
}

.btn-black a:hover {
  background: black;
}

.btn-view-all {
  position: relative;
  z-index: 1;
  background: white;
  padding: 2px 2px 2px 15px;
}

.btn-view-all.blue {
  background: var(--secondary);
}

.btn-view-all a {
  display: flex;
  color: var(--septenary);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 600;
  transition: .3s ease;
  font-family: 'Roboto';
  white-space: nowrap;
}

.btn-view-all.blue a {
  color: white;
}

.btn-view-all a:hover {
  color: black;
  text-decoration: underline;
}

.btn-view-all.blue a:hover {
  color: white;
  text-decoration: underline;
}

.btn-banner a {
  width: 100%;
  text-align: center;
}

@media (min-width: 576px) {
  .btn-banner a {
    width: auto;
    text-align: center;
  }
}

.link-black {
  color: black;
  text-decoration: none;
  font-style: normal;
  transition: .3s ease;
}

.link-black:hover {
  color: var(--secondary);
}

.link-white {
  color: rgba(255 255 255 / 100%);
  text-decoration: none;
  font-style: normal;
  transition: .3s ease;
}

.link-white:hover {
  color: rgba(255 255 255 / 70%);
}

.link-red {
  color: var(--primary);
  text-decoration: none;
  font-style: normal;
  transition: .3s ease;
}

.link-red:hover {
  color: var(--quinary);
}

.link-blue {
  color: var(--secondary);
  text-decoration: none;
  font-style: normal;
  transition: .3s ease;
}

.link-blue:hover {
  color: var(--senary);
}

#navigation hr {
  border-top: solid 1px white;
}

.aspect-16-9 {
  position: relative;
}

.aspect-16-9 img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.aspect-4-4 {
  position: relative;
}

.aspect-4-4 img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4;
  object-fit: cover;
}

.title h1 {
  font-size: 2em;
}

.title h2 {
  font-size: clamp(1rem, 2vw, 1.5rem);
}

.title-primary h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.title-secondary h2 {
  font-size: 1.2em;
}

.rounded-img {
  overflow: hidden;
  border-radius: 5px;
  border: solid 1px #f9f9f9;
}

.rounded-basic {
  border-radius: 5px;
}

.rounded-responsive {
  overflow: hidden;
  border-radius: 0;
}

@media (min-width: 992px) {
  .rounded-responsive {
    border-radius: 5px;
  }
}

.sticky {
  z-index: 1 !important;
  top: 60px;
}

.scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  flex-wrap: nowrap;
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
}

@media (min-width: 1200px) {
  .scrolling-wrapper {
    overflow-x: hidden;
    flex-wrap: wrap;
  }
}

.scrolling-wrapper > div {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.scrolling-wrapper::-webkit-scrollbar {
  width: auto;
  height: 2px !important;
}

.scrolling-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.btn-form {
  display: block;
  padding: 7px 21px;
  background: var(--secondary);
  width: fit-content;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: .3s ease;
  border: none;
  height: 45px;
}

.btn-form:hover {
  background: var(--senary);
}

/* - */

.scrolling-wrapper-sm {
  overflow-x: scroll;
  overflow-y: hidden;
  flex-wrap: nowrap;
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
}

@media (min-width: 768px) {
  .scrolling-wrapper-sm {
    overflow-x: hidden;
    flex-wrap: wrap;
  }
}

.scrolling-wrapper-sm > div {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.scrolling-wrapper-sm::-webkit-scrollbar {
  width: auto;
  height: 2px !important;
}

.scrolling-wrapper-sm::-webkit-scrollbar-track {
  background: transparent;
}

/* - */

.scrolling-wrapper-lg {
  overflow-x: scroll;
  overflow-y: hidden;
  flex-wrap: nowrap;
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
}

@media (min-width: 992px) {
  .scrolling-wrapper-lg {
    overflow-x: hidden;
    flex-wrap: wrap;
  }
}

.scrolling-wrapper-lg > div {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.scrolling-wrapper-lg::-webkit-scrollbar {
  width: auto;
  height: 2px !important;
}

.scrolling-wrapper-lg::-webkit-scrollbar-track {
  background: transparent;
}

.copyright .rombhus {
  font-style: italic;
  color: white;
  font-family: cursive;
  font-family: "Times New Roman", Times, serif;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
}

/* Wordpress */

.pagination {
  display: flex;
  justify-content: center;
  margin: 2em 0;
}

.pagination ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 0.5em;
  margin: 0;
}

.pagination li {
  display: inline-block;
}

.pagination a, .pagination span {
  display: flex;
  text-decoration: none;
  border: var(--octanary);
  border-radius: 5px;
  color: var(--septenary);
  transition: all 0.3s ease;
  min-width: 40px;
  height: 40px;
  padding: 5px;
  justify-content: center;
  align-items: center;
}

.pagination a:hover {
  background-color: #f0f0f0;
}

.pagination .active span, .pagination .current {
  background-color: var(--septenary);
  color: white;
  border-color: var(--septenary);
  font-weight: bold;
}

.pagination li:first-child a, .pagination li:first-child span, .pagination li:last-child a, .pagination li:last-child span {
  border: none;
  background: transparent;
  color: var(--septenary);
  padding-left: 0;
  padding-right: 0;
}

.pagination li:first-child a:hover, .pagination li:last-child a:hover {
  background-color: #f0f0f0;
}

/* Styles */

html.open {
  height: 100vh;
  overflow: hidden;
}

#navigation {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  overflow: hidden auto;
  width: 95%;
  z-index: 9;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.3s;
}

@media (min-width: 768px) {
  #navigation {
    width: 450px;
  }
}

#navigation.open {
  transform: translate3d(0, 0, 0);
  transition: transform 0.3s;
  transition-timing-function: ease, ease;
}

#navigation .transition {
  opacity: 0;
  visibility: hidden;
  transition: .4s ease;
  transition-delay: 0.4s;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

#navigation.open .transition {
  opacity: 1;
  visibility: visible;
}

#blocker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14 34 92 / 70%);
  background: rgba(0 0 0 / 70%);
  /*backdrop-filter: saturate(180%) blur(5px);
  -webkit-backdrop-filter: saturate(180%) blur(5px);*/
  z-index: 8;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.3s;
  opacity: 0;
  visibility: hidden;
  cursor: crosshair;
}

#blocker.open {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.3s;
}

.nav-bar {
  background: rgba(255 255 255 / 85%);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: solid 1px #f8f9fa;
  z-index: 3;
}

.social-media a {
  display: flex;
  color: rgba(255 255 255 / 100%);
  transition: .3s ease;
  width: 24px;
  height: 22px;
  justify-content: center;
  align-items: center;
}

.social-media a:hover {
  color: rgba(255 255 255 / 70%);
}

.social-media .list-inline-item:not(:last-child) {
  margin-right: 1.5rem;
}

.btn-nav {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  cursor: pointer;
  transition: .3s ease;
  color: var(--septenary);
}

.btn-nav:hover {
  color: var(--secondary);
}

#btn-close {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  cursor: pointer;
  transition: .3s ease;
  color: white;
}

#btn-close:hover {
  color: var(--primary);
}

#btn-search a {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  transition: .3s ease;
  color: var(--septenary);
}

#btn-search a:hover {
  color: var(--secondary);
}

.btn-search, .btn-send {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  transition: .3s ease;
  color: var(--senary);
  padding: 0;
  margin-right: 5px;
}

/* menu mobile */

.menu-mobile ul {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.menu-mobile ul li a {
  display: flex;
  width: 100%;
  height: 45px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  align-items: center;
  padding: 0 0 0 30px;
  background: transparent;
  transition: .3s ease;
}

.menu-mobile ul li a:hover {
  background: black;
  color: lightgray;
}

.menu-mobile .sub-menu li a {
  padding: 0 0 0 40px;
  font-weight: normal;
}

.menu-mobile ul li.active > a:first-of-type {
  background: black;
}

.menu-mobile .menu-item-has-children {
  position: relative;
}

.menu-mobile .menu-item-has-children::before {
  content: "+";
  position: absolute;
  top: 7px;
  right: 37px;
  font-weight: normal;
  width: 10px;
  height: 10px;
  font-size: 20px;
  color: white;
}

/* Menu Desktop */

.menu-desktop ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 9;
}

.menu-desktop ul li ul {
  display: none;
}

.menu-desktop ul li a {
  display: flex;
  position: relative;
  margin: 0 10px;
  padding: 3px 0;
  text-decoration: none;
  transition: .3s;
  width: 100%;
  font-weight: bold;
  color: var(--septenary);
}

.menu-desktop ul li a:hover {
  color: var(--secondary);
  text-decoration: none;
}

.menu-desktop ul li a:hover + ul {
  animation-duration: .3s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
}

.menu-desktop ul li a:hover + ul, .menu-desktop ul li ul:hover {
  display: flex;
  position: absolute;
  padding: 10px;
  background: white;
  flex-direction: column;
  top: 30px;
}

.menu-desktop .menu-item {
  position: relative;
  background-color: transparent;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}

.menu-desktop .menu-item .sub-menu {
  padding: 10px 20px;
  background: rgba(255 255 255 / 98%);
  border-bottom: 1px solid white;
  box-shadow: 0px 2px 10px rgba(0 0 0 / 10%);
  border-radius: 5px;
}

.menu-desktop .menu-item-has-children {
  margin-right: 15px;
}

.menu-desktop .menu-item-has-children::before {
  content: "+";
  position: absolute;
  top: 3px;
  color: var(--secondary);
  right: -3px;
  cursor: pointer;
  width: 10px;
  height: 10px;
}

.menu-desktop .menu-item .sub-menu a {
  font-weight: normal;
}

.menu-desktop .menu-item.active a {
  color: var(--secondary);
}

/* menu secondary */

.menu-secondary ul {
  padding: 0;
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  font-size: .9rem;
}

.menu-secondary ul li a {
  display: flex;
  width: 100%;
  height: 45px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  align-items: center;
  padding: 0 0 0 30px;
  background: transparent;
  transition: .3s ease;
}

.menu-secondary ul li a:hover {
  background: var(--secondary);
  color: lightgray;
}

.menu-secondary .sub-menu li a {
  padding: 0 0 0 40px;
  font-weight: normal;
}

.menu-secondary ul li.active > a:first-of-type {
  background: var(--secondary);
}

.menu-secondary .menu-item-has-children {
  position: relative;
}

.menu-secondary .menu-item-has-children::before {
  content: "+";
  position: absolute;
  top: 7px;
  right: 37px;
  font-weight: normal;
  width: 10px;
  height: 10px;
  font-size: 20px;
  color: white;
}

/* Menu footer */

.menu-footer ul {
  list-style: none;
  padding: 0;
  position: relative;
  margin: 0;
}

.menu-footer ul li a {
  color: white;
  text-decoration: none;
  transition: .3s ease;
}

.menu-footer ul li a:hover {
  color: var(--primary);
}

/* Submenu */

.sub-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}

.sub-menu ul li a {
  display: block;
  padding: 5px 10px;
  color: var(--octanary);
  text-decoration: none;
  transition: .3s ease;
}

.sub-menu ul li a:hover {
  color: white;
}

/* - */

.transition {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

#btn-user {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.card-user {
  position: absolute;
  top: 35px;
  right: 0;
  width: 200px;
  padding: 15px;
  border-radius: 5px;
  background: rgba(255 255 255 / 98%);
  border-bottom: 1px solid white;
  box-shadow: 0px 2px 10px rgba(0 0 0 / 10%);
  visibility: hidden;
  opacity: 0;
  transition: .3s;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  color: var(--septenary);
  z-index: 2;
}

.card-user.open {
  visibility: visible;
  opacity: 1;
}

.user-icon {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  color: var(--secondary);
}

#user {
  position: relative;
  z-index: 4;
}

#up {
  position: fixed;
  right: 12px;
  bottom: -60px;
  transition: .3s ease;
  z-index: 4;
}

@media (min-width: 768px) {
  #up {
    right: 30px;
  }
}

#up.active {
  bottom: 15px;
}

@media (min-width: 768px) {
  #up.active {
    bottom: 55px;
  }
}

#up a {
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0px 3px 10px rgba(0 0 0 / 10%);
  color: white;
  justify-content: center;
  align-items: center;
  transition: .3s;
}

@media (min-width: 768px) {
  #up a {
    width: 50px;
    height: 50px;
  }
}

#up a:hover {
  background: var(--quinary);
}

#magazine {
  position: fixed;
  bottom: 50px;
  left: -300px;
  background: rgba(255 255 255 / 70%);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid white;
  box-shadow: 0px 0px 10px rgba(0 0 0 / 10%);
  border-radius: 0 5px 5px 0;
  height: 170px;
  transition: .3s ease;
  z-index: 4;
}

@media (min-width: 768px) {
  #magazine {
    left: -300px;
    max-width: 300px;
  }
}

#magazine img {
  box-shadow: 0px 0px 10px rgba(0 0 0 / 10%);
}

#magazine.open {
  bottom: 50px;
  left: 0;
}

#disguise-magazine {
  position: absolute;
  top: 10px;
  right: -20px;
  background: var(--primary);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 0 3px 3px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#disguise-magazine svg {
  transform: rotate(180deg);
  transition: .3s;
}

#disguise-magazine.open svg {
  transform: rotate(0deg);
}

.category a {
  display: block;
  color: var(--primary);
  font-size: .8rem;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: .3s ease;
}

.category a:hover {
  color: var(--quinary);
}

.author a {
  display: block;
  font-size: .8rem;
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  transition: .3s ease;
}

.author a:hover {
  color: var(--senary);
}

.date {
  font-size: .7rem;
  font-style: normal;
  color: var(--octanary);
}

.section-title h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: 1.4em;
}

.section-headline h3 {
  margin: 0;
  text-transform: uppercase;
}

.excerpt p {
  font-size: .9em;
  font-style: normal;
  color: var(--septenary);
  margin-bottom: 0;
}

.post-block .post, .post-latest .post, .post-feed .post {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: solid 1px #dee2e6;
}

.post-videos .post {
  padding-bottom: 0;
  margin-bottom: 15px;
  border-bottom: solid 1px transparent;
}

@media (min-width: 992px) {
  .post-videos .post {
    padding-bottom: 15px;
    border-bottom: solid 1px white;
  }
}

.post-videos div:last-of-type .post {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

@media (min-width: 1200px) {
  .post-block .post {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
}

.post-block div:last-of-type .post {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.post-latest .post:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.post-feed .post:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
}

.form input {
  background: transparent;
  border: none;
}

.form form {
  background: white;
  height: 45px;
  border-radius: 5px;
}

.title.section {
  position: relative;
}

.title.section:before {
  content: '';
  position: absolute;
  top: calc(50% - 0px);
  margin-top: -2px;
  display: block;
  height: 5px;
  border-top: 1px solid var(--octanary);
  width: 100%;
  pointer-events: none;
}

.title.section.blue:before {
  border-top: 1px solid white;
}

.title.section h1, .title.section h2 {
  background: white;
  position: relative;
  width: fit-content;
  padding: 0 30px 0 0;
  font-size: 1.6em;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .title.section h1, .title.section h2 {
    font-size: 2em;
  }
}

.title.section h3 {
  background: white;
  position: relative;
  width: fit-content;
  padding: 0 30px 0 0;
  font-size: 1.6em;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}

.title.section.blue h3 {
  background: var(--secondary);
  color: white;
}

.subtitle.section:before {
  content: '';
  position: relative;
  top: 16px;
  margin-top: -2px;
  display: block;
  height: 5px;
  border-top: 1px solid var(--octanary);
  width: 100%;
  pointer-events: none;
}

.subtitle span {
  background: white;
  position: relative;
  width: fit-content;
  padding: 0 10px 0 0;
  font-size: 1em;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}

.annotation.section:before {
  content: '';
  position: relative;
  top: 15px;
  display: block;
  border-top: 1px solid var(--octanary);
  width: 100%;
  pointer-events: none;
}

.annotation span {
  background: #f8f9fa;
  position: relative;
  width: fit-content;
  padding: 0 10px;
  font-size: .7em;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}

.social-media-author a {
  display: block;
  width: 2em;
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  color: var(--septenary);
  transition: .3s ease;
}

.social-media-author a:hover {
  color: var(--primary);
}

.play {
  width: 64px;
  height: 64px;
  font-size: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  color: white;
  position: absolute;
}

.play.related {
  font-size: 4em;
}

.platform {
  width: 100%;
  height: 100vh;
}

.input-password {
  position: relative;
}

.loginPassword {
  position: relative;
}

.btn-password {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  font-size: 1.2em;
  color: var(--secondary);
}

.forms input {
  height: 45px;
  border-radius: 5px;
}

.forms .form-check input {
  height: 16px;
}

.forms input::placeholder {
  color: darkgray;
}

.author-post {
  width: 40px;
}

.share a {
  display: block;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  font-size: 1.2em;
  transition: .3s ease;
}

.share a:hover {
  background: var(--nonary);
}

/* Single */

.single-content {
  font-size: 1.1rem;
}

.single-content .wp-block-media-text__content p:first-of-type:first-letter {
  float: initial;
  font-size: initial;
  margin: initial;
  color: inherit;
}

.single-content p {
  font-size: 1em;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 30px;
  z-index: 2;
  position: relative;
  color: var(--septenary);
}

@media (min-width: 992px) {
  .single-content p {
    font-size: 1.1em;
  }
}

.single-content > :is(h1, h2, h3) {
  font-size: 1.6em;
  font-weight: 500;
}

@media (min-width: 768px) {
  .single-content > :is(h1, h2, h3) {
    font-size: 1.8em;
  }
}

@media (min-width: 1200px) {
  .single-content > :is(h1, h2, h3) {
    font-size: 2em;
  }
}

.single-content > :is(h4, h5, h6) {
  font-size: 1.3em;
  font-weight: 500;
  color: var(--secondary);
}

@media (min-width: 768px) {
  .single-content > :is(h4, h5, h6) {
    font-size: 1.4em;
  }
}

@media (min-width: 1200px) {
  .single-content > :is(h4, h5, h6) {
    font-size: 1.5em;
  }
}

.single-content figure {
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .single-content figure {
    padding: 0;
  }
}

.single-content figure img {
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 3px;
  margin-bottom: 10px;
}

.single-content ul {
  list-style: none;
  padding: 0;
}

@media (min-width: 300px) {
  .single-content ul {
    padding: 0 30px 0 35px;
  }
}

.single-content ul li {
  position: relative;
  display: block;
  padding: 2px 15px;
  background: transparent;
  text-decoration: none;
  transition: all .3s ease-out;
  font-weight: 400;
  line-height: 28px;
  border-radius: 5px;
}

.single-content ul li:hover:after {
  left: -.5em;
  border-left-color: var(--secondary);
}

.single-content ul li:before {
  content: "•";
  position: absolute;
  left: -2em;
  top: 60%;
  margin-top: -1em;
  color: white;
  background: var(--secondary);
  height: 28px;
  width: 28px;
  line-height: 1.4em;
  font-weight: bold;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-content ol {
  list-style: none;
  padding: 0;
}

@media (min-width: 300px) {
  .single-content ol {
    padding: 0 30px 0 35px;
  }
}

.single-content ol li:hover {
  background: white;
}

.single-content ol li {
  position: relative;
  display: block;
  padding: 2px 15px;
  background: transparent;
  text-decoration: none;
  transition: all .3s ease-out;
  font-weight: 400;
  line-height: 28px;
  counter-increment: my-awesome-counter;
  border-radius: 3px;
}

.single-content ol li:hover:after {
  left: -.5em;
  border-left-color: var(--secondary);
}

.single-content ol li:before {
  content: counter(my-awesome-counter);
  position: absolute;
  left: -2em;
  top: 60%;
  margin-top: -1em;
  color: white;
  background: var(--secondary);
  height: 28px;
  width: 28px;
  line-height: 1.4em;
  text-align: center;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-content .blockquote p {
  margin-bottom: 30px;
  font-size: 1.2rem;
  line-height: normal;
}

.single-content blockquote {
  display: block;
  font-size: 30px;
  padding: 50px 0px 10px 0px;
  position: relative;
  line-height: 1.2;
  font-style: italic;
  top: 0;
  margin-top: -15px;
  margin-bottom: 20px;
  margin: 0;
  border-left: solid 5px var(--secondary);
}

@media (min-width: 992px) {
  .single-content blockquote {
    display: block;
    margin: 40px 0 10px 0;
    position: relative;
    line-height: 1.2;
    top: 0px;
  }
}

.single-content blockquote::after {
  content: "";
}

.single-content blockquote::before {
  content: "\201C";
  font-size: 4em;
  color: var(--secondary);
  position: absolute;
  left: 15px;
  top: -5px;
  font-family: 'arial';
  z-index: 1;
  line-height: 1em;
}

@media (min-width: 1200px) {
  .single-content blockquote::before {
    content: "\201C";
    font-size: 4em;
    color: var(--secondary);
    position: absolute;
    left: 20px;
    top: -10px;
  }
}

.single-content .blockquote footer {
  background: transparent;
  font-size: 1em;
  margin: 15px 30px;
  color: var(--primary);
  font-style: normal;
  font-weight: 600;
  text-align: end;
}

@media (min-width: 992px) {
  .single-content .blockquote footer {
    background: transparent;
    font-size: initial;
    margin: 15px 0;
    color: var(--primary);
  }
}

.single-content .blockquote p {
  padding: 0 0 0 30px;
  font-weight: 500;
}

@media (min-width: 992px) {
  .single-content .blockquote p {
    padding: 0 0 0 30px;
  }
}

.blockquote-footer {
  margin: 0;
  padding-right: 20px;
  color: var(--secondary);
}

@media (min-width: 992px) {
  .blockquote-footer {
    padding-right: 50px;
  }
}

.single-content a {
  color: var(--secondary);
  text-decoration: none;
  transition: .3s;
}

.single-content a:hover {
  color: var(--nonary);
}

.single-content iframe {
  width: 100%;
  background-color: #f9f9f9;
  margin: 0 0;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .single-content iframe {
    width: 95%;
    background-color: #f9f9f9;
    margin: 0 50px 0 0;
    margin-bottom: 30px;
  }
}

.single-content figure {
  display: block;
  overflow: hidden;
  position: relative;
}

.single-content video, .single-content iframe {
  width: 100%;
  height: auto;
  margin-bottom: 25px;
  border-radius: 5px;
}

.single-content p + h6 {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--senary);
  font-size: .9em;
  background: #f8f9fa;
  padding: 15px 15px 5px 15px;
  border-radius: 10px 10px 0 0;
  text-transform: uppercase;
}

.single-content div + h6 {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1em;
  background: #f1e5f8;
  padding: 15px 15px 0px 15px;
}

.single-content h6 + p {
  background: #f8f9fa;
  padding: 0 15px 15px 15px;
  border-radius: 0 0 10px 10px;
}

.single-content h6 + p a {
  color: var(--secondary);
}

.single-content h6 + p a:hover {
  color: var(--nonary);
}

.single-content .mark, .single-content mark {
  background: #f3dfff;
}

/* wordpress */

.single-content .figure .wp-block-image {
  padding-bottom: 0;
  font-weight: normal !important;
  margin: 0;
  position: relative;
}

/* Recomended */

.wp-block-media-text__media {
  width: 40%;
  display: flex;
  justify-content: center;
  margin: 10px 0 !important;
}

@media (min-width: 576px) {
  .wp-block-media-text__media {
    width: 30%;
  }
}

@media (min-width: 768px) {
  .wp-block-media-text__media {
    width: 20%;
  }
}

.wp-block-media-text__content {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 576px) {
  .wp-block-media-text__content {
    width: 70%;
  }
}

@media (min-width: 768px) {
  .wp-block-media-text__content {
    width: 80%;
  }
}

.wp-block-media-text .wp-block-media-text__content {
  direction: ltr;
  grid-column: 2;
  grid-row: 1;
  word-break: break-word;
  padding-left: 15px;
}

.wp-block-media-text {
  padding-left: 0;
}

@media (min-width: 300px) {
  .wp-block-media-text {
    display: flex;
    margin-bottom: 30px;
  }
}

@media (min-width: 576px) {
  .wp-block-media-text {
    display: flex;
    margin-bottom: 30px;
  }
}

.wp-block-media-text.is-stacked-on-mobile {
  grid-template-columns: 100%!important;
}

.wp-block-media-text h5 {
  font-size: 1.3em;
}

.wp-block-media-text h4 {
  font-size: 1.3em;
  padding: 0;
  margin: 0;
  font-size: .8em;
  font-weight: 800;
  color: var(--senary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.wp-block-media-text p, .wp-block-media-text h5 {
  padding: 0;
  margin-bottom: 5px;
}

.wp-block-media-text p {
  font-size: 1em;
  line-height: normal;
}

.wp-block-media-text figure {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .wp-block-media-text figure {
    margin-bottom: 0;
  }
}

.wp-block-media-text figure img {
  object-fit: cover;
}

.wp-block-media-text a {
  background-size: 0% 3px;
  font-weight: 700;
}

.wp-block-image .figure-caption {
  position: absolute;
  bottom: 15px;
  left: 10px;
  padding: 3px 10px;
  font-size: .7em;
  font-family: 'Roboto';
  color: white;
  background: var(--septenary);
  border-radius: 3px;
}

.cover-post .figure-caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 3px 10px;
  font-size: .7em;
  font-family: 'Roboto';
  color: white;
  background: var(--septenary);
  border-radius: 3px;
}

.wp-block-embed-youtube, .video-youtube {
  position: relative;
  height: 0;
  padding: 0;
  margin: 0;
  padding-bottom: 56.25%;
}

.wp-block-embed-youtube .wp-block-embed__wrapper, .video-youtube .video-wrapper {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.wp-block-embed-youtube .wp-block-embed__wrapper iframe, .video-youtube .video-wrapper iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 5px;
}

.btn-correction a {
  display: flex;
  background: var(--elevenary);
  padding: 15px;
  border-radius: 15px;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
}

.tags {
  display: flex;
  flex-flow: wrap;
}

.tags a {
  padding: 4px 15px;
  border-radius: 5px;
  border: solid 2px #f6f6f6;
  background: #f6f6f6;
  color: var(--secondary);
  text-decoration: none;
  font-size: .9em;
  transition: .3s ease;
  margin: 0 15px 10px 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  white-space: nowrap;
}

.tags a:hover {
  border: solid 2px #ddd;
  background: #ddd;
}

#blocked {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0 0 0 / 70%);
  top: 0;
  left: 0;
  z-index: 5;
}

.blocked-banner {
  position: absolute;
  width: 100%;
  height: auto;
  background: white;
  padding: 50px 30px;
  left: 0;
  bottom: 0;
  transition: .6s ease;
}

.list-post {
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (min-width: 992px) {
  .list-post {
    position: sticky;
    position: -webkit-sticky;
    z-index: 1 !important;
    top: 60px;
  }
}

@media (min-width: 1200px) {
  .list-post {
    position: relative;
    top: 0;
    height: 100%;
  }
}

.brand-section {
  width: 200px !important;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title-brand {
  width: 100% !important;
}

@media (min-width: 992px) {
  .title-brand {
    width: 73% !important;
  }
}

.multiply {
  mix-blend-mode: multiply;
}

.picture-ww {
  width: 200px;
}

@media (min-width: 1200px) {
  .picture-ww {
    width: 230px;
  }
}

.item-video {
  opacity: .6;
}

.item-video.active {
  opacity: 1;
}

