.hero-banner {
    position: relative;
    padding: 90px 0;
    background: #fff;
}

.zomato-banner {
    padding: 100px 0px 0;
}

.zomato-banner .intro-text h1 {
    font-size: 50px;
    line-height: 63px;
    margin-bottom: 25px;
    font-weight: 600;
}

.bg-animate .rect1 {
    position: absolute;
    top: 0;
    left: 100px;
    -webkit-animation: mover 15s infinite linear;
    animation: mover 15s infinite linear;
}

.bg-animate .rect2 {
    position: absolute;
    top: 0;
    left: -3%;
    -webkit-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.bg-animate .rect1 img,
.bg-animate .rect2 img {
    max-width: 100%;
    height: auto;
}

.banner-img-overlay img:nth-child(1) {
    position: absolute;
    top: 0;
    right: -70px;
    animation: 5s float_up_down infinite;
}

.banner-img-overlay img:nth-child(2) {
    position: absolute;
    bottom: 100px;
    right: -100px;
    animation: 5s float_down_up infinite;
}

.banner-img-overlay img:nth-child(3) {
    position: absolute;
    bottom: 180px;
    left: 0;
    animation: 5s float_up_down infinite;
}


@keyframes mover {
    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg);
        transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg);
        transform: translate(141px, 72px) rotate(72deg);
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg);
        transform: translate(83px, 122px) rotate(108deg);
    }
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.zomato-banner .intro-text h1 span {
    background: linear-gradient(30deg, #ff8200 20%, #ff2600 80%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.intro .list li i {
    background: linear-gradient(30deg, #ff8200 20%, #ff2600 80%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    margin-right: 8px;
}

.intro h3 {
    margin-bottom: 20px;
    line-height: 48px;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.intro p {
    font-size: 16px;
    color: #555;
    line-height: 28px;
    font-weight: 400;
}

.intro .list li {
    font-size: 16px;
    color: #555;
    line-height: 28px;
    font-weight: 400;
}

.sec-background {
    background-color: #ffead7;
}

.subhead {
    background: linear-gradient(30deg, #ff8200 20%, #ff2600 80%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.app-wrapper .ripple {
    position: absolute;
    width: 500px;
    height: 500px;

    left: 20%;
    top: 17%;
    opacity: 0;
    margin: -80px 0 0 -80px;
    border-radius: 100%;
    -webkit-animation: ripple 1.8s infinite;
    animation: ripple 1.8s infinite;
}

.pinkBg {
    background-color: #ed184f !important;
    background-image: linear-gradient(90deg, #fd5581, #fd8b55);
}

.app-wrapper .ripple:nth-child(2) {
    animation-delay: .3s;
    -webkit-animation-delay: .3s;
}

.app-wrapper .ripple:nth-child(3) {
    animation-delay: .6s;
    -webkit-animation-delay: .6s;
}

.app-wrapper {
    text-align: center;
    border-radius: 100px;
    z-index: 1;
    background-color: transparent !important;
    background-image: none;
}

.app-wrapper .img-box {
    position: relative;
    z-index: 1;
}

@-webkit-keyframes ripple {
    0% {
        opacity: 1;
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes ripple {
    0% {
        opacity: 1;
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.img-box img {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.tech-tab {
    border-bottom: 0;
}

.tech-tab li button {
    border-radius: 0.25rem;
    background-color: #fff !important;
    padding: 10px 20px;
    color: #000;
}

.tech-tab {
    border-bottom: 0 !important;
}

.tech-tab li {
    margin-bottom: 25PX;
}

.tech-tab li button.nav-link {
    min-width: 258px;
    border-radius: 0;
}

.tech-tab li button.nav-link.active,
.tech-tab li button.nav-link:hover {
    border: 0;
    background: linear-gradient(30deg, #ff8200 20%, #ff2600 80%);
    color: #fff;
}

.features-wrapper .box {
    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 12%);
    border-radius: 1.5rem !important;
    padding: 21px;
    transition: all .2s ease-out;
    height: 100%;
}

.icon-wrapper {
    margin: 0 auto 20px;
    text-align: center;
}

.icon-wrapper img {
    max-height: 150px;
    object-fit: contain;
}

.box:hover {
    transition: all .2s ease-out;
    will-change: transform;
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(31, 45, 61, .125) !important;
}

.content-box h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}

.content-box p {
    font-size: 16px;
    line-height: 26px;
}

.process-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto;
    background: #FFFFFF;
    -webkit-box-shadow: 0 4px 10px 0px #ff820057;
    box-shadow: 0 4px 10px 0px #ff820057;
    position: relative;
    transition: all 0.5s;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.process-wrapper p {
    margin: 0;
}

.workflow-tabs {
    justify-content: space-between;
    border: 0 !important;
}

.workflow-tabs .nav-link {
    border: 0 !important;
}

.workflow-tabs .nav-link.active,
.workflow-tabs .nav-link:hover,
.workflow-tabs .nav-link:focus {
    background: transparent !important;
    border: 0 !important;
}

.workflow-tabs .nav-link.active .process-wrapper {
    background: linear-gradient(30deg, #ff8200 20%, #ff2600 80%);
    color: #fff;
}

.workflow-tabs .nav-link.active .process-wrapper h5 {
    color: #fff;
}

.workflow-tabs .nav-link.active .process-wrapper p {
    color: #fff;
}

.step-list {
    margin-left: 20px;
}

.step-list li {
    list-style: upper-roman;
    margin: 4px 0;
}

.step-content-wrapper h4 {
    font-weight: 600;
}

.step-content-wrapper h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 26px;
}

.workflownew-tabs {
    display: block !important;
}

.fluid-2 {
    padding: 0 30px !important;
}

.workflownew-tabs li {
    color: #495057;
    background-color: #fff;
}

.workflownew-tabs li .nav-link {
    border: none !important;
    padding: 16px;
    border-right: 4px solid #e8e8e8 !important;
    border-radius: 0;
}

.workflownew-tabs li .nav-link h6 {
    margin-bottom: 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    color: #071c4d;
}

.workflownew-tabs li .nav-link h6 .list-img {
    max-width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f1f2f7;
    width: 100%;
    margin-right: 20px;
    padding: 10px;
}

.workflownew-tabs {
    border-bottom: 0 !important;
}

.workflownew-tabs li .nav-link.active,
.workflownew-tabs li:hover .nav-link {
    border-color: #ff8200 !important;
}

.workflownew-tabs li .nav-link.active h6 .list-img,
.workflownew-tabs li:hover .nav-link h6 .list-img {
    background-color: #ff8200 !important;
}

.workflownew-tabs li .nav-link.active h6 .list-img img,
.workflownew-tabs li:hover .nav-link h6 .list-img img {
    filter: brightness(0) invert(1);
}

.technology-right-content h3 {
    font-size: 20px;
    line-height: 26px;
}

.step-double-list {
    display: flex;
    flex-wrap: wrap;
}

.step-double-list li {
    flex: 0 0 50%;
    max-width: 50%;
}

.step-double-list li h6 {
    font-size: 14px;
}

.specifcation-list li .icon-wrapper {
    flex: 0 0 44px !important;
    max-width: 44px !important;
}

.specifcation-list li:hover {
    background-color: #ff8200 !important;
    color: #fff !important;
}

.specifcation-list li:hover .specifcation-content-wrapper p,
.specifcation-list li:hover .specifcation-content-wrapper h4 {
    color: #fff !important;
}

.specifcation-list li .icon-wrapper img {
    max-height: 120px !important;

}

.specifcation-content-wrapper h4 {
    font-size: 1.2rem !important;
    color: #000 !important;
}

.specifcation-content-wrapper p {
    font-size: 14px !important;
    margin: 0 !important;
}



@media (min-width: 1500px) {
    .fluid-2 {
        padding: 0 10% !important;
    }
}

@media only screen and (max-width:1199px) {
    .report-slider-img {
        margin-bottom: 25px;
    }
}

@media only screen and (max-width:991px) {
    .zommato-overlay {
        display: none;
    }

    .zomato-banner .intro-text h1 {
        font-size: 38px;
        line-height: 44px;
        margin-bottom: 11px;
    }
}


@media only screen and (max-width:767px) {
    .workflownew-tabs {
        flex-wrap: nowrap !important;
        display: flex !important;
        gap: 20px;
        white-space: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
    }

    .tech-tab {
        width: 100%;
        flex-wrap: nowrap !important;
        gap: 15px;
        overflow: auto;
    }

    .zomato-banner {
        padding: 0px;
    }

    .hero-banner {
        padding: 70px 0;
    }

    .slide-side {
        margin-top: 40px;
    }

    .bg-animate .rect1,
    .bg-animate .rect2 {
        display: none;
    }

    .section-padding {
        padding: 50px 0;
    }

    .intro h3 {
        line-height: 40px;
        font-size: 28px;
        margin-bottom: 8px;
    }

    .food-app-img {
        margin-top: 40px;
    }

    .tech-tab,
    .tech-tab li,
    .tech-tab li button {
        width: 100%;
    }

    .report-slider-img img {
        margin-top: 20px;
    }

    .specifcation-content-wrapper h4 {
        font-size: 16px;
    }

    .intro p {
        font-size: 15px;
        line-height: 20px;
    }

    .specifcation-content-wrapper {
        margin-left: 12px;
    }

    .specifcation-list li {
        padding: 16px;
    }

    .specifcation-list li .icon-wrapper {
        flex: 0 0 40px;
        max-width: 40px;
    }

    .specifcation-list {
        margin-top: 10px;
    }

    .technology-right-content h3 {
        font-size: 20px;
        line-height: 26px;
    }
}

@media only screen and (max-width:575px) {
    .intro h3 {
        line-height: 32px;
        font-size: 23px;
        margin-bottom: 8px;
    }

    .technology-right-content h3 {
        font-size: 20px;
        line-height: 26px;
    }
}