:root {
  --primary: #103E66;
  --secondary: #5CB135;
  --tertiary: #004471;
  --cuaternary: #449120;
  --quinary: rgba(128, 188, 1, 0.1);
  --senary: #f6f6f6;
  --sevenary: #012e4b;
  --octanary: #FDF3ED;
  --jost: 'Jost';
  --oxanium: 'oxanium';
  --questrial: 'questrial';
  --efect: cubic-bezier(0.65, 0.05, 0.36, 1);
}

::selection {
  background: var(--quinary);
  color: var(--primary);
}

:focus {
  outline: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

html.open {
  height: 100vh;
  overflow: hidden;
}

@media (min-width: 768px) {
  html {
  scroll-padding-top: 115px;
  }
}

body {
  font-family: var(--jost);
  font-size: 1.2em;
}

/* Animatión */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

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

.fade-in, .fade-in-up, .fade-in-left, .fade-in-right, .fade-in-down {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: ease;
  will-change: opacity, transform;
}

/* Animation visible */

.fade-in-up {
  transform: translateY(50px);
}

.fade-in-down {
  transform: translateY(-50px);
}

.fade-in-left {
  transform: translateX(-50px);
}

.fade-in-right {
  transform: translateX(50px);
}

.fade-in {
  transform: none;
}

.delay-1.visible {
  transition-delay: 0.2s;
}

.delay-2.visible {
  transition-delay: 0.4s;
}

.delay-3.visible {
  transition-delay: 0.6s;
}

.delay-4.visible {
  transition-delay: 0.8s;
}

.delay-5.visible {
  transition-delay: 1s;
}

.fade-in.visible, .fade-in-up.visible, .fade-in-down.visible, .fade-in-left.visible, .fade-in-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes blur {
  to {
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    filter: blur(0px);
  }
}

.blur {
  transition: all .75s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-animation: blur 0.3s linear forwards;
  animation: blur 0.3s linear forwards;
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
  filter: blur(5px);
}

/* - */

/* Framework */

.fnt-jost {
  font-family: var(--jost);
}

.fnt-oxanium {
  font-family: var(--questrial);
}

.fnt-questrial {
  font-family: var(--questrial);
}

.fnt-uppercase {
  text-transform: uppercase;
}

.fnt-blue {
  color: var(--primary);
}

.fnt-green {
  color: var(--secondary);
}

.fnt-dark-green {
  color: var(--cuaternary);
}

.fnt-light-gray {
  color: lightgray;
}

.fnt-gray {
  color: darkgray;
}

.fnt-red {
  color: red;
}

.fnt-small {
  font-size: .6em;
}

.fnt-xs {
  font-size: .8em;
}

.fnt-sm {
  font-size: 1em;
}

.fnt-md {
  font-size: 1.2em;
}

.fnt-lg {
  font-size: 1.4rem;
}

.fnt-xl {
  font-size: 1.6rem;
}

.fnt-xxl {
  font-size: 1.8rem;
}

.fnt-xxxl {
  font-size: 2rem;
}

.title-xl {
  font-size: calc(2rem + .1vw);
}

@media (min-width: 768px) {
  .title-xl {
    font-size: calc(2.5rem + .1vw);
  }
}

@media (min-width: 1200px) {
  .title-xl {
    font-size: calc(3rem + .1vw);
  }
}

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

.bg-blue-opacity {
  background: rgba(16 62 102 / 95%);
}

.bg-dark-blue {
  background: var(--sevenary);
}

.bg-green {
  background: var(--secondary);
}

.bg-light-green {
  background: var(--quinary);
}

.bg-light-pink {
  background: var(--octanary);
}

.bg-footer {
  background: rgb(16,62,102);
  background: linear-gradient(90deg, rgba(16,62,102,1) 50%, rgba(92,177,53,1) 50%);
}

.link-white {
  text-decoration: none;
  color: white;
  transition: .3s;
}

.link-white:hover {
  text-decoration: none;
  color: var(--secondary);
}

.link-white-inverse {
  text-decoration: none;
  color: white;
  transition: .3s;
  cursor: pointer;
}

.link-white-inverse:hover {
  text-decoration: none;
  color: var(--primary);
}

.link-green {
  text-decoration: none;
  color: var(--secondary);
  transition: .3s;
}

.link-green:hover {
  text-decoration: none;
  color: white;
}

.link-green-light {
  text-decoration: none;
  color: var(--secondary);
  transition: .3s;
}

.link-green-light:hover {
  text-decoration: none;
  color: var(--primary);
}

.link-blue {
  text-decoration: none;
  color: var(--primary);
  transition: .3s;
}

.link-blue:hover {
  text-decoration: none;
  color: var(--secondary);
}

.link-white-animation {
  background-color: transparent;
  color: white;
  text-decoration: none;
  background-image: linear-gradient(#fff,#fff);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size .5s;
  padding-bottom: 1px;
}

.link-white:hover {
  background-size: 100% 1px;
  color: var(--secondary);
}

.link-green-animation {
  background-color: transparent;
  color: var(--secondary);
  text-decoration: none;
  background-image: linear-gradient(var(--secondary),var(--secondary));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size .5s;
  padding-bottom: 1px;
}

.link-green-animation:hover {
  background-size: 100% 2px;
  color: var(--secondary);
}

.rounded-bottom-xs {
  border-radius: 0 0 10px 10px;
}

.btn-green a {
  display: block;
  background: var(--secondary);
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
  border-radius: 11px;
  box-shadow: 0 2px 6px rgba(0 0 0 / 10%);
  transition: .3s ease;
}

.btn-green a:hover {
  background: var(--primary);
}

.btn-green a svg {
  width: 20px;
  height: 20px;
  margin-right: 0;
  transition: .3s ease;
}

.btn-green a:hover svg {
  margin-right: -5px;
}

.mw-100 {
  max-width: 100px;
}

.mw-200 {
  max-width: 200px;
}

.mw-300 {
  max-width: 300px;
}

.aspect {
  position: relative;
  width: 100%;
  z-index: 0;
  transition: .3s ease;
  overflow: hidden;
}

.aspect img {
  position: absolute;
  top: 0;
  object-fit: cover;
  transition: .3s;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.aspect-4-4 {
  padding-top: 100%;
}

.aspect-4-3 {
  padding-top: 75%;
}

.aspect-2-3 {
  padding-top: 66.67%;
}

.aspect-16-9 {
  padding-top: 56.25%;
}

.aspect-16-6 {
  padding-top: 33.3%;
}

.aspect-responsive {
  padding-top: 120%;
}

@media (min-width: 576px) {
  .aspect-responsive {
    padding-top: 100%;
  }
}

@media (min-width: 768px) {
  .aspect-responsive {
    padding-top: 66%;
  }
}

@media (min-width: 1200px) {
  .aspect-responsive {
    padding-top: 50%;
  }
}

@media (min-width: 1400px) {
  .aspect-responsive {
    padding-top: 33.33%;
  }
}

.aspect-vertical {
  padding-top: 160%;
}

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

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

.scrolling-wrapper > div {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

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

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

.scrolling-wrapper-section {
  overflow-x: scroll;
  overflow-y: hidden;
  flex-wrap: nowrap;
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
}

@media (min-width: 768px) {
  .scrolling-wrapper-section {
    overflow-x: hidden;
    flex-wrap: wrap;
  }
}

.scrolling-wrapper-section > div {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

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

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

.max-content {
  width: max-content;
}

.btn-green-light a {
  display: block;
  background: var(--secondary);
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
  border-radius: 11px;
  box-shadow: 0 2px 6px rgba(0 0 0 / 10%);
  transition: .3s ease;
}

.btn-green-light a:hover {
  background: var(--cuaternary);
}

.btn-green-light a svg {
  width: 20px;
  height: 20px;
  margin-right: 0;
  transition: .3s ease;
}

.btn-green-light a:hover svg {
  margin-right: -5px;
}

.radius-all {
  border-radius: 50%;
}

.less-top-30 {
  margin-top: -30px;
}

.less-top-60 {
  margin-top: -60px;
}

.btn-less-20 {
  margin-right: -20px;
}

.btn-less-30 {
  margin-right: -30px;
}

.btn-less-40 {
  margin-right: -40px;
}

.btn-less-50 {
  margin-right: -50px;
}

.less-btm-30 {
  margin-bottom: -30px;
}

.less-btm-35 {
  margin-bottom: -35px;
}

.lh-10 {
  line-height: 110%;
}

.mb-first-part {
  margin-bottom: 220px;
}

@media (min-width: 768px) {
  .mb-first-part {
    margin-bottom: 50px;
  }
}

@media (min-width: 992px) {
  .mb-first-part {
    margin-bottom: 50px;
  }
}

.mb-seven-part {
  margin-bottom: 200px;
}

@media (min-width: 576px) {
  .mb-seven-part {
    margin-bottom: 150px;
  }
}

@media (min-width: 768px) {
  .mb-seven-part {
    margin-bottom: 150px;
  }
}

@media (min-width: 992px) {
  .mb-seven-part {
    margin-bottom: 0px;
  }
}

.img-left img {
  object-position: left !important;
}

.img-right img {
  object-position: right !important;
}

.highlighter {
  display: inline;
  position: relative;
  padding: 0px 9px;
  text-decoration: none;
  background-color: rgba(128, 188, 1, 0.1);
  background-position: 0 90%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: .3s ease;
  box-decoration-break: clone;
  font-weight: normal !important;
  text-decoration: none;
  -webkit-box-decoration-break: clone;
}

.reflex {
  transform: scaleX(-1);
}

.flickity-page-dots .dot {
  background: var(--secondary);
}

.top-sticky {
  top: 100px;
}

/* Styles */

#header {
  background: white;
  border-radius: 0 0 30px 30px;
  transition: .3s ease;
  z-index: 4;
}

#header.active {
  box-shadow: 0 3px 9px rgba(0 0 0 / 10%);
}

.sticky {
  z-index: 2;
}

#btn-close {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  position: absolute;
  top: 10px;
  left: 10px;
  cursor: pointer;
}

#btn-close:hover {
  color: var(--secondary);
}

#btn-close svg {
  transition: .3s ease;
  transform: rotate(0deg);
}

#btn-close:hover svg {
  transform: rotate(90deg);
}

.btn-nav {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--primary);
  transition: .2s ease;
}

.btn-nav:hover {
  color: var(--secondary);
}

.brand img {
  width: 150px;
  height: 60px;
  margin: 10px 0;
  transition: .3s ease;
}

@media (min-width: 1200px) {
  .brand img {
    width: 180px;
    height: 72px;
    margin: 15px;
  }
}

.brand.active img {
  width: 120px;
  height: 48px;
  margin: 10px 0;
}

@media (min-width: 1200px) {
  .brand.active img {
    width: 130px;
    height: 52px;
    margin: 10px;
  }
}

.btn-menu svg {
  transition: .3s ease;
  transform: rotate(0deg);
}

.btn-menu:hover svg {
  transition: .3s ease;
  transform: rotate(180deg);
}

.btn-search svg {
  transition: .3s ease;
  transform: rotate(0deg);
}

.btn-search:hover svg {
  transform: rotate(90deg);
}

#bloker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16 62 102 / 70%);
  z-index: 8;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.3s;
  opacity: 0;
  visibility: hidden;
  cursor: crosshair;
}

#bloker.open {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.3s;
}

#navigation {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 95%;
  z-index: 9;
  background: var(--secondary);
  transition: .6s var(--efect);
  transform: translateX(-100%);
}

@media (min-width: 992px) {
  #navigation {
    width: 33.33%;
  }
}

#navigation.open {
  transform: translateX(0);
  visibility: visible;
}

.transition {
  opacity: 0;
  visibility: hidden;
  transition: .5s ease;
  transition-delay: 0.4s;
}

.open .transition {
  opacity: 1;
  visibility: visible;
}

#nav-area {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  overflow-y: auto;
  bottom: 125px;
  border-radius: 0 0 0 50px;
}

#nav-bottom {
  position: absolute;
  width: 100%;
  bottom: 0;
}

/* Menu desktop */

.menu-desktop {
  position: relative;
  z-index: 2;
}

.menu-desktop ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.menu-desktop ul li a {
  display: flex;
  position: relative;
  margin: 0 10px;
  padding: 3px 0;
  text-decoration: none;
  transition: .3s;
  color: var(--primary);
}

.menu-desktop ul li a:hover {
  color: var(--secondary);
  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: 0s;
  animation-delay: 0s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

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

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

.menu-desktop .menu-item .sub-menu {
  padding: 10px 20px;
  background: rgba(255 255 255 / 97%);
  border-bottom: 1px solid white;
  box-shadow: 0px 2px 10px 0px rgba(0 0 0 / 5%);
  border-radius: 5px;
}

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

.menu-desktop .menu-item-has-children::before {
  content: " ";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%235CB135' d='M11.251.068a.5.5 0 0 1 .227.58L9.677 6.5H13a.5.5 0 0 1 .364.843l-8 8.5a.5.5 0 0 1-.842-.49L6.323 9.5H3a.5.5 0 0 1-.364-.843l8-8.5a.5.5 0 0 1 .615-.09z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 12px;
  color: var(--secondary);
  right: -7px;
  cursor: pointer;
  width: 14px;
  height: 14px;
}

.menu-desktop .menu-item .sub-menu a {
  font-size: .8em;
}

.menu-desktop .menu-item.active a {
  color: var(--secondary);
}

/* - */

/* menu mobile */

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

.menu-mobile ul li {
  margin: 5px 0;
  position: relative;
}

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

.menu-mobile a {
  font-size: 18px;
  color: white;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
  transition: .3s ease;
}

.menu-mobile a:hover {
  color: var(--secondary);
  text-decoration: none;
}

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

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

.menu-mobile .sub-menu a {
  font-size: 1em;
  color: white;
  padding: 5px 0;
  font-weight: normal;
  filter: opacity(0.5);
}

.menu-mobile .sub-menu a:hover {
  background-size: 0% 2px;
  color: var(--secondary);
  filter: opacity(1);
}

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

.menu-mobile .menu-item-has-children::before {
  content: " ";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%235CB135' d='M11.251.068a.5.5 0 0 1 .227.58L9.677 6.5H13a.5.5 0 0 1 .364.843l-8 8.5a.5.5 0 0 1-.842-.49L6.323 9.5H3a.5.5 0 0 1-.364-.843l8-8.5a.5.5 0 0 1 .615-.09z'/%3E%3C/svg%3E");
  position: absolute;
  top: 5px;
  left: -20px;
  font-weight: normal;
  width: 16px;
  height: 16px;
  color: var(--secondary);
}

/* - */

/* Submenu */

.submenu ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.submenu ul li a {
  display: flex;
  position: relative;
  margin: 0 10px;
  padding: 3px 0;
  text-decoration: none;
  transition: .3s;
  color: rgba(255 255 255 / 50%);
  font-size: .8em;
}

.submenu ul li a:hover {
  color: var(--secondary);
  text-decoration: none;
}

/* - */

.cover {
  position: relative;
}

.video-cover {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.cover-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  background: var(--primary);
}

.cover-content {
  position: absolute;
  border-radius: 0px 30px 0 0;
  width: 85%;
  left: -1px;
  margin-bottom: -200px;
}

@media (min-width: 768px) {
  .cover-content {
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .cover-content {
    position: absolute;
    border-radius: 30px 30px 0 0;
    width: 40%;
    left: inherit;
    right: 10%;
  }
}

.line-green {
  width: 100px;
  height: 4px;
  background: var(--secondary);
  margin: 20px 0;
}

.line-white {
  width: 100px;
  height: 4px;
  background: white;
  margin: 20px 0;
}

.icons {
  width: 60px;
  height: 60px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 2px 9px rgba(0 0 0 / 10%);
}

.icons picture {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 300px) {
  .icons {
    width: 70px;
    height: 70px;
  }
}

@media (min-width: 768px) {
  .icons {
    width: 80px;
    height: 80px;
  }
}

.icons img {
  width: 90%;
  object-fit: cover;
}

.filter-gray {
  filter: grayscale(1);
}

#footer {
  border-radius: 0 50px 0 0;
  box-shadow: 10px 0 9px rgba(0 0 0 / 5%);
}

.card {
  position: relative;
  overflow: hidden;
  border: none;
}

.card-picture {
  position: relative;
}

.card-content {
  position: absolute;
  width: 90%;
  height: auto;
  background: white;
  bottom: 0;
  padding: 35px 25px 15px 25px;
  border-radius: 20px 20px 0 0;
}

@media (min-width: 768px) {
  .card-content {
    width: 80%;
  }
}

.btn-card {
  position: absolute;
  width: 35px;
  height: 35px;
  top: -15px;
  left: calc(50% - 12.5px);
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary);
  border-radius: 50%;
  transform: rotate(45deg);
  color: white;
  transition: .3s ease;
  cursor: pointer;
}

.btn-card:hover {
  transform: rotate(45deg);
}

@media (min-width: 992px) {
  .btn-card:hover {
    transform: rotate(-45deg);
  }
}

.btn-card.active {
  background: var(--primary);
  transform: rotate(0deg);
}

.content-expand {
  overflow: hidden;
  height: 65px;
  transition: .3s ease;
}

@media (min-width: 576px) {
  .content-expand {
    height: 75px;
  }
}

.scroll-card {
  width: 100%;
  height: 200px;
  overflow-y: auto;
  margin-bottom: 15px;
  position: relative;
  padding-right: 10px;
}

.scroll-card::-webkit-scrollbar {
  width: 4px;
}

.scroll-card::-webkit-scrollbar-thumb {
  background-color: var(--secondary);
  border-radius: 4px;
}

.scroll-card::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}

@media (min-width: 576px) {
  .scroll-card {
    height: 270px;
  }
}

.gradient-card {
  position: relative;
  height: 50px;
  width: 100%;
  background: rgb(255,255,255);
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  transition: .3s ease;
  margin-bottom: 20px;
  margin-top: -60px;
}

.post {
  position: relative;
}

.post-picture {
  position: relative;
}

.post-content {
  position: absolute;
  bottom: 35px;
  left: 0;
  width: 90%;
  border-radius: 0 15px 15px 0;
}

.area-attachment {
  position: relative;
}

.background-attachment {
  width: 100%;
  height: 80%;
  background-color: var(--secondary);
  position: absolute;
  top: 10%;
  z-index: 1;
}

.cotent-attachment {
  position: relative;
  z-index: 2;
}

.picture-attachment {
  position: relative;
}

.content-attachment.inter {
  position: absolute;
  bottom: 0;
  right: inherit;
  left: calc(50% - 43%);
  width: 86%;
  margin: auto;
  border-radius: 20px 20px 0 0;
  margin-bottom: -150px;
}

@media (min-width: 576px) {
  .content-attachment.inter {
    margin-bottom: -100px;
  }
}

@media (min-width: 768px) {
  .content-attachment.inter {
    margin-bottom: -100px;
  }
}

@media (min-width: 992px) {
  .content-attachment.inter {
    width: 35%;
    left: 10%;
    margin-bottom: 0px;
  }
}

.area-btn {
  margin-right: -30px;
  margin-left: 0%;
}

@media (min-width: 576px) {
  .area-btn {
    margin-right: -30px;
    margin-left: 40%;
  }
}

@media (min-width: 992px) {
  .area-btn {
    margin-right: -40px;
    margin-left: 40%;
  }
}

.background-attachment-primary {
  width: 100%;
  height: 50%;
  background-color: var(--primary);
  position: absolute;
  top: 0;
  z-index: 1;
}

.cotent-attachment-primary {
  position: relative;
  z-index: 2;
}

.tab-btn.active {
  display: none;
}

.btn_map {
  padding-left: 10px;
  border-left: solid 2px transparent;
  transition: .3s ease;
  cursor: pointer;
  position: relative;
}

.btn_map:hover {
  color: var(--secondary);
  border-left: solid 2px white;
  padding-left: 10px;
}

.btn_map.active {
  border-left: solid 2px var(--secondary);
  padding-left: 15px;
}

.btn_map.active:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 7px solid var(--secondary);
}

.btn_map.active span {
  color: var(--secondary) !important;
}

.head {
  position: relative;
}

.picture-head {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.picture-head img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.content-head {
  position: absolute;
  width: 80%;
  height: auto;
  background: white;
  bottom: 0;
  padding: 35px 25px 15px 25px;
  border-radius: 20px 20px 0 0;
}

@media (min-width: 768px) {
  .content-head {
    left: 10%;
    width: 45%;
  }
}

@media (min-width: 992px) {
  .content-head {
    width: 40%;
  }
}

@media (min-width: 1400px) {
  .content-head {
    width: 450px;
  }
}

/* - */

.content-head-large {
  position: absolute;
  width: 80%;
  height: auto;
  background: white;
  bottom: 0;
  padding: 35px 25px 15px 25px;
  border-radius: 20px 20px 0 0;
}

@media (min-width: 768px) {
  .content-head-large {
    left: 10%;
    width: 45%;
  }
}

@media (min-width: 992px) {
  .content-head-large {
    width: 45%;
  }
}

@media (min-width: 1400px) {
  .content-head-large {
    width: 550px;
  }
}

.first-picture {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.picture-first img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
}

.content-first {
  position: absolute;
  width: 80%;
  height: auto;
  bottom: 0;
  right: 10%;
  padding: 35px 25px 15px 25px;
  border-radius: 20px 20px 0 0;
}

@media (min-width: 992px) {
  .content-first {
    width: 40%;
    height: auto;
    bottom: 0;
    right: 10%;
  }
}

@media (min-width: 1400px) {
  .content-first {
    width: 33%;
  }
}

/* - */

.picture-second {
  width: 100%;
  height: 600px;
  position: relative;
  border-radius: 30px;
}

.second-picture {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.second-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
}

.content-second {
  position: absolute;
  width: 80%;
  height: auto;
  bottom: 0;
  right: 10%;
  padding: 35px 25px 15px 25px;
  border-radius: 20px;
}

@media (min-width: 992px) {
  .content-second {
    width: 40%;
    height: auto;
    bottom: 0;
    right: 10%;
  }
}

@media (min-width: 1400px) {
  .content-second {
    width: 33%;
  }
}

.less-bottom {
  margin-bottom: -150px;
}

@media (min-width: 576px) {
  .less-bottom {
    margin-bottom: -100px;
  }
}

@media (min-width: 768px) {
  .less-bottom {
    margin-bottom: -100px;
  }
}

@media (min-width: 992px) {
  .less-bottom {
    right: 10%;
    margin-bottom: -55px;
  }
}

.mb-second-part {
  margin-bottom: 200px;
}

@media (min-width: 576px) {
  .mb-second-part {
    margin-bottom: 150px;
  }
}

@media (min-width: 768px) {
  .mb-second-part {
    margin-bottom: 150px;
  }
}

@media (min-width: 992px) {
  .mb-second-part {
    margin-bottom: 120px;
  }
}

.icon-card img {
  width: 60px;
  height: 60px;
}

@media (min-width: 576px) {
  .icon-card img {
    width: 80px;
    height: 80px;
  }
}

@media (min-width: 1200px) {
  .icon-card img {
    width: 100px;
    height: 100px;
  }
}

.forms {
  background: white;
  border-radius: 10px;
}

.forms input {
  border: none;
  background: transparent;
  height: 50px;
}

.forms input::placeholder {
  color: lightgray;
}

.forms button {
  border: none;
  background: transparent;
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s ease;
}

.forms button:hover {
  color: var(--secondary);
}

.form-control:focus {
  box-shadow: 0 0 0 0 rgba(255 255 255 / 0);
}

/* Pagination */

.pagination {
  font-size: 1.1em;
  font-style: normal;
  font-weight: 600;
}

.page-link {
  border: none;
  color: var(--tertiary);
  background: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin: 5px;
}

.page-link:hover {
  color: white;
  background-color: var(--cuaternary);
}

.page-link:focus {
  color: white;
  background-color: var(--primary);
  border: none;
  box-shadow: none;
}

.page-item:first-child .page-link, .page-item:last-child .page-link {
  border-radius: 10px;
}

.page-link.current {
  background: var(--primary);
  color: white;
}

.pagination-bg {
  font-size: 1.1em;
  font-style: normal;
  font-weight: 600;
}

.pagination-bg .page-link {
  border: none;
  color: white;
  background: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin: 5px;
}

.pagination-bg .page-link:hover {
  color: white;
  background-color: var(--primary);
}

.pagination-bg .page-link:focus {
  color: white;
  background-color: var(--primary);
  border: none;
  box-shadow: none;
}

.pagination-bg .page-item:first-child .page-link, .pagination-bg .page-item:last-child .page-link {
  border-radius: 10px;
}

.pagination-bg .page-link.current {
  background: var(--septenary);
  color: var(--primary);
}

.active > .page-link, .page-link.active {
  background: var(--primary);
}

.content-post {
  position: absolute;
  width: 80%;
  height: auto;
  background: white;
  bottom: 0;
  border-radius: 20px 20px 0 0;
}

.picture-post .figure-caption {
  position: relative;
  z-index: 2;
  color: white;
  text-shadow: 0 1px 6px rgba(0 0 0 / 10%);
  width: 100%;
  margin: 0 15px;
  font-size: 13px;
}

.picture-post {
  overflow: hidden;
  border-radius: 20px;
}

.wp-block-gallery .wp-block-image {
  position: relative;
  width: 100%;
  z-index: 0;
  transition: .3s ease;
  overflow: hidden;
  padding-top: 65%;
  margin-bottom: 10px;
}

.wp-block-gallery .wp-block-image img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: .3s;
  height: 100%;
  width: 100%;
  z-index: 1;
  border-radius: 0px;
}

.wp-block-gallery {
  border-radius: 15px !important;
  overflow: hidden;
  padding: 0 !important;
}

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

.wp-block-gallery ol li:before {
  display: none;
}

.wp-block-gallery .figure-caption {
  position: absolute;
  z-index: 9999;
  bottom: 15px;
  left: 10px;
  padding: 2px 10px;
  border-radius: 15px;
  font-size: 12px;
}

.single-content {
  font-size: 1.1rem;
  counter-reset: my-awesome-counter;
}

.single-content .wp-block-media-text__content p:first-of-type:first-letter {
  float: initial;
  font-size: initial;
  margin: initial;
  color: inherit;
}

.single-content p {
  padding: 0 1rem;
  font-size: 1.1em;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 30px;
  z-index: 2;
  position: relative;
  color: var(--nonary);
  font-family: var(--questrial);
}

@media (min-width: 992px) {
  .single-content p {
    font-size: 1.2em;
    padding: 0 3rem;
  }
}

.single-content > :is(h1, h2, h3) {
  font-size: 1.2em;
  padding: 0 15px;
  font-weight: 500;
}

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

@media (min-width: 1200px) {
  .single-content > :is(h1, h2, h3) {
    font-size: 1.6em;
  }
}

.single-content > :is(h4, h5, h6) {
  font-size: 1.3em;
  padding: 0 15px;
  font-weight: 500;
  color: var(--primary);
}

@media (min-width: 768px) {
  .single-content > :is(h4, h5, h6) {
    font-size: 1.4em;
  }
}

@media (min-width: 1200px) {
  .single-content > :is(h4, h5, h6) {
    font-size: 1.5em;
  }
}

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

/* Necesario para que los videos de YouTube incrustados en bloques se muestren correctamente */
.single-content figure.wp-block-embed{
  display: block;
  margin-bottom: 60%;
}

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

.single-content figure img {
  width: 100%;
  height: auto;
  margin: 0;
  -webkit-transition: all .75s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all .75s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: blur 0.3s linear forwards;
  -webkit-animation-delay: .2s;
  animation-delay: .3s;
  filter: blur(5px);
  border-radius: 10px;
  margin-bottom: 5px;
}

.single-content ul {
  list-style: none;
  padding: 0 30px 0 50px;
  margin-bottom: 30px;
}

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

.single-content ul li {
  position: relative;
  display: block;
  padding: 2px 15px;
  background: transparent;
  text-decoration: none;
  transition: all .3s ease-out;
  font-weight: 400;
  line-height: 28px;
  border-radius: 5px;
}

.single-content ul li:hover {
  background: var(--quinary);
}

.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(--secondary);
  height: 1.5em;
  width: 1.5em;
  line-height: 1.4em;
  text-align: center;
  font-weight: bold;
  border-radius: 100%;
}

.single-content ol {
  list-style: none;
  padding: 0 30px 0 50px;
  margin-bottom: 30px;
}

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

.single-content ol ol {
  counter-reset: my-awesome-counter;
}

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

.single-content ol li:hover {
  background: var(--quinary);
}

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

.single-content ol li:has(> ol) {
  background: var(--quinary);
}

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

.single-content .table-hover tbody tr {
  background-color: transparent;
  transition: .3s;
  border-bottom: solid 2px var(--primary);
}

.single-content .table-hover tbody tr:hover {
  color: #212529;
  background-color: #fcf0fc;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  color: var(--primary);
}

.single-content .table-striped tbody tr:nth-of-type(odd) {
  background-color: transparent;
  transition: .3s;
  border-bottom: solid 2px var(--primary);
}

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

.single-content table {
  color: var(--primary);
  margin-bottom: 30px;
}

.single-content table thead {
  border-bottom: solid 4px var(--primary);
  color: var(--primary);
}

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

.table > :not(caption) > * > * {
  box-shadow: none;
}

.single-content .blockquote p {
  margin-bottom: 30px;
  font-size: .9rem !important;
  line-height: normal;
}

.single-content blockquote {
  display: block;
  font-size: 30px;
  padding: 50px 0px 10px 0px;
  position: relative;
  line-height: 1.2;
  font-style: italic;
  top: 0;
  margin-top: -15px;
  margin-bottom: 20px;
  margin: 0;
  border-left: solid 3px var(--secondary);
}

@media (min-width: 992px) {
  .single-content blockquote {
    display: block;
    position: relative;
    line-height: 1.2;
    top: 0px;
  }
}

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

.single-content blockquote::before {
  content: "\201C";
  font-size: 5em;
  color: var(--secondary);
  position: absolute;
  left: 5px;
  top: -20px;
  font-family: 'arial';
  z-index: 1;
  line-height: 1em;
}

@media (min-width: 992px) {
  .single-content blockquote::before {
    content: "\201C";
    font-size: 5em;
    position: absolute;
    left: 35px;
    top: -20px;
  }
}

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

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

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

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

.blockquote-footer {
  margin: 0;
  padding-right: 20px;
  color: var(--secondary);
}

@media (min-width: 992px) {
  .blockquote-footer {
    padding-right: 50px;
  }
}

.single-content a {
  color: var(--secondary);
  text-decoration: none;
  transition: .3s;
}

.single-content a:hover {
  color: var(--primary);
}

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

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

.single-content figure {
  display: block;
}

.single-content video, .single-content iframe {
  width: 100%;
  margin-bottom: 25px;
  border-radius: 10px;
}

.single-content p + h6 {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--cuaternary);
  font-size: .9em;
  background: var(--quinary);
  padding: 15px 15px 5px 15px;
  border-radius: 10px 10px 0 0;
  text-transform: uppercase;
}

.single-content div + h6 {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1em;
  background: #f1e5f8;
  padding: 15px 15px 0px 15px;
}

.single-content h6 + p {
  background: var(--quinary);
  padding: 0 15px 15px 15px;
  border-radius: 0 0 10px 10px;
}

.single-content h6 + p a {
  color: var(--cuaternary);
}

.single-content h6 + p a:hover {
  color: var(--cuaternary);
}

.single-content .mark, .single-content mark {
  background: #f3dfff;
}

/* single */

/* wordpress */

.single-content .figure .wp-block-image {
  padding-bottom: 0;
  font-weight: normal !important;
  margin: 0;
}

.wp-block-media-text__media {
  width: 40%;
  display: flex;
  justify-content: center;
  margin: 10px 0 !important;
}

@media (min-width: 576px) {
  .wp-block-media-text__media {
    width: 30%;
  }
}

@media (min-width: 768px) {
  .wp-block-media-text__media {
    width: 20%;
  }
}

.wp-block-media-text__content {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--secondary);
}

@media (min-width: 576px) {
  .wp-block-media-text__content {
    width: 70%;
  }
}

@media (min-width: 768px) {
  .wp-block-media-text__content {
    width: 80%;
  }
}

.wp-block-media-text .wp-block-media-text__content {
  direction: ltr;
  grid-column: 2;
  grid-row: 1;
  word-break: break-word;
  padding-left: 15px;
}

.wp-block-media-text {
  padding-left: 0;
}

@media (min-width: 300px) {
  .wp-block-media-text {
    display: flex;
    margin-bottom: 30px;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .wp-block-media-text {
    display: flex;
    margin-bottom: 30px;
    padding-left: 0;
  }
}

.wp-block-media-text.is-stacked-on-mobile {
  grid-template-columns: 100%!important;
}

.wp-block-media-text h5 {
  font-size: 1.3em;
}

.wp-block-media-text h4 {
  font-size: 1.3em;
  padding: 0;
  margin: 0;
  font-size: .8em;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.wp-block-media-text p, .wp-block-media-text h5 {
  padding: 0;
  margin-bottom: 5px;
}

.wp-block-media-text p {
  font-size: 1em;
  line-height: normal;
}

.wp-block-media-text figure {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .wp-block-media-text figure {
    margin-bottom: 0;
  }
}

.wp-block-media-text figure img {
  object-fit: cover;
}

.wp-block-media-text a {
  background-size: 0% 3px;
}

.wp-block-image {
  position: relative;
}

.wp-block-image img {
  position: relative;
  z-index: 1;
}

.wp-block-image .figure-caption {
  z-index: 2;
  color: white;
  text-shadow: 0 1px 6px rgba(0 0 0 / 10%);
  margin: 0 15px;
  font-size: 13px;
  bottom: 15px;
  left: 0;
  position: absolute;
}

/* - */

.wp-block-embed-youtube {
  position: relative;
  height: 0;
  padding: 0;
  margin: 0;
  padding-bottom: 56.25%;
}

.wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* moderno */
  height: 0;             /* fallback */
  padding-top: 56.25%;   /* fallback */
  overflow: hidden;
  margin-bottom: 2rem;
}


.wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  margin: 0;
}

.tags {
  display: flex;
  flex-flow: wrap;
}

.tags a {
  padding: 4px 15px;
  border-radius: 10px;
  border: solid 2px var(--secondary);
  color: var(--secondary);
  text-decoration: none;
  font-size: .9em;
  font-weight: 600;
  transition: .3s ease;
  margin: 0 15px 10px 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  white-space: nowrap;
}

.tags a:hover {
  color: var(--secondary);
  border: solid 2px var(--secondary);
  background: var(--quinary);
}

#author img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: solid 3px white;
  box-shadow: 0 2px 6px rgba(0 0 0 / 10%);
}

.author img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: solid 3px white;
  box-shadow: 0 2px 6px rgba(0 0 0 / 10%);
}

/* Fancybox */

.fancybox-is-open .fancybox-bg {
  background: rgba(16, 62, 102, 1);
}

.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;
  transition: .3s ease;
}

.fancybox-button:hover {
  background-color: var(--cuaternary) !important;
}

.fancybox-thumbs {
  background: black;
}

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

.fancybox-infobar {
  color: white !important;
  mix-blend-mode: inherit;
}

.fancybox-caption {
  background: transparent;
}

.fancybox-navigation .fancybox-button {
  width: 40px;
  height: 40px;
  margin: 10px;
}

.fancybox-button--arrow_left, .fancybox-button--arrow_right {
  padding: inherit !important;
  border-radius: 50%;
}

#share {
  background: var(--quinary);
  border-radius: 10px;
  overflow: hidden;
}

#share-hidden {
  overflow: hidden;
  height: 50px;
  border-radius: 10px;
  transition: .3s ease;
}

#share-hidden.open {
  height: 50px;
}

@media (min-width: 992px) {
  #share-hidden.open {
    height: 275px;
  }
}

.btn-share {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

#share ul {
  margin: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
}

@media (min-width: 992px) {
  #share ul {
    flex-direction: column;
  }
}

#share a {
  display: block;
  width: 35px;
  height: 35px;
  font-size: 25px;
  color: var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px 10px;
  transition: .3s;
}

@media (min-width: 992px) {
  #share a {
    margin: 5px;
  }
}

#share a:hover {
  color: var(--cuaternary);
}

.btn-carbono a {
  color: white;
  text-decoration: none;
  transition: .3s ease;
  cursor: pointer;
}

.btn-carbono a:hover {
  color: var(--primary);
}

/* calculate */

.switch {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 40px;
  cursor: pointer;
  margin: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switcher {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #eacab7;
  -webkit-transition: .3s;
  /*box-shadow: 0 2px 0px rgba(0 0 0 / 10%);*/
  transition: .3s;
}

.switcher:before {
  position: absolute;
  content: "";
  height: 32px;
  width: 32px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .3s;
  transition: .3s;
  z-index: 3;
}

input:checked + .switcher {
  background-color: var(--secondary);
}

.switch input:focus + .switcher {
  /*box-shadow: 0 0 1px var(--secondary);*/
}

.switch input:checked + .switcher:before {
  -webkit-transform: translateX(40px);
  transform: translateX(40px);
}

.switcher.round {
  border-radius: 34px;
}

.switcher.round:before {
  border-radius: 50%;
}

.switch::before {
  content: "No";
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
  color: gray;
}

.switch::after {
  content: "Si";
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  color: white;
}

.btn-form {
  display: block;
  background: var(--secondary);
  border: none;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
  border-radius: 11px;
  box-shadow: 0 2px 6px rgba(0 0 0 / 10%);
  transition: .3s ease;
}

.btn-form:hover {
  background: var(--cuaternary);
}

.btn-form svg {
  width: 20px;
  height: 20px;
  margin-right: 0;
  transition: .3s ease;
}

.btn-form:hover svg {
  margin-right: -5px;
}

#calculate :is(input, select) {
  height: 45px;
  border-radius: 15px;
  border: none;
  box-shadow: 0 2px 0 rgba(0 0 0 / 10%);
}

#calculate :is(input.inherit, select.inherit) {
  box-shadow: 0 0 0 rgba(0 0 0 / 0%);
}

#calculate input::placeholder {
  color: lightgray;
}

#calculate label {
  font-size: 16px;
  margin-bottom: 5px;
}

.form-input {
  background: white;
  border-radius: 15px;
  box-shadow: 0 2px 0 rgba(0 0 0 / 10%);
}

.form-input input {
  background: transparent;
  border: none;
  border-radius: 15px;
}

.form-input input::placeholder {
  color: lightgray !important;
}

.icon-conetect {
  position: relative;
  color: var(--secondary);
}

.icon-conetect::before {
  content: "";
  width: 50%;
  height: 2px;
  font-variant: var(--secondary);
  color: var(--secondary);
  position: absolute;
  background: var(--secondary);
  top: calc(50% - 0px);
  left: calc(0% - 55%);
}

@media (min-width: 992px) {
  .icon-conetect::before {
    width: 100%;
    left: calc(0% - 110%);
  }
}

.icon-conetect::after {
  content: "";
  width: 50%;
  height: 2px;
  font-variant: var(--secondary);
  color: var(--secondary);
  position: absolute;
  background: var(--secondary);
  top: calc(50% - 0px);
  right: calc(0% - 55%);
}

@media (min-width: 992px) {
  .icon-conetect::after {
    width: 100%;
    right: calc(0% - 110%);
  }
}

.rounded-responsive {
  border-radius: 0;
}

@media (min-width: 576px) {
  .rounded-responsive {
    border-radius: 20px;
  }
}

#wpadminbar{
  background: #0f3e66 !important;
}

/* Estilos para preguntas frecuentas GFA 05abr25 */
.text-primary {
  color: #103E66 !important;
}

.formato.collapsed h3::after, .formato.collapsed .h3::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url("/wp-content/themes/tema-tutopower/assets/img/plus.svg");
  left: -3%;
  background-size: cover;
  top: 0;
}

.formato h3::after, .formato .h3::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url("/wp-content/themes/tema-tutopower/assets/img/minus.svg");
  left: -3%;
  background-size: cover;
  top: 0;
}

.formato.collapsed h3, .formato.collapsed .h3 {
  color: #103E66;
}

.formato h3, .formato .h3 {
  display: block;
  position: relative;
  margin-left: 3%;
  color: #5CB135;
}

/* Collapse page */
.content-collapse {
  overflow: hidden;
}

.content-collapse > :is(h1, h2, h3, h4, h5, h6) {
  padding: 0;
  font-size: 1.4em;
}

.content-collapse > h2 {
  margin: 15px 0;
  color: var(--primary);
}

.content-collapse h3 {
  background-color: var(--quinary);
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  margin-bottom: 0;
  border-bottom: solid 2px white;
  transition: .3s ease;
  position: relative;
  font-size: 22px;
}

.content-collapse h3:last-of-type {
  border-bottom: none;
}

.content-collapse h3.active, .content-collapse h3:hover {
  background-color: var(--primary);
  color: white;
}

.content-collapse h3:after {
  content: '\002B';
  color: var(--primary);
  font-weight: bold;
  float: right;
  margin-left: 5px;
  position: absolute;
  right: 10px;
  top: calc(50% - 10px);
  font-size: 15px;
}

.content-collapse h3.active:after {
  content: "\2212";
  color:white;
}

.content-collapse h3:hover:after{
  color:white;
}

.content-collapse p {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #fbfbfb;
  margin-bottom: 0;
  transition: .3s ease;
}


.single-content audio{
  width: 100%;
  filter: invert(1);
}

.wp-block-gallery {
  border: solid 1px var(--secondary);
}

.has-text-align-center{
 text-align: center;
}

.has-text-align-right{
 text-align: end;
}

.wp-block-button a {
  display: flex;
  border-radius: 30px;
  padding: 10px 30px;
  border: solid 3px var(--cuaternary);
  color: white;
  background: var(--cuaternary);
  text-decoration: none;
  transition: .3s ease;
  font-weight: 500;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.wp-block-button a:hover {
  background: var(--senary);
  color: var(--primary);
  border: solid 3px var(--senary);
}

.has-text-color{
 color: var(--primary) !important;
}

.has-background{
  background: #fef7ff !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.wp-block-media-text h4 {
  padding: 0;
  margin: 0;
  font-size: 1.2em;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 2px;
}

.wp-block-gallery figure{
  margin: 0 !important;
}

.instagram-media {
  margin: auto !important;
  margin-bottom: 30px !important;
}

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

.tiktok-embed::before{
  content: "" !important;
  position: relative !important;
}

.single-content blockquote.tiktok-embed{
  border: none;
  margin-left: calc(50% - 300px);
}

@media (min-width: 768px) {
  .single-content blockquote.tiktok-embed{
    margin-left: calc(50% - 300px);
  }
}

.twitter-tweet{
  margin: auto;
}

.wp-block-quote cite {
  margin: 0;
  padding-right: 20px !important;
  color: var(--secondary);
  width: 100%;
  display: inline-block;
  text-align: end;
  font-size: 18px;
}

@media (min-width: 992px) {
  .wp-block-quote cite {
    padding-right: 50px;
  }
}

.single-content blockquote + p{
  margin-top: 30px;
}

.wp-block-image .figure-caption, .wp-block-image figcaption {
  position: absolute;
  bottom: 20px;
  left: 15px;
  right: 15px;
  z-index: 2;
  background: white;
  display: block;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 5px;
  color: gray;
  width: fit-content;
}

.tiktok-embed > a{
  display: none;
}

.mt-first {
  margin-top: 0;
  position: relative;
}

@media (min-width: 768px) {
  .mt-first {
    margin-top: -30px;
    position: relative;
  }
}

/* --- */

#whatsapp {
  position: fixed;
  z-index: 2;
  bottom: 30px;
  right: 30px;
  display: none;
}

#whatsapp a {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 3px 9px rgba(0 0 0 / 10%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.7em;
  color: white;
  transition: .3s;
}

#whatsapp a:hover {
  background: var(--cuaternary);
}

.whatsapp-message {
  position: absolute;
  top: calc(50% - 12px);
  transform: translateX(-160px);
  z-index: 2;
  background: white;
  color: var(--secondary);
  padding: 2px 10px;
  border-radius: 15px;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0 0 0 / 10%);
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: .3s ease;
}

#whatsapp a:hover + .whatsapp-message {
  visibility: visible;
  opacity: 1;
}

/* --- */

.circle{
  display: flex;
  width: 20px;
  height: 20px;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  justify-content: center;
  align-items: center;
  flex-shrink: inherit;
}

.social-media ul li:last-child{
  margin-right: 0 !important;
}

/* Steps calculate */

.progress-bar-container {
  background-color: #e0e0e0;
  border-radius: 0;
  overflow: hidden;
  height: 4px;
  width: 75%;
  margin: auto;
}

.progress-bar {
  height: 100%;
  background-color: #28a745;
  width: 0%;
  transition: width 0.3s ease;
  color: white;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  margin-top: -15px;
}

.step {
  text-align: center;
  position: relative;
  flex: 1;
}

.step:before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  width: 100%;
  height: 4px;
  background: #ccc;
  z-index: -1;
  transform: translateX(-50%);
}

.step:first-child:before {
  display: none;
}

.step-circle {
  width: 24px;
  height: 24px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 auto 5px;
  line-height: 24px;
  color: white;
}

.step.active .step-circle {
  background-color: var(--cuaternary);
}

.step.completed .step-circle {
  background-color: #28a745;
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
}

.step-text {
  font-size: 13px;
  color: gray;
}

.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
  border: none;
}

.border-green {
  border: solid 2px var(--secondary);
}

.result {
  display: none;
}

.result.deploy {
  display: block;
}

.res-huella {
  font-size: 2rem !important;
}