.elementor-254 .elementor-element.elementor-element-542d9d4{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:space-evenly;--align-items:flex-start;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:767px){.elementor-254 .elementor-element.elementor-element-c1d5d39{z-index:9000;}}/* Start custom CSS for html, class: .elementor-element-c1d5d39 */* { margin: 0; padding: 0; box-sizing: border-box; }

  .my-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 500;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    flex-wrap: wrap;
  }

  .my-header.scroll-activo {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .my-header .logo-header img {
    height: 80px;
    transition: height 0.3s ease;
  }

  .my-header nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .my-header nav a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .my-header.scroll-activo nav a {
    color: black;
  }

  .my-header .button-header {
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #c6ab5a;
  }

  .my-header .button-header:hover {
    background: #5a75c6;
  }

  .hamburger-toggle {
    display: none;
    background: transparent !important;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    z-index: 11;
  }

  .hamburger-toggle:hover {
    background: transparent !important;
    color: white;
  }

  .scroll-activo .hamburger-toggle {
    color: black;
  }

  .video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }

  @media (max-width: 1024px) {
    .my-header {
      flex-direction: column;
      align-items: flex-start;
      padding: 15px;
    }

    .my-header nav {
      flex-direction: column;
      width: 100%;
      align-items: flex-start;
      gap: 10px;
    }

    .my-header .logo-header img {
      height: 60px;
    }

    .my-header .button-header {
      margin-top: 10px;
      width: 100%;
    }

    .video-content {
      position: relative;
      text-align: center;
      bottom: auto;
      left: auto;
      padding-top: 100px;
    }
  }

  @media (max-width: 768px) {
    .hamburger-toggle {
      display: block;
      position: absolute;
      top: 15px;
      right: 10px;
    }

    .my-header nav {
      display: none;
      flex-direction: column;
      background: white;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      padding: 20px;
      z-index: 9;
    }

    .my-header.nav-open nav {
      display: flex;
    }

    .my-header nav a {
      color: black;
      padding: 10px 0;
    }

    .my-header .logo-header img {
      height: 50px;
    }

    .video-content {
      padding-top: 80px;
    }
  }/* End custom CSS */