#main {
  width: 100%;
  height: 100vh;
  position: relative;
}

#main.half {
  width: 100%;
  height: 400px;
  position: relative;
}

#main .cover-wrapper {
  position: relative;
  overflow: hidden;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /* background-color: var(--menu-hover); */
  background-color:  rgba(0, 0, 0, 0.882);
}

#main .cover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s, opacity 0.4s ease-out;
  -webkit-transition: visibility 0s, opacity 0.4s ease-out;
  -moz-transition: visibility 0s, opacity 0.4s ease-out;
  -ms-transition: visibility 0s, opacity 0.4s ease-out;
  -o-transition: visibility 0s, opacity 0.4s ease-out;
}

#main .cover .img {
  width: 100%;
  height: 100%;
}

#main .cover img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  background-repeat: no-repeat;
}

#main .cover.active {
  opacity: 1;
  visibility: visible;
}

#main .cover-opacity {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* background-color: var(--black-hover); */
  background-color:  rgba(0, 0, 0, 0.624);
}

#main .logo {
  position: absolute;
  left: 50%;
  top: 25px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transform: translateX(-50%);
  /* background: var(--white); */
  background:  rgb(241, 241, 241);
  padding: 5px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

#main .logo img {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  width: 140px;
  height: 140px;
  min-width: auto;
  min-height: auto;
  max-width: auto;
  max-height: auto;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  background:  rgb(241, 241, 241);
  padding: 5px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

#main .logo.half {
  width: 100px;
  height: 100px;
}

#main .logo.half img {
  width: 90px;
  height: 90px;
}