/* make keyframes that tell the start state and the end state of our object */

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}




.fade-in {
    opacity: 0;
    /* make things invisible upon start */
    -webkit-animation: fadeIn ease-in 1;
    /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

.fade-in.one {
    -webkit-animation-delay: 0.7s;
    -moz-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.fade-in.two {
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.fade-in.three {
    -webkit-animation-delay: 1.6s;
    -moz-animation-delay: 1.6s;
    animation-delay: 1.6s;
}

.fade-in.four {
    -webkit-animation-delay: 2.0s;
    -moz-animation-delay: 2.0s;
    animation-delay: 2.0s;
}

.fade-in.five {
    -webkit-animation-delay: 2.4s;
    -moz-animation-delay: 2.4s;
    animation-delay: 2.4s;
}

.fade-in.six {
    -webkit-animation-delay: 2.8s;
    -moz-animation-delay: 2.8s;
    animation-delay: 2.8s;
}

.fade-in.seven {
    -webkit-animation-delay: 2.8s;
    -moz-animation-delay: 2.8s;
    animation-delay: 2.8s;
}


/*Animated-scroll*/

[data-animate-in] {
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease
}

[data-animate-in="up"] {
    transform: translate3d(0, 24px, 0)
}

[data-animate-in="left"] {
    transform: translate3d(-25%, 0, 0)
}

[data-animate-in="right"] {
    transform: translate3d(25%, 0, 0)
}

[data-animate-in="down"] {
    transform: translate3d(0, -24px, 0)
}

[data-animate-in="fadeIn"] {
    transform: translate3d(0, 0, 0)
}

[data-animate-in].in-view {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transition: transform 0.6s ease, opacity 0.6s ease
}

.fade-in {
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
}

.left-side-menu {
    width: 65px;
    bottom: 0;
    right: 0;
    padding: 0;
    position: fixed;
    transition: all .1s ease-out;
    top: 150px;
    z-index: 999999;
}

.left-side-menu .icon-bar {
    position: fixed;
    top: 38%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.left-side-menu .icon-bar a {
    display: block;
    text-align: center;
    padding: 8px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
}

.left-side-menu .icon-bar small {
    text-align: center;
    font-size: 12px;
    display: block;
    line-height: 18px;
    width: 100%;
}

.left-side-menu .icon-blue {
    background: #3B5998;
    color: white;
}

.left-side-menu .icon-blue img {
    width: 50px;
    margin-bottom: 5px;
}




.new-csrproduct-container {
    overflow-x: hidden;
}



.about-text {
    margin-top: 36px;
}
.ld-fh-txt {
    font-size: 50px;
    font-family: 'rocko', sans-serif !important;
}

.ld-fh-txt h1 {
    font-size: 80px;
    font-family: 'rocko', sans-serif !important;
}

.ld-fancy-heading .ld-fh-txt {
    position: relative;
    display: inline-block;
}


.lqd-highlight {
    display: inline-block;
    padding: 0;
    background: none;
    position: relative;
    color: inherit;

}

.lqd-highlight-txt {
    position: relative;
    z-index: 1;
    font-family: 'rocko', sans-serif !important;
    color: #1b1363;
    letter-spacing: -1px;
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
}

.lqd-highlight-inner {
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color: #000;
    color: #000;
    opacity: 0;
    transition-property: transform, opacity;
    transition-timing-function: cubic-bezier(0.3, 0.8, 0.35, 1);
    transition-duration: 0.85s;
    transition-delay: inherit;
    transform-origin: left center;
}

.lqd-highlight-inner {
    height: 4px;
    bottom: 8px;
    background: rgb(173, 197, 255);
    opacity: 0;
    border-radius: 15px;
}

.ld-fancy-heading p {
    font-size: 18px;
    line-height: 25px;
    color: #666;
    padding: 10px 0;
}

.about-pic {
    margin-right: -2vw;
    margin-top: -10px;
    margin-bottom: 0;
    margin-left: 0px;
}

.about-pic img {
    width: 85%;
}



.reset-ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.reset-ul.inline-nav>li {
    display: inline-block;
    margin: auto 14px;
}

.reset-ul.inline-nav li a {
    display: inline;

}

.reset-ul>li>a,
.reset-ul>li>a {
    color: rgb(0, 0, 0);
}

#header {
    
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}




.elementor-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    align-items: center;
    margin: 0;
}

.elementor-column-img {
    display: flex;
}

.elementor-column-img .img-section {
    width: 50px;
    height: 50px;
    /* background-color: #2b8fcf; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.elementor-column-img .img-section img {
    /* -webkit-filter: invert(100%);    
    filter: invert(100%); */
    max-width: 38px;
}

.elementor-column-text {
    margin-left: 20px;
}

#exampleModal {
    top: 0;
    z-index: 999999;
    padding-top: 90px;
    background-color: rgba(0, 0, 0, 0.4)
}



.signup-form.signup-modal-form {
    width: 100%;
    overflow: hidden;
    margin: 0;
    border: none;
    padding: 0 15px;
    margin-block: 20px;
    margin-top: 0px;
    box-shadow: none;
    border-radius: 0;
}

.signup-form.signup-modal-form .form-group i {
    color: #456ebb;
}

.signup-form.signup-modal-form .form-group {
    margin-bottom: 18px;
}

#exampleModal .modal-header {
    background-color: #021c6b;
    color: #fff;
}

#exampleModal .modal-title {
    float: left;
    line-height: 30px;
    font-size: 18px;
    color: #ffffff;
    width: calc(100% - 30px);
    text-align: center;
}

#exampleModal .close {
    width: 25px;
    height: 25px;
    transition: all 0.3s ease 0s;
    color: #fff;
    opacity: 0.8;
}

#exampleModal .close:hover {
    color: #fff;
}

#exampleModal .modal-footer {
    text-align: center;
}

#exampleModal .modal-footer .btn-primary {
    color: #fff;
    background-color: #021c6b;
    border-color: #204d74;
}

@media (min-width: 768px) {
    #exampleModal .modal-dialog {
        width: 480px;
        margin: 30px auto;
    }
}









@media only screen and (max-width: 479px) {
    .features-tab-section .tab .nav-tabs li {
        width: 100%;
        text-align: center;
    }

    .features-tab-section .tab .nav-tabs li.active a:before {
        content: "\f105";
        bottom: 15%;
        left: 0;
        right: auto;
    }
}





.shadow-effect {
    background: #fff;
    min-height: 255px;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #ECECEC;
    transition: 0.3s;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);
}

.shadow-effect:hover {
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.15), 0 15px 35px rgba(0, 0, 0, 0.15);
}

#customers-testimonials .shadow-effect p {
    font-family: 'robotolight';
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 17px 0;
    font-weight: 300;
}


/*  Download   */

.signup-content {
    padding: 60px 0 130px 0;
    display: flex;
}

.signup-form {
    margin-left: 75px;
    padding-right: 75px;
    padding-left: 34px;
    border-right: solid 1px #e4e4e4;
}

.signup-form,
.signup-image,
.signin-form,
.signin-image {
    width: 50%;
    overflow: hidden;
}

.form-title {
    margin-top: 120px;
    text-transform: none;
    font-size: 42px;
    color: #001040;
    font-family: 'rocko', sans-serif !important;
    text-align: center;
}

.register-form {
    width: 100%;
}

.signup-form .form-group {
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
}

.signup-form .form-group label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    color: #222;
}

.signup-form .form-group input {
    width: 100%;
    display: block;
    border: none;
    border-bottom: 1px solid #999;
    padding: 6px 30px;
    font-family: 'roboto';
    box-sizing: border-box;
    outline: none;
}

.signup-form .form-group:last-child {
    margin-bottom: 0;
}

.signup-form .form-submit {
    display: inline-block;
    background: #6dabe4;
    color: #fff;
    border-bottom: none;
    width: auto;
    padding: 15px 39px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    margin-top: 25px;
    cursor: pointer;
}

.signup-form .form-submit:hover {
    background: #4292dc;
}

.signup-form input:focus {
    border-bottom: 1px solid #222;
}

.signup-text {
    margin-top: 45px;
}

.signup-text {
    margin: 0 55px;
}

.signup-form,
.signup-text,
.signin-form,
.signin-image {
    width: 50%;
    overflow: hidden;
}

.multi_imgbox {
    padding: 15px 10px 10px;
    border: transparent;
    border-radius: 22px;
    display: flex;
    flex-wrap: wrap;
    background-color: #e9e9e9;
    justify-content: center;
    margin: 10px 0;
    height: 100%;
}

.multi_box_sec .carousel-inner {
    height: auto;
    min-height: 375px;
}
.related-projects-section .multi_box_sec .carousel-inner {
    height: 375px;
}

.multi_imgbox_txt p {
    display: block;
    font-size: 13px;
    color: #1b1363;
    text-align: center;
}

.multi_imgbox_txt button {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #fff;
    transition: 0.2s;
    display: block;
    margin: 16px auto;
    width: 140px;
    height: auto;
    border-color: rgb(27, 19, 99);
    border-radius: 50em;
    background-color: rgb(27, 19, 99);
    border: solid 1px #1b1363;
}


.multi_imgbox_txt button:hover {
    border-color: rgb(27, 19, 99);
    background-color: rgb(255, 255, 255);
    color: rgb(27, 19, 99);
    box-shadow: 0px 1px 1px rgb(0 0 0 / 5%), 0px 2px 2px rgb(0 0 0 / 5%), 0px 4px 4px rgb(0 0 0 / 5%), 0px 8px 8px rgb(0 0 0 / 5%), 0px 16px 16px rgb(0 0 0 / 5%);
    border: solid 1px #1b1363;
}
.new-csr-about-section {
    margin-bottom: 0;
    background: #fff;
    padding: 40px 0;
}
.section_bgblue {
    margin-bottom: 0;
    background: #243f91;
    padding: 125px 0 65px 0;
    background: url("../../images/android-apps-developers/android-bg.jpg") no-repeat 0 0px;


}
.section_bggrey {
    margin-bottom: 0;
    background: #f5f5f5;
    padding: 40px 0;
}
.iphone_apps_dev_one {
    margin: 40px 0 0;
    background: #e6e6e6;
    background-image: linear-gradient(#fff, #efefef);
    border-bottom: 1px solid #dcdcdc;
    padding: 40px 0;
}
.iphone_apps_dev_one h1 {
    color: #000000;
    font-size: 30px;
    font-weight: bold;
    line-height: 40px;
    margin: 0;
    padding: 0;
    padding-bottom: 10px;
    text-align: center;
}
.iphone_apps_dev_one p {
    font-size: 14px;
    line-height: 24px;
    color: #626262;
    font-weight: normal;
    text-align: center;
}
.iphone_apps_dev_conetnt {
    width: 100%;
    margin: 15px 0;
}
.iphone_apps_dev_conetnt ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
}
.iphone_apps_dev_conetnt ul li {
    list-style: none;
    line-height: 20px;
    padding: 10px 0;
    border-radius: 20px;
    color: #111;
    font-style: italic;
}
.iphone_apps_dev_conetnt ul li::before {
    display: inline-block;
  font-family: FontAwesome;
  content: '\f00c';
  padding-right: 1rem;
  color: #243f91;
  font-size: 16px;
}
.iphone_apps_dev_two {
    margin: 0;
    /* background: #e6e6e6;
    background:#142c75; */
    /* border-bottom: 1px solid #ccc; */
    padding: 40px 0;
    background-image: linear-gradient(#ecf1f9, #fff, #fff);
}
.iphone_apps_dev_two h1 {
    color: #111;
    font-size: 30px;
    font-weight: bold;
    line-height: 40px;
    margin: 0;
    padding: 0;
    padding-bottom: 0;
    text-align: center;
}
.iphone_apps_dev_two h2 {
    margin: 0 auto 15px;
    width: 350px;
    filter: drop-shadow(0px 0px 5px #ccc);
}
.iphone_apps_dev_two h5 {
    font-size: 14px;
    margin-top: 8px;
    line-height: 20px;
    color: #a2a2a2;
    font-weight: normal;
    text-align: center;
    margin-bottom: 0;
    font-style: italic;
    width: 65%;
    margin: auto;
}
.iphone_apps_dev_two h6 {
    width: 160px;
    height: 1px;
    /* background: #999; */
    margin: 20px auto 0;
    border-bottom: 3px solid #243f91;
}
.pagehead-text {
    width:95%;
    padding: 0 25px 0 0;
}
.pagehead-text h1 {
    color: #fff;
    font-size: 60px;
    line-height: 70px;
    margin: 0 0 25px;
    font-weight: bold;
}
.pagehead-text h5 {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 30px;
    font-weight: normal;
    font-family: 'robotolight';
}
.head_registerbox {
    width:100%;
    padding: 0 0px;
}
.head_registerboxInr {
    background-color: #fff;
    min-height: 300px;
    border-radius: 3px;
    box-shadow: 0 0 5px #08042d;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 25px;
}


.read_btn{
    border:solid 1px rgb(27, 19, 99);
    border-radius: 50em;
    background-color: rgb(27, 19, 99);
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #fff;
    transition: 0.2s;
    padding: 10px;
}

.read_btn:hover {
    border-color: rgb(27, 19, 99);
    background-color: rgb(255, 255, 255);
    color: rgb(27, 19, 99);

    box-shadow: 0px 1px 1px rgb(0 0 0 / 5%), 0px 2px 2px rgb(0 0 0 / 5%), 0px 4px 4px rgb(0 0 0 / 5%), 0px 8px 8px rgb(0 0 0 / 5%), 0px 16px 16px rgb(0 0 0 / 5%);
}

.read_btn:focus {
    color: #fff;
    outline: none;
}
.read_btn:hover:focus {
    color: rgb(27, 19, 99);
    outline: none;
}
.read_btn>span {
    padding: 0.45em 0.75em;
    display: inline-flex;
    border-radius: inherit;
    border-color: inherit;
    flex-flow: row wrap;
    align-items: center;
    margin: -1px;

}

.read_btn.down_btn{
    font-size: 28px !important;
    padding: 0;
}


.mt-3 {
    margin-top: 30px;
}
.breadcrumb_container {
    position: absolute;
    width: 100%;
    /* top: 80px; */
    height: 64px;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.breadcrumb_cs {
    margin: 0 !important;
    width: 100%;
    clear: both;
}
.breadcrumb_cs ul li a {
    text-decoration: none;
    color: #bbb;
    font-size: 12px;
}
.breadcrumb_cs ul li .bread_arrow {
    font-size: 15px;
    padding: 0 1px 0 4px;
    color: #bbb;
}
.breadcrumb_cs ul li.current {
    color: #ffffff;
    font-weight: bold;
}
/*---------------------Responsive-----------------------------------*/
@media (min-width: 1200px) {
    .col-lg-3.com-info-block {
        width: 20%;
        padding-left: 5px;
        padding-right: 5px;
    }

}

@media (max-width: 1199px) {
    .com-info-block {
        text-align: center;
        margin-bottom: 25px;
    }
    .breadcrumb_container {
        width: 100%;
    }
    .breadcrumb_cs ul {
        margin: 0;
        padding: 0 15px;
    }

}


@media (max-width:1099px) {

    .signup-form,
    .signup-text,
    .signin-form,
    .signin-image {
        width: 100%;
        overflow: hidden;
    }

    .signup-content {
        display: block;
        padding-bottom: 0;
    }

    .signup-form {
        padding: 0;
        margin: 0 auto;
        border-right: solid 1px transparent;
        width: 75%;
        padding: 22px;
        box-shadow: 0 1px 6px rgb(60 64 67 / 30%);
        border-radius: 12px;
    }

    .signup-text {
        margin: 45px 0 0;
        text-align: center;
    }

    .signup-text p {
        margin: 10px 0;
    }

    .left-side-menu {
        width: 50px;
    }

    .left-side-menu .icon-bar a {
        padding: 5px;
    }

    .left-side-menu .icon-bar small {
        font-size: 11px;
    }

    .left-side-menu .icon-blue img {
        width: 35px;
    }

    .packages-box-2 {
        width: 90%;
        margin: 0 auto 50px;
    }
}

@media (max-width:1023px) {

    .about-text {
        text-align: center;
    }

    .about-pic {
        width: 100%;
        text-align: center;
        margin: 0;
        margin-top: 40px;
    }

    .about-pic img {
        max-width: 350px;
        text-align: center;
    }



    .info-system-section .com-info-block p {
        text-align: center;
    }

    .info-system-section .info-main-title h2 {
        width: 100%;
    }

    .csr-img-box-section .txt-heading {
        text-align: center;
        width: 100%;
        display: block;
    }

    .pricing-system-section .info-main-title h2 {
        width: 90%;
    }

    .pricing-system-section .info-main-title h6.circle {
        padding-right: 4% !important;
        padding-left: 4% !important;
    }
    .pagehead-text {
        width: 90%;
        padding: 0;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 20px;
        align-items: center;

    }
    .pagehead-text h1 {
        text-align: center;
        font-size: 30px;
    }
    .pagehead-text h5 {
        text-align: center;
        font-size: 16px;
    }
    .iphone_apps_dev_two {
        padding: 40px 0 0;
    }
    .iphone_apps_dev_conetnt ul li {
        list-style: none;
        line-height: 20px;
        padding: 10px 0;
        border-radius: 20px;
        color: #111;
        font-style: italic;
        font-size: 20px;
    }
    

}



@media (max-width:1024px) {}

@media (max-width:768px) {}

@media (max-width:767px) {

    #header.lqd-custom-menu.fixed {
        display: none;
    }

    .packages-system-section-2 {
        margin: 60px 0 0px;
    }

    .testimonialPor {
        padding: 25px 0 0px;
    }

    #customers-testimonials .item {
        padding: 0 30px;
    }

    #customers-testimonials .shadow-effect p {
        font-size: 16px;
    }

    .ld-fh-txt {
        font-size: 42px;
    }

    .ld-fancy-heading p {
        font-size: 14px;
    }

    .info-system-section .info-main-title h2 {
        font-size: 24px;
        line-height: 33px;
    }

    .csr-img-box-section .txt-heading {
        font-size: 22px;
        line-height: 32px;
    }



    .form-title {
        font-size: 24px;
        line-height: 32px;
        font-weight: 600;
        margin-top: 20px;
    }

    .signup-form {
        width: 90%;
    }

    .signup-text,
    .signup-text p {
        text-align: center;
        ;
    }

    .signup-text {
        margin: 30px 0 0 0;
    }

    .signup-content {
        padding: 60px 0 60px 0;
    }

    .pricing-system-section .info-main-title {
        margin: 0px auto 0px auto;
    }

    .pricing-system-section .info-main-title h6.circle {
        font-size: 14px;
    }

}

@media (max-width:640px) {}

@media (max-width:480px) {
    #customers-testimonials .item {
        padding: 0 20px;
        margin-bottom: 0;
    }

    .reset-ul.inline-nav>li {
        display: inline-block;
        margin: auto 5px;
    }
}

@media (max-width:479px) {}