

.bigred{
	font-size: 20px;
	color: red;
}
/*--------------------------------------------------------*/
.container{
    width: 100%;
    height: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
    

}
.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    padding: 6px 0;
    background-color: blue;  
}
.navbar__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 10px;
  }

  .logo {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none ;
    display: flex;
    align-items: center;
  }
  .hamb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
 
  .hamb__field {
    padding: 10px 20px;
    cursor: pointer;
  }
  .bar {
    display: block;
    width: 31px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    transition: 0.4s;
  }
  .popup {
    position: fixed;
    top: 62px;
    left: -100%;
    width: 100%;
    height: calc(100% - 75px);
    background-color: #fff;
    z-index: 100;
    display: flex;
    transition: 0.5s;
    background-color:  #0082FF;
    overflow-y: auto;
    
  }
 
  .popup.open {
    left: 0;
  }
 
  .popup .menu {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    justify-content: start;
    padding: 10px 0;
    text-decoration: none;
  }
 
  .popup .menu > li {
    width: 100%;
    height: 100%;
  }
 
  .popup .menu > li > a {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
  }
 
  .popup .menu > li > a:hover {
    background-color: rgba(80, 27, 153, 0.1);
  }
 
  .hamb__field.active .bar:nth-child(2) {
    opacity: 0;
  }
 
  .hamb__field.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
 
  .hamb__field.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
 
  body.noscroll {
    overflow: hidden;
  }

  a.nav-tel__tel {
    font-weight: 700;
    text-decoration: none;
    color: #000066;
  }

 
  @media (min-width: 1001px) {
    .navbar {
      display: none;
    }
    .popup{
      display: none;
    }
    
  }
  @media (max-width: 1000px){
    .flyingnav{
      display: none;
    }
    
    .hamb__logo-block a {
      color: white;
      text-decoration: none;
    }

    .nav-tel p,
    .nav-tel a {
      color: white;
    }

    .nav-tel p {
      margin: 1px 0;
    }

    .nav-tel br,
    .nav-tel__desktop {
      display: none;
    }
    .mess{
      display: none;
    }
    .nav__wrap {
      padding: 0 10px;
    }
    .viber-whatsApp{
      display: flex;
      flex-direction: column;
    }
    .viber-whatsApp a {
      color: white;
      text-decoration: none;
      
      font-size: 18px;
      font-weight: bold;
    }

    }
   
  
  