@media only screen and (max-width: 991px) {
  #header .logo img {
    width: 85px;
    display: flex;
  }
  nav {
    background-color: #ba0c2f;
  }
  .nav-container {
    justify-content: space-between;
  }
  .nav-menu {
    display: none;
  }
  .hamburger-menu {
    display: block;
  }
  .hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .contact_us {
    display: block !important;
  }
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    z-index: 999;
  }
  .nav-menu.active li {
    margin-right: 0;
    margin: 10px;
  }
  .nav-menu li a {
    color: #213430;
    font-size: 16px;
    font-family: manrope_semibold;
    text-decoration: none;
    padding: 10px 0;
    position: relative;
  }
}
@media (max-width: 767px) {
  .custom_border {
    border: 0 !important;
  }
  #support .custom_border .support_box::before,
  #support .custom_border .support_box::after {
    display: none !important;
  }
}
@media (max-width: 991px) {
  #support {
    background-color: #f3f3f3;
    width: 100%;
    padding: 60px 0px 60px 0px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .horizontal_line {
    width: 90px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .horizontal_line {
    width: 111px !important;
  }
}
@media (min-width: 1400px) {
  .nav-menu li {
    padding: 0px 34px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .nav-menu li {
    padding: 0px 28px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .nav-menu li {
    padding: 0px 16px !important;
  }
}
@media (min-width: 992px) {
  .contact_us {
    display: none !important;
  }
}
@media (min-width: 992px) {

  .nav-menu li a.active {
      color: #BA0C2F;
  }

  .nav-menu li .active::before {
      content: "";
      position: absolute;
      bottom: 0;
      width: 60%;
      height: 2px;
      transition: width 0.3s ease;
  }


  .nav-menu li .active::after {
      content: "";
      position: absolute;
      bottom: 0;
      width: 40%;
      height: 2px;
      transition: width 0.3s ease;
  }

  .nav-menu li .active::before {
      left: 0;
      background-color: #BA0C2F;
  }

  .nav-menu li .active::after {
      right: 0;
      background-color: #e9e9e9;
  }

  .nav-menu li .active::before,
  .nav-menu li .active::after {
    width: 100%;
    background-color: #BA0C2F;
  }
}

