html,
body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

.phone-num {
  font-weight: bold !important;
  font-size: 18px;
  color: white;
  opacity: 1;
}

.blur-nav {
  position: fixed;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #00000000;
  transition: .5s;
}

.lang-select {
  display: inline-block;
  position: absolute;
  top: 15px;
  opacity: 0;
  left: 0px;
  right: 0px;
  z-index: 1;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding-top: 16px;
  text-align: center;
  height: 0;
  overflow: hidden;
  transition: .5s;
}

.lang-item:hover {
  opacity: 1;
  cursor: pointer;
  transition: .5s;
}

.lang-item:not(:hover) {
  opacity: .5;
  cursor: pointer;
  transition: .5s;
}

.project_card {
  display: block;
  cursor: pointer;
}

.project_card:hover+.short_desc {
  opacity: 1;
  transition: .5s;
}

.short_desc:hover {
  opacity: 1;
  transition: .5s;
}

.short_desc {
  opacity: 0.0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  padding-top: 52px;
  height: 100%;
  text-align: center;
  padding-bottom: 24px;
  padding-left: 12px;
  padding-right: 12px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: #0F1729;
  color: #fff;
  transition: .5s;
}