:root {
  --primary: #DE2A55;
  --secondary: #FF8300;
  --tertiary: #f83a67;
  --cuaternary: #D80739;
  --quinary: #F4B8C6;
}

::selection {
  color: rgb(7, 7, 7);
  background: #FFDEBA;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

html {
  scroll-behavior: smooth !important;
}

body {
  font-family: myriad-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
}

@media (min-width: 768px) {
  body {
    font-size: 1.1em;
  }
}

input:focus, select:focus, textarea:focus, button:focus {
  outline: none !important;
  box-shadow: 0 0 0 0rem rgb(0 0 0 / 0%) !important;
}

input {
  border-radius: 0;
}

input[type="search"] {
  -webkit-appearance: none;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}

input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=email] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:focus {
  outline-offset: 0px;
}

btn:focus {
  outline: -webkit-focus-ring-color auto 0px !important;
}

:focus {
  outline: -webkit-focus-ring-color auto 0px !important;
}

input:focus, select:focus, textarea:focus, button:focus {
  outline: none !important;
}

@media (min-width:992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width:1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width:1380px) {
  .container {
    max-width: 1380px;
  }
}

@media (min-width:1380px) {
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}

body::before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 9998;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition-delay: 0s;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.overlay::before {
  z-index: 9998;
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

#logotype {
  margin: 10px 0;
}

.logotype .img-logotype {
  width: 200px;
  transition: .3s;
}

@media (min-width: 768px) {
  .logotype .img-logotype {
    width: 230px;
  }
}

@media (min-width: 1200px) {
  .logotype .img-logotype {
    width: 270px;
  }
}

.suscription img {
  width: 80px;
  margin: 20px 0;
}

.hamburger, hamburger-nav {
  width: 30px;
  height: 24px;
  cursor: pointer;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  background-color: black;
  position: absolute;
  width: 25px;
  height: 3px;
  content: '';
  transition-timing-function: ease;
  transition-duration: .3s;
  transition-property: transform,opacity;
}

.hamburger-inner:after {
  top: 20px;
}

.hamburger-inner:before {
  top: 10px;
}

.hamburger.open .hamburger-inner {
  transform: translate3d(0,10px,0) rotate(0deg);
}

.hamburger.open .hamburger-inner:after {
  transform: translate3d(0,-20px,0) rotate(-90deg);
}

.hamburger.open .hamburger-inner:before {
  transform: translate3d(0,-10px,0) rotate(90deg);
}

#navbar {
  border-bottom: solid 1px #f6f6f6;
  background-color: white;
}

#open-search {
  font-size: 30px;
  cursor: pointer;
  transition: .3s;
  width: 50px;
  height: 50px;
  transition: .3s ease;
}

#open-search:hover {
  transform: rotate(90deg);
}

.btn-navigation {
  padding: 10px;
}

.btn-navbar {
  margin: 5px 15px 5px 0;
}

.link-primary {
  background-color: transparent;
  color: #000 !important;
  text-decoration: none;
  background-image: linear-gradient(var(--primary),var(--primary));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 8px;
  transition: background-size .5s;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1em;
  font-weight: 600;
  font-style: normal;
  white-space: nowrap;
  text-decoration: none;
  height: 24px;
}

.link-primary:hover {
  background-size: 100% 8px;
  color: black !important;
  text-decoration: none;
}

.scrolling-wrapper::-webkit-scrollbar {
  width: auto;
  height: 2px !important;
}

.scrolling-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.link-primary-inverse {
  background-color: transparent;
  color: #000 !important;
  text-decoration: none;
  background-image: linear-gradient(var(--primary),var(--primary));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 8px;
  transition: background-size .5s;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1em;
  font-weight: 600;
  font-style: normal;
  white-space: nowrap;
  text-decoration: none;
  height: 24px;
}

.link-primary-inverse:hover {
  background-size: 0% 8px;
  color: black !important;
  text-decoration: none;
}

#navigation {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: hidden auto;
  right: auto;
  width: 95%;
  z-index: 9999;
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  -o-transition: transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.8, 0, 0.26, 1);
  -o-transition-timing-function: cubic-bezier(0.8, 0, 0.26, 1);
  transition-timing-function: cubic-bezier(0.8, 0, 0.26, 1);
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  background-color: white;
}

@media (min-width: 768px) {
  #navigation {
    width: 650px;
  }
}

#navigation.active {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  -o-transition: transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  transition-timing-function: ease, ease;
  -webkit-transition-timing-function: cubic-bezier(0.8, 0, 0.26, 1);
  -o-transition-timing-function: cubic-bezier(0.8, 0, 0.26, 1);
  transition-timing-function: cubic-bezier(0.8, 0, 0.26, 1);
}

.efect-navigation {
  height: 100%;
  padding: 30px 30px 30px 30px;
  overflow: auto;
}

@media (min-width: 768px) {
  .efect-navigation {
    height: 100%;
    padding: 30px 60px 30px 60px;
  }
}

#navigation .efect-navigation {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all -0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

#navigation.active .efect-navigation {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

#close-navmenu {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

#close-search {
  width: 30px;
  height: 23px;
  cursor: pointer;
}

.close-nav-inner, .close-nav-inner:after, .close-nav-inner:before {
  background-color: black;
  position: absolute;
  width: 30px;
  height: 3px;
  border-radius: 0px;
  content: '';
  transition-timing-function: ease;
  transition-duration: .3s;
  transition-property: opacity,-webkit-transform;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform;
}

.close-nav-inner {
  transform: translate3d(0,10px,0) rotate(45deg);
}

.close-nav-inner:before {
  transform: translate3d(0,0px,0) rotate(90deg);
}

.close-nav-inner:after {
  transform: translate3d(0,0px,0) rotate(-90deg);
}

#close-navmenu.open .close-nav-inner {
  transform: translate3d(0,10px,0) rotate(0deg);
}

#close-navmenu.open .close-nav-inner:after {
  -webkit-transform: translate3d(-8px,0,0) rotate(-45deg) scaleX(.7);
  transform: translate3d(-8px,-7px,0) rotate(-45deg) scaleX(.7);
  width: 30px;
}

#close-navmenu.open .close-nav-inner:before {
  -webkit-transform: translate3d(-8px,0,0) rotate(45deg) scaleX(.7);
  transform: translate3d(-8px,7px,0) rotate(45deg) scaleX(.7);
  width: 30px;
}

#close-search.open .close-nav-inner {
  transform: translate3d(0,10px,0) rotate(90deg);
}

#close-search.open .close-nav-inner:after {
  -webkit-transform: translate3d(-8px,0,0) rotate(-45deg) scaleX(.7);
  transform: translate3d(-8px,-7px,0) rotate(-45deg) scaleX(.7);
  width: 30px;
}

#close-search.open .close-nav-inner:before {
  -webkit-transform: translate3d(-8px,0,0) rotate(45deg) scaleX(.7);
  transform: translate3d(-8px,7px,0) rotate(45deg) scaleX(.7);
  width: 30px;
}

#nav-close {
  position: relative;
}

#logotype-mobile {
  margin: 50px 0;
}

#logotype-mobile img {
  width: 223px;
}

#search-mobile {
  background-image: linear-gradient(to top, rgb(0,0,0) 2px, rgb(0,0,0) 2px, rgba(255,255,255, 0) 1px, rgba(255,255,255, 0) 1px);
  background-image: -webkit-linear-gradient(to top, rgb(0,0,0) 1px, rgb(0,0,0) 1px, rgba(255,255,255, 0) 1px, rgba(255,255,255, 0) 1px);
  background-image: -moz-linear-gradient(to top, rgb(0,0,0) 1px, rgb(0,0,0) 1px, rgba(255,255,255, 0) 1px, rgba(255,255,255, 0) 1px);
  background-image: -o-linear-gradient(to top, rgb(0,0,0) 1px, rgb(0,0,0) 1px, rgba(255,255,255, 0) 1px, rgba(255,255,255, 0) 1px);
  background-image: -ms-linear-gradient(to top, rgb(0,0,0) 1px, rgb(0,0,0) 1px, rgba(255,255,255, 0) 1px, rgba(255,255,255, 0) 1px);
  border: none;
  background-size: 0% 100%;
  -webkit-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 100%;
}

#search-mobile:hover {
  background-size: 100% 100%;
}

#search-mobile {
  -webkit-box-shadow: inset 0 -1px 0 0 rgb(0 0 0 / 30%);
  box-shadow: inset 0 -1px 0 0 rgb(0 0 0 / 30%);
}

#search-mobile form {
  width: 100%;
}

#search-mobile input {
  border: 0;
  background-color: transparent;
  font-size: 1.1em;
}

#search-mobile input::placeholder {
  font-size: 1.1em;
  color: #ccc;
}

.icon-search {
  font-size: 30px;
  width: 30px;
  height: 30px;
  margin: 0 10px;
}

#nav-menu {
  margin: 50px 0;
}

.btn-nav {
  margin: 10px 0;
}

#nav-socialmedia {
  margin: 50px 0 30px 0;
}

#suscription img {
  width: 150px;
}

/* .btn-socialmedia {
  border: solid 2px black;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: black;
  background-color: transparent;
  transition: .3s;
  margin: 10px;
  padding: 5px;
}

.btn-socialmedia:hover {
  border: solid 2px black;
  color: white;
  background-color: black;
} */

.feet {
  font-size: .8em;
  color: gray;
  text-align: center;
}

#search-navbar input {
}

#search-navbar input {
  background: transparent;
  border: none;
  font-size: 1.3em;
  padding: 0;
}

#search-navbar input::placeholder {
  color: #ccc;
  font-size: 1.3em;
  font-weight: 400;
  font-style: normal;
}

#search {
  background: #f9f9f9;
  height: 1px;
  transition: height 0.6s ease-in-out;
  overflow: hidden;
  position: absolute;
  width: 100%;
}

#search.active {
  height: 110px;
  max-height: 110px;
  transition: height 0.6s ease-in-out;
}

#search .efect-search {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all -0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

#search.active .efect-search {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

#footer {
  background-color: #f9f9f9;
  padding: 75px 0 0 0;
}

#line {
  width: 100%;
  height: 10px;
  background-color: var(--primary);
  margin-bottom: 10px;
}

.caption-site {
  font-size: .8em;
  color: gray;
  margin: 30px;
}

@media (min-width: 768px) {
  .caption-site {
    margin: 30px 0;
  }
}

.footer-text {
  font-size: 1.1em;
}

.footer-title {
  font-size: 1.3em;
  font-weight: 600;
  font-style: normal;
}

.link-secondary {
  background-color: transparent;
  color: #000 !important;
  text-decoration: none;
  background-image: linear-gradient(var(--primary),var(--primary));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 6px;
  transition: background-size .5s;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .9em;
  font-weight: 400;
  font-style: normal;
  white-space: nowrap;
  text-decoration: none;
  height: 24px;
}

.link-secondary:hover {
  background-size: 100% 6px;
  color: black !important;
  text-decoration: none;
}

.space {
  width: 100%;
  height: 15px;
}

.space-sm {
  width: 100%;
  height: 20px;
}

.space-md {
  width: 100%;
  height: 30px;
}

.space-lg {
  width: 100%;
  height: 50px;
}

.btn-footer {
  margin: 2px;
}

.border-one {
  border-right: solid 0px #ddd;
  border-left: solid 0px #ddd;
}

@media (min-width: 768px) {
  .border-one {
    border-right: solid 0px #ddd;
    border-left: solid 1px #ddd;
  }
}

@media (min-width: 992px) {
  .border-one {
    border-right: solid 1px #ddd;
  }
}

.ADs-area {
  background-color: #f5f5f5;
  padding: 15px;
}

.super-banner {
  width: 960px;
  min-width: 300px;
  height: auto;
  min-height: 50px;
  background-color: transparent;
}

#header-navigation {
  position: relative;
}

.section-gray {
  background-color: #f8f8f8;
}

.sections {
  padding: 30px 0;
}

.sections-sm {
  padding: 50px 0;
}

.sections-md {
  padding: 75px 0;
}

.sections-lg {
  padding: 100px 0;
}

.opacity-on img {
  opacity: 0;
}

.img-styles {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-white {
  background-color: white;
}

.category-primary a {
  background-color: var(--primary);
  border: solid 2px var(--primary);
  padding: 0 15px;
  color: white !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: .3s ease-in-out;
  font-size: .8em;
}

.category-primary a:hover {
  background-color: white;
  border: solid 2px var(--primary);
  padding: 0 15px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
}

.category-primary {
  position: relative;
}

.category-primary a::before {
  content: url('https://api.iconify.design/bx:bxs-down-arrow.svg?color=%23DE2A55&height=20');
  left: 50%;
  position: absolute;
  top: 18px;
  color: var(--primary);
  margin-left: -8px;
}

@media (min-width: 768px) {
  .category-primary a::before {
    top: 20px;
  }
}

.title-primary h1 {
  font-family: 'Tinos';
  font-size: 2.5em;
  margin: 20px 0;
}

.link-title {
  background-color: transparent;
  color: #000 !important;
  text-decoration: none;
  background-image: linear-gradient(var(--primary),var(--primary));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 3px;
  transition: background-size .5s;
  letter-spacing: 1px;
  text-decoration: none;
}

.link-title:hover {
  background-size: 100% 3px;
  color: black !important;
  text-decoration: none;
}

.data-primary {
  font-size: .8em;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.link-autor-primary {
  color: var(--primary) !important;
  transition: .3s ease-in-out;
  opacity: 1;
}

.link-autor-primary:hover {
  color: var(--primary) !important;
  opacity: .7;
  text-decoration: none;
}

.data-line-primary {
  border-bottom: solid 2px var(--primary);
  font-size: .8em;
}

.category-secondary a {
  font-size: .8em;
  padding: 0 15px;
  text-decoration: none;
  background-image: linear-gradient(var(--secondary),var(--secondary));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 8px;
  transition: background-size .5s;
  text-transform: uppercase;
  color: black !important;
  letter-spacing: 2px;
  background-color: transparent;
}

.category-secondary a:hover {
  background-size: 0% 8px;
  color: black;
  text-decoration: none;
}

.img-secondary {
  padding: 15px;
  background-color: #f9f9f9;
  margin: 15px 0;
}

@media (min-width: 768px) {
  .img-secondary {
    padding: 20px;
  }
}

.title-secondary h2 {
  font-size: 1.2em;
  font-family: 'Tinos';
  margin-bottom: 15px;
}

.link-yellow {
  background-color: transparent;
  color: #000 !important;
  text-decoration: none;
  background-image: linear-gradient(var(--secondary),var(--secondary));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 6px;
  transition: background-size .5s;
}

.link-yellow:hover {
  background-size: 100% 6px;
  color: black !important;
  text-decoration: none;
}

.data-line-secondary {
  border-bottom: solid 1px #999;
  font-size: .8em;
}

.data-secondary {
  font-size: .8em;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.link-autor-secondary {
  color: #999 !important;
  transition: .3s ease-in-out;
  opacity: 1;
}

.link-autor-secondary:hover {
  color: #999 !important;
  opacity: .6;
  text-decoration: none;
}

.half-banner {
  width: 300px;
  height: auto;
  background-color: transparent;
}

.box-banner {
  width: 300px;
  height: 250px;
  background-color: transparent
}

.title-tertiary h2 {
  font-size: 1.7em;
  font-family: 'Tinos';
  margin: 30px;
}

.title-tertiary h3 {
  font-size: 1.2em;
  font-family: 'Tinos';
  margin: 15px 0;
}

.content-card-left {
  width: 90%;
  margin-top: -30px;
  padding: 10px 15px;
  position: relative;
  background-color: white;
}

.category-tertiary a {
  background-color: var(--primary);
  color: white !important;
  border: solid 2px var(--primary);
  padding: 0 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: .3s ease-in-out;
  font-size: .8em;
}

.category-tertiary a:hover {
  background-color: white;
  border: solid 2px var(--primary);
  color: var(--primary) !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
}

.data-tertiary {
  font-size: .8em;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.title-tertiary .font-mobile {
  font-size: 1.5em;
}

@media (min-width: 768px) {
  .title-tertiary .font-mobile {
    font-size: 1.2em;
  }
}

.sticky {
  top: 60px;
  z-index: 1;
}

#navigation-header {
  z-index: 999;
}

#scroll-icon {
  width: 30px;
  font-size: 30px;
  margin-right: 10px;
}

#logotype-scroll img {
  height: 22px; 
  width: auto;
  margin-right: 20px;
}

#logotype-scroll {
  overflow: hidden;
  width: 0;
}

.sticky-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
  background-color: white;
  border-bottom: solid 1px #f6f6f6;
}

@media (min-width: 992px) {
  .sticky-header {
    position: inherit;
    position: inherit;
    top: inherit;
    z-index: inherit;
  }
}

.sticky-navbar {
  position: inherit;
  position: inherit;
  top: inherit;
  z-index: inherit;
}

@media (min-width: 992px) {
  .sticky-navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.logotype .img {
  width: 200px;
  transition: .3s;
}

#parallax .img-parallax {
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.i-amphtml-notbuilt > .i-amphtml-loading-container {
  display: none!important;
}

#parallax {
  width: 100%;
  height: 600px;
  background: #f9f9f9;
  position: relative;
}

.content-parallax {
  position: absolute;
  width: 100%;
}

.image-parallax {
  width: 100%;
  position: absolute;
}

.category-cuaternary a {
  background-color: var(--secondary);
  border: solid 2px var(--secondary);
  padding: 0 15px;
  color: black !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: .3s ease-in-out;
  font-size: .8em;
}

.category-cuaternary a:hover {
  background-color: transparent;
  border: solid 2px var(--secondary);
  padding: 0 15px;
  color: Black;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
}

.title-cuaternary h2 {
  font-family: 'Tinos';
  font-size: 2.5em;
  margin: 20px 0;
  line-height: 1em;
}

.title-cuaternary a {
  background-color: transparent;
  color: #000 !important;
  text-decoration: none;
  background-image: linear-gradient(var(--secondary),var(--secondary));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: background-size .5s;
  letter-spacing: 1px;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 10px;
}

.title-cuaternary a:hover {
  background-size: 100% 100%;
  color: black;
  text-decoration: none;
}

.title-cuaternary {
  /*margin: 15px;*/
}

.section-top {
  margin-top: 75px;
}

.title-section-primary a:hover {
  background-size: 0% 8px;
  color: black;
  text-decoration: none;
}

.title-section-primary a {
  font-size: .8em;
  padding: 0 15px;
  text-decoration: none;
  background-image: linear-gradient(var(--primary),var(--primary));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 8px;
  transition: background-size .5s;
  text-transform: uppercase;
  color: black !important;
  letter-spacing: 2px;
  background-color: transparent;
}

.scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: inherit;
  flex-wrap: nowrap;
  scrollbar-color: light;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
}

@media (min-width: 1200px) {
  .scrolling-wrapper {
    overflow-x: auto;
  }
}

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

.content-card-orange {
  background-color: var(--primary);
  padding: 30px 50px;
  height: 300px;
}



.title-section-primary, .title-section-secondary, .title-section-tertiary {
  margin-bottom: 50px;
}

.title-section-secondary a:hover {
  background-size: 0% 8px;
  color: black;
  text-decoration: none;
}

.title-section-secondary a {
  font-size: .8em;
  padding: 0 15px;
  text-decoration: none;
  background-image: linear-gradient(var(--secondary),var(--secondary));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 8px;
  transition: background-size .5s;
  text-transform: uppercase;
  color: black !important;
  letter-spacing: 2px;
  background-color: transparent;
}

.title-quinary h3 {
  font-size: 1.3em;
  font-family: 'Tinos';
}

.link-black {
  background-color: transparent;
  color: #000 !important;
  text-decoration: none;
  background-image: linear-gradient(black,black);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size .5s;
  letter-spacing: 1px;
}

.link-black:hover {
  background-size: 100% 1px;
  color: black !important;
  text-decoration: none;
}

.data-line-cuaternary {
  border-bottom: solid 1px black;
  font-size: .8em;
}

.link-autor-cuaternary {
  color: black !important;
  transition: .3s ease-in-out;
  opacity: 1;
}

.link-autor-cuaternary:hover {
  color: black !important;
  opacity: .6;
  text-decoration: none;
}

.data-cuaternary {
  font-size: .8em;
  color: black;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.content-card-orange:hover > .title-quinary h3 .link-black {
  text-decoration: underline;
  background-size: 100% 1px;
  color: black !important;
  text-decoration: none;
}

.line {
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

element.style {
}

.category-quinary {
  position: relative;
}

.category-quinary a::before {
  content: url('https://api.iconify.design/bx:bxs-down-arrow.svg?color=%23CDDE00&height=20');
  left: 50%;
  position: absolute;
  top: 18px;
  color: var(--primary);
  margin-left: -8px;
}

@media (min-width: 768px) {
  .category-quinary a::before {
    top: 20px;
  }
}

.category-quinary a {
  background-color: var(--tertiary);
  border: solid 2px var(--tertiary);
  padding: 0 15px;
  color: black !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: .3s ease-in-out;
  font-size: .8em;
}

.category-quinary a:hover {
  background-color: white;
  border: solid 2px var(--tertiary);
  padding: 0 15px;
  color: black;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
}

.line-tertiary {
  width: 100%;
  height: 2px;
  background-color: var(--tertiary);
}

.data-quinary {
  font-size: .8em;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.data-line-quinary {
  border-bottom: solid 2px var(--tertiary);
  font-size: .8em;
}

.link-autor-quinary {
  color: #999 !important;
  transition: .3s ease-in-out;
  opacity: 1;
}

.link-autor-quinary:hover {
  color: #999 !important;
  opacity: .7;
  text-decoration: none;
}

.title-senary h2 {
  font-size: 1.7em;
  font-family: 'Tinos';
  margin: 30px;
}

.link-green {
  background-color: transparent;
  color: #000 !important;
  text-decoration: none;
  background-image: linear-gradient(var(--tertiary),var(--tertiary));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 3px;
  transition: background-size .5s;
  letter-spacing: 1px;
  text-decoration: none;
}

.link-green:hover {
  background-size: 100% 3px;
  color: black !important;
  text-decoration: none;
}

.category-senary a:hover {
  background-color: white;
  border: solid 2px var(--tertiary);
  color: black;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
}

.category-senary a {
  background-color: var(--tertiary);
  color: black !important;
  border: solid 2px var(--tertiary);
  padding: 0 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: .3s ease-in-out;
  font-size: .8em;
}

.data-senary {
  font-size: .8em;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.link-autor-senary {
  color: #999 !important;
  transition: .3s ease-in-out;
  opacity: 1;
}

.link-autor-senary:hover {
  color: #999 !important;
  opacity: .6;
  text-decoration: none;
}


.title-senary h3 {
  font-size: 1.2em;
  font-family: 'Tinos';
}

.title-senary .font-mobile {
  font-size: 1.5em;
}

@media (min-width: 768px) {
  .title-senary .font-mobile {
    font-size: 1.2em;
  }
}

.category-section {
  position: relative;
}

.category-section a::before {
  content: url('https://api.iconify.design/bx:bxs-down-arrow.svg?color=%23D80739&height=20');
  left: 50%;
  position: absolute;
  top: 25px;
  color: var(--primary);
  margin-left: -8px;
}

@media (min-width: 768px) {
  .category-section a::before {
    top: 25px;
  }
}

.category-section a {
  background-color: var(--primary);
  border: solid 2px var(--primary);
  padding: 0 20px;
  color: white !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: .3s ease-in-out;
  font-size: 1.2em;
}

.category-section a:hover {
  background-color: white;
  border: solid 2px var(--primary);
  padding: 0 20px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
}

.content-card-yellow {
  background-color: var(--secondary);
  padding: 30px 50px;
  height: 300px;
}

.content-card-yellow:hover > .title-quinary h3 .link-black {
  background-size: 100% 1px;
  color: black !important;
  text-decoration: none;
}

.content-card-top {
  width: 90%;
  margin-bottom: -30px;
  padding: 0 15px 10px 15px;
  position: relative;
  background-color: white;
  z-index: 1;
}

.title-category {
  margin-bottom: 50px;
}

.title-category h2 {
  font-size: 2.5em;
}

.title-category span {
  padding: 0 15px;
  text-decoration: none;
  background-image: linear-gradient(var(--primary),var(--primary));
  background-position: 0 88%;
  background-repeat: no-repeat;
  background-size: 100% 10px;
  transition: background-size .5s;
  text-transform: uppercase;
  color: black;
  letter-spacing: 2px;
  background-color: transparent;
}

.subtitle-section {
  margin-bottom: 30px;
}

.subtitle-section h3 {
  font-size: 1.5em;
}

.subtitle-section span {
  padding: 0 15px;
  text-decoration: none;
  background-image: linear-gradient(var(--secondary),var(--secondary));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 100% 8px;
  transition: background-size .5s;
  text-transform: uppercase;
  color: black;
  letter-spacing: 2px;
  background-color: transparent;
}

.content-card-rigth {
  width: 90%;
  margin-top: -30px;
  padding: 0 15px 10px 15px;
  position: relative;
  background-color: white;
}

.area-pagination {
  margin: 30px 0;
}

.page-link {
  position: relative;
  display: block;
  padding: .5rem .75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: black;
  background-color: #fff;
  border: none;
  border-bottom: solid 2px white;
  transition: .3s ease;
}

.page-link:hover {
  z-index: 2;
  color: var(--primary);
  text-decoration: none;
  background-color: transparent;
  border-bottom: solid 2px var(--primary);
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pagination {
  margin: 0 !important;
}

.pagination .page-link {
  padding: 15px 20px;
  font-size: 1.5em;
  line-height: 1.5;
}

.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0rem rgb(0 0 0 / 0%);
}

.area-search-search {
  background-color: #f9f9f9;
  padding: 30px;
  margin-bottom: 30px;
}

#search-form-search {
  width: 100%;
}

#search-form-search input {
  border: none;
  border-radius: 0;
  height: 40px;
}

#search-form-search .btn, #search-nav .btn {
  width: 40px;
  height: 40px;
  padding: 0;
}

.category-septenary a:hover {
  background-size: 0% 8px;
  color: black;
  text-decoration: none;
}

.category-septenary a {
  font-size: .8em;
  padding: 0 15px;
  text-decoration: none;
  background-image: linear-gradient(var(--primary),var(--primary));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 8px;
  transition: background-size .5s;
  text-transform: uppercase;
  color: black !important;
  letter-spacing: 2px;
  background-color: transparent;
}

.first-txt-404 {
  font-family: 'Tinos';
  font-size: 3em;
	line-height: normal;
}

.second-txt-404 {
  font-size: 1.6em;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Tinos';
}

#erro-404 img {
  width: 80%;
  margin: 50px;
}

@media (min-width: 992px) {
  #erro-404 img {
    width: 55%;
  }
}

.section-nolink div {
  position: relative;
}

.section-nolink span::before {
  content: url('https://api.iconify.design/bx:bxs-down-arrow.svg?color=%23D80739&height=20');
  left: 50%;
  position: absolute;
  top: 22px;
  color: var(--primary);
  margin-left: -8px;
}

.section-nolink span {
  background-color: var(--primary);
  border: solid 2px var(--primary);
  padding: 0 20px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: .3s ease-in-out;
  font-size: 1.2em;
}

#section-author {
  position: relative;
}

.area-image-author img {
  width: 70%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  margin: 30px 0;
  height: auto;
  border: solid 15px #fff2e2;
}

@media (min-width: 768px) {
  .area-image-author img {
    width: 100%;
    margin: 0;
  }
}

.line-author {
  width: 100%;
  height: 15px;
  background-color: #fff2e2;
  position: absolute;
  bottom: 30%;
  z-index: 1;
}

@media (min-width: 768px) {
  .line-author {
    bottom: 65px;
  }
}

.content-autor {
  position: relative;
  z-index: 2;
}

#author-info h1 {
  font-family: 'Tinos';
  font-size: 3em;
}

#author-info p {
  font-size: 1em;
}

#abstrac p {
  font-size: 1.1em;
}

#abstrac p strong {
  font-weight: 600;
}

.single-head {
  padding: 10px 30px;
}

@media (min-width: 768px) {
  .single-head {
    padding: 20px 50px;
  }
}

.btn-share:hover {
  border: solid 2px var(--primary);
  color: white;
  background-color: var(--primary);
}

.btn-share {
  border: solid 2px var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--primary);
  background-color: transparent;
  transition: .3s;
  margin: 10px;
  padding: 5px;
}

.content-card-green {
  background-color: var(--tertiary);
  padding: 30px 50px;
  height: 300px;
}

.content-card-green:hover > .title-quinary h3 .link-black {
  text-decoration: underline;
  background-size: 100% 1px;
  color: black !important;
  text-decoration: none;
}

.section-nolink-green div {
  position: relative;
}

.section-nolink-green span::before {
  content: url('https://api.iconify.design/bx:bxs-down-arrow.svg?color=%23CDDE00&height=20');
  left: 50%;
  position: absolute;
  top: 20px;
  color: var(--tertiary);
  margin-left: -8px;
}

.section-nolink-green span {
  background-color: var(--tertiary);
  border: solid 2px var(--tertiary);
  padding: 0 20px;
  color: black;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: .3s ease-in-out;
  font-size: 1.2em;
}

#related {
  width: 100%;
}

.subtitle-section-primary span {
  padding: 0 15px;
  text-decoration: none;
  background-image: linear-gradient(var(--primary),var(--primary));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 100% 6px;
  transition: background-size .5s;
  text-transform: uppercase;
  color: black;
  letter-spacing: 2px;
  background-color: transparent;
}

#efect-single-share {
  overflow: hidden;
  height: 0;
  opacity: 0;
}

/* Single */

.single-content p {
  padding: 0 30px;
  font-size: 1.1em;
  font-weight: 400;
  line-height: 27px;
  margin-bottom: 30px;
  z-index: 2;
  position: relative;
}

@media (min-width: 992px) {
  .single-content p {
    padding: 0 30px 0 50px;
    line-height: 30px;
  }
}

@media (min-width: 1200px) {
  .single-content p {
    padding: 0 30px 0 100px;
  }
}

.single-content figure {
  padding: 0 10px;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .single-content figure {
    padding: 0;
  }
}

.single-content figure img {
  width: 100%;
  height: auto;
}

@media (min-width: 992px) {
  .single-content figure img {
    width: 95%;
    height: auto;
  }
}

.single-content figure .figure-caption {
  margin: 0px;
  border-top: solid 0px var(--primary);
  border-left: solid 3px var(--primary);
  padding-top: 0px;
  padding-left: 10px;
  font-size: 12px;
  color: #ccc;
  font-weight: 400;
}

.single-content ul {
  list-style: none;
  padding: 0;
}

@media (min-width: 300px) {
  .single-content ul {
    padding: 0 30px 0 60px;
  }
}

@media (min-width: 768px) {
  .single-content ul {
    padding: 0 100px 0 140px;
  }
}

.single-content ul li:hover {
  background: #f9f9f9;
}

.single-content ul li {
  position: relative;
  display: block;
  padding: 15px;
  background: #fff;
  text-decoration: none;
  transition: all .3s ease-out;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.single-content ul li:hover:after {
  left: -.5em;
  border-left-color: var(--primary);
}

.single-content ul li:before {
  content: "•";
  position: absolute;
  left: -2em;
  top: 60%;
  margin-top: -1em;
  color: white;
  background: var(--primary);
  height: 1.5em;
  width: 1.5em;
  line-height: 1.4em;
  text-align: center;
  font-weight: bold;
  border-radius: 100%;
}

.figure-caption {
}

.single-content ol {
  list-style: none;
  padding: 0;
}

@media (min-width: 300px) {
  .single-content ol {
    padding: 0 30px 0 60px;
  }
}

@media (min-width: 768px) {
  .single-content ol {
    padding: 0 100px 0 140px;
  }
}

.single-content ol li:hover {
  background: #f9f9f9;
}

.single-content ol li {
  position: relative;
  display: block;
  padding: 15px;
  background: #fff;
  text-decoration: none;
  transition: all .3s ease-out;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  counter-increment: my-awesome-counter;
}

.single-content ol li:hover:after {
  left: -.5em;
  border-left-color: var(--primary);
}

.single-content ol li:before {
  content: counter(my-awesome-counter);
  position: absolute;
  left: -2em;
  top: 60%;
  margin-top: -1em;
  color: white;
  background: var(--primary);
  height: 1.5em;
  width: 1.5em;
  line-height: 1.4em;
  text-align: center;
  font-weight: bold;
}

.table-hover tbody tr {
  color: #212529;
  background-color: #F4F0EB;
  background-color: white;
  transition: .3s;
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: #f6f6f6;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f9f9f9;
  transition: .3s;
}

.table-striped tbody tr:nth-of-type(2n + 1):hover {
  background-color: #f6f6f6;
  transition: .3s;
}

.single-content table {
  color: gray;
}

.single-content .table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 30px;
}

@media (min-width: 992px) {
  .single-content .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 100px;
  }
}


.single-content a {
  background-color: transparent;
  color: black !important;
  text-decoration: none;
  background-image: linear-gradient(var(--primary),var(--primary));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 6px;
  transition: background-size .5s;
}

.single-content a:hover {
  background-size: 0% 6px;
  color: black;
}

.single-content iframe {
  width: 100%;
  margin: 0 0;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .single-content iframe {
    /*width: 95%;*/
    margin: 0 50px 0 0;
    margin-bottom: 30px;
  }
}

.single-content h1, .single-content h2 {
  font-size: 2em;
  padding: 0 30px;
}

@media (min-width: 992px) {
  .single-content h1, .single-content h2 {
    font-size: 2em;
    padding: 0 30px 0 50px;
  }
}

@media (min-width: 1200px) {
  .single-content h1, .single-content h2 {
    font-size: 2em;
    padding: 0 30px 0 100px;
  }
}

.single-content h3, .single-content h4, .single-content h5 {
  font-size: 1.5em;
  padding: 0 30px;
}

@media (min-width: 992px) {
  .single-content h3, .single-content h4, .single-content h5 {
    font-size: 1.5em;
    padding: 0 30px 0 50px;
  }
}

@media (min-width: 1200px) {
  .single-content h3, .single-content h4, .single-content h5 {
    font-size: 1.5em;
    padding: 0 30px 0 100px;
  }
}

/* single */

#cooking {
  padding: 15px 0;
  border-top: solid 2px var(--primary);
  border-bottom: solid 2px var(--primary);
  font-family: 'Tinos';
  font-size: 1.1em;
  margin-bottom: 30px;
}

.midddle-border {
  border-top: dotted 2px var(--primary);
  border-bottom: dotted 2px var(--primary);
  border-right: none;
  border-left: none;
  margin: 15px 0;
  padding: 15px;
}

@media (min-width: 768px) {
  .midddle-border {
    border-top: none;
    border-bottom: none;
    border-right: dotted 2px var(--primary);
    border-left: dotted 2px var(--primary);
    margin: 0;
    padding: 0;
  }
}

/* gallery */

#gallery {
  margin: auto;
}

.gallery {
  display: inherit;
  margin-bottom: 30px;
}

#gallery .gallery-item {
  float: left;
  margin-top: 10px;
  text-align: center;
  width: 33%;
  padding: 10px;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 15px;
  height: auto;
}

.gallery-columns-3 .gallery-item {
  float: left!important;
  margin: 0!important;
  text-align: center!important;
  width: calc((100% - 0px)/1)!important;
}

@media (min-width: 768px) {
  .gallery-columns-3 .gallery-item {
    float: left!important;
    margin: 0!important;
    text-align: center!important;
    width: calc((100% - 0px)/3)!important;
  }
}

.gallery-item a {
  background-image: none;
}

.gallery-item a span {
  font-size: .8em;
  font-weight: 400;
  color: gray;
  background-image: none;
  margin-bottom: 15px;
}

.single-content-special h1, .single-content-special h2, .single-content-special h3 {
  font-size: 2em;
  margin-bottom: .6em;
  padding: 0 30px;
}

.single-content-special h3, .single-content-special h4, .single-content-special h5 {
  font-size: 1.5em;
  margin-bottom: .6em;
  padding: 0 30px;
}

@media (min-width: 768px) {
.single-content-special h1, .single-content-special h2, .single-content-special h3 {
  font-size: 2em;
  margin-bottom: .6em;
  padding: 0;
}

.single-content-special h3, .single-content-special h4, .single-content-special h5 {
  font-size: 1.5em;
  margin-bottom: .6em;
  padding: 0;
}
}


/* post-multimedia */

#post-multimedia video, #post-multimedia iframe {
  width: 100%;
  margin: 30px 0 0 0;
}

#post-multimedia iframe{
height:150px ; 
}

@media (min-width: 300px) {
#post-multimedia iframe{
    height:200px ;
} 
}

@media (min-width: 576px) {
#post-multimedia iframe{
    height:253px ;
}  
}

@media (min-width: 768px) {
 #post-multimedia iframe{
    height:332px ;
} 
}

@media (min-width: 992px) {
#post-multimedia iframe{
    height: 467px;
} 
}

@media (min-width: 1200px) {
#post-multimedia iframe{
    height: 568px;
}  
}

@media (min-width: 1380px) {
 #post-multimedia iframe{
    height:703px ;
} 
}

/* single special */

.single-content-special p {
  font-size: 1.1em;
  font-weight: 400;
  line-height: 27px;
  margin-bottom: 30px;
  z-index: 2;
  position: relative;
  padding: 0 30px;
}


@media (min-width: 768px) {
.single-content-special p {
    font-size: 1.1em;
    line-height: 30px;
    padding: 0;
}
}


@media (min-width: 992px) {
  .single-content-special p {
    padding: 0;
  }
}

.single-content-special figure {
  padding: 0 10px;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .single-content-special figure {
    padding: 0;
  }
}

.single-content-special figure img {
  width: 100%;
  height: auto;
}

@media (min-width: 992px) {
  .single-content-special figure img {
    width: 95%;
    height: auto;
  }
}

.single-content-special figure .figure-caption {
  margin: 0px;
  border-top: solid 0px var(--primary);
  border-left: solid 3px var(--primary);
  padding-top: 0px;
  padding-left: 10px;
  font-size: 12px;
  color: #ccc;
  font-weight: 400;
}

.single-content-special ul {
  padding: 0 10px 0 40px;
}

.single-content-special ul li:hover {
  background: #f9f9f9;
}

.single-content-special ul li {
  position: relative;
  display: block;
  padding: 15px;
  background: #fff;
  text-decoration: none;
  transition: all .3s ease-out;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.single-content-special ul li:hover:after {
  left: -.5em;
  border-left-color: var(--primary);
}

.single-content-special ul li:before {
  content: "•";
  position: absolute;
  left: -2em;
  top: 60%;
  margin-top: -1em;
  color: var(--primary);
  background: #f6f6f6;
  height: 1.5em;
  width: 1.5em;
  line-height: 1.4em;
  text-align: center;
  font-weight: bold;
  border-radius: 100%;
}

.figure-caption {
}

.single-content-special ol {
  list-style: none;
  padding: 0;
}

.single-content-special ol {
  padding: 0 10px 0 40px;
}

.single-content-special ol li:hover {
  background: #f9f9f9;
}

.single-content-special ol li {
  position: relative;
  display: block;
  padding: 15px;
  background: #fff;
  text-decoration: none;
  transition: all .3s ease-out;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  counter-increment: my-awesome-counter;
}

.single-content-special ol li:hover:after {
  left: -.5em;
  border-left-color: var(--primary);
}

.single-content-special ol li:before {
  content: counter(my-awesome-counter);
  position: absolute;
  left: -2em;
  top: 60%;
  margin-top: -1em;
  color: var(--primary);
  background: #f6f6f6;
  height: 1.5em;
  width: 1.5em;
  line-height: 1.4em;
  text-align: center;
  font-weight: bold;
}

.table-hover tbody tr {
  color: #212529;
  background-color: #F4F0EB;
  background-color: white;
  transition: .3s;
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: #f6f6f6;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f9f9f9;
  transition: .3s;
}

.table-striped tbody tr:nth-of-type(2n + 1):hover {
  background-color: #f6f6f6;
  transition: .3s;
}

.single-content-special table {
  color: gray;
}

.single-content-special .table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 992px) {
  .single-content-special .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}


.single-content-special a {
  background-color: transparent;
  color: black !important;
  text-decoration: none;
  background-image: linear-gradient(var(--primary),var(--primary));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 6px;
  transition: background-size .5s;
}

.single-content-special a:hover {
  background-size: 0% 6px;
  color: black;
}

.single-content-special iframe {
  width: 100%;
  background-color: #FFF4E8;
  margin: 0 0;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .single-content-special iframe {
    width: 95%;
    background-color: #FFF4E8;
    margin: 0 50px 0 0;
    margin-bottom: 30px;
  }
}


/* styles add */

.link-autor-primary a{
  color: var(--primary) !important;
  transition: .3s ease-in-out;
  opacity: 1;
}

.link-autor-primary a:hover {
  color: var(--primary) !important;
  opacity: .7;
  text-decoration: none;
}

.link-autor-secondary a{
  color: #999 !important;
  transition: .3s ease-in-out;
  opacity: 1;
}

.link-autor-secondary a:hover {
  color: #999 !important;
  opacity: .6;
  text-decoration: none;
}

.link-autor-cuaternary a{
  color: black !important;
  transition: .3s ease-in-out;
  opacity: 1;
}

.link-autor-cuaternary a:hover {
  color: black !important;
  opacity: .6;
  text-decoration: none;
}

.link-autor-quinary a{
  color: #999 !important;
  transition: .3s ease-in-out;
  opacity: 1;
}

.link-autor-quinary a:hover {
  color: #999 !important;
  opacity: .7;
  text-decoration: none;
}

.link-autor-senary a{
  color: #999 !important;
  transition: .3s ease-in-out;
  opacity: 1;
}

.link-autor-senary a:hover {
  color: #999 !important;
  opacity: .6;
  text-decoration: none;
}

.link-orange {
  background-color: transparent;
  color: var(--primary) !important;
  text-decoration: none;
  background-image: linear-gradient(var(--primary),var(--primary));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size .5s;
}

.link-orange:hover {
  background-size: 100% 2px;
  color: var(--primary) !important;
  text-decoration: none;
}



/* pagination*/

.pagination{
  margin: 30px 0px;
}

.pagination.pag-archive {
	display: block;
	margin: 30px auto;
	position: relative;
	width: max-content;
}

ul.page-numbers {
    list-style: none;
    margin: 0;
}

.page-numbers:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

ul.page-numbers li {
    display: block;
    float: left;
    margin: 0 4px 4px 0;
    text-align: center;
}


.page-numbers a,
.page-numbers span {
    display: block;
    font-size: 22px;
    text-decoration: none;
    font-weight: 400;
    cursor: pointer;
    color: black;
    transition: .3s;
    padding: 5px 5px;
     border-bottom:solid 2px transparent;
}

@media (min-width: 768px) {
.page-numbers a,
.page-numbers span {
padding: 5px 15px;  
}
}

.page-numbers a span { padding: 0 }

.page-numbers a:hover,
.page-numbers.current,
.page-numbers.current:hover {
    color: var(--primary);
    border-bottom:solid 2px var(--primary);
    text-decoration: none;
}

.page-numbers:hover { text-decoration: none }

/* */

#opacity-efect{
position: relative;
z-index: 9999;
-webkit-animation: .6s ease efect-opacity;
animation: .6s ease efect-opacity;
}

@keyframes efect-opacity{
    0% { opacity:0; }
    75% { opacity:0; }
    100% { opacity:1; }
}

@-webkit-keyframes efect-opacity{
    0% { opacity:0; }
    75% { opacity:0; }
    100% { opacity:1; }
}


.menu-footer a {
    background-color: transparent;
    color: #000 !important;
    text-decoration: none;
    background-image: linear-gradient(var(--primary),var(--primary));
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0% 6px;
    transition: background-size .5s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: .9em;
    font-weight: 400;
    font-style: normal;
    white-space: nowrap;
    height: 24px;
}

.menu-footer a:hover {
    background-size: 100% 6px;
    color: black;
    text-decoration: none;
}

.menu-footer ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
    flex-direction: column;
}

.menu-footer ul li{
    margin: 2px;
}

/*  */


.img-icon .change-w{
  width: 100%;
  display: none;
  transition: .3s;
}

.img-icon .change-b{
  width: 100%;
  display: flex;
  transition: .3s;
}

.img-icon .change-o{
  width: 100%;
  display: flex;
  transition: .3s;
}

.btn-socialmedia{
  background: var(--tertiary);
  margin: 10px;
  border-radius: 6px;
}

.btn-socialmedia:hover > .change-b{
    opacity: 0;
    visibility: hidden;
    display: none;
}

.btn-socialmedia:hover > .change-w{
    opacity: 1;
    visibility: visible;
    display: flex;
}


.btn-share:hover > .change-o{
    opacity: 0;
    visibility: hidden;
    display: none;
}

.btn-share:hover > .change-w{
    opacity: 1;
    visibility: visible;
    display: flex;
}


/*  */

/*
.img-primary {
  position: relative;
  width: 100%;
  padding-top: 100%;
}

.img-primary img {
  position: absolute;
  top: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
*/
    
.img-primary img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: .3s;
}

.img-secondary img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: .3s;
}

.img-tertiary img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: .3s;
}

.img-cuaternary img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: .3s;
}

.img-quinary img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: .3s;
}

.img-senary img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: .3s;
}

.img-septenary img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: .3s;
}

.inactivo{
    display: none !important;
}

.activo {
     display: flex !important;
}

.widget{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.wp-caption{
    width: 100% !important;
}

.wp-caption-text{
    display: none;
}

.suscription-header .widget .widget-title{
 display: none;
}

.suscription-header .widget img{
  width: 100px !important;
  height: auto;
  margin-top: 15px;
}

.suscription-footer .widget img {
  width: 150px !important;
  height: auto;
  margin-bottom: 15px;
}


/* */
.image-author img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: solid 15px var(--quinary);
}

.content-author {
  padding: 0 30px;
  width: 100%;
}

@media (min-width: 992px) {
  .content-author {
    padding: 0 30px 0 50px;
  }
}

@media (min-width: 1200px) {
  .content-author {
    padding: 0 30px 0 100px;
  }
}

.content-author {
  margin: 30px 0;
}

.author-post h5 a{
  background-color: transparent;
  color: var(--primary);
  text-decoration: none;
  background-image: linear-gradient(var(--primary),var(--primary));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size .5s;
  padding-bottom: 3px;
}

.author-post h5 a:hover {
  background-size: 100% 2px;
  color: var(--primary);
  text-decoration: none;
}

.author-post h5 {
  font-size: 1.3em;
}

.author-post p {
  font-size: .9em;
  color: gray;
}

#tags {
  margin: 50px 0 0 0;
  display: block;
  overflow: hidden;
  position: relative;
  min-height: 40px;
}

.tags-cook{
  margin: 50px 0 30px 0 !important;
}


.tags-cook ul{
 padding: 0 0 0 30px !important;
}

@media (min-width: 768px) {
.tags-cook ul{
 padding: 0 !important;
}
}

.tags ul{
 padding: 0 0 0 30px !important;
}

@media (min-width: 768px) {
.tags ul{
 padding: 0 0 0 10 !important;
}
}

#tags li {
  margin: 0 5px 10px 0!important;
  display: inline-block;
  vertical-align: top;
  font-size: initial;
  line-height: initial;
}

#tags li {
  background-color: #ffe3e9;
  color: var(--primary);
  padding: 4px 20px;
  height: auto;
  letter-spacing: 2px;
  display: inline-block;
  border-radius: 20px;
  text-transform: uppercase;
}
/* */


/* styles single content */


.single-content .wp-block-gallery figure{
    padding: 0;
}

.single-content .wp-block-gallery ul{
  padding: 0;
  width: 100%;
}

@media (min-width: 992px){
.single-content .wp-block-gallery ul{
  width: 95%;
}   
}

.single-content .wp-block-gallery ul li{
    padding: 0;
}

.single-content .wp-block-gallery ul li:before {
  content: "";
  height: inherit;
  width: inherit;
}

.single-content .wp-block-gallery .blocks-gallery-item{
 margin: 0;
}

figcaption{
    color: gray;
    font-size: .8em;
}

.wp-block-embed-twitter{
    display: flex;
    justify-content: center;
}


blockquote cite {
  background: transparent;
  font-size: .8em;
  margin: 15px 30px;
  color: var(--primary);
  font-style: normal;
  font-weight: 600;
  text-align: end;
  display: block;
}

@media (min-width: 992px) {
  blockquote cite {
    margin: 15px 0;
  }
}

.single-content blockquote p {
  margin-bottom: 30px;
  font-size: 1.5em;
  line-height: 1.3em;
}

@media (min-width: 768px) {
.single-content blockquote p {
  margin-bottom: 30px;
  font-size: 1.6em;
}
}

.single-content blockquote {
  display: block;
  background: #fff;
  padding: 100px 0px 10px 0px;
  position: relative;
  font-style: italic;
  top: 0;
  margin-top: -15px;
  margin-bottom: 20px;
  margin: 0;
}

@media (min-width: 992px) {
  .single-content blockquote {
    display: block;
    background: #fff;
    padding: 15px 30px 10px 115px;
    margin: 40px 0 10px 0;
    position: relative;
    top: 0px;
  }
}

.single-content blockquote::after {
  content: "";
}

.single-content blockquote::before {
  content: "\201C";
  font-size: 10em;
  color: var(--primary);
  position: absolute;
  left: 30px;
  top: -10px;
  font-family: 'Tinos';
  background-color: #f9f9f9;
  width: 100px;
  height: 100px;
  z-index: 1;
  border-radius: 50%;
  line-height: 1em;
}

@media (min-width: 1200px) {
  .single-content blockquote::before {
    content: "\201C";
    font-size: 13em;
    color: var(--primary);
    position: absolute;
    left: 0;
    top: -15px;
    width: 150px;
    height: 150px;
  }
}

 .single-content blockquote footer {
  background: transparent;
  font-size: .8em;
  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: .8em;
    margin: 15px 0;
    color: var(--primary);
  }
}

.single-content blockquote p {
  padding: 0 0 0 30px;
}

@media (min-width: 992px) {
  .single-content blockquote p {
    padding: 0 0 0 30px;
  }
}

@media (min-width: 1200px) {
  .single-content blockquote p {
    padding: 0 0 0 60px;
  }
}

.fb_iframe_widget{
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 30px;
}


.single-content .wp-block-embed-youtube iframe{
  width: 100%;
  height: 150px;
  background-color: #FFF4E8;
  margin: 0 0;
  margin-bottom: 30px;   
}

@media (min-width: 300px) {
.single-content .wp-block-embed-youtube iframe{   
  height: 175px;
}
}

@media (min-width: 576px) {
.single-content .wp-block-embed-youtube iframe{
    height: 275px;
}    
}

@media (min-width: 768px) {
.single-content-special .wp-block-embed-youtube iframe{
    height: 376px;
}    
}

@media (min-width: 992px) {
.single-content .wp-block-embed-youtube iframe{
    height: 298px;
    width: 95%;
}    
}

@media (min-width: 1200px) {
.single-content .wp-block-embed-youtube iframe{
    height: 410px;
}    
}

@media (min-width: 1380px) {
.single-content .wp-block-embed-youtube iframe{
    height: 500px;
}    
}


.single-content .wp-block-video video{
    width: 100%;
    height: auto;
}

@media (min-width: 992px) {
   .single-content .wp-block-video video{
    width: 95%;
    height: auto;
} 
}

.single-content p s, .single-content-special p s{
    background-color:var(--quinary);
    color: black;
    display: inline;
    padding: 5px;
    padding-top: 0px;
    padding-bottom: 0px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    text-decoration: none;
}

.single-content-special .blockquote p {
  padding: 0;
}

@media (min-width: 1200px) {
  .single-content-special .blockquote p {
    padding: 0 0 0 50px;
  }
}


.single-content-special blockquote p {
  margin-bottom: 30px;
  font-size: 1.5em;
  line-height: 1.3em;
}

@media (min-width: 768px) {
.single-content-special blockquote p {
  margin-bottom: 30px;
  font-size: 1.6em;
}
}

.single-content-special blockquote {
  display: block;
  background: #fff;
  padding: 100px 0px 10px 0px;
  position: relative;
  font-style: italic;
  top: 0;
  margin-top: -15px;
  margin-bottom: 20px;
  margin: 0;
}

@media (min-width: 992px) {
  .single-content-special blockquote {
    display: block;
    background: #fff;
    padding: 15px 30px 10px 115px;
    margin: 40px 0 10px 0;
    position: relative;
    top: 0px;
  }
}

.single-content-special blockquote::after {
  content: "";
}

.single-content-special blockquote::before {
  content: "\201C";
  font-size: 10em;
  color: var(--primary);
  position: absolute;
  left: 30px;
  top: -10px;
  font-family: 'Tinos';
  background-color: #f9f9f9;
  width: 100px;
  height: 100px;
  z-index: 1;
  border-radius: 50%;
  line-height: 1em;
}

@media (min-width: 1200px) {
  .single-content-special blockquote::before {
    content: "\201C";
    font-size: 13em;
    color: var(--primary);
    position: absolute;
    left: 0;
    top: -15px;
    width: 150px;
    height: 150px;
  }
}

 .single-content-special blockquote footer {
  background: transparent;
  font-size: .8em;
  margin: 15px 30px;
  color: var(--primary);
  font-style: normal;
  font-weight: 600;
  text-align: end;
}

@media (min-width: 992px) {
  .single-content-special blockquote footer {
    background: transparent;
    font-size: .8em;
    margin: 15px 0;
    color: var(--primary);
  }
}

.single-content-special .wp-block-embed-youtube iframe{
  width: 100%;
  height: 150px;
  background-color: #FFF4E8;
  margin: 0 0;
  margin-bottom: 30px;   
}

.single-content-special blockquote p {
  padding: 0 0 0 30px;
}

@media (min-width: 992px) {
  .single-content-special blockquote p {
    padding: 0 0 0 30px;
  }
}

@media (min-width: 1200px) {
  .single-content-special blockquote p {
    padding: 0 0 0 60px;
  }
}


@media (min-width: 300px) {
.single-content-special .wp-block-embed-youtube iframe{   
  height: 175px;
}
}

@media (min-width: 576px) {
.single-content-special .wp-block-embed-youtube iframe{
    height: 275px;
}    
}

@media (min-width: 768px) {
.single-content-special .wp-block-embed-youtube iframe{
    height: 376px;
}    
}

@media (min-width: 992px) {
.single-content-special .wp-block-embed-youtube iframe{
    height: 298px;
}    
}

@media (min-width: 1200px) {
.single-content-special .wp-block-embed-youtube iframe{
    height: 303px;
}    
}

@media (min-width: 1380px) {
.single-content-special .wp-block-embed-youtube iframe{
    height: 371px;
}    
}


.single-content-special .wp-block-video video{
    width: 100%;
    height: auto;
}


.single-content-special .wp-block-gallery figure{
    padding: 0;
}

.single-content-special .wp-block-gallery ul{
  padding: 0;
  width: 100%;
}

@media (min-width: 992px){
.single-content-special .wp-block-gallery ul{
  width: 95%;
}   
}

.single-content-special .wp-block-gallery ul li{
    padding: 0;
    margin-bottom: 40px;
}

.single-content-special .wp-block-gallery ul li:before {
  content: "";
  height: inherit;
  width: inherit;
}

.single-content-special .wp-block-gallery ul li figure figcaption{
    position: absolute;
    bottom: -40px;
    background: transparent;
    color: black;
}

/* */

.fancybox-is-open .fancybox-bg {
  opacity: .9;
  transition-timing-function: cubic-bezier(.22,.61,.36,1);
  background: rgba(255,255,255,.95) !important;
}

.fancybox-progress {
  background: var(--primary) !important;
}

.fancybox-infobar {
  color: rgba(255,255,255,.8) !important;
}

.fancybox-button{
    background-color: var(--primary) !important;
    color: white !important;
}

.fancybox-thumbs__list a::before {
    border: 6px solid var(--primary) !important;
}




/* New styles */

#search-mobile .btn{
	background: transparent !important;
}


/* New post */
.post-feed img {
  width: 100%;
}

.post-instagram {
  position: relative;
  height: 100%;
}

.post-instagram img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-media, .twitter-tweet  {
	margin: auto !important;
}

.single-content p img{
	width: 100%;
  height: auto;
}

.single-content iframe .pluginSkinLight{
	display: flex;
	justify-content: center;
	align-items: center;
}

/* New menu */

.menu-mobile {
  width: fit-content;
  font-size: 1.1em;
}

.menu-mobile a {
  display: block;
  background-color: transparent;
  color: #000 !important;
  text-decoration: none;
  background-image: linear-gradient(var(--primary),var(--primary));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 8px;
  transition: background-size .5s;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1em;
  font-weight: 600;
  font-style: normal;
  white-space: nowrap;
  height: 24px;
}

.menu-mobile a:hover {
  background-size: 100% 8px;
  color: black;
  text-decoration: none;
}

.menu-mobile .sub-menu {
  border-bottom: solid 1px var(--primary);
}

.menu-mobile .sub-menu a {
  width: auto;
}

.menu-mobile ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  margin: 0;
  list-style: none;
  width: 100%;
  flex-direction: column;
}

.menu-mobile ul li {
  margin-bottom: 10px;
}

.menu-mobile ul li ul {
  display: none;
}

.menu-mobile ul li a:hover + ul, .menu-mobile ul li ul:hover {
  display: none;
  position: relative;
}

.menu-mobile .menu-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
}

.menu-mobile .sub-menu .menu-item {
  padding: 5px;
  margin-bottom: 0;
}

.menu-mobile .sub-menu .menu-item a:hover {
  font-size: 1em;
  padding-left: 0px;
}

.menu-mobile .sub-menu .menu-item:first-child {
  padding: 5px 0 0 5px;
}

.menu-mobile .menu-item-has-children::before {
  content: url('https://api.iconify.design/bx:bx-plus.svg?color=%23de2a55&height=20');
  position: absolute;
  top: 2px;
  left: -20px;
  font-weight: bold;
  width: 20px;
  height: 20px;
}

hr {
  background-color: var(--secondary);
  width: 100%;
}

.submenu ul {
  list-style: none;
  padding-left: 10px;
}

.submenu ul li {
  margin-bottom: 10px;
}

.menu-desktop .sub-menu {
 /* 
 overflow: auto;
  flex-flow: column;
  max-height: 50vh;
  */
}

.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;
  text-decoration: none;
  display: block;
  background-color: transparent;
  color: #000 !important;
  text-decoration: none;
  background-image: linear-gradient(var(--primary),var(--primary));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 8px;
  transition: background-size .5s;
  text-transform: uppercase;
  font-size: .9em;
  font-weight: 600;
  font-style: normal;
  white-space: nowrap;
  height: 24px;
  margin: 0 10px;
}

@media (min-width: 1200px) {
.menu-desktop ul li a {
  font-size: .77em;
  margin: 0 7px;
}
}

@media (min-width: 1400px) {
  .menu-desktop ul li a {
    font-size: .9em;
    margin: 0 7px;
  }
  }

.menu-desktop ul li a:hover {
  background-size: 100% 8px;
  color: black;
  text-decoration: none;
}

.menu-desktop ul li a:hover + ul {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: .1s;
  animation-delay: .1s;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.menu-desktop ul li a:hover + ul, .menu-desktop ul li ul:hover {
  display: flex;
  position: absolute;
  padding: 10px;
  background: white;
  flex-direction: column;
  z-index: 9999;
}

.menu-desktop .menu-item {
  position: relative;
  background-color: transparent;
  white-space: nowrap;
}

.menu-desktop .menu-item .sub-menu {
  padding: 10px 20px;
}

.menu-desktop .menu-item-has-children {
  margin-right: 10px;
}

.menu-desktop .menu-item-has-children::before {
  content: url('https://api.iconify.design/bx:bx-plus.svg?color=%23de2a55&height=20');
  position: absolute;
  top: 3px;;
  right: -6px;
  font-weight: bold;
  cursor: pointer;
  width: 20px;
  height: 20px;
}

@media (min-width: 1200px) {
.menu-desktop .menu-item-has-children::before {
  content: url(https://api.iconify.design/bx:bx-plus.svg?color=%23de2a55&height=20);
  position: absolute;
  top: 0px;
  right: -6px;
  font-weight: bold;
  cursor: pointer;
  width: 15px;
  height: 15px;
}
}

.menu-desktop .sub-menu .menu-item-has-children::before {
  content: url('https://api.iconify.design/bx:bx-plus.svg?color=%23de2a55&height=20');
  position: absolute;
  top: 5px;
  right: 6px;
  cursor: pointer;
  width: 20px;
  height: 20px;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/* New Menu end */

#tiktok .post-feed blockquote{
  max-width: inherit !important;
  min-width: inherit !important;
}

/* Para videos youtube */
/* */

.fancybox-is-open .fancybox-bg {
  opacity: .9;
  transition-timing-function: cubic-bezier(.22,.61,.36,1);
  background: rgba(255,255,255,.95) !important;
}

.fancybox-progress {
  background: var(--primary) !important;
}

.fancybox-infobar {
  color: rgba(255,255,255,.8) !important;
}

.fancybox-button{
    background-color: var(--primary) !important;
    color: white !important;
}

.fancybox-thumbs__list a::before {
    border: 6px solid var(--primary) !important;
}

/* video player */
#histories {
  margin: 50px 0px;
}

#scrollingwrapper {
  margin: 50px 0px;
}

.area-square-section {
  background-color: #f1f1f1;
  padding: 50px 0px 30px 0px;
}

.area-related-single {
  background-color: #f9f9f9;
  padding: 50px 0px 30px 0px;
}

.histories {
  background-color: #f1f1f1;
  padding: 50px 0px 30px 0px;
  margin-bottom: 50px;
}

.content-post-historie {
  padding: 15px;
  position: absolute;
  height: 450px;
}

@media (min-width: 300px) {
  .content-post-historie {
    padding: 15px;
    position: absolute;
    height: 391px;
  }
}

@media (min-width: 576px) {
  .content-post-historie {
    padding: 15px;
    position: absolute;
    height: 604px;
  }
}

@media (min-width: 992px) {
  .content-post-historie {
    padding: 15px;
    position: absolute;
    height: 433px;
  }
}

@media (min-width: 1320px) {
  .content-post-historie {
    padding: 15px;
    position: absolute;
    height: 513px;
  }
}

@media (min-width: 300px) {
  .historie-gradient {
    position: absolute;
    width: 220px;
    height: 391px;
    border-radius: 10px;
    /*background: rgb(4,50,105);
    background: linear-gradient(0deg, rgba(4,50,105,1) 0%, rgba(4,50,105,0) 100%);*/
  }
}

@media (min-width: 576px) {
  .historie-gradient {
    position: absolute;
    width: 340px;
    height: 604px;
    border-radius: 10px;
  }
}

@media (min-width: 992px) {
  .historie-gradient {
    position: absolute;
    width: 244px;
    height: 433px;
    border-radius: 10px;
  }
}

@media (min-width: 1320px) {
  .historie-gradient {
    position: absolute;
    width: 289px;
    height: 513px;
    border-radius: 10px;
  }
}

/* Player */

.player-videos {
  position: relative;
  height: 100%;
}

.player-video {
  position: relative;
  width: 100%;
}

.buton-video-one {
  width: 100%;
}

.buton-video-two {
  width: 100%;
}

.buton-video-three {
  width: 100%;
}

.buton-video-four {
  width: 100%;
}


  .player-video video, .player-video iframe {
    width: 100% !important;
    height: 231px;
    background: var(--primary);
  }

@media (min-width: 576px) {
  .player-video video, .player-video iframe {
    width: 100%;
    height: 280px;
  }
}

@media (min-width: 768px) {
  .player-video video, .player-video iframe {
    width: 100%;
    height: 379px;
  }
}

@media (min-width: 992px) {
  .player-video video, .player-video iframe {
    width: 100%;
    height: 302px;
  }
}

@media (min-width: 1200px) {
  .player-video video, .player-video iframe {
    width: 100%;
    height: 365px;
  }
}

@media (min-width: 1380px) {
  .player-video video, .player-video iframe {
    width: 100%;
    height: 363px;
  }
}

  .player-video h2 {
    font-size: 20px;
    color: black !important;
    margin: 0;
    font-family: 'Roboto';
  }

@media (min-width: 768px) {
  .player-video h2 {
    font-size: 25px;
    margin: 0;
  }
}

@media (min-width: 300px) {
  .player-video p {
    font-size: 14px;
    margin: 0px;
  }
}

@media (min-width: 768px) {
  .player-video p {
    font-size: 16px;
    margin: 0px;
  }
}

.video-buton, .video-buton img {
  width: 100%;
  height: 150px;
  position: absolute;
  object-fit: cover;
  margin-bottom: 5px;
}

@media (min-width: 576px) {
  .video-buton, .video-buton img {
    width: 100%;
    height: 120px;
  }
}

@media (min-width: 768px) {
  .video-buton, .video-buton img {
    width: 100%;
    height: 220px;
  }
}

@media (min-width: 992px) {
  .video-buton, .video-buton img {
    width: 100%;
    height: 65px;
  }
}

@media (min-width: 1200px) {
  .video-buton, .video-buton img {
    width: 100%;
    height: 80px;
  }
}

.video-buton {
  position: relative;
  width: 100%;
}

.video-buton-icon {
  position: absolute;
  color: white;
  z-index: 2;
  font-size: 35px;
  transition: .2s;
  text-shadow: 3px 3px 9px rgba(0,0,0,.3);
}

@media (min-width: 300px) {
  .buton-video h3 {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .buton-video h3 {
    font-size: 18px;
  }
}

.buton-video {
  cursor: pointer;
  margin-bottom: 10px;
  display: block;
}

@media (min-width: 992px) {
  .buton-video {
    display: flex;
  }
}

.pleca-gree {
  width: 50px;
  height: 4px;
  background: var(--secondary);
  margin: 10px;
}

#player-four, #player-three, #player-two {
  display: none;
}

.video-buton:hover > .video-buton-icon {
  font-size: 50px;
}

.scrolling-wrapper-video {
  overflow-x: scroll;
  overflow-y: hidden;
  flex-wrap: nowrap;
  scrollbar-color: light;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 992px) {
  .scrolling-wrapper-video {
    overflow-x: scroll;
    overflow-y: hidden;
    flex-wrap: wrap;
    scrollbar-color: light;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }
}

.video-content H3 {
  color: black;
  font-size: 1.3em;
  font-family: 'Sen';
}

.bg-bluedarck{
  background-color: var(--primary);
}

/* fin estilos video player */
/* Fin para videos youtube */

#logotype-scroll {
display: none !important;
}

@media (min-width: 1640px) {
  #logotype-scroll {
    display: flex !important;
    }
}

.aligncenter {
  display: flex !important;
  justify-content: center !important;
}

.img-16-9 img{
  width: 100%;
  height: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  transition: .3s;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  width: 100%;
}

/* slider */

.img-franchise {
  height: 200px;
  padding: 15px;
  border: solid 1px var(--cuaternary);
  border-radius: 15px;
}

.img-franchise img {
  width: auto;
  height:100%;
  object-fit: contain;
}

.bg-lightgray {
  background-color: #f9f9f9;
}

#modal-text-message{
  background: #b2f5be;
    padding: 10px;
    margin-top: 20px;
    text-align: center;
    font-weight: bold;
}

a{
  color: var(--primary) !important;
}

a:hover{
  color: var(--primary) !important;
}


.content-card-orange a{
  color: black !important;
}

#wpadminbar a{
  color: white !important;
}

#wpadminbar a:hover{
  color: #72aee6 !important;
}

.title-fr-slider a{
  color: #000 !important;
}