@media (min-width: 800px) and (max-width: 1024px) {
  * {
    padding: 0;
    margin: 0;
    font-family: "SegUIVar", sans-serif;
    scroll-behavior: smooth;
  }
  body {
    padding: 0;
  }
  body section {
    scroll-margin-top: 50px;
  }
  header {
    margin: 0;
    padding: 0;
    position: relative;
  }
  header .logo {
    padding: 0;
    margin: 30px;
  }
  header .logo a img {
    width: 20%;
  }
  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: 30px;
  }
  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: 110px;
    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 {
    margin: 0;
    padding: 0;
  }
  .hero .bg-layer {
    display: none;
  }
  .hero .hero-captions {
    align-items: center;
  }
  .hero .hero-captions .top {
    margin: 100px 0 0 0;
    display: block;
    text-align: center;
  }
  .hero .hero-captions .top img {
    width: 60%;
  }
  .hero .hero-captions .left {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0 50px;
    text-align: center;
    justify-content: center;
  }
  .hero .hero-captions .left .main-heading {
    font-size: 50px;
    letter-spacing: 2px;
  }
  .hero .hero-captions .left .main-description {
    display: block;
    width: 100%;
  }
  .hero .hero-captions .left .hero-button {
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-top: 30px;
  }
  .hero .hero-captions .left .hero-button .contact_button {
    height: 30px;
    margin: 0;
  }
  .hero .hero-captions .left .hero-button .quote_button {
    height: 30px;
    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;
    text-align: center;
  }
  .about .about-inner .left img {
    width: 70%;
  }
  .about .about-inner .right {
    margin: 0;
    text-align: center;
    padding: 0;
    width: 100%;
  }
  .about .about-inner .right h1 {
    font-size: 50px;
  }
  .about .about-inner .right p {
    display: block;
    padding: 0 50px;
  }
  .about .about-inner .right .about-mobile {
    display: none;
    width: 100%;
  }
  .service {
    display: block;
    padding: 0 50px;
    margin: 100px 0;
  }
  .service .title {
    display: none;
  }
  .service .mobile {
    display: block;
    font-size: 50px;
  }
  .service .service-card {
    display: flex;
    gap: 10px;
    margin: 15px;
    flex-wrap: wrap;
  }
  .service .service-card .card-inner {
    border-radius: 40px;
    height: 300px;
  }
  .service .service-card-mobile {
    display: none;
  }
  .testimonials {
    margin: 0;
    padding: 100px 50px;
    background-color: #ff3131;
  }
  .testimonials .description {
    display: block;
  }
  .quote {
    padding: 10px;
    margin: 100px 50px;
  }
  .quote .quote-container .left {
    display: none;
  }
  .quote .quote-container .left img {
    width: 400px;
  }
  .quote .quote-container .right .title {
    text-align: center;
    font-size: 50px;
  }
  .quote .quote-container .right form {
    align-items: center;
  }
  .quote .quote-container .right form .input {
    width: 500px;
  }
  .quote .quote-container .right form .row {
    gap: 0px;
    flex-direction: column;
  }
  .quote .quote-container .right form .row input {
    width: 500px;
  }
  .quote .quote-container .right form .row button {
    text-align: center;
    width: 100%;
  }
  .quote .quote-container .right form .terms {
    display: flex;
    align-items: flex-start;
    width: 500px;
    gap: 10px;
  }
  .quote .quote-container .right form .terms input[type=checkbox] {
    width: 50px;
    height: 35px;
  }
  .quote .quote-container .right form .terms label a {
    color: #555;
    text-decoration: underline;
  }
  .footer {
    display: block;
  }
  .footer .footer-content {
    padding: 50px;
    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-768px–1024px.css.map */