/*
Theme Name: LaRetaguardia
Author: Gustavo Simone
Author URI: https://www.gustavosimone.com
Description: Custom theme responsive para viví viajá volá
Version: 1.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/
.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.roboto-condensed {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  line-height: 1.5;
  font-weight: 400;
}

body {
  background-color: #f9f9f9;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: #666;
  padding-top: 75px;
}

h2 {
  font-size: 3rem;
  font-family: "Crimson Pro", serif;
  line-height: 1.1;
}

.site-header {
  width: 100%;
  height: 77px;
  background-color: black;
  position: fixed;
  display: flex;
  align-items: center;
  padding: 0 15px;
  justify-content: space-between;
  z-index: 8;
  margin-top: -75px;
}

.site-brand {
  position: relative;
  z-index: 1;
}

.site-brand a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-brand img {
  max-width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: end;
}

.site-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  column-gap: 5px;
}

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children .sub-menu {
  position: absolute;
  z-index: 1;
  top: 22px;
  left: 0;
  flex-direction: column;
  overflow: hidden;
  height: 0px;
  opacity: 0;
  background: white;
  padding: 20px;
  min-width: max-content;
  box-shadow: 4px 4px 13px rgba(0, 0, 0, 0.26);
  border-radius: 3px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.menu-item-has-children .sub-menu a {
  color: #454545;
  display: block;
}

.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  height: auto;
}

.site-nav a {
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  font-size: 14px;
  font-weight: normal;
  font-family: "Roboto Condensed", sans-serif;
  padding: 5px;
}

.site-nav a:hover {
  color: #FAB927;
}

.header-lr {
  background-color: #FAB927;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-footer {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  background-color: black;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 1rem;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer a {
  color: white;
}

.site-footer a:hover {
  color: #FAB927;
}

.site-social {
  font-size: 24px;
}

body>header>h1>a {
  color: #ffffff;
  font-weight: 400;
}

a {
  text-decoration: none;
}

.site-nav .menu-desktop>.menu>ul {
  grid-auto-flow: column;
  display: grid;
  column-gap: 2rem;
}

.site-nav .current-menu-item a {
  color: #FAB927
}

.menuToggle {
  display: block;
  position: relative;
  top: 57px;
  z-index: 999;
  -webkit-user-select: none;
  user-select: none;
}

.menuToggle a {
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.menuToggle a:hover {
  color: white;
}

.menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  cursor: pointer;
  opacity: 0;
  /* hide this */
  z-index: 2;
  /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

.menuToggle span {
  position: relative;
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: linear-gradient(45deg, rgba(39, 5, 73, 1) 0%, rgba(250, 185, 39, 1) 100%);
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  -webkit-transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  -moz-transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  -ms-transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  -o-transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.menuToggle span:first-child {
  transform-origin: 0% 0%;
}

.menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

.menuToggle input:checked~span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: white;
  -webkit-transform: rotate(45deg) translate(-2px, -1px);
  -moz-transform: rotate(45deg) translate(-2px, -1px);
  -ms-transform: rotate(45deg) translate(-2px, -1px);
  -o-transform: rotate(45deg) translate(-2px, -1px);
}

.menuToggle input:checked~span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
  -webkit-transform: rotate(0deg) scale(0.2, 0.2);
  -moz-transform: rotate(0deg) scale(0.2, 0.2);
  -ms-transform: rotate(0deg) scale(0.2, 0.2);
  -o-transform: rotate(0deg) scale(0.2, 0.2);
}

.menuToggle input:checked~span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
  -webkit-transform: rotate(-45deg) translate(0, -1px);
  -moz-transform: rotate(-45deg) translate(0, -1px);
  -ms-transform: rotate(-45deg) translate(0, -1px);
  -o-transform: rotate(-45deg) translate(0, -1px);
}

.menuToggle input:checked~.menuItem {
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
}

.menuItem {
  position: absolute;
  width: 300px;
  height: calc(100vh + 100px);
  padding: 50px 50px 50px 30px;
  padding-top: 125px;
  background: #FAB927;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 19px rgba(0, 0, 0, 0.57);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  -webkit-transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  -moz-transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  -ms-transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  -o-transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.menuItem #menu-menu-principal.menu {
  grid-auto-flow: row;
}

.menu--right .menuToggle {
  position: fixed;
  right: -20px;
  top: 28px;
  width: 60px;
}

.menu--right .menuToggle input {
  right: 80px;
}

.menu--right .menuToggle span {
  right: 50px;
}

.menu--right .menuItem {
  right: 0;
  margin: -100px 0 0 0;
  transform: translate(100%, 0);
}

.menu--right .menuItem li a:hover {
  padding-left: 5px;
}

@keyframes text-slide-in {
  0% {
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

.content-area {
  width: inherit;
}

/* 'Margin: 0 auto' centers block content on the page */
.wrap {
  width: 87vw;
  margin: 0 auto;
}

.content-area {
  display: inline-block;
}

.content-full-width {
  width: 100%;
}

.home .content-area {
  width: 100%;
}

.content-area,
.primary-sidebar {
  display: inline-block;
}


/*top slider*/
.top-slider {
  position: relative;
}

.top-slider-background {
  width: 100%;
  height: 90vh;
  object-fit: cover;
}

.top-slider-content {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}

.top-slider-content>div {
  max-width: 50vw;
  text-align: center;
}

.top-slider-title {
  color: white;
  font-size: clamp(28px, 3.2vw, 65px);
  text-shadow: .6rem .6rem .6rem rgba(0, 0, 0, 0.3);
}

.top-slider-content p {
  color: white;
  font-size: clamp(14px, 1.5vw, 20px);
  text-shadow: .2rem .2rem .2rem rgba(0, 0, 0, 0.3);
}

.top-slider-btn {
  display: flex;
  width: 150px;
  height: 50px;
  border: 1px solid white;
  margin: 0 auto;
  color: white;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  backdrop-filter: blur(4px);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.top-slider-btn:hover {
  border: 1px solid white;
  color: #FAB927;
  background-color: white;
}



/* Search Style */
.search-form {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-rows: auto auto;
  height: 100vh;
  align-content: center;
  gap: 30px;
}

#search {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translate(0px, -100%) scale(0, 0);
  -moz-transform: translate(0px, -100%) scale(0, 0);
  -ms-transform: translate(0px, -100%) scale(0, 0);
  -o-transform: translate(0px, -100%) scale(0, 0);
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
  display: none;
  backdrop-filter: blur(4px);
}

#search.open {
  -webkit-transform: translate(0px, 0px) scale(1, 1);
  -moz-transform: translate(0px, 0px) scale(1, 1);
  -ms-transform: translate(0px, 0px) scale(1, 1);
  -o-transform: translate(0px, 0px) scale(1, 1);
  transform: translate(0px, 0px) scale(1, 1);
  opacity: 1;
  z-index: 106;
  display: block;
}

#search input[type="search"] {
  color: rgb(255, 255, 255);
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, .8);
  border-bottom: 2px solid rgba(255, 255, 255, .5);
  border-left: 0px solid transparent;
  border-right: 0px solid transparent;
  font-size: 40px;
  text-align: center;
  outline: none;
  padding: 10px;
}

#search .close {
  position: fixed;
  top: 22px;
  right: 15px;
  opacity: 1;
  background: black;
}

#search .close:hover {
  color: #fab927;
}

#search .close .bi.bi-x {
  width: 30px;
  height: 30px;
}

.search-submit {
  display: flex;
  width: 150px;
  height: 50px;
  border: 1px solid white;
  margin: 0 auto;
  color: white;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  backdrop-filter: blur(4px);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background: transparent;
}

.closex {
  background: #fab927;
  border: none;
  width: 50px;
  height: 50px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  cursor: pointer;
  right: 15px;
  top: 15px;
}

.closex .bi.bi-x {
  width: 50px;
  height: 50px;
}

#search .search-submit.close {
  position: static;
}

.btn-search {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 999;
}


/*slick slider*/
.slick-arrow {
  width: 50px !important;
  height: 50px !important;
  z-index: 1;
}

.slick-next::before,
.slick-prev::before {
  font-family: 'bootstrap-icons' !important;
  color: #FAB927 !important;
}

.slick-prev::before {
  content: '\F284' !important;
}

.slick-next::before {
  content: '\F285' !important;
}

.slick-prev.slick-arrow {
  left: -45px !important;
}

.slick-next.slick-arrow {
  right: -45px !important;
}

.slick-next::before,
.slick-prev::before {
  font-size: 50px !important;
}

.slick-dots {
  bottom: 50px !important;
  z-index: 1;
}

.slick-dots li button::before {
  font-size: 10px !important;
  width: 30px !important;
  height: 30px !important;
  color: white !important;
}

.slick-dots li.slick-active button::before {
  font-size: 16px !important;
  width: 40px !important;
  height: 40px !important;
  color: white !important;
}

.posts-carousel .posts-slider-title {
  background: rgba(0, 0, 0, 0.451);
  padding: 20px;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  backdrop-filter: blur(5px);
}

.article-loop {
  width: 45%;
  text-align: left;
  margin: 5px;
  padding: 10px;
  position: relative;
}

.entry-date {
  position: absolute;
  width: min-content;
  background: black;
  text-align: center;
  padding: 8px;
  color: white;
  font-size: 13px;
  top: -10px;
  right: 20px;
  white-space: wrap;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-image {
  display: block;
  margin-bottom: -3rem;
}

.article-image .attachment-post-thumbnail {
  object-fit: cover;
  width: 100%;
  height: 400px;
  display: block;
}

.article-full {
  width: 100%;
  padding: 4vw 7vw;
}

.article-loop p, 
.article-full p {
  word-wrap: anywhere;
}

.article-full p {
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 400;
  font-family: "Crimson Pro", serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #111;
}

.article-loop,
.article-full {
  display: inline-block;
  vertical-align: top;
  background-color: #FFF;
  border-radius: 4px;
  margin-bottom: 4px;
}

img {
  max-width: 100%;
}

.wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.wp-block-embed iframe {
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.article-image .wp-post-image {
  height: auto;
}

.news {
  padding-bottom: 50px;
}

.content-area.content-thin {
  margin-top: 3rem;
  display: grid;
  box-sizing: border-box;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.content-area.content-thin .article-loop {
  width: 100%;
}

.content-area.content-thin .article-loop h2 {
  font-size: clamp(18px, 3vw, 1.25rem);
}

.content-area.content-thin .article-loop header h2 {
  padding: 0 25px;
}

.content-area.content-thin .article-loop header h2 a {
  color: #454545;
  font-weight: 400;
  font-size: 20px;
  font-family: "Crimson Pro", serif;
}

.content-area.content-thin .article-loop p {
  padding: 0 25px;
  font-weight: 400;
  word-wrap: anywhere;
  font-family: "Crimson Pro", serif;
  font-size: 16px;
  line-height: 1.3;
}

.article-thu {
  width: 100%;
  height: 124px;
  object-fit: cover;
}

.site-social {
  display: flex;
  align-items: center;
  gap: 30px;
}

/*titulos*/
.row-titles {
  text-align: center;
  margin: 20px auto 50px;
}

.row-titles .title {
  font-size: 22px;
  color: #454545;
  padding: 0;
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: normal;
}

.row-titles p {
  font-size: 1.3125rem;
}

.wp-block-image {
  margin: 3rem auto;
}

/*posts-slider*/
.posts-slider {
  position: relative;
  height: 320px;
  margin: 0 20px;
  overflow: hidden;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.posts-slider-background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.posts-slider-content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  justify-content: center;
  text-align: center;
}

.posts-slider-title {
  color: white;
  font-size: clamp(16px, 1.5vw, 2em);
  text-shadow: .6rem .6rem .6rem rgba(0, 0, 0, 0.3);
}

.posts-slider-btn {
  display: flex;
  width: 150px;
  height: 50px;
  border: 1px solid #FAB927;
  margin: 50px auto;
  color: #FAB927;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.posts-slider-btn:hover {
  border: 1px solid #FAB927;
  color: white;
  background-color: #FAB927;
}

.map_wrapper path.imapsPolygon {
  fill: #FAB927;
}

.map_wrapper path.imapsPolygon:hover {
  fill: white;
}

.kadence-blocks-form-field.kb-field-desk-width-100.kb-input-size-standard {
  flex: 0 0 calc(100% - 160px);
}

.kb-forms-submit.button {
  display: flex;
  width: 150px;
  height: 50px;
  border: 1px solid white !important;
  color: #FAB927;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  height: 42px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background: transparent !important;
}

.kadence-blocks-form-field.kb-submit-field.kb-field-desk-width-100 {
  width: 160px;
}

.site-footer .kb-form .kadence-blocks-form-field .kb-text-style-field {
  border-color: white;
  background-color: rgba(255, 255, 255, 0.69);
}

.m-0 {
  margin: 0;
}

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

.w-100 {
  width: 100%;
}

.page-template-donde {
  background: linear-gradient(45deg, rgb(16, 63, 180) 0%, #26074d 100%);
}

.page-template-donde .row-titles .title {
  color: #FFF;
}

.page-template-donde .article-full {
  background-color: transparent;
}

.page-template-donde .row-titles.narrow {
  margin: 40px auto 0;
}

.page-template-donde .wrap {
  margin-bottom: 5vw;
}

.gt_float_switcher .gt_options a:hover {
  background: #FAB927 !important;
}

.container {
  margin: 0 auto;
}

.site-pagination {
  display: flex;
  align-items: center;
  margin: 60px auto;
  justify-content: center;
  gap: 5px;
}

.page-numbers.current {
  background: black;
  width: 32px;
  padding: 9px;
  font-size: 12px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-numbers.dots {
  color: #e2e2e2;
}

.site-pagination a {
  background: #E2E2E2;
  min-width: 32px;
  padding: 9px;
  font-size: 12px;
  color: #454545;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-nav .menu-mobile a {
  display: block;
}

.site-nav .menu-mobile .current-menu-item a {
  color: #FAB927;
  background: black;
}

.site-nav .menu-mobile ul {
  flex-direction: column;
}

.widget-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 300px));
  padding: 68px;
  gap: 27px;
  justify-items: center;
  justify-content: center;
  background: #E2E2E2;
}

.banner.widget-area {
  width: 100%;
  text-align: center;
}

.banner.widget-area figure, .primary-sidebar figure  {
  margin: 0;
}


.button-radio-content:hover .button-radio-menu {
  height: 115px;
  background: #000;
}

.button-radio-menu {
  position: absolute;
  height: 0px;
  background: transparent;
  top: 48px;
  width: 92%;
  right: 0;
  border-radius: 9px 0 0 30px;
  display: grid;
  padding: 5px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;

}

.button-radio-content:hover .radio-item {
  font-size: 14px;
  color: white;
}

.radio-item {
  color: transparent;
  font-size: 0px;
  display: block;
  margin: 0;
  padding: 4px 17px;
  display: flex;
  align-items: center;
}

.single .content-area {
  display: grid;
  grid-template-columns: auto;
  gap: 30px;
}

.primary-sidebar {
  background-color: #FFF;
  border-radius: 4px;
  margin-bottom: 4px;
}


@media (min-width: 1111px) {
  .menu--right {
    display: none;
  }
.megamenu.menu-item-has-children:hover .sub-menu {
  display: block;
  width: 600px;
  column-count: 3;
  column-gap: 30px;
  margin-left: -250px;
}

  .single .content-area {
    grid-template-columns: 1fr 300px;
  }

  .primary-sidebar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 300px));
    padding: 16px 0;
    gap: 27px;
    justify-items: center;
    justify-content: center;
  }
}

@media (max-width: 1110px) {
  .menu-desktop {
    display: none;
  }

  .menu-class {
    overflow-y: scroll;
    height: 100vh;
    padding-bottom: 180px;
  }

  .menu-mobile .menu-item-has-children .sub-menu {
    position: static;
    opacity: 1;
    padding: 0;
    height: auto;
    margin-bottom: 30px;
  }

  .menu-item-has-children .sub-menu a {
    font-size: 11px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 87vw;
  }

  .content-area.content-thin {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1360px) {
  .posts-slider {
    height: 390px;
  }

  .page-template-donde .article-full {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 1640px) {
  .container {
    width: 1350px;
  }

  .posts-slider {
    height: 420px;
  }

  .content-area.content-thin {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 979px) {
  .site-nav>.menu-menu-principal-container {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  .article-loop {
    width: 99%;
  }

  .top-slider-content p {
    display: none;
  }

  .content-area.content-thin {
    grid-template-columns: repeat(2, 46%);
  }

  .page-template-donde .article-full {
    margin-left: -6vw;
    margin-right: -6vw;
    width: calc(100% + 11vw);
  }
}

@media screen and (max-width: 400px) {

  .content-area,
  .primary-sidebar {
    width: 100%;
  }

  .content-area.content-thin {
    grid-template-columns: auto;
  }

  .widget-grid {
    padding: 20px 0;
  }

  .top-slider-content > div {
    max-width: 92vw;
  }
}

.d-none {
  display: none;
}

.botones-colabora {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.botones-colabora .blue-ar-l-rn-none {
  padding: 20px;
  background: #000;
  color: #fab927;
  text-align: center;
  box-shadow: 2px 4px 8px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.botones-colabora .blue-ar-l-rn-none:hover {
  background: #fab927;
  color: black;
  box-shadow: 1px 2px 4px;
  margin-top: 1px;
  margin-bottom: -1px;
}

.article-image {
  margin-bottom: 0;
  text-align: center;
}

.button-radio {
  height: 50px;
  position: fixed;
  right: 0;
  top: 30%;
  z-index: 9;
  display: flex;
}

.button-radio-icon {
  height: 50px;
  width: 50px;
  position: relative;
  background: rgb(250, 185, 39);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  margin-right: -15px;
}

.button-radio-icon::after {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 50px;
  border: none;
  background: rgb(250, 185, 39);
  z-index: -1;
  animation-name: pulse;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.button-radio-content {
  display: flex;
  align-items: center;
}

.button-radio-label {
  display: grid;
  padding: 5px 10px 5px 30px;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  font-size: 18px;
  font-weight: bold;
  font-family: "Roboto Condensed", sans-serif;
  background: black;
}

.button-radio-label span {
  font-size: 14px;
  font-weight: normal;
}

@keyframes pulse {
  from {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0;
  }

  51% {
    transform: scale(1);
    opacity: 0;
  }

  52% {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(2);
    opacity: 0;
  }
}