.sub_item{
  border-right: 1px solid #F0F0F0;
  padding-right: 20px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 20px;
  transition
}


.navigation .btn {
  font-size: 14px;
}

.sub_item:first-of-type {
  padding-left: 0px;
}

.sub_item:last-of-type {
  padding-right: 0px; 
  border-right: 0px;
}
#nav-icon4 {
  width: 24px;
  height: 15px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon4 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon4 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(2) {
  top: 8px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(3) {
  top: 16px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon4.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 17px;
}

.mobile-nav {
  position: fixed;
  transform: translateX(0);
  display: block;
  height: 100vh;
  width: 100vw;
  background-color: white;
  z-index: 1000;
  transition: all .5s ease-in-out;
}

@media screen and (min-width: 768px) {
  .mobile-nav {
    width: 50vw;
  }
}
.mobileSubMenu li:first-of-type {
  padding-top: 40px;
}
.subMenu > p > svg {
  transition: transform 0.3s ease-in;
  transform: rotate(0deg);
}
.subMenu.active > p > svg{
  transition: transform 0.3s ease-in;
  transform: rotate(180deg);
}
.dropdown-content {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  visibility: hidden;
}
.dropdown-content.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in-out;
}

@media screen and (min-width: 768px) {
  .mobile-nav {right: 0;}
  .hide { transform: translateX(400px);}
}
.hide {
  transform: translateX(100vw);
  transition: all .5s ease-in-out;
}


.cyber-foundry {
  background: #E3134B !important;
  color: white !important;
}
.digital-hub {
  background: #22f5ac !important;
  color: black !important;
}
.immersive-labs {
  background: #0300A5 !important;
  color: white !important;
}
.pixel-architects {
  background: #6967E0 !important;
  color: white !important;
}

.pixel_architects a > svg > path {
  fill: #000;
}

.pixel_architects .relative > a {
  color: #000;
}

.pixel_architects  #nav-icon4 > span {
  background: #000;
}


