:root {
  --primary: #92A83A;
  --secondary: #382CD9;
  --tertiary: #090786;
  --cuaternary: #181747;
  --quinary: #141414;
  --senary: #b3d743;
  --efect: cubic-bezier(0.65, 0.05, 0.36, 1);
}

::selection {
  background: var(--secondary);
  color: white;
}

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-appearance: none;
}

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

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

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

he {
  outline: none;
}

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

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

button:focus {
  outline: none;
}

input:focus-visible {
  outline: none;
}

.form-control:focus {
  border-color: var(--secondary);
  border: solid 2px var(--secondary);
}

:focus-visible {
  outline: none;
}

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

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

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

body {
  font-family: 'Montserrat';
  font-size: 1.2em;
}

hr {
  border-top: solid 2px var(--primary);
  color: var(--primary);
  background: var(--primary);
}

/* Select */

.select2-container--default .select2-selection--single {
  border: none;
  background: #F9F9F9;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0 0 0 / 10%);
}

.select2-dropdown {
  border: none;
  background: #F9F9F9;
  overflow: hidden;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: solid 2px var(--tertiary);
  border-radius: 5px;
  padding-left: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--tertiary);
  font-weight: bold;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: lightgray;
  color: black;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background: var(--secondary);
  color: white;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 5px;
  z-index: 4;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: var(--tertiary) transparent transparent transparent !important;
  border-width: 7px 6px 0 6px;
  left: 25%;
  top: 85%;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent var(--tertiary) transparent !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--secondary);
}

.select2-container--default {
  width: 340px !important;
}

.select2-container .select2-selection--single {
  height: 50px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 50px;
  padding-left: 15px;
  color: var(--secondary);
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  right: 15px;
}

.select2-selection__placeholder span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.select2-selection__placeholder i::before {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: block;
  color: white;
  background: var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.selection svg {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

/* - */

/* Bootstrap */

.breadcrumb-item + .breadcrumb-item::before {
  color: lightgray;
  content: '-';
}

/* Animation */

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

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

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

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

/* Flickity */

.flickity-page-dots {
  position: relative;
}

.flickity-page-dots .dot {
  background: white;
}

.flickity-prev-next-button {
  box-shadow: 0 3px 9px rgba(0 0 0 / 10%);
  z-index: 2;
}

.slider-item .flickity-prev-next-button.previous {
  left: 30px;
}

@media (min-width: 768px) {
  .slider-item .flickity-prev-next-button.previous {
    left: 30px;
  }
}

@media (min-width: 992px) {
  .slider-item .flickity-prev-next-button.previous {
    left: 30px;
  }
}

@media (min-width: 1200px) {
  .slider-item .flickity-prev-next-button.previous {
    left: -35px;
  }
}

@media (min-width: 1400px) {
  .slider-item .flickity-prev-next-button.previous {
    left: -60px;
  }
}

.slider-item .flickity-prev-next-button.next {
  right: 30px;
}

@media (min-width: 768px) {
  .slider-item .flickity-prev-next-button.next {
    right: 30px;
  }
}

@media (min-width: 992px) {
  .slider-item .flickity-prev-next-button.next {
    right: 30px;
  }
}

@media (min-width: 1200px) {
  .slider-item .flickity-prev-next-button.next {
    right: -35px;
  }
}

@media (min-width: 1400px) {
  .slider-item .flickity-prev-next-button.next {
    right: -60px;
  }
}

.slider-item {
  position: relative;
}

.slider-item::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0px;
  width: 2%;
  height: 100%;
  background: #ffffff;
  background: linear-gradient(90deg, rgba(118 139 38 / 0%) 0%, rgba(118 139 38 / 0%) 100%);
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 1200px) {
  .slider-item::before {
    background: linear-gradient(90deg, rgba(118 139 38 / 100%) 0%, rgba(118 139 38 / 0%) 100%);
  }
}

.slider-item::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0px;
  width: 2%;
  height: 100%;
  background: #ffffff;
  background: linear-gradient(90deg, rgba(118 139 38 / 0%) 0%, rgba(118 139 38 / 0%) 100%);
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 1200px) {
  .slider-item::after {
    background: linear-gradient(90deg, rgba(118 139 38 / 0%) 0%, rgba(118 139 38 / 100%) 100%);
  }
}

/* -- */

.main-carousel .flickity-prev-next-button.next {
  right: -2%;
}

@media (min-width: 576px) {
  .main-carousel .flickity-prev-next-button.next {
    right: -8%;
  }
}

.main-carousel .flickity-prev-next-button.previous {
  left: -2%;
}

@media (min-width: 576px) {
  .main-carousel .flickity-prev-next-button.previous {
    left: -8%;
  }
}

/* Framework */

.title-primary {
  font-size: clamp(2rem, 1.5vw, 1rem);
}

.title-card {
  font-size: 1em;
}

@media (min-width: 992px) {
  .title-card {
    font-size: 1.1em;
  }
}

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

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

.fnt-xs {
  font-size: 12px;
}

.fnt-sm {
  font-size: 14px;
}

.fnt-md {
  font-size: 16px;
}

.fnt-1 {
  font-size: clamp(1rem, 1.5vw, 2rem);
}

.fnt-2 {
  font-size: clamp(1.6rem, 1.5vw, 2rem);
}

.ls-xl {
  letter-spacing: 10px;
}

.fnt-3 {
  font-size: calc(2rem + 1.5vw);
}

@media (min-width: 992px) {
  .fnt-3 {
    font-size: calc(4rem + .1vw);
  }
}

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

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

.w-200 {
  width: 200px;
}

.w-250 {
  width: 250px;
}

.w-300 {
  width: 100%;
  max-width: 300px;
}

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

.bg-dark-green {
  background: #617418;
}

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

.bg-green {
  background: #768b26;
}

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

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

.bg-gray {
  background: #ededed;
}

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

.link-white:hover {
  color: white;
}

.link {
  text-decoration: none;
  color: var(--senary);
  transition: .4s;
}

.link:hover {
  color: white;
}

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

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

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

.link-green:hover {
  color: var(--senary);
  text-decoration: underline;
}

.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-16-9 {
  padding-top: 56.25%;
}

.pt-hedadline {
  padding-top: 100px;
}

.pt-hedadline-1 {
  padding-top: 150px;
}

.pt-hedadline-2 {
  padding-top: 200px;
}

/* Pagination */

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

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

.page-link:hover {
  color: var(--tertiary);
  background-color: #f1f1f1;
}

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

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

.page-link.current {
  background: var(--secondary);
  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: 50px;
  margin: 5px;
}

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

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

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

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

.active > .page-link, .page-link.active {
  background: var(--tertiary);
  color: white;
}

/* Styles */

#bloker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24 23 71 / 70%);
  z-index: 10;
  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: 11;
  transition: .6s var(--efect);
  transform: translateX(-100%);
  overflow: hidden auto;
}

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

#navigation .transition {
  opacity: 0;
  visibility: hidden;
  transition: .4s ease;
  transition-delay: 0.4s;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

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

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

.cover {
  position: relative;
}

.bg-cover {
  position: relative;
  width: 100%;
  height: auto;
  line-height: 0;
  background: var(--tertiary);
}

.bg-cover img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  transition: .4s ease;
}

@media (min-width: 992px) {
  .bg-cover img {
    height: 900px;
  }
}

.less-30 {
  margin-top: -30px;
  position: relative;
  z-index: 1;
}

.content-cover {
  position: absolute;
  width: 100%;
  height: auto;
}

.underline span {
  display: inline;
  position: relative;
  padding: 0 15px;
  text-decoration: none;
  background-color: var(--secondary);
  background-position: 0 90%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: .4s ease;
  color: white;
  line-height: 1.7em;
  border-radius: 5px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.underline-green span, .underline-green strong, .underline-green {
  display: inline;
  position: relative;
  padding: 0 2px;
  text-decoration: none;
  background-color: var(--senary);
  background-position: 0 90%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: .4s ease;
  color: var(--cuaternary);
  line-height: 1.7em;
  border-radius: 1px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.underline-blue span, .underline-blue strong, .underline-blue {
  display: inline;
  position: relative;
  padding: 0 2px;
  text-decoration: none;
  background-color: var(--secondary);
  background-position: 0 90%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: .4s ease;
  color: white;
  line-height: 1.7em;
  border-radius: 1px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.btn-first a {
  display: flex;
  padding: 10px 25px;
  background: rgba(169 215 67 / 40%);
  color: white;
  border: solid 2px var(--primary);
  border-radius: 5px;
  text-decoration: none;
  transition: .4s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  align-items: center;
  justify-content: space-between;
}

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

.btn-first a .icon {
  left: 0;
  position: relative;
  transition: .4s ease;
}

.btn-first a:hover > .icon {
  left: 6px;
}

.btn-secondary a, button.btn-secondary {
  display: flex;
  padding: 10px 25px;
  background: var(--senary);
  color: var(--tertiary);
  border: solid 2px var(--senary);
  border-radius: 5px;
  text-decoration: none;
  transition: .4s ease;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.btn-secondary a:hover, button.btn-secondary:hover {
  background: var(--primary);
  border: solid 2px var(--primary);
  color: white;
}

.btn-secondary a .icon {
  left: 0;
  position: relative;
  transition: .4s ease;
}

.btn-secondary a:hover > .icon {
  left: 6px;
}

.btn-tertiary a {
  display: flex;
  padding: 8px 25px;
  background: var(--secondary);
  color: white;
  border: solid 2px var(--secondary);
  border-radius: 5px;
  text-decoration: none;
  transition: .4s ease;
  align-items: center;
}

.btn-tertiary a:hover {
  background: var(--tertiary);
  border: solid 2px var(--tertiary);
}

.btn-fourth a {
  display: flex;
  padding: 10px 25px;
  background: rgba(9 7 134 / 50%);
  color: white;
  border: solid 2px var(--tertiary);
  border-radius: 5px;
  text-decoration: none;
  transition: .4s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  align-items: center;
  justify-content: space-between;
}

.btn-fourth a:hover {
  background: var(--tertiary);
}

.btn-fourth a .icon {
  left: 0;
  position: relative;
  transition: .4s ease;
}

.btn-fourth a:hover > .icon {
  left: 6px;
}

.btn-stand a {
  display: block;
  padding: 3px 15px;
  background: var(--secondary);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  width: fit-content;
  transition: .3s ease;
}

.btn-stand a:hover {
  background: var(--tertiary);
}

.btn-file a, .btn-small a {
  display: block;
  padding: 7px 20px;
  background: var(--senary);
  color: var(--tertiary);
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  width: 240px;
  transition: .3s ease;
}

.btn-file a:hover, .btn-small a:hover {
  background: var(--primary);
  color: var(--cuaternary);
}

.btn-file-contact a {
  display: block;
  padding: 7px 20px;
  background: var(--secondary);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  width: 240px;
  transition: .3s ease;
}

.btn-file-contact a:hover {
  background: var(--tertiary);
}

.btn-downlod {
  width: 100%;
  padding: 5px 20px;
  border-radius: 5px;
  border: solid 2px var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--primary);
  font-size: 14px;
  transition: .3s;
  position: relative;
}

.btn-downlod:hover {
  background: var(--primary);
  color: white;
}

.dropdown-download {
  display: none;
  position: absolute;
  width: 100%;
  bottom: 100%;
  left: 0;
  background-color: white;
  border: 1px solid var(--primary);
  border-radius: 5px 5px 0 0;
  padding: 10px;
  z-index: 10;
  min-width: 150px;
}

.dropdown-download a {
  display: block;
  padding: 5px 10px;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
}

.dropdown-download a:hover {
  background-color: #f0f0f0;
}

.btn-downlod:hover .dropdown-download {
  display: block;
}

.dropdown-download {
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.btn-downlod:hover .dropdown-download {
  display: block;
  opacity: 1;
  visibility: visible;
}

.area-attachment {
  position: relative;
}

.bg-attachment {
  width: 100%;
  height: 80%;
  position: absolute;
  top: 0;
  z-index: 1;
  border-left: 0px solid transparent;
  border-right: 100vw solid transparent;
  border-top: 250px solid var(--cuaternary);
}

.bg-attachment-blue {
  width: 100%;
  height: 80%;
  position: absolute;
  top: 0;
  z-index: 1;
  border-left: 0px solid transparent;
  border-right: 100vw solid transparent;
  border-top: 250px solid var(--tertiary);
}

.bg-attachment-blue-inverse {
  width: 100%;
  height: 80%;
  position: absolute;
  top: 0;
  z-index: 1;
  border-left: 100vw solid transparent;
  border-right: 0px solid transparent;
  border-top: 250px solid var(--tertiary);
}

.bg-attachment-conect {
  width: 100%;
  height: 80%;
  position: absolute;
  bottom: 0;
  z-index: 1;
  border-left: 0px solid transparent;
  border-right: 100vw solid transparent;
  border-bottom: 300px solid var(--tertiary);
}

.bg-attachment-conect-green {
  width: 100%;
  height: 80%;
  position: absolute;
  bottom: 0;
  z-index: 1;
  border-left: 0px solid transparent;
  border-right: 100vw solid transparent;
  border-bottom: 300px solid #768b26;
}

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

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

.video-youtube .video-wrapper {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.video-youtube .video-wrapper iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}

.time {
  margin: 0 10px;
}

@media (min-width: 768px) {
  .time {
    margin: 0 20px;
  }
}

.time span:first-child {
  background: var(--secondary);
  padding: 5px 10px;
  border-radius: 3px;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  font-weight: bold;
}

@media (min-width: 320px) {
  .time span:first-child {
    width: 65px;
    height: 55px;
  }
}

@media (min-width: 992px) {
  .time span:first-child {
    width: 70px;
    height: 55px;
  }
}

.items {
  position: relative;
}

.picture-item {
  position: relative;
}

.picture-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/4;
  object-fit: cover;
}

.black-white {
  filter: grayscale(1);
}

.filter-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cuaternary);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.content-item {
  position: absolute;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.conector {
  width: 100%;
  height: 250px;
}

.picture-speaker {
  width: 200px;
}

.picture-speaker img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4;
  object-fit: cover;
  border-radius: 50%;
  border: solid 4px var(--senary);
}

.menu-footer a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  transition: .4s;
}

.menu-footer a:hover {
  color: var(--primary);
}

.menu-footer li {
  margin-bottom: 20px;
}

.menu-footer li:last-child {
  margin-bottom: 0;
}

.social-media li {
  margin: 7px;
}

.social-media a {
  color: white;
  transition: .4s;
  font-size: 1.1em;
}

.social-media a:hover {
  color: var(--primary);
}

.social-media-author li {
  margin: 7px;
}

.social-media-author a {
  color: var(--senary);
  transition: .4s;
  font-size: 1.1em;
}

.social-media-author a:hover {
  color: white;
}

.link-footer {
  color: lightgray;
  white-space: nowrap;
}

/* Menu Desktop */

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

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

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

.menu-desktop ul li a:hover {
  color: var(--primary);
  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: 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: var(--cuaternary);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}

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

.menu-desktop .menu-item-has-children::before {
  content: "+";
  position: absolute;
  top: 5px;
  color: var(--primary);
  right: -3px;
  cursor: pointer;
  width: 10px;
  height: 10px;
}

.menu-desktop .menu-item .sub-menu a {
  font-weight: normal;
}

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

/* menu mobile */

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

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

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

.menu-mobile a {
  font-size: 22px;
  color: white;
  text-decoration: none;
  transition: .3s;
}

.menu-mobile a:hover {
  color: var(--senary);
  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 .menu-item a:hover {
  background-size: 0% 2px;
  color: var(--primary);
}

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

.menu-mobile .menu-item-has-children::before {
  content: "+";
  position: absolute;
  top: 2px;
  left: -14px;
  font-weight: normal;
  width: 10px;
  height: 10px;
  color: var(--primary);
}

/* -- */

.btn-nav {
  width: 40px;
  height: 40px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#header {
  position: fixed;
  background: transparent;
  transition: .4s;
  width: 100%;
  z-index: 8;
  left: 0;
  top: 0;
}

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

#btn-close {
  position: absolute;
  width: 100px;
  right: 0;
  top: 0;
  color: white;
  text-align: end;
  font-size: 25px;
  border-left: 0px solid transparent;
  border-right: 100px solid var(--secondary);
  border-bottom: 50px solid transparent;
  cursor: pointer;
}

#btn-close svg {
  position: absolute;
  top: 5px;
  right: -95px;
}

#brand {
  opacity: 0;
  transition: .4s;
}

#brand.active {
  opacity: 1;
}

/* Single */

.single-content {
  font-size: 1.1rem;
}

.single-content p {
  font-size: 1em;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 30px;
  z-index: 2;
}

@media (min-width: 992px) {
  .single-content p {
    font-size: 1.1em;
  }
}

.single-content > :is(h1, h2, h3) {
  font-size: 1.6em;
  font-weight: 500;
}

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

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

.single-content > :is(h4, h5, h6) {
  font-size: 1.3em;
  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 {
  margin-bottom: 30px;
}

.single-content figure img {
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 5px;
  margin-bottom: 5px;
}

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

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

.single-content ul li:hover:after {
  left: -.5em;
  border-left-color: var(--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: 5px;
}

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

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

.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: 1.2rem;
  line-height: normal;
}

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

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

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

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

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

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

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

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

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

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

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

.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;
  position: relative;
}

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

.single-content p + h6 {
  margin-bottom: 0;
  font-weight: 600;
  color: white;
  font-size: .9em;
  background: var(--cuaternary);
  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(--cuaternary);
  color: white;
  padding: 0 15px 15px 15px;
  border-radius: 0 0 10px 10px;
  line-height: 110%;
}

.single-content h6 + p a {
  color: white;
}

.single-content h6 + p a:hover {
  color: white;
  text-decoration: underline;
}

.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(--cuaternary);
}

@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 {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

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

.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: 5px !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;
}

/* 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(--senary);
  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(--senary);
  color: var(--secondary);
}

.content-collapse h3:after {
  content: '\002B';
  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: var(--secondary);
}

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

/* Form */

.form input, .form select {
  margin-bottom: 20px;
  height: 45px;
  border: solid 2px #f1f1f1;
}

.form textarea {
  margin-bottom: 20px;
  border: solid 2px #f1f1f1;
}

.form input::placeholder, .form textarea::placeholder {
  color: darkgray;
}

.form .form-check-input {
  width: 20px;
  height: 20px;
}

.invalid-feedback {
  display: none;
  color: red;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.speaker-event {
  width: 30px;
  height: 30px;
}

.date-event {
  position: relative;
}

.date-event:after {
  content: "";
  width: 15px;
  height: 15px;
  background: var(--primary);
  position: absolute;
  top: calc(50% - 7px);
  left: -8px;
}

.speaker-event img {
  border-radius: 50%;
  border: solid 2px white;
}

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

#whatsapp a {
  width: 60px;
  height: 60px;
  background: #25d366;
  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: #25d366;
}

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

/* New styles */

.video-bg video {
  width: 100%;
  height: 700px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  mix-blend-mode: overlay;
  opacity: .5;
}

@media (min-width: 992px) {
  .video-bg video {
    width: 100%;
    height: auto;
  }
}

#tiker-brands {
  position: relative;
  width: 100%;
  height: auto;
  bottom: 0;
}

.brand {
  width: 100%;
  height: auto;
}

@media (min-width: 576px) {
  .brand {
    width: 400px;
    height: auto;
  }
}

@media (min-width: 1200px) {
  .brand {
    width: 500px;
    height: auto;
  }
}

@media (min-width: 1400px) {
  .brand {
    width: 600px;
    height: auto;
  }
}

.card-ticket {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0 0 0 / 10%);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--cuaternary);
}

.card-ticket-gray {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0 0 0 / 10%);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #ededed;
}

.collapse-button svg {
  transform: rotate(0deg);
  margin-top: 4px;
}

.collapse-button.active svg {
  transform: rotate(180deg);
}

.collapse-content {
  display: none;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transition: .3s ease;
}

@media (min-width: 992px) {
  .collapse-content {
    display: block;
    padding: 15px;
    visibility: visible;
    opacity: 1;
    transition: .3s ease;
  }
}

.collapse-content.open {
  display: block;
  padding: 15px;
  visibility: visible;
  opacity: 1;
}

@media (min-width: 992px) {
  .collapse-content.open {
    display: block;
    padding: 15px;
    visibility: visible;
    opacity: 1;
  }
}

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

.list-info ul {
  list-style-type: '+';
  padding-inline-start: 15px;
  margin-bottom: 0;
}

.list-info ul li {
  padding-left: 10px;
}

.list-info ul li::marker {
  color: var(--primary);
}

.list-speaker .speaker {
  margin-bottom: 20px;
}

.list-speaker .speaker:last-child {
  margin-bottom: 0;
}

.banner-file {
  width: 100%;
}

.banner-file img {
  width: 100%;
  height: auto;
  max-height: 320px;
}

@media (min-width: 992px) {
  .banner-file img {
    width: 100%;
    height: auto;
    max-height: 460px;
  }
}

#brand-file {
  border: solid 2px lightgray;
  border-radius: 20px;
  overflow: hidden;
}

#brand-file img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

@media (min-width: 992px) {
  #brand-file img {
    width: 250px;
    height: 250px;
  }
}

.breadcrumb a {
  font-weight: normal;
  font-size: 12px;
  padding: 3px 10px;
  text-decoration: none;
  background: #f9f9f9;
  color: var(--tertiary);
}

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

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

.tags a:hover {
  border: solid 2px #ddd;
  background: #ddd;
}

.card-product {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

#google-maps {
  display: flex;
}

#google-maps iframe {
  width: 100%;
  height: 400px;
  margin: 0;
  padding: 0;
}

.search {
  width: 100%;
  max-width: 600px;
  background: white;
  height: 50px;
  border-radius: 10px;
  padding: 5px;
}

.form-search button {
  color: var(--tertiary);
  border: none;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  display: flex;
  margin: 5px;
  transition: .3s ease;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 1.3em !important;
  padding: 0;
}

.form-search button:hover {
  color: var(--secondary);
  background: transparent;
}

.form-search input {
  background: transparent;
  border: none;
}

.form-search input::placeholder {
  color: darkgray;
}

.form-search input:-internal-autofill-selected {
  border-radius: 5px;
  height: 42px;
  background: transparent;
  margin: auto;
}

.form-search :not(.btn-check) + .btn:active {
  color: var(--secondary);
}

.form-search .form-control:focus {
  border-color: transparent;
  border: none;
}

/* Tab */

.tab-switch {
  position: relative;
  display: inline-block;
  width: 100%;
}

.tab-switch:after {
  content: "";
  position: absolute;
  width: calc(100% / var(--tab-count));
  top: 0;
  left: 0;
  transform: translateX(0%);
  transition: transform 0.3s ease-out;
  border-radius: 5px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  background-color: var(--senary);
  height: 100%;
  z-index: 0;
}

.tab-switch.first:after {
  transform: translateX(0%);
}

.tab-switch.second:after {
  transform: translateX(100%);
}

.tab-switch.third:after {
  transform: translateX(200%);
}

.tab-switch .tab {
  display: inline-block;
  width: calc(100% / var(--tab-count));
  padding: 12px 0;
  z-index: 1;
  position: relative;
  cursor: pointer;
  transition: color 200ms;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: var(--cuaternary);
}

.tab-switch .tab.active {
  color: var(--cuaternary);
}

.tab-wrapper {
  border-radius: 10px;
  background-color: white;
  padding: 5px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.tab-content {
  display: none;
}

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

.brand-card {
  background: white;
  border: solid 2px lightgray;
  border-radius: 5px;
  margin-top: -60px;
  position: relative;
  z-index: 1;
  padding: 5px;
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
}

.file-stand {
  position: relative;
}

.file-stand .btn-stand {
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 5px;
}

.brand img{
  max-width: 250px;
}

@media (min-width: 768px) {
.brand img{
  max-width: 500px;
}
}

.fnt-date{
 font-size: 1.1em;
}


@media (min-width: 576px) {
.fnt-date{
 font-size: 1.5em;
}
}

@media (min-width: 768px) {
.fnt-date{
 font-size: 2em;
} 
}

.btn-file-contact{
  white-space: nowrap;
}

.woocommerce-Address .woocommerce-Address-title{
    position: relative !important;
}

#login, #reset, #register, #suscribe {
  width: 100%;
  height: 100vh;
}

/*.woocommerce a{
  display: block;
  padding: 7px 20px;
  background: var(--senary);
  color: var(--tertiary);
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  width: 240px;
  transition: .3s ease;
}

.woocommerce a:hover{
    background: var(--primary);
    color: var(--cuaternary);
}
    */

/* Check Formulario*/

/* Mismo tamaño/borde para TODOS los checkboxes de CF7 */
.form .wpcf7-checkbox input[type="checkbox"],
.form .wpcf7-acceptance input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 2px solid #f1f1f1;
  border-radius: 4px;
  margin-right: 8px;
  accent-color: var(--primary); /* color del check */
}

/* Alineación limpia entre caja y texto */
.form .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.form .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* Tamaño del texto de las opciones */
.form .wpcf7-list-item .wpcf7-list-item-label { 
  font-size: 14px; 
  line-height: 1.3;
}

.form .wpcf7-list-item input[type="checkbox"] {
  margin: 0;               
  vertical-align: middle;  
  position: relative;
  top: 0;
}

.underline-green {
    word-break: break-word;
    overflow-wrap: break-word;
}