<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ---------------- buttons, text and bg colors ----------------- */

.text-secondary-color {
    color: #444444;
}

.text-primary-color {
    color: #ff9999;
}

.text-gradient {
    background: linear-gradient(135deg, #ff9999, #660000);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-primary-color {
    background-color: #ff9999;
}

.btn-secondary {
    background-color: #fff;
    transition: all 0.5s ease;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #000;
}

/* ------------------------------------ banner ------------------------------ */
.realestate-banner {
    background-image: url(../images/weaving-mills/banner_img.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 80vh;
    height: 100%;
    border-bottom-right-radius: 60px;
    border-bottom-left-radius: 60px;
}

.realestate-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
    border-bottom-right-radius: 60px;
    border-bottom-left-radius: 60px;
}

.common-icon{
    width: 32px !important;
    height: 32px !important;
}

/* ------------------------------------ form-section ------------------------------ */
.mask-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}
.mask-list li::before,
.mask-list li::after{
    content: "";
    width: 3px;
    height: 10px;
    background: #ff9999;
    position: absolute;
    top: 5px;
    left: 0;
    margin-top: 2px;
}

.mask-list li::after{
    left: 5px;
    width: 10px;
}

.mask-list li span {
    display: flex;
    align-items: start;
}

.mask-list li span img {
    margin-right: 10px;
    margin-top: 5px;
}

/* ------------------------------------ why you need ------------------------------ */
.real-needs {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 60px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.real-needs .real-needs-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/uber-foods/banner/Vector.png) top right / cover no-repeat;
    opacity: 0.6;
    z-index: -1;
}

.real-needs .real-needs-img {
    position: absolute;
    right: 0;
    bottom: 0;
}

@media (min-width: 1200px) {
    .real-needs .real-needs-img {
        position: absolute;
        right: 0;
        bottom: 0;
    }
}

@media (max-width: 768px) {
    .real-needs {
        border-radius: 40px;
    }
}
/* ------------------------------------ features ------------------------------ */
.common-list li {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 15px;
  }
  
  .common-list li .img-box {
    flex-shrink: 0;
    background-color: white;
    border-radius: 50px;
    box-shadow: 0px 8px 25px 0px #cccbf973;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .common-list-two li {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .common-list-two li .img-box {
    flex-shrink: 0;
    margin-top: 5px;
  }
.feature-img{
    border-radius: 60px;
}
/* --------------------------- benefits --------------------- */
.facemask-icon {
    width: 50px;
    height: 50px;
}

.work-image-box img {
    border-radius: 30px;
}
.social-benefit-img{
    border-radius: 60px;
}

/* --------------------------- demo section --------------------- */

.real-demo-one {
    background-color: #ff9999;
    position: relative;
    z-index: 1;
    padding-top: 60px;
    overflow: hidden;
}
.demo-img {
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.demo-two{
    background: #ff9999;
    padding-top: 40px;
    padding-bottom: 30px;
    position: relative;
    z-index: 1;
}

.real-demo-one:after,
.demo-two:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/uber-foods/banner/Vector.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.7;
}

@media (max-width: 1280px) {
    .demo-img-column {
        min-height: 450px;
    }
}
@media (max-width: 450px) {
    .demo-img-column {
        min-height: 420px;
    }
}

/* ----------------------------------------------- list ----------------------------- */
.common-list-three .common-list-content {
    color: #444444;
  }
  
  .common-list-three li p {
    font-family: "lato";
  }
  
  .common-list-three li h3 {
    margin-bottom: 10px;
    font-family: "poppins-semibold";
    font-size: 18px;
  }
  
  .common-list-three li span img {
    margin-right: 7px;
    margin-top: 1px;
  }
  
  .common-list-three li span {
    display: flex;
    align-items: start;
  }
  
  .common-list-three li {
    position: relative;
    margin-bottom: 20px;
  }
  
  @media (max-width: 768px) {
    .common-list-three li {
      padding-left: 20px;
    }
  
    .common-list-three li::before {
      left: 31px;
    }
  }
  
  @media (max-width: 576px) {
    .common-list-three li {
      padding-left: 0px;
    }
  
    .common-list-three li::before {
      left: 11px;
    }
    .common-list li{
        gap: 10px;
        margin-bottom: 20px;
    }
  }

#formSection {
    scroll-margin-top: 300px;
}



/* ------------------------ faq accordion -------------- */
.faq-bg {
    background-image: url(../images/driver-monitoring/faq-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 100px;
    padding: 20px 0;
}

.accordion-section .accordion-header {
    color: #444444;
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid #dddddd;
    padding: 22px 25px;
    gap: 10px;
}

.accordion-section .accordion-header:hover,
.accordion-section .accordion-header.active {
    color: #fff;
    background-color: #ff9999;
    border: 1px solid #ff9999;
}

.accordion-section .accordion-header:hover .accordion-icon {
    filter: brightness(0) invert(1);
}

.accordion-section .accordion-item {
    margin-bottom: 20px;
}

.accordion-icon {
    flex-shrink: 0;
}

/* ------------------------ responsive ------------------------ */

@media (min-width: 1280px) {
    .demo-one-img {
        max-width: 360px;
    }
    .work-image-box {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 1279px) {
    .flex-direction-column-reverse {
        flex-direction: column-reverse;
    }
    .work-image-box {
        display: flex;
        justify-content: center;
        align-items: center;
     }
}

@media (min-width: 768px) {
    .demo-section-two {
        position: relative; 
        padding-bottom: 100px;
    }

    .demo-two-img {
        position: absolute;
        bottom: 0;
        right: 0px;
        max-height: 270px;
    }
}

@media (min-width: 1024px) {
    .demo-one-img {
        position: absolute;
        bottom: 0;
        left: -2%;
        max-height: 320px;
    }

    .demo-two-img {
        position: absolute;
        bottom: 0;
        right: 0;
        max-height: 450px;
    }
    .demo-section-one,
    .demo-section-two{
        padding-bottom: 0;
    }
    .demo-sec-content {
        padding-bottom: 60px;
    }
    .demo-sec-two-content {
        padding-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .social-benefit-img,
    .feature-img{
        border-radius: 20px;
    }

    .demo-one-img{
        max-width: 315px;
    }

}


</pre></body></html>