:root {
  --fondo: #ebeef4;
  --vitrar: #033043;
  --vitrarNaranja: #fda521;
  --menu: rgb(135, 154, 169);
}

* {
  box-sizing: border-box;
  font-family: "Hanken Grotesk";
  margin: 0;
}

body {
  background-color: var(--fondo);
  background-image: url("images/background.jpg");
  height: 100vh;
  display: flex;
  flex-direction: row;
}

.marca {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 60%;
  min-width: 500px;
  opacity: 1;
  transition: all 0.5s ease-in;
  overflow: hidden;
  user-select: none;
}

.dinamic {
  display: grid;
  grid-template-rows: 1fr;
  transition: all 0.1s linear;
  height: 100vh;
  align-items: center;
  width: 80%;
}

.dinamicHijo {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logoChico {
  display: flex;
  justify-content: center;
  height: 30vh;
}

.contenidoMenu {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  height: 70vh;
  flex-direction: column;
  font-size: 20px;
  color: var(--vitrar);
  padding: 0 0 0 10px;
  align-items: flex-start;
}

.contenidoItem {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.formularioContacto {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 100%;
}

.itemFormulario {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  user-select: text;
}

.linkItemFormulario {
  font-size: 20px;
  /* color: violet; */
  text-decoration: none;
}

.linkItemFormulario a {
  color: var(--vitrar);
  text-decoration: none;
}

.menuContainer {
  width: 40%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 10px;
  transition: all 0.5s ease-in;
  /* padding: 10px 0 60px 0; */
}

.menu {
  height: 150px;
  display: flex;
  align-items: center;
  user-select: none;
  cursor: pointer;
  font-family: "Sulphur Point", Arial, Helvetica, sans-serif;
  font-size: 50px;
  color: var(--vitrar);
  transition: all 0.3s ease-in;
  border-bottom: solid 1px rgb(220, 220, 220);
}

.menu:hover {
  color: rgb(220, 220, 220);
}

.menuSub {
  text-align: center;
}

#inviIni {
  align-items: center;
}

#inviDE,
#inviES,
#inviSE,
#inviCO {
  display: none;
}

.invi {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  body {
    flex-direction: column;
  }

  .dinamic {
    width: 100%;
  }

  .marca {
    width: 100%;
    height: 60vh;
    min-width: 0;
    /* background-image: linear-gradient(var(--menu), var(--fondo)); */
  }

  .logoChico {
    height: 21vh;
  }

  .contenidoMenu {
    height: 49vh;
  }

  .menuContainer {
    width: 100%;
    height: 40vh;
    justify-content: flex-end;
    min-width: 0;
  }

  .menu {
    height: 4.4vh;
    gap: 1%;
    font-size: 2.5vh;
    padding-left: 20px;
  }

  .imagenItemFormulario img {
    width: 40px;
    padding-left: 10px;
  }
}
