nav {
  background: #B12028;
  height: 130px;
  max-width: 100%;
  opacity: .9;
  position: absolute;
  width: 100%;
  z-index: 999;
  transition:.4s

}

label.nav-logo {
  line-height: 130px;
  margin-left: 8%;
}
.nav-logo img{
  width: 180px;
}

nav ul {
  float: right;
  margin-right: 8%;
}
nav ul li {
  display: inline-block;
  line-height: 130px;
  width: 142px;
}
.nav-ul{
  height: 130px;
}
nav ul li a {
  color: white;
  font-size: 25px;
  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: 20px;
  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;
  top: -5px;
  border:2px solid #DCBFA5;
  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: 130px;
  cursor: pointer;
  display: none;
}
#check {
  display: none;
}
@media (max-width: 996px) {
  label.nav-logo {
    margin-left: 4%;
  }
  nav ul li {

    width: 115px;
  }
}

@media (max-width: 768px) {
  label.nav-logo {
    line-height: 80px;
    margin-left: 8%;
  }
  section {
    background-position: top right;
  }
  nav{
    background: #B12028;
    height: 80px;
    max-width: 100%;
    opacity: .9;
    position: absolute;
    width: 100%;
    z-index: 999;
    transition:.4s
  }
  label.logo {
    font-size: 30px;
    margin-left: 20px;
  }
  nav ul li a {
    color: white;
    font-size: 16px;
  }
  .hamberger-btn {
    display: block;
    font-size: 35px;
    color: white;
    float: right;
    margin-right: 30px;
    line-height: 80px;
    cursor: pointer;
  }
  .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%;
    line-height: 80px;
  }
  #check:checked ~ ul {
    right: -10px;
    z-index: 100;
  }

  .fancy-radius {
    display: none;
  }

}
  
  
