:root {
    --page-primary-bg: #F8F7F6;
    --page-secondary-bg: #090F1D;
    --text-color: #0B0C0D;
    --text-light: #ACACAC;
}

.main p {
    color: #3F4751;
}

.page-primary-bg {
    background: var(--page-primary-bg);
}

.page-secondary-bg {
    background-color: var(--page-secondary-bg);
}

.text-color {
    color: var(--text-color);
}

.text-light {
    color: var(--text-light) !important;
}

.button-primary {
    border-radius: unset;
}

.circle-icon {
    border: none;
}

.link-wrapper {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.link-wrapper path {
    fill: var(--text-color);
    transition: all 0.3s;
}

.bordered-card:hover .link-wrapper,
.bordered-card:hover path {
    color: var(--primary-color-600);
    fill: var(--primary-color-600);
    transition: all 0.3s;
}

/* Hero Section */

.banner-fluid,
.indus-intro {
    background-image: url('../images/ubereats-images/banner-intro.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

.indus-intro {
    background-image: url('../images/ubereats-images/indus-intro.webp');
}

.form-ios {
    border-radius: unset;
}

/* Service Wrap */

.bordered-card {
    padding: 30px 30px;
    border: 1px solid #00000029;
}

.img-wrap {
    width: 100%;
    max-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 26px;
}

/* Process Wrapper */

.process-intro {
    background-color: var(--page-secondary-bg);
}

.process-intro .bordered-card {
    border-color: #ffffff20;
}

.process-card {
    border-right: 1px solid #ddd;
    padding: 30px 20px;
}

.border-0 {
    border: unset;
}

/* Indus Wrapper */

.indus-intro .bordered-card {
    border: none;
    background: var(--white-color);
}

/* Counter */

.counter-intro {
    background-color: var(--page-primary-bg);
}

.counter-intro img {
    mix-blend-mode: multiply;
}

.counter-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 0 0 40px;
}

.counter-grid li {
    border-left: 4px solid var(--primary-color-600);
    padding: 0 0 0 20px;
}

.counter-text {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    line-height: 38px;
}

/* award and certification section */

.awards-wrap {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
}

.award-wrap .award-item img {
    aspect-ratio: 1/1;
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.1);
}

.awards-certification img {
    scale: 0.9;
    transition: all 0.3s ease;
}

.awards-certification img:hover {
    scale: 1;
}

/* CTA Wrapper */

.tarnsform-intro,
.cta-location {
    background-color: var(--page-primary-bg);
}

.cta-wrapper {
    background: var(--navy-bg);
    padding: 50px 90px;
    color: var(--white-color);
}

.cta-wrapper .button-primary {
    color: var(--text-color);
    background-color: var(--white-color);
}

.cta-wrapper .button-primary path {
    fill: var(--text-color);
}

.cta-wrapper .button-primary:hover path {
    fill: var(--white-color);
}

/* Blogs */

.latest-blog-block-img {
    height: 240px;
}

/* Reponsive Media Query */

@media only screen and (max-width: 1599px) {

}

@media only screen and (max-width: 1200px) {

}

@media only screen and (max-width: 992px) {

    .bordered-card {
        padding: 20px;
    }

    .process-card {
        border-bottom: 1px solid #ddd !important;
        padding: 20px 20px;
    }
    
}

@media only screen and (max-width: 767px) {

    .counter-grid {
        gap: 40px;
        flex-direction: column;
    }

    .counter-grid li {
        width: 100%;
    }

    .awards-wrap {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-wrapper {
        padding: 20px;
    }

    .latest-blog-block-img img {
        object-position: left;
    }
}
