/* Cores */
:root {
  --white: #fff;
  --blue: #2e3173;
  --blue-s: #3a4e9b;
  --font: Flama, sans-serif;
}



/* Código Webflow */
.global-title, .featured {
  background-image: none;
}

.home-slide-img, .banner-img, .text-image-img {
    object-fit: cover;
}

.masonry-li {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}

a.w--current img.tab-link-img {
    -webkit-filter: brightness(100%) grayscale(0%) invert(0%);
    filter: brightness(100%) grayscale(0%) invert(0%);
}

.wp-block-image.container {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1200px;
}

.alignfull {
  max-width: initial;
  width: 100%;
}

.alignfull iframe {
  width: 100%;
  min-height: 500px;
}

.alignwide iframe {
  width: 100%;
}

.aligncenter iframe {
  width: 60%;
  min-height: 400px;
}

.aligncenter div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.alignleft div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.alignright div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.wp-block-embed.alignleft, .wp-block-embed.alignright {
  max-width: 1200px;
}

/* Código Wordpress */

.sitemap-title {
    font-weight: 700;
    text-transform: uppercase;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    background: none;
}

.no-bg-fixed {
    background-attachment: initial;
    /* background-size: auto; */
}

.blue h1, .blue h2, .blue h3, .blue p, .blue div {
    color: var(--blue);
}

.white h1, .white h2, .white h3, .white p, .white div {
    color: var(--white);
}

.bk_left {
  text-align: left;
}

.bk_center {
  text-align: center;
}

.w-slide, .featured, .global-title, .w-tabs, .banner {
  font-family: var(--font);
}

@media (max-width: 767px) {
    .navbar {
        background-image: none !important;
    }
}

li#accordion-panel-nav_menus, li#customize-control-site_icon {
  display: none !important;
}

/* share */

.share {
  transform: translate(0, -50%);
  padding: 8px 18px;
  width: 300px;
  height: 60px;
  font-size: 24px;
  letter-spacing: 2px;
  overflow: hidden;
  background: var(--blue-s);
  border-radius: 30px;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
  cursor: default;
  user-select: none;
  color: var(--white);
  margin: 0 auto;
}
.share .text {
  position: absolute;
  top: 18px;
  left: 42px;
  overflow: hidden;
  width: 150px;
  height: 25px;
  text-align: right;
  z-index: 1;
}
.share .text em {
  position: absolute;
  right: 0;
  top: 0;
  transition: right 0.2s ease-in-out 0.1s;
}
.share .ico-share {
  position: absolute;
  top: 20px;
  right: 43px;
  transition: right 0.2s ease-in-out;
  width: 20px;
  height: 20px;
}
.share .ico {
  font-size: 24px;
  position: absolute;
  top: 18px;
  left: -35px;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  z-index: 2;
  font-family: Icomoon, sans-serif;
  text-decoration: none;
  color: var(--white);
}
.share:hover {
  background: linear-gradient(to top, var(--blue-s), var(--blue));
  box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.3);
}
.share:hover em {
  right: -300%;
  transition-delay: 0;
}
.share:hover .fb {
  left: 32px;
  transition-delay: 0.3s;
}
.share:hover .tw {
  left: 70px;
  font-size: 25px;
  transition-delay: 0.2s;
}
.share:hover .gp {
  left: 119px;
  transition-delay: 0.1s;
}
.share:hover .ico-share {
  top: 23px;
  right: 30px;
  width: 15px;
  height: 15px;
}