a,
button,
span,
p,
input,
textarea,
li,
img,
svg,
h2,
h3,
h4,
h5,
h6, i[class^=icon-] {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
@font-face {
  font-family: 'Gotham Bold';
  src: url('../fonts/Gotham-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham Book';
  src: url('../fonts/Gotham-Book.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham Book Italic';
  src: url('../fonts/Gotham-BookItalic.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'Gotham Medium';
  src: url('../fonts/Gotham-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham Medium Italic';
  src: url('../fonts/Gotham-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'Gotham Narrow Bold';
  src: url('../fonts/GothamNarrow-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham Narrow Book';
  src: url('../fonts/GothamNarrow-Book.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham Narrow Medium';
  src: url('../fonts/GothamNarrow-Medium.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}



:root {
  /**
  @font family declaration
  */
  --bd-ff-gotham-book: 'Gotham Book', Arial, sans-serif;
  --bd-ff-gotham-bold: 'Gotham Bold', Arial, sans-serif;
  --bd-ff-gotham-medium: 'Gotham Medium', Arial, sans-serif;
  --bd-ff-gotham-book-italic: 'Gotham Book Italic', Arial, sans-serif;
  --bd-ff-gotham-medium-italic: 'Gotham Medium Italic', Arial, sans-serif;
  --bd-ff-gotham-narrow-book: 'Gotham Narrow Book', Arial, sans-serif;
  --bd-ff-gotham-narrow-bold: 'Gotham Narrow Bold', Arial, sans-serif;
  --bd-ff-gotham-narrow-medium: 'Gotham Narrow Medium', Arial, sans-serif;
  
  /**
  @color declaration
  */
  --bd-white: #FFFFFF;
  --bd-black: #121212;
  --bd-placeholder: #828282;
  --bd-selection: #262626;
  --bd-gray: #EDEDED;
  --bd-heading: #121212;
  --bd-primary: #baea0c;
  --bd-secondary: #FF8851;
  --bd-tertiary: #87AD2E;
  --bd-orange: #FD6535;
  --bd-text-body: #555555;
  --bd-text-secondary: #DDDDDD;
  --bd-bg-secondary: #FFECE3;
  --bd-border-primary: #ECECEC;
  --bd-border-secondary: rgba(220, 220, 220, 1);
  --bd-border-tertiary: rgb(75, 78, 82);
  /**
  @font weight declaration
  */
  --bd-fw-normal: normal;
  --bd-fw-thin: 100;
  --bd-fw-elight: 200;
  --bd-fw-light: 300;
  --bd-fw-regular: 400;
  --bd-fw-medium: 500;
  --bd-fw-sbold: 600;
  --bd-fw-bold: 700;
  --bd-fw-ebold: 800;
  --bd-fw-black: 900;
  /**
  @font size declaration
  */
  --bd-fs-body: 16px;
  --bd-fs-p: 16px;
  --bd-fs-h1: 64px;
  --bd-fs-h2: 48px;
  --bd-fs-h3: 40px;
  --bd-fs-h4: 32px;
  --bd-fs-h5: 24px;
  --bd-fs-h6: 20px;
  --bd-fs-b1: 14px;
  --bd-fs-b2: 16px;
  --bd-fs-b3: 18px;
}

/*Animation css*/
@keyframes marquee-slide {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes marquee-slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes topToBottom {
  0% {
    top: -30%;
  }
  100% {
    top: 100%;
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes popupBtn {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.3;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes slide-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes translate-left {
  0% {
    -webkit-transform: translateX(0) translateY(-50%);
    transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
  75% {
    -webkit-transform: translateX(22px) translateY(-50%);
    transform: translateX(22px) translateY(-50%);
  }
  100% {
    -webkit-transform: translateX(30px) translateY(-50%);
    transform: translateX(30px) translateY(-50%);
    opacity: 0;
  }
}
@keyframes translate-right {
  0% {
    -webkit-transform: translateX(0) translateY(-50%);
    transform: translateX(0) translateY(-50%);
  }
  75% {
    -webkit-transform: translateX(-22px) translateY(-50%);
    transform: translateX(-22px) translateY(-50%);
  }
  100% {
    -webkit-transform: translateX(-30px) translateY(-50%);
    transform: translateX(-30px) translateY(-50%);
    opacity: 0;
  }
}
@keyframes rotateScale {
  from {
    transform: scale(0.5) rotate(310deg);
    opacity: 0.5;
  }
  to {
    transform: scale(1) rotate(360deg);
    opacity: 1;
  }
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg) scale(1.05);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes animateC {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes tp-loading {
  0% {
    stroke-dashoffset: 0;
    stroke-dasharray: 0, 3150;
  }
  100% {
    stroke-dashoffset: -1131;
    stroke-dasharray: 1128, 3138;
  }
}
@keyframes tp-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(0.9, 0.9);
  }
  100% {
    transform: scale(1, 1);
  }
}

/*Theme Default*/

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  transition: all ease 0.3s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  text-decoration: none;
  color: inherit;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
  transition: 0.3s;
}

img {
  max-width: 100%;
  object-fit: cover;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  outline: none;
  background-color: var(--bd-bg-1);
  height: 60px;
  width: 100%;
  font-size: 15px;
  color: rgba(124, 126, 130, 0.69);
  border: none;
  padding: 0 25px;
  color: var(--bd-black);
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  border-color: var(--bd-primary);
}

*::-moz-selection {
  background: var(--bd-black);
  color: var(--bd-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--bd-black);
  color: var(--bd-white);
  text-shadow: none;
}

::selection {
  background: var(--bd-black);
  color: var(--bd-white);
  text-shadow: none;
}

*::-moz-placeholder {
  opacity: 1;
  font-size: 16px;
  color: var(--bd-body-secondary);
}

*::placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 400;
  color: var(--bd-body-secondary);
}

strong {
  font-size: 18px;
  font-weight: 600;
  color: var(--bd-black);
}
.pl-0 {
  padding-left: 0px !important;
}
.pr-0 {
  padding-right: 0px !important;
}
/*Icomoon customize*/
i[class^=icon-] {
  line-height: 1;
  top: 2px;
  position: relative;
}

/*Bootstrap customize*/
.container,
.container-fluid {
  --bs-gutter-x: 25px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .container,
  .container-fluid {
    --bs-gutter-x: 40px;
  }
}

@media (min-width: 1441px) {
  .container {
    max-width: 1090px;
  }
}
@media (max-width: 1440px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 1230px) {
  .container {
    max-width: 800px;
  }
}
.container-fluid {
  max-width: 1820px;
}

.row {
  --bs-gutter-x: 30px;
}


.gy-30 {
  --bs-gutter-y: 30px;
}

.fix {
  overflow: hidden;
}

.p-relative {
  position: relative;
}

.color-white {
  color: var(--bd-white);
}

/*----------------------------------------
    Body background 
-----------------------------------------*/
.bg-white {
  background: var(--bd-white);
}

.section-space {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media only screen and (min-width: 992px) {
  .section-space {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-space {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}

.section-space-top {
  padding-top: 80px;
}
@media only screen and (min-width: 992px) {
  .section-space-top {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-space-top {
    padding-top: 140px;
  }
}

.section-space-bottom {
  padding-bottom: 70px;
}
@media only screen and (min-width: 992px) {
  .section-space-bottom {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-space-bottom {
    padding-bottom: 140px;
  }
}

/*-- Margin Bottom --*/

.mb-15 {
  margin-bottom: 15px;
}

.mb-40 {
  margin-bottom: 40px;
}

/*Typography css start*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-size: 16px;
  font-weight: var(--bd-fw-medium);
  background: var(--bd-white);
  color: var(--bd-black);
  line-height: 1.5;
  font-family: var(--bd-ff-gotham-book);
}

p {
  font-size: 17px;
  font-weight: var(--bd-fw-medium);
  color: var(--bd-text-body);
  margin-bottom: 30px;
  line-height: 1.65;
}


h2,
h3,
h4,
h5,
h6 {
  font-family: var(--bd-ff-gotham-book);
  color: var(--bd-heading);
  margin-top: 0px;
  line-height: 1.1;
  margin-bottom: 0;
  font-weight: var(--bd-fw-sbold);
  word-break: break-word;
}

h2 {
  font-size: var(--bd-fs-h2);
}

h3 {
  font-size: var(--bd-fs-h3);
}

h4 {
  font-size: var(--bd-fs-h4);
}

h5 {
  font-size: var(--bd-fs-h5);
}

h6 {
  font-size: var(--bd-fs-h6);
}

/*3.3 Offcanvas css*/
.offcanvas-info {
  background: var(--bd-black);
  height: 100%;
  position: fixed;
  padding: 30px 30px;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-color: var(--bd-primary) #000000;
}
@media only screen and (max-width: 512px) {
  html, body {
  overflow-x: hidden;
}
}
@media (max-width:480px) {
  .offcanvas-info {
    padding: 20px;
    width: 100%;
  }
}
.offcanvas-info.info_open {
  transform: translateX(0);
  opacity: 1;
}
.offcanvas_overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  z-index: 555;
  background-color: var(--bd-black);
  opacity: 0.8;
  transition: width 0.5s linear;
}
.offcanvas_overlay.overlayopen {
  width: 100%;
}
.offcanvas-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  align-items: center;
  border-bottom: 1px solid #363535;
}

.offcanvas-logo {
  width: 180px;
}
@media (max-width: 575px) {
  .offcanvas-logo {
    max-width: 130px;
  }
}

.offcanvas-icon button {
  font-size: 16px;
  color: var(--bd-black);
  height: 40px;
  width: 40px;
  background: var(--bd-white);
  border-radius: 50%;
}
.offcanvas-icon button i {
  transition: 0.5s;
}
.offcanvas-icon button:hover {
  background-color: var(--bd-primary);
}
.offcanvas-icon button:hover i {
  transform: rotate(90deg);
}

.offcanvas-contact {
  padding-top: 20px;
  border-top: 1px solid #363535;
}

.follow-link {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 500;
  color: var(--bd-white);
}
.location-content {
  position: relative;
  background-color: var(--bd-white);
  padding: 60px 50px 90px 60px;
  margin-bottom: 30px;
}
.cont-img-location{
  text-align: center;
}
.img-location{
  width: 100%;
  max-width: 500px;
}
.col-info-ubicacion{
  position: relative;
  min-height: 100px;
}
.direccion-ubicacion {
  margin-top: 25px !important;
}
.btn-location{
  position: absolute;
  top: 38px;
  width: 250px;
  height: 57px;
  cursor: pointer;
  background-image: url(../imgs/maps-btn.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.btn-location:hover{
  background-image: url(../imgs/maps-btn-hover.png);
}
.nota-ubicacion{
  font-size: 14px;
}
.btn-instagram{
  position: absolute;
  top: 20px;
  left: 60px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  background-image: url(../imgs/insta.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.btn-email{
  position: absolute;
  top: 22px;
  left: 110px;
  width: 30px;
  height: 20px;
  cursor: pointer;
  background-image: url(../imgs/email.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .btn-location {
    top: 0px;
    left: 50%;
    margin-left: -125px;
  }
}

@media (max-width: 707px) {
  .img-location {
    max-width: 350px;
}
}
@media (max-width: 575px) {
  .follow-link {
    font-size: 18px;
  }
}

.share-link ul {
  display: flex;
  gap: 10px;
}
.share-link ul li a {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: var(--bd-text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.share-link ul li a:hover {
  background-color: var(--bd-primary);
}

/*Section Title*/

.sub-title-three {
  font: 300 30px var(--bd-ff-gotham-book);
  display: inline-block;
  position: relative;
  padding: 10px 70px 10px 70px;
  margin-bottom: 20px;
  background-color: #5e5e5e;
  letter-spacing: 2px;
  color: #ffffff;
}
@media only screen and (min-width: 992px) {
  .sub-title-three {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .sub-title-three {
    margin-bottom: 40px;
  }
}
.section-title-two {
  font: 700 24px var(--bd-ff-gotham-medium);
  color: #5e5e5e;
}
@media only screen and (min-width: 576px) {
  .section-title-two {
    font-size: 40px;
  }
}
@media only screen and (min-width: 992px) {
  .section-title-two {
    font-size: 40px;
    line-height: 1.15;
  }
}
@media only screen and (min-width: 1400px) {
  .section-title-two {
    font-size: 40px;
  }
}
.section-title-two span {
  color: #707070;
}

.section-title-four {
  font: 900 49px/1.1 var(--bd-ff-gotham-book);
  letter-spacing: 2%;
}
@media only screen and (min-width: 768px) {
  .section-title-four {
    font-size: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-title-four {
    font-size: 45px;
  }
}
@media only screen and (min-width: 1400px) {
  .section-title-four {
    font-size: 50px;
  }
}

.section-title-four.text-center {
  text-align: start !important;
}
@media only screen and (min-width: 992px) {
  .section-title-four.text-center {
    text-align: center !important;
  }
}

.page-title {
  font: 700 160px/1.1 var(--bd-ff-jakarta-sans);
}

/*Back to top button*/

.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px gray;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.footer-menu li {
  text-align: left;
}
.footer-menu li a {
  font: 900 16px var(--bd-ff-gotham-book);
  color: white;
  padding: 0px 10px;
}
.footer-menu li a:hover {
  color: var(--bd-primary);
}

/*Preloader*/
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bd-black);
  z-index: 99999;
}

.preloader-logo {
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 576px) {
  .preloader-logo {
    height: 130px;
    width: 130px;
  }
}
@media only screen and (min-width: 768px) {
  .preloader-logo {
    height: 180px;
    width: 180px;
  }
}
.preloader-logo img {
  animation: zoom-in-zoom-out 2s ease-out infinite;
  width: 50px;
}
@media only screen and (min-width: 576px) {
  .preloader-logo img {
    width: 60;
  }
}
@media only screen and (min-width: 768px) {
  .preloader-logo img {
    width: 80px;
  }
}

.preloader-circle svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: tp-rotate 5s linear infinite;
}
.preloader-circle svg circle:last-child {
  stroke: var(--bd-primary);
  stroke-dashoffset: 0;
  stroke-dasharray: 1128, 3150;
  animation: tp-loading 4s linear infinite;
  transform-origin: center center;
}

/*Header CSS*/
.header-area {
  border-bottom: 1px solid var(--bd-border-primary);
  position: absolute;
  width: 100%;
  top: 0px;
  z-index: 55;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .header-area {
    overflow: visible;
  }
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-header .logo {
  position: relative;
  margin: 12px 0px;
}
@media (max-width: 575px) {
  .main-header .logo {
    max-width: 130px;
  }
}

.header-right {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media only screen and (min-width: 576px), only screen and (min-width: 768px) {
  .header-right {
    gap: 20px;
  }
}

.bars_icon {
  width: 35px;
  height: 20px;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 575px) {
  .bars_icon {
    width: 30px;
    flex: 0 0 auto;
  }
}
.bars_icon .line {
  width: 100%;
  height: 2px;
  background-color: var(--bd-black);
  display: inline-block;
  transition: color 0.2s ease-out;
  border-radius: 35px;
  transition: 0.3s;
}
.bars_icon .line:nth-child(2) {
  margin-left: 15px;
}
.bars_icon .line:nth-child(3) {
  margin-left: 8px;
}
.bars_icon:hover .line {
  margin-left: 0;
}

.header-sticky {
  transition: all 0.5s;
}

.transformed {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 800;
  transform: translateY(-100%);
}

.sticky {
  position: fixed !important;
  top: 0;
  z-index: 111;
  inset-inline-end: 0;
  inset-inline-start: 0;
  width: 100%;
  transition: 0.3s;
  background: var(--bd-white);
  -webkit-box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
  -moz-box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
  box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
}

.breadcrumb_header {
  border-bottom: 1px solid var(--bd-border-primary);
  padding-bottom: 15px;
}
.brand-img {
  text-align: center;
}
.brand-img:hover img {
  opacity: 0.6;
}

/*Main menu css*/
.main-menu ul {
  display: flex;
  gap: 40px;
  justify-content: flex-end; 
}
@media only screen and (min-width: 992px) {
  .main-menu ul {
    gap: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .feature-gallery-content h2 {
      font-size: 78px !important;
  }
  .feature-gallery-content p {
      font-size: 18px !important;
  }
  .sub-title-three {
    font-size: 24px !important;
  }
}
@media only screen and (max-width: 512px) {
  .sub-title-three {
        font-size: 22px !important;
    }
}
@media only screen and (max-width: 450px) {
  .sub-title-three {
        font-size: 18px !important;
        padding-left: 20px;
        width: 100%;
    }
}
@media only screen and (min-width: 1200px) {
  .main-menu ul {
    gap: 40px;
  }
}
.main-menu ul > li {
  position: relative;
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}
.main-menu ul > li:hover a {
  color: var(--bd-primary);
}
.main-menu ul > li:hover::before {
  color: var(--bd-primary);
  transform: translateY(-50%) rotate(180deg);
}
.main-menu ul > li > a {
  font-size: 20px;
  font-weight: 900;
  padding: 33px 0px;
  display: inline-block;
  padding-inline-start: 0px;
  text-transform: capitalize;
  position: relative;
}
.main-menu ul > li > a:hover {
  color: var(--bd-primary);
}
.main-menu ul li.has-mega-menu {
  position: static;
  /* mega menu start */
}

/*Footer*/
.footer-area {
  background-color: var(--bd-black);
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}
.logo-footer {
  width: 180px;
  height: auto;
}
.btn-wa-footer{
  position: relative;
  border: 1px solid #00ff00;
  color: var(--bd-white);
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px 10px 50px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-wa-footer::before {
    position: absolute;
    content: '';
    width: 25px;
    height: 25px;
    left: 14px;
    top: 10px;
    background-image: url(../imgs/menu/icon-wa.png);
    background-position: center;
    background-size: contain;
}
.btn-wa-footer:hover {
  background-color: #00ff00;
  color: var(--bd-black);
}
.btn-wa-footer:hover::before {
  filter: brightness(0) invert(1);
}

.footer-top {
  padding-bottom: 80px;
  border-bottom: 1px solid #292929;
}
@media (max-width: 1440px) {
  .btn-wa-footer{
    font-size: 14px;
  }
}

@media (max-width: 1263px) {
  .btn-wa-footer {
    font-size: 11px;
    padding: 10px 7px 10px 28px;
  }
  .btn-wa-footer::before {
    left: 7px;
    width: 17px;
    height: 17px;
  }
}
@media (max-width: 991px) {
  .footer-menu li, .footer-left, .footer-contact  {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .footer-top {
    padding-bottom: 35px;
  }
}

.footer-contact {
  text-align: start;
}
@media only screen and (min-width: 992px) {
  .footer-contact {
    text-align: end;
  }
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  gap: 15px 20px;
  padding: 32px 0px;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .footer-bottom-inner {
    justify-content: space-between;
    flex-direction: row;
  }
}

.footer-menu-link ul {
  display: flex;
  gap: 10px;
}
@media only screen and (min-width: 576px) {
  .footer-menu-link ul {
    gap: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .footer-menu-link ul {
    gap: 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .footer-menu-link ul {
    gap: 60px;
  }
}
.footer-menu-link ul li a {
  font-size: 16px;
  font-weight: 400;
  color: var(--bd-text-secondary);
}
@media (max-width: 575px) {
  .footer-menu-link ul li a {
    font-size: 14px;
  }
}
.footer-menu-link ul li a:hover {
  color: var(--bd-primary);
}

.inner {
  position: relative;
}

.page-title {
  font: 700 28px/1.35 var(--bd-ff-jakarta-sans);
  letter-spacing: -2%;
  text-align: center;
}
@media only screen and (min-width: 576px) {
  .page-title {
    font-size: 37px;
    line-height: 1.27;
  }
}
@media only screen and (min-width: 768px) {
  .page-title {
    font-size: 50px;
    text-align: start;
  }
}
@media only screen and (min-width: 992px) {
  .page-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1200px) {
  .page-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1400px) {
  .page-title {
    font-size: 70px;
    line-height: .7;
  }
}
@media only screen and (min-width: 1600px) {
  .page-title {
    font-size: 77px;
    line-height: 0;
  }
}
.page-title .title-img {
  display: inline-block;
  margin: -7px 10px 0px;
  width: 160px;
}
@media only screen and (min-width: 576px) {
  .page-title .title-img {
    margin: -10px 10px 0px;
    width: 155px;
  }
}
@media only screen and (min-width: 768px) {
  .page-title .title-img {
    margin: -10px 10px 0px;
    width: 195px;
  }
}
@media only screen and (min-width: 992px) {
  .page-title .title-img {
    margin: -15px 10px 0px;
    width: 280px;
  }
}
@media only screen and (min-width: 1200px) {
  .page-title .title-img {
    width: 280px;
    margin: -22px 10px 0px;
  }
}
@media only screen and (min-width: 1400px) {
  .page-title .title-img {
    margin: -25px 20px 0px;
    width: 280px;
  }
}
@media only screen and (min-width: 1600px) {
  .page-title .title-img {
    width: 280px;
  }
}

.section-title-wrapper {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .section-title-wrapper .page-title-right {
    position: absolute;
    right: 280px;
    top: 60px;
  }
}
@media only screen and (min-width: 992px) {
  .section-title-wrapper .page-title-right {
    right: 355px;
    top: 75px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-title-wrapper .page-title-right {
    right: 400px;
    top: 95px;
  }
}
@media only screen and (min-width: 1400px) {
  .section-title-wrapper .page-title-right {
    right: 430px;
    top: 110px;
  }
}
@media only screen and (min-width: 1600px) {
  .section-title-wrapper .page-title-right {
    right: 155px;
    top: 150px;
  }
}

/*Brand css*/

.brand-slider .swiper-wrapper {
  transition-timing-function: linear;
}

.process-area {
  background-image: url(../imgs/bg-video-360.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.process-thumb {
  overflow: hidden;
  border-radius: 0px;
  position: relative;
  margin-bottom: 80px;
  transition: 0.4s;
}

.process-thumb .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.process-thumb .video-play-btn:hover {
  background-color: var(--bd-tertiary);
  color: var(--bd-white);
}
.process-thumb::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(18, 18, 18, 0.1);
}
.process-thumb img {
  width: 100%;
}

.process-left {
  padding-right: 50px;
}

.section-text-four.process-right {
  margin-top: 30px;
}
@media only screen and (min-width: 992px) {
  .section-text-four.process-right {
    margin-top: 100px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-text-four.process-right {
    padding: 0px 90px;
  }
}
@media only screen and (min-width: 1400px) {
  .section-text-four.process-right {
    padding: 0px 100px;
  }
}
.section-text-four.process-right p {
  color: var(--bd-text-secondary);
}
.row-clientes{
  margin-bottom: 60px;
}
/*Contact css*/
.contact-form textarea {
  background-color: #F8F8F8;
  border: 1px solid transparent;
  border-radius: 11px;
  font: 400 16px var(--bd-ff-gotham-book);
  color: var(--bd-black);
  min-height: 160px;
  resize: none;
  padding: 20px;
}
@media (max-width: 575px) {
  .contact-form textarea {
    min-height: 140px;
  }
}
.contact-form textarea:focus {
  border-color: var(--bd-primary);
}
.contact-form textarea::placeholder, .contact-form textarea::-moz-placeholder {
  font: 400 16px var(--bd-ff-gotham-book);
  color: var(--bd-black);
}
.contact-top-area{
  height: 200px;
}


.contact-bg-img {
  margin-bottom: 70px;
}
@media (max-width: 575px) {
 
  .contact-bg-img {
    height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-top-area {
    height: 140px;
  }
}
@media only screen and (min-width: 768px) {
  .contact-bg-img {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 992px) {
  .contact-bg-img {
    margin-bottom: 120px;
  }
}
.contact-bg-img img {
  width: 100%;
  height: 100%;
}

.contact-text h6 {
  font: 700 18px var(--bd-ff-jakarta-sans);
  margin-bottom: 3px;
}
.contact-text h5 {
  color: #4d4d4d;
}
.contact-text p {
  font: 400 16px var(--bd-ff-gotham-book);
  margin-bottom: 0;
  text-align: left;
}
.contact-text p a:hover {
  text-decoration: underline;
}

.contact-icon {
  height: 50px;
  width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bd-white);
  border-radius: 11px;
}

.icon-contact{
  width: 30px;
}
.contact-single-inner {
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 11px;
  background-color: var(--bd-primary);
}
.contact-single-inner:not(:last-child) {
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) {
  .contact-single-inner {
    padding: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-single-inner {
    padding: 25px;
  }
}

@media only screen and (min-width: 576px) {
  .contact-left {
    max-width: 450px;
    margin: auto;
  }
}
@media only screen and (min-width: 992px) {
  .contact-left {
    max-width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-left {
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .contact-left {
    padding-right: 20px;
  }
}

.contact-right {
  box-shadow: 0px 15px 25px 0px rgba(0, 0, 1, 0.0705882353);
  padding: 20px;
  border-radius: 7px;
}
@media only screen and (min-width: 576px) {
  .contact-right {
    padding: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-right {
    padding: 80px;
  }
}

.contact-form-content {
  text-align: center;
  margin-bottom: 60px;
}
.contact-form-content h3 {
  font: 700 26px var(--bd-ff-jakarta-sans);
  margin-bottom: 15px;
  letter-spacing: -2%;
}
@media only screen and (min-width: 576px) {
  .contact-form-content h3 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .contact-form-content h3 {
    font-size: 35px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .contact-form-content h3 {
    font-size: 40px;
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-form-content h3 {
    font-size: 48px;
  }
}
.contact-form-content p {
  font: 400 18px/1.65 var(--bd-ff-gotham-book);
  color: var(--bd-text-body);
  margin-bottom: 0;
}

.contact-input-field {
  margin-bottom: 25px;
}
.contact-input-field label {
  display: block;
  margin-bottom: 10px;
  color: var(--bd-black);
  font: 400 16px var(--bd-ff-gotham-book);
  text-transform: uppercase;
}
.contact-input-field label span {
  font: 700 13px var(--bd-ff-gotham-book);
}
.contact-input-field input {
  height: 55px;
  border-radius: 20px;
  background-color: transparent;
  border: 1.5px solid var(--bd-text-secondary);
  color: var(--bd-black);
  font: 400 16px var(--bd-ff-gotham-book);
}
.contact-input-field input:focus {
  border-color: var(--bd-primary);
}
.contact-input-field select {
  height: 55px;
  width: 100%;
  border-radius: 11px;
  background-color: transparent;
  border: 1px solid var(--bd-text-secondary);
  color: var(--bd-black);
  font: 400 16px var(--bd-ff-gotham-book);
  padding-left: 20px;
}
.contact-input-field select:focus {
  border-color: var(--bd-primary);
}
.contact-input-field textarea {
  min-height: 200px;
  background-color: transparent;
  border: 1px solid var(--bd-text-secondary);
  border-radius: 11px;
  padding: 15px 20px;
  font: 400 16px var(--bd-ff-gotham-book);
  resize: none;
}
.contact-input-field textarea:focus {
  background-color: var(--bd-white);
  border-color: var(--bd-primary);
}
.contact-input-field textarea::placeholder, .contact-input-field textarea::-moz-placeholder {
  font: 400 16px var(--bd-ff-gotham-book);
  color: var(--bd-black);
}

.contact-form-btn {
  margin-bottom: 30px;
  float: right;
}
.contact-form-btn button {
  font: 400 18px var(--bd-ff-gotham-book);
  background-color: var(--bd-primary);
  color: var(--bd-black);
  padding: 15px 50px;
  border-radius: 10px;
  display: inline-block;
  border: 1px solid var(--bd-text-primary);
}
.contact-form-btn button:hover {
  color: var(--bd-white);
  background-color: var(--bd-black);
  border-color: var(--bd-black);
}

.text-content p {
  font: 400 18px var(--bd-ff-gotham-book);
}
.text-content h4 {
  font-size: 24px;
  font-family: var(--bd-ff-gotham-book);
}
@media only screen and (min-width: 768px) {
  .text-content h4 {
    font-size: 30px;
  }
}

/*Faq css*/
#accordionExampleb3 {
  padding-bottom: 180px;
}
.accordion_style .accordion {
  border: none;
}
.accordion_style .accordion .accordion-item {
  border: none;
  border-radius: 0;
  margin-bottom: 25px;
}
.accordion_style .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.accordion_style .accordion .accordion-item .accordion-button {
  border-bottom: 0;
  border-radius: 0;
  font-size: 17px;
  color: var(--bd-black);
  padding: 0px 30px 0px 0px;
  font-weight: 500;
  padding-left: 50px;
  flex-wrap: wrap;
}

.accordion_style .accordion .accordion-item .accordion-button::after {
  position: absolute;
  left: 21px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  height: 3px;
  width: 12px;
  content: "";
  background-color: #BAEA0C;
}
.accordion_style .accordion .accordion-item .accordion-button::before {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  height: 12px;
  width: 3px;
  content: "";
  background-color: #BAEA0C;
}
.accordion_style .accordion .accordion-item .accordion-button:focus {
  border: none;
  border-color: transparent;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.accordion_style .accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  background-color:#BAEA0C;
  padding: 10px 50px;
}
.accordion_style .accordion .accordion-item .accordion-button:not(.collapsed)::before {
  transform: translateY(-50%) rotate(-90deg);
  z-index: 8;
  background-color: white;
}
.accordion_style .accordion .accordion-item .accordion-body {
  padding: 0 0 0 20px;
  margin: 10px 0 0 5px;
  border-left: 1.5px solid #8B8B8B;
}

.description {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
}
.description strong {
  font-size: 16px;
  font-weight: 500;
}
.accordion_style-three{
  position: relative;
  background-color: var(--bd-white);
  padding-bottom: 80px;
}
.accordion_style-three .accordion .accordion-item {
  margin-bottom: 40px;
}
.accordion_style-three .accordion .accordion-item .accordion-button {
  font: 700 20px var(--bd-ff-gotham-book);
}
@media only screen and (min-width: 768px) {
  .accordion_style-three .accordion .accordion-item .accordion-button {
    font-size: 25px;
  }
}
@media only screen and (min-width: 1400px) {
  .accordion_style-three .accordion .accordion-item .accordion-button {
    font-size: 25px;
  }
}
.accordion_style-three .accordion .accordion-item .description {
  font: 300 18px var(--bd-ff-gotham-book);
  padding-left: 50px;
  padding-right: 50px;
  color: #5e5e5e;
  text-align: left;
}
.accordion_style-three .accordion .accordion-item .accordion-body {
  padding: 0;
  border: 0;
}

.page-title-area {
  padding-top: 120px;
}
@media only screen and (min-width: 768px) {
  .page-title-area {
    padding-top: 140px;
  }
}
.page-title-area .section-title-wrapper .page-title-right {
  right: 0;
}

/* Who we are css*/

.who-we-are-content {
  position: relative;
  background-color: var(--bd-white);
  padding: 60px 50px 90px 60px;
  margin-bottom: 30px;
}
.who-we-are-content p{
  font-size: 17px !important;
  line-height: 36px !important;
  color: #5e5e5e !important;
  margin-top: 50px !important;
  margin-bottom: 30px !important;
}
@media only screen and (min-width: 576px) {
  .who-we-are-content {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 450px) {
  .who-we-are-content p {
    line-height: 20px !important;
    
  }
  .who-we-are-content {
    padding: 60px 20px 90px 20px !important;
  }
  .accordion_style-three .accordion .accordion-item .accordion-button{
    font-size: 17px !important;
  }
}
@media only screen and (min-width: 992px) {
  .who-we-are-content {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 1200px) {
  .who-we-are-content {
    margin-bottom: 100px;
  }
}
.who-we-are-content .section-title-two {
  margin-bottom: 10px;
}
.who-we-are-content p, .who-we-are-content ul {
  position: relative;
  font: 300 22px var(--bd-ff-gotham-book);
  margin: 0;
  max-width: inherit;
}
.next-section-btn {
  position: absolute;
  content: '';
  width: 35px;
  height: 35px;
  background-image: url(../imgs/btn-scroll.jpg);
  background-position: center;
  background-size: contain;
  bottom: 20px;
  left: 50%;
  margin-left: -17.5px;
  cursor: pointer;
}
.next-section-btn-transparent {
  position: absolute;
  content: '';
  width: 35px;
  height: 35px;
  background-image: url(../imgs/btn-scroll_transparent.png);
  background-position: center;
  background-size: contain;
  bottom: 20px;
  left: 50%;
  margin-left: -17.5px;
  cursor: pointer;
}
.who-we-are-content ul li {
  margin-bottom: 10px;
  font-size: 17px;
  color: #5e5e5e;
  padding-left: 30px;
}
.who-we-are-content ul li::before {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background-image: url(../imgs/vineta_menu.png);
  background-position: center;
  background-size: contain;
  left: 0px;
}
@media only screen and (min-width: 576px) {
  .who-we-are-content p, .who-we-are-content ul {
    margin: 0;
    color: var(--bd-heading);
    max-width: inherit;
  }
}

.section-text-four p, .who-we-are-content ul {
  font: 400 18px var(--bd-ff-outfit-sans);
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .section-text-four p, .who-we-are-content ul {
    font-size: 20px;
  }
}

.border-line {
  border-bottom: 1px solid #E5E5E5;
}

.video-btn {
  position: relative;
  display: inline-block;
}
.video-btn::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: var(--bd-white);
  border-radius: 50%;
  animation-name: popupBtn;
  animation-duration: 1.6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.video-play-btn {
  font-size: 24px;
  color: var(--bd-black);
  height: 80px;
  width: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bd-white);
  border-radius: 50%;
  position: relative;
  z-index: 7;
}
.video-play-btn:hover {
  background-color: var(--bd-primary);
}

.feature-gallery-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--transparent-bg);
  height: 350px;
}
.numeralia-mobile {
  display: none !important;
}
.btn-next-sect-movil{
  display: none;
}
@media only screen and (min-width: 576px) {
  .feature-gallery-content-wrapper {
    width: 50%;
  }
}
@media only screen and (max-width: 575px) {
  .numeralia-mobile {
    display: grid !important;
  }
  .numeralia-desktop {
    display: none !important;
  }
  .btn-next-sect-movil{
    display: block;
  }
  .btn-next-sect-desk{
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .feature-gallery-content-wrapper {
    height: 380px;
    width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .feature-gallery-content-wrapper {
    height: 300px;
    width: 300px;
  }
}
@media only screen and (min-width: 1200px) {
  .feature-gallery-content-wrapper {
    height: 420px;
    width: 100%;
  }
}
@media only screen and (min-width: 1600px) {
  .feature-gallery-content-wrapper {
    height: 520px;
  }
}

.feature-gallery-content h2 {
  font: 900 78px var(--bd-ff-gotham-bold);
  color: var(--bd-tertiary);
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) {
  .feature-gallery-content h2 {
    font-size: 78px;
  }
}
@media only screen and (min-width: 992px) {
  .feature-gallery-content h2 {
    font-size: 78px;
  }
}
@media only screen and (min-width: 1400px) {
  .feature-gallery-content h2 {
    font-size: 78px;
  }
}
@media only screen and (min-width: 1600px) {
  .feature-gallery-content h2 {
    font-size: 78px;
  }
}
.feature-gallery-content h2 span {
  color: var(--bd-black);
}
.feature-gallery-content p {
  font: 700 18px var(--bd-ff-gotham-medium);
  color: #5e5e5e;
  max-width: 100%;
  margin-top: -5px;
  margin-bottom: 15px;
}
.feature-gallery-content-p-book{
  font: 700 18px var(--bd-ff-gotham-book) !important;
}
.feature-gallery-content ul{
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  font: 400 17px var(--bd-ff-gotham-book);
  color: #5e5e5e;
  margin-bottom: 0;
  text-align: left;
  width: fit-content;
}
.feature-gallery-content ul li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 0px;
}
.feature-gallery-content ul li::before {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background-image: url(../imgs/vineta_espacios.png);
  background-position: center;
  background-size: contain;
  left: -20px;
}
.no-before::before{
  display: none;
}
@media (max-width: 1200px) {
  .feature-gallery-content p{
    font-size: 15px !important;
  }
  .feature-gallery-content ul {
    font-size: 14px !important;
  }
  .feature-gallery-content ul li{
    margin-bottom: 8px !important;
  }
  .feature-gallery-content h2 {
        font-size: 53px;
  }
}
@media (max-width: 1110px) {
  .feature-gallery-content-wrapper, .feature-gallery-img {
    width: 255px !important;
  }
}
@media only screen and (min-width: 1600px) {
  .feature-gallery-content p {
    max-width: 100%;
    margin-top: -15px;
  }
}
.feature-gallery {
  display: grid;
  grid-template-columns: auto;
}
@media (max-width: 1024px) {
  .feature-gallery-content-wrapper, .feature-gallery-img {
    width: 100% !important;
  }
}
@media only screen and (min-width: 992px) {
  .feature-gallery {
    grid-template-columns: auto auto auto;
  }
}

.feature-gallery-single {
  position: relative;
}
@media only screen and (min-width: 576px) {
  .feature-gallery-single:last-child {
    flex-direction: column;
  }
}
@media only screen and (min-width: 576px) {
  .feature-gallery-single:last-child .feature-gallery-img {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) {
  .feature-gallery-single:last-child .feature-gallery-content-wrapper {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) {
  .feature-gallery-single {
    display: flex;
  }
}
@media only screen and (min-width: 992px) {
  .feature-gallery-single {
    display: inherit;
  }
}

@media only screen and (min-width: 576px) {
  .feature-gallery-img {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  .feature-gallery-img {
    height: 380px;
    width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .feature-gallery-img {
    height: 300px;
    width: 300px;
  }
}
@media only screen and (min-width: 1200px) {
  .feature-gallery-img {
    height: 420px;
    width: 100%;
  }
}
@media only screen and (min-width: 1600px) {
  .feature-gallery-img {
    height: 520px;
  }
}
.feature-gallery-img img {
  width: 100%;
  height: 100%;
}

.funding-wrapper {
  height: 150px;
  width: 100%;
  border-radius: 50%;
  text-align: center;
  background-color: var(--bd-white);
  border: 8px solid #F3F1ED;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 576px) {
  .funding-wrapper {
    height: 250px;
    width: 250px;
    border: 10px solid #F3F1ED;
  }
}
@media only screen and (min-width: 991px) {
  .funding-wrapper {
    height: 200px;
    width: 200px;
    border: 10px solid #F3F1ED;
  }
}
@media only screen and (min-width: 1600px) {
  .funding-wrapper {
    gap: 10px;
    height: 340px;
    width: 340px;
    border: 13px solid #F3F1ED;
  }
}
.funding-wrapper p {
  font: 700 20px var(--bd-ff-gotham-book);
  color: var(--bd-black);
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) {
  .funding-wrapper p {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1600px) {
  .funding-wrapper p {
    font-size: 30px;
  }
}
.funding-wrapper h2 {
  font: 700 68px var(--bd-ff-gotham-book);
}
@media only screen and (min-width: 1600px) {
  .funding-wrapper h2 {
    font-size: 68px;
  }
}
.funding-wrapper h2 span {
  color: var(--bd-tertiary);
}

.portfolio-slicer-slide-area .swiper {
  width: 100%;
  height: 100%;
}
.portfolio-slicer-slide-area .slider-navigation {
  bottom: inherit;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 4;
  height: fit-content;
}
@media only screen and (min-width: 768px) {
  .portfolio-slicer-slide-area .slider-navigation {
    padding: 0 50px;
  }
}
@media only screen and (min-width: 992px) {
  .portfolio-slicer-slide-area .slider-navigation {
    padding: 0 100px;
  }
}
.portfolio-slicer-slide-area .slider-navigation button {
  font-size: 50px;
  color: white;
}

.navigation__wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.navigation__wrapper button {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bd-text-secondary);
  z-index: 1;
}
@media (max-width: 575px) {
  .navigation__wrapper button {
    height: 45px;
    width: 45px;
  }
}
.navigation__wrapper button:hover {
  background-color: var(--bd-primary);
}
.navigation__wrapper button i {
  font-weight: 600;
}

.showcase-slider-active {
  position: relative;
}
.showcase-slider-active .showcase-navigation {
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 4;
    height: fit-content;
    display: flex;
    position: absolute;
    bottom: 0px;
    left: 0;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.portfolio-slider-active .portfolio-navigation {
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 4;
    height: fit-content;
    display: flex;
    position: absolute;
    bottom: 0px;
    left: 0;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.showcase-slider-active .showcase-navigation button {
  color: var(--bd-white);
  background-color: transparent;
  font-size: 50px;
  text-shadow: 5px 2px 5px rgba(0,0,0,0.81);
}
.portfolio-slider-active .portfolio-navigation button {
  color: var(--bd-white);
  background-color: transparent;
  font-size: 50px;
  text-shadow: 5px 2px 5px rgba(0,0,0,0.81);
}
.fa-arrow-left-long, .fa-arrow-right-long{
  transform: rotate(0deg) !important;
  text-shadow: 5px 2px 5px rgba(0,0,0,0.81);
}
.showcase-slider-active .showcase-navigation-two {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 25px;
  bottom: 20px;
  z-index: 4;
}
@media only screen and (min-width: 768px) {
  .showcase-slider-active .showcase-navigation-two {
    bottom: 30px;
    padding: 0 40px;
  }
}
@media only screen and (min-width: 992px) {
  .showcase-slider-active .showcase-navigation-two {
    padding: 0 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .showcase-slider-active .showcase-navigation-two {
    bottom: 60px;
    padding: 0 100px;
  }
}
.showcase-slider-active .showcase-navigation-two button {
  font: 400 18px var(--bd-ff-jakarta-sans);
  color: var(--bd-white);
  mix-blend-mode: difference;
}
.showcase-slider-active .showcase_pagintion .swiper-pagination {
  position: absolute;
  left: inherit;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: auto;
  height: fit-content;
}
@media only screen and (min-width: 768px) {
  .showcase-slider-active .showcase_pagintion .swiper-pagination {
    right: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .showcase-slider-active .showcase_pagintion .swiper-pagination {
    right: 80px;
  }
}
@media only screen and (min-width: 1400px) {
  .showcase-slider-active .showcase_pagintion .swiper-pagination {
    right: 100px;
  }
}
.showcase-slider-active .swiper-slide {
  flex-shrink: 0;
  overflow: hidden;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.portfolio-showcase-area {
  position: relative;
  padding-top: 0px;
  padding-bottom: 80px;
}

.showcase-slider-item {
  background: center/cover no-repeat;
  height: 75vh;
}
.portfolio-slider-item {
  background: center/cover no-repeat;
  height: 75vh;
}
.showcase-slider-item .slicer-slide-content, .portfolio-slider-item .slicer-slide-content {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  left: 0px;
  padding: 15px;
  bottom: 0px;
}
.info-space-slide-right {
    position: absolute;
    bottom: 0px;
    right: 60px;
    width: 200px;
    height: 150px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.50);
}
.info-space-slide-left {
    position: absolute;
    bottom: 0px;
    left: 60px;
    width: 200px;
    height: 150px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.50);
}
.info-space-slide-right p span, .info-space-slide-left p span {
  font: 600 18px var(--bd-ff-gotham-book);
  color: var(--bd-white);
  margin-bottom: 5px;
  -webkit-text-stroke: 0px;
}
.title-space-slide {
  font: 900 18px var(--bd-ff-gotham-bold) !important;
  color: #87AD2E !important;
  margin-bottom: 5px !important;
}
.detail-space-slide {
  font: 600 16px var(--bd-ff-gotham-book) !important;
  color: var(--bd-white) !important;
  margin-bottom: 5px !important;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
       bottom: 15px !important;
  }
@media only screen and (max-width: 810px) {
  .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
       bottom: 5px !important;
  }
  .info-space-slide-right{
    right: 0px;
    bottom: 50px;
  }
  .info-space-slide-left{
    left: 0px;
    bottom: 50px;
  }
}
@media only screen and (min-width: 768px) {
  .showcase-slider-item .slicer-slide-content, .portfolio-slider-item .slicer-slide-content {
    padding: 0;
    left: 0px;
  }
}
@media only screen and (min-width: 992px) {
  .showcase-slider-item .slicer-slide-content, .portfolio-slider-item .slicer-slide-content {
    padding: 0;
    left: 0px;
  }
}
.showcase-slider-item .slicer-slide-content p, .portfolio-slider-item .slicer-slide-content p {
  font: 600 18px var(--bd-ff-jakarta-sans);
  color: var(--bd-white);
  margin-bottom: 5px;
}
@media only screen and (min-width: 992px) {
  .showcase-slider-item .slicer-slide-content p, .portfolio-slider-item .slicer-slide-content p {
    margin-bottom: 20px;
    font-size: 24px;
  }
}

.swiper-slide-active .showcase-slider-item .slicer-slide-content {
  opacity: 1;
  visibility: visible;
}
.swiper-slide-active .portfolio-slider-item .slicer-slide-content {
  opacity: 1;
  visibility: visible;
}
.showcase_pagintion .swiper-pagination {
  color: var(--bd-white);
}
.showcase_pagintion .swiper-pagination span {
  font: 400 20px var(--bd-ff-gotham-book);
  color: var(--bd-white);
}
@media only screen and (min-width: 576px) {
  .showcase_pagintion .swiper-pagination span {
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) {
  .showcase_pagintion .swiper-pagination span {
    font-size: 24px;
  }
}

.portfolio-slider .swiper {
  width: 100%;
  height: 70vh;
  box-sizing: border-box;
}

.portfolio-slider {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
.portfolio-slider .swiper-slide {
  box-sizing: border-box;
  transition-timing-function: cubic-bezier(0.76, 0.09, 0.215, 1);
}
@media only screen and (min-width: 576px) {
  .portfolio-slider .swiper-slide {
    padding: 0px;
  }
}
@media only screen and (min-width: 768px) {
  .portfolio-slider .swiper-slide {
    padding: 0px;
  }
}
.portfolio-slider .swiper-slide img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}
.portfolio-slider .portfolio-pagination {
  left: 0;
  bottom: -20px;
  right: 0;
}
@media only screen and (min-width: 768px) {
  .portfolio-slider .portfolio-pagination {
    bottom: -50px;
  }
}
.portfolio-slider .slider-navigation {
  bottom: -50px;
}

.container.large {
  max-width: 1850px;
}

.portfolio-pagination {
  position: absolute;
  left: 0;
  bottom: -50px;
  right: 0;
  display: inline-flex;
  gap: 5px;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .portfolio-pagination {
    gap: 20px;
  }
}
.portfolio-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 2px;
  background-color: var(--bd-black);
  opacity: 1;
  border-radius: 2px;
  transition: all 0.5s;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .portfolio-pagination .swiper-pagination-bullet {
    width: 30px;
  }
}
.portfolio-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
}
@media only screen and (min-width: 768px) {
  .portfolio-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 60px;
  }
}

.portfolio-thumb {
  overflow: hidden;
}

.radius-thumb {
  border-radius: 50%;
  transform: rotate(30deg);
}

.portfolio-single-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.portfolio-single-grid:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .portfolio-single-grid {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 576px) {
  .portfolio-single-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0px 30px;
  }
}
@media only screen and (min-width: 768px) {
  .portfolio-single-grid {
    gap: 0px 50px;
  }
}
.portfolio-single-grid .grid-thumb {
  position: relative;
  height: fit-content;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .portfolio-single-grid .grid-thumb:first-child {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 992px) {
  .portfolio-single-grid .grid-thumb:first-child {
    margin-top: 70px;
  }
}
@media only screen and (min-width: 1200px) {
  .portfolio-single-grid .grid-thumb:first-child {
    margin-top: 100px;
  }
}
.portfolio-single-grid .grid-thumb:hover .grid-content {
  left: 25px;
  opacity: 1;
  visibility: visible;
}
.portfolio-single-grid .grid-thumb .grid-content {
  position: absolute;
  left: 55px;
  bottom: 25px;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  background-color: var(--bd-white);
  max-width: 280px;
  transition: 0.45s;
}
@media only screen and (min-width: 768px) {
  .portfolio-single-grid .grid-thumb .grid-content {
    padding: 30px;
  }
}
.portfolio-single-grid .grid-thumb .grid-content h5 {
  font: 600 18px var(--bd-ff-jakarta-sans);
  margin-bottom: 5px;
}
@media only screen and (min-width: 992px) {
  .portfolio-single-grid .grid-thumb .grid-content h5 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .portfolio-single-grid .grid-thumb .grid-content h5 {
    font-size: 22px;
  }
}
.portfolio-single-grid .grid-thumb .grid-content span {
  font: 400 15px var(--bd-ff-gotham-book);
  color: var(--bd-text-body);
}
@media only screen and (min-width: 992px) {
  .portfolio-single-grid .grid-thumb .grid-content span {
    font-size: 18px;
  }
}
.space-blank-section {
padding-top: 150px;
}
.single-thumb {
  overflow: hidden;
  border-radius: 21px;
  overflow: hidden;
  transition: 0.5s;
}

.portfolio-single-slide-active {
  padding-bottom: 50px;
}
@media only screen and (min-width: 576px) {
  .portfolio-single-slide-active {
    padding-top: 30px;
  }
}
@media only screen and (min-width: 992px) {
  .portfolio-single-slide-active {
    padding-top: 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .portfolio-single-slide-active {
    padding-top: 80px;
  }
}
@media only screen and (min-width: 1600px) {
  .portfolio-single-slide-active {
    padding-top: 100px;
  }
}
.portfolio-single-slide-active .portfolio-pagination {
  left: 0;
  bottom: 0px;
  right: 0;
}
@media only screen and (min-width: 576px) {
  .portfolio-single-slide-active .swiper-slide-active .single-thumb {
    margin-top: -30px;
  }
}
@media only screen and (min-width: 992px) {
  .portfolio-single-slide-active .swiper-slide-active .single-thumb {
    margin-top: -50px;
  }
}
@media only screen and (min-width: 1200px) {
  .portfolio-single-slide-active .swiper-slide-active .single-thumb {
    margin-top: -80px;
  }
}
@media only screen and (min-width: 1600px) {
  .portfolio-single-slide-active .swiper-slide-active .single-thumb {
    margin-top: -100px;
  }
}

.slider-navigation {
  display: flex;
  position: absolute;
  bottom: 0px;
  left: 0;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.slider-navigation button {
  font: 400 16px var(--bd-ff-gotham-book);
  display: flex;
  gap: 10px;
  align-items: center;
  text-shadow: 5px 2px 5px rgba(0,0,0,0.81);
}
@media only screen and (min-width: 576px) {
  .slider-navigation button {
    font-size: 18px;
  }
}

#app {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-slider {
  position: relative;
  z-index: 1;
}

.swiper-slicer-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.slicer-slide-content {
  position: absolute;
  left: 20px;
  bottom: 40px;
  max-width: 460px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
@media only screen and (min-width: 768px) {
  .slicer-slide-content {
    left: 50px;
    bottom: 50px;
  }
}
@media only screen and (min-width: 992px) {
  .slicer-slide-content {
    left: 100px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .slicer-slide-content {
    bottom: 50px;
  }
}
@media only screen and (min-width: 1400px) {
  .slicer-slide-content {
    bottom: 100px;
  }
}
.slicer-slide-content span {
  display: inline-block;
  font: 700 60px var(--bd-ff-gotham-book);
  color: transparent;
  -webkit-text-stroke: 1px white;
  stroke-width: 2px;
}
.slicer-slide-content .slicer-slide-title {
  font: 700 30px/1.1 var(--bd-ff-jakarta-sans);
  text-shadow: 5px 2px 5px rgba(0,0,0,0.81);
  background-color: rgba(0, 0, 0, 0.65);
  padding: 20px 30px;
}
@media only screen and (min-width: 576px) {
  .slicer-slide-content .slicer-slide-title {
    font-size: 35px;
    font-weight: 800;
  }
}
@media only screen and (min-width: 992px) {
  .slicer-slide-content .slicer-slide-title {
    font-size: 60px;
  }
}
.swiper-slide{
  height: 75vh;
}
.portfolio-slicer-slide-area .swiper-slide-active .slicer-slide-content {
  opacity: 1;
  visibility: visible;
}

.swiper-slicer .swiper-slide,
.swiper-slicer swiper-slide {
  overflow: hidden;
}

.swiper-slicer-image,
.swiper-slicer-image-clone,
.swiper-slicer-image-clones {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.swiper-slicer-image .swiper-slicer .swiper-slide,
.swiper-slicer-image-clone .swiper-slicer .swiper-slide,
.swiper-slicer-image-clones .swiper-slicer .swiper-slide {
  overflow: hidden;
}
.swiper-slicer-image .swiper-slicer swiper-slide,
.swiper-slicer-image-clone .swiper-slicer swiper-slide,
.swiper-slicer-image-clones .swiper-slicer swiper-slide {
  overflow: hidden;
}
.swiper-slicer-image .swiper-slicer-image,
.swiper-slicer-image-clone .swiper-slicer-image,
.swiper-slicer-image-clones .swiper-slicer-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: none;
  object-fit: cover;
  object-position: center;
}
.swiper-slicer-image .swiper-slicer-image-clone,
.swiper-slicer-image-clone .swiper-slicer-image-clone,
.swiper-slicer-image-clones .swiper-slicer-image-clone {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  transition-timing-function: cubic-bezier(1, 0, 0.5, 1);
}
.swiper-slicer-image .swiper-slicer-image-clone .swiper-slicer-image,
.swiper-slicer-image-clone .swiper-slicer-image-clone .swiper-slicer-image,
.swiper-slicer-image-clones .swiper-slicer-image-clone .swiper-slicer-image {
  display: block;
}
.swiper-slicer-image .swiper-slicer-image-clones,
.swiper-slicer-image-clone .swiper-slicer-image-clones,
.swiper-slicer-image-clones .swiper-slicer-image-clones {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.swiper-slicer-image {
  display: none;
  object-fit: cover;
  object-position: center;
}

.swiper-slicer-image-clone {
  overflow: hidden;
  transition-timing-function: cubic-bezier(1, 0, 0.5, 1);
}

.swiper-slicer-image-clone .swiper-slicer-image {
  display: block;
}

.header-area.slicer-slide-header {
  border: 0;
}

/*# sourceMappingURL=main.css.map */
.btn-wa-header{
  position: relative;
  border: 1px solid #94c11f;
  background-color: #94c11f;
  padding: 10px 70px 10px 60px;
  color: white;  
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  margin-top: 45px;
  font: 700 15px var(--bd-ff-gotham-bold);
}

.btn-wa-header:hover{
  border: 1px solid black; 
  background-color: white; 
  color: black;
}

.btn-wa-header::after{
  position: absolute;
  content: '';
  width: 25px;
  height: 25px;
  right: 30px;
  top: 6px;
  background-image: url(../imgs/menu/icon-wa.png);
  background-position: center;
  background-size: contain;
  filter: brightness(10);
}

.btn-wa-header:hover::after{
  filter: brightness(1);
}

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

.logo img{
  margin-left: 55px;
  max-width: 210px;
}

@media only screen and (max-width: 1024px) {
  .logo img {
    max-width: 140px;
  }
}

.slider-first{
  background-image: url(../imgs/portfolio/space1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Menú lateral izquierdo fijo */
.sidebar-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 100vh;
  background: white;
  color: #5e5e5e;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-top: 40px;
  box-shadow: 2px 0 10px rgba(0,0,0,0.08);
  font: 700 18px var(--bd-ff-gotham-book);
}
.sidebar-menu .logo {
  margin-bottom: 40px;
}
.sidebar-menu ul {
  list-style: none;
  padding: 0;
  width: 100%;
}
.sidebar-menu ul li {
  width: 100%;
}
.sidebar-menu ul li a {
  position: relative;
  display: block;
  padding: 5px 30px 5px 80px;
  margin-bottom: 10px;
  color: #5e5e5e;
  font-weight: 600;
  text-decoration: none;
}
.sidebar-menu ul li a:hover,
.sidebar-menu ul li.active a {
  background: #ade255;
  color: #5e5e5e;
  font: 700 18px var(--bd-ff-gotham-medium);
}
.sidebar-menu ul li.active a {
  background: #ade255; 
  font-weight: bold;
}
.sidebar-menu ul li a::before{
  content: '';
  position: absolute;
  left: 50px;
  top: 5px;
  width: 20px;
  height: 20px;
  background-image: url(../imgs/vineta_menu.png);
  background-size: contain;
}
.sidebar-menu ul li a:hover::before,
.sidebar-menu ul li.active a::before {
  filter: grayscale(100%);
}

/* Ajusta el contenido principal para que no quede debajo del menú */
.main-content {
  margin-left: 320px;
  padding: 0px 0px;
  background-image: url(../imgs/bg.jpg);
  background-size: 150px;
}

/* Responsive: menú lateral se oculta en móviles */
@media (max-width: 1024px) {
  .sidebar-menu {
    transform: translate(-100%);
    transition: transform 0.3s ease;  
  }
  .main-content {
    margin-left: 0px;
    padding: 0px 0px;
  }
}


.img-logo-espacio-r {
  width: 240px;
}
.img-wa-icon {
  width: 230px;
  cursor: pointer;
}

div:where(.swal2-container) h2:where(.swal2-title) {
  font-size: 25px !important;
}
div:where(.swal2-container) div:where(.swal2-html-container){
  font-size: 16px !important;
}
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm){
  font-size: 14px !important;
  background-color: #BAEA0C !important;
  color: black !important;
}

.movil-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.movil-btn span {
  display: block;
  width: 28px;
  height: 4px;
  background: #baea0c;
  border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .movil-btn {
    display: flex;
  }
  .sidebar-menu {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 260px;
    background: #fff;
    z-index: 1999;
    transform: translateX(-100%);
    transition: transform 0.3s;
    box-shadow: 2px 0 10px rgba(0,0,0,0.08);
  }
  .sidebar-menu.open {
    transform: translateX(0);
  }
  .sidebar-menu ul {
    margin-top: 60px;
  }
  .sidebar-menu .logo {
    margin-top: 20px;
  }
  body.menu-open {
    overflow: hidden;
  }
}