@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap');

body {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #999;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333;
    line-height: normal;
    margin: 0 0 5px;
}

h1 {
    font-size: 48px;
    font-family: 'Merriweather', serif;
}

h2 {
    font-size: 32px;
    font-family: 'Merriweather', serif;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 20px;
}

.btn {
    display: inline-block;
    border-radius: 30px;
    background-color: #ff7748;
    -webkit-box-shadow: 0px 3px 10px rgba(22, 178, 224, 0.3);
    box-shadow: 0px 3px 10px rgba(22, 178, 224, 0.3);
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    padding: 12px 30px;
    transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    position: relative;
    overflow: hidden;
    border: 0;
    font-weight: 700;
}

.btn:before {
    content: '';
    width: 0%;
    height: 0%;
    opacity: 0;
    line-height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    position: absolute;
    -webkit-transition: all .5s ease-Out;
    transition: all .5s ease-Out;
    top: 20px;
    left: 70px;
}

.btn:hover {
    color: #fff;
}

.btn:hover:before {
    width: 200%;
    height: 500%;
    opacity: 1;
    top: -70px;
    left: -70px;
}

/*
.container {
    max-width: 1230px;
}
*/

.nopad {
    padding: 0;
}

/*Home*/
.main-overflow {
    overflow-x: hidden;
}

.header-section {
    background: url("../images/header-bg.svg") no-repeat center center/cover;
    width: 100%;
    min-height: 950px;
}

/*------------ Header CSS -------------*/
.navbar-custom {
    -webkit-transition: background 0.5s;
    /* For Safari 3.1 to 6.0 */
    transition: background 0.5s;
    background: transparent;
    z-index: 2;
}

.navbar-custom .nav-item .nav-link {
    color: #fff;
    font-weight: 500;
}

.navbar-custom .nav-item .nav-link:hover,
.navbar-custom .nav-item .nav-link.active {
    color: #F87489;
}

.navbar-light .navbar-nav .active > .nav-link {
    color: #F87489;
}

.navbar-light.darkHeader .navbar-nav .active > .nav-link {
    color: #F87489;
}

.navbar-custom .nav-item .btn {
    font-size: 15px;
}

/*------------ Common CSS -------------*/
.text-pink {
    color: #F87489 !important;
}

.text-black {
    color: #000000 !important;
}

.text-blue {
    color: #001c41 !important;
}

.text-yellow {
    color: #F9DC1C;
}

.bg-primary {
    background:  !important;
}

.btn-pink {
    color: #fff;
    background-color: #F87489;
    border-color: #F87489;
    -webkit-box-shadow: 0px 3px 10px rgba(22, 178, 224, 0.3);
    box-shadow: 0px 3px 10px rgba(22, 178, 224, 0.3);
}

.btn-pink:hover,
.btn-pink:focus,
.btn-pink.active {
    color: #fff;
    background-color: #374785;
    border-color: #374785;
}


/*header end*/



/* Navigation menu css */
body.overflow-none {
    overflow-y: hidden;
}

.desktop-nav {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    padding: 0;
    overflow: auto;
    z-index: 2;
}

.main-menu-bar {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #fff;
}

.show-menu {
    -webkit-animation: fadein 7s;
    animation: fadein 7s;
}

.menu-close {
    height: 27px;
    width: 50px;
    cursor: pointer;
    display: block;
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    color: #fff;
    font-size: 2.5rem;
    position: relative;
    top:6px;
}

.menu-close .line {
    position: absolute;
    display: block;
    background: #fff;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    left: 13px;
    transition: all 0.6s cubic-bezier(0.5, 0.1, 0, 1.2);
    -webkit-transition: all 0.6s cubic-bezier(0.5, 0.1, 0, 1.2);
    -moz-transition: all 0.6s cubic-bezier(0.5, 0.1, 0, 1.2);
}

.menu-close .line-1 {
    transform: translateY(7px) translateX(0) rotate(45deg);
    -webkit-transform: translateY(7px) translateX(0) rotate(45deg);
    -moz-transform: translateY(7px) translateX(0) rotate(45deg);
    top: 8px;
}

.menu-close .line-2 {
    transform: translateY(-7px) translateX(0) rotate(-45deg);
    -webkit-transform: translateY(-7px) translateX(0) rotate(-45deg);
    -moz-transform: translateY(-7px) translateX(0) rotate(-45deg);
    top: 22px;
}

.panelOverlay {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 15px;
    right: -50px;
    background: -webkit-gradient(linear, left top, left bottom, from(#001c41), to(#287caa));
    background: linear-gradient(#001c41 0%, #287caa 100%);
    opacity: 0.95;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.show-menu ~ .panelOverlay {
    -webkit-transform: scale(100);
    transform: scale(100);
}

.menu-image {
    width: 110px;
    height: 110px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid #49718f;
    box-shadow: 0px 0px 20px 0px rgba(177, 3, 153, 0.2);

}

.menu-image img {
    width: 100%;
    max-width: 36px;
}

.icon-menu .icon-link {
    font-size: 20px;
    color: #fff;
}

.icon-menu .icon-link:hover {
    color: #f87489;
    text-decoration: none;
    transition: 0.5s;

}

.menu-ul a{font-size: 15px;}

.menu-tab .nav-item .nav-link:after {
    content: '';
    margin: 0 0 0 5px;
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
}

.menu-tab .nav-item .nav-link,
.menu-tab .nav-item .nav-link:hover,
.menu-tab .nav-item .nav-link:focus {
    border: none;
}

.menu-tab .nav-item .nav-link:hover,
.menu-tab .nav-item .nav-link:focus,
.menu-tab .nav-item .nav-link.active {
    color: #f87489;
    background: transparent;
}

.mobile-menu-btn {
    height: 42px;
    width: 44px;
    cursor: pointer;
    display: block;
    text-align: center;
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1)
}

#mnav-menu-close {
    position: absolute;
    right: 0;
    top: 0;
}

.mobile-main-menu .mobile_version {
    overflow-x: hidden;
    overflow-y: auto;
    left: 0;
    right: 100%;
    bottom: 0;
    top: 0;
    position: fixed;
    background-color: transparent;
    z-index: 9999;
    -webkit-animation: fadein 7s;
    animation: fadein 7s
}

.mobile-main-menu .mobile_version.mobile-menu-open {
    right: 0
}

.mobile-main-menu .mobile_version .menu-mobile-menu-container {
    width: 290px
}

.mobile-main-menu.show-menu .mobile_version {
    right: 0
}

.mobile-main-menu .menu-mobile-menu-container {
    background-color: #fff;
    min-height: 100vh;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box
}

.mobile-main-menu .menu-mobile-menu-container .nav {
    background-color: #fff;
    margin: 0
}

.mobile-main-menu .menu-mobile-menu-container .nav li.menu-item {
    position: relative
}

.mobile-main-menu .menu-mobile-menu-container .nav li.menu-item a {
    text-transform: none;
    font-size: 13px;
    background-color: #fff;
    display: block;
    padding: 15px;
    color: #333;
    border-bottom: #ccc solid 1px;
    border-radius: 0;
    line-height: normal
}

.mobile-main-menu .menu-mobile-menu-container .nav li.menu-item span.main-menu-toggle {
    position: absolute;
    right: 0;
    top: 0px;
    height: 45px;
    cursor: pointer;
    display: block;
    font-size: 14px;
    width: 40px;
    text-align: center;
    background-color: #eee;
    z-index: 1;
}

.mobile-main-menu .menu-mobile-menu-container .nav li.menu-item span.main-menu-toggle::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
    top: 20px;
    left: 16px;
}

.mobile-main-menu .menu-mobile-menu-container .nav li.menu-item.open_active span.main-menu-toggle::after {
    border-top: 0px;
    border-bottom: 5px solid #333;
}

.mobile-main-menu .menu-mobile-menu-container .nav li.menu-item:focus a,
.mobile-main-menu .menu-mobile-menu-container .nav li.menu-item:hover a {
    font-weight: 600;
    color: #F87489
}

.mobile-main-menu .menu-mobile-menu-container .nav li.menu-item a:focus,
.mobile-main-menu .menu-mobile-menu-container .nav li.menu-item a:hover {
    font-weight: 600;
    color: #F87489
}

.mobile-main-menu .menu-mobile-menu-container .nav li.menu-item a:active {
    font-weight: 600;
    color: #000;
    background-color: #eee
}

.mobile-main-menu .menu-mobile-menu-container .nav li.menu-item .sub-menu {
    display: none;
    list-style: none;
    padding: 0;

}

.mobile-main-menu .menu-mobile-menu-container .nav li.menu-item .sub-menu.open_in {
    display: block
}

.mobile-main-menu .menu-mobile-menu-container .nav li.menu-item .sub-menu li {
    position: relative
}

.mobile-main-menu .menu-mobile-menu-container .nav li.menu-item .sub-menu li a {
    padding-left: 26px
}
.mobile-main-menu .menu-mobile-menu-container .nav li.menu-item .sub-menu-1 li a {
    padding-left: 46px!important;
    color: #6c757d;
}


.mobile-main-menu .menu-mobile-menu-container .nav li.menu-item .sub-menu li.menu-item li a {
    padding-left: 35px
}

.mobile-main-menu .mobile-menu.fixed-mobile-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 999999;
    padding: 10px 15px;
    background-color: #000;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    -webkit-transition: width .3s;
    transition: width .3s;
    display: none;
    cursor: pointer
}


/* navigation menu css end here*/


.hero {
    max-width: 1670px;
    width: 100%;
    margin: auto;
}

.hero h1 {
    font-size: 45px;
    text-align: left;
    font-weight: 400;
    max-width: 600px;
    width: 100%;
    color: #fff;
}

.hero h1 strong {
    color: #F87489;
    font-weight: 700;
    display: block;
}

.hero-btn {
    list-style: none;
    margin-top: 55px;
    padding-left: 0;
}

.hero-btn li {
    margin-right: 18px;
    float: left;
}

.hero-btn li:last-child {
    margin-right: 0;
}

.watch-video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.watch-video span {
    margin-left: 10px;
}

.hero-content {
    padding-top: 220px;
}

.slider-circle {
    position: relative;
    max-width: 600px;
    width: 100%;
    margin: 120px auto 0;
}

.slider-circle .circle-1,
.slider-circle .circle-2,
.slider-circle .circle-3 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.slider-circle .circle-1 img {
    -webkit-animation: spin1 15s infinite linear;
    animation: spin1 15s infinite linear;
    transform-box: fill-box;
    -webkit-transform-origin: center;
    transform-origin: center;
}

@-webkit-keyframes spin1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);

    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);

    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.slider-circle .circle-2 img {
    -webkit-animation: spin2 10s infinite linear;
    animation: spin2 10s infinite linear;
    transform-box: fill-box;
    -webkit-transform-origin: center;
    transform-origin: center;
}

@-webkit-keyframes spin2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);

    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes spin2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);

    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

.slider-circle .circle-3 img {
    -webkit-animation: spin3 7s infinite linear;
    animation: spin3 7s infinite linear;
    transform-box: fill-box;
    -webkit-transform-origin: center;
    transform-origin: center;
}

@-webkit-keyframes spin3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);

    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);

    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}



.hero-slider .slide-1 svg {
    height: 237px;
}

.hero-slider .slide-1 {
    max-width: 310px;
    width: 100%;
    position: relative;
    max-height: 241px;
    margin-left: auto;
    overflow: hidden;
}

.hero-slider .slide-1 .layer-2 {
    position: absolute;
    left: 35px;
    top: 55px;
}

.hero-slider .slide-1 .layer-3 {
    position: absolute;
    right: 35px;
    top: 40px;
}

.hero-slider .slide-1 .layer-4 {
    position: absolute;
    left: 35px;
    bottom: 15px;
}

.hero-slider .slide-1 .layer-5 {
    position: absolute;
    right: 105px;
    bottom: 65px;
}

.hero-slider .slide-1 .layer-6 {
    position: absolute;
    right: 35px;
    bottom: 65px;
}

.hero-slider .slide-1 .layer-7 {
    position: absolute;
    right: 105px;
    bottom: 15px;
}

.hero-slider .slide-1 .layer-8 {
    position: absolute;
    right: 35px;
    bottom: 15px;
}

.hero-slider .slide-2 {
    width: 400px;
    margin: auto;
    text-align: center;
    position: relative;
    padding-top: 60px;
}

.hero-slider .slide-2 svg {
    height: 280px;
}

.hero-slider .slide-2 .layer-2 {
    position: absolute;
    left: 152px;
    top: 136px;
}

.hero-slider .slide-2 .layer-3 {
    position: absolute;
    left: 140px;
    top: 185px;
}

.hero-slider .slide-2 .layer-4 {
    position: absolute;
    left: 184px;
    top: 185px;
}

.hero-slider .slide-2 .layer-5 {
    position: absolute;
    left: 228px;
    top: 185px;
}

.hero-slider .slide-2 .layer-6 {
    position: absolute;
    left: 163px;
    top: 240px;
}

.hero-slider .slide-2 .layer-7 {
    position: absolute;
    left: 190px;
    top: 240px;
}

.hero-slider .slide-2 .layer-8 {
    position: absolute;
    left: 219px;
    top: 240px;
}

.hero-slider .slide-2 .layer-9 {
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
}

.hero-slider .slide-3 {
    width: 400px;
    margin: auto;
    text-align: center;
    position: relative;
}

.hero-slider .slide-3 svg {
    height: 280px;
}

.hero-slider .slide-3 .layer-2 {
    position: absolute;
    right: 70px;
    top: 30px;
}

.hero-slider .slide-3 .layer-3 {
    position: absolute;
    right: 70px;
    top: 90px;
}

.hero-slider .slide-3 .layer-4 {
    position: absolute;
    right: 70px;
    top: 150px;
}

.hero-slider .slide-3 .layer-5 {
    position: absolute;
    right: 70px;
    top: 210px;
}

.hero-slider .slide-3 .layer-6 {
    position: absolute;
    left: 100px;
    top: 30px;
}

.hero-slider .slide-3 .layer-7 {
    position: absolute;
    left: 40px;
    top: 100px;
}

.hero-slider .slide-3 .layer-8 {
    position: absolute;
    left: 114px;
    top: 195px;
}



.hero-slider .slide-4 {
    width: 400px;
    margin: auto;
    text-align: center;
    position: relative;
    padding-top: 60px;
}

.hero-slider .slide-4 svg {
    height: 160px;
}

.hero-slider .slide-4 .layer-2 {
    position: absolute;
    right: 90px;
    top: -10px;
}

.hero-slider .slide-4 .layer-3 {
    position: absolute;
    top: -10px;
    left: 50px;
}

.hero-slider .slide-4 .layer-4 {
    position: absolute;
    left: 5px;
    top: 60px;
}

.hero-slider .slide-4 .layer-5 {
    position: absolute;
    left: 0px;
    top: 140px;
}

.hero-slider .slide-4 .layer-6 {
    position: absolute;
    left: 160px;
    top: -20px;
}

.hero-slider .slide-4 .layer-7 {
    position: absolute;
    left: 98px;
    top: 80px;
}

.hero-slider .slide-4 .layer-8 {
    position: absolute;
    right: 99px;
    top: 134px;
}

.hero-slider .slide-4 .layer-9 {
    position: absolute;
    right: 54px;
    top: 38px;
}

.hero-slider .slide-4 .layer-9 img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.hero-slider .slide-4 .layer-10 {
    position: absolute;
    right: 5px;
    top: 63px;
}

.hero-slider .slide-4 .layer-11 {
    position: absolute;
    right: 0px;
    top: 140px;
}





.carousel-fade .carousel-item {
    opacity: 0;
    -webkit-transition-duration: .6s;
    transition-duration: .6s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
    opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.hero-slider .carousel-inner {
    height: 465px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*Our Technology*/

.our-technology {
    padding: 70px 0 135px;
}

.our-technology .tech-item {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
}

.our-technology .tech-item > li {
    margin-right: 30px;
    text-align: center;
    width: 20%;
    display: inline-block;
    margin-bottom: 30px;
}

.our-technology .tech-item li > a .icon {
    position: relative;
}

.our-technology .tech-item li > a img.on-hover {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}

.our-technology .tech-item li > a:hover img {
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
}

.our-technology .tech-item li > a:hover img.on-hover {
    opacity: 1;
    visibility: visible;
}

.our-technology .tech-item li > a:hover .text {
    color: #fff;
}

.our-technology .tech-item > li:last-child {
    margin-right: 0;
}

.our-technology a.tech-btn {
    min-width: 209px;
    width: 100%;
    height: 190px;
    display: block;
    border-radius: 40px;
    background: #fff;
    color: #333;
    padding: 10px;
    text-decoration: none;
    -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.07);
}

.our-technology a.tech-btn .icon {
    margin-bottom: 10px;
}

.our-technology a.tech-btn:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#001c41), to(#287caa));
    background: linear-gradient(#001c41 0%, #287caa 100%);
    -webkit-filter: drop-shadow(0px 5px 25px rgba(22, 178, 224, 0.3));
    filter: drop-shadow(0px 5px 25px rgba(22, 178, 224, 0.3));
}

.our-technology a.tech-btn img {
    max-height: 64px;
    width: 100%;
}

.our-technology .tech-item li:hover > .tech-list {
    opacity: 1;
    visibility: visible;
}

.our-technology .tech-list {
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.07);
    width: 100%;
    max-width: 1200px;
    position: absolute;
    left: 0;
    top: calc(100% + 15px);
    top: -ms-calc(100% + 15px);
    top: -moz-calc(100% + 15px);
    -webkit-column-count: 5;
    column-count: 5;
    -webkit-column-gap: 30px;
    column-gap: 30px;
    list-style: none;
    margin: 0;
    padding: 30px 30px;
    border-radius: 30px;
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
}

.our-technology .tech-list li {
    text-align: left;
    margin-bottom: 30px;
    -webkit-column-break-inside: avoid;
    break-inside: avoid;
}

.our-technology .tech-list li a {
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    display: block;
    background-color: #f1f1f1;
    border-radius: 10px;
}


/*Our Services*/

.services {
    /*    background: #fff;*/
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/*.services:before {
    content: '';
    position: absolute;
    left: 346px;
    top: -25px;
    width: 196px;
    height: 216px;
    background: url("../images/service-dots.svg") no-repeat left top;
    -webkit-animation-name: bounceIncustom;
    animation-name: bounceIncustom;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
}

.services:after {
    content: '';
    position: absolute;
    left: 40px;
    top: 187px;
    width: 330px;
    height: 100%;
    background: url("../images/service-overlay.svg") no-repeat left top;
    -webkit-animation-name: bounceIncustom;
    animation-name: bounceIncustom;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
}*/

.services .carousel-inner {
    overflow: unset;
}

.services .service-img {
    margin-left: -250px;
}

.services .sevice-detail {
    padding-top: 150px;
    width: calc(100% - 45px);
    width: -ms-calc(100% - 45px);
    width: -moz-calc(100% - 45px);
    margin-left: auto;
}

.services .sevice-detail h3 {
    /*    font-size: 55px;*/
    text-align: left;
    color: #333;
    margin-bottom: 28px;
}

.services .sevice-detail h3 strong {
    display: block;
}

.services .sevice-detail p.desc {
    max-width: 506px;
    width: 100%;
    margin-bottom: 48px;
}

.services .carousel-indicators {
    max-width: 540px;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
    bottom: -35px;
}

.services .carousel-indicators li {
    width: 15px;
    background: transparent;
    border: 2px solid #F87489;
    opacity: 0.3;
}

.services .carousel-indicators li.active {
    width: 30px;
    background: transparent;
    border: 2px solid #F87489;
    opacity: 1;
}

/*----------- Work profile section css -----------*/
.section-title h4 {
    letter-spacing: 2px;
}

.we-serve-techlist {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.we-serve-techlist li {
    width: 16%;
    height: 189px;
    border-radius: 40px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.07);
}

.we-serve-techlist li a {
    display: block;
    padding: 0px;
    width: 100%;
}

.we-serve-techlist li span {
    display: block;
    font-weight: normal;
    font-size: 16px;
    text-align: center;
    color: #001c41;
    margin-top: 15px;
}

.we-serve-techlist li:hover span {
    color: #fff;
    font-size: 18px;
}

.we-serve-techlist li:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#001c41), to(#287caa));
    background: linear-gradient(#001c41 0%, #287caa 100%);
    -webkit-filter: drop-shadow(0px 5px 25px rgba(22, 178, 224, 0.3));
    filter: drop-shadow(0px 5px 25px rgba(22, 178, 224, 0.3));
}

.we-serve-techlist li a img {
    -webkit-filter: brightness(1);
    filter: brightness(1)
}

.we-serve-techlist li:hover img {
    -webkit-filter: invert(0.7);
    filter: invert(0.7)
}

.services-bg {
    display: block;
}

.services-bg:before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0px;
    background: url(../images/sidebg-2.svg) no-repeat;
    width: 979px;
    height: 100%;
    z-index: -1;
}

.service-slide p {
    line-height: 28px;
    text-align: left;
    color: #999;
}

.portfolio-items {
    width: 28%;
    min-height: 310px;
    border-radius: 30px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.07);

}

.rating {
    display: block;
    list-style: none;
    padding: 0;
}

.rating li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.p-app-icon {
    position: absolute;
    left: -37px;
    top: 25px;
    width: 74px;
    height: 77px;
    background: #fff;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    -webkit-box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.35);
    box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.35);
    -webkit-animation: one-animated 10s infinite;
    animation: one-animated 10s infinite;
    overflow: hidden;
}

@-webkit-keyframes one-animated {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        -webkit-box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.35);
        box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.35);
    }

    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }

    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        -webkit-box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.35);
        box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.35);
    }

    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

@keyframes one-animated {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        -webkit-box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.35);
        box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.35);
    }

    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }

    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        -webkit-box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.35);
        box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.35);
    }

    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

@-webkit-keyframes two-animated {
    0% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        -webkit-box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.35);
        box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.35);
    }

    25% {
        border-radius: 40% 80% 30% 90% / 72% 65% 35% 28%;
    }

    50% {
        border-radius: 65% 35% 45% 55% / 22% 48% 52% 78%;
        -webkit-box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.35);
        box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.35);
    }

    75% {
        border-radius: 24% 76% 10% 90% / 44% 68% 32% 56%;
    }
}

@keyframes two-animated {
    0% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        -webkit-box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.35);
        box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.35);
    }

    25% {
        border-radius: 40% 80% 30% 90% / 72% 65% 35% 28%;
    }

    50% {
        border-radius: 65% 35% 45% 55% / 22% 48% 52% 78%;
        -webkit-box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.35);
        box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.35);
    }

    75% {
        border-radius: 24% 76% 10% 90% / 44% 68% 32% 56%;
    }
}

@-webkit-keyframes three-animated {
    0% {
        border-radius: 12% 88% 40% 40% / 20% 15% 85% 80%;
        -webkit-box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.35);
        box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.35);
    }

    25% {
        border-radius: 72% 28% 30% 90% / 15% 46% 54% 85%;
    }

    50% {
        border-radius: 12% 88% 40% 40% / 20% 15% 85% 80%;
        -webkit-box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.35);
        box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.35);
    }

    75% {
        border-radius: 18% 82% 10% 90% / 24% 68% 32% 76%;
    }
}

@keyframes three-animated {
    0% {
        border-radius: 12% 88% 40% 40% / 20% 15% 85% 80%;
        -webkit-box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.35);
        box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.35);
    }

    25% {
        border-radius: 72% 28% 30% 90% / 15% 46% 54% 85%;
    }

    50% {
        border-radius: 12% 88% 40% 40% / 20% 15% 85% 80%;
        -webkit-box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.35);
        box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.35);
    }

    75% {
        border-radius: 18% 82% 10% 90% / 24% 68% 32% 76%;
    }
}

.progress-scale-bar:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: calc(100% - 8em);
    content: '';
    background: #fff;
    border-radius: 0px 44px 44px 0px;
    -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
}


.trending-industries .card {
    border: none;
    border-radius: 30px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    min-height: 350px;
}

.trending-industries .card .card-icon {
    position: absolute;
    top: -28px;
    left: 20px;
}

.trending-industries .slick-slide {
    padding: 15px;
}

/* slick slider css*/
.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    text-align: center;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 5px;
    padding: 0;
    cursor: pointer;
    border-radius: 0px;
    color: transparent;
    border: 0;
    outline: none;
    background: #F87489;
    opacity: 0.36;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.slick-dots li.slick-active button,
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
    opacity: 1;
}

/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 45px;
    height: 45px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: #F87489;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}



/* pricing section*/
.pricing-head {
    width: 100%;
    padding: 15px;
    border-radius: 30px 30px 0px 0px;
    background: #001c41;
    font-size: 24px;
}

.pricing-blue .pricing-head {
    background: #338de8;
}

.pricing-darkblue .pricing-head {
    background: #001C41;
}

.pricing-turcoise .pricing-head {
    background: #009DA5;
}

.pricing-list {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    word-wrap: break-word;
    background-color: #fff;
}

.pricing-body {
    border-radius: 0 0 30px 30px;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.16);
}

.pricing-body .price-card-header {
    padding: 1rem 1rem 1rem 3rem;
    font-size: 19px;
    color: #001c41;
    cursor: pointer;
}

.pricing-blue .pricing-body .price-card-header {
    color: #338de8;
}

.pricing-darkblue .pricing-body .price-card-header {
    color: #001C41;
}

.pricing-turcoise .pricing-body .price-card-header {
    color: #009DA5;
}

.pricing-body .price-card-header:before {
    position: absolute;
    right: 0.5rem;
    top: 1rem;
    font-family: "Flaticon";
    content: "\f101";
}

.pricing-body .price-card-header.collapsed:before {
    content: "\f100";
}

.pricing-body .price-card-header span {
    position: absolute;
    left: 0.4rem;
    top: .85rem;
    width: 30px;
    height: 30px;
    background: #001c41;
    color: #fff;
    font-size: 17px;
    text-align: center;
    border-radius: 100%;
    line-height: 30px;
}

.pricing-blue .pricing-body .price-card-header span {
    background: #338de8;
}

.pricing-darkblue .pricing-body .price-card-header span {
    background: #001C41;
}

.pricing-turcoise .pricing-body .price-card-header span {
    background: #009DA5;
}

.pricing-body .price-card-body {
    padding: 0rem 0 1rem 3rem;
}

.pricing-body .price-card-body ul {
    list-style: none;
}

.pricing-body .price-card-body ul li {
    position: relative;
    padding: 0.2rem 0 0.2rem 1.2rem;
    text-align: left;
    color: #001c41;
}

.pricing-body .price-card-body ul li:before {
    content: "\f102";
    font-family: "Flaticon";
    position: absolute;
    left: 0;
    top: 7px;
    font-size: 0.8rem;
}

.pricing-blue .pricing-body .price-card-body ul li:before {
    color: #338de8;
}

.pricing-darkblue .pricing-body .price-card-body ul li:before {
    color: #001C41;
}

.pricing-turcoise .pricing-body .price-card-body ul li:before {
    color: #009DA5;
}


/* slick slider css*/
.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    text-align: center;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 5px;
    padding: 0;
    cursor: pointer;
    border-radius: 0px;
    color: transparent;
    border: 0;
    outline: none;
    background: #F87489;
    opacity: 0.36;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.slick-dots li.slick-active button,
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
    opacity: 1;
}

/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 80%;
    display: block;
    width: 45px;
    height: 45px;
    padding: 10px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: #F87489;
}

.slick-prev img,
.slick-next img {
    max-width: 100%;
}

.slick-prev {
    left: -380px;
}

.slick-next {
    left: -320px;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: #F87489;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}

/*Footer Section*/
.footer-section {
    background: url("../images/footer-bg.svg") no-repeat center bottom;
    background-size: cover;
}

.get-in-touch-content {
    padding-top: 0px;
}

.get-in-touch-content .heading {
    text-align: left;
}

.heading {
    text-align: center;
    margin-bottom: 50px;
}

.heading .h-title {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.2em;
    color: #ff7748;
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.heading .h-desc {
    font-size: 42px;
    line-height: normal;
    color: #333;
    margin: 0;
}

.get-in-touch-content ul {
    padding: 0;
    list-style: none;
}

.get-in-touch-content ul:after {
    content: "";
    display: table;
    clear: both;
}

.get-in-touch-content ul li {
    margin-bottom: 35px;
    width: 65%;
    float: left;
}

.get-in-touch-content ul li:last-child {
    width: 100%;
}

.get-in-touch-content ul li img {
    margin-right: 15px;
    display: inline-block;
    float: left;
}

.get-in-touch-content ul li p {
    width: calc(100% - 38px);
    width: -ms-calc(100% - 38px);
    width: -moz-calc(100% - 38px);
    margin-left: auto;
}

.get-in-touch-content ul li a {
    color: #999;
}

.get-in-touch-content ul li a:hover {
    color: #333;
    text-decoration: none;
}

.get-in-touch-content ul li:nth-child(even) {
    width: 35%;
}

.get-in-touch-form {
    width: 100%;
    border-radius: 30px;
    background: #fff;
    padding: 40px 20px;
    -webkit-box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.16);
    text-align: center;
    margin-left: auto;
}

.form-title {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.2em;
    text-align: center;
    text-transform: uppercase;
}

.form-desc {
    font-weight: 700;
    font-size: 30px;
    text-align: center;
    color: #fff;
    max-width: 348px;
    width: 100%;
    margin: 0 auto 20px;
}

.get-in-touch-form ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.get-in-touch-form ul li {
    width: 31%;
    display: inline-block;
    margin: 10px;
}

.get-in-touch-form ul li:last-child {
    width: 96%;
    margin: 10px;
}

.get-in-touch-form ul li:last-child {
    margin-bottom: 0;
}

.get-in-touch-form .form-control {
    height: 60px !important;
    border-radius: 10px;
    background-color: #fff;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    color: #999;
    border-color: #D1D1D1;

    padding: 15px 27px;
    -webkit-appearance: none;
}

.get-in-touch-form select.form-control {
    background: #fff url("../images/angle-arrow-down.svg") no-repeat right 27px center;
}

.get-in-touch-form textarea.form-control {
    height: 150px !important;
    resize: none;
}

footer {
    padding-top: 50px;
    padding-bottom: 0px;
}

.footer-title {
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.footer-link {
    list-style: none;
    padding: 0;
}

.footer-link li {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-link li:last-child {
    margin-bottom: 0;
}

.footer-link li a {
    color: #fff;
}

.award-rating {
    width: 100%;
}


.award-rating img {
    margin-bottom: 0px;
}

.award-rating p {
    color: #fff;
    margin-bottom: 0;
}

.badges {
    list-style: none;
    padding: 0;
    display: block;
}

.badges li {
    display: inline-block;
    margin: 0 20px 0 0;
}

.badges li a img {
    width: 100%;
    max-width: 80px;
}


.badges li:last-child {
    margin-right: 0;
}

.social-icon {
    list-style: none;
    padding: 0;
}

.social-icon li {
    margin-right: 8px;
    display: inline-block;
}

.copyright-text {
    color: #fff;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
}

.footer_bottom {
    padding: 0 60px;
}

/*-----------------------------------------
*  shapes Properties
-----------------------------------------*/
.shapes-section {
    position: relative;
    overflow: hidden;
}

.shapes-box {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}

.shapes-box span {
    position: absolute;
    opacity: 0.8;
}

.shapes-box span:nth-child(1) {
    left: 4.8%;
    top: 4.5%;
}

.shapes-box span:nth-child(2) {
    left: 18.6%;
    top: 27.2%;
}

.shapes-box span:nth-child(3) {
    left: 8.8%;
    bottom: 34%;
}

.shapes-box span:nth-child(4) {
    left: 17%;
    bottom: 16%;
}

.shapes-box span:nth-child(5) {
    left: 28%;
    top: 17%;
}

.shapes-box span:nth-child(6) {
    left: 43%;
    bottom: 30%;
}

.shapes-box span:nth-child(7) {
    left: 70%;
    top: 77%;
}

.shapes-box span:nth-child(8) {
    right: 20.8%;
    top: 33%;
}

.shapes-box span:nth-child(9) {
    right: 6%;
    top: 10%;
}

.shapes-box span:nth-child(10) {
    right: 4.5%;
    bottom: 33%;
}

.shapes-box span:nth-child(11) {
    left: 60%;
    top: 13%;
}

.shapes-box span:nth-child(12) {
    right: 51%;
    bottom: 70%;
}

.shapes-box span:nth-child(13) {
    right: 16.5%;
    bottom: 53%;
}

.extended-parallax {
    position: absolute;
    z-index: -1;
}


#preloader-wrapper {
    background-color: #fdfaf8;
    z-index: 10000;
    position: fixed;
    width: 100%;
    height: 100%
}
.logo{width:180px;}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (min-width: 768px) {
    .mobile-main-menu {
        display: none;
    }

    #hamburger-mobile-icon {
        display: none;
    }

    #hamburger-icon {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .mobile-main-menu {
        display: block;
    }
	.logo{width:150px;}

    #hamburger-mobile-icon {
        display: block;
    }

    #hamburger-icon {
        display: none;
    }

    .desktop-nav {
        display: none;
    }

    .navbar-custom .navbar-nav .nav-item .btn-pink {
        padding: 10px 10px;
        font-size: 14px;
    }

    .navbar-custom .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .sub-navigation .navbar-expand-lg .navbar-nav .nav-link{padding-right: 0.5rem!important; padding-left: 0.5rem!important;}

    .slider-circle {
        display: none !important;
    }

    .hero-content {
        padding-top: 60px;
    }

    .our-technology .tech-item > li {
        width: calc(50% - 16px);
        width: -ms-calc(50% - 16px);
        width: -moz-calc(50% - 16px);
        display: inline-block;
    }
}
.tab-content>.tab-pane{margin-left:20px;}
/*
.desktop-nav:after{position: absolute;
    bottom: -1px;
    right: 0;
    content: '';
    background-image: url(../images/menuscontainer-shape.webp);
    height: 127px;
    width: 357px;
    background-repeat: no-repeat;}
    */
.sub-menu-a{position:relative; padding-left:20px;}
.sub-menu-a:before{
    content: '';
    position: absolute;
    background: url(../images/nav-arrow-left.svg) no-repeat left center/6px 12px;
    width: 6px;
    height: 12px;
    top: 2px;
    bottom: auto;
    left: 0;
    margin: auto;
    overflow: hidden;
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
}
.bottom-sec{border-top: 1px solid;
    margin-right: 10px;padding-top:35px;}
.bottom-menu-sec{padding:10 20 10 20;}
.pricing-body .price-card-header:before {display:none;}
	.sub-menu-section{
	margin-top: 15px;
    color: #fff;
    letter-spacing: 1px;
	}
	.menu-ul{list-style: none;
    	padding-left: 2px;
		}
	.menu-ul a {
    color: #D3DDE5!important;
	}
	.menu-ul a:hover {
    color: #f87489!important;
    text-decoration: none!important;
}
.sp-24-title{
    font-size: 24px;
    letter-spacing: 3px;
    line-height: 34px;
    display: block;
}
.sp-20{
        font-size: 20px;
    letter-spacing: 1.5px;
    line-height: 32px;
}
.sp-22{
        font-size: 22px;
    letter-spacing: 1.5px;
    line-height: 32px;
    font-weight: 600;
}
.sp-24{
        font-size: 24px;
    letter-spacing: 1.5px;
    line-height: 36px;
}
.sp-28{
    font-size: 28px;
    letter-spacing: 1.5px;
    line-height: 38px;
    font-weight: 500;
    color: #333;
}

.sp-32{
        font-size: 32px;
    letter-spacing: 1.5px;
    line-height: 42px;
}
.sp-36{
        font-size: 36px;
    letter-spacing: 1.5px;
    line-height: 46px;
}
.header-img{height:300px;}
.sub-navigation{width: 100%; overflow: hidden;}
.sub-navigation .navbar-expand-lg .navbar-nav .nav-link{padding-right: 4rem; padding-left: 0px;}
.bg-dark-pd{padding: .5rem 0rem;}
.service_icon img{width:100px;}
.service-img {
    text-align: center;
}
.item .item-wrap img{border: 1px solid #FAFAFA; height:auto;}

/* ================ Style responsive css ===============*/

/* media queries for large screen container */
@media screen and (min-width: 1900px) {
    .container {
        max-width: 1870px;
    }
}

@media screen and (min-width: 1600px) {
    .container {
        max-width: 1570px;
    }
}

@media screen and (min-width: 1400px) {
    .container {
        max-width: 1370px;
    }

    h1 {
        font-size: 44px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 30px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 16px;
    }

    .progress-scale-bar:before {
        width: calc(100% - 4em);
    }

}

@media (max-width:1199px) {
    .progress-scale-bar:before {
        width: calc(100% - 4em);
    }

    .team-play-tabs .nav-pills .nav-link {
        font-size: 30px;
    }

    .team-point-list h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .team-point-list .list-group-item {
        font-size: 16px;
        line-height: 26px;
    }

    .badges li {
        margin: 0;
        padding: 0 15px;
    }

    h1 {
        font-size: 36px;
    }

    .get-in-touch-content ul li,
    .get-in-touch-content ul li:nth-child(even) {
        width: 100%;
    }

    .get-in-touch-form ul li {
        margin: 10px 10px;
        width: 47%;
    }

    .get-in-touch-form ul li:last-child {
        width: 100%;
        margin: 10px 0;
    }

    .get-in-touch-form .form-control {
        padding: 10px 15px;
    }

    .hiring .hiring_head_right {
        font-size: 24px;
    }

    .hiring .hiring_head_left span {
        font-size: 15px;
        line-height: 23px;
    }

    .hiring .hiring_head_left span {
        padding-top: 30px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .slick-prev {
        left: -310px;
    }

    .slick-next {
        left: -250px;
    }
}


@media (max-width:1025px) {

    h2 {
        font-size: 30px;
    }

    .build h2 {
        font-size: 70px;
        font-weight: bold;
        text-transform: uppercase;
    }

    .build h3 {
        font-size: 50px;
        font-weight: bold;
        text-transform: uppercase;
    }


}


@media (max-width:991px) {
    .menu-image {
        width: 80px;
        height: 80px;
    }

    .icon-menu .icon-link {
        font-size: 16px;
    }

    .menu-image img {
        max-width: 28px;
    }

    .award-rating {
        text-align: center;
    }

    .get-in-touch-form ul li:last-child {
        width: 96%;
        margin: 10px 0;
    }

    .get-in-touch-form ul li {
        margin: 10px 10px;
        width: 46%;
    }

    .build h2 {
        font-size: 60px;
        font-weight: bold;
        text-transform: uppercase;
    }

    .build h3 {
        font-size: 40px;
        font-weight: bold;
        text-transform: uppercase;
    }

    .slick-prev {
        left: -240px;
    }

    .slick-next {
        left: -180px;
    }

    .navbar-light .navbar-toggler {
        border-color: transparent;
    }

    .navbar-light .navbar-toggler-icon {
        background-image: url(../images/humburger.svg);
    }

    .navbar-light.darkHeader .navbar-toggler-icon {
        background-image: url(../images/humburger.svg);
        filter: invert(1);
    }

    .navbar-custom .nav-item .nav-link {
        color: #fff;
    }

    .navbar-light .navbar-nav .active > .nav-link,
    .navbar-light .navbar-nav > .nav-link:hover,
    .navbar-light .navbar-nav > .nav-link:focus {
        color: #1EB907;
    }

    .custom-search-wrap {
        width: 100% !important;
    }

    .app-info-bg {
        background-size: cover;
    }


    .about-app-wraper ul li a,
    .about-app-wraper ul li a.active {
        width: auto;
        height: auto;
    }

    .team-play-tabs .nav-pills .nav-link {
        min-width: auto;
        font-size: 24px;
    }

    .team-point-list h3 {
        font-size: 22px;
        line-height: 35px;

    }

    .team-point-list .list-group-item {
        font-size: 18px;
        line-height: 24px;
    }

    p {
        font-size: 16px;
        line-height: 26px;
    }

    .industry_solution ul li {
        width: 28%;
    }

    .vertical-tabs .tab-content {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        position: inherit;
    }

    .our-technology .tech-item > li {
        width: 28%;
    }

    .portfolio-items {
        width: 40%;
    }
}

@media (max-width:767px) {
    .menu-close {
        width: 40px;
    }

    .footer_bottom {
        padding: 0 0px;
    }

    .footer-link {
        margin-bottom: 20px;
    }

    .footer-link li {
        margin-bottom: 10px;
    }

    .footer-title {
        margin-bottom: 10px;
    }

    .build h2 {
        font-size: 50px;
        font-weight: bold;
        text-transform: uppercase;
    }

    .build h3 {
        font-size: 30px;
        font-weight: bold;
        text-transform: uppercase;
    }


    body,
    p {
        font-size: 16px;
        line-height: 30px;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    winner figure {
        max-width: 300px;
    }


    .about-app-wraper ul li {
        padding: 0rem;
    }

    .about-app-wraper ul li:nth-child(2) {
        padding-left: 0.5rem;
    }


    .about-app-wraper ul li a {
        padding: 0.8rem;
    }

    .app-game {
        font-size: 24px;
    }

    .app-user {
        width: 110px;
        height: 70px;

    }

    .app-user-cricket {
        background-size: cover;
    }

    .app-user-kabaddi {
        background-size: cover;
    }

    .about-app-wraper ul li a.active .app-user-cricket {
        background-size: cover;
    }

    .about-app-wraper ul li a.active .app-user-kabaddi {
        background-size: cover;
    }

    .get-in-touch-form ul li {
        width: 96%;
    }

    .industry_solution ul li span.icon_title,
    .why_choose ul li span.icon_title {

        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 100%;
        display: block;
    }

    .industry_solution ul li {
        width: 44%;
    }

    .why_choose ul li {
        width: 230px;
        margin: 10px;
    }

    .service_box .service_left,
    .service_box .service_right {
        width: 100%;
    }

    .hero h1 {
        text-align: center;
        max-width: 100%;
    }

    .hero-btn li {
        float: none;
        text-align: center;
    }

    .header-section {
        min-height: auto;
    }

    .hero-content {
        padding-top: 60px;
        padding-bottom: 120px;
    }

    .hero-btn {
        margin-top: 15px;
    }

    .our-technology {
        padding: 40px 0 40px;
    }

    .our-technology .tech-item > li {
        width: 34%;
    }

    .our-technology a.tech-btn {
        min-width: 150px;
    }

    .our-technology .tech-list {

        padding: 20px 20px;
    }

    .our-technology .tech-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        overflow: auto;
        overflow-x: auto;
        height: auto;
    }

    .services .service-img {
        margin-left: 0px;
    }

    .services .sevice-detail {
        padding-top: 0px;
        width: calc(100% - 0px);
        width: -ms-calc(100% - 0px);
        width: -moz-calc(100% - 0px);
    }

    .services .sevice-detail p.desc {
        max-width: 100%;
        width: 100%;
        margin-bottom: 10px;
    }

    .services .carousel-indicators {
        max-width: 100%;
        width: 100%;
        bottom: -55px;
    }

    .portfolio-items {
        width: 80%;
    }

    .progress-scale-bar:before {
        width: calc(100% - 1em);
    }

    .slick-prev {
        left: 15px;
    }

    .slick-prev,
    .slick-next {
        top: -5%;
    }

    .slick-next {
        left: 70px;
    }
}

@media (max-width:560px) {
    .build h2 {
        font-size: 40px;
        font-weight: bold;
        text-transform: uppercase;
    }

    .build h3 {
        font-size: 28px;
        font-weight: bold;
        text-transform: uppercase;
    }

    .our-technology .tech-item > li {
        width: 100%;
    }

    .padding_banner {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    h1 {
        font-size: 24px;
    }

    h4 {
        font-size: 20px;
    }

    body,
    p {
        font-size: 14px;
        line-height: 28px;
    }

    .get-in-touch-content ul li {
        margin-bottom: 15px;
        width: 100%;
    }

    .get-in-touch-content ul li:nth-child(even) {
        width: 100%;
    }


    .badges li {
        width: 32.33%;
        margin: 0;
        padding: 0 15px;
    }

    footer {
        padding-top: 20px;
    }

    .industry_solution ul li {
        width: 42%;
        margin: 5px;
    }

    .industry_solution ul li span.icon_title,
    .why_choose ul li span.icon_title {
        font-size: 15px;
    }

    .industry_solution ul li span.icon img,
    .why_choose ul li span.icon img {
        max-width: 30px;
    }

    .service_box .service_left,
    .service_box .service_right {
        width: 100%;
    }

    .vertical-tabs ul.nav.nav-tabs {
        display: block;
        /* float: left; */
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        overflow: auto;
    }

    .vertical-tabs ul.nav.nav-tabs li.nav-item {
        width: 50%;
        margin-right: 10px;

    }


    .vertical-tabs .tab-content {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 35px 15px;
        position: inherit;
    }

    .vertical-tabs .tab-pane {
        width: 100%;
    }

    .why_choose ul li {
        width: 180px;
        margin: 10px;
    }

}

/*android service page css start here*/

.full_height {
    height: 100vh;
}

.top_banner {
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center center;
    display: block;
}

.service_banner {
   /* background: url("../images/service-banner.png") no-repeat;  */
   background: url("../images/site-banner.jpg") no-repeat; 
}

.about_banner {
    background: url("../images/site-banner.jpg") no-repeat;
}

.service_intro {
    background: #f6f6f6;
    width: 100%;
    overflow: hidden;
}

.service_box {
    background: #fff;
    width: 100%;
    overflow: hidden;
}

.service_box .service_left {
    background: #fff;
    height: 100%;
    padding: 15px;
}

.service_box .service_left,
.service_box .service_right {
    display: block;
    width: 50%;
    height: auto;
    vertical-align: middle;
}

.vertical-tabs {
    font-size: 15px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.vertical-tabs ul.nav-tabs a.nav-link {
    max-width: 209px;
    width: 100%;
    height: 150px;
    display: block;
    border-radius: 40px;
    background: #fff;
    color: #333;
    text-decoration: none;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.07);
}

.vertical-tabs ul.nav-tabs a.nav-link:hover,
.vertical-tabs ul.nav-tabs a.nav-link.active {
    background: linear-gradient(#001c41 0%, #287caa 100%);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.07);
    filter: drop-shadow(0px 5px 25px rgba(22, 178, 224, 0.3));
    color: #fff;
    transition: 0.5s;
}

.vertical-tabs ul.nav-tabs li > a .icon {
    position: relative;
}

.vertical-tabs ul.nav-tabs li > a.nav-link img {
    max-height: 64px;
    width: 100%;
}

.vertical-tabs ul.nav-tabs li > a:active img,
.vertical-tabs ul.nav-tabs li > a:hover img {
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
}

.vertical-tabs ul.nav-tabs li > a img.on-hover {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}

.vertical-tabs ul.nav-tabs li > a.active img.on-hover,
.vertical-tabs ul.nav-tabs li > a:hover img.on-hover {
    opacity: 1;
    visibility: visible;
}

.vertical-tabs .tab-content > .active {
    background: #fff;
    display: block;
}

.vertical-tabs ul.nav.nav-tabs {
    display: block;
    float: left;
    width: 100%;
}

.vertical-tabs ul.nav.nav-tabs li.nav-item {
    width: 25%;
    margin-right: 15px;
    height: 135px;
    color: #777a7d;
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 35px;
    display: inline-block;
    text-align: center;
}

.service-righ-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.vertical-tabs .tab-content {
    top: 0;
    left: -15%;
    right: 0;
    bottom: 0;
    /* background: #fff; */
    padding: 45px 0px;
    /* width: 650px; */
    position: absolute;
}

.vertical-tabs .tab-pane {
    background: #fff;
    padding: 35px;
    width: 100%;
    height: auto;
    box-shadow: -10px 13px 26px rgba(0, 0, 0, 0.16);
}

.vertical-tabs .sv-tab-panel {
    background: #fff;
    height: auto;
    padding-top: 10px;
}

.service_icon {
    display: block;
    width: 100%;
    max-width: 50px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.work_process {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.industry_solution,
.why_choose {
    display: block;
    width: 100%;
}

.industry_solution ul,
.why_choose ul {
    display: block;
    width: 100%;
}

.industry_solution ul li,
.why_choose ul li {
    width: 230px;
    display: inline-block;
    border-radius: 31px;
    background: #fff;
    box-shadow: 0px 22px 36px rgba(57, 104, 213, 0.26);
    padding: 20px;
}

.industry_solution ul li {
    width: 18%;
    margin: 10px;
}

.industry_solution ul li span.icon,
.why_choose ul li span.icon {
    width: 100%;
    display: block;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 15px;
}

.industry_solution ul li span.icon img,
.why_choose ul li span.icon img {
    width: 100%;
    max-width: 40px;
}


.industry_solution ul li span.icon_title,
.why_choose ul li span.icon_title {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.2em;
    text-align: left;
    color: #f87489;
}

.industry_solution ul li span.icon_title,
.why_choose ul li span.icon_title {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0;
    text-align: center;
    color: #001C41;
}

.text-purpul {
    color: #6F66C5 !important;
}

.text-sky {
    color: #37BDCC !important;
}

.text-green {
    color: #4BB853 !important;
}

/*android service page css end here*/

/*abiut us page css start here*/
.h_100 {
    height: 100vh;
}

.mission_img {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.bg_gray {
    background: #f6f6f6;
    width: 100%;
    overflow: hidden;
}

.bg_dark_blue {
    background: #24618c;
    width: 100%;
    overflow: hidden;
}


/*--------- testimonial css ----------*/
.testimonial-wraper {
    background: #f2f2f2;
}

.testimonial-block {
    display: block;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 30px;
}

.testimonial-client {
    display: block;
    width: 172px;
    height: 172px;
    /*    box-shadow: 0 3px 16px rgba(242, 80, 79, 0.44);*/
    border-radius: 100%;
}

.testimonial-block p {
    color: #798086;
    line-height: 26px;
    position: relative;
}

.testimonial-block p:before {
    content: '';
    position: absolute;
    left: 0;
    top: -20px;
    width: 110px;
    height: 110px;
    background: url(../images/quote-left.svg) no-repeat;
    background-size: contain;
}

.testimonial-block h5 {
    color: #000;
    font-weight: 600;
}

.testimonial-block h5 span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #798086;
    line-height: 24px;
}

.testimonial-slider .slick-list {
    padding: 10px;
}

.testimonial-slider .slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 1;
    border: none;
    width: 50px;
    height: 50px;
    text-indent: -200px;
    overflow: hidden;
    margin-top: -25px;
}

.testimonial-slider .slick-prev {
    left: -15px;
    background: url(../images/arrow-prev.svg) no-repeat;
    background-color: transparent;
    background-position: center center;
    background-size: 100px;
}

.testimonial-slider .slick-next {
    right: 0px;
    background: url(../images/arrow-next.svg) no-repeat;
    background-color: transparent;
    background-position: center center;
    background-size: 100px;
    left: auto;
}

.padding_banner {
    padding-top: 200px;
    padding-bottom: 200px;
}

.footer_bottom {}

/*abiut us page css end here*/

/*hiring page css start here*/
.hiring {

    border-radius: 30px;
    background: #fff;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.16);
    overflow: hidden;
}

.hiring_head {
    display: flex;
    align-content: center;
    align-items: center;
    position: relative;
}

.hiring .hiring_head_left {
    position: absolute;
    text-align: center;
    width: 110px;
    height: 100px;
    margin: 0px;
    box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    padding: 5px;
    left: -10px;
    top: -20px;
    overflow: hidden;
    transform: matrix(0.91, 0.42, -0.42, 0.91, 0, 0);
    -ms-transform: matrix(0.91, 0.42, -0.42, 0.91, 0, 0);
    -webkit-transform: matrix(0.91, 0.42, -0.42, 0.91, 0, 0);
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
}

.hiring .hiring_head_left span {
    transform: matrix(0.91, -0.42, 0.42, 0.91, 0, 0);
    -ms-transform: matrix(0.91, -0.42, 0.42, 0.91, 0, 0);
    -webkit-transform: matrix(0.91, -0.42, 0.42, 0.91, 0, 0);
    display: block;
    padding-top: 30px;
    font-weight: bold;
    line-height: 22px;
}


.hiring .hiring_head_right {
    font-weight: bold;
    font-size: 22px;
    text-align: center;
    color: #001c41;
    padding-left: 100px;
    font-weight: 500;
}

.hiring_detail {
    display: block;
}

.hiring_detail h6 {
    font-weight: 500;
    font-size: 20px;
    color: #001c41;
    margin: 0;
}

.hiring_detail p {
    font-size: 15px;
}

.billing {
    width: 100%;
    padding: 10px;
    border-radius: 0px 0px 30px 30px;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.16);
    display: block;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    color: #fff;
}

.billing_purpol {
    background: #9c0ebe;
}

.billing_yellow {
    background: #DBAF21;
}

.billing_green {
    background: #64DA1F;
}

.billing_blue {
    background: #0E6ABE;
}

.billing_purpol_bg {
    background: linear-gradient(#b809b8 0%, #3025d6 100%);

}

.billing_yellow_bg {
    background: linear-gradient(#fbbc0d 0%, #d6ad25 100%);

}

.billing_green_bg {
    background: linear-gradient(#1fe526 0%, #c0cc16 100%);

}

.billing_blue_bg {
    background: linear-gradient(#0955b8 0%, #25bed6 100%);

}

.box_title {
    width: 80%;
}

.build {
    background-image: url(../images/texture-02.png);
    display: block;
    padding: 115px 0 190px;
    background-color: #f7f6f4;
    background-repeat: no-repeat;
    background-position: center -406px;
}

.build h2 {
    font-size: 80px;
    font-weight: bold;
    text-transform: uppercase;
}

.build h3 {
    font-size: 60px;
    font-weight: bold;
    text-transform: uppercase;
}
.services .sevice-detail{padding-top:0px;}