:root {
    --gray: #474747;
    --black: #000;
    --light-black: #202020;
    --white: #fff;
    --light-blue: #486fa4;
    --dark-blue: #0e2e67;
    --orange: #f16f1d;
    --sky-blue: #0c7cde;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    margin: 0%;
}

p {
    font-family: 'Inter', sans-serif;
    line-height: 26px;

}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Raleway', sans-serif;
    margin: 0px;
}

ul {
    margin: 0px !important;
    padding-left: 0px !important;
}

li {
    list-style: none;
}

a,
a:hover,
button,
button:hover,
i,
h1,
h2,
h3,
h4,
h5,
h6,
li {
    text-decoration: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

i {
    transition: unset;
}

:focus {
    outline: 0px !important;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--dark-blue);
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
}


/* BOOTSTRAP CSS START  */

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {

    .container,
    .container-sm {
        max-width: 540px
    }
}

@media (min-width:768px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 720px
    }
}

@media (min-width:992px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px
    }
}

@media (min-width:1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1170px
    }
}

@media (min-width:1920px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px
    }
}


/* BOOTSTRAP CSS END  */


/* GLOBAL CSS START HERE  */

.section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.dark-blue {
    background-color: var(--dark-blue);
}

.sky-blue {
    background: var(--sky-blue);
}

.orange {
    background-color: var(--orange);
}

.clr-orange {
    color: var(--orange);
}

.clr-blue {
    color: var(--dark-blue);
}


.head {
    position: relative;
    padding-bottom: 10px;
    margin: 0 auto 2rem;
}


.head h2 {
    padding-bottom: 10px;
    color: var(--light-black);
}

.head h2,
.head h2 span {
    position: relative;
    font-size: 40px;
    font-weight: 800;
    padding: 0 0 1.5rem;
    margin: 0 auto 2rem;
}

.head h2 span {
    color: var(--orange);
}

.head h2:before {
    position: absolute;
    content: '';
    background-color: var(--orange);
    width: 200px;
    height: 6px;
    bottom: 0;
    left: 0;
}

.head h4 {
    font-size: 22px;
    color: #00a2fd;
    font-weight: 600;
    padding-bottom: 10px;
}

.head p {
    color: #121826;
    font-size: 16px;
    font-weight: 500;
}

.head p a {
    text-decoration: underline !important;
    color: var(--orange);
}

.row.footer-icon-row {
    margin-bottom: 0 !important;
}

a.main-cta {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid transparent;
    padding: 1rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 0.5rem;
    border-radius: 4px;
    text-shadow: 0px 2px 0px rgb(5 5 5 / 20%);
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a.main-cta.btn-blue {
    background: var(--sky-blue);
}

a.main-cta.btn-orange {
    background: var(--orange);
}

a.main-cta.btn-transparent {
    background: transparent;
    border: 2px solid var(--white);
    font-size: 18px;
}

a.main-cta:hover {
    background: var(--white);
    color: var(--black);
    text-shadow: unset;
}


/* GLOBAL CSS END HERE  */



/* SECTION ONE CSS START HERE */

.homeBanner {
    position: relative;
    background-image: url('../img/app-development/coverBanner.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    overflow: hidden;
    padding: 4rem 0;
}

.homeBanner h1 {
    font-size: 50px;
    font-weight: bold;
    color: var(--white);
}

.homeBanner h1>span {
    color: var(--orange);
}

.homeBanner hr {
    background: var(--orange);
    opacity: 1;
    height: 6px;
    max-width: 170px;
}

.homeBanner p {
    font-size: 18px;
    color: var(--white);
}


.homeBanner .coverBtns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 2rem;
    margin: 2.5rem 0 0;
}

.coverBtns a.btn--blue {
    background: var(--sky-blue);
    color: var(--white);
    padding: 16px 70px;
    border-radius: 4px;
    text-transform: capitalize;
}

.coverBtns a.btn--blue:hover {
    background: var(--orange);
    color: var(--white);
}

.coverBtns a.btn--transparent {
    position: relative;
    color: var(--white);
    background: transparent;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    grid-gap: 15px;
    text-decoration: underline !important;
    text-underline-offset: 2px;
    padding: 0 0 0 60px;
}

.coverBtns a.btn--transparent:before {
    position: absolute;
    content: '\f095';
    font-family: 'FontAwesome';
    left: 0px;
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.coverBtns a.btn--transparent:hover {
    color: var(--orange);
}

.coverBtns a.btn--transparent:hover:before {
    background: var(--orange);
    color: var(--white);
}

.homeBanner .app-dev-badge {
    padding: 1rem 0;
    margin: 2rem 0;
    border-top: 1px solid rgb(255 255 255 / 30%);
    border-bottom: 1px solid rgb(255 255 255 / 30%);
}

.homeBanner ul.partners {
    position: relative;
    display: flex;
    grid-gap: 1rem;
    margin: 2rem 0 0 !important;
    align-items: center;
}

ul.partners:before,
ul.partners:after {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: absolute;
    content: '';
    width: 24px;
    height: 61px;
    top: 0;
    bottom: 0;
    margin: auto;
}

ul.partners:before {
    background-image: url('../img/app-development/flower-icon-left.webp');
    left: -40px;
}

ul.partners:after {
    background-image: url('../img/app-development/flower-icon-right.webp');
    right: -40px;
}

/* SECTION ONE CSS END HERE */

/* SECTION TWO CSS START HERE */

section.excellence-section {
    padding: 60px 0 100px;
}

section.excellence-section .head {
    margin: 0;
    padding: 0;
}

section.excellence-section .head h2 {
    font-size: 30px;
}

.excellence-boxes {
    margin: 50px 0 0;
}


@media screen and (min-width: 1199px) {
    .excellence-boxes {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        justify-items: center;
        grid-gap: 1rem;
    }
}

.excellence-boxes>div:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}

.excellence-boxes>div:nth-child(21) {
    grid-area: 1 / 2 / 2 / 3;
}

.excellence-boxes>div:nth-child(3) {
    grid-area: 2 / 1 / 3 / 3;
}

.excellence-boxes>div {
    box-shadow: 0 3px 10px hwb(206deg 3% 65% / 20%);
    border-radius: 10px;
    overflow: hidden;
    padding: 1rem;
    background: var(--white);
}

.excellence-box {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 1rem;
    min-width: 320px;
}

.excellence-box span>p {
    font-size: 66px;
    font-weight: bold;
    color: var(--sky-blue);
    line-height: 1;
    margin: 0 0 -5px;
    letter-spacing: -5px;
}

.excellence-box span>small {
    font-size: 11px;
    font-weight: bold;
    color: #1c1c1c;
    font-family: 'Inter', sans-serif;
}


@media screen and (min-width: 1199px) {
    .excellence-img {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        z-index: -1;
    }
}



/* SECTION TWO CSS END HERE */


/* SECTION THREE CSS START HERE */

.appDev-journey-grid {
    display: flex;
    grid-gap: 2rem;
}

@media screen and (min-width: 768px) {
    .appDev-journey-grid {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 767px) {
    .appDev-journey-grid {
        flex-direction: column;
        grid-gap: 1rem;
    }
}

.appDev-journey-grid>div {
    flex: 1 1 31.33%;
}

.appDev-journey-grid .box-style {

    box-shadow: 0 0 20px rgb(14 46 103 / 20%);
    border-radius: 10px;
    overflow: hidden;
    padding: 2rem 1.5rem;
}

.appDev-journey-grid .box-style img {
    margin: 0 0 1rem;
}

.appDev-journey-grid .box-style h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--light-black);
    padding: 0 0 1rem;
    margin: 0 0 1rem;
    display: table;
    border-bottom: 5px solid #b7bfcd;
}

.appDev-journey-grid .box-style p {
    font-size: 14px;
    color: #333;
    line-height: 20px;
}

a.view-more {
    display: none;
}

.appDev-box-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-gap: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.appDev-journey-box.appDev-box-btn {
    background: var(--light-black);
    padding: 1.5rem;
}

.appDev-journey-box.appDev-box-btn a.main-cta {
    width: 100%;
    justify-content: center;
}

section.diamond {
    padding-top: 120px;
    overflow: visible;
    border-top: 1px solid #b9b9b9;
}

img.diamond {
    position: absolute;
    top: -55px;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 9;
}

/* SECTION THREE CSS END HERE */

/* SECTION FOUR CSS START HERE */


.technologies-section.diamond {
    margin: 4rem 0 0;
}

.technologies-section .head h2:before {
    right: 0;
    margin: 0 auto;
}

.tech-tab-wrapper {
    background: #f2f4f6;
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-radius: 20px;
}

.tech-tab-wrapper:not(:last-child) {
    margin: 0 0 1.5rem;
}

.tech-tab-wrapper h3 {
    background: var(--dark-blue);
    color: var(--white);
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: .4rem 2rem;
    border-radius: 0 0 10px 10px;
    width: max-content;
    margin: 0 auto;
}

.tech-tab-wrapper div#accordian {
    margin: 2rem 0 0;
}

.tech-tab-wrapper .accordion__item {
    border: 1px solid #8a8f98;
    background: var(--white);
    border-radius: 5px;
}

.tech-tab-wrapper div#accordian .accordion__item:not(:last-child) {
    margin: 0 0 1rem;
}

.tech-tab-wrapper .accordion__item .accordion__item__header {
    padding: .8rem 2rem;
    cursor: pointer;
    overflow: hidden;
}

.tech-tab-wrapper .accordion__item h4 {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-blue);
}

.tech-tab-wrapper .accordion__item h4 small {
    color: #909090;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.tech-tab-wrapper .accordion__item h4>i {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.tech-tab-wrapper .accordion__item .accordion__item__content {
    padding: 2rem;
}

.tech-tab-wrapper .accordion__item__content ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    grid-gap: 2rem;
}

.tech-tab-wrapper .accordion__item.active .accordion__item__header {
    border-bottom: 1px solid #8a8f98;
}

/* SECTION FOUR CSS END HERE */

/* SECTION FIVE CSS START HERE */

section.section.user-experience {
    margin-top: 100px;
    background: #f5f5f5;
    padding-bottom: 0;
}

section.section.user-experience .heading {
    margin-bottom: 60px;
}

section.section.user-experience .heading h2 {
    font-size: 40px;
    font-weight: bold;
    color: #202020;
}

.userExp-item .row {
    margin: 0;
}

.userExp-box-left {
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 8rem 7rem;
}

.userExp-box-left .logo {
    margin: 0 0 1rem;
}

.userExp-box-left h2 {
    color: var(--white);
    font-size: 36px;
    font-weight: bold;
    margin: 0 0 1rem;
}

.userExp-box-left p {
    color: var(--white);
    line-height: 28px;
}

.userExp-box-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}


/* SECTION FIVE CSS END HERE */

/* SECTION SIX CSS START HERE */



.industries-worked .head h2:before {
    right: 0;
    margin: 0 auto;
}


.industries-wrapper {
    display: grid;
    grid-gap: 1rem;
}


@media screen and (max-width: 767px) {
    .industries-wrapper {
        display: flex;
        flex-wrap: wrap;
        grid-gap: 0;
        justify-content: center;
    }

    .industries-wrapper .industry-box {
        flex: 0 0 calc(50% - 10px);
        margin: 5px;
    }

}


@media screen and (max-width: 991px) and (min-width: 768px) {

    .industries-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .industries-wrapper .industry-box {
        grid-column: span 1;
    }

    .industries-wrapper .industry-box:nth-last-child(1):nth-child(odd) {
        grid-column: 2 / span 1;
    }

}

@media screen and (min-width: 992px) {

    .industries-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }

}

@media screen and (min-width: 1199px) {

    .industries-wrapper {
        grid-template-columns: repeat(5, 1fr);
    }
}

.industries-wrapper .industry-box {
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    padding: 1rem 1rem;
    min-height: 150px;
    border: 1px solid #e5e5e5;
    box-shadow: 10px 0 10px rgb(0 0 0 / 5%);
}

.industries-wrapper .industry-box p {
    margin: 0;
    font-weight: 600;
    line-height: 1;
    font-size: .875rem;
}

.industries-wrapper .industry-box img {
    margin: 0 0 1rem;
}

/* SECTION SIX CSS END HERE */

/* SECTION SEVEN CSS STRAT HERE */

section.section.develop-something {
    background-image: url(../img/app-development/develop-something-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

section.section.develop-something .row {
    align-items: center;
}

.ds-btn {
    padding: 1.5rem;
}

.ds-btn a.main-cta {
    width: 100%;
    justify-content: center;
}

section.section.develop-something h2,
section.section.develop-something h4 {
    color: var(--white);
}

section.section.develop-something h2 {
    font-size: 130px;
    font-weight: bold;
    line-height: 120px;
    padding-bottom: 15px;
}

section.section.develop-something h4 {
    font-size: 44px;
    font-weight: bold;
    line-height: 0px;
}

section.section.develop-something .col-right {
    text-align: right;
}

/* SECTION SEVEN CSS END HERE */


/* SECTION EIGHT CSS START HERE */


section.section.what-they-say .head h2 {
    color: var(--dark-blue);
}

div#reviewSlider .slick-track {
    margin-bottom: 2rem;
}

.reviewBox {
    border: 2px solid var(--black);
    border-radius: 15px;
    height: 350px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 3rem 4rem;
    text-align: center;
    margin: 0 10px;
}

.reviewBox h2.tagline {
    font-size: 18px;
    font-family: 'Inter';
    font-weight: 600;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid;
    color: #1b1b1b;
}

.reviewBox h3.clientName {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #1b1b1b;
}

.reviewBox .reviewBox p {
    min-height: 130px;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0px, -30px);
    z-index: 99;
    background: #7f7f7f;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

.next-arrow.slick-arrow {
    right: -5%;
}

.prev-arrow.slick-arrow {
    left: -5%;
}

.slick-arrow:hover {
    background: var(--dark-blue);
    color: var(--white);
}

div#reviewSlider ul.slick-dots li button:before {
    display: none;
}

div#reviewSlider ul.slick-dots li button {
    padding: 0;
}

div#reviewSlider ul.slick-dots li {
    width: 34px;
    height: 10px;
    background: #d6d6d6;
    border-radius: 50px;
}

div#reviewSlider ul.slick-dots li.slick-active {
    background: #333;
}

.schedule-btn {
    max-width: 35%;
    margin: 5rem auto 0;
}

.schedule-btn a.btn-blue:hover {
    background: var(--orange);
    color: var(--white);
}

div#userExpSlider .slick-arrow {
    background: rgb(0 0 0 / 50%);
}

div#userExpSlider .prev-arrow.slick-arrow {
    left: 4%;
}

div#userExpSlider .next-arrow.slick-arrow {
    right: 4%;
}

div#userExpSlider .slick-arrow:hover {
    background: var(--white);
    color: var(--black);
}

/* SECTION EIGHT CSS END HERE */

/* SECTION NINE CSS START HERE */

.fp-row-one h3 {
    position: absolute;
    background: #efefef;
    top: -45px;
    padding: 16px 30px 20px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    z-index: -1;
}


.fp-row-one {
    background: #c3d6eb;
    border-radius: 15px 15px 0 0;
    position: relative;
    padding: 2rem 0 0 2rem;
}

.fp-wrap {
    display: flex;
    flex-wrap: wrap;
}

.fp-wrap .fp-left {
    flex: 1 1 50%;
}

.fp-wrap .fp-right {
    flex: 1 1 44%;
}

.fp-wrap .logo {
    margin-bottom: 1rem;
}

.fp-row-one .fp-left ul {
    column-count: 2;
    margin: 0 0 8rem !important;
}

.fp-row-one .fp-left li {
    display: flex;
    gap: .5rem;
}


.fp-row-one .fp-left ul li i {
    color: #299044;
}

.fp-row-one .fp-left p,
.fp-row-one .fp-left li {
    color: #333333;
}

.fp-wrap .tablet {
    margin-top: -90px;
}


.fp-row-two {
    position: relative;
    z-index: 9;
    background: #2a6dbd;
    max-width: 90%;
    margin: -100px auto;
    border-radius: 15px;
    padding: 2rem;
}

.fp-row-two .fp-left {
    text-align: center;
    padding: 0 5rem;
}

.fp-row-two p,
.fp-row-two h5 {
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    color: var(--white);
}

.fp-row-two hr {
    background: var(--white);
}

.fp-row-two small {
    font-size: 12px;
    opacity: 0.5;
    color: var(--white);
}

.fp-row-three {
    background: #eaf4ff;
    padding: 15rem 5rem 4rem;
    border-radius: 0 0 15px 15px;
    text-align: center;
    margin-top: -175px;
}

.fp-row-three h2 {
    font-size: 48px;
    font-weight: bold;
    color: var(--dark-blue);
}

.fp-row-three h6 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #222222;
    margin-bottom: 1.6rem;
}

.fp-row-three h3 {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    color: #222222;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    display: inline-block;
    font-weight: bold;
}

.fp-row-three h3:before,
.fp-row-three h3:after {
    position: absolute;
    content: '';
    background: #bbc3cc;
    width: 120px;
    height: 2px;
    bottom: 0;
    top: 0;
    margin: auto;
}

.fp-row-three h3:before {
    left: -140px;
}

.fp-row-three h3:after {
    right: -140px;
}

.fp-row-three a.main-cta.btn-transparent {
    border-color: var(--dark-blue);
    color: var(--dark-blue);
    text-shadow: unset;
}


.fp-row-three a.main-cta.btn-transparent:hover {
    border-color: var(--white);
    color: var(--black);
}

/* SECTION NINE CSS END HERE */

/* SECTION TEN CSS START HERE */

section.faq-section {
    background: #f5f5f5;
}

section.faq-section .head {
    margin: 0;
}

section.faq-section .head h2 {
    color: var(--dark-blue);
}

section.faq-section .accordion__item__header {
    width: 100%;
    background: var(--white);
    padding: 1.4rem 2rem;
    border-radius: 6px;
    box-shadow: 0px 5px 5px rgb(0 0 0 / 10%);
    cursor: pointer;
}

section.faq-section .accordion__item:not(:last-child) {
    margin: 0 0 1rem;
}

section.faq-section .accordion__item h4 {
    font-size: 18px;
    font-weight: bold;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.faq-section .accordion__item h4>i {
    transition: all .3s ease-in-out !important;
    color: #a5abbc;
}

section.faq-section .accordion__item.active h4>i {
    color: var(--white);
    transform: rotate(180deg);
}

section.faq-section .accordion__item__content {
    padding: 1rem 2rem;
}

section.faq-section .accordion__item__content a {
    color: var(--orange);
    text-decoration: underline !important;
}

section.faq-section .accordion__item.active,
section.faq-section .accordion__item.active .accordion__item__header {
    background: var(--dark-blue);
}

section.faq-section .accordion__item.active .accordion__item__header h4,
section.faq-section .accordion__item.active p,
section.faq-section .accordion__item.active li {
    color: var(--white);
}

/* SECTION TEN CSS END HERE */


/* SECTION ELEVEN CSS START HERE */

section.contact-section {
    background: #f5f5f5;
    padding: 80px 0;
}

section.contact-section:before {
    position: absolute;
    content: '';
    background: var(--white);
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
}

section.contact-section .row {
    position: relative;
}

section.contact-section .col-left {
    padding-right: 3rem;
}

section.contact-section .col-right {
    padding-left: 3rem;
}

div#discussLead {
    position: relative;
}

div#discussLead .form-head {
    padding: 0 0 1rem;
    margin: 0 0 2rem;
    position: relative;
}

div#discussLead .form-head p {
    font-size: 18px;
    color: var(--dark-blue);
    font-weight: 600;
    margin: 0;
}

div#discussLead .form-head h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-blue);
}

div#discussLead .form-head h2>span {
    color: var(--orange);
}

div#discussLead .form-head:before {
    position: absolute;
    content: '';
    background: var(--orange);
    width: 300px;
    height: 5px;
    bottom: 0;
    left: 0;
}

div#discussLead .form-group {
    position: relative;
    margin-bottom: 10px;
}

div#discussLead .form-group .form-control {
    position: relative;
    color: #989898;
    border: 2px solid #e7e7e7;
    background: #fafcfe;
    border-radius: 0;
    padding: 14px 45px;
    box-shadow: unset;
    outline: unset;
    font-size: 14px;
}

div#discussLead .form-group i {
    position: absolute;
    z-index: 9;
    top: 20px;
    left: 20px;
    color: var(--orange);
}

div#discussLead .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 25px;
}

div#discussLead .form-control::placeholder {
    color: #989898;
}

div#discussLead .form-group textarea.form-control {
    height: 120px;
    resize: none;
}

div#discussLead .form-group .form-control:focus {
    border-color: var(--sky-blue);
}

div#discussLead .btn-box {
    margin: 1.5rem 0 0;
}

div#discussLead .btn-box .btn-form {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    background: var(--sky-blue);
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-gap: 0.5rem;
    border-radius: 4px;
    text-shadow: 0px 2px 0px rgb(5 5 5 / 20%);
    text-transform: uppercase;
    letter-spacing: .5px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

div#discussLead .btn-box .btn-form:hover {
    background: var(--orange);
}

div#discussLead .mini-contact-area {
    display: flex;
    align-items: center;
    grid-gap: 1rem;
    position: absolute;
    bottom: 10px;
    right: 0;
}

div#discussLead .mini-contact-box {
    display: flex;
    align-items: center
}

div#discussLead .c-cont-box h4 {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    margin: 0;
    color: var(--dark-blue);
    font-weight: 700;
    opacity: 0.5;
}

div#discussLead .c-cont-box a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin: 0;
    color: var(--dark-blue);
    font-weight: 800;
}

div#discussLead .c-cont-box a:hover {
    color: var(--orange);
}

div#discussLead .c-icon-box i {
    font-size: 30px;
    color: var(--orange);
    margin-right: 10px;
}

section.contact-section .col-right {
    text-align: center;
}

section.contact-section .col-right h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-blue);
    margin: 0 0 1.2rem;
}

section.contact-section .contact-cta {
    margin: 2rem 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 1rem;
}

section.contact-section .contact-cta a.main-cta {
    display: inline-flex;
}


section.contact-section .contact-cta a.btn-blue:hover {
    background: var(--orange);
    color: var(--white);
}

section.contact-section .contact-cta a.btn-orange:hover {
    background: var(--sky-blue);
    color: var(--white);
}


/* SECTION ELEVEN CSS END HERE */



@media screen and (max-width: 1199px) {
    .contact-container {
        display: none !important;
    }

    .excellence-section .col-lg-7 {
        width: 100%;
    }

    .excellence-section .col-lg-5 {
        display: none;
    }

    .excellence-boxes {
        display: flex;
        flex-wrap: wrap;
        grid-gap: 2rem;
    }

    .excellence-boxes .excellence-box {
        flex: 1 1 47%;
    }

    .excellence-boxes>div:not(:last-child) {
        margin: 0;
    }

    .appDev-journey-grid {
        justify-content: center;
    }

    .appDev-journey-grid>div {
        flex: 0 0 47%;
    }

    section.section.user-experience {
        margin-top: 50px;
    }

    .userExp-box-left {
        padding: 4rem;
    }

    section.section.develop-something h2 {
        font-size: 100px;
    }

    .reviewBox {
        padding: 3rem 2rem;
    }

    .next-arrow.slick-arrow {
        right: 0;
    }

    .prev-arrow.slick-arrow {
        left: 0;
    }

    .schedule-btn {
        max-width: 40%;
    }

    .fp-row-one .fp-left ul {
        column-count: 1;
        margin: 0 0 2rem !important;
    }

    .fp-wrap .tablet {
        margin: 0;
    }

    .fp-row-two {
        margin: 0;
        max-width: 100%;
        border-radius: 0;
    }

    .fp-row-three {
        margin: 0;
        padding: 4rem 2rem;
    }

    a.main-cta {
        font-size: 14px;
    }

    a.main-cta.btn-transparent {
        font-size: 14px;
    }

    div#discussLead .form-head p {
        font-size: 16px;
    }

    div#discussLead .form-head h2 {
        font-size: 22px;
    }

    section.contact-section .col-right h2 {
        font-size: 22px;
    }

    div#discussLead .mini-contact-area {
        position: unset;
        margin-top: 3rem;
    }

    section.contact-section {
        padding: 60px 0;
    }
}

@media screen and (max-width: 991px) {


    .head {
        text-align: center;
    }

    .head h2:before {
        right: 0;
        margin: 0 auto;
    }

    .head h2 br,
    .head p br {
        display: none;
    }

    .head h2,
    .head h2 span {
        font-size: 36px;
    }

    ul.partners:before {
        left: -30px;
    }

    ul.partners:after {
        right: -30px;
    }


    .excellence-section p {
        text-align: center;
    }

    section.section.user-experience {
        margin-top: 50px;
    }

    .tech-tab-wrapper h3 {
        font-size: 24px;
    }

    section.section.develop-something .row {
        flex-direction: column-reverse;
    }

    section.section.develop-something .col-right {
        text-align: center;
        margin-bottom: 2rem;
    }

    section.section.develop-something h4,
    section.section.develop-something h2 {
        line-height: 1;
    }

    section.section.develop-something h2 {
        padding: 0;
    }

    .reviewBox {
        height: auto;
    }

    .schedule-btn {
        max-width: 50%;
    }

    .fp-wrap {
        flex-direction: column-reverse;
    }

    .fp-row-one {
        padding: 2rem 1rem;
    }

    .fp-row-one .fp-right {
        text-align: center;
    }

    .fp-row-one .fp-left {
        padding: 2rem 0rem 0;
    }

    .fp-row-one .fp-left ul {
        margin: 0 !important;
    }

    .fp-row-two .fp-left {
        padding: 0;
    }

    .fp-row-two .fp-right {
        text-align: center;
        margin: 2rem 0 0;
    }

    .fp-row-three h2 {
        font-size: 40px;
    }

    .fp-row-three .row {
        grid-row-gap: 1rem;
    }

    section.contact-section:before {
        display: none;
    }

    div#discussLead .form-head {
        text-align: center;
    }

    div#discussLead .form-head:before {
        right: 0;
        margin: 0 auto;
    }

    section.contact-section {
        background: transparent;
    }

    section.contact-section .col-left {
        padding-right: calc(var(--bs-gutter-x)/ 2);
    }

    div#discussLead .mini-contact-area {
        position: absolute;
    }

    section.contact-section .col-right {
        padding-left: calc(var(--bs-gutter-x)/ 2);
        margin-top: 2rem;
    }
}

@media screen and (max-width: 767px) {
    .section {
        padding: 40px 0;
    }

    section.diamond {
        padding-top: 100px;
    }

    .head {
        text-align: center;
        margin: 0 auto 1rem;
    }

    .head h2,
    .head h2 span {
        font-size: 20px;
    }

    .head h2:before {
        width: 40%;
    }

    p,
    .head p {
        font-size: 14px;
        line-height: 20px;
    }

    .homeBanner {
        padding: 4rem 0 2rem;
        background-image: url(../img/app-development/coverBanner-mobile.webp);
    }

    .homeBanner h1 {
        font-size: 28px;
        line-height: 28px;
    }

    .homeBanner p {
        font-size: 14px;
        max-width: 90%;
        line-height: 20px;
    }

    .coverBtns a.btn--blue {
        padding: 12px 50px;
    }

    .coverBtns a.btn--transparent {
        font-size: 18px;
    }

    .coverBtns a.btn--transparent:before {
        width: 40px;
        height: 40px;
    }

    .homeBanner .coverBtns {
        grid-gap: 1rem;
        margin: 1.5rem 0 0;
    }

    .homeBanner ul.partners {
        grid-gap: .5rem;
    }

    .homeBanner ul.partners:before,
    .homeBanner ul.partners:after {
        display: none;
    }

    section.excellence-section .head h2 {
        font-size: 20px;
    }

    section.excellence-section {
        padding: 30px 0 100px;
    }

    section.excellence-section {
        text-align: center;
    }

    .excellence-boxes {
        grid-gap: 1rem;
        margin: 2rem 0 0;
    }


    section.appDev-journey-section {
        background: #f5f5f5;
    }

    .appDev-journey-grid .box-style {
        background: var(--white);
        box-shadow: unset;
        border: 2px solid var(--black);
        padding: 1.5rem;
    }

    .appDev-journey-grid .box-style h3 {
        border: 0;
        padding: 0;
    }

    a.view-more {
        font-size: 14px;
        color: #0060ff;
        font-weight: 500;
        border-bottom: 1px solid;
        float: right;
        display: block;
    }

    p.hide-mobile {
        display: none;
    }

    .technologies-section.diamond {
        margin: 6rem 0 0;
    }

    .tech-tab-wrapper .accordion__item__content ul li {
        flex: 1 1 100%;
        text-align: center;
    }

    .tech-tab-wrapper .accordion__item__content ul {
        grid-gap: unset;
        grid-row-gap: 2rem;
        justify-content: center;
    }

    .tech-tab-wrapper h3 {
        font-size: 18px;
        width: auto;
        text-align: center;
    }

    .tech-tab-wrapper .accordion__item h4 {
        font-size: 16px;
    }

    .tech-tab-wrapper .accordion__item .accordion__item__header {
        padding: .8rem 1rem;
    }

    section.section.user-experience img.diamond {
        display: none;
    }


    section.section.user-experience {
        margin: 0;
        border: 0;
        background: transparent;
        padding: 0 0 40px;
    }

    section.section.user-experience .heading h2 {
        font-size: 20px;
    }

    section.section.user-experience .heading {
        margin-bottom: 40px;
    }

    div#userExpSlider {
        margin: 0 1rem;
    }

    .userExp-item .row {
        flex-direction: column-reverse;
    }

    .userExp-box-left {
        padding: 2rem;
    }

    .userExp-box-right {
        padding: 2rem;
    }

    .userExp-box-left .logo {
        display: none;
    }

    .userExp-box-left h2 {
        font-size: 30px;
    }

    .userExp-box-left p {
        margin: 0;
        line-height: 20px;
    }

    div#userExpSlider .slick-arrow {
        transform: translate(0px, 20px);
    }

    div#userExpSlider .prev-arrow.slick-arrow {
        left: 0;
    }

    div#userExpSlider .next-arrow.slick-arrow {
        right: 0;
    }

    section.section.industries-worked.s6 {
        background: #f5f5f5;
    }

    section.section.develop-something {
        padding: 40px 0;
    }

    section.section.develop-something h4 {
        font-size: 1.5rem;
    }

    section.section.develop-something h2 {
        font-size: 4rem;
        padding-bottom: 0;
    }

    section.section.develop-something .appDev-box-btn {
        padding: 0 1.5rem;
    }

    .schedule-btn {
        max-width: 100%;
        margin: 4rem 0 0;
    }

    #reviewSlider .review-item {
        margin-bottom: 2rem !important;
    }

    section.section.featured-projects {
        padding-bottom: 0;
    }

    section.featured-projects .container {
        padding: 0;
    }

    .fp-row-one h3 {
        left: 0;
        right: 0;
        margin: 0 auto;
        text-align: center;
        width: max-content;
    }

    .fp-row-one {
        border-radius: 0;
    }

    .fp-row-two p,
    .fp-row-two h5 {
        font-size: 16px;
    }

    .fp-row-two .row {
        flex-direction: column-reverse;
    }

    .fp-row-two .fp-right {
        margin: 0 0 2rem;
    }

    .fp-row-three h2 {
        font-size: 24px;
    }

    .fp-row-three {
        padding: 2rem 0;
        border-radius: 0;
    }

    .fp-row-three h6 {
        font-size: 14px;
    }

    .fp-row-three h3 {
        font-size: 20px;
    }

    .fp-row-three h3:before,
    .fp-row-three h3:after {
        width: 30px;
    }

    .fp-row-three h3:before {
        left: -40px;
    }

    .fp-row-three h3:after {
        right: -40px;
    }

    .fp-row-three .row {
        padding: 0 1.5rem;
    }

    section.section.featured-projects {
        padding-bottom: 0;
    }

    section.faq-section .accordion__item h4 {
        font-size: 14px;
    }

    section.faq-section .accordion__item__header,
    section.faq-section .accordion__item__content {
        padding: 1rem;
    }

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

    div#discussLead .form-head p {
        font-size: 14px;
    }

    div#discussLead .form-head h2 {
        font-size: 18px;
    }

    div#discussLead .mini-contact-area {
        position: unset;
        justify-content: space-evenly;
    }

    div#discussLead .btn-box {
        text-align: center;
    }

    div#discussLead .btn-box .btn-form {
        width: 80%;
    }

    section.contact-section .col-right {
        background: #f6f6f6;
        padding: 2rem 0;
    }

    section.contact-section .col-right h2 {
        font-size: 26px;
        padding: 0 2rem;
    }
}

@media screen and (max-width: 767px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }
}

@media screen and (min-width: 768px) {
    .dekstop {
        display: block;
    }

    .mobile {
        display: none;
    }
}