.navigation {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: opacity 5s ease;
  z-index: 999;
  display: none;
}
.showNav {
  opacity: 1;
  display: block;
}
.navOverlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.70);
  position: absolute;
  top: 0;
  left: 0;
}
.navBreadcrumb {
  width: 280px;
  height: 100vh;
  background: #000;
  position: relative;
}
.navBreadcrumb .navBtn {
  width: 66px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  background: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  position: absolute;
  top: 14px;
  right: -33px;
  color: #000;
}
.navigationList {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 19px 0 70px;
  box-sizing: border-box;
}
.navigationList .navigationLogo {
  width: 100px;
  height: 100px;
  border-radius: 98px;
  border: 1px solid  rgba(255, 255, 255, 0.10);
  margin: 0 auto 24px;
}
.navigationList .navigationLogo img {
  width: 100%;
  height: 100%;
}
.navOptBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navOptItem {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius:  6px;
  background: rgba(255, 255, 255, 0.10);
  padding: 12px 32px;
  box-sizing: border-box;
  color: #1ABC9C !important;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 133.333% */
}
.nav-item {}
.nav-item .nav-link {
  padding: 0 22px 0 30px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}
.nav-item .dropdownArrIcon {
  width: 15px;
  height: 15px;
  background: url('/static/images/dropdownArrIcon.png');
  background-size: 100% 100%;
}
.sub-nav-item {
  padding: 0 22px 0 30px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  background: rgba(255, 255, 255, 0.10);
  
}
.sub-nav-Box {
  display: none;
}
.active .dropdownArrIcon {
  transform: rotate(90deg);
}
.nav-item .show {
  display: block;
}
.contactInfo {
  width: 100%;
  height: 70px;
  position: absolute;
  left: 0;
  bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contactItem {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgb(56, 56, 56);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contactItem img {
  width: 20px;
  height: 20px;
}