@media (max-width: 767px) {
  html, body {
      margin: 0;
      padding: 0;
      
    }
  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: #E10600;
    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 #E10600;
  }
  header #nav-menu.active .quote_button {
    margin: 0;
    border: 1px solid #E10600;
  }
  header.sticky {
    margin: 0;
    padding: 0;
    top: 0;
    border-radius: 0;
  }
  .hero .bg-layer {
    display: none;
  }
  .hero .hero-captions {
    align-items: center;
  }
  .hero .hero-captions .top {
    display: block;
    margin: 10px;
  }
  .hero .hero-captions .top img {
    width: 100%;
  }
  .hero .hero-captions .left {
    margin: 15px;
    padding: 0;
    text-align: center;
  }
  .hero .hero-captions .left .main-heading {
    font-size: 35px;
    letter-spacing: 2px;
  }
  .hero .hero-captions .left .main-description {
    display: none;
  }
  .hero .hero-captions .left .hero-button {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .hero .hero-captions .left .hero-button .quote_button {
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #E10600;
    padding: 10px 20px;
    font-weight: bolder;
    border: 3px solid #E10600;
    border-radius: 30px;
    text-decoration: none;
    width: -moz-max-content;
    width: max-content;
    transition: background-color 0.3s ease;
  }
  .hero .hero-captions .left .hero-button .quote_button span {
    font-weight: bolder;
    margin-right: 15px;
    transition: transform 0.3s ease;
  }
  .hero .hero-captions .left .hero-button .quote_button span img {
    width: 30px;
    vertical-align: middle;
  }
  .hero .hero-captions .left .hero-button .quote_button:hover {
    background-color: #E10600;
    color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }
  .hero .hero-captions .left .hero-button .quote_button:hover span {
    transform: scale(1.4);
    filter: brightness(0) invert(1);
  }
  .about {
    padding: 0;
    margin: 100px 0;
  }
  .about .about-inner {
    margin: 0;
    padding: 0;
    flex-direction: column-reverse;
  }
  .about .about-inner .left {
    margin: 10px;
    padding: 0;
  }
  .about .about-inner .left img {
    width: 100%;
  }
  .about .about-inner .right {
    margin: 0;
    text-align: center;
    padding: 0;
    width: 100%;
  }
  .about .about-inner .right p {
    display: none;
  }
  .about .about-inner .right .about-mobile {
    display: block;
    width: 100%;
  }
  .service {
    display: block;
    padding: 10px;
    margin: 100px 0;
  }
  .service .title {
    display: none;
  }
  .service .mobile {
    display: block;
  }
  .service .service-card {
    display: none;
  }
  .service .service-card-mobile {
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .service .service-card-mobile .card {
    background-color: #E10600;
    padding: 15px;
    border-radius: 20px;
    width: 120px;
  }
  .service .service-card-mobile .card .icon img {
    width: 25px;
    filter: brightness(0) invert(1);
  }
  .service .service-card-mobile .card .content {
    color: #ffffff;
  }
  .service .service-card-mobile .card .content h3 {
    font-size: 12px;
  }
  .service .service-card-mobile .card .content p {
    display: none;
  }
  .testimonials {
    margin: 0;
    padding: 100px 0;
    background-color: #ff3131;
  }
  .testimonials .description {
    display: none;
  }
  .quote {
    padding: 10px;
    margin: 100px 0;
  }
  .quote .quote-container .left {
    display: none;
  }
  .quote .quote-container .right .title {
    text-align: center;
  }
  .quote .quote-container .right form {
    align-items: center;
  }
  .quote .quote-container .right form .input {
    width: 300px;
  }
  .quote .quote-container .right form .row {
    gap: 0px;
    flex-direction: column;
  }
  .quote .quote-container .right form .row input {
    width: 300px;
  }
  .quote .quote-container .right form .row button {
    text-align: center;
    width: 100%;
  }
  .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=responsiveness-0–767px.css.map */