#headerDummy {
  position: relative;
  width: 100%;
  height: 84px;
  overflow: hidden;
  background-color: black;
  display: none;
}
#header {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0;
  left: 4%;
  right: 4%;
  width: 92%;
  height: 90px;
  opacity: 0;
  background-color: transparent;
}
.logo img{
  width: 300px;
}
#header .redes a {
  margin: 0 10px;
  letter-spacing: 1px;
  cursor: pointer;
}
#footer {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 110px;
  opacity: 0;
  display: none;
}
#videoContainer {
  position: relative;
  height: 100vh !important;
  width: 100vw;
  background: black;
  display: block;
  overflow: hidden;
}

#video1Container {
  position: absolute;

  top: 0px;

  left: 0px;

  width: 100%;
}

#video1 {
  position: absolute;
}

#video1Loader {
  position: absolute;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#video1RedLoader {
  width: 100px;
  height: 100px;
  background: url(/files/layouts/loader.gif);
  background-position: center;
  background-size: 100%;
  position: absolute;
}

.cover {
  position: absolute;
  background-color: transparent;
  width: 100%;
  height: 100%;
}

.bg-video {
  width: 100%;
  height: 100vh;
}

/* -------------Header--------------- */
header {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 110px;
  z-index: 2;
}
.row {
  height: 100%;
  width: 100%;
}
.desktop-menu {
  height: 100%;
}
header .container {
  height: 100%;
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
}
.row > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.row div nav {
  display: flex;
  align-items: center;
}
.signUp {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  padding-bottom: 0;
  border-bottom: 0;
  padding: 10px 8px;
  padding: 6px 12px;
  border-radius: 100px;
  transition: 0.5s all ease-in-out;
  margin: 0 15px 0 0;
  font-size: 13px;
  color: white;
  font-family: "Centrale Regular";
  cursor: pointer;
}
.signUp:hover {
  transform: scale(0.9);
}
.languagueContainer {
  cursor: pointer;
}
.language {
  background: transparent;
  border: none;
  color: white;
  font-family: "Centrale Bold";
  font-size: 14px;
  cursor: pointer;
  width: 47px;
  background-image: url(/files/iconos/arrowDown.svg);
  background-repeat: no-repeat;
  background-position: 33px 2px;
}
.flechitaLanguage {
  pointer-events: none;
}
#headerLogoLink {
  display: flex;
}
#logoHeader {
  width: 150px;
}
.mainmenu {
  display: flex;
}
.mainmenu li {
  margin: 0px 25px;
  display: inline;
  list-style: none;
}
.mainmenu li a,
nav a {
  position: relative;
  line-height: 17px;
  font-size: 15px;
  letter-spacing: 1px;
  font-family: "Gotham" , sans-serif;
  cursor: pointer;
  padding-bottom: 10px;
  color: white;
  transition: 0.5s all ease-in-out;
  border-bottom: 3px solid transparent;
}
.mainmenu li a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s;
}
.mainmenu li a:hover::after {
  width: 100%;
}
.item:hover {
  color: white;
}
#main-container-responsive {
  display: none;
}
#container-menu-responsive {
  display: none;
}

.mobileElement{
  display: none;
}
.desktopElement{
  display: block;
}
#content{
  max-width: unset !important;
}

@media screen and (max-width: 1200px) {
  .mainmenu li a, nav a{
    font-size: 12px;
  }
  .logo img {
    width: 200px;
}
}
/* Mobile */
@media screen and (max-width: 768px) {
  #content{
    min-width: unset !important;
  }
  .mobileElement{
    display: block !important;
  }
  .desktopElement{
    display: none !important;
  }
  /*---------------Header------------------*/
  header {
    height: 80px;
  }
  #index-container {
    width: 100%;
  }
  .row {
    display: flex;
    justify-content: space-between;
    width: 95%;
    margin: auto;
    /* margin-left: 3%; */
    /* margin-right: auto; */
    align-items: center;
    /* height: 14vh; */
  }
  .deskopt-menu {
    width: 155px;
    margin-left: auto;
    margin-right: auto;
  }
  .row > div {
    display: flex;
    align-items: center;
    /*  width: 100%; */
  }
  /*-----Burger icon---------*/
  #main-container-responsive {
    display: block;
    height: auto;
  }
  #hamburger button {
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
  }
  #hamburger button span {
    background: white;
    display: block;
    height: 3px;
    width: 80%;
    margin: 7px;
    animation: 1s;
    animation-fill-mode: forwards;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  #hamburger button.open span {
    margin: 0;
  }
  #hamburger button span:nth-child(3) {
    top: 31px;
  }
  #hamburger button.open span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    margin-bottom: -5px;
  }
  #hamburger button.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }
  #hamburger button.open span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(-133deg);
    -moz-transform: rotate(-133deg);
    -o-transform: rotate(-133deg);
    transform: rotate(-133deg);
  }
  /*------------------Open menu-----------------*/
  #container-menu-responsive.open {
    backdrop-filter: blur(20px);
    height: calc(100vh - 80px);
    -webkit-backdrop-filter: blur(20px);
    display: flex !important;
    width: 100% !important;
    box-shadow: 1px 6px 14px -12px rgb(0 0 0 / 22%);
    -webkit-box-shadow: 1px 6px 14px -12px rgb(0 0 0 / 22%);
    -moz-box-shadow: 1px 6px 14px -12px rgb(0 0 0 / 22%);
  }
  #content{
    margin-bottom: 0 !important;
  }
  header .container {
    width: 90%;
    height: 80px;
}
  header.open {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 100vh;
  }
  .mainmenu li{
    margin-bottom: 40px;
  }
  #container-menu-responsive nav.open {
    display: block;
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*padding-top: 4rem;*/
    gap: 30px;
    padding-bottom: 2rem;
  }
  #container-menu-responsive nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1em 0 0;
  }
  .mainmenu li a,
  nav a {
    line-height: 17px;
    font-size: 17px;
    letter-spacing: 2px;
  }
  .signUp {
    font-size: 14px;
    padding: 5px 14px;
  }
  .item-menu-responsive {
    margin: 1.2em 0 !important;
  }
  #container-menu-responsive nav.open .redes-footer a {
    margin: 0;
  }
  #container-menu-responsive.open {
    animation: menu-animation 0.7s ease 0s 1 normal forwards;
  }
  #container-menu-responsive nav.open {
    animation: menu-animation 0.7s ease 0s 1 normal forwards;
  }
  @keyframes menu-animation {
    0% {
      opacity: 0;
      transform: translateY(-50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .mainmenu li a {
    padding-bottom: 5px !important;
  }
  .logo img{
    width: 200px;
  }
}

@media (orientation: portrait) {
  .countdown_wrap__timer {
    font-size: 30px;
  }

  .bg-video {
    height: 100vh;
    position: absolute;
    width: 200vw;
    left: -50vw;
  }

  #videoContainer {
  }

  #video1Loader {
    height: 100%;
  }
  #videoContainer .cover {
    display: none;
  }
}
