body {
  background-color: #000;
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.proface-logo {
  display: inline-block;
  width: 100px;
  position: absolute;
  top: 48px;
  left: 60px;
}

@media screen and (max-width: 767px) {
  .proface-logo {
    top: 5px;
    left: 5px;
  }
}

.proface-logo img {
  display: inline-block;
  max-width: 100%;
}

.contents {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.showroom-title {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 5vh;
  opacity: 0;
  -webkit-animation: fadeInAnimation 1s 1s ease-in-out forwards;
  animation: fadeInAnimation 1s 1s ease-in-out forwards;
}

@media screen and (max-width: 767px) {
  .showroom-title {
    max-width: 95vw;
  }
}

.showroom-title img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.select-language {
  position: relative;
  opacity: 0;
  -webkit-animation: fadeInAnimation 1s 2s ease-in-out forwards;
  animation: fadeInAnimation 1s 2s ease-in-out forwards;
}

.language-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;
  width: 250px;
  background-color: #fff;
  border-radius: 30px;
  position: relative;
  height: 41px;
  padding-left: 20px;
}

.language-btn .icon {
  width: 30px;
  margin-right: 15px;
  pointer-events: none;
}

.language-btn .text {
  padding-top: 4px;
  width: 100px;
  pointer-events: none;
}

.language-btn::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 15px solid #215bac;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  pointer-events: none;
}

.selctor {
  width: 200px;
  position: absolute;
  top: 41px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

.selctor > a {
  background-color: #bfd6ea;
  display: block;
  width: 100%;
  padding: 10px 0;
  line-height: 0;
  border-bottom: 1px solid #fff;
}

.selctor > a:last-child {
  border-bottom: none;
}

.selctor > a:hover {
  background-color: #215bac;
}

.selctor > a img {
  display: block;
  height: 20px;
  margin: 0 auto;
  pointer-events: none;
}

.selctor > a img:nth-child(2) {
  display: none;
}

.selctor > a:hover img:nth-child(1) {
  display: none;
}

.selctor > a:hover img:nth-child(2) {
  display: block;
}

@-webkit-keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
