@media (max-width: 1300px) {
  .contact_container {
    max-width: 1210px;
    margin: 0 auto;
    padding: 0 15px;
  }
  .sa {
    display: none;
  }
  .custom-swiper-button-next {
    right: 50px;
  }

  .custom-swiper-button-prev {
    left: 50px;
  }
}
@media (max-width: 991px) {
  .menus {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 125px;
    right: 0;
    width: 100%;
    background-color: var(--primary);
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    z-index: 9999;
    padding-bottom: 20px;
    opacity: 0;
  }

  .menus.open {
    height: fit-content;
    opacity: 100%;
  }

  .menu {
    color: var(--white);
    padding: 10px;
    text-align: center;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    width: 30px;
    height: 22px;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--black);
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .right_socials {
    display: none;
  }
  .hero_section {
    padding: 70px 0;
  }
  .hero_heading {
    font-size: 55px;

    line-height: 58px;
  }
  .hero_desc {
    color: var(--white);
    margin: 15px 0 30px;
  }
  .primary_btn {
    padding: 10px 30px;
  }
  .service_section,
  .gallery_section,
  .footer_top,
  .doctor_section {
    padding: 50px 0;
  }
  .heading {
    font-size: 38px;
  }
  .service {
    width: calc(50% - 18px);
  }

  .about_right {
    display: none;
  }
  .about_ul {
    list-style: none;
    padding: 25px;
  }
  .doctor {
    width: calc(50% - 10px);
  }
  .contact_container {
    flex-direction: column;
    gap: 30px;
  }
  .contact_left {
    border-bottom: 1px dotted var(--primary);
    padding-bottom: 20px;
  }
  .footer_container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  address {
    position: relative;
  }
  .footer_right {
    flex-direction: row;
  }
  .about_bg {
    height: 150px;
  }
}
@media (max-width: 620px) {
  .hero_heading {
    font-size: 42px;
    line-height: 45px;
  }
  .heading {
    font-size: 32px;
  }
  .service,
  .doctor {
    width: 100%;
    padding: 20px;
  }
  .contact_desc {
    margin: 10px 0 15px;
  }
  .logo {
    width: 75px;
  }
}
@media (max-width: 441px) {
  #currentDateTime {
    font-size: 12px;
  }
  .hero_heading {
    font-size: 33px;
    line-height: 39px;
  }
  .heading {
    font-size: 28px;
  }
  address {
    flex-direction: column;
    align-items: center;
    padding: 16px 10px;
  }
}
