:root {
  --bs-primary: #10B981;
  --bs-primary-rgb: 16, 185, 129;
  --bs-dark: #111827;
  --bs-dark-rgb: 17, 24, 39;
  --bs-secondary: #4B5563;
  --bs-body-bg: #000000;
  --bs-body-color: #ffffff;
  --bs-border-color: #ffffff;
}

#logo {
  width: 100px;
}

body {
  font-weight: 400;
  font-style: normal;
  color: #fff;
  overflow-x: hidden;
  font-size: 14px;
  font-family: Poppins, sans-serif;
}

*,
p {
  margin: 0;
  padding: 0;
}

.btn.focus,
.btn:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active,
a:focus,
button:focus,
input:focus,
textarea:focus {
  text-decoration: none;
  outline: 0;
}

a,
span {
  display: inline-block;
  text-decoration: none;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  cursor: pointer;
}

audio,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin: 0;
  color: #fff;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 2em;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/*.section {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}*/

.scroll-top {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: linear-gradient(#fff, #000);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  color: #fff !important;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  cursor: pointer;
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
  border-radius: 50%;
  border: 1px solid #fff;
}

.scroll-top:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, .5) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, .5) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
  width: 100%;
  height: 100%;
  background-color: #000;
  overflow: hidden;
}

.preloader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.preloader-icon {
  width: 100px;
  height: 100px;
  display: inline-block;
  padding: 0;
}

.preloader-icon span {
  position: absolute;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: linear-gradient(#fff, #fff, #fff);
  -webkit-animation: 2s linear infinite preloader-fx;
  animation: 2s linear infinite preloader-fx;
}

.preloader-icon span:last-child {
  animation-delay: -.8s;
  -webkit-animation-delay: -.8s;
}

@keyframes preloader-fx {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: .5;
  }

  100% {
    -webkit-transform: scale(2, 2);
    transform: scale(2, 2);
    opacity: 0;
  }
}

@-webkit-keyframes preloader-fx {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: .5;
  }

  100% {
    -webkit-transform: scale(2, 2);
    opacity: 0;
  }
}

.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: .4s;
  transition: .4s;
  z-index: 5;
}

#info-mail-footer {
  z-index: 99;
  margin-top: -10%;
  left: 50%;
}

#social-footer-inner {
  z-index: 99;
  margin-top: -25%;
  left: 50%;
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-webkit-keyframes pulse-border-2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border-2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

.footer {
  z-index: 11;
  position: relative;
  margin-top: 5%;
}

.footer .logo {
  margin-bottom: 26px;
}

.footer .logo img {
  width: 150px;
}

.footer .footer-social {
  margin-top: 35px;
}

.footer .footer-social ul li {
  display: inline-block;
  margin: 3%;
}

.footer .footer-social ul li:last-child {
  margin-right: 0;
}

.footer .footer-social ul li a {
  font-size: 1rem;
  color: #000;
  height: 45px;
  width: 45px;
  text-align: center;
  display: block;
  line-height: 45px;
  background: #fff;
  border-radius: 100%;
  position: relative;
  z-index: 3;
}

.footer .footer-social ul li a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(#fff, #9b9b9b, #000);
  border-radius: 100%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: .2s;
  transition: .2s;
}

.footer .footer-social ul li a:hover::before {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.footer .footer-bottom .inner {
  margin-top: 35%;
  padding: 10px 0;
  border-top: 0px solid #ffffff4a;
  text-align: center;
}

.footer .footer-bottom .inner p {
  color: #000;
  font-size: 13px;
}

.footer .footer-bottom .inner p a {
  font-weight: 400;
  display: inline-block;
  margin-left: 6px;
  color: #e40e76;
}

.footer .footer-bottom .inner p a:hover {
  color: #3763eb;
}

@media (max-width:767px) {
  .navbar {
    padding: 0;
  }
}

@media only screen and (min-width:768px) and (max-width:991px) {
  .navbar {
    padding: 0;
  }

  /*.section {
    padding: 60px 0;
  }*/

  .button .btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
  }

  .navbar-brand img {
    width: 100px;
  }
}

@media only screen and (max-width:767px) {
  /*.section {
    padding: 0;
  }*/

  .button .btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
  }

  .navbar-brand img {
    width: 100px;
  }
}

@media only screen and (max-width:1366px) {

  #hero {
    margin-top: 3em !important;
  }

  #productora {
    margin-top: 6em !important;
  }

  #video-evento {
    margin-top: 3em;
  }
}


/*@media only screen and (min-width:200px) and (max-width:1024px) {
  .hero-area {
    margin-bottom: 10rem
  }
}*/

@media only screen and (min-width:200px) and (max-width:360px) {
  footer a h1 {
    font-size: 1em;
    text-shadow: rgba(96, 101, 175, .7) 2px 2px 2px;
  }
}

@media only screen and (min-width:361px) and (max-width:500px) {
  footer a h1 {
    font-size: 1em;
    text-shadow: rgba(96, 101, 175, .7) 2px 2px 2px;
  }
}

@media only screen and (min-width:501px) and (max-width:768px) {
  footer a h1 {
    font-size: 1em;
    text-shadow: rgba(96, 101, 175, .7) 2px 2px 2px;
  }
}

@media only screen and (min-width:769px) and (max-width:1023px) {
  footer a h1 {
    font-size: 1em;
    text-shadow: rgba(96, 101, 175, .7) 2px 2px 2px;
  }
}

@media only screen and (min-width:1024px) and (max-width:4000px) {
  footer a h1 {
    text-shadow: rgba(96, 101, 175, .7) 2px 2px 2px;
  }
}

.hero-area video {
  width: 100% !important;
  height: auto !important;
  padding-top: 0;
  max-width: 100%;
}

.entrevistas .card {
  width: auto !important;
  height: auto !important;
  max-height: 100vh !important;
  max-width: 50% !important;
}

/*img.sub {
  height: auto;
  width: 100%;
}*/

h2 {
  font-size: 1.75em;
}

h3 {
  font-size: 1.5em;
}

#productora {
  z-index: 1;
}

#equipo {
  z-index: 1000;
}

@media (max-width:991px) {
  /* .sub {
    display: none;
  }*/
}

@media (min-width:768px) {

  h2,
  h3 {
    font-size: 1.3em;
  }

  /*.section {
    top: 50px;
  }*/
}

@media (min-width:992px) {
  /*img.sub {
    height: auto;
    width: 75%;
    margin-left: 20% !important;
  }*/

  #productora .row h3.px-5 {
    padding-left: 2% !important;
    padding-right: 10% !important;
  }

  .hero-area video {
    padding-top: 10px;
  }
}

@media only screen and (min-width:500px) and (max-width:991px) {
  /*img.sub {
    height: auto;
    width: 75%;
    margin: 0 auto !important;
  }*/

  #productora .row h3.px-5 {
    padding-left: 10% !important;
    padding-right: 10% !important;
  }
}



@media only screen and (min-width:1280px) and (max-width:1439px) {
  img.sub {
    height: auto;
    width: 60%;
    margin-left: 25% !important;
  }

  #productora .row h3.px-5 {
    padding-left: 2% !important;
    padding-right: 10% !important;
  }

  h3 {
    font-size: 1.3em !important;
  }
}

@media only screen and (min-width:1440px) and (max-width:1920px) {
  /*img.sub {
    height: auto;
    width: 70%;
    margin-left: 25% !important;
  }*/

  #productora .row h3.px-5 {
    padding-left: 2% !important;
    padding-right: 10% !important;
  }

  h3 {
    font-size: 1.3em !important;
  }
}

.residencias h3 {
  padding-top: 2em;
  font-size: 1em !important;
}

.residencias h3:nth-child(2) {
  padding-top: .3em;
}

h1,
h3 {
  padding: 1%;
}

html {
  scroll-behavior: smooth;
}

.social-icons a i {
  width: auto;
  font-size: 1.25rem;
  transition: color .2s;
  z-index: 99999999;
}

.social-icons a:hover {
  color: var(--bs-primary) !important;
}

@media (max-width:768px) {
  .social-icons {
    padding: 0;
    margin: 0;
    flex-direction: row !important;
  }

  .ico-youtube {
    margin-left: 0 !important;
  }
}

.dropdown-menu-dark {
  background: #000;
  border-color: #fff;
}

.bg-dark {
  background: #000 !important;
}

.navbar-dark a {
  color: #fff !important;
  font-size: 1rem !important;
}

.navbar-dark a:hover {
  color: rgba(255, 255, 255, .75) !important;
}

#vidwayusa {
  position: relative;
  z-index: -1;
  margin-top: -15%;
}

#vidwayusa-footer {
  position: relative;
  z-index: -100;
  margin-top: -13%;
}

#realizaciones {
  position: relative;
  z-index: 15;
  margin-top: -10%;
}

#merchandising {
  position: relative;
  z-index: 12;
  margin-top: 0;
}

.container-realizaciones {
  background-color: #000 !important;
  background-size: 50%;
  background-position: 90% 25%;
  background-repeat: no-repeat;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.frame {
  max-height: 95vh;
  position: relative;
}

.poster {
  position: relative;
  top: 0;
  width: auto;
  height: 100%;
  max-height: 90vh;
}

.fotografias {
  position: relative;
  margin-top: 0;
  width: auto;
  height: auto;
  max-height: 80vh;
}

.overflowhidden {
  overflow-y: hidden;
  overflow-x: hidden;
}

/*button img.img-fluid {
  padding: 5rem !important;
}*/

#realizaciones .dropdown-toggle {
  border-color: #000;
  padding: 9px;
  margin: 20px;
  border-radius: 0;
  background-color: #000;
}

#realizaciones .dropdown-toggle:hover {
  border-color: rgba(0, 0, 0, .5);
  padding: 10px;
  margin: 20px;
  border-radius: 0;
  background-color: #000;
}

#realizaciones .dropdown-toggle:active:hover {
  border-color: #000;
  padding: 10px;
  margin: 20px;
  border-radius: 0;
  background-color: #000 !important;
}

#merchandising .dropdown-menu-dark,
#realizaciones .dropdown-menu-dark {
  background: #000;
  border-color: #fff;
}

#merchandising .dropdown-toggle:active:hover {
  border-color: #1ce70a;
  padding: 1px;
  margin: 1px;
  border-radius: 0;
  background-color: #17b61f !important;
}

#merchandising .dropdown-toggle:hover {
  border-color: rgba(255, 255, 255, .5);
  padding: 1px;
  margin: 1px;
  border-radius: 0;
  background-color: #39d412;
}

#merchandising .dropdown-toggle {
  border-color: #4cf43d;
  padding: 1px;
  margin: 1px;
  border-radius: 0;
  background-color: #000;
}

.col-xxl-6.bg-dark ul {
  height: auto;
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.col-xxl-6.bg-dark h2 {
  text-decoration: underline;
}

.col-xxl-6.bg-dark span h2 {
  text-decoration: none;
}

/*@media (max-width:443.98px) {
  #productora {
    margin-top: -50% !important
  }
}*/



@media (min-width:992px) and (max-width:1399.98px) {
  .container-realizaciones .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667% !important;
    text-align: center !important;
  }

  .container-realizaciones .col-xxl-6 {
    flex: 0 0 auto;
    width: 50% !important;
    padding-left: 1.5rem !important;
  }

  img.poster {
    max-height: 90vh;
    text-align: center !important;
  }
}

@media (min-width:768px) and (max-width:991.98px) {
  .container-realizaciones .col-xxl-5 {
    flex: 0 0 auto;
    width: 100% !important;
    text-align: center !important;
  }

  .container-realizaciones .col-xxl-6 {
    flex: 0 0 auto;
    width: 100% !important;
    margin-top: 1.5rem !important;
  }
}

@media (max-width:767.98px) {

  .container-realizaciones .col-xxl-5,
  .container-realizaciones .col-xxl-6 {
    flex: 0 0 auto;
    width: 100% !important;
  }

  .container-realizaciones .col-xxl-6 {
    margin-top: 2rem !important;
  }

  .hero-area video {
    width: 100% !important;
    height: auto !important;
    margin-top: 10%;
    max-width: 100%;
    max-height: 95vh !important;
  }

  #realizacionesbox div ul li h3 {
    font-size: .3rem;
  }
}

@media (max-width:767px) {

  #realizacionesbox h3,
  .glightbox-container h3 {
    font-size: .75rem !important;
  }

  #realizacionesbox h2,
  .glightbox-container h2 {
    font-size: .9rem !important;
  }

  #realizacionesbox .p-3,
  .glightbox-container .p-3 {
    padding: 4px !important;
  }

  iframe {
    height: 300px;
    z-index: 0;
  }

  .glightbox-container .gclose,
  .glightbox-container .gnext,
  .glightbox-container .gprev {
    z-index: 999999999 !important;
    pointer-events: auto !important;
  }
}

@media (min-width:768px) and (max-width:1279.98px) {
  #productora {
    margin-top: 4em;
  }
}

@media (min-width:1400px) and (max-width:1919.98px) {

  /*body {
    zoom: 0.75;
  }
*/
  /*#realizaciones {
    zoom: 1;
  }
*/
  .wow {
    visibility: visible !important;
    animation-name: none !important;
  }

  .container-realizaciones {
    background-color: #000 !important;
    height: 110vh !important;
  }

  /*
  .glightbox-container {
    zoom: 1.33333333 !important;
  }
*/
  .glightbox-container .gclose,
  .glightbox-container .gnext,
  .glightbox-container .gprev {
    z-index: 999999999 !important;
    pointer-events: auto !important;
  }

  .poster {
    max-height: 100vh !important;
    height: 80vh !important;
  }

  ul.border-2 {
    margin: 0 50px 0 0 !important;
    font-size: .9rem !important;
  }

  ul.border-2 li {
    padding: 7px !important;
  }
}

@media (min-width:1919.98px) {
  .poster {
    max-height: 100vh !important;
    height: 80vh !important;
  }

  ul.border-2 {
    margin: 0 50px 0 0 !important;
    font-size: 1rem !important;
  }

  ul.border-2 li {
    padding: 8px !important;
  }
}

@media (min-width:1279.98px) and (max-width:1399.98px) {
  .poster {
    max-height: 100vh !important;
    height: 80vh !important;
  }

  ul.border-2 {
    margin: 0 50px 0 0 !important;
    font-size: 1rem !important;
  }

  ul.border-2 li {
    padding: 7px !important;
  }
}

@media (min-width:991.98px) and (max-width:1279.98px) {
  .poster {
    max-height: 100vh !important;
    height: 65vh !important;
  }

  ul.border-2 {
    margin: 0 50px 0 0 !important;
    font-size: 1rem !important;
  }

  ul.border-2 li {
    padding: 5px !important;
  }
}

.glightbox-container .gclose,
.glightbox-container .gnext,
.glightbox-container .gprev {
  z-index: 9999999 !important;
}

.glightbox-container iframe {
  z-index: 1 !important;
}

/* ESTILO UNIFICADO PARA IFRAMES VIMEO (Antes en HTML inline style) */

.vimeo-iframe {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
}