nav {
    background: #111E29;
    height: 130px;
    max-width: 100%;
    width: 100%;
    z-index: 999;
    transition:.4s;
    padding: 29px 0;
    position: absolute;

  }
  .shield_logo_black{
        position: absolute;
        left: 50%;
        margin-left: -33px;
        bottom: -20px;
        height: 45px !important;
  }
  .shield_logo_area .bottom-line{
    top: 58px;
  }
  .menu-logo{
    width: 40%;
    }

  .antrc-logo{
      width: 72%;
  }
  .nav-item{
    padding: 24px 0;

  }

  label.nav-logo {
    margin-left: 8%; 
    padding: 10px 0px;

  }
  
  nav ul {
    float: right;
    margin-right: 8%;
  }
  .nav-title img{
    height: 24px;
  }
  nav ul li {
    display: inline-block;
    width: 150px;
  }
  .nav-ul{
    height: 130px;
  }
  nav ul li a {
    color: white;
    font-size: 16px;
    font-weight: bolder;
    position: relative;
  }
  .nav-item a{
    color:white
  }
  .nav-title{
    text-align: center;
    position: relative;
  }
  
  .vertical-line{
    border-left: 1px solid white;
    height: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .vertical-line-right{
    width: 0;
  }
  .vertical-line-right .vertical-line{
    transform: translateY(calc( -50% - 6px ));
  
  }
  .bottom-line {
    position: relative;
    background: white;
    top: 47px;
    border: 2px solid white;
    transform:scale(0,1);
    transition: transform ease-in-out 250ms; 
  }
  nav a:hover .bottom-line {
    transform:scale(.8,1);
  }
  
  .hamberger-btn {
    font-size: 35px;
    color: white;
    float: right;
    margin-right: 30px;
    line-height: 80px;
    cursor: pointer;
    display: none;
  }
  #check {
    display: none;
  }
  
  @media (max-width: 768px) {
    section {
      background-position: top right;
    }
    nav{
      position: fixed ;
    }
    .nav-title {
      margin-bottom: 30px !important;
    }
    label.logo {
      font-size: 30px;
      margin-left: 20px;
    }
    nav ul li a {
      color: white;
      font-size: 16px;
    }
    .hamberger-btn {
      display: block;
    }
    .nav-item {
      position: fixed;
      width: 100%;
      height: 100vh;
      background: #B12028;
      top: 80px;
      right: 100%;
      text-align: center;
      transition: all 0.5s;
    }
    nav ul li {
      display: block;
      width: 100%;
      
    }
    #check:checked ~ ul {
      right: -10px;
      z-index: 100;
    }

    .fancy-radius {
      display: none;
    }
  
  
  }
  
  
