@media (max-width: 767px) {
  * {
    padding: 0;
    margin: 0;
    font-family: "SegUIVar", sans-serif;
    scroll-behavior: smooth;
  }
  :root {
    --primary-color: #0066ff;
    --secondary-color: #414141;
    --secondary-color-light: #41414110;
    --secondary-color-med: #414141bb;
  }
  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }
  body {
    padding: 0;
  }
  body section {
    scroll-margin-top: 130px;
  }
  header {
    margin: 0;
    padding: 0;
    position: relative;
  }
  header .logo {
    padding: 0;
    margin: 10px;
  }
  header .logo a img {
    width: 50%;
  }
  header .navigation {
    display: none;
  }
  header .burger-menu {
    cursor: pointer;
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease-in-out;
    margin: 10px;
  }
  header .burger-menu .bar {
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 4px;
    z-index: 20;
    transition: all 0.3s ease-in-out;
  }
  header .burger-menu.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  header .burger-menu.active .bar:nth-child(2) {
    opacity: 0;
  }
  header .burger-menu.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  header #nav-menu .nav {
    flex-direction: column;
  }
  header #nav-menu.active {
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    top: 60px;
    right: 10px;
    padding: 20px;
    text-align: center;
    background-color: rgb(255, 255, 255);
    border: 1px solid var(--primary-color);
  }
  header #nav-menu.active .quote_button {
    margin: 0;
    border: 1px solid var(--primary-color);
  }
  header.sticky {
    margin: 0;
    padding: 0;
    top: 0;
    border-radius: 0;
  }
  .hero {
    padding: 50px 0;
  }
  .hero .hero-captions .left {
    text-align: center;
  }
  .hero .hero-captions .left .heading {
    font-size: 50px;
    width: -moz-fit-content;
    width: fit-content;
    line-height: 1;
  }
  .hero .hero-captions .left .description {
    position: static;
    font-size: 25px;
    margin-bottom: -5px;
  }
  .about {
    flex-direction: column-reverse;
    margin: 0;
  }
  .about .left {
    text-align: center;
    justify-content: center;
  }
  .about .left .content {
    padding: 20px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .about .left .content .description {
    line-height: 1.5;
  }
  .about .left .content .hero-button {
    justify-content: center;
  }
  .about .right img {
    width: 300px;
  }
  .services {
    margin: 0;
  }
  .services .description {
    width: -moz-fit-content;
    width: fit-content;
    padding: 20px;
  }
  .why_choose_us {
    margin: 20px;
    flex-direction: column;
  }
  .why_choose_us .accordion {
    padding: 0;
    text-align: center;
  }
  .why_choose_us .accordion .title {
    margin: 0;
  }
  .why_choose_us .right img {
    width: 300px;
  }
  .projects {
    margin: 20px;
  }
  .projects .description {
    max-width: 100%;
    font-size: 14px;
  }
  .projects .projects-carousel .track .project img {
    border-radius: 10px;
    width: 50%;
  }
  .projects .arrow {
    display: none;
  }
  .footer {
    display: block;
    padding: 20px 0 0 0;
  }
  .footer .footer-content {
    padding: 15px;
    margin: 0;
    gap: 0;
    flex-direction: column-reverse;
  }
  .footer .footer-content .title h2, .footer .footer-content .title p {
    display: none;
  }
  .footer .contact {
    padding: 0 0 20px 0;
  }
  .footer .contact .details .card {
    padding: 0;
  }
  .footer .copyright {
    padding: 20px 0;
  }
  .footer .copyright p {
    text-align: center;
  }
}/*# sourceMappingURL=mobile.css.map */