@media (max-width: 992px) {
  .navbar {
    justify-content: space-between;
  }
  .navbar .nav_logo {
    position: relative;
    transform: none;
    bottom: auto;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 20px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 105;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  .nav-menu.active {
    right: 0;
  }
  .hamburger {
    display: block;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .hero .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .hero .hero_right {
    max-width: 500px;
  }
  .hero_left {
    text-align: center;
  }
  .hero_heading {
    font-size: 65px;
  }
  .hero_desc {
    font-size: 16px;
    margin-bottom: 50px;
  }
  .hero_btn {
    font-size: 16px;
    padding: 10px 30px;
    width: 100%;
  }
  .doc {
    background: linear-gradient(rgba(0, 4, 215, 0.6117647059), rgba(6, 10, 255, 0.5882352941)), url(./assets/docotr_bg.webp) no-repeat;
    background-size: cover;
    padding: 50px 0;
    background-position: center;
  }
  .doc_content {
    width: 100%;
    max-width: none !important;
    text-align: center !important;
  }
  .heading {
    font-size: 50px;
  }
  .doctor-specialty {
    margin: 0 auto;
  }
  .about {
    padding: 50px 0;
  }
  .about .container {
    flex-direction: column-reverse;
  }
  .about .heading {
    text-align: center;
  }
  .about_right {
    max-width: 500px;
    margin: 0 auto;
  }
  .gallery {
    padding: 50px 0;
  }
  .gallery_img {
    width: calc(33.3333333333% - 15px);
  }
  .contact {
    padding: 50px 0;
  }
  .contact_middle {
    flex-direction: column;
  }
  .right input,
  .right button {
    padding: 10px;
    border-radius: 5px;
  }
  address {
    margin-top: 35px;
    padding: 20px 30px;
    border-radius: 10px;
  }
  footer {
    padding: 50px 0;
  }
  footer .container {
    flex-direction: column;
    text-align: center;
  }
  .footer_socicals {
    flex-direction: row;
  }
  article {
    padding: 50px 0;
  }
}
@media (max-width: 576px) {
  .nav_logo img {
    max-width: 60px;
  }
  .nav-menu {
    width: 80%;
  }
  .hero {
    padding: 50px 0;
  }
  .hero_heading {
    font-size: 42px;
  }
  .hero_socials {
    justify-content: center;
  }
  .sff {
    display: none;
  }
  .heading {
    font-size: 42px;
  }
  .doctor-name {
    font-size: 24px;
  }
  .about_list {
    margin-top: 75px;
  }
  .about_list > * + * {
    margin-top: 75px;
  }
  .about_text {
    margin-left: 0;
    text-align: center;
    padding: 50px 20px 20px;
  }
  .about_item img {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .gallery_img {
    width: calc(50% - 10px);
  }
  address {
    flex-direction: column;
  }
  address span {
    text-align: center;
    text-wrap: balance;
  }
}/*# sourceMappingURL=responsive.css.map */