.hvr-underline-from-center {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    overflow: hidden
}

.hvr-underline-from-center::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    bottom: 0;
    background: #2098d1;
    height: 4px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

.hvr-underline-from-center:active:before,
.hvr-underline-from-center:focus:before,
.hvr-underline-from-center:hover:before {
    left: 0;
    right: 0
}

.hvr-float-shadow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-property: transform;
    transition-property: transform
}

.hvr-float-shadow::before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, .35) 0, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .35) 0, rgba(0, 0, 0, 0) 80%);
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-property: transform, opacity;
    transition-property: transform, opacity
}

.hvr-float-shadow:active,
.hvr-float-shadow:focus,
.hvr-float-shadow:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px)
}

.hvr-float-shadow:active:before,
.hvr-float-shadow:focus:before,
.hvr-float-shadow:hover:before {
    opacity: 1;
    -webkit-transform: translateY(5px);
    transform: translateY(5px)
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@keyframes fadeZoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale3d(0);
        transform: scale3d(0)
    }
}

.fadeZoomIn {
    -webkit-animation-name: fadeZoomIn;
    -moz-animation-name: fadeZoomIn;
    -o-animation-name: fadeZoomIn;
    animation-name: fadeZoomIn
}

.animated3 {
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both
}


.navbar {
    padding-left: 40px;
    padding-right: 40px;
}
.fixedHeader {
    background: #fff;
}
.full-header .navbar {
    padding: 5px 70px;
}
.mainHeader {
    width: 100%;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -ms-transition: all .2s ease;
    position: fixed;
    z-index: 99;
    display: flex;
    align-items: center;
}

.fixedHeader {
    box-shadow: 0 0 16px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 0 16px rgba(0, 0, 0, .2);
    position: fixed;
    top: 0
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px)
    }
    100% {
        transform: translateY(0)
    }
}

nav {
    z-index: 1;
    position: relative;
    transition: .3s;
    -webkit-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s
}

.mainHeader .mainLogo {
    display: inline-block
}

.mainHeader .FixedMainLogo {
    display: none
}

.mainHeader.fixedHeader .mainLogo {
    display: none
}

.mainHeader.fixedHeader .FixedMainLogo {
    display: inline-block
}

.mainHeader nav ul>li>a {
    color: #000
}

.mainHeader nav ul li.has-children>a:before {
    display: none
}

.mainHeader nav ul li.has-children>a::after {
    background-image: url(../img/menu-dropdown.png);
    border: 0;
    background-color: transparent;
    width: 14px !important;
    height: 5px;
    transform: none !important;
    right: 3px;
    background-position: right center;
    background-repeat: no-repeat
}

nav::before {
    transition: .4s;
    -webkit-transition: .4s;
    -ms-transition: .4s;
    -moz-transition: .4s
}

.fixedHeader .mainHeader nav ul {
    transition: .4s;
    -webkit-transition: .4s;
    -ms-transition: .4s;
    -moz-transition: .4s
}

.logo {
    line-height: 80px;
    float: left;
    margin: 0 0 0 40px;
    width: 376px;
    transition: .4s;
    -webkit-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s
}

.navbar-brand img {
    transition: .4s;
    -webkit-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s
}

.navbar-brand {
    transition: .4s;
    -webkit-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    width: 260px;
}

.logo a svg {
    width: 100%;
    transition: .4s;
    -webkit-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    height: 57.55px
}

.fixedHeader .logo a svg {
    width: 70%
}

.fixedHeader .logo {
    line-height: 63px
}

.mainHeader nav ul {
    list-style: none;
    background: rgba(0, 0, 0, 0);
    color: #fff;
    padding: 0;
    text-align: right;
    margin: 0;
    padding-right: 0px;
    transition: 1s;
    transition: .4s;
    -webkit-transition: .4s;
    -ms-transition: .4s;
    -moz-transition: .4s
}

.mainHeader nav ul li {
    display: inline-block;
    margin-left: 10px
}

.mainHeader nav ul li a {
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    display: block;
    padding: 10px 14px;
    transition: .3s;
    -webkit-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
}

.mainHeader nav ul li a:hover,
.mainHeader nav ul li.show>a {
    color: #4d90f7;
}

.mainHeader nav ul li a i {
    vertical-align: middle;
    margin-left: 3px
}

.mainHeader nav ul li a.requestBtn {
    background: #1d73f8;
    padding: 8px 12px;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    position: relative;
    overflow: hidden;
    color: #fff !important;
    display: inline-block;
    border: 1px solid #1d73f8;
    vertical-align: middle;
    border-radius: 5px
}

.mainHeader nav ul li a.requestBtn:hover {
    color: #1d73f8 !important;
    border: 1px solid #1d73f8;
    background-color: transparent
}

.mainHeader nav ul li a.requestBtn i {
    transition: all .2s ease-in
}

.mainHeader nav ul li a.requestBtn:hover i {
    transform: translateX(5px)
}

.menu-icon {
    line-height: 60px;
    text-align: right;
    box-sizing: border-box;
    padding: 10px 24px;
    cursor: pointer;
    color: #fff;
    display: none;
    float: right
}

.fixedHeader .navbar {
    padding-top: 5px;
    padding-bottom: 5px;
}

.mainHeader .container-fluid {
    padding-left: 0;
    padding-right: 0;
}
header.full-header.mainHeader {
    padding: 0px 0;
}

.has-megamenu {
    position: inherit !important;
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.inner-menu {
    display: flex;
    align-items: normal;
}

.navbar .navbar-nav .dropdown-menu.megamenu {
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    padding: 0;
    box-shadow: none;
    box-shadow: none;
    margin: 0;
    border-top: 1px solid #d2d2d2;
    border-bottom: 1px solid #d2d2d2;
    border-left: none;
    border-right: none;
}

.mainHeader nav ul li.dropdown>a::after {
    background-image: url(../img/menu-dropdown.png);
    border: 0;
    background-color: transparent;
    width: 14px !important;
    height: 5px;
    transform: none !important;
    right: 3px;
    background-position: right center;
    background-repeat: no-repeat;
    position: relative;
    top: 1px;
}

.mainHeader nav ul .company_menu {
    padding: 10px 10px;
    width: 60%;
    line-height: normal;
    text-align: center;
    min-height: 390px;
}

/*.mainHeader nav ul .company_menu.companyBG {
    background: url(../img/companyBG.svg) center 90% no-repeat;
}*/

.mainHeader nav ul .company_menu li {
    display: inline-block;
    width: 33.3%;
    text-align: left;
    float: left;
    margin: 0;
    position: relative;
}

.mainHeader nav ul .company_menu li a {
    padding: 0;
    float: left;
    margin: 8px 15px;
    width: auto;
    display: flex;
    line-height: 20px;
    height: auto;
    align-items: center;
    color: #000;
    font-size: 15px;
    font-weight: 400;
}

.mainHeader nav ul .company_menu li a .grey_icon {
    filter: grayscale(100%);
    margin-right: 10px;
}

.mainHeader nav ul .company_menu li a:hover .grey_icon {
    filter: grayscale(0);
}

.mainHeader nav ul .company_menu li a:hover {
    color: #4d90f7;
}

.mainHeader nav ul li.active a {
    color: #4d90f7;
}

.mainHeader nav ul li.active img {
    filter: grayscale(0) !important;
}

.mainHeader nav ul li .company_info {
    padding: 10px 0 10px 50px;
    align-items: top;
    display: flex;
    width: 23%;
    background: #f4f4f4;
    border: 1px solid #e8e8e8;
    height: auto;
}

.mainHeader nav ul li .company_info ul li {
    width: 100%;
    display: flex;
    line-height: normal;
    margin: 26px 0;
    float: left;
    align-items: center;
}

.mainHeader nav ul li .company_info ul li img {
    height: 40px;
}

.mainHeader nav ul li .company_info ul li .text {
    font-size: 18px;
    color: #3c3c3c;
    padding: 0 0 0 20px;
    font-weight: 700;
    text-align: left;
}

.mainHeader nav ul li .company_info ul li .text span {
    font-size: 14px;
    color: #575757;
    display: block;
    text-align: left;
    font-weight: 400;
}

.mainHeader nav ul .tabs {
    display: flex;
    width: 77%;
    align-items: top;
    height: auto;
    margin: 0;
    border: 0;
}

.mainHeader nav ul .tabs ul.tab-links {
    width: 29%;
    background-color: #fb8006;
    padding: 10px 0 10px 50px;
    margin: 0;
}

.mainHeader nav ul .tabs ul.tab-links li {
    display: block;
    text-align: left;
}

.mainHeader nav ul .tabs ul.tab-links li a {
    padding: 14px;
    height: auto;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    margin: 15px 0;
}

.mainHeader nav ul .tabs ul.tab-links li.active a {
    color: #000;
    background: #fff;
}

.mainHeader nav ul .tabs .tab-content {
    width: 70%;
}

.mainHeader nav ul .company_menu.EmergingTech {
    width: 23%;
    background: #f4f4f4;
    border: 1px solid #e8e8e8;
    height: auto;
    padding-left: 40px;
}

.mainHeader nav ul .company_menu.EmergingTech .title {
    display: inline-block;
    width: 100%;
    color: #000;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: left;
    margin: 20px 0;
}

.mainHeader nav ul .company_menu.EmergingTech li {
    width: 100%;
    float: none;
}

.mainHeader nav ul .company_menu.EmergingTech li a {
    margin: 8px 0;
}

.mainHeader nav ul .company_menu.EmergingTech li a .grey_icon {
    filter: grayscale(0);
}

.mainHeader nav ul .tab-content .company_menu {
    width: auto;
}

.mainHeader nav ul .company_menu .submenu li {
    width: auto;
}

.mainHeader nav ul .tabs .tab-content ul li .submenu {
    top: 60px;
    left: 85px;
    padding: 0;
    height: auto;
    position: absolute;
}

.mainHeader nav ul .company_menu .submenu li a {
    font-size: 14px;
    padding: 0 10px;
    font-weight: 400;
    margin: 0;
    line-height: normal;
    border-right: 1px solid #333;
    max-height: 14px;
}

.mainHeader nav ul .tabs .tab-content ul li .submenu li:first-child a {
    padding-left: 20px;
    background: url(../images/left_arrow.png) 0 no-repeat;
    margin-left: 5px;
}

.mainHeader nav ul .company_menu .submenu li:last-child a {
    border-right: 0;
    padding-right: 0;
}

.mainHeader nav ul .tabs .tab {
    display: none;
}

.mainHeader nav ul .tabs .tab.active {
    display: block;
}

.mainHeader nav ul .tabs .readyuse ul li {
    width: 33.3333%;
}

.mainHeader nav ul .tabs .readyuse ul li a {
    margin: 13px 15px;
    position: relative;
    padding-left: 10px;
    font-size: 15px;
    height: 28px;
    font-weight: 400;
}

.mainHeader nav ul .tabs .readyuse ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 80%;
    background: #007bff;
    transform: translateY(-50%);
}

.dropdown-menu.showMenu {
    display: block;
}

.navbar-toggler span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #1d73f8;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
}

.mainHeader nav ul .tabs .tab .title {
    display: none;
}

.mouseDown {
    margin: 30px auto 0;
    width: 34px;
    height: 55px;
    cursor: pointer
}

.mousey {
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    border: 2px solid #000;
    border-radius: 25px;
    opacity: .75;
    box-sizing: content-box
}

.scroller {
    width: 3px;
    height: 16px;
    border-radius: 25%;
    background-color: #000;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15, .41, .69, .99);
    animation-iteration-count: infinite
}

@keyframes scroll {
    0% {
        opacity: 0
    }
    10% {
        transform: translateY(0);
        opacity: 1
    }
    100% {
        transform: translateY(15px);
        opacity: 0
    }
}

.carousel-inner2 {
    overflow: inherit
}




@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .inline-box.ready_made_inner .icon {
        top: 20%
    }
    .hireProcessDev.on-demand .cricleProcess {
        padding: 44px 25px 10px
    }
    .grayscale_img img {
        filter: grayscale(100%);
        -webkit-filter: grayscale(100%);
        -moz-filter: grayscale(100%);
        -o-filter: grayscale(100%);
        -ms-filter: grayscale(100%)
    }
    .grayscale_img:hover img {
        filter: grayscale(0);
        -webkit-filter: grayscale(0);
        -moz-filter: grayscale(0);
        -o-filter: grayscale(0);
        -ms-filter: grayscale(0)
    }
}

.hireProcessDev.on-demand .cricleProcess h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 115%;
    text-align: center;
    color: #fff;
    margin: 10px 0
}

.hireProcessDev.on-demand .cricleProcess p {
    margin: 0;
    font-weight: 400
}

.discuss_btn {
    font-size: 24px;
    border: 2px solid #7cb0ff
}

.on-demand-section {
    background: #f9f9f9;
    margin: 0;
    padding: 40px 0
}

.on-demand-section .row {
    margin: 0
}

.on-demand-section .titleOne {
    text-align: center;
    text-transform: inherit;
    font-size: 36px;
    margin: 0 16% 60px
}

.on-demand-section .tab {
    display: none
}

.on-demand-section .tab.active {
    display: block
}

.on-demand-section .tabs ul.tab-links {
    padding: 0;
    list-style-type: none;
    text-align: center;
    margin-bottom: 4rem
}

.on-demand-section .tabs ul.tab-links li {
    display: inline-block;
    width: 268px;
    margin: 0 -2px 0 0
}

.on-demand-section .tabs ul.tab-links li a {
    font-weight: 700;
    font-size: 18px;
    color: #000;
    padding: 20px 20px;
    border-radius: 5px 0 0 5px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    background: #dcdcdc;
    width: 100%;
    display: inline-block
}

.on-demand-section .tabs ul.tab-links li a:hover,
.on-demand-section .tabs ul.tab-links li.active a {
    color: #fff;
    background: #1d73f8
}

.on-demand-section .tabs ul.tab-links li.services a {
    border-radius: 0 5px 5px 0
}

.on-demand-section .tabs ul.tab-links li.services.active a {
    border-radius: 0 5px 5px 0
}

.inner_bg {
    background: #fff;
    border: 1px solid #ddd;
    margin: 0 0 0 -1px
}

.inner_bg .contentTabs {
    padding: 30px 0 20px 40px
}

.inner_bg .contentTabs .titleTwo {
    font-size: 30px;
    text-transform: inherit;
    color: #1a1a1a;
    display: block;
    text-align: left
}

.inner_bg .contentTabs p {
    font-size: 16px;
    color: #1a1a1a
}

.inner_ltab {
    padding: 0;
    text-align: center
}

.inner_ltab a.tabsMenu-arrow {
    display: none
}

.inner_ltab ul li {
    width: 100%
}

.inner_ltab ul .nav-item a {
    border: 1px solid #f9f9f9;
    padding: 18px 0;
    position: relative
}

.inner_ltab ul .nav-item a.active,
.inner_ltab ul .nav-item a:hover {
    background: #fff;
    border: 1px solid #ddd
}

.inner_ltab ul .nav-item a.active:after,
.inner_ltab ul .nav-item a:hover:after {
    position: absolute;
    width: 3px;
    height: 100%;
    left: 0;
    top: 0;
    background: #1d73f8;
    content: ""
}

.inner_ltab ul .nav-item a.active img {
    filter: grayscale(0);
    -webkit-filter: grayscale(0)
}

.inner_bg .contentTabs ul {
    width: 100%
}

.inner_bg .contentTabs ul li {
    background: #fbfbfb;
    width: 45%;
    padding: 12px 15px;
    font-weight: 500;
    font-size: 18px;
    color: #000;
    margin: 0 20px 10px 0;
    align-items: center;
    display: flex;
    float: left;
    line-height: 16px
}

.inner_bg .contentTabs ul li i {
    background: #1d73f8;
    padding: 3px;
    color: #fff;
    margin: 0 10px 0 0;
    font-size: 27px
}

.Feature-rich .counter-inner .icon {
    width: 80%;
    display: flex;
    align-items: center
}

.Feature-rich .counter-inner .icon h4 {
    margin: 0 0 0 20px;
    font-size: 24px
}

.Feature-rich .inline-box {
    min-height: 270px;
    width: 100%
}

.Feature-rich .inline-box .content {
    padding: 20px 0 0;
    width: 100%
}

.Feature-rich .inline-box .content p {
    font-size: 16px;
    line-height: 21px;
    color: #1a1a1a
}

.Feature-rich .inline-box .content ul {
    list-style-type: none;
    padding: 40px 0 0;
    margin: 0
}

.Feature-rich .inline-box .content ul li {
    font-size: 16px;
    color: #1a1a1a;
    margin: 7px 0 0;
    position: relative;
    padding: 0 0 0 30px
}

.Feature-rich .inline-box .content ul li i {
    background: #edf4ff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #1d73f8;
    font-size: 12px;
    text-align: center;
    line-height: 20px;
    position: absolute;
    top: 2px;
    left: 0
}

.discussSpecialists.perfectly_connect h2 {
    font-size: 36px
}

.discussSpecialists.perfectly_connect p {
    width: 90%
}

.readymade_services button.slick-arrow {
    position: absolute;
    top: -50px;
    right: 0;
    background: 0;
    border: 0;
    outline: 0;
    font-size: 0;
    width: 35px;
    height: 35px
}

.readymade_services button.slick-prev {
    background: url(../images/left_arrow.svg) 0 0 no-repeat;
    right: 50px
}

.readymade_services button.slick-next {
    background: url(../images/right_arrow.svg) 0 0 no-repeat
}

.HomeSlider.App_development h1 sub {
    font-size: 44px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 54px;
    margin: 0 6% 0 0
}

.inline-box.ready_made_inner {
    padding: 0 !important;
    min-height: inherit;
    margin: 0 0 30px;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: inherit !important
}

.inline-box.ready_made_inner .icon {
    position: absolute;
    margin: auto;
    width: 100%
}

.inline-box.ready_made_inner .icon h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 40px 0 0
}

.inline-box.ready_made_inner:hover img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    filter: grayscale(100);
    -webkit-filter: grayscale(100)
}

.inline-box.ready_made_inner img {
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1)
}

.HomeSlider.qa .btn-primary {
    border: 1px solid #1d73f8
}

.HomeSlider.qa .btn-primary i {
    transition: all .2s ease-in
}

.HomeSlider.qa .btn:hover {
    color: #fff;
    border: 1px solid #fff;
    background-color: transparent
}

.HomeSlider.qa .btn-primary:hover i {
    transform: translateX(5px)
}

section.partnershipModelsRow.stayhealth {
    background: 0;
    padding: 0
}

section.partnershipModelsRow.stayhealth .modalBox {
    padding: 20px
}

section.partnershipModelsRow.stayhealth .modalBox img {
    height: 60px;
    margin: 0
}

.on-demand-section.on-demand-bg {
    background: url(../images/on-demand-bg.jpg) 0 0 no-repeat;
    padding: 50px 0 80px;
    background-size: cover
}

.on-demand-section.on-demand-bg .container-fluid {
    padding: 0 0 0 40px
}

.on-demand-section.on-demand-bg .img_ondemand {
    padding: 0
}

.on-demand-section.on-demand-bg .inner_ltab {
    padding: 0 15px
}

.on-demand-section.on-demand-bg .titleOne {
    text-align: left;
    margin: 0 0 60px;
    color: #fff;
    font-size: 32px
}

.on-demand-section.on-demand-bg .deliver {
    color: #fff;
    text-align: left
}

.on-demand-section.on-demand-bg .inner_ltab ul li {
    width: 25%
}

.on-demand-section.on-demand-bg .inner_ltab ul .nav-item a {
    white-space: nowrap;
    border: 0;
    padding: 15px 0;
    position: relative;
    border-bottom: 1px solid #939393;
    font-size: 18px;
    font-weight: 700;
    color: #fff
}

.on-demand-section.on-demand-bg .inner_ltab ul .nav-item a img {
    margin: 0 10px
}

.on-demand-section.on-demand-bg .inner_ltab ul .nav-item a.active,
.on-demand-section.on-demand-bg .inner_ltab ul .nav-item a:hover {
    background: 0
}

.on-demand-section.on-demand-bg .inner_ltab ul .nav-item a.active:after,
.on-demand-section.on-demand-bg .inner_ltab ul .nav-item a:hover:after {
    width: 100%;
    height: 2px;
    top: inherit;
    background: #fff;
    bottom: 0
}

.on-demand-section.on-demand-bg .inner_ltab .tab-content ul {
    padding: 40px 0 0;
    margin: 0;
    display: block
}

.on-demand-section.on-demand-bg .inner_ltab .tab-content ul li {
    color: #fff;
    width: 48%;
    display: flex;
    float: left;
    margin: 10px 10px 10px 0;
    font-size: 18px;
    text-align: left;
    line-height: 26px;
    flex-shrink: inherit
}

.on-demand-section.on-demand-bg .inner_ltab .tab-content ul li i {
    margin: 0 10px 0 0
}

.readyMadeRow.WhatGet .tabs ul.tab-links {
    padding: 0;
    list-style-type: none;
    margin: 40px 0 20px 0;
    text-align: center
}

.readyMadeRow.WhatGet .tabs ul.tab-links li {
    display: inline-block;
    width: 300px;
    margin: 0 -2px 0 0
}

.readyMadeRow.WhatGet .tabs ul.tab-links li a {
    font-weight: 700;
    font-size: 18px;
    color: #000;
    padding: 20px 20px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    background: #dcdcdc;
    width: 100%;
    display: inline-block;
    text-align: center
}

.readyMadeRow.WhatGet .tabs ul.tab-links li a img {
    margin: 0 10px 0 0
}

.readyMadeRow.WhatGet .tabs ul.tab-links li a:hover,
.readyMadeRow.WhatGet .tabs ul.tab-links li.active a {
    color: #fff;
    background: #1d73f8
}

.readyMadeRow.WhatGet .tabs ul.tab-links li a:hover img,
.readyMadeRow.WhatGet .tabs ul.tab-links li.active a img {
    filter: brightness(10);
    -webkit-transform: translateZ(1);
    -webkit-filter: brightness(10);
    -ms-filter: brightness(10);
    -webkit-transition: .2s ease
}

.readyMadeRow.WhatGet .tab.active {
    display: block
}

.readyMadeRow.WhatGet .tab {
    display: none
}

section.readyMadeRow.HealthRight {
    background: #f9f9f9
}

.whyAndroidRow.EngHiring .titleOne {
    text-align: center
}

.whyAndroidRow.EngHiring p {
    text-align: center;
    font-size: 16px;
    margin: 0 17% 50px
}

.EngHiring_inner {
    display: flex;
    flex-wrap: wrap;
    width: 100%
}

.EngHiring_img {
    margin: 50px 0 0;
    width: 46%;
    float: left
}

.EngHiring_img img {
    width: 100%
}

.EngHiring_content {
    margin: 0 0 0 35px;
    width: 51%;
    float: left
}

.EngHiring_content .content_inner {
    display: flex;
    margin: 0 0 55px;
    width: 100%
}

.EngHiring_content .content_inner .content {
    margin: 0 0 0 20px
}

.EngHiring_content .content_inner .content h4 {
    color: #1d73f8;
    font-size: 18px;
    font-weight: 700
}

.EngHiring_content .content_inner .content p {
    color: #333;
    font-size: 14px;
    margin: 0;
    text-align: left
}

.content_inner.Onsite {
    margin-left: -34%
}

.content_inner.Offsite {
    margin-left: -10%;
    width: 100%
}

.content_inner.Dedicated {
    margin-left: -10%
}

.content_inner.Hourly {
    margin-left: -34%
}

section.whyAndroidRow.EngHiring.AppVisuals {
    background: #f9f9f9;
    padding: 50px 0;
    margin: 0
}

.AppVisuals .owl-carousel.modalCarousel {
    box-shadow: inherit;
    border-radius: 0;
    width: 58%;
    margin: auto
}

.AppVisuals .owl-carousel.modalCarousel .owl-item img {
    width: 80%;
    margin: auto
}

.AppVisuals .owl-carousel.modalCarousel.owl-drag .owl-item.active.center .modalInsideBox {
    box-shadow: inherit;
    opacity: 1;
    background: 0;
    padding: 10px 0;
    width: 100%;
    transform: translateY(-30px)
}

.AppVisuals .modalInsideBox {
    border-radius: 0;
    padding: 0;
    opacity: .5
}

.ServicesRow.AppVisuals .modalCarousel .owl-nav button.owl-prev {
    left: -12%
}

.ServicesRow.AppVisuals .modalCarousel .owl-nav button.owl-next {
    right: -12%
}

.AppVisuals .owl-carousel.modalCarousel.owl-drag .owl-item.active.center .modalInsideBox img {
    box-shadow: 0 0 30px rgba(0, 0, 0, .21);
    border-radius: 36px;
    width: auto
}

.AppVisuals .owl-carousel .owl-stage-outer {
    padding: 50px 0
}

section.whyAndroidRow.EngHiring.AppVisuals p {
    margin: 0 15% 17px
}

.Bg_none {
    background: 0
}

.Bg_none .counter-item.service-item {
    border: 1px solid #ededed
}

.Grey_Bg {
    background: #f9f9f9
}

.readyMadeRow.WhatGet .tab .right_choice_inner .choice-item {
    padding: 15px
}

.HomeSlider.Health .carousel-item .row {
    align-items: center
}

.carousel-item {
    padding-bottom: 2px
}

.text-none {
    text-transform: none
}

.HomeSlider.awards {
    margin-bottom: 80px
}

.AwardsRow {
    background: #f5f5f5
}

.recentWorkRow.AwardsRow .tabs ul li {
    width: 175px
}

.recentWorkRow.AwardsRow .tabs ul li a {
    width: 100%;
    display: inline-block
}

.recentWorkRow.AwardsRow .right_choice_inner.best_choice_inner .choice-item .awardimg {
    margin: 0 auto 10px;
    display: flex;
    width: 200px;
    height: 140px;
    align-items: center
}

.recentWorkRow.AwardsRow .right_choice_inner.best_choice_inner .choice-item .awardimg img {
    margin: auto;
    max-width: 100%
}

.recentWorkRow.AwardsRow .right_choice_inner.best_choice_inner .choice-item .awardimg.upcity img {
    width: 100%
}

.recentWorkRow.AwardsRow .right_choice_inner.best_choice_inner .choice-item h4 {
    padding: 10px 0;
    margin: 0
}

.recentWorkRow.AwardsRow .right_choice_inner.best_choice_inner .choice-item {
    width: 100%;
    min-height: 266px
}

.ServicesRow.HistoryRow .companyInfo h2 {
    font-size: 24px
}

.ServicesRow.HistoryRow .companyInfo .mob {
    display: none
}

.core_expertise.ToolUsed .tab-links li {
    width: 33.333%
}

.TeamSpotlight {
    font-size: 0
}

.TeamSpotlight ._item {
    display: inline-block;
    vertical-align: top;
    width: 17.6%;
    margin: 0 3% 0 0
}

.TeamSpotlight ._item:last-child {
    margin: 0
}

.TeamSpotlight ._img {
    margin: 0 0 20px
}

.TeamSpotlight ._img img {
    width: 100%
}

.TeamSpotlight h2 {
    font-weight: 700;
    font-size: 20px;
    color: #161616;
    margin: 0 0 10px;
    line-height: 22px;
    text-transform: inherit
}

.TeamSpotlight p {
    font-size: 14px;
    color: #686868;
    line-height: 1.5;
    text-align: justify;
    letter-spacing: 0
}

.right_choice_inner.Benefit {
    align-items: center
}

.right_choice_inner.Benefit .choice-item {
    min-height: 100px;
    padding: 10px;
    width: 100%
}

.right_choice_inner.Benefit .choice-item h4 {
    font-size: 16px
}

.WhyLove {
    background: #f5f5f5;
    padding: 75px 0
}

.companyInfo .welove-item {
    background: #fff;
    margin: 50px 0 0;
    padding: 25px;
    border: 1px solid #ededed;
    width: 100%
}

.companyInfo .welove-item h2 {
    font-size: 20px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease
}

.companyInfo .welove-item:hover h2 {
    color: #1d73f8
}

.CurrentOpening .welove-item {
    border: 1px solid #eaeaea;
    width: 100%;
    padding: 15px;
    margin: 20px 0 0;
    min-height: inherit;
    transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out
}

.CurrentOpening .welove-item:hover {
    box-shadow: 0 4px 22px rgba(0, 0, 0, .06)
}

.CurrentOpening .welove-item h2 {
    font-size: 16px;
    margin: 0 0 5px
}

.CurrentOpening .welove-item:hover h2 {
    color: #1d73f8
}

.CurrentOpening .welove-item p {
    margin: 0 0 5px;
    font-size: 14px
}

.CurrentOpening .welove-item h2 span {
    font-weight: 400;
    font-size: 14px;
    color: #1a1a1a;
    padding: 0 0 0 5px;
    display: inline-block
}

.CurrentOpening .welove-item .location i {
    color: #1d73f8
}

.CurrentOpening .welove-item .Content {
    border-left: 1px solid #eaeaea;
    padding: 0 0 0 30px
}

.CurrentOpening .welove-item a.btn {
    border: 1px solid #eaeaea;
    transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out
}

.CurrentOpening .welove-item:hover a.btn {
    color: #fff;
    background: #1d73f8
}

section.partnershipModelsRow.stayhealth .modalBox.testi_box {
    background-color: #fff;
    box-shadow: 0 0 43px 0 rgba(0, 0, 0, .1);
    padding: 30px
}

.modalBox.testi_box .titles {
    display: flex;
    align-items: center;
    margin-bottom: 20px
}

.modalBox.testi_box .titles figure {
    margin: 0 15px 0 0;
    height: 75px;
    width: 75px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0
}

.modalBox.testi_box .titles p.clientName {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700
}

.modalBox.testi_box .titles p.clientName strong {
    font-size: 16px;
    color: #1d73f8;
    display: block
}

.modalBox.testi_box p {
    text-align: left
}

.ContactArea {
    background: #fff;
    border-bottom: 1px solid #e9e9e9;
    margin: 0 0 20px;
    padding: 50px 0
}

.partnershipModelsRow.ContactArea .modalBox {
    background: 0;
    border: 0;
    padding: 0;
    margin: 0;
    min-height: inherit;
    border-right: 1px solid #d7d7d7;
    box-shadow: inherit
}

.partnershipModelsRow.ContactArea .col-lg-4:last-child .modalBox {
    border-right: 0
}

.contact-page-form .form-group p {
    margin-bottom: 0
}

.contact-page-form {
    display: inline-block;
    border-radius: 10px;
    min-height: 350px;
    margin: 50px auto
}

.contact-page-form .col-md-8 {
    padding: 50px 30px 50px 30px;
    background: #fff;
    height: 531px
}

.contact-page-form .form-group {
    padding: 0 30px;
    position: relative;
    width: 50%;
    float: left;
    margin-bottom: 44px
}

.contact-page-form .form-group label {
    color: #979797;
    font-weight: inherit;
    text-align: left
}

.contact-page-form .form-group .form-control {
    border-color: #dfdfdf;
    opacity: 1
}

.contact-page-form .form-group .form-control::-webkit-input-placeholder {
    color: #000
}

.contact-page-form .form-group .form-control::-moz-placeholder {
    color: #000
}

.contact-page-form .form-group .form-control:-ms-input-placeholder {
    color: #000
}

.contact-page-form .form-group .form-control:-moz-placeholder {
    color: #000
}

.contact-page-form .form-group .comman-btn {
    border-color: #1866b1;
    min-width: 129px;
    float: right
}

.contact-page-form .form-group .comman-btn:hover {
    color: #fff
}

.contact-page-form .form-group.input-effect .effect-16:focus~.focus-border,
.contact-page-form .form-group.input-effect .has-content.effect-16~.focus-border {
    z-index: 99;
    background: #0084ff
}

.contact-page-form .form-group.input-effect .effect-16~label {
    z-index: 0;
    padding-left: 30px
}

.contact-page-form .form-group.input-effect .form-control {
    z-index: 1;
    padding-left: 30px
}

.contact-page-form .form-group .select {
    border-bottom: 1px solid #dfdfdf
}

.contact-page-form .form-group .select select {
    border-bottom: 0
}

.contact-page-form .form-group i {
    position: absolute;
    left: 1px;
    top: 12px;
    font-style: normal;
    color: #1d73f8;
    font-size: 20px
}

.contact-page-form .form-group i.name {
    background-position: -798px -39px;
    width: 10px;
    height: 15px
}

.contact-page-form .form-group i.email {
    background-position: -826px -39px;
    width: 17px;
    height: 12px
}

.contact-page-form .form-group i.phonenumber {
    background-position: -861px -39px;
    width: 13px;
    height: 12px;
    top: 14px
}

.contact-page-form .form-group i.category {
    background-position: -890px -39px;
    width: 14px;
    height: 12px;
    top: 14px
}

.contact-page-form .form-group i.budget {
    background-position: -922px -39px;
    width: 8px;
    height: 16px;
    top: 13px
}

.contact-page-form .form-group i.skypeid {
    background-position: -947px -39px;
    width: 19px;
    height: 18px
}

.contact-page-form .form-group.textarea i.message {
    background-position: -975px -39px;
    width: 19px;
    height: 18px;
    top: 5px
}

.contact-page-form .form-group.textarea .form-control {
    padding: 20px;
    resize: none
}

.contact-page-form .form-group.textarea .form-control.has-content,
.contact-page-form .form-group.textarea .form-control:focus {
    border-color: #0084ff !important
}

.contact-page-form .contact-link-block {
    text-align: center
}

.contact-page-form .contact-link-block .link-block {
    margin-top: 34px;
    padding-bottom: 24px;
    background: url(https://d3mds3ychln71.cloudfront.net/img/title-bg3.png) no-repeat bottom center
}

.contact-page-form .contact-link-block .link-block:last-child {
    background: 0
}

.contact-page-form .contact-link-block .link-block .img-sec {
    text-align: center;
    margin-bottom: 14px
}

.contact-page-form .contact-link-block .link-block .img-sec i {
    display: inline-block;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease
}

.contact-page-form .contact-link-block .link-block .img-sec.icon1 i {
    width: 35px;
    height: 40px;
    background: url(https://d3mds3ychln71.cloudfront.net/img/sprite.png) no-repeat -411px -36px
}

.contact-page-form .contact-link-block .link-block .img-sec.icon2 i {
    width: 86px;
    height: 41px;
    background: url(https://d3mds3ychln71.cloudfront.net/img/sprite.png) no-repeat -483px -36px
}

.contact-page-form .contact-link-block .link-block .img-sec.icon3 i {
    width: 37px;
    height: 26px;
    background: url(https://d3mds3ychln71.cloudfront.net/img/sprite.png) no-repeat -609px -50px
}

.contact-page-form .contact-link-block .link-block .img-sec.icon4 i {
    width: 29px;
    height: 29px;
    background: url(https://d3mds3ychln71.cloudfront.net/img/sprite.png) no-repeat -2px -525px
}

.contact-page-form .contact-link-block .link-block:hover .img-sec.icon1 i {
    background-position: -411px -125px
}

.contact-page-form .contact-link-block .link-block:hover .img-sec.icon2 i {
    background-position: -483px -124px
}

.contact-page-form .contact-link-block .link-block:hover .img-sec.icon3 i {
    background-position: -609px -139px
}

.contact-page-form .contact-link-block .link-block:hover .img-sec.icon4 i {
    background-position: -2px -570px
}

.contact-page-form .contact-link-block .link-block p {
    font-family: proxima-nova, sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #fff;
    margin-bottom: 0
}

.contact-page-form .contact-link-block .link-block a {
    font-family: proxima-nova, sans-serif;
    font-weight: 600;
    color: #0084ff;
    font-size: 17px;
    letter-spacing: .6px;
    line-height: 24px
}

.effect-16 {
    border: 0;
    padding: 4px 0;
    border-bottom: 1px solid #ccc;
    background-color: transparent
}

.effect-16~.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #39f;
    transition: .4s
}

.effect-16:focus~.focus-border,
.has-content.effect-16~.focus-border {
    width: 100%;
    transition: .4s
}

.effect-16~label {
    position: absolute;
    left: 0;
    width: 100%;
    top: 8px;
    color: #aaa;
    transition: .3s;
    z-index: -1;
    letter-spacing: .5px
}

.effect-16:focus~label,
.has-content.effect-16~label {
    top: -16px;
    font-size: 12px;
    color: #1d73f8;
    transition: .3s
}

.contact-page-form .form-group .form-control {
    font-weight: 300;
    font-size: 16px;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 5px 5px 6px 0;
    min-height: 39px;
    line-height: inherit;
    position: relative
}

.contact-page-form .form-group .select {
    border-bottom: 1px solid #dfdfdf
}

.form-group .select {
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    width: 100%
}

body .form-group.mobile-number {
    padding-left: 150px !important
}

.contact-page-form .form-group.fixed-animation {
    height: 49px
}

body .form-group.mobile-number .phonenumber-filed {
    width: 100%;
    float: left
}

.form-group>div {
    position: relative
}

body .form-group.mobile-number .intl-tel-input {
    position: absolute;
    left: 15px;
    width: 130px
}

body .contact-page-form .mobile-number .intl-tel-input {
    left: 30px
}

.form-group.fixed-animation select.effect-16 {
    font-size: 0
}

.form-group.fixed-animation.mobile-number select.effect-16 {
    font-size: 16px
}

.form-group.fixed-animation .effect-16:focus {
    font-size: 16px
}

.form-group.fixed-animation .effect-16.has-content {
    font-size: 16px
}

.form-group.full-block {
    width: 100%;
    float: left;
    margin: 0 0 20px;
    text-align: left
}

.form-group.textarea label {
    position: relative;
    padding-left: 30px
}

.form-group.full-block label i {
    top: 4px
}

div#RecaptchaField1 {
    float: left
}

.effect-16:focus~label,
.has-content.effect-16~label {
    top: -16px;
    font-size: 12px;
    color: #39f;
    transition: .3s
}

.MapArea img {
    width: 100%
}

.team_content {
    background: #fff;
    padding: 20px;
    text-align: center;
    -ms-transform: translate(0, 130px);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    margin: -40px 0 0;
    position: relative
}

.team_content h4 {
    font-size: 22px;
    font-weight: 700
}

.team_content p {
    font-size: 15px;
    color: #1d73f8;
    margin: 0
}

.blogsRow.TeamRow .blogItem:after {
    background: 0
}

.blogsRow.TeamRow {
    background: #f3f3f3 !important
}

.blogsRow.TeamRow .TeamRowInner {
    display: flex;
    margin: 50px 0 0
}

.blogsRow.TeamRow .blogItem {
    position: relative;
    overflow: inherit;
    margin: 0 0 30px;
    border: 1px solid #e4e4e4
}

.blogsRow.TeamRow .blogContent {
    opacity: 0;
    top: 0;
    bottom: inherit;
    text-align: center;
    transform: translate(0, 160px);
    -webkit-transform: translate(0, 160px);
    -ms-transform: translate(0, 160px);
    -ms-transform: translate(0, 130px);
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -ms-transition: all .5s ease
}

.blogsRow.TeamRow .blogItem:hover .blogContent {
    opacity: 1;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0)
}

.blogsRow.TeamRow .blogContent a:hover {
    color: #113367;
    border: 2px solid #113367
}

.blogsRow.TeamRow .blogContent a {
    color: #fff;
    font-size: 45px;
    font-weight: 400;
    width: 68px;
    height: 68px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px
}

.blogsRow.TeamRow .blogItem .imgRange {
    overflow: hidden;
    position: relative
}

.blogsRow.TeamRow .blogItem .imgRange:after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    -ms-transform: translate(0, 130px);
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transform: translate(0, 160px);
    -webkit-transform: translate(0, 160px);
    -ms-transform: translate(0, 160px)
}

.blogsRow.TeamRow .blogItem:hover .imgRange:after {
    background: #1d73f8;
    background: -moz-linear-gradient(left, #026fc7 0, #35a5a8 100%);
    background: -webkit-linear-gradient(left, #1d73f8 0, #1d73f8 100%);
    background: linear-gradient(to right, #1d73f8 0, #1d73f8 100%);
    opacity: .8;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0)
}

.blogsRow.TeamRow .blogItem:after {
    display: none
}

.blogsRow.TeamRow .blogItem:hover .team_content {
    background: #1a1a1a;
    color: #fff
}

.blogsRow.TeamRow .blogItem:hover .team_content p {
    color: #fff
}

.blogsRow.TeamRow .blogContent p {
    font-size: 20px;
    text-align: center;
    color: #fff;
    font-weight: 700
}

.blogsRow.TeamRow .blogItem .imgRange img {
    border: 40px solid #fff;
    height: auto
}

section.ServicesRow.Reasons {
    margin: 0;
    padding: 75px 0
}

section.ServicesRow.Reasons img {
    width: 100%
}

section.ServicesRow.Reasons img.reason_img {
    width: auto
}

section.ServicesRow.Reasons .aboutInfo {
    margin-top: 60px
}

section.ServicesRow.Reasons .companyInfo h2 {
    margin: -18px 0 15px;
    font-size: 24px
}

section.ServicesRow.Reasons .companyInfo p {
    line-height: 21px;
    letter-spacing: 0
}

.top_blue {
    width: 70px;
    height: 4px;
    background: #1d73f8;
    margin: 0 0 30px
}

.faq_section .card-header {
    background-color: rgba(0, 0, 0, .07)
}

.partnershipModelsRow.stayhealth.RequestRow {
    padding: 9rem 0;
    background: url(../images/requestbg.jpg) no-repeat center center;
    background-size: cover
}

.partnershipModelsRow.stayhealth.RequestRow h2 {
    text-transform: uppercase;
    font-size: 45px;
    color: #fff
}

.partnershipModelsRow.stayhealth.RequestRow p {
    font-size: 22px;
    color: #fff;
    margin: 0 20%;
    line-height: 33px
}

.RequestRow .contactRow {
    margin: 70px 0 0;
    background: #fff
}

.RequestRow p.smalltext {
    text-align: center;
    margin: 0 25%;
    font-size: 18px;
    line-height: 26px
}

.RequestRow .contactRow .contactForm {
    padding: 15px 45px 45px;
    background: 0;
    border: 0;
    border-radius: inherit
}

.RequestRow .contactRow .contactForm h4 {
    font-size: 18px;
    color: #1d73f8;
    font-weight: 500;
    margin: 30px 0 20px
}

.RequestRow .contactRow textarea.form-control {
    width: 100%;
    height: 132px
}

.RequestRow .contactRow .custom-control {
    margin: 0 0 20px
}

.RequestRow .contactRow .contactForm label {
    color: #1a1a1a;
    padding: 0 0 0 5px;
    width: 100%
}

.RequestRow .contactRow .contactForm .custom-control-label::before {
    width: 20px;
    height: 20px;
    top: 0
}

.RequestRow .contactRow .contactForm .custom-control-label::after {
    width: 20px;
    height: 20px;
    top: 0
}

.RequestRow .contactRow .custom-control.custom_radio {
    display: inline-block;
    border: 1px solid #d4d4d4;
    padding: 8px 10px 8px 35px;
    margin: 0 10px 20px 15px
}

.RequestRow .contactRow .contactForm .custom_radio .custom-control-label::after {
    height: 20px;
    width: 20px;
    top: 2px
}

.RequestRow .contactForm .custom_radio .custom-control-label::before {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
    top: 2px
}

.RequestRow .contactForm .custom_radio .custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #007bff;
    background-color: #007bff
}

.file-upload {
    background-color: #fff;
    width: 100%;
    margin: 0 auto
}

.file-upload-content {
    display: none
}

.file-upload-content .file-preview {
    float: left;
    position: relative;
    margin: 20px 20px 0 0;
    border: 1px solid #f2f2f2
}

.file-upload-content .file-preview .upload-image {
    height: 80px;
    text-align: center;
    display: flex;
    align-items: center;
    padding: 10px
}

.file-upload-content .file-preview i {
    position: absolute;
    top: -8px;
    color: #fff;
    right: -8px;
    font-size: 25px;
    background: red;
    border-radius: 50%;
    cursor: pointer
}

.file-upload-input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: 0;
    opacity: 0;
    cursor: pointer
}

.image-upload-wrap {
    margin-top: 20px;
    border: 2px dashed #ebebeb;
    position: relative
}

.image-dropping,
.image-upload-wrap:hover {
    background-color: #f4f9ff
}

.image-title-wrap {
    padding: 0 15px 15px 15px;
    color: #222
}

.drag-text {
    text-align: center;
    padding: 42px 0
}

.drag-text h3 {
    color: #000;
    padding: 10px 0 0;
    margin: 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 31px
}

.drag-text span {
    color: #777;
    font-size: 14px
}

.file-upload-image {
    max-height: 100%;
    max-width: 140px;
    margin: auto;
    padding: 0
}

.remove-image {
    margin: 0;
    color: #060606;
    background: #f2f2f2;
    border: 0;
    outline: 0;
    padding: 10px;
    border-radius: 4px;
    transition: all .2s ease;
    outline: 0;
    font-size: 14px;
    outline: inherit;
    width: 100%;
    cursor: default !important
}

.remove-image:focus {
    border: 0;
    outline: 0
}

.RequestCaptcha {
    float: left;
    margin: 0 30px 0 15px
}

.contactForm .btn.Request_btn {
    font-size: 24px;
    padding: 20px 70px;
    text-transform: uppercase
}

.HomeSlider.App_development.OnDemandRow .carousel-inner {
    width: 70%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center
}

.HomeSlider.App_development.OnDemandRow .carousel-inner p {
    width: auto;
    text-align: center;
    margin: 10px 0 50px
}

.HomeSlider.blog_banner .BannerImage {
    background: #092775;
    height: 430px
}

.hireProcessDev.on-demand.AboutRow {
    padding: 50px 0;
    background: #fafafa
}

.HomeSlider.blog_banner .BannerImage::before {
    display: none
}

.HomeSlider.App_development.OurTeam p {
    margin: 20px auto 50px
}

.contactRow.TellusRow {
    margin: 0
}

.contactRow.TellusRow .contactForm {
    padding: 15px;
    margin: 40px 0 0;
    background: 0;
    border: 0
}

.contactRow.TellusRow textarea.form-control {
    width: 100%;
    height: 200px
}

.contactRow.TellusRow .custom-select,
.contactRow.TellusRow .form-control {
    height: 60px
}

.contactRow.TellusRow p.value {
    font-size: 14px;
    margin-bottom: 0
}

.contactForm.QuestionRow {
    padding: 0;
    background: #f8faff
}

.have-a-question {
    display: flex;
    align-items: center
}

.have-a-question .text {
    width: 40%;
    padding: 50px 0 50px 50px
}

.have-a-question .text a {
    font-weight: 400
}

.have-a-question .text p {
    font-size: 22px
}

.clock-container {
    height: 125px;
    width: 125px;
    display: inline-block;
    margin: 0 0 5px 0;
    position: relative
}

.clock {
    border-radius: 50%;
    background: #fff url(../images/ios_clock.svg) no-repeat center;
    background-size: 75%;
    height: 100%;
    padding-bottom: 0;
    position: relative;
    width: 100%
}

.clock {
    min-width: 115px;
    background: url(../images/clock.png) no-repeat center/100% auto;
    border: 5px solid #07203f
}

.clock.simple:after {
    background: #000;
    border-radius: 50%;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 5%;
    height: 5%;
    z-index: 10
}

.hours-container,
.minutes-container,
.seconds-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.hours {
    background: #091410;
    height: 20%;
    left: 48.75%;
    position: absolute;
    top: 30%;
    transform-origin: 50% 100%;
    width: 2.5%;
    border-radius: 5px
}

.minutes {
    background: #091410;
    height: 40%;
    left: 49%;
    position: absolute;
    top: 10%;
    transform-origin: 50% 100%;
    width: 2%;
    border-radius: 5px
}

.seconds {
    background: #ef323a;
    height: 38%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform-origin: 50% 0;
    width: 1%;
    z-index: 8;
    border-radius: 5px
}

@keyframes rotate {
    100% {
        transform: rotateZ(360deg)
    }
}

.hours-container {
    animation: rotate 43200s infinite linear;
    position: absolute;
    z-index: 1
}

.minutes-container {
    animation: rotate 3600s infinite linear
}

.seconds-container {
    animation: rotate 60s infinite linear
}

.minutes-container {
    animation: rotate 3600s infinite steps(60)
}

.seconds-container {
    animation: rotate 60s infinite steps(60)
}

.hours:after {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    background: #091410;
    border-radius: 50%;
    position: absolute;
    bottom: auto;
    top: 90%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translate(-35%, -31%)
}

.minutes-container {
    transition: transform .3s cubic-bezier(.4, 2.08, .55, .44)
}

.seconds-container {
    transition: transform .2s cubic-bezier(.4, 2.08, .55, .44)
}

.right-form-sec {
    background: #011749;
    color: #fff;
    text-align: center;
    display: block !important
}

.right-form-sec .blue-bar {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 -15px 10px;
    color: #fff;
    padding: 40px 28px 35px 25px;
    border: 0;
    background: #1d73f8;
    text-align: left
}

.right-form-sec p {
    color: #fff;
    font-size: 14px;
    margin: 0
}

.right-form-sec p a {
    color: #fff;
}

.right-form-sec .add-col {
    padding: 10px 15px 10px
}

.right-form-sec h2 {
    font-size: 25px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    line-height: 1.1
}

.top-form {
    background: #f5f5f5;
    padding: 30px
}

.contactRow.TellusRow .form-group {
    margin: 0 0 33px
}

.readyMadeRow.CaseRow .readyMadeBox .readyMadeContent {
    width: 100%;
    bottom: 100px
}

.readyMadeRow.CaseRow .readyMadeBox h4 {
    font-weight: 400;
    background: #1a1a1a;
    color: #fff;
    position: relative;
    z-index: 1;
    padding: 20px;
    margin: 0;
    line-height: normal;
    font-size: 20px
}

.readyMadeRow.CaseRow .readyMadeBox .readyMadeContent .case-detail a {
    color: #fff;
    font-weight: 400
}

.readyMadeRow.CaseRow .readyMadeBox .readyMadeContent .case-detail a p {
    margin: 0
}

.readyMadeRow.CaseRow .readyMadeBox .readyMadeContent .case-detail a h3 {
    margin: 0;
    font-size: 20px;
    margin: 5px 0
}

.readyMadeRow.CaseRow .readyMadeBox .readyMadeContent .case-detail a.link::after {
    content: ">";
    font-size: 18px;
    line-height: 1;
    margin-left: 5px;
    vertical-align: middle
}

#myVideo {
    width: 100%
}

.recentWorkRow.PortfolioRow {
    padding: 0 0 75px 0
}

.recentWorkRow.PortfolioRow .tabs ul {
    margin-bottom: 2rem
}

.owl-carousel.globalCarousel {
    display: none
}

.core_expertise .tabs_engagement a.tabsMenu-arrow {
    display: none
}

.MobileGraphic {
    display: none
}

.on-demand-section.on-demand-bg .inner_ltab .tabs_Demand a.tabsMenu-arrow {
    display: none
}

.Feature-rich .col-lg-6,
.TechnologiesRow .col-md-4,
.WhyLove .col-lg-6,
.partnershipModelsRow .col-lg-4,
.right_choice_inner .col-lg-3,
.right_choice_inner .col-lg-4,
.right_choice_inner.Benefit .col-lg-6,
.whyAndroidRow .col-lg-4,
.whyAndroidRow .col-lg-6,
.workProcessRow .col-lg-4,
section.partnershipModelsRow.stayhealth .col-lg-6 {
    display: flex
}

.companyInfo.privacy p {
    margin: 0 0 30px
}

.companyInfo.privacy h4 {
    margin: 0 0 10px 0;
    font-size: 24px
}

.partnershipModelsRow.stayhealth.RequestRow.ThankyouRow {
    height: 100vh;
    background-position: right 20%;
    display: flex;
    align-items: center;
    padding: 0
}

.partnershipModelsRow.stayhealth.RequestRow.ThankyouRow .ThankyouRowinner {
    width: 100%
}

.partnershipModelsRow.stayhealth.RequestRow.ThankyouRow .ThankyouRowinner h2 {
    font-size: 70px
}

.partnershipModelsRow.stayhealth.RequestRow.ThankyouRow .ThankyouRowinner p {
    font-size: 28px;
    margin: 0 auto;
    line-height: 40px;
    width: 850px
}

.PortfolioBanner {
    min-height: initial
}

.workProcessRow .modalBox {
    margin: 30px 0;
    width: 100%;
    text-align: center;
    position: relative
}

.workProcessRow .modalBox:after {
    content: "";
    position: absolute;
    right: -37px;
    top: 48%;
    width: 45px;
    height: 23px;
    background: url(../images/mid_Arrow.svg) no-repeat;
    background-size: 100%
}

.workProcessRow .col-lg-4 {
    align-items: center
}

.workProcessRow .col-lg-4:nth-child(3) .modalBox:after,
.workProcessRow .col-lg-4:nth-child(6) .modalBox:after {
    display: none
}

.workProcessRow .modalBox img,
.workProcessRow .modalBox svg {
    max-width: 100%
}

.homeHeroSlider.errorRow {
    top: 0;
    margin: 0
}

.homeHeroSlider.errorRow .homeHeroSliderInner {
    background-size: auto;
    background-size: 75%;
    text-align: left;
    position: relative;
    background: 0
}

.errorImg {
    position: fixed;
    right: -13%;
    top: 0;
    animation: MoveUpDown 1s linear infinite;
    -webkit-animation-duration: 3s;
    width: 75%
}

@keyframes MoveUpDown {
    0%,
    100% {
        top: -100px
    }
    50% {
        top: 0
    }
}

.errorImg svg {
    width: 100%;
    position: absolute;
    top: -160px;
    height: 1280px
}

.Text404 {
    padding-left: 75px;
    position: relative;
    z-index: 1
}

.logo_img1 {
    width: 207px;
    margin: 0 0 20px
}

.errorRow .homeHeroSliderInner h1 {
    font-size: 6rem;
    overflow: inherit;
    color: #2175f8;
    text-transform: capitalize
}

.errorRow .homeHeroSliderInner .logo {
    float: none;
    margin: 0
}

.homeHeroSlider.errorRow .homeHeroSliderInner p {
    width: 80%;
    margin: 0;
    color: #000;
    font-weight: 400;
    font-size: 22px;
    padding: 20px 0
}

.homeHeroSlider.errorRow .homeHeroSliderInner .btn {
    text-transform: uppercase;
    border: 0;
    background: 0;
    color: #1d73f8;
    font-size: 21px;
    margin: 0;
    padding: 10px 0;
    text-transform: inherit;
    line-height: normal;
    position: relative
}

.homeHeroSlider.errorRow .homeHeroSliderInner .btn:hover {
    color: #000
}

.homeHeroSlider.errorRow .homeHeroSliderInner .btn i {
    font-size: 28px;
    margin: 2px 0 0 10px;
    vertical-align: 0;
    position: absolute
}

.homeHeroSlider.errorRow .homeHeroSliderInner .btn:hover i {
    transform: inherit;
    margin: 2px 0 0 15px
}

.homeHeroSlider.errorRow .homeHeroSliderInner:before {
    z-index: 2;
    background: #e4f2ff;
    left: -49px;
    width: 120px;
    top: -79px;
    background: #e4f2ff;
    height: 215px;
    transform: rotate(45deg);
    content: '';
    position: absolute;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease
}

.homeHeroSlider.errorRow .logo_img {
    text-align: center;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: .04;
    bottom: 0;
    display: flex
}

.homeHeroSlider.errorRow .logo_img img,
.homeHeroSlider.errorRow .logo_img svg {
    margin: auto;
    width: 500px
}

.captchRow {
    position: relative
}

.captchRow #quote-captcha-error {
    position: absolute;
    left: 15px;
    bottom: -22px
}

.RequestRow .contactRow .custom-control.custom_radio .error {
    position: absolute;
    bottom: -22px;
    left: 0
}

#quote-captcha-error {
    float: left;
    margin: 0 !important
}

.contactRow #quote-captcha-error {
    margin: 0 0 0 67px !important;
    padding: 0 !important
}

.partnershipModelsRow.stayhealth #quote-captcha-error,
.partnershipModelsRow.stayhealth.RequestRow #quote-captcha-error {
    margin: 0 !important;
    padding: 0 !important
}

.acceptprivacy {
    display: flex;
    align-items: center;
    background: #0069d9;
    position: fixed;
    width: 100%;
    z-index: 999;
    bottom: 0px;
    left: 0;
    right: 0;
    font-size: 17px;
    padding: 15px 0;
}

.acceptprivacy img {
    float: left
}

.cookies-banner__controls {
    text-align: right;
}

.acceptprivacy p {
    margin: 0px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.acceptprivacy p a {
    color: #fff;
    text-decoration: underline;
}

.acceptprivacy button {
    margin: 0;
    font-size: 15px
}

.acceptprivacy button.decline {
    background: #fff;
    color: #1d73f8;
}

.acceptprivacy button.decline:hover {
    background: #2f4497;
    color: white;
}

;
img.lazy {
    width: 100%;
    height: 100%
}

.pre-loader {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9;
    text-align: center;
    display: flex
}

.pre-loader img {
    margin: auto !important;
    width: 64px;
    height: 64px
}

.errorRow.MaintenanceRow .homeHeroSliderInner h1 {
    font-size: 3rem;
    line-height: normal
}

.MaintenanceRow .errorImg svg {
    height: 534px;
    top: 130px
}

.alert {
    display: flex;
    align-items: center;
    width: 100%
}

.alert .alert-icon {
    font-size: 22px;
    margin: 0 10px 0 0
}

.alert .alert-text {
    width: 90%;
    font-size: 14px
}

.alert .alert-close {
    float: right;
    width: 10%
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

.contactForm .g-recaptcha {
    float: none;
    transform: scale(.75);
    transform-origin: left top
}

.stayhealth .contactForm .g-recaptcha {
    transform: scale(1);
}

#ContactFormHomePage .contactForm .g-recaptcha {
    transform: scale(1);
}

.mobile-form-row {
    margin-bottom: -20px
}

.counter-hierarchy a {
    padding: 10px 14px;
    font-size: 16px;
    display: block;
    font-weight: 500;
}

.nftProject {
    margin-top: -160px;
}

.nftInside {
    background: #000000;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease-in-out;
}

.nftInside:hover,
.nftInside.active-view {
    background: #1C73F8;
}

.nftInside .nftLogo {
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.nftInside .winner {
    display: block;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 10px;
}

.nftInside img {
    margin-top: 0;
    margin-bottom: 0;
}

.nftInside h3 {
    font-weight: bold;
    font-size: 24px;
    color: #fff;
    width: 90%;
    margin-top: 20px;
}

.nftInside h3::after {
    content: '';
    background-image: url(../images/vectorNft.svg);
    width: 74px;
    height: 13px;
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
}

.linkboxnft {
    display: flex;
    color: white;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 0px;
}

.linkboxnft .nftCt {
    font-weight: bold;
    font-size: 20px;
}

.linkboxnft a {
    font-size: 18px;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
    display: flex;
    align-items: center;
    line-height: normal;
    padding: 0;
    border-radius: 25px;
    width: 100%;
    color: white;
}

.linkboxnft a i {
    margin-left: auto;
    background: #1C73F8;
    padding: 7px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.nftInside:hover a i,
.nftInside.active-view a i {
    background: #fff;
    color: #1C73F8;
    transform: translate(10px);
}

.blockchainNetworks {
    background-image: url(../images/blockchainNetworksBG.jpg);
    padding-top: 60px;
    padding-bottom: 120px;
    background-size: contain;
    background-position: center center;
}

.blockchainNetworks .nav {
    flex-direction: column;
    border: 1px solid #4D4D4D;
}

.blockchainNetworks .nav a {
    border-bottom: 1px solid #4D4D4D;
    color: white;
    padding: 15px 20px;
    font-size: 18px;
}

.blockchainNetworks .nav a.active {
    background-color: #1C73F8;
    border-color: #1C73F8;
}

.blockchainNetworks+.TechnologiesRow {
    margin: 60px 0;
}

.blockchainNetworks .contentTabs p {
    color: white;
    font-size: 16px;
    letter-spacing: 0.02em;
    line-height: 32px;
    margin-bottom: 0;
}

.layout2 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.layout2 img {
    width: 60px;
    margin-right: 20px;
}

.partnershipModelsRow .layout2 h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: normal;
    color: #1a1a1a;
    margin-top: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.partnershipModelsRow .layout2 p {
    margin-bottom: 0;
    font-size: 14px;
    color: #333;
    letter-spacing: .03em;
}

.nftDevelopment {
    padding: 60px 0;
    background: #f5f5f5;
}

.benfitRow {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    align-items: center;
}

.benfitRow ul {
    list-style: none;
    padding: 0;
}

.benfitRow ul li {
    background: #343A46;
    margin-bottom: 20px;
    color: white;
    padding: 10px 60px;
    border: 6px solid #D6D6DB;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    position: relative;
    height: 82px;
    line-height: normal;
    display: flex;
    align-items: center;
    min-width: 350px;
}

.benfitRow ul li::after {
    content: '';
    position: absolute;
    right: -1px;
    top: -1px;
    width: 126px;
    height: 83px;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.benfitRow ul li.benfit1,
.benfitRow ul li.benfit5 {
    left: 70px;
}

.benfitRow ul li.benfit3 {
    left: -20px;
}

.benfit1::after {
    background-image: url(../images/benfit1.svg);
}

.benfit2::after {
    background-image: url(../images/benfit2.svg);
}

.benfit3::after {
    background-image: url(../images/benfit3.svg);
}

.benfit4::after {
    background-image: url(../images/benfit4.svg);
}

.benfit5::after {
    background-image: url(../images/benfit5.svg);
}

.benfitRow .benfticon {
    width: 44px;
    height: 44px;
    background: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    right: 10px;
    top: 11px;
    z-index: 99;
    padding: 10px;
}

.benfitRow .benfticon img {
    width: 100%;
}

.benfitRow ul.benfitUL2 li::after {
    left: -1px;
    right: -1px;
    transform: rotateY(180deg);
}

.benfitRow ul.benfitUL2 li {
    padding-right: 0;
    padding-left: 110px;
}

.benfitRow ul.benfitUL2 li .benfticon {
    left: 10px;
    right: auto;
}

.benfitRow ul.benfitUL2 li.benfit1,
.benfitRow ul.benfitUL2 li.benfit5 {
    left: auto;
    right: 70px;
}

.benfitRow ul.benfitUL2 li.benfit3 {
    left: auto;
    right: -20px;
}

.nftMarketplaces {
    background-image: url(../images/marketplacesBG.jpg);
    padding: 60px 0 0;
}

.nftMarketplaces .container {
    max-width: 1650px;
}

.nftMarketplaces h2 {
    text-align: center;
}

.marketplaceRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5em;
}

.marketplaceRow ul {
    padding-left: 0;
}

.nftMarketplaces li {
    display: flex;
    margin-bottom: 20px;
    padding: 0;
    position: relative;
    align-items: flex-start;
    border-radius: 50px 0 0 50px;
}

.nftMarketplaces li.marketplaces1 {
    background: #A57700;
}

.nftMarketplaces li.marketplaces2 {
    background: #A20019;
}

.nftMarketplaces li.marketplaces3 {
    background: #901060;
}

.nftMarketplaces li.marketplaces4 {
    background: #1EA4B5;
    margin-bottom: 0;
}

.nftMarketplaces li.marketplaces1 .icon-marketplace {
    border-color: #966832;
}

.nftMarketplaces li.marketplaces2 .icon-marketplace {
    border-color: #890413;
}

.nftMarketplaces li.marketplaces3 .icon-marketplace {
    border-color: #6E114C;
}

.nftMarketplaces li.marketplaces4 .icon-marketplace {
    border-color: #0096B3;
}

.nftMarketplaces li .icon-marketplace {
    background-color: #fff;
    width: 90px;
    height: 90px;
    margin-right: 15px;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid transparent;
    padding: 10px;
    min-width: 90px;
    min-height: 90px;
}

.nftMarketplaces li h4 {
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    margin-top: 5px;
    margin-bottom: 5px;
}

.nftMarketplaces li p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 0;
    line-height: normal;
}

.nftMarketplaces .marketContent {
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.nftMarketplaces .marketplacesRow2 li {
    border-radius: 0 50px 50px 0;
}

.nftMarketplaces .marketplacesRow2 li .icon-marketplace {
    order: 2;
    margin-right: 0;
}

.nftMarketplaces li.marketplaces1::after {
    content: '';
    background-image: url(../images/marketplaceAfter1.svg);
    width: 206px;
    height: 300px;
    position: absolute;
    right: -181px;
    top: 0px;
    background-size: 100% 100%;
}

.nftMarketplaces li.marketplaces2::after {
    content: '';
    background-image: url(../images/marketplaceAfter2.svg);
    width: 206px;
    height: 300px;
    position: absolute;
    right: -181px;
    top: -24px;
    background-size: 100% 100%;
}

.nftMarketplaces li.marketplaces3::after {
    content: '';
    background-image: url(../images/marketplaceAfter3.svg);
    width: 206px;
    height: 300px;
    position: absolute;
    right: -181px;
    top: -48px;
    background-size: 100% 100%;
}

.nftMarketplaces li.marketplaces4::after {
    content: '';
    background-image: url(../images/marketplaceAfter4.svg);
    width: 206px;
    height: 300px;
    position: absolute;
    right: -181px;
    top: -70px;
    background-size: 100% 100%;
}

.nftMarketplaces .marketplacesRow2 li.marketplaces1::after {
    content: '';
    background-image: url(../images/marketplaceAfter1.svg);
    width: 206px;
    height: 300px;
    position: absolute;
    left: -181px;
    right: auto;
    top: 0px;
    background-size: 100% 100%;
    transform: rotateY(180deg);
}

.nftMarketplaces .marketplacesRow2 li.marketplaces2::after {
    content: '';
    background-image: url(../images/marketplaceAfter2.svg);
    width: 206px;
    height: 300px;
    position: absolute;
    left: -181px;
    right: auto;
    top: -24px;
    background-size: 100% 100%;
    transform: rotateY(180deg);
}

.nftMarketplaces .marketplacesRow2 li.marketplaces3::after {
    content: '';
    background-image: url(../images/marketplaceAfter3.svg);
    width: 206px;
    height: 300px;
    position: absolute;
    left: -181px;
    right: auto;
    top: -48px;
    background-size: 100% 100%;
    transform: rotateY(180deg);
}

.nftMarketplaces .marketplacesRow2 li.marketplaces4::after {
    content: '';
    background-image: url(../images/marketplaceAfter4.svg);
    width: 206px;
    height: 300px;
    position: absolute;
    left: -181px;
    right: auto;
    top: -70px;
    background-size: 100% 100%;
    transform: rotateY(180deg);
}

.nftMarketplaces .marketplacesRow2 li .marketContent {
    padding-left: 20px;
    padding-right: 0;
}

.marketpalceCenter {
    position: relative;
    z-index: 9;
    width: 600px;
    margin: 0 auto;
    text-align: center;
}

.nftBanner {
    background-color: #041048;
    margin-top: 80px;
    padding: 80px 0 200px;
    min-height: 600px;
    background-image: url(../images/NftbannerBg.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 50% auto;
}

.nftBanner .globalSoft {
    font-weight: bold;
    font-size: 24px;
    color: #fff;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.nftBanner .globalSoft::after {
    content: '';
    background-color: #CBCBCB;
    width: 109px;
    height: 3px;
    display: inline-block;
    margin-left: 30px;
}

.nftBanner .insideNftbanner {
    width: 75%;
    margin-bottom: 150px;
}

.nftBanner h1 {
    font-weight: bold;
    font-size: 54px;
    color: #fff;
    text-transform: uppercase;
}

.nftBanner p {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.03em;
    line-height: 34px;
    color: #fff;
    margin-bottom: 40px;
    margin-top: 20px;
}

.btn-outline {
    border: 1px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: #fff;
    color: #041048;
}

#nftSlider {
    margin-top: 60px;
}

.nftBanner .btn {
    border-radius: 30px;
    padding: 10px 30px;
}

.faq_section .titleOne {
    text-transform: none;
}

.featuresBlock .container,
.homenftProject .container {
    max-width: 75%;
}

.featuresBlock {
    background: linear-gradient(#113c59 0%, #6c7582 100%);
    padding: 60px 0 200px;
    min-height: 600px;
    position: relative;
}

.featuresBlock .titleOne {
    color: white;
    margin-bottom: 50px;
    text-transform: none;
    font-size: 36px;
}

.featuresBlock ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0px;
}

.featuresBlock ul li {
    color: #fff;
    font-weight: normal;
    font-size: 18px;
    display: flex;
    line-height: normal;
    margin-bottom: 25px;
    width: auto;
    align-items: center;
}

.featuresBlock ul li i {
    font-size: 30px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
}

.featuresBlock .btn {
    margin-right: 20px;
}

.homenftProject {
    background: #ededed;
    margin-top: -100px;
}

.homenftProject .nftInside .nftLogo {
    margin: 0 !important;
}

.homenftProject .nftInside:hover,
.homenftProject .nftInside.active-view {
    background: #1C73F8;
    margin-top: 0;
}

.homenftProject .nftInside .winner {
    margin: 15px 0;
}

.homenftProject .nftInside h3 {
    font-size: 20px;
    width: 90%;
    margin-top: 5px;
}

.homenftProject .linkboxnft {
    margin-top: 20px;
}

.homenftProject .nftInside h3::after {
    display: none;
}

.homenftProject .nftInside img {
    width: 200px;
}

.listFeatures .row {
    margin-bottom: 40px;
}

.portfolioAnimation {
    background-image: url(../images/nfts-grid.svg);
    width: 550px;
    height: 460px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: -200px
}

/* Responsive*/

@media only screen and (max-width:1680px) {
    .portfolioimg .carousel-control-next,
    .portfolioimg .carousel-control-prev {
        height: 86%
    }
    .MaintenanceRow .errorImg {
        right: 1%;
        width: 56%
    }
    .HomeSlider {
        min-height: 472px
    }
    .errorImg svg {
        top: -230px
    }
    .mainHeader nav ul {
        padding-right: 15px
    }
    .logo {
        width: 300px
    }
    .HomeSlider.App_development.Health .carousel-item img {
        width: 46%
    }
    .HomeSlider.blog_banner.Health .carousel-item img {
        width: auto
    }
    .counter-inner .content .counter-number {
        font-size: 24px
    }
    .counter-inner .icon img {
        width: 40px;
        height: 40px;
    }
    .counter-inner .content {
        padding-left: 20px;
    }
    .featuresBlock .container,
    .homenftProject .container {
        max-width: 85%;
    }
}

@media only screen and (max-width:1440px) {
    .mainHeader nav ul li.contact-info {
        margin-left: 10px
    }
    .perfectEstimate h4 {
        font-size: 2rem
    }
    .perfectEstimate h4 span {
        font-size: 18px
    }
    ._decor_h3 {
        font-size: 24px
    }
    .complexityItem h4,
    .interGray h3 {
        font-size: 18px
    }
    .MassTech .interMassTech h3 {
        font-size: 20px
    }
    .emergingTechnologiesItems h3 {
        font-size: 20px
    }
    .portfolioBoxContent h4 {
        font-size: 26px
    }
    .HomeSlider.App_development.tripMobileView .carousel-inner {
        width: 93%
    }
    .errorImg svg {
        top: -280px
    }
    .HomeSlider {
        min-height: 498px
    }
    .on-demand-section.on-demand-bg .inner_ltab ul .nav-item a {
        font-size: 16px
    }
    .whyAndroidRow .businessStardom-img.layer-1 img {
        width: 432px
    }
    .HomeSlider.App_development.blog_banner .carousel-inner {
        width: 100%
    }
    .HomeSlider .carousel-caption {
        top: 25%
    }
    .HomeSlider.App_development .carousel-caption {
        top: 10%;
        left: 2.2%;
        right: 2.2%
    }
    .HomeSlider .mouseDown {
        margin-top: 50px
    }
    .HomeSlider.App_development h1 {
        font-size: 26px
    }
    .HomeSlider.App_development h1 span {
        font-size: 44px
    }
    .HomeSlider.blog_banner h1 span {
        font-size: 44px
    }
    .HomeSlider.App_development .google_developer img {
        width: 100%
    }
    .HomeSlider .BannerImage,
    .HomeSlider.App_development .BannerImage {
        height: auto
    }
    .logo {
        width: 260px;
        margin: 0 0 0 20px
    }
    .homeHeroSliderInner h1 {
        font-size: 90px;
        line-height: 90px
    }
    .homeHeroSliderInner p {
        padding-top: 30px;
        padding-bottom: 30px
    }
    .HomeSlider.qa .BannerImage.BannerImage {
        height: 530px
    }
    .HomeSlider.Portfolio.qa .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }
    .HomeSlider.Portfolio.qa .carousel-caption {
        top: 7em
    }
    .readymade_services {
        background-size: cover
    }
    .on-demand-section.on-demand-bg .img_ondemand img {
        max-width: 100%;
        width: 100%
    }
    .on-demand-section.on-demand-bg .img_ondemand {
        align-items: center;
        display: flex
    }
    .HomeSlider.blog_banner p {
        font-size: 20px
    }
    .blogsRow.TeamRow .TeamRowInner {
        display: inline-block
    }
    .blogsRow.TeamRow .blogItem .imgRange img {
        width: 100%
    }
    .blogsRow.TeamRow .blogContent {
        top: 12%;
    }
    .mainHeader nav ul li {
        margin-left: 2px
    }
    .mainHeader nav ul li.tab-nav {
        margin-left: 0;
    }
    .nftMarketplaces li p {
        font-size: 13px;
    }
    .marketpalceCenter img {
        width: 70%;
    }
    .icon-marketplace img {
        width: 70%;
    }
    .homenftProject .nftInside h3 {
        font-size: 22px;
        width: auto;
    }
    .linkboxnft a {
        font-size: 16px;
    }
    .homenftProject .nftInside {
        padding: 20px;
    }
    .featuresBlock .titleOne {
        font-size: 28px;
    }
    .featuresBlock ul li {
        font-size: 16px;
    }
}

@media only screen and (max-width:1366px) {
    .errorImg svg {
        top: -300px
    }
    .HomeSlider {
        min-height: 472px
    }
    .featuresBlock .container,
    .homenftProject .container {
        max-width: 95%;
    }
}

@media only screen and (max-width:1299px) {
    .nftInside h3 {
        font-size: 20px;
        width: auto;
    }
    .nftBanner {
        background-size: 100% auto;
    }
    .nftInside .winner {
        font-size: 16px;
    }
    .contactRow #quote-captcha-error {
        margin: 0 0 0 15px !important
    }
    .errorRow .homeHeroSliderInner h1 {
        font-size: 4rem
    }
    .errorImg svg {
        top: -320px
    }
    .HomeSlider {
        min-height: 472px
    }
    .TeamSpotlight h2 {
        min-height: 72px
    }
    .row.companyInfo.aboutInfo .TeamSpotlight p {
        width: 100%
    }
    .workProcessRow .modalBox img,
    .workProcessRow .modalBox svg {
        max-width: 80%;
        height: auto
    }
    .whyAndroidRow.EngHiring p {
        margin: 0 13% 50px
    }
    .readyMadeRow.WhatGet .tab .right_choice_inner .choice-item h4 {
        font-size: 15px
    }
    .TechnologiesRow .techBox {
        padding: 10px
    }
    .HomeSlider h1,
    .HomeSlider.App_development h1,
    .HomeSlider.Portfolio h1 {
        font-size: 18px
    }
    .HomeSlider h1 span,
    .HomeSlider.App_development h1 span,
    .HomeSlider.Portfolio h1 span {
        font-size: 36px
    }
    .HomeSlider.blog_banner h1 span {
        font-size: 36px
    }
    .HomeSlider.App_development p {
        font-size: 16px;
        margin: 30px 0;
        width: 81%
    }
    .btn-outline-white {
        font-size: 16px
    }
    .MainServices .serviceBox {
        margin-bottom: 20px
    }
    .MainServices .inServiceBox {
        text-align: left
    }
    .MainServices .serviceBox,
    .MainServices .serviceBox.active {
        width: 33.3%
    }
    .MainServices .serviceBox.active .inServiceBox img {
        max-width: 110px
    }
    .counter-item {
        padding: 30px 25px
    }
    .right_choice_inner .choice-item {
        padding: 19px
    }
    .MainServices .inServiceBox p {
        margin-bottom: 10px
    }
    .MainServices .serviceBox.service4,
    .MainServices .serviceBox.service5 {
        margin-bottom: 0
    }
    .counter-inner .content .counter-number {
        font-size: 24px
    }
    .counter-inner .icon img {
        width: 45px;
        height: 45px
    }
    .counter-inner .content p {
        font-size: 14px
    }
    .blogsRow,
    .discussSpecialists,
    .globalRecognitionRow,
    .partnershipModelsRow,
    .recentWorkRow,
    .whoWeAreRow {
        padding: 50px 0
    }
    .discussSpecialists.core_expertise {
        padding: 50px 0 168px
    }
    .readyMadeRow {
        padding: 50px 0
    }
    .clientTestimonialsRow .leftBtn,
    .clientTestimonialsRow .rightBtn {
        width: 26px;
        height: 52px;
        background-size: 100% auto
    }
    .titleOne {
        font-size: 30px
    }
    .titleTwo {
        font-size: 30px;
        margin-bottom: 10px
    }
    .tabsMenu ul .nav-item a {
        font-size: 20px
    }
    .contentTabs ul li a {
        padding: 10px 15px;
        margin-bottom: 10px
    }
    .weAreAces .inSapce {
        padding-top: 40px;
        padding-bottom: 40px
    }
    .whoWeAreRow .orioCricle .cricle1 {
        top: -36px
    }
    .whoWeAreRow .orioCricle .cricle2 {
        bottom: -6px
    }
    .ServicesRow img {
        max-width: 100%
    }
    .counter-item.service-item {
        width: 16.666666%
    }
    .right_choice_inner.what_makes .choice-item {
        min-height: 370px
    }
    .right_choice_inner.best_choice_inner .choice-item {
        min-height: 330px
    }
    .core_expertise.engagement_hire .tab-links li {
        width: 33.333%
    }
    .core_expertise .tab-links a .tab_icon {
        width: 80px;
        height: 80px
    }
    .core_expertise.engagement_hire .tab-content .inner_section .hire_content {
        padding: 15px
    }
    .core_expertise.engagement_hire .tab-content .inner_section .hire_content h4 {
        margin: 0 0 10px 0;
        font-size: 20px
    }
    .core_expertise.engagement_hire .tab-content .inner_section .hire_content p {
        margin: 0
    }
    .discussSpecialists.core_expertise.engagement_hire {
        padding: 50px 0;
        margin: 0
    }
    HomeSlider .carousel-item img {
        width: auto
    }
    .inline-box {
        padding: 10px;
        min-height: 130px
    }
    .fixedHeader .menu {
        width: 71%
    }
    .mainHeader nav ul li a.requestBtn {
        padding: 15px 15px;
        font-size: 14px
    }
    .HomeSlider.MainSliderHome p {
        white-space: inherit;
        opacity: 1;
        animation: none;
        transition: all .3s ease;
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease
    }
    .HomeSlider.App_development .carousel-caption {
        top: 19%
    }
    .HomeSlider.App_development .google_developer {
        bottom: -27%
    }
    .logo {
        margin: 0 0 0 20px;
        width: 240px
    }
    .core_expertise .tab-links {
        overflow-x: auto;
        padding: 0;
        flex-wrap: inherit;
        display: flex
    }
    .core_expertise .tab-links li,
    .core_expertise.engagement_hire .tab-links li {
        width: 25%;
        flex-shrink: 0
    }
    .MainServices .serviceBox .inServiceBox a,
    .MainServices .serviceBox .inServiceBox p {
        display: block;
        transform: translateX(0)
    }
    .MainServices .serviceBox .inServiceBox .imgArea {
        position: absolute;
        right: 15px;
        top: 40px;
        left: auto
    }
    .hireProcessDev .cricleProcess {
        height: 200px
    }
    .hireProcessDev .cricleProcess img {
        width: 50px
    }
    .contactRow textarea.form-control {
        width: calc(100%+15px)
    }
    .listicleInsideBox a .itemInsideBox {
        padding: 25px 10px
    }
    .readymade_services .readymade_inner h4 {
        font-size: 20px
    }
    .readymade_services .readymade_inner {
        min-height: 305px
    }
    .readymade_services button.slick-arrow {
        top: -35px
    }
    .HomeSlider.App_development h1 sub {
        font-size: 32px;
        line-height: 44px
    }
    .partnershipModelsRow.stayhealth .modalBox {
        min-height: 275px;
        padding: 20px
    }
    .readyMadeRow.WhatGet .tab .right_choice_inner .choice-item {
        min-height: 310px;
        padding: 15px
    }
    .whyAndroidRow.EngHiring {
        padding: 75px 0
    }
    .EngHiring_inner {
        align-items: center
    }
    .EngHiring_content .content_inner:last-child {
        margin-bottom: 0
    }
    .EngHiring_img {
        width: 42%;
        margin: -21px 0 0
    }
    .EngHiring_content {
        width: 56%;
        margin: 0 0 0 20px
    }
    .EngHiring_content .content_inner {
        margin-bottom: 44px;
        width: 100%
    }
    .AppVisuals .owl-carousel .owl-stage-outer {
        padding: 50px 0 100px
    }
    .row.companyInfo.aboutInfo p {
        width: 93%
    }
    .row.companyInfo.aboutInfo p {
        width: 93%
    }
    .core_expertise.engagement_hire .tab-links li {
        width: 33.333%;
        flex-shrink: inherit
    }
    .on-demand-section.on-demand-bg .inner_ltab ul .nav-item a {
        font-size: 16px
    }
    .on-demand-section.on-demand-bg .inner_ltab ul .nav-item a img {
        margin: 0 5px
    }
    .inline-box .content {
        padding-left: 10px;
        width: calc(100% - 47px)
    }
    .HomeSlider.App_development .businessStardom-img {
        right: 0
    }
    .businessStardom-img.layer-1 img {
        width: 100%
    }
    .HomeSlider.App_development.tripMobileView .carousel-inner {
        width: 88%
    }
    .nftBanner h1 font-size: 44px;
}

}

@media only screen and (min-width:992px) and (max-width:1400px) {
    .mainHeader nav ul li a.requestBtn {
        padding: 10px 15px;
        font-size: 16px
    }
    .btn-outline-white,
    .discussSpecialists .btn {
        font-size: 18px
    }
    .tabsMenu ul .nav-item a {
        font-size: 18px;
        padding: 7px 0
    }
    .mainHeader nav ul li .company_menu a {
        font-size: 15px
    }
    #be-themes-back-to-top {
        bottom: 48px;
        right: 48px;
        width: 48px;
        height: 48px;
        line-height: 48px;
        font-size: 24px
    }
    .MainServices .inServiceBox h3 span {
        font-size: 20px
    }
    .MainServices .inServiceBox h3 {
        font-size: 16px
    }
    .titleOne {
        font-size: 24px
    }
    .titleTwo {
        font-size: 28px;
        font-weight: 500;
        line-height: normal
    }
    .contentTabs ul li a {
        padding: 5px 15px;
        font-size: 16px;
        margin-bottom: 10px
    }
    .weAreAces .inSapce {
        padding-top: 20px;
        padding-bottom: 20px
    }
    .contentTabs ul li a svg {
        width: 24px
    }
    .hiddenImage img {
        min-height: 100%
    }
    .informationFooter h4 {
        font-size: 18px;
        line-height: normal
    }
    .informationFooter .callInfo i {
        margin-top: -2px
    }
    .whoWeAreRow .numberRow .numberCountRow {
        font-size: 34px
    }
}
@media screen and (max-width: 1023px)
{
    .whatsappBtn, .btn.GetQuoteBtn {
    margin-right: 13px !important;
}
.right-nav-bt {
    right: 6.8%;
}

button.navbar-toggler
{
    background: transparent !important
}
i.fa.fa-bars {
    font-size: 25px;
}
}
@media screen and (max-width: 850px)
{
    .whatsappBtn, .btn.GetQuoteBtn {
    margin-right: 13px !important;
}
.right-nav-bt {
    right: 8.8%;
}
}
@media screen and (min-width: 992px) and (max-width: 1001px)
{
    
.digitalpro_banner.homemidslider {
    height: auto;
    padding: 2rem 1rem 0rem;
}

}
@media screen and (max-width: 1200px)
{
    .full-header .navbar {
    padding: 5px 25px !important;
}
}
@media screen and (min-width: 1023px) and (max-width: 1199px)
{
    .mainHeader nav ul .tabs ul.tab-links li a {
    font-size: 16px;
    }
    .mainHeader nav ul li .company_info {
    padding: 10px 0 10px 10px;
}
.mainHeader nav ul li .company_info ul li .text {
    font-size: 17px;
    padding: 0 0 0 10px;
}
.mainHeader nav ul .company_menu li a {
    margin: 8px 8px;
}
    .navbar-nav .nav-item .nav-link {
    text-transform: uppercase;
    font-size: 13px;
    }
    .whatsappBtn {
    position: relative;
    top: 0px;
    margin-right: 10px !important;
}
.lets-btn, .btn.GetQuoteBtn {
    margin-right: 10px !important;
}
    .full-header .navbar {
    padding: 5px 25px !important;
}
    .full-header .navbar {
    padding: 10px 25px !important;
}
.right-nav-bt .btn {
    font-size: 13px;
    padding: 10px 7px;
}

.btn.GetQuoteBtn {
    margin-right: 7px;
}

.lets-btn {
    background: #fff;
    border: 1px solid #e3e3e3;
    padding: 10px 10px;
    border-radius: 5px;
    font-size: 13px;
    min-width: auto;
    display: inline-flex;
}
.navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
}
}
@media only screen and (max-width: 767px)
{
    .right-nav-bt {
    position: absolute;
    /* right: -45px; */
    justify-content: end;
    right: 45px;
    z-index: -1;
}
}
@media only screen and (min-width:991px) and (max-width:1280px) {
    .nftMarketplaces li p {
        font-size: 11px;
    }
    .right_choice_inner .choice-item p {
        font-size: 13px
    }
    .partnershipModelsRow.app_services .modalBox {
        padding: 10px 7px;
        min-height: 280px
    }
    .partnershipModelsRow.app_services.service_category .modalBox {
        min-height: 300px
    }
    .informationFooter p {
        font-size: 14px
    }
    .informationFooter .callInfo {
        font-size: 14px
    }
    .whyAndroidRow .businessStardom-img.layer-1 img {
        width: 350px
    }
    .inline-box {
        padding: 15px 18px
    }
    .portfolioBox .portfolioBoxContent p {
        margin: 0
    }
    .TechnologiesRow .techBox span {
        font-size: 14px
    }
    .modalInsideBox {
        padding: 20px 20px
    }
    .modalInsideBox h3 {
        font-size: 16px;
        margin-top: 15px;
        margin-bottom: 15px
    }
    .owl-carousel.modalCarousel .owl-item img {
        width: 100px
    }
    .owl-carousel.modalCarousel.owl-drag .owl-item.active.center .modalInsideBox {
        padding-top: 40px
    }
    .ServicesRow .modalCarousel .owl-nav button.owl-next,
    .ServicesRow .modalCarousel .owl-nav button.owl-prev {
        top: 50%
    }
    .mainHeader nav ul li a.requestBtn {
        font-size: 14px
    }
    .whoAreBox {
        margin-top: -50px
    }
    .mainHeader nav ul li a {
        padding: 10px 13px
    }
}

@media only screen and (max-width:1199px) {
    .typeAppMeet .meetInside img {
        height: 303px
    }
    .contactRow #quote-captcha-error {
        margin: 0 0 0 -45px !important
    }
    .CurrentOpening .welove-item a.btn {
        font-size: 16px
    }
    .reviewBox .carousel-control-next,
    .reviewBox .carousel-control-prev {
        width: 47px
    }
    .HomeSlider {
        min-height: auto
    }
    .blogItem .imgRange img {
        height: auto
    }
    .on-demand-section.on-demand-bg .container-fluid {
        padding: 0 15px
    }
    .companyInfo .TeamSpotlight h2 {
        min-height: 48px;
        font-size: 18px
    }
    .whyAndroidRow.EngHiring p {
        margin: 0 0 50px
    }
    .HomeSlider.App_development p {
        font-size: 15px;
        margin: 10px 0 15px 0;
        width: 90%
    }
    .EngHiring_img {
        margin: 0 auto 0;
        width: 400px;
        text-align: center
    }
    .EngHiring_content {
        margin: 20px 0 0;
        width: 100%
    }
    .EngHiring_content .content_inner {
        margin: 35px 0
    }
    .readyMadeRow.CaseRow .readyMadeBox h4 {
        font-size: 16px
    }
    .readyMadeRow.CaseRow .readyMadeBox .readyMadeContent .case-detail a h3 {
        font-size: 16px
    }
    .readyMadeRow.CaseRow .readyMadeBox .readyMadeContent .case-detail a p {
        font-size: 14px
    }
    .serviceInsideBox {
        padding: 25px;
        min-height: 406px
    }
    .informationFooter h4 {
        font-size: 18px;
        line-height: normal
    }
    .inline-box .content {
        width: calc(100% - 54px)
    }
    .HomeSlider .mouseDown {
        display: none
    }
    .MainServices .inServiceBox p {
        font-size: 12px
    }
    .weAreAces::before {
        right: auto;
        left: 0;
        width: 100%;
        height: 75.1%;
        top: auto;
        bottom: 0;
        display: none
    }
    .weAreAces .col-xl-3.col-lg-12 {
        padding: 0
    }
    .weAreAces .col-xl-3.col-lg-12 .inSapce {
        padding-bottom: 0
    }
    .weAreAces .col-xl-3.col-lg-12 .inSapce h2,
    .weAreAces .col-xl-3.col-lg-12 .inSapce p {
        padding: 0 15px
    }
    .weAreAces .inSapce .tabsMenu {
        display: flex
    }
    .tabsMenu ul {
        overflow-x: auto;
        padding: 0 0 24px;
        flex-wrap: inherit;
        padding: 0;
        border-top: 1px solid #e0e0e0;
        width: 95%;
        margin: 0 auto;
        border-bottom: 1px solid #e0e0e0;
        float: left
    }
    .tabsMenu ul .nav-item {
        width: 50%;
        flex-shrink: 0;
        margin: 0;
        text-align: center
    }
    .tabsMenu ul .nav-item a {
        padding: 16px 10px;
        border-right: 1px solid #e0e0e0;
        background: #f3f3f3;
        color: #828282;
        height: 100%
    }
    .tabsMenu ul .nav-item a.active,
    .tabsMenu ul .nav-item a:hover {
        color: #000;
        background: #fff
    }
    .tabsMenu a.tabsMenu-arrow {
        color: #939393;
        padding: 17.5px 10px;
        border: 1px solid #e0e0e0;
        background: #fff;
        float: left;
        display: flex;
        align-items: center
    }
    .weAreAces .col-xl-9.col-lg-12 {
        background: #333
    }
    .TechnologiesRow .tabs_engagement ul {
        width: 90%;
        margin: 0 auto;
        border-top: 1px solid #bcbcbc;
        border-bottom: 1px solid #bcbcbc
    }
    .TechnologiesRow .tabs_engagement a.tabsMenu-arrow {
        color: #939393;
        padding: 17.5px 10px;
        border: 1px solid #bcbcbc;
        background: #fff;
        display: flex;
        align-items: center;
        width: 5%
    }
    .TechnologiesRow .tabs_engagement a.tabsMenu-arrow i {
        margin: auto
    }
    .TechnologiesRow .tabs_engagement {
        display: flex
    }
    .tabsMenu ul .nav-item a:after {
        width: 41%;
        transform: translateX(0);
        display: none
    }
    .clientTestimonialsRow .carousel-control-next,
    .clientTestimonialsRow .carousel-control-prev {
        width: auto
    }
    .contentTabs ul {
        width: calc(100% - 50px)
    }
    .MainServices .serviceBox.active .inServiceBox img {
        max-width: 90px
    }
    .informationFooter .callInfo {
        margin-bottom: 30px
    }
    .contactRow h3 {
        margin-bottom: 5px;
        font-size: 22px
    }
    .contactRow .labelTag {
        font-size: 14px;
        line-height: normal;
        margin-bottom: 20px
    }
    .contactRow .infoContact .inTop a {
        word-break: break-all
    }
    .reviewBox {
        text-align: center
    }
    .totalValue {
        margin-bottom: 30px
    }
    .contentTabs ul {
        width: 100%
    }
    .partnershipModelsRow.app_services .modalBox {
        min-height: 320px
    }
    .inline-box .content h4 {
        font-size: 16px
    }
    
    .TechnologiesRow .inSapce {
        padding: 0 0 20px;
        border: 0;
        margin: 0
    }
    .TechnologiesRow .inSapce:after {
        display: none
    }
    .HomeSlider.App_development .google_developer {
        width: 90px;
        bottom: -7%
    }
    .partnershipModelsRow.app_services.service_category .modalBox {
        padding: 10px;
        min-height: 360px
    }
    .fixedHeader .menu {
        width: 100%
    }
    .portfolioBox {
        height: 389px
    }
    .portfolioBox img {
        width: 100%
    }
    .HomeSlider .carousel-control-next,
    .HomeSlider .carousel-control-prev {
        display: none
    }
    
    .whyAndroidRow .businessStardom-img.layer-1 img {
        width: 350px
    }
    
    .HomeSlider.App_development .carousel-caption {
        top: 9%
    }
    .hireProcessDev .cricleProcess p {
        font-size: 14px;
        margin-top: 5px
    }
    .hireProcessDev .cricleProcess img {
        width: 40px
    }
    .hireProcessDev .cricleProcess {
        height: 165px;
        padding: 10px
    }
    .homeHeroSliderInner p {
        font-size: 23px;
        width: 70%
    }
    .whoWeAreRow .mtBox {
        margin-top: 0
    }
    .serviceInsideBox.serviceInsideBox2 {
        margin-top: 0
    }
    .hireProcessDev.on-demand .cricleProcess {
        height: 226px;
        padding: 10px 10px
    }
    .hireProcessDev.on-demand .cricleProcess h3 {
        font-size: 14px
    }
    .hireProcessDev.on-demand .cricleProcess p {
        font-size: 12px
    }
    .whoAreBox {
        margin-top: 0
    }
    .portfolioBox .portfolioBoxContent p {
        width: 100%;
        font-size: 14px
    }
    .reviewBox img {
        width: 100%;
        object-fit: cover
    }
    .clientTestimonialsRow .carousel-control-prev {
        left: 0
    }
    .clientTestimonialsRow .carousel-control-next {
        right: 0
    }
    .contactRow textarea.form-control {
        width: calc(100% - 44px)
    }
    .homeHeroSliderInner h1 {
        font-size: 60px;
        line-height: 60px
    }
    .informationFooter p {
        min-height: 40px
    }
    .mainHeader nav ul li a.requestBtn:hover {
        color: #fff !important;
        border: 1px solid #fff;
        background-color: transparent
    }
    .serviceInsideBox.serviceInsideBox3 {
        margin-top: 0
    }
    .HomeSlider.aboutUs .BannerImage.BannerImage {
        height: 300px
    }
    .whyAndroidRow .inline-box {
        padding: 10px
    }
    .features_area .mid_box {
        display: none
    }
    .about-us-skill-list,
    .about-us-skill-list ul {
        padding: 0
    }
    .about-us-skill-list ul li {
        padding: 20px 0;
        width: 33.33%
    }
    .about-us-skill-list ul li>div.imagebx {
        width: 100%;
        float: none;
        margin: 0 auto;
        padding: 0;
        display: flex;
        text-align: center
    }
    .about-us-skill-list ul li h6 {
        float: none;
        font-size: 18px;
        line-height: normal;
        position: inherit;
        text-align: center
    }
    .features_area .container {
        width: 100%;
        max-width: 100%
    }
    .about-us-skill-list ul li>div {
        float: none;
        width: 100%;
        padding: 0;
        text-align: center;
        margin-top: 20px
    }
    .about-us-skill-list ul li figure {
        margin: 0 auto
    }
    ul.first-list-skill li:nth-child(2) {
        margin-left: 0
    }
    ul.third-list-skill li:nth-child(2) {
        margin: 0
    }
    .listicleBox::before {
        height: 100%
    }
    .listicleInsideBox a .itemInsideBox {
        margin-bottom: 30px
    }
    .techFlow .labelService {
        margin-bottom: 10px
    }
    .techFlow .ImGCenter {
        margin-bottom: 30px
    }
    .HomeSlider.qa .BannerImage.BannerImage {
        height: 400px
    }
    .HomeSlider.Portfolio.qa .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }
    .HomeSlider.Portfolio.qa .carousel-caption {
        top: 5em
    }
    .HomeSlider.qa p {
        margin: 20px 7em 45px
    }
    .Feature-rich .counter-inner .icon img {
        width: 90px
    }
    .Feature-rich .counter-inner .icon {
        width: 100%
    }
    .Feature-rich .counter-inner .icon h4 {
        font-size: 20px
    }
    .Feature-rich .inline-box .content ul {
        padding: 20px 0 0
    }
    .HomeSlider.App_development.bg-chrome h1 span {
        font-size: 28px
    }
    .readymade_services .readymade_inner h4 {
        font-size: 16px
    }
    .readymade_services .readymade_inner .readymade_img {
        width: 150px;
        height: 150px
    }
    .readymade_services .readymade_inner {
        min-height: 255px
    }
    .readymade_services .readymade_inner {
        min-height: 260px
    }
    .readymade_services .readymade_inner .readymade_img {
        width: 150px;
        height: 150px
    }
    .readymade_services .readymade_inner .readymade_img img {
        height: 120px
    }
    .readymade_services .readymade_inner h4 {
        font-size: 18px
    }
    .Feature-rich .inline-box {
        min-height: 300px;
        padding: 15px
    }
    .Feature-rich .counter-inner .icon {
        width: 100%
    }
    .Feature-rich .counter-inner .icon img {
        width: 68px
    }
    .Feature-rich .inline-box .content ul {
        padding: 15px 0 0
    }
    .hireProcessDev.on-demand .cricleProcess img {
        width: 55px
    }
    .post_inner h6 {
        width: auto
    }
    .post_inner .post_img {
        width: 100%
    }
    .blog_inner .blog_content ul li {
        margin: 0 9px 0 0
    }
    .on-demand-section.on-demand-bg .img_ondemand {
        display: none
    }
    .on-demand-section.on-demand-bg .inner_ltab {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
    .readyMadeRow.WhatGet .tab .right_choice_inner .choice-item {
        min-height: 340px
    }
    .recentWorkRow.AwardsRow .right_choice_inner.best_choice_inner .choice-item {
        min-height: 260px
    }
    .recentWorkRow.AwardsRow .right_choice_inner.best_choice_inner .choice-item h4 {
        font-size: 16px
    }
    .TeamSpotlight ._item,
    .TeamSpotlight ._item:last-child {
        width: 26.6%;
        margin: 3%
    }
    .right_choice_inner.Benefit .choice-item {
        min-height: inherit
    }
    .welove-item {
        min-height: 285px
    }
    .blogsRow.TeamRow .blogContent {
        top: 0
    }
    section.ServicesRow.Reasons .companyInfo p {
        line-height: 18px;
        font-size: 14px
    }
    .HomeSlider.blog_banner p {
        font-size: 20px
    }
    .HomeSlider.blog_banner p {
        width: 90%
    }
    .have-a-question .text {
        width: 70%
    }
    .have-a-question img {
        width: 53%
    }
    .partnershipModelsRow.app_services.PrinciplesRow .modalBox {
        padding: 10px;
        min-height: 325px
    }
    .row.companyInfo.aboutInfo p {
        width: 80%
    }
    .row.companyInfo .welove-item p {
        width: 100%;
        font-size: 14px;
        line-height: 24px;
        margin: 0
    }
    .companyInfo .welove-item {
        padding: 15px;
        min-height: inherit
    }
    .companyInfo .welove-item h2 {
        font-size: 18px
    }
    .WhyLove {
        padding: 4px 0 20px;
        margin: 0
    }
    .HomeSlider.App_development .businessStardom-img {
        right: 0
    }
    .RequestRow .contactRow .col-sm-3 {
        -ms-flex: 0 0 49%;
        flex: 0 0 49%;
        max-width: 49%
    }
    .errorImg {
        right: -23%;
        width: 100%
    }
    .errorImg svg {
        top: -382px
    }
    .container.acceptprivacy {
        max-width: 790px
    }
    .acceptprivacy p {
        font-size: 15px
    }
    .blockchainNetworks .tabs_engagement {
        margin-bottom: 30px;
    }
    .portfolioAnimation {
        display: none;
    }
    .featuresBlock ul li {
        margin-bottom: 25px;
    }
}

@media only screen and (max-width:991px) {
    .logo a svg {
        height: 36.55px
    }
    .interGray p {
        font-size: 14px
    }
    .top-form {
        padding: 20px
    }
    .contactRow.TellusRow .contactForm {
        padding: 0
    }
    .right-form-sec .blue-bar {
        font-size: 16px;
        padding: 20px
    }
    .contactRow .contactForm {
        padding: 20px
    }
    .contactRow #quote-captcha-error {
        margin: 0 !important
    }
    .row.companyInfo.aboutInfo .TeamSpotlight p {
        text-align: left !important
    }
    .companyInfo .right_choice_tile,
    .companyInfo:hover .right_choice_tile {
        display: none
    }
    .RequestRow .contactRow .custom-control.custom_radio {
        width: 40%
    }
    .homeHeroSlider.errorRow .homeHeroSliderInner::before {
        display: none
    }
    .errorRow .homeHeroSliderInner h1 {
        font-size: 3rem
    }
    .homeHeroSlider.errorRow .homeHeroSliderInner p {
        width: 100%;
        margin: 0;
        font-weight: 400;
        font-size: 20px
    }
    .homeHeroSlider.errorRow .homeHeroSliderInner .btn {
        font-size: 16px;
        margin: 0;
        padding: 5px 0;
        line-height: normal
    }
    .homeHeroSlider.errorRow .homeHeroSliderInner .btn i {
        font-size: 22px;
        margin: 0 0 0 8px;
        vertical-align: 0
    }
    .workProcessRow .col-lg-4:nth-child(2) .modalBox:after,
    .workProcessRow .col-lg-4:nth-child(4) .modalBox:after,
    .workProcessRow .col-lg-4:nth-child(6) .modalBox:after {
        display: none
    }
    .workProcessRow .col-lg-4:nth-child(3) .modalBox:after {
        display: block
    }
    .homeHeroSlider.errorRow {
        height: 100vh;
        max-height: 100%
    }
    .partnershipModelsRow.stayhealth.RequestRow.ThankyouRow {
        padding: 7% 0 0
    }
    .partnershipModelsRow.stayhealth.RequestRow.ThankyouRow .ThankyouRowinner p {
        width: 95%;
        font-size: 22px;
        line-height: 30px
    }
    .partnershipModelsRow.stayhealth.RequestRow.ThankyouRow .ThankyouRowinner h2 {
        font-size: 50px
    }
    .HomeSlider.App_development.blog_banner .carousel-inner {
        width: 89%
    }
    .blog_inner {
        margin: 0 0 2rem
    }
    .blog_inner .blog_content h4 {
        font-size: 16px
    }
    .readyMadeRow.WeBridgeRow .titleOne {
        margin: 20px 0
    }
    .readyMadeRow.WeBridgeRow a.btn {
        margin: 13px auto 0;
        width: 121px;
        display: flex
    }
    .have-a-question .text {
        padding: 20px 0 20px 20px
    }
    .contactRow h2 {
        font-size: 24px
    }
    .have-a-question .text p {
        font-size: 18px
    }
    .serviceInsideBox {
        padding: 25px;
        min-height: 385px
    }
    .recentwork-area .col-lg-8.col-item .portfolioBox img {
        width: 158%
    }
    .HomeSlider.Portfolio .carousel-item img {
        height: 230px
    }
    .HomeSlider.Portfolio .carousel-caption {
        top: 25%
    }
    .HomeSlider.App_development .carousel-inner {
        width: 91%
    }
    .portfolio_modal .close {
        right: 15px;
        top: 15px;
        background: #1d73f8;
        z-index: 9;
        border-radius: 50%;
        position: fixed;
        margin: 0
    }
    .portfolio_modal .close i {
        color: #fff
    }
    .partnershipModelsRow.stayhealth.RequestRow h2 {
        font-size: 25px
    }
    .partnershipModelsRow.stayhealth.RequestRow p {
        font-size: 16px;
        line-height: 26px
    }
    .MainServices .inServiceBox p {
        width: 100%
    }
    .MainServices .serviceBox.active .inServiceBox .imgArea {
        display: none
    }
    .companyInfo h3 {
        font-size: 22px
    }
    .companyInfo {
        margin-top: 50px;
        margin-bottom: 30px
    }
    .whoWeAreRow .orioCricle {
        width: 430px;
        margin: auto
    }
    .reviewBox {
        margin-top: 30px
    }
    .informationFooter p {
        min-height: 70px
    }
    .weAreAces {
        border-top: 5px solid #1d73f8;
        border-left: none
    }
    .whoWeAreRow .orioCricle {
        margin: 0 auto 30px
    }
    .hiddenImage {
        display: none
    }
    .weAreAces::before {
        height: 76%
    }
    .contactRow::before {
        content: '';
        background: #f5f5f5;
        position: absolute;
        right: 0;
        width: 100%;
        height: 0;
        top: auto;
        bottom: 0
    }
    .HomeSlider p {
        font-size: 24px;
        color: #fff;
        margin: 20px auto 45px
    }
    .btn-outline-white {
        padding: 12px 25px
    }
    .finalFooter ul {
        margin-bottom: 20px
    }
    .mainHeader nav ul li a.requestBtn {
        vertical-align: top
    }
    .counter-item.service-item {
        width: 28.667%
    }
    .HomeSlider.App_development p {
        font-size: 13px;
        width: 80%
    }
    .App_development .btn-primary {
        font-size: 16px
    }
    .HomeSlider.App_development .btn-outline-white {
        margin: 20px 0 0
    }
    .right_choice_inner.what_makes .choice-item {
        min-height: 360px
    }
    .contactRow .p5 {
        background: #f5f5f5;
        margin-top: 20px
    }
    .portfolioimg {
        height: auto
    }
    .modal.portfolio_modal {
        overflow: auto
    }
    .modal.portfolio_modal .modal-dialog {
        height: auto
    }
    .portfolio_modal .modal-dialog .recentwork-area .col-item .portfolioBoxContent {
        height: auto;
        background: #fff
    }
    .MainServices .serviceBox .inServiceBox .imgArea {
        display: none
    }
    .TechnologiesRow .inSapce {
        border: 0
    }
    .TechnologiesRow .inSapce:after {
        display: none
    }
    .portfolioBox {
        height: 335px
    }
    .portfolioBox .portfolioBoxContent {
        bottom: -5px
    }
    .partnershipModelsRow.app_services.service_category .modalBox {
        min-height: 270px
    }
    .businessStardom-img.layer-1 {
        text-align: center
    }
    .whyAndroidRow .businessStardom-img.layer-1 img {
        margin: 0
    }
    .blogItem .blogContent {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0)
    }
    .HomeSlider h1,
    .HomeSlider.App_development h1,
    .HomeSlider.Portfolio h1 {
        font-size: 18px;
        margin: 0 0 10px
    }
    .HomeSlider h1 span,
    .HomeSlider.App_development h1 span,
    .HomeSlider.Portfolio h1 span {
        font-size: 26px
    }
    .HomeSlider.App_development .google_developer {
        bottom: -25%
    }
    .portfolioimg img {
        margin: 0 auto
    }
    .MainServices .inServiceBox h3 span {
        font-size: 20px
    }
    .MainServices .inServiceBox h3 {
        font-size: 16px
    }
    .MainServices .inServiceBox a {
        font-size: 14px
    }
    .hireProcessDev .cricleProcess {
        height: 200px;
        width: 200px;
        margin-bottom: 30px
    }
    .hireProcessDev .cricleProcess.cricleProcessMove {
        margin-top: 0
    }
    .hireProcessDev .cricleProcess.cricleProcessMove::after,
    .hireProcessDev .cricleProcess.cricleProcessMove::before {
        display: none
    }
    .companyInfo h3 {
        font-size: 17px
    }
    .contactRow textarea.form-control {
        width: calc(100%)
    }
    .g-recaptcha {
        float: left
    }
    .homeHeroSliderInner h1 {
        font-size: 60px;
        line-height: 60px
    }
    .homeHeroSliderInner p {
        width: 95%;
        padding: 10px 0
    }
    .finalFooter .socialFooter ul li {
        display: inline-block;
        margin: 0 4px
    }
    .blogsRow .blogItem {
        margin-bottom: 30px
    }
    .homeHeroSlider {
        max-height: 600px
    }
    .aboutInfo .imRate {
        order: 2
    }
    .AboutSemi .imRate {
        margin-bottom: 30px
    }
    .AboutSemi .imRate img {
        width: 100%
    }
    .tabsMenu ul .nav-item a {
        font-size: 14px
    }
    .tabsMenu ul .nav-item a::after {
        display: none
    }
    .companyInfo .sinceYear,
    .titleOne,
    .titleTwo {
        font-size: 25px;
        line-height: normal
    }
    .companyInfo h2 span {
        font-size: 24px
    }
    .clientTestimonialsRow h2,
    .companyInfo h2 {
        font-size: 24px;
        line-height: normal
    }
    .companyInfo .welove-item h2 {
        font-size: 18px
    }
    .companyInfo.privacy h4 {
        font-size: 20px
    }
    .inline-box .right_choice_tile {
        opacity: 1;
        visibility: visible;
        width: 5rem
    }
    .businessStardom-img.layer-1 {
        width: 60%;
        margin: 0 auto 30px
    }
    .TechnologiesRow .techBox span {
        font-size: 14px
    }
    .hireSpaceIpad {
        margin-bottom: 30px;
        text-align: center
    }
    .core_expertise .tab-links a {
        font-size: 14px
    }
    .typeAppMeet .meetInside {
        margin-bottom: 30px
    }
    .right_choice_inner .choice-item h4 {
        font-size: 16px
    }
    .HomeSlider.Portfolio.qa .carousel-caption {
        top: 5em
    }
    .HomeSlider.qa p {
        margin: 20px 4em 45px
    }
    .hireProcessDev.on-demand .col-lg {
        flex: 0 0 50%;
        max-width: 50%
    }
    .HomeSlider.App_development h1 sub {
        font-size: 20px;
        line-height: 28px
    }
    .inline-box.ready_made_inner .icon img {
        width: 80px
    }
    .inline-box.ready_made_inner .icon h2 {
        color: #fff;
        font-size: 16px
    }
    .hireProcessDev.on-demand .cricleProcess {
        height: 330px;
        width: 100%
    }
    .Feature-rich .counter-inner .icon h4 {
        font-size: 18px
    }
    .Feature-rich .inline-box {
        min-height: 360px
    }
    .SocialRow {
        padding-left: 15px
    }
    .social_links a {
        margin: 0 5px 20px;
        width: 62px
    }
    .blog_inner .blog_content ul {
        display: block
    }
    .HomeSlider.App_development.bg-chrome p {
        width: 70%
    }
    .post_inner h6 {
        width: 70%
    }
    .post_inner .post_img {
        width: 116px
    }
    .recentWorkRow .tabs ul {
        margin-bottom: 0
    }
    .recentWorkRow.PortfolioRow .tabs ul {
        margin-bottom: 0
    }
    .readyMadeRow.WhatGet .tab .right_choice_inner .choice-item {
        min-height: 280px
    }
    .AppVisuals .owl-carousel.modalCarousel {
        width: 70%
    }
    .CurrentOpening .welove-item {
        padding: 15px
    }
    .CurrentOpening .welove-item .col-lg-8 {
        padding: 20px
    }
    .CurrentOpening .welove-item .Clogo,
    .CurrentOpening .welove-item .apply {
        text-align: left !important
    }
    .HomeSlider.blog_banner h1 span {
        font-size: 26px
    }
    .HomeSlider.blog_banner p {
        font-size: 18px
    }
    .on-demand-section.on-demand-bg .inner_ltab ul {
        overflow-x: auto;
        padding: 0;
        flex-wrap: inherit;
        display: flex;
        width: 90%;
        margin: 0 auto;
        border-top: 1px solid #bcbcbc;
        border-bottom: 1px solid #bcbcbc
    }
    .on-demand-section.on-demand-bg .inner_ltab ul li {
        width: 33%;
        flex-shrink: 0
    }
    .on-demand-section.on-demand-bg .inner_ltab .tabs_Demand {
        display: flex
    }
    .on-demand-section.on-demand-bg .inner_ltab .tabs_Demand a.tabsMenu-arrow {
        color: #939393;
        padding: 17.5px 10px;
        border: 1px solid #bcbcbc;
        background: #fff;
        display: flex;
        align-items: center;
        width: 5%
    }
    .on-demand-section.on-demand-bg .inner_ltab .tabs_Demand a.tabsMenu-arrow i {
        margin: auto
    }
    .on-demand-section.on-demand-bg .inner_ltab .tab-content ul {
        border: 0;
        width: 100%
    }
    .row.companyInfo.aboutInfo p {
        width: 100%
    }
    .AboutProjectRow {
        position: inherit;
        right: inherit;
        bottom: inherit;
        padding: 0;
        display: flex;
        margin: 20px auto 0
    }
    .AboutProjectRow img {
        margin: auto
    }
    .counter-inner .content {
        padding-left: 20px
    }
    .faq_section .card-header button {
        padding: 10px 44px 10px 10px
    }
    .card-header [data-toggle=collapse].collapsed::after,
    .card-header [data-toggle=collapse]::after {
        right: 6px
    }
    .HomeSlider.App_development .businessStardom-img {
        top: -40px;
        right: 42px
    }
    .core_expertise.engagement_hire .tab-links li {
        width: 25%;
        flex-shrink: 0
    }
    .TechnologiesRow .tabs_engagement ul li {
        width: 33.333%;
        flex-shrink: 0
    }
    .TechnologiesRow .tabs_engagement.categoryTabs ul li {
        width: 50%
    }
    .core_expertise .tab-content {
        margin: -1px 0 0
    }
    .TechnologiesRow .tabs_engagement ul,
    .core_expertise .tab-links {
        width: 90%;
        margin: 0 auto;
        border-top: 1px solid #bcbcbc;
        border-bottom: 1px solid #bcbcbc
    }
    .TechnologiesRow .tabs_engagement a.tabsMenu-arrow,
    .core_expertise .tabs_engagement a.tabsMenu-arrow {
        color: #939393;
        padding: 17.5px 10px;
        border: 1px solid #bcbcbc;
        background: #fff;
        display: flex;
        align-items: center;
        width: 5%
    }
    .TechnologiesRow .tabs_engagement a.tabsMenu-arrow i,
    .core_expertise .tabs_engagement a.tabsMenu-arrow i {
        margin: auto
    }
    .TechnologiesRow .tabs_engagement,
    .core_expertise .tabs_engagement {
        display: flex
    }
    .owl-carousel.globalCarousel .owl-nav button:before,
    .partnersRow .owl-carousel.partnersCarousel .owl-nav button:before {
        content: "\f104";
        font-family: 'Line Awesome Free';
        font-weight: 900
    }
    .owl-carousel.globalCarousel .owl-nav button.owl-next:before,
    .partnersRow .owl-carousel.partnersCarousel .owl-nav button.owl-next:before {
        content: "\f105";
        font-family: 'Line Awesome Free';
        font-weight: 900
    }
    .owl-carousel.globalCarousel .owl-nav button span,
    .partnersRow .owl-carousel.partnersCarousel .owl-nav button span {
        display: none
    }
    .owl-carousel.globalCarousel .owl-nav button,
    .partnersRow .owl-carousel.partnersCarousel .owl-nav button {
        font-size: 30px;
        color: #8a8a8a;
        position: absolute;
        left: -3%;
        top: 0;
        line-height: normal;
        height: 100%;
        border: 0;
        outline: 0
    }
    .owl-carousel.globalCarousel .owl-nav button.owl-next,
    .partnersRow .owl-carousel.partnersCarousel .owl-nav button.owl-next {
        right: -3%;
        left: inherit
    }
    .aboutInfo .imRate img {
        width: 70%;
        margin: 0 auto;
        display: flex
    }
    .owl-carousel.globalCarousel .owl-stage {
        display: flex;
        align-items: center;
        text-align: center
    }
    .owl-carousel.globalCarousel .owl-stage .awardimg img {
        display: inline-block;
        width: auto
    }
    .owl-carousel.globalCarousel .owl-stage a.awardimg.upcity img {
        width: 90%
    }
    .portfolioBox .portfolioBoxContent p {
        margin: 0
    }
    .portfolioBoxContent a {
        width: auto
    }
    .application-option ul li {
        margin-bottom: 40px;
        width: 24%
    }
    .homeHeroSlider.errorRow .logo_img img,
    .homeHeroSlider.errorRow .logo_img svg {
        margin: auto;
        width: 400px
    }
    .Feature-rich .counter-inner .icon {
        min-height: 60px
    }
    #nftSlider {
        display: none;
    }
    .marketpalceCenter {
        display: none;
    }
    .marketplaceRow {
        flex-direction: column;
    }
    .nftMarketplaces li::after {
        display: none;
    }
    .nftMarketplaces li {
        border-radius: 50px !important;
    }
    .nftMarketplaces .marketplacesRow2 li .icon-marketplace {
        order: 0;
    }
    .benfitRow ul li.benfit1,
    .benfitRow ul li.benfit5 {
        left: 0;
    }
    .benfitRow ul li.benfit3 {
        left: 0;
    }
    .benfitRow ul.benfitUL2 li.benfit1,
    .benfitRow ul.benfitUL2 li.benfit5 {
        right: 0;
    }
    .benfitRow ul.benfitUL2 li.benfit3 {
        right: 0;
    }
    .nftMarketplaces .marketplacesRow2 li .marketContent {
        padding-left: 20px;
        padding-right: 20px;
    }
    .nftMarketplaces .container {
        max-width: 720px;
    }
    .marketplaceRow {
        margin-top: 2em;
    }
    .nftMarketplaces {
        padding: 60px 0;
    }
}

@media only screen and (min-device-width:414px) and (max-device-width:896px) and (orientation:landscape) {
    .portfolioimg .carousel-control-next,
    .portfolioimg .carousel-control-prev {
        height: 73%
    }
    .workProcessRow {
        display: none
    }
    .Text404 {
        padding-left: 15px
    }
    .errorImg {
        right: 0;
        top: 0;
        animation: inherit;
        animation-duration: inherit;
        -webkit-animation-duration: 3s;
        width: 100%;
        text-align: center;
        opacity: .1
    }
    .errorImg svg {
        top: -21%;
        position: inherit;
        right: -21%;
        width: 100%;
        height: 100%
    }
    .homeHeroSlider.errorRow .logo_img {
        display: none
    }
    .owl-carousel.globalCarousel {
        display: block
    }
    .globalnone {
        display: none
    }
}

@media only screen and (min-device-width:375px) and (max-device-width:812px) and (orientation:landscape) {
    .workProcessRow {
        display: none
    }
    .showing {
        overflow: auto
    }
    .HomeSlider.App_development .btn-outline-white {
        margin: 35px 0 0
    }
    .HomeSlider.App_development .carousel-caption {
        top: 15%
    }
    .inner_bg,
    .inner_ltab {
        flex: 0 0 100%;
        max-width: 100%
    }
    .inner_bg {
        margin: -2px 0 0 0
    }
    .inner_ltab ul {
        overflow-x: auto;
        padding: 0;
        flex-wrap: inherit;
        display: flex
    }
    .inner_ltab ul .nav-item a.active:after,
    .inner_ltab ul .nav-item a:hover:after {
        width: 100%;
        height: 3px;
        top: inherit;
        bottom: 0
    }
    .hireProcessDev.on-demand .cricleProcess {
        height: 330px;
        padding: 10px
    }
    .inner_bg .contentTabs {
        padding: 15px 0
    }
    .inner_bg .inner_img {
        padding: 0 0 15px 0
    }
    .on-demand-section .tabs ul.tab-links {
        margin-bottom: 2rem
    }
    .on-demand-section.on-demand-bg .inner_ltab .tab-content ul {
        display: inherit;
        padding: 20px 0 0
    }
    .on-demand-section.on-demand-bg .inner_ltab ul {
        overflow-x: auto;
        padding: 0;
        flex-wrap: inherit;
        display: flex
    }
    .on-demand-section.on-demand-bg .inner_ltab ul li {
        width: 33%;
        flex-shrink: 0
    }
    .recentWorkRow.AwardsRow .right_choice_inner.best_choice_inner .choice-item .awardimg img {
        max-width: 70%
    }
    .core_expertise.ToolUsed .tab-links li {
        width: 56.333%
    }
    .right_choice_inner.Benefit .choice-item {
        min-height: 122px
    }
    .TeamSpotlight ._item,
    .TeamSpotlight ._item:last-child {
        width: 43.6%
    }
    .right_choice_inner.Benefit .col-md-5,
    .right_choice_inner.Benefit .col-md-7 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
    .WhyLove .col-md-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
    .ContactArea .container,
    .TellUs .container {
        max-width: 100%
    }
    .partnershipModelsRow .modalBox h4 {
        font-size: 14px
    }
    .contact-page-form {
        width: 100%
    }
    .ContactArea .col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        padding: 0
    }
    .partnershipModelsRow.ContactArea .modalBox {
        padding: 0 15px
    }
    .partnershipModelsRow .modalBox a {
        font-size: 14px
    }
    .row.companyInfo.aboutInfo p {
        width: 100%
    }
    .portfolioBox:before {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, #000 100%);
        transform: translateY(0)
    }
    .portfolioBox .portfolioBoxContent {
        transform: translate(0, -30px);
        -webkit-transform: translate(0, -30px);
        -ms-transform: translate(0, -30px)
    }
    .blogsRow .blogItem:after {
        background: linear-gradient(180deg, rgba(0, 0, 0, .3) 21.88%, #000 100%);
        -webkit-background: linear-gradient(180deg, rgba(0, 0, 0, .3) 21.88%, #000 100%);
        -ms-background: linear-gradient(180deg, rgba(0, 0, 0, .3) 21.88%, #000 100%)
    }
    .carousel-control-next,
    .carousel-control-prev {
        display: none !important
    }
    .reviewBox {
        display: none
    }
    .BannerImage:after {
        background: linear-gradient(60deg, rgba(0, 23, 57, .7) 0, rgba(0, 49, 120, .7) 100%);
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        content: ""
    }
}

@media only screen and (max-width:800px) {
    .container.acceptprivacy {
        text-align: center;
        max-width: 93%;
        display: inline-block
    }
    .acceptprivacy img {
        float: none
    }
    .acceptprivacy p {
        font-size: 14px
    }
    .acceptprivacy .float-right {
        float: none !important
    }
    .acceptprivacy button {
        float: none;
        display: inline-block;
        margin: 0 1%;
    }
}

@media only screen and (max-width:768px) {
    .HomeSlider.App_development.bg-chrome p {
        width: 89%
    }
    .HomeSlider.App_development.bg-chrome .AI_banner p {
        width: 70%
    }
    .BannerImage:after {
        background: linear-gradient(60deg, rgba(0, 23, 57, .7) 0, rgba(0, 49, 120, .7) 100%);
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        content: ""
    }
}
.navbar-toggler:focus, .navbar-toggler:hover {
    outline: none;
}
@media only screen and (max-width:767px) {
    .navbar-nav .nav-item .nav-link {
    color: #fff;
    }
    .right-nav-bt {
    justify-content: center;
    width: 100%;
    padding: 10px 0;
}
.full-header .navbar {
    padding: 20px 15px;
}
    .portfolioimg .carousel-control-next,
    .portfolioimg .carousel-control-prev {
        height: 80%
    }
    .inner_bg .contentTabs p {
        font-size: 14px
    }
    .inner_bg .contentTabs .titleTwo {
        font-size: 20px;
        text-align: center
    }
    .contactForm .btn.Request_btn {
        font-size: 18px;
        padding: 10px 53px;
        display: flex;
        align-items: center
    }
    .contactForm label {
        font-size: 14px
    }
    .contactRow.TellusRow .insideRightForm .contactForm .btn {
        margin: 0 0 20px !important
    }
    .owl-carousel.globalCarousel {
        display: block
    }
    .globalnone {
        display: none
    }
    .contactRow h3 {
        font-size: 18px;
        line-height: normal
    }
    .RequestRow .contactRow .col-sm-3 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
    .RequestRow .contactRow .custom-control.custom_radio {
        margin: 0 3% 20px;
        width: 94%
    }
    .contactForm .btn.Request_btn {
        margin: 40px 0 0 15px !important
    }
    .whoWeAreRow .centerSeat .col-6 {
        display: flex
    }
    .homeHeroSliderInner h1 {
        font-size: 50px;
        line-height: 45px
    }
    .homeHeroSliderInner p {
        font-size: 20px;
        width: 100%;
        line-height: normal
    }
    .homeHeroSlider.errorRow .logo_img {
        display: none
    }
    .Text404 {
        padding-left: 15px
    }
    .errorImg {
        right: 0;
        top: 0;
        animation: inherit;
        animation-duration: inherit;
        -webkit-animation-duration: 3s;
        width: 100%;
        text-align: center;
        opacity: .1
    }
    .errorImg svg {
        top: 0;
        position: inherit;
        right: -21%;
        width: 100%;
        height: 100%
    }
    .have-a-question img {
        display: none
    }
    .have-a-question .text {
        width: 100%
    }
    .workProcessRow {
        display: none
    }
    .Feature-rich .inline-box {
        min-height: 410px
    }
    .Feature-rich .counter-inner .icon img {
        width: 50px;
        height: 50px
    }
    .Feature-rich .inline-box .content {
        padding: 0
    }
    .Feature-rich .inline-box .content p {
        font-size: 14px;
        line-height: normal
    }
    .Feature-rich .counter-inner .icon h4 {
        font-size: 16px;
        margin: 0 0 0 10px
    }
    .right_choice_inner .choice-item {
        padding: 12px
    }
    .partnershipModelsRow .modalBox {
        padding: 14px
    }
    .portfolioBox {
        height: 370px
    }
    .TeamSpotlight ._item,
    .TeamSpotlight ._item:last-child {
        width: 44%
    }
    .mainHeader nav ul li a.requestBtn {
        margin: 0 5% 50px;
        width: 91%
    }
    .informationFooter p {
        min-height: inherit
    }
    .partnershipModelsRow.stayhealth.RequestRow p {
        margin: 0
    }
    .MainServices .serviceBox,
    .MainServices .serviceBox.active {
        width: 100%
    }
    .MainServices .serviceBox.service4 {
        margin-bottom: 20px
    }
    .weAreAces img {
        width: 100%
    }
    .contentTabs ul {
        width: auto
    }
    .weAreAces .inSapce {
        padding: 20px 0
    }
    .counter-inner .icon img {
        width: 33px;
        height: auto
    }
    .counter-inner .content {
        padding-left: 0
    }
    .counter-item {
        min-height: inherit;
        padding: 12px
    }
    .blogItem,
    .readyMadeRow .readyMadeBox {
        margin-bottom: 20px
    }
    .blogItem img,
    .readyMadeRow img {
        width: 100%
    }
    .HomeSlider h1 {
        font-size: 24px
    }
    .HomeSlider h1 span {
        font-size: 34px
    }
    .HomeSlider p {
        font-size: 18px
    }
    .MainServices {
        margin-top: 20px
    }
    .owl-carousel .owl-dots {
        text-align: center;
        margin: 0 0 30px
    }
    .counter-inner .content {
        padding-left: 13px
    }
    .reviewBox img {
        height: auto
    }
    .insideRightForm {
        padding-right: 0
    }
    .finalFooter ul {
        margin-bottom: 15px
    }
    .copyright p {
        text-align: center;
        margin-top: 15px
    }
    .showing {
        overflow: auto
    }
    .flipInX {
        animation: inherit !important
    }
    .HomeSlider.App_development .carousel-caption {
        top: 25%;
        left: 3%;
        right: 3%;
        text-align: center
    }
    .HomeSlider.App_development .businessStardom-img,
    .HomeSlider.App_development .google_developer {
        display: none
    }
    .HomeSlider.App_development h1 {
        text-align: left
    }
    .partnershipModelsRow.app_services .modalBox {
        min-height: 355px;
        padding: 20px
    }
    .partnershipModelsRow.app_services .modalBox .modalBoximg {
        margin: 0 auto 0;
        height: 100px
    }
    .discussSpecialists p {
        width: 100%
    }
    .inline-box {
        min-height: 160px
    }
    .companyInfo .sinceYear,
    .titleOne {
        font-size: 26px
    }
    .companyInfo h2 span {
        font-size: 22px
    }
    .counter-item.service-item {
        width: 43.667%;
        margin: 0 3% 30px
    }
    .core_expertise .tab-links a {
        font-size: 14px;
        padding: 10px;
        border-bottom: 1px solid #ededed;
        height: 100%
    }
    .core_expertise .tab-links a .tab_icon {
        width: 60px;
        height: 60px
    }
    .core_expertise img {
        width: 50%
    }
    .core_expertise .tab-content p {
        margin: 0;
        font-size: 14px
    }
    .discussSpecialists.core_expertise {
        padding: 50px 0 133px;
        margin: 0 0 540px
    }
    .right_choice_inner.what_makes .choice-item {
        min-height: 435px
    }
    .right_choice_inner.what_makes .choice-item .modalBoximg img {
        width: auto
    }
    .core_expertise.engagement_hire .tab-links li a span {
        font-size: 13px
    }
    .core_expertise.engagement_hire .tab-content .inner_section .hire_img {
        display: none
    }
    .core_expertise.engagement_hire .tab-content .inner_section .hire_content {
        width: 100%
    }
    .core_expertise .tab-links li a .tab_icon {
        width: 40px;
        height: 40px
    }
    .core_expertise .tab-links li a .tab_icon img {
        width: 60%
    }
    #HomeSlider.Portfolio {
        padding: 0
    }
    .clientTestimonialsRow .container {
        width: 64%
    }
    .HomeSlider.Portfolio h1 span {
        font-size: 40px
    }
    nav {
        background: #fff
    }
    .reasons_area {
        display: block
    }
    .reasons_area ul {
        width: 100%
    }
    .mainHeader {
        background: #fff
    }
    .map_area {
        display: none
    }
    .informationFooter {
        margin-top: 0;
        padding: 20px 0 0
    }
    .contactRow::before {
        display: none
    }
    .recentwork-area .col-item:nth-child(3),
    .recentwork-area .col-item:nth-child(5) {
        display: block
    }
    .core_expertise .tab-links li {
        width: 39.333%
    }
    .core_expertise .tab-links li,
    .core_expertise.engagement_hire .tab-links li {
        width: 50%
    }
    .core_expertise.ToolUsed .tab-links li {
        width: 100%
    }
    .about-us-skill-list,
    .about-us-skill-list ul {
        margin: 0;
        padding: 0
    }
    .about-us-skill-list ul li {
        padding: 20px 0;
        width: 33.33%
    }
    .about-us-skill-list ul li>div.imagebx {
        width: 100%;
        float: none;
        margin: 0 auto;
        padding: 0;
        display: flex;
        text-align: center
    }
    .about-us-skill-list ul li figure {
        margin: 0 auto
    }
    .features_area .container {
        width: 100%;
        max-width: 100%
    }
    .about-us-skill-list ul li h6 {
        float: none;
        font-size: 18px;
        line-height: 25px
    }
    .about-us-skill-list ul li>div {
        float: none;
        width: 100%;
        padding: 0;
        text-align: center;
        margin-top: 20px
    }
    ul.first-list-skill li:nth-child(2) {
        margin-left: 0
    }
    ul.third-list-skill li:nth-child(2) {
        margin-right: 0
    }
    .owl-carousel.modalCarousel {
        box-shadow: none
    }
    .modalCarousel.owl-carousel .owl-item {
        text-align: center;
        float: none;
        display: inline-block
    }
    .owl-carousel.modalCarousel.owl-drag .owl-item .item {
        padding: 70px 0
    }
    .owl-carousel.modalCarousel.owl-drag .owl-item.active.center .modalInsideBox {
        transform: translateY(0);
        position: relative;
        width: 300px;
        margin: 0 auto
    }
    .ServicesRow .modalCarousel .owl-nav button.owl-prev {
        left: 40%
    }
    .ServicesRow .modalCarousel .owl-nav button.owl-next {
        right: 40%
    }
    .ServicesRow .modalCarousel .owl-nav button.owl-next,
    .ServicesRow .modalCarousel .owl-nav button.owl-prev {
        top: auto;
        bottom: 0
    }
    .HomeSlider.App_development p {
        width: auto !important;
    }
    .HomeSlider.App_development.tripMobileView .carousel-inner {
        width: calc(100% - 30px);
    }
    .HomeSlider .BannerImage.BannerImage {
        min-height: 300px;
    }
    .quote_form_wrap {
        position: static;
        left: 0;
        transform: none;
        top: 0;
        width: 100%
    }
    .HomeSlider.App_development.quotes-form .BannerImage img {
        min-height: auto !important
    }
    .col-for-text {
        margin-top: -160px;
        flex-direction: column;
        display: block !important;
        text-align: center
    }
    .HomeSlider.App_development h1 {
        text-align: center
    }
    .col-for-form {
        margin-top: 30px;
        margin-bottom: 30px
    }
    .HomeSlider.App_development h1 {
        margin-bottom: 10px;
        font-size: 18px
    }
    .HomeSlider .carousel-inner {
        width: auto
    }
    .HomeSlider h1 span,
    .HomeSlider.App_development h1 span,
    .HomeSlider.Portfolio h1 span {
        font-size: 24px
    }
    .leftSet {
        margin: 20px 0;
        text-align: right !important
    }
    .weAreAces::before {
        height: 77%
    }
    .weAreAces .inSapce {
        padding: 20px 0 0
    }
    .tabsMenu ul .nav-item {
        width: 34%
    }
    .tabsMenu ul .nav-item a {
        font-size: 13px;
        padding: 16px 5px
    }
    .tabsMenu ul .nav-item a::after {
        display: none
    }
    .tab-content .titleTwo {
        display: none
    }
    .weAreAces .tab-content {
        padding-top: 30px;
        padding-bottom: 30px
    }
    .TechnologiesRow .techBox {
        min-height: inherit
    }
    .perfectEstimate h4 {
        font-size: 30px;
        line-height: normal
    }
    .perfectEstimate h4 span {
        font-size: 18px
    }
    .techFlow {
        margin-top: 40px;
        margin-bottom: 10px
    }
    .emergingTechnologiesItems h3 {
        margin-top: 30px
    }
    .desFlowSet {
        margin-top: 35px;
        margin-bottom: 20px
    }
    .ServicesRow {
        margin-bottom: 20px;
        margin-top: 20px
    }
    .HomeSlider {
        margin-bottom: 110px
    }
    .complexityItem {
        margin-bottom: 30px
    }
    .typeAppMeet {
        margin-bottom: 10px
    }
    .emergingTechnologiesItems .row {
        padding-bottom: 0
    }
    .HomeSlider.qa p {
        margin: 20px 0 45px
    }
    .inner_ltab {
        display: flex
    }
    .on-demand-section.on-demand-bg .inner_ltab {
        display: block
    }
    .inner_ltab ul {
        overflow-x: auto;
        padding: 0;
        flex-wrap: inherit;
        display: flex;
        width: 90%;
        margin: 0 auto;
        border-top: 1px solid #bcbcbc;
        border-bottom: 1px solid #bcbcbc
    }
    .inner_ltab a.tabsMenu-arrow {
        display: block
    }
    .inner_ltab a.tabsMenu-arrow {
        color: #939393;
        padding: 17.5px 10px;
        border: 1px solid #bcbcbc;
        background: #fff;
        display: flex;
        align-items: center;
        width: 5%
    }
    .inner_ltab a.tabsMenu-arrow i {
        margin: auto
    }
    .inner_ltab ul li {
        width: 25%;
        flex-shrink: 0
    }
    .inner_bg .contentTabs ul li {
        width: 100%;
        margin: 0 0 10px 0;
        font-size: 16px
    }
    .inner_bg .contentTabs ul li i {
        font-size: 16px
    }
    .readymade_services button.slick-arrow {
        top: -13px;
        background-size: 100%;
        width: 26px;
        height: 26px
    }
    .discuss_btn {
        font-size: 18px
    }
    .readymade_services button.slick-prev {
        right: 31px
    }
    .on-demand-section .titleOne {
        font-size: 25px;
        margin: 0 0 2rem
    }
    .on-demand-section.on-demand-bg .titleOne {
        font-size: 25px
    }
    .on-demand-section .tabs ul.tab-links {
        margin-bottom: 2rem
    }
    .on-demand-section .tabs ul.tab-links li {
        width: 250px
    }
    .hireProcessDev.on-demand .cricleProcess {
        height: 270px;
        padding: 10px
    }
    .inner_bg .contentTabs {
        padding: 15px 0
    }
    .blog_inner .blog_content h4 {
        font-size: 15px
    }
    .hiddanFF {
        display: none
    }
    .pagination .page-item a {
        font-size: 12px;
        margin: 0 5px;
        padding: 10px 15px
    }
    .social_links a {
        margin: 15px 5px 20px
    }
    .ServicesRow.bloginfoDeatils {
        margin-top: 100px
    }
    .blog_inner.blog_detail .blog_content h4 {
        font-size: 26px
    }
    .HomeSlider.App_development.Health .image_none {
        display: none
    }
    .partnershipModelsRow.stayhealth .modalBox {
        padding: 10px
    }
    .readyMadeRow.WhatGet .tabs ul.tab-links li {
        width: 190px
    }
    .readyMadeRow.WhatGet .tabs ul.tab-links li a {
        font-size: 14px;
        padding: 10px 10px
    }
    .readyMadeRow.WhatGet .tabs ul.tab-links li a img {
        margin: 0 5px 0 0;
        width: auto
    }
    .readyMadeRow.WhatGet .tab .right_choice_inner .choice-item {
        min-height: 300px
    }
    .AppVisuals .owl-carousel.modalCarousel {
        width: 99%
    }
    .AppVisuals .owl-carousel.modalCarousel .owl-stage-outer {
        padding: 0
    }
    .AppVisuals .owl-carousel.modalCarousel.owl-drag .owl-item .item {
        padding: 12px 0
    }
    .AppVisuals .modalCarousel .owl-nav.disabled {
        display: none !important
    }
    .AppVisuals .owl-carousel.modalCarousel .owl-item img {
        width: 100%
    }
    .AppVisuals .owl-carousel.modalCarousel.owl-drag .owl-item.active.center .modalInsideBox {
        transform: translateY(7px)
    }
    section.whyAndroidRow.EngHiring.AppVisuals p {
        margin: 0
    }
    .whyAndroidRow.EngHiring p {
        margin: 0 0 50px
    }
    .on-demand-section.on-demand-bg .inner_ltab ul li {
        width: 50%
    }
    .ServicesRow.HistoryRow .companyInfo .mob {
        display: block
    }
    .ServicesRow.HistoryRow .companyInfo .desktop {
        display: none
    }
    .clientTestimonialsRow h2,
    .companyInfo h2 {
        margin: 20px 0
    }
    .contact-page-form {
        width: 100%
    }
    .contact-page-form .form-group {
        padding: 0;
        width: 100%
    }
    body .contact-page-form .mobile-number .intl-tel-input {
        left: 0
    }
    body .form-group.mobile-number {
        padding-left: 130px !important
    }
    .HomeSlider.OurTeam .carousel-inner {
        width: 100%
    }
    .HomeSlider.blog_banner .BannerImage {
        height: 330px
    }
    .on-demand-section.on-demand-bg .inner_ltab .tab-content ul li {
        width: 100%;
        font-size: 14px;
        margin: 5px 0
    }
    section.ServicesRow.Reasons {
        padding: 75px 0 0
    }
    section.ServicesRow.Reasons img {
        margin: 0 0 40px
    }
    .have-a-question .text p {
        font-size: 18px
    }
    .AboutProjectRow {
        width: 310px;
        height: 310px;
        max-width: 310px
    }
    .right-form-sec .blue-bar {
        text-align: center
    }
    .portfolio_modal .close img {
        display: inherit
    }
    .portfolioBox:before {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, #000 100%);
        transform: translateY(0)
    }
    .portfolioBox .portfolioBoxContent {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0)
    }
    .blogsRow .blogItem:after {
        background: linear-gradient(180deg, rgba(0, 0, 0, .3) 21.88%, #000 100%);
        -webkit-background: linear-gradient(180deg, rgba(0, 0, 0, .3) 21.88%, #000 100%);
        -ms-background: linear-gradient(180deg, rgba(0, 0, 0, .3) 21.88%, #000 100%)
    }
    .carousel-control-next,
    .carousel-control-prev {
        display: none !important
    }
    .inner_ltab ul .nav-item a.active:after,
    .inner_ltab ul .nav-item a:hover:after {
        width: 100%;
        height: 3px;
        top: inherit;
        bottom: 0
    }
    .globalRecognitionRow ul li .productItem .awardimg {
        width: auto
    }
    .contentTabs {
        text-align: center
    }
    .contentTabs a.btn-primary {
        margin: 0 auto;
        width: auto
    }
    .contentTabs a.btn-primary i {
        margin: 0 0 0 5px
    }
    .reviewBox {
        display: none
    }
    .contentTabs h2.titleTwo,
    .contentTabs ul,
    .weAreAces .contentTabs p {
        text-align: left
    }
    .aboutInfo .btn.mt-5 {
        margin: 2rem auto !important;
        width: 162px;
        display: flex
    }
    section.ServicesRow.Reasons img.reason_img {
        display: none
    }
    section.ServicesRow.Reasons .aboutInfo {
        margin-top: 0
    }
    section.ServicesRow.Reasons .companyInfo p {
        margin: 0
    }
    .right_choice_inner.Benefit img {
        margin: 0 0 30px
    }
    .homeHeroSlider.errorRow .homeHeroSliderInner p {
        font-size: 14px
    }
    .homeHeroSlider.errorRow .homeHeroSliderInner .btn {
        font-size: 14px;
        line-height: normal
    }
    .homeHeroSlider.errorRow .homeHeroSliderInner .btn i {
        font-size: 14px
    }
    .companyInfo .welove-item .MoreText p,
    .companyInfo .welove-item h2 {
        text-align: center
    }
    .companyInfo.CurrentOpening .welove-item h2 {
        text-align: left
    }
    .companyInfo .welove-item img {
        width: 140px
    }
    .emergingTechnologiesItems .row .col-md-5 {
        text-align: center
    }
    .fixedHeader .logo a svg {
        width: auto
    }
    section.ServicesRow.Reasons .companyInfo h2 {
        font-size: 20px
    }
    .benfitRow {
        flex-direction: column;
    }
    .NftCenter {
        display: none;
    }
    .benfitRow ul li {
        min-width: 420px;
    }
    .nftBanner .insideNftbanner {
        width: auto;
    }
    .featuresBlock ul li {
        width: auto;
        min-height: inherit;
        font-size: 18px;
    }
    .featuresBlock ul li i {
        font-size: 30px;
    }
}

@media only screen and (max-width:575px) {
    section.ServicesRow.Reasons .companyInfo h2 {
        font-size: 18px
    }
    .whyAndroidRow .businessStardom-img.layer-1 img {
        width: 100%
    }
    .MassTech .interMassTech {
        padding: 10px
    }
    .perfectEstimate h4 {
        font-size: 26px
    }
    .perfectEstimate h4 span {
        font-size: 16px
    }
    .listicleInsideBox .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        display: flex
    }
    .listicleInsideBox a {
        display: flex;
        transition: all .3s ease;
        width: 100%
    }
    .Feature-rich .counter-inner .icon {
        min-height: initial
    }
    .row.companyInfo .welove-item p {
        text-align: center
    }
    .companyInfo .welove-item h2 {
        text-align: center
    }
    .row.companyInfo.whyinfo.aboutInfo.mobileapp p {
        text-align: center
    }
    .row.companyInfo.whyinfo.aboutInfo.mobileapp.CurrentOpening .welove-item .col-lg-8 p {
        text-align: left
    }
    .CurrentOpening h2 {
        text-align: center
    }
    .CurrentOpening .welove-item h2 {
        text-align: left
    }
    .top-form {
        padding: 10px
    }
    .top-form>p {
        text-align: center
    }
    .contactRow.TellusRow .contactForm {
        padding: 5px;
        margin: 20px 0 0
    }
    .portfolioBox .portfolioBoxContent h4 {
        font-size: 20px
    }
    .recentWorkRow.AwardsRow .tabs ul li {
        width: 160px
    }
    .RequestRow .contactRow .contactForm label {
        font-size: 14px
    }
    .on-demand-section.on-demand-bg .deliver {
        font-size: 16px
    }
    .on-demand-section.on-demand-bg .titleOne {
        font-size: 20px
    }
    .errorRow .homeHeroSliderInner h1 {
        line-height: 70px
    }
    .partnershipModelsRow.stayhealth.RequestRow.ThankyouRow .ThankyouRowinner p {
        font-size: 18px;
        line-height: 25px
    }
    .partnershipModelsRow.stayhealth.RequestRow.ThankyouRow .ThankyouRowinner h2 {
        font-size: 32px
    }
    .EngHiring_img {
        width: 80%
    }
    .mainHeader nav ul li a.requestBtn {
        margin: 0 8%;
        width: 86%
    }
    .finalFooter .officeRow ul {
        margin: 0 0 0 29px;
        display: inline-block
    }
    .finalFooter .officeRow ul li:nth-child(1),
    .finalFooter .officeRow ul li:nth-child(3) {
        margin: 0 13% 0 0;
        width: 48%
    }
    .finalFooter .officeRow ul li:nth-child(2),
    .finalFooter .officeRow ul li:nth-child(4) {
        width: 37%
    }
    .officeRow {
        text-align: center
    }
    .inner_ltab ul li {
        width: 34%
    }
    .inner_ltab a.tabsMenu-arrow {
        width: 10%
    }
    .TechnologiesRow .tabs_engagement ul li {
        width: 50%
    }
    .tabsMenu ul .nav-item {
        width: 51%
    }
    .core_expertise .tabs_engagement a.tabsMenu-arrow {
        width: 10%
    }
    .have-a-question .text {
        width: 100%;
        padding: 0
    }
    .have-a-question img {
        display: none
    }
    .tabsMenu a.tabsMenu-arrow {
        width: auto
    }
    .whoWeAreRow .orioCricle {
        width: 100%
    }
    .whoWeAreRow .numberRow span {
        font-size: 24px
    }
    .whoWeAreRow .numberRow .numberCountRow {
        font-size: 24px
    }
    .whoWeAreRow .numberRow {
        font-size: 14px;
        line-height: normal
    }
    .portfolioBox img {
        height: auto
    }
    .contentTabs ul li a {
        font-size: 14px
    }
    .MoreText {
        margin-top: 14px
    }
    .companyInfo .sinceYear,
    .titleOne,
    .titleTwo {
        font-size: 20px;
        line-height: normal;
        text-align: center
    }
    .deliver {
        font-size: 15px;
        text-align: center
    }
    .contactRow .labelTag {
        text-align: center
    }
    .contactRow .right_choice_tile {
        margin: 0 auto 35px
    }
    .companyInfo h2 span {
        font-size: 18px
    }
    .companyInfo h2 {
        font-size: 20px;
        line-height: normal;
        text-align: center
    }
    .companyInfo.privacy h4 {
        font-size: 18px
    }
    .contactRow h2 {
        font-size: 20px
    }
    .have-a-question {
        text-align: center
    }
    .insideRightForm .contactForm .have-a-question a.btn {
        margin: 10px auto !important;
        width: 210px;
        float: none !important
    }
    .have-a-question .text p {
        font-size: 16px
    }
    .discussSpecialists h2,
    .discussSpecialists.perfectly_connect h2 {
        font-size: 26px
    }
    .TechnologiesRow .inSapce p,
    .clientTestimonialsRow p,
    .core_expertise p,
    .discussSpecialists p,
    .partnershipModelsRow p,
    .readyMadeRow p,
    .recentWorkRow p,
    .whyAndroidRow p {
        font-size: 16px
    }
    .discussSpecialists p {
        font-size: 16px
    }
    .discussSpecialists .btn {
        font-size: 18px
    }
    .whyAndroidRow {
        padding: 50px 0 0
    }
    .clientTestimonialsRow .carousel-inner {
        margin-top: 20px
    }
    .clientTestimonialsRow p.testimonial .quote {
        display: none
    }
    .discussSpecialists p {
        width: auto
    }
    .contactRow .infoContact .inTop {
        margin-bottom: 20px
    }
    .clientTestimonialsRow p.testimonial .quote {
        width: 26px;
        height: 34px;
        float: none;
        background-size: 100% auto;
        margin: auto
    }
    .companyInfo .logoProBox {
        text-align: center
    }
    .HomeSlider .carousel-control-next,
    .HomeSlider .carousel-control-prev {
        width: auto;
        height: 50px
    }
    .HomeSlider .carousel-caption {
        left: 5%;
        right: 5%;
        top: 18%
    }
    .logo img {
        width: 250px
    }
    .MainServices .inServiceBox {
        height: auto
    }
    .contentTabs ul li a svg {
        vertical-align: -14px;
        width: 20px
    }
    .globalRecognitionRow .productItem h4 {
        font-weight: 400;
        font-size: 16px;
        margin: 7px 0
    }
    .clientTestimonialsRow::after,
    .clientTestimonialsRow::before {
        display: none
    }
    .clientTestimonialsRow .carousel-control-next,
    .clientTestimonialsRow .carousel-control-prev {
        display: none
    }
    .contactRow::before {
        height: 44%
    }
    .HomeSlider h1,
    .HomeSlider.App_development h1,
    .HomeSlider.Portfolio h1 {
        font-size: 18px;
        text-align: center;
        margin-bottom: 16px
    }
    .HomeSlider h1 span,
    .HomeSlider.App_development h1 span,
    .HomeSlider.Portfolio h1 span {
        font-size: 24px
    }
    .HomeSlider.App_development.OnDemandRow h1 span {
        font-size: 16px
    }
    .menu-icon {
        padding: 7px 24px
    }
    .HomeSlider a.btn {
        font-size: 14px;
        padding: 8px 15px;
        display: inline-block;
        margin-top: 0 !important
    }
    .counter-item.service-item h3 {
        font-size: 14px
    }
    .right_choice_inner .choice-item {
        min-height: inherit
    }
    .partnershipModelsRow.app_services.service_category .modalBox {
        padding: 10px 10px 30px;
        min-height: inherit
    }
    .application-option ul li {
        width: 49%;
        padding: 0 5px
    }
    .right_choice_inner.what_makes .choice-item {
        min-height: inherit
    }
    .partnershipModelsRow.app_services .modalBox {
        min-height: inherit
    }
    .core_expertise .tabs {
        position: inherit
    }
    .discussSpecialists.core_expertise {
        padding: 50px 0 15px;
        margin: 0
    }
    .right_choice_inner.best_choice_inner .choice-item {
        min-height: inherit;
        margin: 0 !important
    }
    .core_expertise .tab-links li a .tab_icon img {
        width: 50%
    }
    .recentWorkRow .tabs ul li {
        margin: 0 5px
    }
    .recentWorkRow .tabs ul li a {
        font-size: 14px;
        padding: 14px
    }
    .clientTestimonialsRow .container {
        width: 100%
    }
    .post_inner h6 {
        width: 60%
    }
    .inline-box {
        min-height: inherit;
        padding: 25px
    }
    .counter-inner .icon img {
        height: 68px
    }
    .contactForm .btn {
        float: left !important
    }
    .totalValue {
        margin-bottom: 20px
    }
    .TechnologiesRow .col-md-4 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
    .TechnologiesRow .techBox {
        padding: 10px;
        margin-bottom: 20px;
        min-height: 120px
    }
    .TechnologiesRow .techBox span {
        font-size: 12px;
        margin: 10px 0 0
    }
    .about-us-skill-list ul li {
        padding: 22px 0;
        width: 100%
    }
    .hireProcessDev .cricleProcess {
        margin-left: auto;
        margin-right: auto
    }
    .ServicesRow .modalCarousel .owl-nav button.owl-prev {
        left: 35%
    }
    .ServicesRow .modalCarousel .owl-nav button.owl-next {
        right: 35%
    }
    .owl-carousel.modalCarousel.owl-drag .owl-item.active.center .modalInsideBox {
        box-shadow: 0 4px 15px rgba(0, 0, 0, .15)
    }
    .owl-carousel.modalCarousel.owl-drag .owl-item .item {
        padding: 15px 0
    }
    .contactRow .contactForm {
        padding: 20px
    }
    .clientTestimonialsRow h2 {
        font-size: 20px
    }
    .homeHeroSliderInner p {
        width: auto;
        font-size: 17px;
        line-height: normal
    }
    .contactRow {
        margin-bottom: 30px
    }
    .finalFooter {
        padding: 20px 0 15px 0
    }
    .informationFooter {
        margin-bottom: 0
    }
    .informationFooter h4 {
        font-size: 20px;
        line-height: normal;
        margin-bottom: 10px
    }
    .portfolioBox:before {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, #000 100%);
        transform: translateY(0)
    }
    .portfolioBox .portfolioBoxContent {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0)
    }
    .g-recaptcha {
        float: none
    }
    .contactRow .totalValue {
        margin-top: 20px
    }
    .homeHeroSliderInner p br {
        display: none
    }
    .serviceInsideBox h3 {
        font-size: 14px;
        margin-top: 30px
    }
    .serviceInsideBox h3 span {
        font-size: 18px
    }
    .centerSeat {
        text-align: left
    }
    .serviceInsideBox img {
        width: 40px;
        float: none;
        margin: 0
    }
    .serviceInsideBox {
        padding: 10px;
        min-height: inherit
    }
    .serviceInsideBox::before {
        width: 160px;
        height: 152px;
        left: -50px
    }
    .whoWeAreRow p {
        font-size: 14px
    }
    .blogsRow .mb-5 {
        margin-bottom: 0 !important
    }
    .HomeSlider.aboutUs .BannerImage.BannerImage {
        height: 250px
    }
    .HomeSlider.aboutUs .Portfolio .carousel-item img {
        height: auto
    }
    .discussSpecialists .btn {
        font-size: 16px
    }
    .readyMadeRow {
        padding-bottom: 0
    }
    .readyMadeRow.work_process {
        padding-bottom: 50px
    }
    .partnershipModelsRow {
        padding-bottom: 0
    }
    .recentWorkRow {
        padding-top: 30px !important
    }
    .ServicesRow,
    .companyInfo {
        margin-bottom: 30px
    }
    .HomeSlider {
        margin-bottom: 100px
    }
    .listicleInsideBox a .itemInsideBox {
        width: 220px;
        margin: 0 auto 30px
    }
    .HomeSlider.Portfolio.qa .carousel-caption {
        top: 3em
    }
    .on-demand-section .titleOne {
        font-size: 20px
    }
    .readymade_services {
        background-position: 80% 0
    }
    .on-demand-section .tabs ul.tab-links li {
        width: 49%
    }
    .Feature-rich .inline-box {
        min-height: inherit
    }
    .Feature-rich .inline-box .content {
        padding: 20px 0 0
    }
    .HomeSlider.blog_banner p {
        font-size: 16px
    }
    .blog_inner.blog_detail .blog_content h4 {
        font-size: 20px
    }
    .blog_detail h5 {
        font-size: 18px;
        margin: 20px 0 10px
    }
    .HomeSlider .BannerImage.BannerImage {
        height: 250px;
        display: flex;
        align-items: center
    }
    .on-demand-section.on-demand-bg {
        background-size: cover
    }
    .partnershipModelsRow.stayhealth .modalBox {
        min-height: inherit
    }
    .on-demand-section.on-demand-bg .inner_ltab ul li {
        width: 100%
    }
    .on-demand-section.on-demand-bg .inner_ltab .tabs_Demand a.tabsMenu-arrow {
        width: 10%
    }
    .on-demand-section.on-demand-bg .inner_ltab .tab-content ul {
        display: inline-block
    }
    .on-demand-section.on-demand-bg .inner_ltab .tab-content ul li {
        width: 100%;
        display: inherit;
        flex-shrink: inherit;
        position: relative;
        padding: 0 0 0 30px
    }
    .on-demand-section.on-demand-bg .inner_ltab .tab-content ul li i {
        margin: 0;
        position: absolute;
        top: 3px;
        left: 0
    }
    .readyMadeRow.WhatGet .tab .right_choice_inner .choice-item {
        min-height: inherit
    }
    .AppVisuals .owl-carousel.modalCarousel.owl-drag .owl-item.active.center .modalInsideBox img {
        border-radius: 18px
    }
    .readyMadeRow.WhatGet .tabs ul.tab-links li {
        width: 170px
    }
    .readyMadeRow.WhatGet .tabs ul.tab-links li a {
        font-size: 12px;
        padding: 10px 10px
    }
    .recentWorkRow.AwardsRow .right_choice_inner.best_choice_inner .choice-item {
        min-height: inherit;
        margin-bottom: 20px !important;
        padding: 20px
    }
    .contact-page-form .form-group .comman-btn {
        float: left;
        margin: 20px 0 0
    }
    .partnershipModelsRow.ContactArea .modalBox {
        border: 0;
        padding: 20px 0
    }
    .HomeSlider.blog_banner p {
        margin: 20px 0
    }
    .team_content {
        padding: 15px
    }
    .AboutProjectRow {
        width: 250px;
        height: 250px;
        max-width: 250px
    }
    .AboutProjectRow img {
        width: 100%
    }
    .partnersRow .partnerItem {
        padding: 0 10px
    }
    .partnersRow .owl-carousel.partnersCarousel .owl-nav button {
        left: 0
    }
    .partnersRow .owl-carousel.partnersCarousel .owl-nav button.owl-next {
        right: 0
    }
    .owl-carousel.globalCarousel .owl-nav button {
        left: 2%
    }
    .owl-carousel.globalCarousel .owl-nav button.owl-next {
        right: 2%
    }
    .informationFooter {
        padding: 0
    }
    .informationFooter .col-md-4 {
        border-bottom: 1px solid #5a5a5a;
        padding: 25px 15px
    }
    .informationFooter .callInfo {
        margin-bottom: 0
    }
    .socialFooter {
        margin: 25px 0 0
    }
    .HomeSlider.App_development .carousel-inner {
        width: calc(100% - 30px);
        text-align: center
    }
    .owl-carousel.globalCarousel .owl-stage a.awardimg.upcity img {
        width: 70%
    }
    .partnersRow .partnerItem img {
        width: 72%
    }
    .partnersRow .partnerItem.isobrand img {
        width: auto
    }
    .TechnologiesRow .tabs_engagement a.tabsMenu-arrow {
        width: auto
    }
    .ResourcesRow {
        display: none
    }
    .finalFooter ul li {
        width: 50%;
        float: left
    }
    .finalFooter .socialFooter ul li {
        width: auto
    }
    .leftSet,
    .socialFooter {
        margin: 20px 0;
        width: 50%
    }
    .leftSet img {
        max-width: 100%
    }
    .whoWeAreRow p.none {
        display: none
    }
    .whoWeAreRow a.Learnmore {
        margin: 0 auto;
        display: flex;
        width: 160px;
        align-items: center
    }
    .whoWeAreRow a.Learnmore i {
        margin: 0 0 0 5px
    }
    .GraphicNone {
        display: none
    }
    .MobileGraphic {
        display: block;
        margin: 0 0 20px
    }
    .container>p {
        text-align: center
    }
    ._decor_h3 {
        font-size: 19px
    }
    .applicationDevelopmentTech p,
    .emergingTechnologiesBlock p,
    .typeAppBlock p {
        text-align: left
    }
    .contentTabs h2.titleTwo,
    .weAreAces .col-xl-3.col-lg-12 .inSapce p,
    .weAreAces .contentTabs p {
        width: 100%;
        text-align: center
    }
    .RequestRow .contactRow .contactForm {
        padding: 0 20px 20px
    }
    .companyInfo .TeamSpotlight h2 {
        min-height: 28px;
        font-size: 14px;
        text-align: left
    }
    .logo_img1 {
        width: 207px;
        margin: 0
    }
    .portfolio_modal .close {
        font-size: 36px
    }
    .contactForm.QuestionRow {
        padding: 30px 0
    }
    .featuresBlock .btn {
        margin-right: 0;
        width: 100%;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width:420px) {
    .errorImg svg {
        right: 0;
        width: 100%;
        height: auto;
        top: -10%
    }
    .benfitRow ul li {
        min-width: 100%;
    }
    .nftMarketplaces li {
        flex-direction: column;
        padding: 20px;
        align-items: center;
        border-radius: 5px !important;
    }
    .nftBanner .globalSoft {
        font-size: 18px;
    }
    .nftBanner {
        padding: 40px 0 120px;
    }
    .nftBanner h1 {
        font-size: 24px;
    }
    .nftBanner .btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    .nftBanner p {
        font-size: 14px;
        line-height: 26px;
        margin-bottom: 30px;
    }
    .blockchainNetworks .contentTabs p {
        font-size: 14px;
        line-height: 26px;
    }
}

@media only screen and (max-width:400px) {
    .fixedHeader .logo a svg {
        width: 100%
    }
    .alert .alert-text {
        width: 70%
    }
    .alert .alert-close {
        width: 15%
    }
    .g-recaptcha {
        transform: scale(.82);
        -webkit-transform: scale(.82);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0
    }
    .RequestCaptcha {
        float: left;
        margin: 0 0 0 10px
    }
    .counter-inner .content {
        padding-left: 11px
    }
    .portfolio_modal .close {
        right: 7px;
        top: 7px;
        font-size: 32px
    }
    .contentTabs ul li a {
        font-size: 12px;
        padding: 10px 0
    }
    .counter-item {
        min-height: inherit;
        padding: 10px
    }
    .logo {
        width: 200px
    }
    .finalFooter .socialFooter ul li {
        margin: 0 1px
    }
    .finalFooter .socialFooter ul li a {
        width: 28px;
        height: 28px;
        font-size: 15px
    }
    .hireProcessDev.on-demand .col-lg {
        flex: 0 0 100%;
        max-width: 100%
    }
    .have-a-question .text p {
        font-size: 14px
    }
    .recentWorkRow.AwardsRow .tabs ul li a {
        font-size: 14px;
        padding: 14px
    }
    .recentWorkRow.AwardsRow .tabs ul {
        margin-bottom: 2rem
    }
    .recentWorkRow .tabs ul li a {
        font-size: 12px;
        padding: 9px
    }
    .recentWorkRow .tabs ul li a:hover,
    .recentWorkRow .tabs ul li.active a {
        box-shadow: 0 6px 14px rgba(26, 71, 140, .1)
    }
    .HomeSlider.Portfolio .carousel-caption {
        top: 30%
    }
    .portfolioBoxContent a {
        width: 45%
    }
    .tabsMenu ul .nav-item a {
        font-size: 11px;
        padding: 16px 3px
    }
    .core_expertise .tab-links a {
        font-size: 12px
    }
    .application-option ul li span {
        font-size: 13px;
        margin-top: 5px
    }
    .counter-item {
        min-height: inherit
    }
    .portfolioBoxContent a {
        margin: 20px 5px 20px 0
    }
    .recentWorkRow .tabs ul li {
        margin: 0 2px
    }
    .counter-item.service-item {
        width: 42%
    }
    .homeHeroSliderInner h1 {
        font-size: 40px;
        line-height: 40px
    }
    .homeHeroSlider {
        max-height: 450px
    }
    .readyMadeRow.WhatGet .tabs ul.tab-links li {
        width: 140px
    }
    .readyMadeRow.WhatGet .tabs ul.tab-links li a {
        font-size: 10px;
        padding: 10px 5px
    }
    .readyMadeRow.WhatGet .tabs ul.tab-links li a img {
        margin: 0 2px 0 0
    }
    .recentWorkRow.AwardsRow .tabs ul li {
        width: 130px
    }
}

@media only screen and (max-width:350px) {
    .blogsRow.TeamRow .blogContent p {
        font-size: 16px
    }
    .blogsRow.TeamRow .blogContent a {
        font-size: 35px;
        width: 60px;
        height: 60px
    }
    .finalFooter .officeRow ul li:nth-child(1),
    .finalFooter .officeRow ul li:nth-child(3) {
        width: 53%;
        margin: 0 6% 0 0
    }
    .finalFooter .officeRow ul li:nth-child(2),
    .finalFooter .officeRow ul li:nth-child(4) {
        width: 41%
    }
    .finalFooter .officeRow ul {
        margin: 0
    }
    .tabsMenu ul .nav-item a {
        font-size: 9px
    }
    .companyInfo .TeamSpotlight h2 {
        font-size: 12px
    }
    .TeamSpotlight p {
        font-size: 12px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .counter-inner .content {
        padding-left: 0;
        width: 100%;
        margin-top: 20px
    }
    .inline-box .content h4 {
        font-size: 14px
    }
}

@media(min-width:1300px) {
    .weAreAces .container-fluid {
        width: 95%
    }
    .HomeSlider.App_development p {
        width: 540px
    }
    .weAreAces .titleOne {
        font-size: 26px
    }
}

@media(min-width:1600px) {
    .contentTabs ul li a {
        padding: 15px 15px;
        font-size: 18px
    }
    .tabsMenu ul .nav-item a {
        padding: 9px 0;
        font-size: 20px
    }
    .HomeSlider.App_development .google_developer {
        left: -100px
    }
    .HomeSlider.tripMobileView .BannerImage {
        height: 550px
    }
}

@media(min-width:2000px) {
    .HomeSlider.App_development.tripMobileView .carousel-inner {
        width: 75%
    }
    .businessStardom-img.layer-1 img {
        width: 75%
    }
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .HomeSlider.MainSliderHome p {
        opacity: 1
    }
}

.work-process-image {
    max-width: 100%
}

.thanks-giving-section {
    position: relative;
    height: calc(70vh+80px);
    padding-top: 80px
}

.video_container .col-md-6 {
    float: left
}

.video-box {
    width: 100%;
    height: 70vh;
    position: absolute
}

.video-box::after {
    content: "";
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.thanks-giving-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70vh
}

.video_container {
    width: 90%;
    margin: 0 auto
}

.video-listing h2 {
    font-size: 64px;
    color: #fff;
    font-weight: 700;
    margin: 0
}

.video-listing ul {
    margin: 25px 0 0;
    padding: 0
}

.video-listing ul li {
    font-size: 22px;
    color: #fff;
    list-style-type: none;
    margin-bottom: 25px;
    background: url(../images/text-list.svg);
    background-repeat: no-repeat;
    background-position: 0 6px;
    padding: 0 0 0 35px
}

.christmas-form-box {
    width: 580px;
    padding: 30px 30px;
    border-radius: 5px;
    background: rgba(0, 0, 0, .6);
    margin-left: auto
}

.col-for-form .christmas-form-box {
    background: #1c1c1c;
    border: solid 3px rgb(88 88 88 / 88%)
}

.form-group.inquriy-btn {
    display: flex;
    justify-content: flex-end
}

.christmas-box {
    position: absolute;
    right: 100px
}

.form-group.form-half {
    width: 48%;
    float: left
}

.form-group.form-half.half-right {
    float: right
}

.christmas-form-box h2 {
    margin: 0 0 20px 0;
    color: #fff;
    font-weight: 700;
    font-size: 30px
}

.christmas-form-box input,
.christmas-form-box select,
.christmas-form-box textarea {
    height: 50px;
    width: 100%;
    background: 0;
    padding: 0 15px;
    color: #fff;
    font-size: 14px;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    outline: 0;
    appearance: none;
    box-shadow: none;
    box-sizing: border-box;
    -moz-appearance: textfield
}

select::-ms-expand {
    display: none
}

.form-group.inquriy-btn input.btn {
    background: #1d73f8;
    border: 1px solid #1d73f8
}

.form-group.inquriy-btn input.btn:hover {
    background: #fff;
    color: #1d73f8;
    transform: inherit
}

.video_container.video_containerbox {
    display: flex;
    align-items: center
}

.christmas-form-box .form-group .error {
    position: absolute;
    bottom: -19px;
    font-size: 12px;
    left: 0
}

.christmas-form-box input:focus,
.christmas-form-box textarea:focus {
    color: #fff;
    outline: 0;
    box-shadow: none;
    background: 0;
    border-color: #d9d9d9
}

.christmas-form-box select {
    background: url(../images/select.svg);
    background-repeat: no-repeat;
    background-position: 96%
}

.christmas-form-box select option {
    color: #000
}

.christmas-form-box textarea {
    height: 90px;
    padding: 15px;
    resize: none
}

.christmas-form-box input::placeholder,
.christmas-form-box textarea::placeholder {
    opacity: 1 !important;
    color: #fff
}

.christmas-form-box .form-group {
    margin-bottom: 20px;
    position: relative
}

.christmas-form-box .form-group.inquriy-btn {
    margin-bottom: 0
}

.form-group.inquriy-btn {
    display: flex;
    justify-content: flex-end
}

.inquriy-btn input {
    background: #1d73f8;
    border: 0;
    cursor: pointer;
    font-size: 16px;
    border: 1px solid #1d73f8;
    transition: all .5s ease;
    padding: 0 30px;
    width: auto
}

.inquriy-btn input:hover {
    background: #fff;
    color: #1d73f8;
    transform: inherit
}

.owl-carousel.webslider-carousel {
    display: block
}

.webslider {
    width: 100%;
    padding: 0 0 50px;
    background: url(../images/web-slider-img.svg);
    background-repeat: no-repeat;
    background-position: top right
}

.appslider {
    background-image: linear-gradient(to right, #f2f2f22e, #eff5f88c);
    width: 100%;
    box-sizing: border-box
}

.webslider.appslider .owl-nav {
    right: 5%
}

.slider-tilte-box {
    width: 100%;
    display: inline-block
}

.slider-tilte-box span {
    display: inline-block;
    width: 135px;
    position: relative;
    -webkit-animation: linear infinite alternate;
    -webkit-animation-name: run;
    -webkit-animation-duration: 5s
}

.slider-tilte-box span label {
    position: absolute;
    font-size: 44px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    top: 140px;
    width: 100px;
    line-height: 40px;
    left: 0;
    right: 0;
    margin: auto
}

.slider-tilte-box span label font {
    font-size: 28px;
    font-weight: 400;
    float: left;
    width: 100%;
    margin-top: -5px
}

.slider-tilte-box span label font.upto {
    font-size: 36px;
    margin-top: 0
}

.slider-tilte-box h3 {
    margin: 0;
    font-size: 36px;
    color: #1d73f8
}

.slider-tilte-box h2 {
    margin: 0;
    font-size: 48px;
    color: #2c2c2c
}

.slider-tilte-box h4 {
    margin: 15px 0 0 0;
    font-size: 18px
}

.slider-tilte-box article {
    float: left;
    text-align: left;
    margin-left: 20px;
    margin-top: 100px;
    width: 70%
}

.slider-tilte-box p {
    float: left;
    margin: 0
}

.webslider .owl-dots {
    display: none
}

.webslider .owl-nav {
    display: block !important
}

.webslider .owl-carousel {
    margin-top: 60px
}

.webslider .owl-nav button {
    outline: 0
}

.webslider .owl-nav button.owl-prev {
    position: absolute;
    left: -75px;
    top: 40%;
    background: url(../images/denamd-left.svg) !important;
    background-repeat: no-repeat;
    background-position: top right;
    width: 55px;
    height: 55px
}

.webslider .owl-nav button.owl-next {
    position: absolute;
    right: -75px;
    top: 40%;
    background: url(../images/denamd-right.svg) !important;
    background-repeat: no-repeat;
    background-position: top right;
    width: 55px;
    height: 55px
}

.webslider .owl-nav span {
    display: none
}

.webslider .readyMadeContent {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1
}

.webslider .readyMadeContent h4 {
    margin: 0;
    color: #252525;
    font-size: 24px
}

.webslider .readyMadeContent a {
    background: #1d73f8;
    border-radius: 3px;
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
    text-decoration: none;
    margin-top: 20px;
    border: 1px solid #1d73f8;
    transition: all .5s ease
}

.webslider .readyMadeContent a:hover {
    background: #fff;
    color: #1d73f8
}

.appslider .slider-tilte-box {
    text-align: right
}

.appslider .item {
    position: relative
}

.appslider .item:after {
    border-radius: 0 0 100% 100%;
    bottom: 0;
    content: "";
    position: absolute;
    height: 60%;
    border-bottom: 13vw solid #e5f7ff;
    left: 2.604vw;
    width: 98%;
    transition: all .5s ease
}

.appslider .item:hover:after {
    border-bottom-color: #1d73f8
}

.appslider .item img {
    position: relative;
    z-index: 1;
    -webkit-transform: none
}

.appslider .readyMadeContent {
    top: -25px;
    left: 2.604vw
}

.appslider .item:hover h4 {
    color: #fff
}

.appslider .item:hover a {
    background: #fff;
    color: #000
}

.demandslider.appslider {
    background: #eef9ff url(../images/reset-section.svg);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 180px auto
}

.offer-intrested {
    padding-top: 75px
}

.offer-resent .recentWorkRow {
    background: url(../images/reset-section.svg);
    background-repeat: no-repeat;
    background-position: top left
}

.offer-tabing {
    position: relative;
    display: flex;
    width: 100%;
    padding: 75px 0;
    text-align: center
}

.offer-tabing:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: url(../images/reset-section.svg);
    background-repeat: no-repeat;
    background-position: top left;
    width: 157px;
    height: 320px;
    background-size: 100% auto
}

.offer-tabing:before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    background: url(../images/chts.svg);
    background-repeat: no-repeat;
    background-position: top right;
    width: 227px;
    height: 260px
}

.offer-tabing p {
    text-align: center;
    font-size: 22px;
    color: #000;
    margin: 0 auto;
    width: 80%
}

.offer-tabing ul {
    display: inline-block;
    width: auto;
    padding: 0;
    margin: 50px 0;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    overflow: hidden
}

.offer-tabing ul li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    float: left
}

.offer-tabing ul li img {
    padding-right: 15px
}

.offer-tabing ul li a {
    font-size: 18px;
    color: #000;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-align: left;
    border-bottom: 5px solid transparent;
    padding: 0;
    border: none !important
}

.offer-tabing ul li a span {
    padding: 15px 100px;
    display: inline-flex;
    border-left: 1px solid #c4c1c1;
    margin: 10px 0
}

.offer-tabing ul li a.active {
    background: #157ffb !important;
    color: #fff !important;
    border-color: #1d73f8 !important;
    border-top: 0;
    border-left: none;
    border-right: 0
}

.offer-tabing ul li a:hover {
    border-color: none !important;
    border-bottom: 5px solid tranparent;
    border-top: 0;
    border-left: none;
    border-right: 0
}

.offer-tabing ul li a.active:hover {
    border-bottom: 5px solid #1d73f8;
    border-top: 0;
    border-left: none;
    border-right: 0
}

.offer-tabing ul li:first-child a span {
    border-left: none
}

.offer-tabing .tab-listing ul {
    border: 0;
    margin: 50px 0 0 0;
    padding: 0
}

.offer-tabing .tab-listing ul li {
    border: 0;
    padding: 0;
    background: url(../images/listing-icon.svg);
    background-repeat: no-repeat;
    background-position: top left;
    padding: 0 10px 0 30px;
    box-sizing: border-box;
    width: 50%;
    font-size: 20px;
    color: #000;
    margin-bottom: 25px;
    text-align: left
}

.tab-box a {
    background: #1d73f8;
    border-radius: 5px;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;
    border: 1px solid #1d73f8;
    transition: all .5s ease;
    margin-top: 20px;
    float: left
}

.tab-box a:hover {
    color: #1d73f8;
    background: #fff
}

.offer-popup .modal-content {
    border: 0;
    max-width: 650px;
    margin: 3% auto 0;
    right: 0;
    padding: 10px 30px 30px;
    height: auto;
    background: #fff url(../images/offer-popup.jpg);
    background-repeat: no-repeat;
    background-position: top -70px center;
    top: 5%
}

.offer-popup .modal-dialog {
    max-width: inherit;
    margin: inherit
}

.offer-popup h2 {
    font-size: 38px;
    color: #1d73f8;
    text-align: center;
    font-weight: 700;
    margin: 0;
    padding-top: 40px
}

.offer-form.christmas-form-box {
    padding: 35px 0 0 0;
    width: 100%;
    background: 0
}

.offer-form.christmas-form-box input,
.offer-form.christmas-form-box select,
.offer-form.christmas-form-box textarea {
    color: #565656;
    font-size: 16px
}

.offer-form.christmas-form-box input::placeholder,
.offer-form.christmas-form-box select::placeholder,
.offer-form.christmas-form-box textarea::placeholder {
    color: #565656
}

.offer-form.christmas-form-box .inquriy-btn input {
    width: auto;
    float: right;
    color: #fff
}

.offer-form.christmas-form-box .inquriy-btn input:hover {
    color: #1d73f8
}

.offer-popup a.btn-close {
    text-decoration: none;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    background: #1d73f8;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 5px;
    top: 5px;
    color: #fff;
    cursor: pointer
}

.offer-popup {
    padding-right: 0 !important
}

a.web-btn {
    background: #00245a;
    border: 1px solid rgb(255 255 255 / 40%);
    font-size: 24px;
    padding: 10px 15px;
    display: inline-flex;
    margin-top: 30px;
    border-radius: 3px
}

a.web-btn:hover {
    background: #fff;
    color: #00245a
}

.webcostresearch .listicleInsideBox a .itemInsideBox {
    padding: 30px 10px
}

.webcostresearch .itemInsideBox p {
    font-size: 14px
}

.webcostresearch .itemInsideBox img {
    height: 50px;
    width: 50px
}

.webcostresearch .listicleBox::before {
    background: linear-gradient(90deg, #3ca0f5 4.74%, #2478f5 88.64%)
}

@media screen and (max-width:1500px) {
    .offer-popup .christmas-form-box .form-group:not(.inquriy-btn) input,
    .offer-popup .christmas-form-box select {
        height: 40px
    }
    .offer-popup .christmas-form-box textarea {
        height: 75px
    }
    .offer-popup h2 {
        padding-top: 35px;
        font-size: 32px
    }
    .tab-box a {
        font-size: 16px
    }
    .offer-tabing p br {
        display: none
    }
    .video-listing h2 {
        font-size: 44px
    }
    .video-listing ul li {
        font-size: 19px;
        background-position: 0 5px;
        margin-bottom: 20px
    }
    .offer-tabing ul li a span {
        padding: 15px 80px
    }
    .offer-tabing .tab-listing ul li {
        font-size: 16px
    }
    .tab-box a {
        padding: 14px 25px
    }
    .tab-images img {
        width: 100%
    }
    .slider-tilte-box h2 {
        font-size: 24px
    }
    .webslider .readyMadeContent h4 {
        font-size: 18px
    }
    .webslider .owl-nav button.owl-prev {
        top: 35%;
        background-size: cover !important;
        left: -50px;
        width: 40px;
        height: 40px
    }
    .webslider .owl-nav button.owl-next {
        top: 35%;
        background-size: cover !important;
        right: -50px;
        width: 40px;
        height: 40px
    }
    .slider-tilte-box span label font {
        font-size: 24px
    }
    .slider-tilte-box span label {
        font-size: 38px
    }
    .slider-tilte-box span label font.upto {
        font-size: 30px
    }
    .offer-resent .recentWorkRow {
        background: 0
    }
    .thanks-giving-section {
        height: calc(90vh+80px)
    }
    .video-box {
        height: 90vh
    }
    .thanks-giving-content {
        height: 90vh
    }
}

@media screen and (max-width:1199px) {
    .christmas-form-box {
        width: 100%
    }
    .video_container .col-md-6 {
        max-width: 50%;
        flex: 0 0 50%
    }
    .offer-tabing p br {
        display: none
    }
    .offer-tabing p {
        width: 70%;
        font-size: 18px
    }
    .offer-tabing ul li a span {
        padding: 10px 30px;
        font-size: 16px
    }
    .offer-tabing .tab-listing ul li {
        width: 100%
    }
    .tab-box a {
        padding: 10px 20px;
        font-size: 18px
    }
    .offer-tabing .tab-listing ul {
        margin: 30px 0 0 0
    }
    .slider-tilte-box span label {
        font-size: 30px;
        line-height: 35px;
        top: 145px
    }
    .slider-tilte-box span label font.upto {
        font-size: 24px
    }
    .slider-tilte-box span label font {
        font-size: 20px
    }
    .webslider .owl-nav button.owl-prev {
        width: 30px;
        height: 30px;
        left: -35px
    }
    .webslider .owl-nav button.owl-next {
        width: 30px;
        height: 30px;
        right: -35px
    }
    .christmas-box {
        right: 0
    }
}

@media screen and (max-width:991px) {
    .video-listing h2 {
        font-size: 28px
    }
    .video-listing ul li {
        font-size: 16px;
        margin-bottom: 10px
    }
    .offer-tabing ul li a span {
        font-size: 15px;
        padding: 10px 20px
    }
    .offer-tabing p {
        margin-top: 20px
    }
    .slider-tilte-box article {
        width: 55%
    }
    .webslider .readyMadeContent h4 {
        font-size: 16px
    }
    .offer-popup .modal-content {
        width: 95%
    }
    .offer-popup h2 {
        font-size: 30px
    }
}

@media screen and (max-width:767px) {
    .video_container {
        width: 100%;
        padding: 0 15px
    }
    .video_container .col-md-6 {
        width: 100%;
        max-width: 100%;
        position: inherit;
        padding: 0;
        flex: 0 0 100%
    }
    .video-listing {
        margin: 30px 0
    }
    .thanks-giving-content {
        height: auto
    }
    .christmas-form-box {
        background: #2f2f2f
    }
    .video-box {
        height: auto;
        position: inherit
    }
    .thanks-giving-section {
        height: auto
    }
    .video-listing ul li {
        background-size: 18px;
        color: #000;
        background: url(../images/text-list-black.svg);
        background-repeat: no-repeat;
        background-position: 0 3px
    }
    .video-listing h2 {
        font-size: 24px;
        color: #000
    }
    .christmas-form-box h2 {
        font-size: 24px
    }
    .offer-tabing:after,
    .offer-tabing:before {
        display: none
    }
    .offer-tabing {
        padding: 50px 0
    }
    .offer-tabing p {
        width: 100%;
        margin: 0
    }
    .offer-tabing ul li img {
        padding-right: 7px
    }
    .offer-tabing ul li a span {
        padding: 10px
    }
    .offer-tabing ul {
        margin: 25px 0
    }
    .offer-tabing .tab-listing ul {
        margin: 0
    }
    .tab-box a {
        font-size: 16px;
        margin: 0
    }
    .tab-images {
        margin-top: 30px
    }
    .demandslider.appslider {
        background: #f7fbfd
    }
    .slider-tilte-box span {
        width: 100px
    }
    .slider-tilte-box span img {
        width: 100%
    }
    .slider-tilte-box span label {
        font-size: 26px;
        line-height: 30px;
        top: 105px
    }
    .slider-tilte-box span label font.upto {
        font-size: 20px
    }
    .slider-tilte-box span label font {
        font-size: 18px
    }
    .slider-tilte-box article {
        width: 75%
    }
    .owl-carousel.demand-carousel {
        width: 80%;
        margin: 30px auto 0
    }
    .offer-popup h2 {
        font-size: 18px;
        padding: 0
    }
    .offer-form.christmas-form-box {
        padding-top: 15px
    }
    .offer-popup .modal-content {
        padding: 30px
    }
    .offer-popup .modal-content {
        top: 20px
    }
    .appslider .item::after {
        display: none
    }
    .appslider .readyMadeContent {
        top: 0;
        left: 0
    }
    .appslider .item:hover h4 {
        color: #252525
    }
    .appslider .item:hover a {
        color: #1d73f8
    }
    .video-box::after {
        display: none
    }
    .video_container.video_containerbox {
        flex-wrap: wrap
    }
    .featuresBlock .titleOne {
        font-size: 24px;
    }
    .featuresBlock {
        padding: 60px 0 120px;
    }
}

@media screen and (max-width:575px) {
    .christmas-form-box {
        padding: 20px
    }
    .form-group.form-half {
        width: 100%
    }
    .christmas-form-box textarea {
        height: 60px
    }
    .christmas-form-box .form-group:not(.inquriy-btn) input,
    .christmas-form-box select {
        height: 40px
    }
    .offer-tabing ul {
        width: 100%
    }
    .offer-tabing ul li {
        width: 100%
    }
    .offer-tabing ul li a {
        width: 100%
    }
    .offer-tabing ul li a span {
        width: 100%;
        border: 0
    }
    .slider-tilte-box h2 {
        font-size: 20px
    }
    .slider-tilte-box h4 {
        font-size: 16px
    }
    .slider-tilte-box article {
        width: 55%
    }
    .offer-popup .modal-content {
        padding: 20px !important
    }
    .offer-popup h2 {
        padding: 45px 0 0 0
    }
}

.christmas-form-box select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none
}

.christmas-form-box .form-group:nth-child(10) {
    display: inline-block;
    width: 100%
}

.webCenter {
    background: #f6f4ff;
    text-align: center;
    padding: 35px;
    border: 1px solid #e4e4e4;
    margin: 25px 0
}

.blueTex {
    font-weight: 500;
    font-size: 20px;
    line-height: normal;
    letter-spacing: .02em;
    color: #1d73f8;
    margin-bottom: 20px
}

.beginConcise {
    font-weight: 700;
    font-size: 28px;
    line-height: normal;
    color: #003178
}

.MassTechWeb .interMassTech {
    min-height: inherit
}

.timePeriod {
    padding-left: 15px
}

.desDeveBOx .table {
    border: 1px solid #e3e3e3;
    display: table
}

.desDeveBOx .table th {
    background: #f3f3f3
}

.desDeveBOx {
    background: #fcfcfc;
    border: 1px solid #e1e1e1;
    padding: 30px;
    margin-bottom: 30px
}

.desDeveBOx h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #001c45;
    position: relative;
    letter-spacing: .5px
}

.desDeveBOx h3:before {
    width: 8px;
    height: 8px;
    display: inline-block;
    content: '';
    background: #274d79;
    line-height: normal;
    border-radius: 50%;
    margin-right: 14px;
    vertical-align: middle
}

.bgNew {
    background: #f9f9f9;
    padding: 50px 0
}

.DesignDevelopment .bgNew,
.commonRecurringCost .bgNew,
.locationBased {
    margin: 50px 0
}

.BackendDevelopment p,
.DesignDevelopment p,
.seoContent p,
.websiteType p {
    text-align: left
}

.webcostresearch .MassTech .interMassTech p i {
    font-weight: 700
}

.web-typeAppMeet .meetInside {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 270px
}

.web-typeAppMeet .meetInside::after {
    content: "";
    position: absolute;
    right: -25px;
    top: 0;
    bottom: 0;
    margin: 0 auto;
    background: url(../images/web-arrowicon.svg);
    background-position: center right;
    background-repeat: no-repeat;
    width: 54px
}

.web-typeAppMeet .meetInside .nameComplexity {
    margin: 0;
    width: 100%
}

.web-typeAppMeet .meetInside.web-customerimg::after {
    display: none
}

.typeAppMeet.web-typeAppMeet {
    margin: 50px auto;
    width: 70%
}

@media only screen and (max-width:1440px) {
    .desDeveBOx h3 {
        font-size: 20px
    }
    @media only screen and (max-width:1199px) {
        .web-typeAppMeet .meetInside img {
            height: auto !important;
            width: 120px
        }
        .web-typeAppMeet .meetInside::after {
            width: 40px;
            background-size: 100%;
            right: -20px
        }
        .web-typeAppMeet .meetInside {
            min-height: 230px
        }
    }
    @media only screen and (max-width:767px) {
        .typeAppMeet.web-typeAppMeet {
            margin: 30px auto;
            width: 100%
        }
    }
    @media only screen and (max-width:575px) {
        .seoContent ul {
            padding-left: 15px
        }
        .BackendDevelopment .interMassTech img {
            max-width: 200px;
            margin: auto;
            display: block
        }
    }
}

@media only screen and (min-width:1201px) {
    .webcostresearch .col-xl-2 {
        flex: 0 0 14%;
        padding: 0 10px
    }
}

body>.wrapper {
    overflow: hidden
}

.video-box img {
    display: none
}

.webCenter img {
    max-width: 740px;
    width: 100%
}

.offer-tabing ul.nav-tabs {
    background: #f3f8ff
}

.offer-tabing ul li a:not(.active):hover {
    background: #cee4ff
}

.offer-tabing ul li a.active span {
    border-color: transparent
}

.tab-listing {
    margin-top: 2vw
}

.offer-tabing h2 {
    text-align: left;
    font-size: 36px
}

.offer-tabing .tab-images img {
    width: auto;
    max-width: 100%
}

.christmas-offer {
    position: fixed;
    right: 0;
    top: 0;
    margin-top: 50px;
    z-index: 1;
    animation: movebounce 5s infinite
}

@keyframes movebounce {
    0%,
    100% {
        top: 0
    }
    50% {
        top: -20px
    }
}

@media only screen and (max-width:1199px) {
    .appslider .item::after {
        border-bottom-width: 170px
    }
    .webCenter {
        padding: 10px
    }
    .tab-listing {
        margin-top: 0
    }
    .offer-tabing h2 {
        font-size: 30px
    }
    .christmas-offer img {
        width: 170px
    }
}

.modal.portfolio_modal .modal-dialog {
    overflow: inherit
}

.Portfolio {
    top: 0;
    margin-top: 80px;
    margin-bottom: 50px
}

.Portfolio,
.cd-main-content {
    min-height: inherit
}

.homeHeroSlider {
    min-height: inherit;
    max-height: inherit;
    height: calc(100vh - 80px)
}

.mouseDown {
    margin: 0 auto;
    position: absolute;
    bottom: 30px;
    right: 0;
    left: 0
}

.tech_tags {
    margin-bottom: 0;
    margin-top: 10px
}

.portfolioBoxContent .tech_tags label {
    font-size: 12px;
    padding: 5px 10px;
    margin: 0 2px 5px 0
}

.portItem {
    margin-bottom: 25px
}

.portfolio_modal {
    -webkit-animation-duration: .5s;
    -moz-animation-duration: .5s;
    -o-animation-duration: .5s;
    animation-duration: .5s
}

.portfolioimg .carousel-indicators {
    justify-content: safe center;
    margin: 15px 30px 0
}

.portfolioimg .carousel-indicators li {
    width: 20%
}

.portfolioimg .carousel-control-next span,
.portfolioimg .carousel-control-prev span {
    font-size: 21px;
    color: #000;
    background: #ffffffb5;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    border-radius: 30px;
    line-height: 33px;
    min-width: 30px
}

.portfolioimg .carousel-control-next,
.portfolioimg .carousel-control-prev {
    height: 40vw
}

.appstore_outer h6 {
    border-bottom: 1px solid;
    padding-bottom: 10px;
    margin-bottom: 10px;
    width: 100%
}

.appstore_icons {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    text-align: center
}

.appstore_icons>div {
    padding: 10px
}

.appstore_icons>div a {
    margin: 0;
    width: auto;
    display: flex;
    align-items: center;
    padding: 0;
    color: #000;
    outline: 0
}

.appstore_icons>div img {
    height: 25px;
    margin-right: 10px
}

.reviewBox .carousel-item {
    transform: rotateY(180deg);
    transition: all ease .5s
}

.reviewBox .carousel-fade .carousel-item-next.carousel-item-left,
.reviewBox .carousel-fade .carousel-item-prev.carousel-item-right,
.reviewBox .carousel-fade .carousel-item.active {
    transform: rotateY(0)
}

@media only screen and (min-width:992px) {
    .on-demand-section.on-demand-bg .inner_ltab ul.nav.three-tab li {
        width: 33.3333%
    }
    .portfolioimg .carousel-item>img {
        max-height: 77vh;
        object-fit: cover
    }
}

@media only screen and (min-width:1200px) {
    .weAreAces .col-xl-3 .inSapce {
        padding-bottom: 0
    }
    .tabsMenu ul .nav-item {
        margin-bottom: 1.3vw
    }
    .tabsMenu ul .nav-item:last-child {
        margin-bottom: 0
    }
}

@media only screen and (max-width:991px) {
    .portfolioimg .carousel-control-next,
    .portfolioimg .carousel-control-prev {
        height: 52vw
    }
    .portfolio_modal .close {
        background: 0
    }
    .portfolio_modal .close i {
        color: inherit
    }
    .portfolioimg .carousel-indicators {
        margin-top: 15px
    }
}

@media only screen and (max-width:767px) {
    .video-box video {
        display: none
    }
    .video-box img {
        display: block
    }
    .offer-tabing h2 {
        font-size: 24px;
        margin-bottom: 20px
    }
    .christmas-offer img {
        width: 125px
    }
    .Portfolio {
        margin-bottom: 30px
    }
    .portfolioimg .carousel-indicators li {
        width: 30.8%
    }
    .acceptprivacy img {
        display: none
    }
    .cookies-banner__controls {
        margin-top: 10px;
        text-align: center;
    }
}

@media only screen and (max-width:575px) {
    .web-typeAppMeet .meetInside::after {
        right: 0;
        bottom: -20px;
        top: auto;
        left: 0;
        height: 40px;
        transform: rotate(90deg)
    }
    .whoWeAreRow a.Learnmore {
        display: table;
        width: auto
    }
    .HomeSlider .BannerImage.BannerImage {
        height: auto
    }
    .Portfolio+.recentWorkRow {
        padding-top: 0 !important
    }
    .BannerImage::after {
        background: linear-gradient(60deg, #001739 0, #003178 100%)
    }
    .contactForm .g-recaptcha {
        transform-origin: left top !important;
        transform: scale(.8)
    }
    .christmas-form-box .inquriy-btn .btn {
        width: 100% !important
    }
}

@media only screen and (max-height:750px) {
    .mouseDown {
        bottom: 15px
    }
    .mouseDown .mousey {
        transform: scale(.6);
        transform-origin: center bottom
    }
}

@media only screen and (max-height:380px) {
    .homeHeroSlider {
        height: auto
    }
    .homeHeroSlider .container {
        margin: 30px auto
    }
    .mouseDown {
        margin-top: 15px;
        position: static
    }
}

@media only screen and (min-width:1200px) and (max-width:1300px) {
    .on-demand-section.on-demand-bg .inner_ltab ul li {
        width: auto;
        flex: auto
    }
}

.readyMadeRow .owl-nav {
    display: block !important
}

.readyMadeRow .owl-nav button.owl-prev {
    position: absolute;
    left: 20px;
    top: 40%;
    background: url(../images/denamd-left.svg) !important;
    background-repeat: no-repeat;
    background-size: cover !important;
    background-position: top right;
    width: 40px;
    height: 40px;
    font-size: 0
}

.readyMadeRow .owl-nav button.owl-next {
    position: absolute;
    right: 20px;
    top: 40%;
    background: url(../images/denamd-right.svg) !important;
    background-repeat: no-repeat;
    background-size: cover !important;
    background-position: top right;
    width: 40px;
    height: 40px;
    font-size: 0
}

#popup-quote-captcha-error {
    position: absolute;
    left: 0;
    margin: 0 !important;
    font-size: 12px;
    padding-top: 0 !important;
    top: 70px
}

#banner-quote-captcha-error {
    position: absolute;
    left: 5px;
    margin: 0 !important;
    font-size: 12px;
    padding-top: 0 !important;
    bottom: 0
}

.fantasyAppDevBanner {
    position: relative;
    top: 80px;
    background-color: #f1f1f1;
    background-image: url(../images/sports-app-development.jpg);
    background-size: cover;
    height: 580px;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 140px
}

.fantasyAppDevBanner:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    position: absolute;
    background: rgba(0, 0, 0, .6)
}

.fantasyAppDevBanner .container {
    z-index: 1
}

.fantasyAppDevBanner h1 {
    color: #fff;
    margin-bottom: 25px
}

.fantasyAppDevBanner p {
    color: #fff;
    width: 60%;
    margin: 0 auto
}

.serviceSolutionsNew {
    background: #101c41;
    padding: 75px 0
}

.serviceSolutionsContent p {
    color: #fff;
    width: 70%;
    margin: 0 auto
}

.serviceSolutionsContent .wrapper-webDev-solution {
    min-height: 257px
}

.serviceSolutionsNew .mashup {
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 3px;
    transition: all .3s ease
}

.serviceSolutionsNew .mashup:hover {
    background: #1c295d
}

.serviceSolutionsNew .mashup h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600
}

.serviceSolutionsNew .mashup p {
    color: #fff;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 24px
}

.ctaSection {
    background: #101c41;
    text-align: center;
    padding: 75px 0
}

.ctaSection p {
    color: #fff
}

.readyMadeRow.whyChooseSection {
    background-color: #101c41;
    background-image: url(../images/solution-bg.jpg)
}

.wrapper-webDev-solution {
    background: rgba(12, 93, 170, .8);
    padding: 30px;
    margin-bottom: 30px
}

.wrapper-webDev-solution img {
    width: 60px;
    margin-bottom: 15px
}

.wrapper-webDev-solution h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 600
}

.wrapper-webDev-solution p {
    color: #fff;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 24px
}

.SDiFaq {
    padding: 75px 0
}

.SDiFaq .card {
    border-top: 1px solid #e3e3e3;
    border-left: 1px solid #e3e3e3;
    border-right: 1px solid #e3e3e3;
    border-bottom: 0;
    border-radius: 0
}

.SDiFaq .card:last-child {
    border-bottom: 1px solid #e3e3e3
}

.SDiFaq .card-header {
    padding: 0;
    background-color: transparent;
    border: 0
}

.SDiFaq .card-header .btn-link {
    width: 100%;
    padding: 15px 65px 15px 20px;
    font-size: 18px;
    color: #151515;
    text-align: left
}

.SDiFaq .card-header .btn-link:focus,
.SDiFaq .card-header .btn-link:hover {
    text-decoration: none
}

.SDiFaq .card-header .btn-link::after {
    position: absolute;
    top: 23px;
    right: 20px;
    width: 20px;
    height: 11px;
    background-image: url(../images/faqArrow.png);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 20px auto;
    content: "";
    transition: all ease .4s;
    transform: rotate(180deg);
    z-index: 1
}

.SDiFaq .card-header .btn-link.collapsed::after {
    transform: rotate(360deg)
}

.paddingTopSpace {
    padding-top: 60px !important
}

.popularFastasy {
    padding: 75px 0
}

.popularFastasy .col-md-3 {
    margin-bottom: 30px
}

.popularFastasy .iconPopular {
    margin-bottom: 10px;
    text-align: center
}

.popularFastasy h4 {
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a
}

#tab_0 ul li:last-child {
    float: none !important
}

#tab_0 ul li.not-has-child-menu:last-child a .grey_icon,
#tab_1 ul li.not-has-child-menu:last-child a .grey_icon {
    filter: none;
    -webkit-filter: grayscale(0)
}

#tab_0 ul li.not-has-child-menu:last-child a,
#tab_1 ul li.not-has-child-menu:last-child a {
    color: #1d73f8
}

.brandStrip {
    background: #fff;
    padding: 20px 30px 20px;
    box-shadow: 0 -15px 20px rgb(0 0 0 / 3%);
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    margin-bottom: -50px;
    margin-top: 20px
}

.brandStrip .owl-carousel .owl-stage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap
}

.brandStrip .owl-carousel .owl-item {
    text-align: center;
    filter: grayscale(1);
    transition: all .3s ease-in;
    opacity: .7
}

.brandStrip .owl-carousel .owl-item:hover {
    filter: grayscale(0);
    opacity: 1
}

.brandStrip .owl-carousel .owl-item img {
    width: auto;
    max-width: 135px;
    display: inline-block
}

.bg-fitnutro {
    width: 90px;
    height: 48px;
    background: url(../images/client-logo.png) -10px -10px
}

.bg-innerhour {
    width: 85px;
    height: 46px;
    background: url(../images/client-logo.png) -120px -78px
}

.bg-notify {
    width: 80px;
    height: 43px;
    background: url(../images/client-logo.png) -230px -10px
}

.bg-OMM_Collective {
    width: 85px;
    height: 46px;
    background: url(../images/client-logo.png) -10px -146px
}

.bg-adani {
    width: 90px;
    height: 48px;
    background: url(../images/client-logo.png) -120px -10px
}

.bg-airtel {
    width: 90px;
    height: 48px;
    background: url(../images/client-logo.png) -10px -78px
}

.bg-allinone {
    width: 85px;
    height: 46px;
    background: url(../images/client-logo.png) -115px -146px
}

.brandStrip.innerPageBrand {
    margin-bottom: 0;
    margin-top: -60px;
    background: #f5f5f5;
    box-shadow: none;
    padding: 15px 0;
    border-radius: 0
}

.whoWeAreRow .brandStrip.innerPageBrand {
    margin-top: 0;
    background: #ededed;
    margin-bottom: -50px
}

.whoWeAreRow .brandStrip.innerPageBrand .brandStripCarousel {
    background: #fff;
    padding: 20px 30px 20px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, .1);
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    margin-bottom: -15px
}

.brandStrip .owl-carousel .owl-item.pearsonlogo img {
    max-width: 160px
}

.FeaturesSolutions ul {
    list-style: none;
    padding: 0;
    margin-top: 30px
}

.FeaturesSolutions ul li {
    margin-bottom: 14px;
    line-height: normal;
    display: flex;
    align-items: center
}

.FeaturesSolutions ul li::before {
    content: '';
    background-image: url(../images/features-list.svg);
    background-repeat: no-repeat;
    background-size: 22px auto;
    width: 22px;
    height: 22px;
    display: inline-block;
    margin-right: 8px;
    background-position: left center
}

@-webkit-keyframes vibrate {
    to {
        box-shadow: 0 0 0 18px rgba(0, 153, 255, 0)
    }
}

@-webkit-keyframes Callswing {
    20% {
        transform: rotate(15deg)
    }
    40% {
        transform: rotate(-10deg)
    }
    60% {
        transform: rotate(5deg)
    }
    80% {
        transform: rotate(-5deg)
    }
    to {
        transform: rotate(0)
    }
}

.contact-info {
    padding-bottom: 0px
}

.contact-info .btn {
    animation: vibrate 1.75s infinite cubic-bezier(.66, 0, 0, 1);
    box-shadow: 0 0 0 0 rgba(0, 153, 255, .4);
    background: #fff;
    border: 1px solid #1d73f8;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50% !important;
    color: #1d73f8;
    font-size: 22px
}

.contact-info .btn:hover {
    background-color: #1d73f8;
    color: #fff
}

.contact-info .btn::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 20px;
    background-image: url(../img/menu-dropdown.png);
    border: 0;
    background-color: transparent;
    width: 14px;
    height: 5px;
    background-position: right center;
    background-repeat: no-repeat;
    display: block
}

.contact-info .btn:hover i {
    animation-duration: .4s;
    animation-fill-mode: both;
    transform-origin: center center;
    animation-name: Callswing
}

.contact-info .dropdown-menu {
    box-shadow: 5px 5px 15px rgba(0, 0, 0, .2);
    margin-right: 10px;
    border: 0;
    padding: 20px;
    width: auto;
    margin-top: 16px;
    border: 1px solid #e6e4e4;
    left: auto;
    transition: all .3s ease
}

.contact-info .dropdown-menu .pop-con-heading {
    line-height: normal;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex
}

.contact-info .dropdown-menu .pop-inquiry-sec {
    padding: 15px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-bottom: 1px solid #d7d7d7
}

.contact-info .dropdown-menu .pop-inquiry-sec:last-child {
    border-bottom: 0;
    padding-bottom: 0
}

.contact-info .dropdown-menu .sale-inq {
    min-width: 55px;
    width: 55px;
    text-align: center;
    padding-right: 10px
}

.contact-info .dropdown-menu .sale-inq i {
    font-size: 40px
}

.contact-info .dropdown-menu .inq-sale {
    width: 100%
}

.contact-info .dropdown-menu .inq-sale h3 {
    font-size: 16px;
    font-weight: 500;
    color: #1d73f8;
    margin-bottom: 10px
}

.header-right ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.header-right ul li {
    display: inline-block;
    padding: 0 18px;
    vertical-align: middle
}

.contact-info .dropdown-menu .pop-inquiry-sec .inq-sale ul li {
    width: 100%;
    padding: 0;
    margin-bottom: 8px;
    display: flex;
    align-items: center
}

.contact-info .dropdown-menu .pop-inquiry-sec .inq-sale ul li span {
    margin-right: 10px
}

.bg-au_flag-sprite,
.bg-email,
.bg-india_flag-sprite,
.bg-uk_flag-sprite,
.bg-us_flag-sprite {
    display: inline-block;
    vertical-align: top
}

.contact-info .dropdown-menu .pop-inquiry-sec .inq-sale a {
    color: #252b33;
    padding: 0;
    font-weight: 300;
    font-size: 14px
}

.bg-us_flag-sprite {
    width: 28px;
    height: 22px;
    background: url(../images/css_sprites.png) -59px -52px
}

.bg-uk_flag-sprite {
    width: 29px;
    height: 22px;
    background: url(../images/css_sprites.png) -10px -10px
}

.bg-au_flag-sprite {
    width: 29px;
    height: 22px;
    background: url(../images/css_sprites.png) -59px -10px
}

.bg-india_flag-sprite {
    width: 29px;
    height: 22px;
    background: url(../images/css_sprites.png) -10px -52px
}

.bg-email {
    width: 29px;
    height: 22px;
    background: url(../images/css_sprites.png) 84px -132px;
    margin-top: 0
}

.contact-info .flag.skype i {
    color: #189beb;
    font-size: 28px;
    vertical-align: sub
}

.contact-info .flag.whatapp i {
    color: #25d366;
    font-size: 28px;
    vertical-align: sub
}

.contact-info .dropdown-menu .pop-inquiry-sec .inq-sale ul li.flag.mail {
    margin-top: 15px
}

.pop-inquiry-sec ul {
    padding-left: 0
}

.whatup-button {
    bottom: 20px;
    left: 15px;
    opacity: 1;
    transition: opacity .5s ease 0s;
    position: fixed;
    z-index: 16000160
}

.whatup-button a {
    width: 50px;
    height: 50px;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: rgb(0 0 0 / 40%) 2px 2px 6px;
    background: #4dc247;
    font-size: 32px;
    color: #fff;
    text-align: center;
    line-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center
}

.right-form-sec .add-col {
    display: flex;
    padding: 20px 35px
}

.infoContactCountry {
    text-align: left;
    margin-left: 20px;
    margin-top: 5px
}

.right-form-sec .infoContactCountry h2 {
    font-size: 22px;
    font-weight: 600
}

.homeHeroSlider+.whoWeAreRow+.recentWorkRow {
    padding-top: 40px
}

.appstore_icons .btnStore {
    padding: 0
}

.appstore_icons .btnStore a {
    border: 1px solid #d8d8d8;
    border-radius: 7px;
    margin-right: 10px;
    padding: 8px 15px !important;
    font-size: 13px
}

.appstore_icons .btnStore a:hover {
    background: #f8f8f8
}

.appstore_icons>div img {
    height: 20px
}

.bannerHightAuto {
    min-height: auto !important
}

.mobillitySolution {
    padding: 70px 0;
    position: relative;
    margin-top: 45px
}

.mobillitySolution::before {
    content: '';
    background: #f5f5f5;
    min-height: 370px;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    z-index: -1
}

.mobillitySolution .titleOne {
    font-size: 32px
}

.mobillitySolution .row {
    padding-left: 100px;
    padding-right: 100px
}

.whiteBoxSeam {
    background: #fff;
    padding-top: 40px;
    margin-top: 40px
}

.mobillitySolution .row h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px
}

.ctaSectionNew {
    background: #0069d9;
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center
}

.ctaSectionNew h2 {
    font-weight: 600;
    line-height: normal;
    color: #fff
}

.ctaSectionNew p {
    font-size: 22px;
    color: #fff
}

.solutionsRow {
    background: #f4f4f4;
    padding: 70px 0;
    margin-top: 40px
}

.solutionLimit {
    text-align: center;
    margin-bottom: 30px
}

.solutionLimit .solutionIcon {
    background: #fff;
    transition: all .3s ease;
    display: inline-flex;
    padding: 0;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    align-items: center;
    justify-content: center
}

.solutionLimit .solutionIcon:hover {
    background: #1d73f8
}

.solutionLimit .solutionIcon img {
    width: 65px;
    transition: all .3s ease
}

.solutionLimit h5 {
    font-size: 1.1rem;
    color: #000;
    margin-top: 15px;
    width: 90%;
    margin-left: auto;
    margin-right: auto
}

.solutionLimit .solutionIcon:hover img {
    filter: brightness(10%) invert(100%);
    transform: scale(.9)
}

.mobillitySolution .startContnet p {
    width: 90%;
    margin-left: auto;
    margin-right: auto
}

.FeaturesSolutions {
    padding-bottom: 45px;
    background: #f4f4f4
}

.btn-orange {
    background-color: #454545;
    color: #fff
}

.btn-orange:hover {
    background-color: #f26629;
    color: #fff
}

@media only screen and (max-width:1750px) {
    .appstore_icons .btnStore a {
        padding: 8px 10px !important
    }
}

@media only screen and (max-width:1600px) {
    .homeHeroSliderInner {
        background-image: url(../images/bg-slider_1600px.jpg)
    }
    .discussSpecialists {
        background-image: url(../images/expertBG_1600px.jpg)
    }
    .appstore_icons .btnStore {
        margin-bottom: 10px
    }
    .appstore_icons .btnStore a {
        font-size: 14px;
        margin-right: 7px
    }
    .appstore_icons>div img {
        height: 20px;
        margin-right: 5px
    }
}

@media only screen and (max-width:1199px) {
    .mainHeader nav ul li.contact-info.desktopView {
        display: none
    }
    .readyMadeRow .readyMadeBox h4 {
        font-size: 16px
    }
    .readyMadeRow .readyMadeBox a {
        font-size: 14px
    }
}

@media only screen and (min-width:768px) and (max-width:1199px) {
    .christmas-form-box {
        padding: 30px 30px 20px
    }
    .mobile-form-row {
        margin-bottom: 0
    }
    .HomeSlider.App_development.quotes-form .BannerImage img {
        min-height: 620px !important
    }
}

@media only screen and (min-width:0) and (max-width:767px) {
    .christmas-form-box {
        padding: 30px 30px 30px
    }
    .fantasyAppDevBanner {
        height: 330px
    }
    .fantasyAppDevBanner h1 {
        font-size: 28px
    }
    .fantasyAppDevBanner p {
        width: auto
    }
    .serviceSolutionsNew {
        padding: 40px 0
    }
    .serviceSolutionsContent p {
        width: auto
    }
    .serviceSolutionsNew .mashup {
        margin-bottom: 10px
    }
    .readyMadeRow.WhatGet {
        padding-bottom: 30px
    }
}

@media only screen and (max-width:575px) {
    .on-demand-section.on-demand-bg .inner_ltab ul {
        margin: 0
    }
}

@media only screen and (max-width:400px) {
    .homeHeroSlider {
        height: calc(60vh - 80px)
    }
}

@media only screen and (min-width:768px) {
    .thanks-giving-section {
        height: 730px
    }
    .video-box {
        height: 650px
    }
    .thanks-giving-content {
        height: 650px
    }
    .christmas-form-box #popupQuoteForm .form-group.inquriy-btn {
        margin-top: -15px;
        float: right
    }
    .christmas-form-box #bannerQuoteForm .form-group.inquriy-btn {
        margin-top: -40px;
        float: right
    }
}

@media only screen and (min-width:769px) and (max-width:1199px) {
    .contact-info .dropdown-menu {
        max-height: 260px;
        overflow-y: auto
    }
}

@media only screen and (max-width:1380px) {
    .appstore_icons .btnStore a {
        padding: 8px 10px !important;
        font-size: 12px;
        margin-right: 4px
    }
    .appstore_icons>div img {
        height: 15px;
        margin-right: 4px
    }
    .mainHeader nav ul li .company_info ul li {
        margin: 20px 0;
    }
    .mainHeader nav ul .company_menu li a .grey_icon {
            width: 20px;
            height: 30px;
    object-fit: contain;
    }
    .mainHeader nav ul .company_menu.EmergingTech li a .grey_icon {
        width: 30px;
    }
    .mainHeader nav ul .company_menu li a {
        margin: 10px 10px;
    }
    .mainHeader nav ul .tabs ul.tab-links {
        padding: 10px 0 10px 0px;
    }
    .mainHeader nav ul .company_menu ul {
        padding-right: 0;
    }
    .mainHeader nav ul #web-development .company_menu li a {
        margin: 10px 10px;
    }
    .mainHeader nav ul #mobile-app .company_menu li a {
        margin: 10px 10px;
    }
    .mainHeader nav ul #mobile-app .company_menu li .submenu li a,
    .mainHeader nav ul #web-development .company_menu li .submenu li a {
        margin: 0;
    }
    .mainHeader nav ul .company_menu.EmergingTech li a {
        margin: 7px 0;
    }
    .mainHeader nav ul li .company_info {
        padding: 10px 0 10px 30px;
    }
    .mainHeader nav ul .company_menu {
        min-height: 380px;
    }
}

@media only screen and (max-width:1199px) {
    .counter-hierarchy .mainHeader nav ul {
        height: auto;
        margin-top: 10px !important
    }
    .counter-hierarchy .mainHeader nav ul li a {
        padding: 0;
        font-size: 14px;
        margin-bottom: 10px
    }
    .homeBanner-client-img-block {
        justify-content: space-evenly
    }
    .homeBanner-client-img-block .ourClient {
        width: 30%;
        text-align: center;
        margin-bottom: 20px
    }
    .brandStrip .owl-carousel .owl-nav button {
        font-size: 30px;
        color: #8a8a8a;
        position: absolute;
        left: -3%;
        top: 0;
        line-height: normal;
        height: 100%;
        border: 0;
        outline: 0
    }
    .brandStrip .owl-carousel .owl-nav button::before {
        content: "\f104";
        font-family: 'Line Awesome Free';
        font-weight: 900
    }
    .brandStrip .owl-carousel .owl-nav button.owl-next::before {
        content: "\f105";
        font-family: 'Line Awesome Free';
        font-weight: 900
    }
    .brandStrip .owl-carousel .owl-nav button span {
        display: none
    }
    .brandStrip .owl-carousel .owl-nav button {
        left: 0
    }
    .brandStrip .owl-carousel .owl-nav button.owl-next {
        right: 0;
        left: auto
    }
    .whoWeAreRow .brandStrip .owl-carousel .owl-nav button {
        left: 15px
    }
    .whoWeAreRow .brandStrip .owl-carousel .owl-nav button.owl-next {
        right: 15px;
        left: auto
    }
    .readyMadeRow .readyMadeBox h4 {
        font-size: 16px
    }
    .readyMadeRow .readyMadeBox a {
        font-size: 14px
    }
}

@media only screen and (max-width:991px) {
    .homeHeroSliderInner {
        background-image: url(../images/bg-slider_800px.jpg)
    }
    .discussSpecialists {
        background-image: url(../images/expertBG_800px.jpg)
    }
    .mobillitySolution .titleOne {
        font-size: 25px
    }
    .mobillitySolution .img-fluid {
        margin-bottom: 30px;
        max-width: 400px
    }
    .mobillitySolution .row {
        padding-left: 0;
        padding-right: 0;
        text-align: center
    }
    .HomeSlider.App_development.quotes-form .quote_form_wrap .container {
        max-width: calc(100% - 30px)
    }
}

@media only screen and (max-width:767px) {
    .brandStrip.innerPageBrand {
        margin-top: -30px
    }
    .ctaSectionNew h2 {
        font-size: 24px
    }
    .ctaSectionNew p {
        font-size: 18px
    }
}

@media only screen and (max-width:575px) {
    .homeHeroSliderInner {
        background-image: url(../images/bg-slider_400px.jpg)
    }
    .discussSpecialists {
        background-image: url(../images/expertBG_400px.jpg)
    }
    .brandStrip.innerPageBrand {
        margin-top: -20px
    }
    .homeBanner-client-img-block .ourClient {
        width: 50%
    }
    .whoWeAreRow .titleOne {
        font-size: 20px
    }
    .brandStrip .owl-carousel .owl-item {
        filter: grayscale(0);
        opacity: 1
    }
    .serviceInsideBox.serviceInsideBox2 {
        margin-bottom: 40px
    }
    .brandStrip .owl-carousel .owl-item img,
    .brandStrip .owl-carousel .owl-item.pearsonlogo img {
        max-width: 119px
    }
    .right-form-sec .add-col {
        flex-direction: column;
        justify-content: center
    }
    .clock-container {
        margin: 0 auto 5px
    }
    .infoContactCountry {
        text-align: center
    }
    .mobillitySolution .img-fluid {
        max-width: 80%
    }
    .mobillitySolution .titleOne {
        font-size: 20px
    }
    .mobillitySolution .row h3 {
        font-size: 24px
    }
}

@media only screen and (min-width:1025px) and (max-width:1199px) {
    .right-form-sec .add-col {
        flex-direction: column
    }
}

@media only screen and (min-width:1025px) and (max-width:1400px) {
    .portfolioimg #slider {
        height: calc(100vh - 126px)
    }
    .portfolioimg #carousel {
        height: 126px
    }
    .portfolioBoxContent p {
        font-size: 13px
    }
}

@media only screen and (min-width:992px) and (max-width:1299px) {
    .contactForm .g-recaptcha {
        transform-origin: left top
    }
    .christmas-form-box .inquriy-btn .btn {
        width: 100%
    }
    .mobile-form-row {
        flex-direction: column
    }
    .contactForm .mobile-form-row .col-sm-6 {
        max-width: 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%
    }
    .HomeSlider.App_development.quotes-form .BannerImage img {
        min-height: 620px !important
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .homeHeroSlider {
        height: calc(60vh - 80px)
    }
    .contactForm .g-recaptcha {
        transform-origin: left top
    }
    .christmas-form-box .inquriy-btn .btn {
        width: 100%
    }
    .mobile-form-row {
        flex-direction: column
    }
}

@media only screen and (min-width:1199px) {
    .contact-info .dropdown-menu {
        left: auto;
        transition: all .3s ease;
        right: -640px;
        transform: none !important;
        top: 46px !important;
        float: none;
        display: block !important
    }
    .contact-info:hover .dropdown-menu {
        display: block;
        top: 0;
        left: auto;
        right: -21px
    }
    .contact-info .dropdown-menu.show {
        display: block;
        top: 0;
        left: auto !important;
        right: -21px
    }
    .portItem.appstore_outer {
        position: absolute;
        bottom: 0;
        background: #fff;
        padding: 20px 0;
        margin-bottom: 0;
        width: calc(100% - 35px)
    }
    .portItem.appstore_outer::before {
        content: '';
        position: absolute;
        left: 0;
        top: -25px;
        background-image: url(../images/portfolioShadow.png);
        width: 100%;
        height: 26px;
        background-size: 100% auto;
        background-repeat: no-repeat;
        z-index: 1;
        opacity: .6
    }
    .portItem:nth-child(5) {
        padding-bottom: 110px
    }
}

@media only screen and (min-width:1300px) {
    .HomeSlider.App_development .BannerImage img {
        min-height: 460px
    }
    .HomeSlider.App_development.quotes-form .BannerImage img {
        min-height: 520px;
        object-fit: cover
    }
}

@media only screen and (max-width:1299px) {
    .HomeSlider.App_development.quotes-form .BannerImage img {
        min-height: 520px;
        object-fit: cover
    }
}

@media only screen and (min-width:1501px) {
    .longHeading {
        font-size: 28px !important
    }
    .longHeading span {
        font-size: 38px !important
    }
}

.HomeSlider.App_development .carousel-inner {
    overflow: visible
}

.TargetContactForm {
    position: relative;
    border-radius: 30px;
    padding: 10px 30px
}

.TargetContactForm::before {
    box-shadow: 0 0 0 rgb(14, 85, 187, .9);
    animation: pulso 2s infinite;
    transition: .5s;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    border-radius: 30px;
    top: 0;
    bottom: 0;
    margin: auto
}

@keyframes pulso {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(14, 85, 187, .9);
        box-shadow: 0 0 0 0 rgba(14, 85, 187, .9)
    }
    70% {
        -moz-box-shadow: 0 0 0 15px rgba(14, 85, 187, 0);
        box-shadow: 0 0 0 15px rgba(14, 85, 187, 0)
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(14, 85, 187, 0);
        box-shadow: 0 0 0 0 rgba(14, 85, 187, 0)
    }
}

.xmas-click {
    width: 280px;
    position: fixed;
    bottom: 120px;
    left: 40px;
    z-index: 999;
    animation-name: float_up_down;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    transition: all 0.5s ease-in-out;
}

..xmas-click img {
    width: 100%;
}

.close-xmas {
    background-image: url(../images/close-xmas.png);
    background-color: transparent;
    border: none;
    background-size: 37px 38px;
    background-repeat: no-repeat;
    width: 37px;
    height: 38px;
    text-indent: -9999px;
    position: absolute;
    right: 40px;
    top: -10px;
}

.xmas-click.toggle-xmas {
    left: -310px;
}

.side-xmas {
    background: #FF2E2E;
    color: white;
    padding: 12px 20px;
    display: inline-block;
    font-weight: 600;
    transform: rotate(90deg);
    bottom: 340px;
    position: fixed;
    left: -186px;
    border-radius: 10px 10px 0px 0px;
    transition: all 0.5s ease-in-out;
    letter-spacing: 1px;
    cursor: pointer;
    width: 220px;
    text-align: center;
    height: 50px;
    line-height: 34px;
}

.side-xmas.toggle-side-xmas {
    left: -85px;
}

.side-xmas::before {
    content: '';
    background: white;
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    left: 10px;
    top: 26px;
}

.side-xmas::after {
    content: '';
    background: white;
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    right: 10px;
    top: 26px;
}

.portfolio-owl.off {
    display: block;
}

.offer-banner {
    background-image: url(../images/offer-banner.jpg);
    background-repeat: no-repeat;
    min-height: calc(100vh - 80px);
    padding-top: 200px;
    margin-top: 80px;
    text-align: center;
    position: relative
}

.offer-banner h1 {
    font-weight: 700;
    font-size: 72px;
    color: #fff;
    text-transform: uppercase
}

.offer-banner p {
    font-weight: 700;
    font-size: 26px;
    letter-spacing: .07em;
    color: #fff
}

.offer-banner a {
    border: 3px solid #fff;
    border-radius: 40px;
    padding: 12px 60px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    transition: all .3s ease
}

.offer-banner a:hover {
    background-color: #fff;
    color: #4b26cf
}

.ch-offer-bg {
    margin-top: -380px;
    pointer-events: none
}

.ch-offer-bg img {
    width: 100%
}

.new-offer {
    padding: 80px 0;
    margin-top: 0;
    position: relative;
    background: linear-gradient(#f3e1b7 0%, #f3f0e9 100%)
}

.new-offer::before {
    content: "";
    background-image: url(../images/new-year-ob.png);
    background-repeat: no-repeat;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 700px;
    height: 730px;
    z-index: 9;
    background-size: 100% auto;
    right: auto;
    bottom: auto;
}

.new-offer::after {
    content: "";
    background-image: url(../images/ch-ornamental.png);
    background-repeat: no-repeat;
    display: inline-block;
    position: absolute;
    bottom: -100px;
    right: 0;
    width: 207px;
    height: 200px;
    z-index: 9;
    animation-name: swing;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.offer-title2 {
    font-weight: 700;
    font-size: 36px;
    color: #000;
    margin-bottom: 50px
}

.offer-title2 span {
    color: #ff0707
}

.new-offer .new-offer-box {
    padding: 30px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 3px 26px rgba(0, 0, 0, .16);
    margin-bottom: 30px
}

.new-offer .new-offer-box h3 {
    font-weight: 700;
    font-size: 20px;
    margin: 15px 0
}

.new-offer .new-offer-box h3 span {
    color: #ff0707
}

.new-offer .new-offer-box p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0
}

.hurry-up {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 20px;
    color: #000
}

.hurry-up img {
    border-radius: 50%;
    margin-right: 10px
}

.new-offer .new-offer-box1 {
    position: absolute;
    left: 0;
    top: 80px;
    animation-name: float_up_down;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

.new-offer .new-offer-box2 {
    position: absolute;
    right: 70px;
    top: 50px;
    animation-name: float_up_down;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

.offer-banner .mouse-move {
    display: block;
    border: 2px solid #fff;
    width: 40px;
    margin: 30px auto 0;
    color: #fff;
    padding: 10px 0;
    border-radius: 20px;
    font-size: 24px
}

.offer-banner .mouse-move i {
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15, .41, .69, .99);
    animation-iteration-count: infinite
}

.offer-tabing {
    background-image: url(../images/offer-tab-bg.svg);
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 140px;
    background-position: -2px 0
}

.offer-tabing::after {
    content: "";
    background-image: url(../images/ch-ment.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    display: inline-block;
    position: absolute;
    bottom: -160px;
    right: 40px;
    width: 128px;
    height: 260px;
    left: auto;
    top: auto;
    animation-name: float_up_down;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.video_container {
    width: 100%;
    background: #fff;
    margin-top: -75px;
    padding-top: 60px
}

.offer-tabing ul.nav-tabs {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 3px 60px rgba(0, 0, 0, .16);
    margin: 0;
    position: relative;
    top: 60px;
    border: none
}

.offer-tabing h2 {
    text-align: center;
    margin-bottom: 0
}

.offer-tabing .offer-tab-content {
    padding-top: 150px
}

.offer-tabing::before {
    display: none
}

.tab-listing h3 {
    font-weight: 700;
    font-size: 48px;
    text-align: left;
    color: #fff
}

.offer-tabing .tab-listing h3 span {
    display: block;
    font-weight: 400
}

.offer-tabing .tab-images {
    margin-right: 50px
}

.nav-tabs .nav-item aside {
    background: #f3f3f3;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px
}

.offer-tabing .tab-listing ul li {
    color: #fff;
    line-height: normal;
    background-position: center left;
    margin-bottom: 30px;
    background-image: url(../images/listing-icon2.svg);
    background-size: 25px 25px;
    background-repeat: no-repeat;
    padding-left: 38px !important;
    font-size: 18px
}

.offer-tabing ul li img {
    padding-right: 0
}

.offer-tabing ul li a span {
    color: #000;
    line-height: normal;
    align-items: center
}

.offer-tabing ul li a.active {
    background-color: #fff !important;
    border-color: #fff !important
}

.nav-tabs .nav-item a.active aside {
    background: linear-gradient(#00bbc2 0, #0080ba 100%)
}

.nav-tabs .nav-item a.active aside img {
    filter: brightness(0) invert(1)
}

.offer-tabing ul li a.active span {
    color: #0086ba;
    border-color: #c4c1c1
}

.offer-tabing ul li a:not(.active):hover {
    background-color: transparent
}

.offer-tabing .tab-box a {
    border: none;
    border-radius: 40px;
    padding: 12px 60px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    transition: all .3s ease;
    background-color: #ff0707
}

.offer-tabing .tab-box a:hover {
    background-color: #db1717;
    color: #fff
}

.demandslider.appslider {
    background: 0 0;
    padding-top: 50px;
    padding-bottom: 80px
}

.appslider .item::after {
    display: none
}

.demandslider.appslider .item {
    position: relative;
    background: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    padding: 35px;
    margin: 30px 20px 30px 20px
}

.demandslider.appslider .item:hover {
    background: #fff;
    border: 1px solid #fff;
    box-shadow: 0 3px 26px rgba(0, 0, 0, .16)
}

.appslider .readyMadeContent {
    top: 0;
    left: 0;
    margin-top: 20px
}

.webslider .readyMadeContent h4 {
    margin: 15px 0;
    color: #252525;
    font-size: 20px
}

.appslider .item:hover h4 {
    color: #252525
}

.webslider .readyMadeContent span {
    font-weight: 700;
    font-size: 24px;
    color: #ff0707;
    line-height: normal
}

.demandslider.appslider h2 {
    text-align: center
}

.demandslider .container {
    max-width: 80%
}

.mix-btn {
    border-radius: 35px;
    background: linear-gradient(270deg, #ff2a2f 0, #3d28e2 100%);
    display: inline-block;
    padding: 12px 60px;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    min-width: 380px;
    transition: all .3s ease
}

.mix-btn:hover {
    background: linear-gradient(135deg, #ff2a2f 0, #3d28e2 100%);
    color: #fff !important
}

.grab-ui-ux {
    background: #1d73f8;
    background: linear-gradient(60deg, #1d73f8 0%, #205dbb 100%);
    padding-top: 85px
}

.grab-ui-ux h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 30px
}

.grab-ui-ux p {
    color: #fff;
    font-size: 20px;
    margin-bottom: 40px
}

.grab-ui-ux a {
    border: none;
    border-radius: 40px;
    padding: 12px 60px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    transition: all .3s ease;
    background-color: #ff0707
}

.grab-ui-ux a:hover {
    background-color: #db1717;
    color: #fff
}

.pb-80 {
    padding-bottom: 80px
}

.portfolio-row {
    color: #fff;
    padding-top: 60px
}

.page-head {
    display: inline-block;
    width: 100%;
    color: #000
}

.portfolio-row h2 {
    font-size: 2.3vw;
    font-weight: 600
}

.portfolio-row .page-head p {
    width: 100%;
    color: #000
}

.portfolio-row .portfolios {
    margin-top: 40px;
    position: relative
}

.portfolio-row .portfolios .item {
    padding: 80px 0;
    min-height: 100vh;
    position: relative
}

.portfolio-row .portfolios .item.colgate {
    background: #9d9d9d
}

.portfolio-row .portfolios .item.zattoo {
    background: #1a1a1a
}

.portfolio-row .portfolios .item.joom {
    background: #2c2d41
}

.portfolio-row .portfolios .item.irl {
    background: #345bda
}

.portfolio-row .portfolios .item.picnic {
    background: #d34c4c
}

.port-item {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.port-item .lt-graphic {
    width: 55%;
    padding-right: 50px;
    clip: rect(auto, auto, auto, auto);
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto
}

.port-item .fixed-mobile {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    position: fixed;
    left: 60%;
    top: 55%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.port-item .fixed-mobile img {
    max-width: 720px
}

.port-item .rt-content {
    width: 45%;
    position: relative
}

.col-logo {
    display: flex;
    align-items: center
}

.logo-text {
    margin-left: 30px
}

.title1 {
    font-size: 54px;
    font-weight: 700;
    margin: 0
}

.title5 {
    font-size: 18px;
    font-weight: 500;
    margin: 0
}

.technology {
    margin-top: 50px;
    margin-bottom: 60px
}

.technology>.title3 {
    margin-bottom: 20px;
    font-weight: 600
}

.technology ul {
    display: flex;
    list-style: none;
    padding-left: 0
}

.technology li {
    font-size: 18px;
    font-weight: 500;
    margin-right: 20px;
    background: #fff;
    border-radius: 23px;
    padding: 10px 28px;
    color: #000
}

.technology.avail li {
    padding: 0;
    background: 0 0
}

.portfolio-row p {
    color: #fff;
    margin: 0
}

.technology.avail {
    margin-bottom: 0
}

.offer-discuss {
    background-image: url(../images/discuss-bg.png);
    background-size: 100% auto;
    background-position: inherit;
    background-attachment: inherit;
    padding-top: 280px;
    padding-bottom: 280px;
    background-color: #f5f5f5;
    background-repeat: no-repeat
}

.offer-discuss::before {
    display: none
}

.offer-discuss h2 {
    color: #fff;
    font-size: 54px;
    width: 80%;
    margin: 0 auto
}

.offer-discuss h2 b {
    font-size: 74px;
    font-weight: 700
}

.offer-discuss p {
    color: #fff;
    font-size: 20px;
    line-height: 34px;
    width: 90%
}

.offer-discuss a {
    border: none;
    border-radius: 40px;
    padding: 12px 60px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    transition: all .3s ease;
    background-color: #ff0707;
    t
}

.offer-discuss a:hover {
    background-color: #db1717;
    color: #fff;
}

.offer-discuss .discussSpecialistsInside {
    position: static
}

.discuss-element-1 {
    position: absolute;
    left: 0px;
    bottom: -110px;
    animation-name: float_up_down;
    animation-duration: 7s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    width: 350px;
}

.discuss-element-2 {
    position: absolute;
    right: 0;
    bottom: -90px;
    width: 350px;
}

.discuss-element-box-1 {
    position: absolute;
    bottom: 0;
    left: 50%;
    animation-name: float_up_down;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

.discuss-element-box-2 {
    position: absolute;
    bottom: 20px;
    left: 76%;
    animation-name: float_up_down;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

.ch-ribbon-left,
.ch-ribbon-right {
    position: relative
}

.ch-ribbon-left::before {
    content: '';
    background: url(../images/ch-ribbon.svg);
    background-repeat: no-repeat;
    display: inline-block;
    width: 180px;
    height: 200px;
    position: absolute;
    z-index: -1;
    left: 50px;
    top: 0;
    background-size: 100% 200px;
    animation-name: float_up_down;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

.ch-ribbon-right::before {
    content: '';
    background: url(../images/ch-ribbon.svg);
    background-repeat: no-repeat;
    display: inline-block;
    width: 180px;
    height: 200px;
    position: absolute;
    z-index: -1;
    right: 50px;
    top: 0;
    background-size: 100% 200px;
    animation-name: float_up_down;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

.portfolio-row.ch-ribbon-right::before {
    top: -40px;
    z-index: -1
}

.partnershipModelsRow {
    overflow: hidden
}

.partnershipModelsRow.ch-ribbon-left::before {
    z-index: 1
}

.demandslider.appslider.ch-ribbon-left::before {
    top: -40px
}

#countdown {
    background: rgba(74, 48, 0, 0.9);
    display: table;
    margin: 30px auto 40px;
    border-radius: 70px;
    padding: 0 50px
}

#countdown ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin-bottom: 0
}

#countdown ul li {
    color: #fff;
    padding: 20px;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: .07em;
    text-align: center;
    position: relative;
}

#countdown ul li::after {
    content: ':';
    font-size: 40px;
    position: absolute;
    right: -10px;
    top: 16px;
}

#countdown ul li:last-child::after {
    display: none;
}

#countdown ul li span {
    display: block;
    font-size: 36px;
    letter-spacing: .07em
}

@keyframes float_up_down {
    0% {
        transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
    50% {
        transform: translateY(-30px);
        transform: translateY(-30px);
        opacity: 1
    }
    100% {
        transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes swing {
    20% {
        transform: rotate(15deg)
    }
    40% {
        transform: rotate(-10deg)
    }
    60% {
        transform: rotate(5deg)
    }
    80% {
        transform: rotate(-5deg)
    }
    100% {
        transform: rotate(0)
    }
}

.portfolio-owl .owl-carousel .owl-item .col-logo>img {
    margin-right: 15px;
    display: block;
}

#countdown {
    background: #ff0707;
}

.countdown p {
    margin-bottom: 0;
    font-size: 20px;
    padding: 12px;
    font-weight: bold;
}

#launcher,
#webWidget {
    bottom: 40px !important;
}

.u-userLauncherColor:not([disabled]) {
    background-color: rgb(124, 170, 231) !important;
}

@media (max-width:1680px) {
    .offer-banner {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .close-xmas {
        top: -30px;
    }
    .port-item .fixed-mobile img {
        max-width: 580px
    }
    .title1 {
        font-size: 42px
    }
    .port-item .lt-graphic {
        padding-right: 30px
    }
    .technology li {
        font-size: 16px;
        margin-right: 16px;
        padding: 7px 22px
    }
    .technology {
        margin-top: 35px
    }
    .technology>.title3 {
        margin-bottom: 10px
    }
    .technology.avail li {
        display: flex;
        align-items: center
    }
    .ch-ribbon-left::before {
        left: 10px
    }
    .ch-ribbon-right::before {
        right: 10px
    }
    .new-offer::before {
        width: 570px;
        height: 620px;
    }
    .discuss-element-1 {
        bottom: 0;
        width: 280px;
    }
    .discuss-element-2 {
        width: 320px;
        bottom: 0;
    }
    .discuss-element-1 {
        bottom: -60px;
    }
}

@media (max-width:1441px) {
    .xmas-click {
        width: 202px;
        left: 15px;
    }
    .port-item .fixed-mobile img {
        max-width: 480px
    }
    .title1 {
        font-size: 36px
    }
    .offer-discuss {
        padding-top: 150px;
        padding-bottom: 220px
    }
    .discuss-element-1 img {
        width: 200px
    }
    .discuss-element-2 img {
        width: 280px
    }
    .offer-discuss p {
        color: #fff;
        font-size: 16px;
        line-height: 26px;
        width: 60%
    }
    .offer-discuss h2 {
        font-size: 36px;
        width: 570px
    }
    .offer-discuss h2 b {
        font-size: 44px
    }
    .offer-banner h1 {
        font-size: 54px
    }
    .offer-banner p {
        font-size: 20px
    }
    #countdown {
        padding: 0 20px
    }
    #countdown ul li {
        padding: 15px 20px;
        font-size: 16px
    }
    #countdown ul li span {
        font-size: 26px
    }
    .ch-offer-bg {
        margin-top: -250px
    }
    .grab-ui-ux h2,
    .tab-listing h3 {
        font-size: 36px
    }
    .offer-tabing .tab-listing ul {
        margin: 30px 0 0 0
    }
    .grab-ui-ux a,
    .mix-btn,
    .offer-banner a,
    .offer-discuss a,
    .offer-tabing .tab-box a {
        padding: 12px 40px;
        font-size: 16px
    }
    .demandslider.appslider h2 {
        margin-bottom: 0
    }
    .webslider .readyMadeContent h4 {
        font-size: 16px
    }
    .webslider .readyMadeContent span {
        font-size: 20px
    }
    .mix-btn {
        min-width: 240px
    }
    .grab-ui-ux h2 {
        width: 420px
    }
    .grab-ui-ux p {
        font-size: 16px
    }
    #countdown ul li::after {
        font-size: 30px;
        right: -5px;
        top: 11px;
    }
    .side-xmas {
        padding: 10px 20px;
        font-weight: 500;
        bottom: 340px;
        width: 190px;
        height: 35px;
        line-height: 24px;
        font-size: 13px;
        letter-spacing: 0.5px;
    }
    .side-xmas.toggle-side-xmas {
        left: -78px;
    }
    .side-xmas::before,
    .side-xmas::after {
        top: 18px;
    }
    .discuss-element-2 {
        bottom: -100px;
    }
    .new-offer::before {
        width: 500px;
        height: 540px;
    }
    .navbar {
        padding-left: 20px;
        padding-right: 20px;
    }
    .navbar-brand {
        width: 245px;
    }
    .mainHeader nav ul li a {
        font-size: 15px;
    }
    .navbar-nav {
        align-items: center;
    }
}

@media (max-width:1380px) {
    .new-offer::after {
        bottom: -140px;
        width: 125px;
        background-size: 100% auto;
    }
    .new-offer::before {
        width: 440px;
        height: 440px;
    }
    .offer-tabing::after {
        width: 90px;
        height: 220px;
        background-size: 100% auto;
    }
}

@media only screen and (min-width:992px) and (max-width:1400px) {
    .acceptprivacy .container {
        max-width: 85%;
    }
    .acceptprivacy p {
        font-size: 14px;
    }
    .acceptprivacy button {
        font-size: 14px;
    }
}

@media screen and (max-width:1300px) {
    .christmas-form-box {
        width: 500px
    }
    .offer-tabing ul li a span {
        padding: 10px 65px
    }
    .offer-tabing p {
        font-size: 20px
    }
}

@media (max-width:1285px) {
    .new-offer .new-offer-box h3 {
        font-size: 18px
    }
    .demandslider.appslider .item {
        padding: 25px;
        margin: 10px 15px 10px 15px
    }
    .new-offer .new-offer-box {
        padding: 20px 15px
    }
    .new-offer .new-offer-box p {
        font-size: 14px
    }
    .hurry-up {
        font-size: 16px
    }
    .navbar-brand {
        width: 230px;
    }
    .mainHeader nav ul li a {
        font-size: 13px;
    }
}

@media (max-width:1199px) {
    .offer-banner {
        min-height: inherit
    }
    .new-offer::after {
        width: 127px;
        background-size: 100% auto;
        background-repeat: no-repeat
    }
    .offer-tabing::after {
        width: 120px;
        height: 210px;
        background-size: 100% auto;
        background-repeat: no-repeat
    }
    .portfolio-row .page-head {
        width: 60%;
        margin: 0 auto;
        display: block
    }
    .port-item .fixed-mobile img {
        max-width: 420px;
        margin: 0 auto
    }
    .logo-text .title1 {
        font-size: 28px
    }
    .logo-text .title5 {
        font-size: 12px
    }
    .technology {
        margin-top: 18px;
        margin-bottom: 18px
    }
    .technology>.title3 {
        font-size: 18px
    }
    .technology li {
        font-size: 12px;
        margin-right: 14px;
        padding: 4px 16px
    }
    .portfolio-row p {
        line-height: normal
    }
    .offer-title2 {
        font-size: 30px
    }
    .portfolio-row h2 {
        font-size: 30px
    }
    .new-offer-santa {
        width: 400px;
        margin: 0 auto;
        display: table
    }
    .portfolio-owl.owl-carousel .owl-item .col-logo>img {
        width: 64px;
        padding-top: 12px
    }
    .new-offer::before {
        display: none;
    }
    .discuss-element-1,
    .discuss-element-2 {
        display: none;
    }
    .offer-discuss {
        padding-bottom: 150px;
        background-size: cover;
    }
    
}

@media (max-width:1023px) {
    button.navbar-toggler
    {
        background: transparent;
    }
    .menu {
        background: #002b6b
    }
    nav.black ul {
        background: #000
    }
    .showing {
        height: 78vh
    }
    .menu-icon {
        display: block
    }
    .mainHeader nav ul li a.requestBtn {
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: -webkit-transform 1s;
        -moz-transition: -moz-transform 1s;
        transition: 1s;
        width: 100%;
        text-align: center
    }
    .mainHeader nav ul li {
        box-sizing: border-box;
        padding: 0;
        text-align: left;
        margin: 0;
        display: inherit
    }
    .mainHeader nav ul li a {
        padding: 24px 10px 24px 30px;
        font-size: 17px;
        text-transform: uppercase
    }
    .has-children>a.selected::before {
        -webkit-transform: rotate(220deg);
        -moz-transform: rotate(220deg);
        -ms-transform: rotate(220deg);
        -o-transform: rotate(220deg);
        transform: rotate(220deg)
    }
    .has-children>a.selected::after {
        -webkit-transform: rotate(-42deg);
        -moz-transform: rotate(-42deg);
        -ms-transform: rotate(-42deg);
        -o-transform: rotate(-42deg);
        transform: rotate(-42deg)
    }
    .menuHeadTitle {
        color: #fff;
        font-weight: 700;
        font-size: 20px;
        margin: 0;
        display: flex;
        line-height: 65px
    }
    .navbar-toggler
    {
        display: block;
    }
        .right-nav-bt {
    justify-content: end;
    display: flex;
    align-items: center;
    position: absolute;
}
button.navbar-toggler {
    background: url(../images/2021-new/menu-bar.svg);
    background-repeat: no-repeat;
    /* background-size: 100%; */
    padding: 13px;
}
.full-header .navbar {
    padding: 15px 15px;
}
    .inner-menu .menu_img,
    .inner-menu .company_info {
        display: none !important;
    }
    .mainHeader nav ul .company_menu.companyBG {
        background: none;
    }
    .mainHeader nav ul .company_menu li {
        display: block;
        width: auto;
        float: none;
    }
    .inner-menu {
        flex-direction: column;
    }
    .navbar-nav {
        align-items: flex-start;
        display: block;
        height: 100%;
    }
    .mainHeader nav ul {
        padding-right: 0;
    }
    .navbar-nav .nav-link {
        padding-right: 15px;
        padding-left: 15px;
        color: #fff !Important;
    }
    .mainHeader nav ul ol {
        padding-left: 30px;
    }
    .mainHeader nav ul .company_menu {
        padding: 10px 0;
        width: auto;
        min-height: inherit;
    }
    .mainHeader nav ul .company_menu li a {
        float: none;
        text-transform: none;
    }
    .mainHeader nav ul .company_menu li a::before {
        content: '';
        margin-right: 0;
        background: white;
        left: -8px;
        height: 15px;
        top: 11px;
        width: 3px;
        position: absolute;
        transform: translateY(-50%);
    }
    .mainHeader nav ul .company_menu li a img {
        display: none;
    }
    .mainHeader nav ul>li>a {
        color: #fff;
        padding: 15px 10px 15px 30px;
        font-size: 17px;
        text-transform: uppercase;
    }
    .mainHeader nav ul li.dropdown>a::after {
        filter: grayscale(1) invert(1);
        float: right;
    }
    .navbar-collapse {
        background: #637A92;
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        padding: 10px 0px 30px;
        height: 100vh;
        overflow-y: scroll;
    }
    .navbar .navbar-nav .dropdown-menu.megamenu {
        background: #4a637c;
        border: none;
        border-radius: 0;
    }
    .mainHeader nav ul .company_menu {
        padding: 0;
    }
    .mainHeader nav ul .company_menu li a {
        color: white;
        margin-left: 10px !important;
    }
    .mainHeader nav ul .company_menu .submenu li a {
        margin-left: 0 !important;
    }
    .mainHeader nav ul .tabs .tab {
        display: block;
    }
    .mainHeader nav ul .tabs .tab-content {
        width: 100%;
        overflow-y: scroll;
        padding: 25px 0;
    }
    .inner-menu
    {
        overflow-y: scroll;
        height: 300px;
        
    }
    .mainHeader nav ul .tabs .tab-content ul li .submenu {
        top: 0;
        left: 35px;
        padding: 0;
        height: auto;
        position: inherit;
    }
    .mainHeader nav ul .company_menu .submenu li {
        margin-bottom: 16px;
    }
    .mainHeader nav ul .tabs ul.tab-links {
        display: none;
    }
    .mainHeader nav ul .tab-content .company_menu {
        width: auto;
        margin-bottom: 30px;
        margin-left: 40px;
    }
    .mainHeader nav ul .tabs {
        width: 100%;
    }
    .mainHeader nav ul .tabs .readyuse ul li {
        width: auto;
    }
    .mainHeader nav ul .tabs .readyuse ul li a::before {
        content: '';
        margin-right: 0;
        background: white;
        left: -8px;
        height: 15px;
        top: 15px;
    }
    .mainHeader nav ul .company_menu.EmergingTech {
        width: 100%;
        background: transparent;
        border: none;
        height: auto;
        padding-left: 40px;
        padding-bottom: 10px;
    }
    .mainHeader nav ul .company_menu.EmergingTech .title {
        color: white;
        margin-top: 0;
        margin-bottom: 10px;
        margin-left: -30px;
    }
    .mainHeader nav ul .tabs .tab .title {
        font-size: 18px;
        text-transform: uppercase;
        color: white;
        padding-left: 25px;
        font-weight: 700;
        margin-bottom: 15px;
        display: block;
    }
    .mainHeader nav ul .tabs .tab.readyuse .company_menu {
        margin-bottom: 0;
    }
    .mainHeader nav ul li a.requestBtn {
        margin-left: 15px;
        margin-right: 15px;
        width: calc(100% - 30px);
    }
    .mainHeader nav ul .tabs .readyuse ul li a {
        margin-top: 13px;
        margin-bottom: 13px;
        margin-left: 0 !important;
    }
    .mainHeader nav ul .company_menu.EmergingTech li a {
        margin: 15px 10px;
    }
    .mainHeader nav ul .tabs .tab-content ul li .submenu li:first-child a {
        background: none;
        padding-left: 10px;
    }
    .mainHeader nav ul .company_menu li a:hover {
        color: white;
    }
    .port-item .lt-graphic {
        position: static;
        padding: 0;
        width: auto
    }
    .technology {
        display: none
    }
    .portfolio-row.ch-ribbon-right::before {
        display: none
    }
    .portfolio-row .portfolios .item {
        min-height: auto
    }
    .port-item {
        flex-direction: column
    }
    .port-item .lt-graphic {
        width: 100%;
        padding-right: 0;
        margin: 30px 0 40px
    }
    .port-item .fixed-mobile {
        position: static;
        transform: translate(0, 0)
    }
    .port-item .rt-content {
        width: 80%;
        margin: auto;
        position: absolute;
        height: 100%;
        top: 0
    }
    .col-logo {
        justify-content: center;
        margin-top: 20px
    }
    .logo-text {
        margin-left: 15px
    }
    .portfolio-row p,
    .technology {
        display: none
    }
    .technology.avail {
        display: block;
        position: absolute;
        left: 50%;
        top: 93%;
        transform: translate(-50%, -93%);
        margin-top: 0
    }
    .technology>.title3 {
        text-align: center
    }
    .technology ul {
        justify-content: center
    }
    .offer-discuss {
        background-size: cover
    }
    .offer-banner {
        padding-top: 60px;
        min-height: inherit
    }
    .offer-banner h1 {
        font-size: 40px
    }
    .offer-banner p {
        font-size: 16px
    }
    .ch-offer-bg {
        margin-top: -100px
    }
    .portfolio-row .owl-dots {
        display: none
    }
    .portfolio-row .owl-nav {
        position: absolute;
        right: 3px;
        bottom: -25px;
        top: auto;
        justify-content: center;
        width: 100%;
        display: flex
    }
    .portfolio-row button.owl-next span,
    .portfolio-row button.owl-prev span {
        background: #fff;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 42px;
        line-height: normal;
        margin: 5px;
        color: #333;
        border-radius: 3px;
    }
    .xmas-click {
        width: 215px;
    }
    .technology.avail {
        top: 95%;
    }
    .offer-tabing::after {
        width: 80px;
        height: 110px;
        background-size: 100% auto;
        background-repeat: no-repeat;
        bottom: -50px;
    }
}

@media (max-width:767px) {
    .footer-copyright-in {
    justify-content: center;
    flex-wrap: wrap;
}
    .offer-tabing .tab-images {
        margin-right: 0;
        margin-bottom: 30px
    }
    .offer-discuss h2 {
        font-size: 24px;
        width: auto
    }
    .offer-discuss h2 b {
        font-size: 30px
    }
    .offer-discuss p {
        width: 90%
    }
    .discuss-element-1,
    .discuss-element-2,
    .discuss-element-box-1,
    .discuss-element-box-2 {
        display: none
    }
    .offer-discuss {
        padding-top: 80px;
        padding-bottom: 80px
    }
    .grab-ui-ux {
        padding-top: 35px
    }
    .grab-ui-ux h2 {
        width: auto
    }
    .grab-ui-ux h2,
    .tab-listing h3 {
        font-size: 30px
    }
    .ch-ribbon-left::before,
    .ch-ribbon-right::before {
        display: none
    }
    .portfolio-row .portfolios .item {
        padding: 30px 0;
        min-height: inherit
    }
    .port-item .lt-graphic {
        position: static;
        clip: unset
    }
    .port-item .fixed-mobile {
        margin-top: 50px;
        margin-bottom: 50px
    }
    .port-item .rt-content {
        width: 100%
    }
    .portfolio-owl.owl-carousel .owl-item .col-logo>img {
        width: 50px;
        padding-top: 0
    }
    .logo-text .title1 {
        font-size: 22px
    }
    .col-logo .title5 {
        display: none
    }
    .technology.avail .title3 {
        white-space: nowrap
    }
    .portfolio-row button.owl-next i,
    .portfolio-row button.owl-prev i {
        background: #fff;
        color: #333
    }
    .portfolio-row .owl-nav {
        position: absolute;
        right: 3px;
        bottom: 3px;
        top: auto;
        justify-content: flex-end
    }
    .xmas-click {
        width: 160px;
        bottom: 100px;
        left: 10px;
    }
    .technology.avail li img {
        width: 25px;
    }
    .nav-tabs .nav-item aside {
        width: 50px;
        height: 50px;
    }
    .nav-tabs .nav-item aside img {
        width: 25px;
    }
    .portfolioBox .portfolioBoxContent {
        bottom: 20px;
    }
    .recentwork-area .col-lg-8.col-item .portfolioBox img {
        height: 100%;
        object-fit: cover;
    }
    #carousel {
        z-index: -1;
        height: 0;
    }
}

@media (max-width:575px) {
    .mainHeader nav ul>li>a {
    color: #fff;
    padding: 10px 10px 10px 10px !important;
    }
    .mainHeader nav ul #mobile-app .company_menu li a {
    padding: 3px 0 !important;
}
.mainHeader nav ul .company_menu li a::before {
    top: 13px;
}
    #countdown ul li {
        padding: 10px;
        font-size: 13px
    }
    #countdown ul li span {
        font-size: 20px
    }
    .ch-offer-bg {
        margin-top: 0
    }
    .new-offer-santa {
        width: 260px
    }
    .new-offer .new-offer-box1 {
        top: 20px
    }
    .new-offer .new-offer-box2 {
        top: 10px
    }
    .new-offer::after {
        bottom: -40px;
        right: -20px;
        height: 165px;
    }
    .offer-banner h1 {
        font-size: 30px
    }
    #countdown ul li::after {
        font-size: 20px;
        top: 10px;
    }
    .offer-tabing ul.nav-tabs {
        top: 30px;
        display: flex;
        align-items: center;
        justify-content: center
    }
    .offer-tabing ul li {
        width: auto
    }
    .nav-tabs .nav-item aside {
        display: none
    }
    .offer-tabing ul li a span {
        font-size: 13px;
        border-bottom: 3px solid transparent;
        margin-bottom: 0px;
        text-align: center;
    }
    .offer-tabing ul li a.active span {
        border-bottom: 2px solid #ff0707
    }
    .offer-tabing .offer-tab-content {
        padding-top: 60px;
    }
    .offer-tabing .tab-images img {
        max-width: 90%;
    }
    .demandslider .container {
        max-width: 100%;
    }
    .offer-title2,
    .grab-ui-ux h2,
    .tab-listing h3,
    .portfolio-row h2 {
        font-size: 24px;
    }
    .portfolio-row {
        padding-top: 30px;
    }
    .offer-discuss h2 b {
        font-size: 30px;
    }
    .offer-title2 span {
        display: block;
    }
    .new-offer::after,
    .offer-tabing::after {
        display: none;
    }
    .nftMarketplaces {
        padding: 30px 0;
    }
}
.navbar-brand
{
    margin-right: 0;
}
.btn.GetQuoteBtn {
    margin-right: 15px;
}
@media only screen and (max-width:1300px) {
    .navbar-brand img {
    width: 170px;
    }
    .navbar-brand {
    width: auto;
}
}
@media only screen and (max-width:1285px) {

.right-nav-bt .btn {
    font-size: 13px;
    padding: 10px 12px;
}
.mainHeader nav ul li {
    margin-left: 0;
}
.navbar-brand {
    width: auto;
}
}
@media only screen and (max-width:1199px)
{

.PortfolioBanner1 {
    margin: 0 15px;
}

.right-nav-bt .btn {
    font-size: 12px;
    padding: 9px 10px;
}

}
@media only screen and (max-width:767px) {
    .PortfolioBanner1.mt-100 {
    margin-top: 70px;
}
    .navbar-brand img {
    width: 133px;
    }
.right-nav-bt {
    position: absolute;
    /* right: -45px; */
    justify-content: end;
    right: 50px;
    z-index: -1;
}
button.navbar-toggler {
    background: url(../images/2021-new/menu-bar.svg);
    background-repeat: no-repeat;
    /* background-size: 100%; */
    padding: 13px;
}
.btn.GetQuoteBtn, .whatsappBtn img {
    height: 34px;
}
}
@media only screen and (max-width:767px) {
    .navbar-brand img {
    width: 125px;
    }
}
@media only screen and (max-width:767px) {
    .navbar-brand img {
    width: 140px;
    }
}
@media only screen and (max-width:360px) {
    .navbar-brand img {
    width: 130px;
    }
}
@media only screen and (max-width:345px) {
    .navbar-brand img {
    width: 120px;
    }
}
@media only screen and (min-width:1500px) {
.navbar-nav .nav-item .nav-link {
    font-size: 17px;
}
.right-nav-bt {
    margin-left: 25px;
}
.right-nav-bt .btn {
    font-size: 16px;
    padding: 10px 12px;
}
.lets-btn
{
    font-size: 16px;
}
}
.company_menu ol li
{
    display: flex;
    flex-wrap: wrap;
}
.mainHeader nav ul .company_menu li a .grey_icon {
    filter: brightness(0.1);
}

.mainHeader nav ul .company_menu li a .grey_icon {
            width: 20px;
            height: 30px;
    object-fit: contain;
    }
    @media screen and (max-width: 1100px)
{
    .services-banner-text-in h1 {
    font-size: 42px;
    line-height: 50px;
}
  .common-banner-info h1 {
    font-size: 35px;
}
}

@media screen and (max-width: 991px)
{
    .full-header .navbar {
    padding: 10px 15px !important;
}
    .connect-with-sec {
    display: block;
}
    .serving-footer p {
    color: #ffffff;
    font-size: 14px;
}
.footer-copyright-in {
    justify-content: center;
}
.footer-copyright-in img {
    margin-left: 10px;
}
.cta-pink-left h3 {
    font-size: 35px;
}
.services-banner-text-in h1 {
    font-size: 30px;
    line-height: 42px;
}
.common-banner-info h1 {
    font-size: 30px;
}
}

@media screen and (max-width: 575px)
{
.services-banner-text-in h1 {
    font-size: 28px !important;
    line-height: 35px !important;
    margin-top: 30px !important;
}
section.cta-color .section-padding {
    padding: 20px 0 !important;
}
.section-padding {
    padding: 30px 0 30px !important;
}
.dev_process_blk figcaption {
    min-height: auto !important;
    margin-bottom: 0 !important;
}
.dev_process_blk figcaption h4 {
    font-size: 16px !important;
}
.dev_process_blk article {
    padding: 20px !important;
}
.footer-menu-box {
    padding: 45px 0 0 !important;
}
.connect-with li {
    padding: 0;
    max-width: 33.3% !important;
    width: 100%;
}
.col-md-4.client_review_item {
    margin-bottom: 15px;
}
section.section-padding.client-visit-section {
    padding: 0px 0 0 !important;
}
.main-heading-box {
    margin-bottom: 30px !important;
}
.serving-footer h4 {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 10px;
}
.footer-social-in h6 {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 0;
}
.footer-copyright-in ul {
    display: inline-flex;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
}
.req-form-header h2 {
    text-align: center;
    margin-bottom: 20px;
    line-height: 35px;
}
.services-banner-text-in h1 {
    font-size: 25px;
    line-height: 32px;
}
.inner-warper {
    padding-top: 60px;
}
.inner-wraper.pt-100 {
    padding-top: 60px;
}
.common-banner-info h1 {
    font-size: 30px;
}
}
@media screen and (max-width: 345px)
{
    .services-banner-text-in h2, .main-heading-box h3 {
    font-size: 28px;
    }
    .cta-pink-left h2 {
    font-size: 25px;
    margin-bottom: 10px;
}
    .right-nav-bt .btn {
    font-size: 11px !Important;
    padding: 6px 8px !Important;
    height: 30px !important;
    line-height: 1 !Important;
}
.btn.GetQuoteBtn, .whatsappBtn img {
    height: 30px !Important;
}
.btn.GetQuoteBtn {
    margin-right: 2px !Important;
}
.navbar-brand img {
    width: 90px !Important;
}
.btn {
    height: 42px !important;
    font-size: 13px !important;
    padding: 0 10px;
}
}


.navbar-toggler span {
    display: block;
    width: 33px;
    height: 5px;
    margin-bottom: 6px;
    margin-left: 8px !important;
    position: relative;
    background: #000;
}
@media screen and (max-width: 1023px)
{
    .mainHeader nav ul li.dropdown>a::after {
    background-size: 65%;
    width: 20px !important;
    height: 20px;
    }
   
     button.navbar-toggler[aria-expanded="false"] .top-bar {
      transform: rotate(0deg);
      transform-origin: 10% 10%;
      }
      button.navbar-toggler[aria-expanded="false"] .middle-bar {
      opacity: 1;
      }
      button.navbar-toggler[aria-expanded="false"] .bottom-bar {
      transform: rotate(0deg);
      transform-origin: 10% 90%;
      }
     .navbar-toggler[aria-expanded="true"] .top-bar {
      transform: rotate(45deg);
      transform-origin: 10% 10%;
      }
      .navbar-toggler[aria-expanded="true"] .middle-bar {
      opacity: 0;
      }
      .navbar-toggler[aria-expanded="true"] .bottom-bar {
      transform: rotate(-45deg);
      transform-origin: 10% 90%;
      }
div#navbarSupportedContent.show {
    z-index: 99;
}
}
@media screen and (max-width: 767px)
{
    .full-header .navbar {
    padding: 7px 15px !important;
}
.navbar-toggler span {
    display: block;
    width: 29px;
    height: 5px;
    margin-bottom: 5px;
}
}
@media only screen and (max-width: 350px)
{
    .right-nav-bt {
    right: 60px;
}
.whatsappBtn, .btn.GetQuoteBtn {
    margin-right: 8px !important;
}
.right-nav-bt {
    right: 48px;
}
}