#midd-part {
    padding-top: 82px;
}

:root {
    --container-width:1344px;
    --theme:#4169E1;
    --theme-medium:#597ff0;
    --theme-dark:#2c4fb9;
    --theme-light:#f0f4ff;
    --separator-color:#d84c69;
}
* {
    text-rendering: optimizeLegibility;
    box-sizing: border-box;
}

@keyframes pulso {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.features_bg1 {
    background-color: #f6f4ff;
}

a {
    color: #000;
    text-decoration: none;
    outline: 0;
    transition: .5s;
}

img {
    max-width: 100%;
}

.inner-banner {
    margin-top: 0;
    height: auto;
    padding: 22px 15px 28px 15px;
    background-color: #000;
}

h1.page-heading {
    font-size: 41px;
    color: #fff;
    text-align: center;
    font-weight: 700;
}

.inner-banner p {
    color: #fff;
    text-align: center;
    max-width: 1310px;
    width: 100%;
    margin: 5px auto 0 auto;
}

.common-button {
    background-color: var(--theme);
    font-size: 18px;
    text-transform: initial;
    font-weight: 600;
    padding: 12px 30px 14px 30px;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.common-button:hover {
    background-color: var(--theme-dark);
    color: #fff;
}

@keyframes ripple-white {
    0% {
        box-shadow: 0 0 0 0 rgba(65, 105, 225, 0.3), 0 0 0 10px rgba(65, 105, 225, 0.3), 0 0 0 20px rgba(65, 105, 225, 0.3)
    }

    100% {
        box-shadow: 0 0 0 10px rgba(65, 105, 225, 0.3), 0 0 0 20px rgba(65, 105, 225, 0.3), 0 0 0 30px rgba(65, 105, 225, 0)
    }
}

@keyframes ripple-wht {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3)
    }

    100% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0)
    }
}

.video-icon {
    background: var(--theme);
    height: 50px;
    width: 50px;
    top: 50%;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    display: block;
    animation: ripple-white 1s linear infinite;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    font-size: 50px;
    color: #fff;
}

p {
    font-size: 16px;
    color: #000;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 10px;
    text-align: justify;
}

p:last-child {
    margin-bottom: 0;
}

main {
    margin: 80px auto 0 auto;
}

.heading-area {
    display: block;
    width: 100%;
    margin: 0 0 15px;
}

.main-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1em;
    color: var(--theme);
    font-family: 'Exo 2';
    display: block;
    margin: -6px 0 0 0;
    text-transform: capitalize;
}

.sub-title {
    font-size: 18px;
    color: #000;
    line-height: 1.1em;
    margin-top: 5px;
    display: block;
}

.heading-area.center>* {
    display: block;
    text-align: center;
}

.heading-area.white>* {
    color: #fff;
}

.heading-area>p {
    margin: 5px 0 0 0;
}

/* -------------------------- */
.banner-section {
    width: 100%;
    display: block;
    background:  linear-gradient(to bottom, #ffffff 0%,#e1e8fb 100%);
    position: relative;
    padding: 40px 0;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.banner-section-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0px 15px;
    box-sizing: border-box;
    z-index: 1;
    position: relative;
}
.banner-section .head-style .element {
    transform-origin: 50% 50%;
    transform-box: fill-box;
    animation: rotateBox 3s linear infinite;
    position: absolute;
    width: 20px;
    height: 20px;
    bottom: -22px;
    left: 50%;
    z-index: 999999;
    background: var(--theme);
    margin-left: -10px;
}
@keyframes rotateBox {
    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}
.banner-section p {
    margin: 0 0 5px;
}
.banner-section img {
    max-width: 100%;
}
.banner-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
.banner-btn.center{
    justify-content: center;
}
.button-btn {
    width: 100%;
    display: flex;
    padding-top: 15px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px ;
}
.banner-btn .video-icon {
    display: inline-block;
    position: relative;
    top: 0;
    right: -20px;
    transform: none;
    z-index: 999;
}
.banner-btn .video-icon a {
    width: 30px;
    height: 30px;
    min-height: 30px;
    margin: 0;
    line-height: normal;
    padding: 0px;
}
.banner-description-top {
    width: 100%;
    position: relative;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.banner-description-top .left-caption {
    width: calc(100% - 515px);
    width: -webkit-calc(100% - 515px);
    width: -moz-calc(100% - 515px);
    width: -ms-calc(100% - 515px);
    width: -o-calc(100% - 515px);
    position: relative;
    text-align: left;
}
.banner-description-top .right-caption {
    width: 450px;
}
.banner-description-top .left-caption .heading {
    font-size: 24.66px;
    font-weight: 600;
    line-height: normal;
    color: var(--separator-color);
    position: relative;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
}
.banner-description-top .left-caption span {
    font-size: 54px;
    font-weight: 800;
    line-height: 1em;
    color: var(--theme);
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    margin-right: 13px;
    margin: 0;
}
.king-icon {
    position: absolute;
    top: -30px;
    right: -20px;
}
.banner-description-top .left-caption .head-style2 {
    font-size: 18px;
    color: #000;
    line-height: 28px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}
.banner-description-top .left-caption .head-style2 span {
    color: #009da5;
    font-size: 17px;
    line-height: normal;
    font-weight: 600;
    display: block;
    text-transform: initial;
    margin: 10px 0;
}
.banner-btn {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-right: 0 !important;
}
.banner-btn a,
.banner-btn button {
    background: var(--theme);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 15px;
    border-radius: 4px;
    width: auto;
    text-transform: uppercase;
    line-height: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 0;
    min-height: 50px;
    outline: none;
    border: none;
    font-family: 'Exo 2';
}
.banner-btn .blinker {
    vertical-align: middle;
    display: inline-block;
    width: 22px;
    height: 22px;
    font-size: 22px;
    line-height: 22px;
}
.banner-btn .blinker img {
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
}
@keyframes buttonanim {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
.banner-btn a:after,
.banner-btn button:after {
    content: '';
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: var(--theme-dark);
    z-index: -1;
    border-radius: 0;
    transition: all 0.5s ease 0s;
    animation: buttonanim 2s infinite;
    -webkit-animation: buttonanim 2s infinite;
}
@keyframes buttonanim {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
.banner-btn .buy-now,
.banner-btn .buy-now {
    background: #ffd615;
    color: #000;
    font-weight: 600;
}
.banner-btn .buy-now:after {
    background-color: #e4ba00;
}
.banner-btn .demovideo-btn {
    background: #0fb158;
    color: #fff;
}
.banner-btn .demovideo-btn:after {
    background-color: #0a8d45;
}
.banner-btn .introvideo-btn {
    background-color: #f09b1d;
    color: #fff;
    gap: 10px;
}
.banner-btn .introvideo-btn:after {
    background-color: #e48d0c;
}
.banner-btn .view-demo img {
    width: 30px;
}
/* -------------------------- */
.blocks-section {
    width: 100%;
}

.blocks-section-inner {
    max-width: 1340px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 15px
}

.blocks-row_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 15px;
    margin-bottom: 15px;
}

.blocks-row-flow {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    padding: 25px;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.blocks-row-flow:last-child {
    margin-bottom: 0;
}

.blocks-row-flow:first-child {
    background: linear-gradient(to top,
            rgba(253, 236, 255, 1) 0%,
            rgba(254, 246, 255, 1) 50%,
            rgba(254, 246, 255, 0.2) 100%);

}

.blocks-row-flow:nth-child(2) {
    background: linear-gradient(to top,
            rgba(228, 247, 255, 1) 0%,
            rgba(228, 247, 255, 0.5) 50%,
            rgba(228, 247, 255, 0.2) 100%);

}

.blocks-row-flow ._VIDEO_ {
    width: 25px;
    height: 25px;
    line-height: 25px;
    display: inline-block;
    margin-top: 0;
    margin-left: 0;
    vertical-align: baseline;
    line-height: normal;
    height: auto;
    font-size: 25px;
    color: var(--theme);
}

.blocks-row-flow img {
    max-width: 327px;
    width: 100%;
}

.blocks-row-flow .colum-1 {
    color: #000;
}

.blocks-row-flow.reverse .function-caption {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.function-caption p:last-child {
    margin-bottom: 0;
}

.blocks-row-flow .colum-2 {
    width: 100%;
    text-align: right;
    margin-right: -35px;
    margin-bottom: -25px;
}

.blocks-row-flow .delivery-man img {
    width: 140px;
}

.full-row-box .blocks-row-flow:nth-child(1) {
    background: linear-gradient(to top,
            rgba(231, 229, 255, 1) 0%,
            rgba(231, 229, 255, 1) 50%,
            rgba(231, 229, 255, 0.2) 100%);

}

.full-row-box .blocks-row-flow:nth-child(2) {
    background: linear-gradient(to top,
            rgba(255, 248, 225, 1) 0%,
            rgba(255, 248, 225, 0.5) 50%,
            rgba(255, 255, 255, 1) 100%);
}

.full-row-box .blocks-row-flow .colum-2 {
    width: 20%;
    margin: 0;
}

.full-row-box .blocks-row-flow .colum-1 {
    width: 80%;
}

.full-row-box .blocks-row-flow {
    flex-direction: initial;
}

.full-row-box .blocks-row-flow .images-caption {
    position: relative;
    z-index: 0;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-row-box .blocks-row-flow img {
    max-width: 200px;
    width: 100%;
}

.full-row-box .blocks-row-flow.reverse {
    flex-direction: row-reverse;
}

.full-row-box {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}

/*************************************/
/******************************************/
.common-section img.new-tag {
    position: relative;
    top: auto;
    display: inline-block;
    vertical-align: middle;
    margin-top: -12px;
}

.common-section .button-btn {
    justify-content: flex-start;
    padding: 0;
}

.common-section-inner {
    margin: 0 auto;
    max-width: 1310px;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.common-section-left {
    width: 30%;
}

.common-section-right {
    width: 68%;
}

/*************************************/
.more-features-section {
    padding: 40px 0;
    background:linear-gradient(to top, var(--theme-light) 0%,var(--theme-light) 100%);
}

.more-features-section-inner {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1310px;
    position: relative;
    text-align: center
}

.more-features-section ul {
    margin: 0px;
    padding: 0 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    gap: 15px;
}

.more-features-section ul li:last-child {
    grid-column: span 3;
}

.why-choose-us-box {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 15px;
    transition: .5s;
    border: 1px solid #ececec;
    min-height: 100%;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .07);
    border-radius: 12px;
}

.why-choose-us-title h2 {
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 14px;
    transition: .5s;
    line-height: 33px;
    background: linear-gradient(to right, var(--theme), var(--theme), 50%, #373737 50%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% 100%;
    background-position: 100%;
    font-weight: 600;
}

.why-choose-us-icon2 {
    float: left;
    margin-right: 8px;
}

.why-choose-us-icon2 i {
    display: inline-block;
    font-size: 15px;
    margin-top: 10px;
}

.why-choose-us-title2 span {
    font-size: 16px;
    font-weight: 800;
    line-height: 35px;
    color: #232434;
}

.why-choose-us-box:hover:before {
    background: var(--theme-dark);
}

.why-choose-us-icon {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0 0 15px;
    align-items: center;
}

.why-choose-us-icon i {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.why-choose-us-box strong {
    font-size: 18px;
    text-transform: uppercase;
    color: #000;
    line-height: 1.2em;
    width: calc(100% - 80px);
    width: -o-calc(100% - 80px);
    width: -ms-calc(100% - 80px);
    width: -moz-calc(100% - 80px);
    width: -webkit-calc(100% - 80px);
    display: block;
    text-align: justify;
}


/* ------------------------------- */
.service-slider{
    padding: 40px 0;
}
.slick-arrow {
    position: absolute;
    top: 20px;
    z-index: 11;
    cursor: pointer;
}

.service-slider .slick-prev.slick-arrow {
    left: 50%;
    transform: translateX(-100%);
    margin-left: -10px;
}

.service-slider .slick-next.slick-arrow {
    right: 50%;
    transform: translateX(100%);
    margin-right: -10px;
}

.slick-arrow.slick-disabled {
    filter: grayscale(1);
}

.service_inner .banner-btn a.new_video span small {
    display: block;
    line-height: normal;
    font-size: 13px;
    color: #000;
}

.slick-track {
    display: flex !important;
    flex-wrap: wrap;
}

.service_inner .banner-btn a.new_video span {
    font-size: 16px;
    text-transform: none;
    display: inline-block;
    color: #44ac00;
    vertical-align: middle;
    margin: -5px 0 0 0;
    text-align: center;
}

.service_inner .banner-btn a.new_video {
    border-color: #44ac00;
    width: auto;
    min-width: auto;
    min-width: 222px;
}

.service_inner .banner-btn a.new_video:hover {
    border-color: #44ac00;
    color: #fff;
    background-color: #eee;
}

.service_inner .banner-btn a.new_video.haveyellow {
    border-color: #ffd615;
}

.service_inner .banner-btn a.new_video.haveyellow span {
    color: #e7be00;
}

.gojek-services .slick-initialized .slick-slide {
    height: inherit;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.services-description-img {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
}

.service_inner {
    width: 100%;
    position: relative;
    display: table;
    padding: 0;
    margin: 0px auto;
}

.service_inner {
    width: 1360px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0px 15px;
    margin: 0 auto;
}

.service_inner .gojek-services {
    width: 100%;
}

button.nav-control {
    border: none;
    background-color: #000;
    display: flex !important;
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    align-items: center;
    text-align: center;
    top: 40%;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    transform: translate(-50%, -50%);
    box-shadow: 0px 80px 82px 0px rgba(80, 80, 80, 0.06);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

button.nav-control.right-arrow {
    right: -22px;
}

button.nav-control.left-arrow {
    left: 22px;
}

button.nav-control.left-arrow i {
    transform: rotate(-180deg);
}

button.nav-control:hover {
    background: var(--theme);
    color: #fff;
}

.gojek-services-right h2,
.gojek-services-right h3 {
    font-size: 30px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    color: #000;
}

.service_inner .services-description {
    position: relative;
    display: block;
    padding: 10px 5px 0 5px;
}

.service_inner .services-description strong {
    font-size: 18px;
    color: #000;
    font-weight: 600;
    line-height: 1em;
    display: block;
    margin: 0 0 10px;
    text-transform: capitalize;
}

.service_inner .services-description h2.biggersize,
.service_inner .services-description strong.biggersize {
    font-size: 67px;
}

.service_inner .slick-slide img {
    display: inline-block;
}

.service_inner .services-description.maids h2 small {
    display: inline;
    font-size: 19px;
}

.service_inner .services-description h2.biggersize small,
.service_inner .services-description strong.biggersize small {
    display: inline;
    font-size: 19px;
    margin-left: -10px;
    color: #d66d23;
}

.service_inner .services-description h2.biggersize,
.service_inner .services-description strong.biggersize {
    font-size: 71px;
    position: relative;
    top: 9px;
    font-weight: 500;
}

.other-services-item-inner {
    border-radius: 8px;
    overflow: hidden;
    min-height: 100%;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px;
}

.service-slider {
    padding: 40px 0 40px 0;
}

.gojek-services .slick-slide {
    margin: 0 7px;
    box-shadow: 0px 0 10px 0px rgba(80, 80, 80, 0.06);
}

.gojek-services .slick-list {
    margin: 0 -7px;
}

.gradient1 {
    background: linear-gradient(to bottom, #F2D6C6 0%, rgba(193, 255, 225, 0) 100%);
}

.gradient2 {
    background: linear-gradient(to bottom, #FBE7B6 0%, rgba(193, 255, 225, 0) 100%);
}

.gradient3 {
    background: linear-gradient(to bottom, #5EDAFE 0%, rgba(252, 252, 252, 0) 87%);
}

.gradient4 {
    background: linear-gradient(to bottom, #C1FFE1 0%, rgba(193, 255, 225, 0) 100%);
}

/*************************************/
.intro-banner-responsive {
    display: none;
}

.intro-banner {
    color: #fff;
    background-color: #404040;
    position: relative;
    overflow: hidden
}

.intro-banner:before {
    content: '';
    position: absolute;
    left: 0;
    height: 100%;
    width: 42%;
    background-color: var(--theme);
}

.intro-banner-inner {
    max-width: 1315px;
    padding: 40px 15px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.intro-banner .normal-title {
    font-size: 80px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 0;
    color: #000;
    position: relative;
}

.intro-banner .intro-banner-left h4,
.intro-banner .intro-banner-left b {
    font-size: 103px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 72px;
    margin-top: -20px
}

.intro-banner .intro-banner-left h4 .hl1,
.intro-banner .intro-banner-left b .hl1 {
    font-size: 106px;
    font-weight: 700;
    display: inline-block;
    white-space: nowrap;
    padding-left: 54px;
}

.intro-banner .intro-banner-left h4 .hl2,
.intro-banner .intro-banner-left b .hl2 {
    font-size: 70px;
    font-weight: 700;
    display: block;
    white-space: nowrap;
    padding-left: 13px;
    line-height: normal
}

.intro-banner .intro-banner-left h4 .hl3,
.intro-banner .intro-banner-left b .hl3 {
    font-size: 86px;
    font-weight: 700;
    display: block;
    white-space: nowrap;
    padding-left: 62px;
    margin-top: -25px;
    z-index: -1;
    position: relative;
    color: #ccc;
}

.intro-banner .sub-sent {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 30px;
    display: block;
    white-space: pre-line;
    color: #fff;
    line-height: normal;
    position: relative;
}

.intro-banner-right {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    width: 58%;
}

.intro-banner .coll {
    padding: 0 15px;
    text-align: center;
    width: 50%;
}

.intro-banner-right ul li {
    text-align: left;
    list-style: none;
    padding-left: 16px;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 18px;
    position: relative
}

.intro-banner-right h4,
.intro-banner-right b {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}

.intro-banner-right p {
    font-size: 17px;
    margin-top: 2px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
}

.intro-banner-right ul li:before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--theme);
    position: absolute;
    left: 0;
    top: 7px;
    border-radius: 50%
}

.intro-banner-right ul li:last-child {
    margin-bottom: 0
}

.intro-banner .coll:last-child {
    border-left: 1px solid #5c5c5c
}

.intro-banner-right p span {
    color: var(--theme);
    font-weight: 500
}

.intro-banner .clone-image- {
    position: absolute;
    bottom: -21px;
    left: 40.5%;
    z-index: 1
}

.intro-banner-responsive {
    display: none;
    max-width: 100%
}

.intro-banner-left a {
    background: var(--theme);
    height: 50px;
    width: 50px;
    top: 60px;
    right: 20px;
    margin: auto;
    text-align: center;
    position: relative;
    display: inline-block;
    animation: ripple-wht 1s linear infinite;
    transition: .5s;
    border-radius: 50%;
}

.intro-banner-left a i {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 0;
    top: 0;
    line-height: normal;
    display: flex;
}

/*************************************/
.video-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.video-block {
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
    margin: 0 auto;
    max-width: 100%;
}

.video-block img {
    max-width: 100%;
    image-rendering: -webkit-optimize-contrast;
    vertical-align: top;
}

.video-left {
    z-index: 3;
}

.flow-video-section .video-icon a {
    animation: ripple-orange 1s linear infinite;
    background-color: #fff;
}

.useof-section .video-icon a {
    animation: ripple-orange 1s linear infinite;
    background-color: #fff;
}

.useof-section-inner {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1330px;
    position: relative;
    text-align: center
}

.useof-section strong {
    color: #696969;
    font-size: 17px;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    justify-content: center;
    margin: 15px 0 15px 0;
    display: block
}

.useof-section {
    padding: 50px 0;
    position: relative;
    z-index: 0;
}

.useof-section .video-block>img {
    border: 3px solid var(--theme);
    width: 600px;
}

.useof-section-left {
    width: calc(50% - 62px);
    width: -o-calc(50% - 62px);
    width: -ms-calc(50% - 62px);
    width: -moz-calc(50% - 62px);
    width: -webkit-calc(50% - 62px);
    display: inline-block;
    position: relative;
    z-index: 1
}

.useof-section-right {
    width: calc(50% - 62px);
    width: -o-calc(50% - 62px);
    width: -ms-calc(50% - 62px);
    width: -moz-calc(50% - 62px);
    width: -webkit-calc(50% - 62px);
    display: inline-block;
    position: relative;
    z-index: 1
}

.useof-section-left:before {
    height: 140px;
    width: 47vw;
    right: 0;
    content: '';
    position: absolute;
    top: -28px;
    background-color: #ffd615;
    z-index: -1
}

.useof-section-right:after {
    height: 140px;
    width: 47vw;
    left: 0;
    content: '';
    position: absolute;
    bottom: -28px;
    background-color: #ffd615;
    z-index: -1
}

/*************************************/
.app-store-screen {
    padding: 40px 0;
}

.app-store-screen-inner {
    max-width: 1310px;
    margin: 0 auto;
    display: block;
    padding: 0 15px;
}

.app-screen-flow {
    margin-top: 25px;
    position: relative;
}

.app-store-screen .slick-slide img {
    max-width: 101%;
    transition: .5s;
    opacity: .7;
    border-radius: 10px;
    display: block;
    transform: scale(.8);
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
}

.app-store-screen .slick-slide.slick-current.slick-active.slick-center {
    margin: 0px;
}

.app-store-screen .slick-slide.slick-current.slick-active.slick-center img {
    opacity: 1;
    image-rendering: -webkit-optimize-contrast;
    transform: scale(1);
    filter: grayscale(0);
}

.outer-cover-mobile {
    position: absolute;
    width: 295px;
    left: 0px;
    right: 0px;
    z-index: 9;
    top: -17px;
    margin: auto;
    pointer-events: none;
}

.app-screen-flow .action {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0 30px;
    position: relative;
    z-index: 0;
    padding: 0 50px;
}

.app-screen-flow .action a {
    width: 50px;
    height: 50px;
    padding: 8px;
    border: solid 2px #bfbfbf;
    border-radius: 100%;
    background: #fff;
    position: relative;
}

.app-screen-flow .action a::after {
    content: attr(data-name);
    display: block;
    margin-top: 20px;
    width: auto;
    color: #060606;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
}

.app-screen-flow .action a.active {
    border: solid 2px var(--theme);
    background: #cafbff;
}

.app-screen-flow .action a.active::after {
    color: var(--theme);
}

.app-screen-flow .action a img {
    max-width: 100%;
}

.app-screen-flow .action:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #bfbfbf;
    z-index: -1;
}

/******************************************/
.flex {
    display: flex;
    align-items: center;
}

.free-text-section-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    box-sizing: border-box;
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.free-text-section .left-part,
.free-text-section .right-part {
    width: calc(50% - 15px);
    width: -o-calc(50% - 15px);
    width: -ms-calc(50% - 15px);
    width: -moz-calc(50% - 15px);
    width: -webkit-calc(50% - 15px);
}

.left-part-caption,
.right-part-caption {
    position: relative;
    width: 100%;
    display: block;
}

.free-text-section .right-part .right-part-img {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    position: relative;
}

.free-text-section .left-part .left-part-img {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.free-text-section .left-part .left-part-img img,
.free-text-section .right-part .right-part-img img {
    width: 38vw;
}

.free-text-section .right-part .right-part-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    position: relative;
}

.free-text-section .left-part .left-part-content {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

/* -------------------------------------------- */
.white-bg {
    background: #fff;
}

.free-text-section.latest-leatures {
    background: #fff;
    background-image: -moz-linear-gradient(90deg, rgb(235, 246, 246) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(235, 246, 246) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(235, 246, 246) 0%, rgb(255, 255, 255) 100%);
    padding-top: 0;
}

.free-text-section.seven-videos {
    background-color: #fff;
}

.video-row-flow {
    width: 100%;
    display: block;
    position: relative;
}

.video-row-flow ul {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.video-row-flow ul li::after {
    display: none;
}

.video-row-flow ul li p {
    text-align: center;
}

.video-row-caption {
    text-align: center;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
    padding: 15px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    position: relative;
    z-index: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.video-row-caption-img>img {
    margin: 0 0 10px;
    width: 45px;
    height: 45px;
    image-rendering: -webkit-optimize-contrast;
}

img {
    border: none;
    outline: 0;
    max-width: 100%;
}

.video-row-flow ul li .video-row-caption .video-icon {
    right: 5px;
    position: absolute;
    left: auto;
    animation: none;
    background: none;
    width: auto;
    height: auto;
    top: 5px;
    transform: none;
}

.video-row-flow ul li .video-row-caption .video-icon a {
    height: 20px;
    width: 20px;
    animation: none;
    -webkit-animation: none;
    background-color: transparent;
    transform: none;
    display: inline-block;
}

.video-row-caption-text {
    margin: 0;
    z-index: 1;
    bottom: 10px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}

.video-row-caption-text h4,
.video-row-caption-text b {
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 600;
    display: block;
    color: #000;
}

.video-row-caption-text p {
    font-size: 14px;
    line-height: 17px;
    font-weight: 300;
    margin: 0 0 10px 0;
}

.video-row-caption-text p:last-child {
    margin-bottom: 0;
}

.video-row-flow ul li:last-child .video-row-caption {
    justify-content: center;
}

.video-row-flow ul li .video-row-caption .icon-play-button {
    top: 5px;
    right: 5px;
    position: absolute;
    margin: 0;
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 25px;
    color: var(--theme);
}

/*******************************************/
.parking-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}

.parking-left {
    width: 36%;
}

.parking-right {
    width: 62%;
}

.parking strong {
    display: block;
    color: #000;
    font-family: 'Exo 2';
    font-size: 16px;
}

.parking p ._VIDEO_ {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: top;
    margin-top: 7px;
}

.parking p ._VIDEO_ img {
    width: 20px;
    vertical-align: top;
}

.common-btn,
.more-reviews-btn {
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin-bottom: 0;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    padding: 10px 25px;
    transition: all 0.5s ease 0s;
    background-color: var(--theme);
    min-height: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
}

.more-reviews-btn:hover {
    background-color: var(--theme-dark);
    color: #fff;
}

.common-btn:hover {
    color: #fff;
}

.common-btn:after {
    content: '';
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: var(--theme-dark);
    z-index: -1;
    border-radius: 0;
    transition: all 0.5s ease 0s;
}

.common-btn:hover::after {
    background-color: var(--theme-dark);
    width: 100%
}

/*******************************************/
.components-section {
    position: relative;
    padding: 40px 0px 40px;
}

.components-inner {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1310px;
}

.components-section-middle {
    width: 434px;
    text-align: center;
    background-image: url(../png/gojek_bg.png);
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 100%;
}

.components-section-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.components-section-left {
    padding-top: 6px;
    width: calc(50% - 220px);
    width: -o-calc(50% - 220px);
    width: -moz-calc(50% - 220px);
    width: -webkit-calc(50% - 220px);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.component-column.expand-area {
    height: calc(100% - 68px);
    height: -o-calc(100% - 68px);
    height: -moz-calc(100% - 68px);
    height: -webkit-calc(100% - 68px);
}

.component-column.expand-area .components-item {
    display: flex;
    align-items: center;
}

.components-section-right {
    padding-top: 6px;
    width: calc(50% - 220px);
    width: -o-calc(50% - 220px);
    width: -moz-calc(50% - 220px);
    width: -webkit-calc(50% - 220px);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.components-item {
    padding: 15px 24px 15px 18px;
    background-color: #fff;
    box-shadow: 0px 0px 4px rgb(0 0 0 / 15%);
    border-radius: 10px;
    position: relative;
    font-size: 14px;
    cursor: pointer;
}

.component-column {
    display: grid;
    gap: 15px;
}

.components-item span {
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.components-item:hover span {
    color: var(--theme);
}

.components-section-right .components-item {
    padding: 15px 18px 15px 24px;
}

.components-item:hover a {
    animation: blink 2s infinite;
    -webkit-animation: blink 2s infinite
}

.components-item i {
    width: 28px;
    height: 28px;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
    background-color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
    font-size: 28px;
    line-height: 28px;
    color: var(--theme);
}

.components-section-right .components-item i {
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    right: auto;
    left: 0;
}

.productname {
    font-size: 28px;
    color: var(--theme);
    text-align: center;
    display: block;
}

.productname span {
    font-size: 16px;
    display: block;
    color: #000;
    min-height: 19px;
}

.slogan-caption strong {
    font-size: 26px;
    color: var(--theme);
    text-align: center;
    display: block;
}

.slogan-caption span {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.slogan-caption {
    margin-top: 12px;
}

.services-banner {
    width: 100%;
    padding: 40px 0 40px 0px;
    display: flex;
}

.services-banner.open~.flutter-tech {
    padding: 0 0 30px 0;
}

.services-banner.revert .services-banner-design {
    display: flex;
    flex-wrap: wrap;
    direction: rtl;
    background-position: left 0;
}

.services-banner-inner {
    width: var(--container-width);
    margin: 0 auto;
    display: flex;
    padding: 0 15px;
    max-width: 100%;
}

.services-banner-design {
    width: 100%;
    padding: 12px 15px 15px 16px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    background-repeat: no-repeat;
    background-position: right 0;
    border: 1px solid #ddd;
}

.services-banner.technology .services-banner-design {
    background-size: 343px;
}

.services-banner.bsr .services-banner-design {
    background-size: 384px;
}

.services-banner-design.noimg {
    background-image: none;
    padding: 40px 10px;
}

.services-banner-design.noimg .design-caption {
    width: 100%;
    display: grid;
    grid-template-columns: 3fr auto;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.services-banner-design.noimg .btn-register {
    display: inline-block;
    margin: 0;
    margin-top: 10px;
}

.services-banner-design .design-caption {
    width: calc(100% - 440px);
    width: -o-calc(100% - 440px);
    width: -moz-calc(100% - 440px);
    width: -webkit-calc(100% - 440px);
    display: flex;
    flex-wrap: wrap;
}

.services-banner-design .design-caption.row-reverse {
    grid-template-columns: 1fr 2.3fr;
}

.services-banner-design .design-caption .design_right img {
    vertical-align: top;
}

.services-banner-design .design-caption ._VIDEO_ {
    width: 25px;
    height: 25px;
    display: inline-block;
}

.pbt-15 {
    padding: 15px 0 18px 0;
}

.pl_0 {
    padding-left: 0 !important;
}

.services-banner-design h4,
.services-banner-design .design-caption>strong,
.services-banner-design .design-caption .small-banner-title {
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    margin: 0px 0 0;
    text-transform: capitalize;
    display: block;
    color: #000;
}

.services-banner-design h3,
.services-banner-design b {
    font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 22px;
    letter-spacing: normal;
    margin: 5px 0 10px 0px;
    display: block;
    color: #000;
}

.services-banner.indrive_banner p {
    color: #fff;
}

.services-banner.indrive_banner p b {
    display: inline;
    margin: 0;
    font-weight: bold;
}

.btn-register {
    border-radius: 4px;
    border: solid 1px var(--theme);
    background-color: var(--theme);
    font-weight: 600;
    display: inline-block;
    color: #fff;
    vertical-align: super;
    position: relative;
    font-size: 18px;
    padding: 13px 20px 13px 47px;
    cursor: pointer;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.btn-register:hover {
    background: var(--theme-dark);
    color: #fff;
}

.btn-register::before {
    box-shadow: 0 0 0 rgba(255, 255, 255, .4);
    transition: .5s;
    content: "";
    width: 15px;
    height: 15px;
    border: 3px solid #fff;
    position: absolute;
    left: 15px;
    border-radius: 50%;
    top: 0px;
    bottom: 0px;
    margin: auto;
    animation: pulso 2s infinite !important;
}
.fetures__area{
    background-color: #f8f8f8;
    padding: 20px 0;
}
.fetures__area > *{
    padding: 20px 0;
}
/* ------------------ RESPONISVE CSS --------------------- */
@media screen and (-webkit-min-device-pixel-ratio: 1.25) and (max-width: 1680px) {
    .gojek-services-left {
        width: calc(100% - 455px);
        width: -o-calc(100% - 455px);
        width: -moz-calc(100% - 455px);
        width: -webkit-calc(100% - 455px);
    }

    .gojek-services-right {
        width: 435px;
        padding: 0 0 0 60px;
    }
}

@media screen and (max-width: 1301px) {
    .why-choose-us-number {
        width: calc(100% - 110px);
        width: -o-calc(100% - 110px);
        width: -ms-calc(100% - 110px);
        width: -moz-calc(100% - 110px);
        width: -webkit-calc(100% - 110px);
    }

    .app-store-screen .slick-slide img {
        max-width: 103%;
        position: relative;
        right: 2px;
    }
}

@media screen and (max-width: 1279px) {
    .intro-banner-responsive {
        display: block;
    }

    .intro-banner {
        display: none;
    }
}

@media (max-width:1199px) {
    .parking-right {
        width: 100%;
        order: 2;
    }

    .parking-left {
        width: 100%;
        text-align: center;
        order: 1;
        margin: 0 0 25px;
    }

    .parking .button-block {
        order: 3;
    }

    h1.page-heading {
        font-size: 35px;
        line-height: 1em;
    }

    .main-title {
        font-size: 35px;
    }

    .outer-cover-mobile {
        width: 23.4%;
    }

    .app-screen-flow .action a::after {
        white-space: break-spaces;
        text-align: center;
        font-size: 15px;
    }

    .app-screen-flow {
        margin-bottom: 50px;
    }

    .app-screen-flow .action {
        padding: 0 0px;
        margin: 2% 0 30px;
    }

    .services-banner-design .design-caption {
        width: calc(100% - 420px);
        width: -o-calc(100% - 420px);
        width: -moz-calc(100% - 420px);
        width: -webkit-calc(100% - 420px);
    }

    .services-banner.bsr .services-banner-design {
        background-size: 47%;
    }
}

@media screen and (max-width: 1024px) {
    .blocks-row-flow .colum-2 {
        display: none;
    }

    .blocks-row-flow .colum-1 {
        width: 100%;
    }
    .banner-description-top .left-caption span {
        font-size: 40px;
        }
}

@media screen and (max-width: 991px) {
    .banner-description-top .left-caption {
        width: 100%;
    }
    .banner-description-top .right-caption {
        width: 100%;
        text-align: center;
    }
    .banner-description-top {
        flex-direction: column-reverse;
        row-gap: 20px;
    }
    .blocks-row-flow .function-caption .head-style {
        font-size: 24px;
    }

    .gojek-services-left {
        width: 100%;
        display: block;
    }

    .gojek-services-right {
        width: auto;
        padding: 0;
        background-color: transparent;
        margin-top: 20px;
    }

    .gojek-services-right:after {
        display: none;
    }

    .other-services {
        width: 100%;
    }

    /**********************************/
    .more-features-section ul {
        grid-template-columns: 1fr 1fr;
    }

    .more-features-section ul li:last-child {
        grid-column: span 2;
    }

    /**********************************/
    .free-text-section .left-part {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .single-video .right-part .text-caption {
        margin: 0;
    }

    .free-text-section .right-part {
        width: 100%;
    }

    .free-text-section p:last-child {
        margin-bottom: 0;
    }

    /**********************************/
    .intro-banner-left {
        width: 100%;
        height: 100vw;
        border-radius: 0;
    }

    .intro-banner-right {
        width: 100%;
    }

    .intro-banner-right-inner {
        border-radius: 0;
        padding: 20px;
    }

    /**********************************/
    ul.services-tabs {
        display: none;
    }

    .services-tabs_container {
        display: block;
        margin: 0 auto;
        width: 100%;
        border-top: none;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
    }

    .services-tabs_content {
        padding: 20px 0 0 0;
        border-left: none;
        border-radius: 0;
        border: solid #dedede 1px;
        border-top: 0;
        margin-top: 0;
        margin-bottom: 15px;
    }

    .services-tabs_content ul.havefive li {
        width: 33.33%;
    }

    .tab_drawer_heading {
        color: #585858;
        margin: 10px 0px;
        padding: 10px 20px;
        display: block;
        cursor: pointer;
        text-align: left;
        box-shadow: 0 0 0 1px #dedede inset;
        border-radius: 6px;
        margin: 0 0 15px;
        font-size: 18px;
        font-weight: 600;
    }

    .tab_drawer_heading:hover {
        background: var(--theme);
        color: white;
    }

    .d_active {
        background: var(--theme);
        color: #fff;
        margin: 0;
        border-radius: 10px 10px 0px 0px;
        border: solid 1px var(--theme);
        box-shadow: none;
    }

    /**********************************/
    .common-section-left {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .common-section-right {
        width: 100%;
    }

    /**********************************/
    h1.page-heading {
        font-size: 35px;
    }

    /**********************************/
    .video-row-flow ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .blocks-row_grid {
        grid-template-columns: 1fr;
    }

    .full-row-box .blocks-row-flow .colum-1 {
        width: 100%;
    }

    /**********************************/
    .heading-area .main-title {
        font-size: 32px;
        line-height: 1em;
    }

    /**********************************/
    .download-demo-section~.components-section {
        background-color: #fff;
    }

    .components-section~.flow-video-section {
        background-color: #e9fdff;
        padding: 15px 0 48px 0;
    }

    .testimonial-section {
        padding: 40px 0 40px;
    }

    .components-section-middle {
        text-align: center;
        width: 100%;
        background-image: none;
    }

    /*********************************************/
    .components-section-left {
        width: 100%;
        padding-right: 15px;
        order: 1;
    }

    .components-section-middle {
        order: 2;
    }

    .components-section-right {
        width: 100%;
        padding-left: 15px;
        padding-top: 0;
        order: 3;
    }

    .components-section-row {
        flex-direction: column;
        align-items: center;
        display: flex;
        gap: 20px;
    }

    /*********************************************/
    .services-banner-design .design-caption {
        width: 100%;
    }

    .services-banner.bsr .services-banner-design {
        background-image: none !important;
    }

    /*********************************************/
}

@media screen and (max-width: 767px) {
    .more-features-section ul {
        grid-template-columns: 100%;
    }

    .more-features-section ul li:last-child {
        grid-column: span 1;
    }

    /********************************/
    .useof-section-left:before,
    .useof-section-right:after {
        display: none;
    }

    .useof-section .video-main {
        flex-wrap: wrap;
    }

    /************************************/
    .services-tabs_content ul li,
    .services-tabs_content ul.havefive li,
    .unlimited-services.fortechnology .services-tabs_content ul li {
        width: 50%;
    }

    .services-tabs_content ul li b img,
    .unlimited-services.fortechnology .services-tabs_content ul li b img {
        height: 60px;
    }

    .services-tabs_content {
        padding: 0;
    }

    h1.page-heading {
        font-size: 28px;
    }

    .common-btn,
    .more-reviews-btn {
        font-size: 18px;
        padding: 10px 20px;
        min-height: 50px;
    }
}

@media screen and (max-width: 630px) {
    p {
        font-size: 15px;
    }

    .heading-area .main-title {
        font-size: 26px;
        line-height: 1em;
    }

    .sub-title {
        font-size: 17px;
    }
    .banner-description-top .left-caption span {
        font-size: 30px;
    }
    .why-choose-us-number h2,
    .why-choose-us-number h4,
    .why-choose-us-number strong {
        font-size: 17px;
        line-height: 1em;
    }

    .video-row-flow ul {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .video-row-flow ul li {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .free-text-section {
        padding: 40px 0;
    }

    .common-button {
        font-size: 16px;
        padding: 10px 15px 10px 15px;
    }

    .service_inner {
        padding: 0px 15px;
    }

    .blocks-row-flow {
        padding: 15px;
    }

    .video-main {
        grid-template-columns: 1fr;
    }
    button.nav-control {
    transform: translate(-50%, -50%) scale(0.7);
    -webkit-transform: translate(-50%, -50%) scale(0.7);
    -moz-transform: translate(-50%, -50%) scale(0.7);
    -ms-transform: translate(-50%, -50%) scale(0.7);
    -o-transform: translate(-50%, -50%) scale(0.7);
}
    button.nav-control.left-arrow {
        left: 10px;
    }
    button.nav-control.right-arrow {
    right: -40px;
}
}