header {
  .logo {
    max-width: 100%;
  }

  .text-logo {
    font-weight: 700;
    color: #4db2ec;
    text-transform: uppercase;
    text-align: center;
    border-right: 4px solid;
    border-left: 4px solid;
    padding:0px 10px;
  }

  .text-logo:hover,.text-logo:active, .text-logo:visited  {
    text-decoration: none;
  }

  .text-logo:first-letter {
    background-color: #4db2ec;
    border-radius: .25rem;
    color: #fff;
    padding: 3px;
  }



  .slogan {
    color: #cdcdcd;
  }
}

.border-head{
  border-top: 2px solid #4db2ec;
  border-bottom: 2px solid #4db2ec;
}

.after-header {

}

.nav-border {
  border: solid 1px #363636;
  border-width: 1px 0px;

}

.header-menu-container {
  background-color: #303030;
  color: #636c72;
}

#header_menu  {
  padding: 0;
  margin: 0;
  position: relative;
  list-style: none;
  height: 47px;
  line-height: 47px;

  li.menu-item-has-children:after {
    display: block;
    content: '\2039';
    width: 7px;
    height: 4px;
    position: absolute;
    top: 44%;
    right: 33px;
    transform: rotate(-90deg);
    font-size: 20px;
    color: #4db2ec;
  }

  li{

    display: inline-block;
    float: left;
    position: relative;
    margin-top: -1px;

    a {
      display: block;
      padding: 0 22px;
      color: #fff;
      font-size: 11px;
      height: 100%;
      overflow: hidden;
      text-transform: uppercase;
      font-weight: 700;

      transition: all 0.1s linear 0.1s;
      -webkit-transition: all 0.1 linear 0.1;

    }

    a:hover {
      text-decoration: none;
      background-color: #404040;
    }

    ul {
      position: absolute;
      top: 48px;
      left: 0;
      visibility: hidden;
      width: 250px;
      z-index: 9;
      padding: 0px;

      transition: all 0.1s linear 0.1s;
      -webkit-transition: all 0.1 linear 0.1;

      li {
        border-bottom: none;
        background-color: rgba(48, 48, 48, 0.7);
        width: 100%;
        text-align: left;
        max-height: 51px;

        ul {
          top: 0px;
          left: 100%;
        }

      }
    }

  }

  li:last-child {
    border-right: none;
  }

  li:hover > ul {
    visibility: visible;
    background-color: #404040;
  }

  .current-menu-item a, .current-menu-ancestor>a {
    background-color: #404040;
    text-decoration: none;
  }


}

.social-buttons {
  a {
    display: inline-block;
    padding: 4px 12px;
    background-color: #404040;
    font-size: 20px;
    color: #fff;
    text-align: center;
    vertical-align: middle;
  }
  a:hover {
    text-decoration: none;
    background-color: #292b2c;
  }
}