@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');/* header */
.main-logo{
    display: block;
  }
  .responsive-logo {
    display: none;
  }
  
  .fixed-menu {
    background-color: #fff;
    position: fixed;
  }
  
  .fixed-menu a {
    color: #000;
    text-decoration: none;
  }
  
  .fixed-menu a:hover {
    color: #000!important;
  }
  
  .fixed-menu .bar-top,
  .fixed-menu .bar-middle,
  .fixed-menu .bar-bottom {
    background: #000;
  }
  
  header {
    transition: all 0.5s ease;
    width: 100%;
    background-color: transparent;
    position: fixed;
    z-index: 10;
    border-bottom: 1px solid #f2f2f2;
    z-index: 99999999999;
    overflow: hidden;
  }
  
  header nav {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  header .logo {
    width: 25%;
    padding: 10px 0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  header .logo img {
    max-width: 80%;
    transition: all 0.3s ease;
  }
  
  header nav ul {
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 10px 0;
  }

  header nav ul.list-privacy {
    justify-content: flex-end;
  }
  
  header nav ul li {
    padding: 0 5px;
    height: 100%;
    display: block;
    height: 100%;
  }


  header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: all .3s ease;
  }
  
  header nav ul li a:hover {
    text-decoration: none;
    color: #fff;
    
  }


  
  /* BURGER MENU */
  .hamburger-menu {
    margin: 10px 20px;
    flex-flow: column wrap;
    justify-content: space-between;
    height: 40px;
    width: 40px;
    cursor: pointer;
    display: none;
  }
  .bar-top,
  .bar-middle,
  .bar-bottom {
    height: 4px;
    background: black;
    border-radius: 5px;
    margin: 4px 0;
    transform-origin: left;
    transition: all 0.5s;
  }
  
  .phone-header {
      padding: 10px 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    margin-left: 3rem;
  }
  
  .phone-header img{
    max-width: 30px;
        display: block;
    
  }
  
  .phone-header img.mobile-phone{
        max-width: 30px;
        display: none;
      }
  
  @media screen and (max-width: 1390px) {
    header nav ul {
      width: 50%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      list-style: none;
    }
  }
  
  @media screen and (max-width: 769px) {
    .responsive-logo {
      display: block;
    }
    
    .main-logo{
      display: none;
    }
  
    header {
      position: static;
    }
    header nav {
      width: 100%;
    }
  
    header .logo {
      width: 50%;
      display: flex;
      align-items: center;
      padding: 5px 3px;
    }
  
    header .logo img {
      max-width: 100%;
    }
  
    header nav ul {
      transition: all 0.3s ease;
      position: fixed;
      top: 55px;
      left: -100%;
      width: 100%;
      height: 30vh;
      flex-direction: column;
      align-items: center;
      justify-content: space-around;
      z-index: 9999999999;
      background-color: #fff;
    }
  
    header nav ul li a {
      color: #000;
      font-size: 1.2rem;
    }
    .hamburger-menu {
      display: flex;
    }
    
    .phone-header {
      color: #000;
      margin-bottom: 0;
      margin-left: 0;
      width:40%;
      font-size: 13px;
    }
  
      .phone-header img.desktop-phone{
        max-width: 30px;
        display: none;
      }
      
      .phone-header img.mobile-phone{
        max-width: 30px;
        display: block;
      }
  }
  
  