@media (max-width: 768px) {
  .burger-block .burger-line {
    text-decoration: none !important;
  }
  .burger-block .burger-line:visited,
  .burger-block .burger-line:active,
  .burger-block .burger-line:focus,
  .burger-block .burger-line:hover {
    text-decoration: none !important;
  }
}

@media (min-width: 769px) {
  .burger-block,
  .contact-block { display: none; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 54px;
    left: 0;
    width: 100vw;
    height: 0;
    background-color: #4335DE;
    overflow: hidden;
  transition: height 0.5s ease;
    z-index: 999;
  }

  .nav-links.active {
  height: 252px;
  }

  .burger-menu { z-index: 1002; }
  body.menu-open { overflow: hidden; }
}

@media (max-width: 768px) {
  .burger-buttons { position: relative; }
  .nav-links > .nav-link { display: none; }
  .burger-block { display: block; position: absolute; left: 40px; top: 20px; box-sizing: border-box; }
  .burger-block .burger-line { display: block; color: #FFFFFF; font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 800; padding-left: 0px; line-height: 1.8; }

  .contact-block { display: block; margin: 120px 40px; color: #FFFFFF; }
  .contact-block__title { 
    font-family: 'Inter', sans-serif; 
    font-weight: 600; 
    font-style: normal; 
    font-size: 14px; 
    line-height: 37px; 
    letter-spacing: 0px; 
    vertical-align: middle; 
    margin: 0 0 -8px 0;
  }
  .contact-row { display: flex; align-items: center; gap: 8px; margin: 4px 0; }
  .contact-row img { width: 11px; height: 11px; }
  .contact-row__text { 
    font-family: 'Inter', sans-serif; 
    font-weight: 400; 
    font-style: normal; 
    font-size: 10px; 
    line-height: 158%; 
    letter-spacing: 0%; 
  }
  .contact-row:last-child .contact-row__text { 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 400; 
    font-size: 10px; 
    line-height: 158%; 
    letter-spacing: 0%; 
  }
  .contact-row__text { color: #999999; }
}

