#main_banner {
  position: relative;
  background: #000;
  border-radius: 5px 5px 0 0;
  margin: -15px -25px;
  margin-bottom: 20px;
}

#main_banner .background {
  background-image: url('labs.png');
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  animation: fade 3s ease-in;
  opacity: 0.7
}

#main_banner img {
  opacity: 0;
}

#main_banner .text {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  font-family: "Oswald";
  font-size: 50px;
  height: 165px;
  text-shadow: 3px 3px 0 #ffa600, -3px -3px 0 #f00;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  animation: scale_text 2s ease-in;
  letter-spacing: 0.4rem;
  max-width: 570px;
  width: 95%;
}

@keyframes scale_text {
  0% {
    scale: 0;
    opacity: 0;
  }

  100% {
    scale: 1;
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0.7;
  }
}

@media only screen and (max-width: 650px) {
  #main_banner .text {
    font-size: 35px;
    height: 125px;
  }
}

.lang .orb {
  width: 15px;
  height: 15px;
  border-radius:50%;
  display: inline-block;
  vertical-align: middle;
  margin-top:-3px;
}

.lang {
  font-family: "Oswald", "Quicksand", sans-serif;
}

.lang .css .orb {
  background: linear-gradient(to right top, #77cd2f, #25913c) !important;
  color: #fff;
}

.lang .java .orb {
  background: linear-gradient(to right top, #f89820, #ffb354) !important;
  color: #fff;
}

.lang .javascript .orb {
  background: linear-gradient(to right top, #d3d642, #ffff00) !important;
  color: #000;
}

.lang .php .orb {
  background: linear-gradient(to right top, #e386b6, #911599) !important;
  color: #fff;
}

.lang .swift .orb {
  background: linear-gradient(to right top, #ffa600, #d94100) !important;
  color: #fff;
}

.lang .yass .orb {
  background: linear-gradient(to right top, #f000ff, #d90071) !important;
  color: #fff;
}

.zone.lang ol {
  list-style-type: none;
}

.zone.lang ol li{
  display:inline-block;
}

.zone.lang ol li a{
  padding:10px;
  background:var(--general-group-background-3);
}

.zone.lang > .title{
  text-transform:uppercase;
}
