@media screen and (max-width: 1200px) {
  header.site_header ul.social-link {
    display: none;
  }
  header.site_header .site_menu {
    justify-content: end !important;
  }
}
@media screen and (max-width: 992px) {
  header.site_header ul.site_menu {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--theme-dark);
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: start !important;
    align-items: start !important;
    padding: 7rem 3rem 1rem !important;
    font-size: 2rem;
    line-height: normal;
    font-weight: bold;
    row-gap: 1rem;
    transform: translateX(-101%);
    transition: 0.5s;
  }
  header.site_header ul.site_menu.active {
    transform: translateX(0%);
  }
  header.site_header .trigger {
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 999;
  }
  header.site_header .trigger.active i:before {
    content: "\f00d";
  }
  section.hero-banner-sec .h1 {
    font-size: 3.5rem;
    letter-spacing: -4px;
  }
  section.simple-steps .deco-img-container {
    position: relative;
    width: 100%;
  }
  section.simple-steps .bg-bl:after {
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    top: 12%;
    border-radius: 1rem;
    height: 75%;
  }
}
@media screen and (max-width: 768px) {
  footer.site_footer .explore-widget,
  footer.site_footer .contact-widget {
    margin-left: 0;
    margin-right: 0;
  }
  footer.site_footer .copyright ul.terms {
    padding: 0;
    margin-top: 0.8rem;
  }
}
