@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

/* font-family: 'Quicksand', sans-serif; */

body {
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
	color: #252C4B;
    font-family: 'Quicksand', sans-serif;
	font-weight: 700;
}

p {
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    color: #737789;
}

a {
    color: #0597E0;
}

.gradient_bg {
    background: linear-gradient(117deg, rgba(0, 197, 217, 0.76) 2.67%, rgba(233, 243, 38, 0.76) 97.07%);
}

.d-flx-spc-btwen{
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}


section {
    position: relative;
    padding: 100px 0 0;
}


.btn {
    border: 2px solid transparent;
    color: #02354F;
    font-size: 16px;
    padding: 10px 40px;
    font-weight: 700;
    font-family: "Quicksand";
    border-radius: 5px;
    position: relative;
    z-index: 1;
}

.border_btn {
    border: 2px solid #02354F;
    background:transparent;
}

.solid_btn {
    background: linear-gradient(117deg, rgba(0, 197, 217, 0.76) 2.67%, rgba(233, 243, 38, 0.76) 97.07%);
    border: 0 !important;
}

.solid_btn:hover {
    background: linear-gradient(150deg, rgba(0, 197, 217, 0.76) 2.67%, rgba(233, 243, 38, 0.76) 97.07%);
}


.blue_solid_btn {
    background: #0597E0;
    color: #fff;
}

.blue_solid_btn:hover {
    background: #0084c6;
    color: #fff;
}

.gradient_btn {
    background: linear-gradient(117deg, rgba(0, 197, 217, 0.76) 2.67%, rgba(233, 243, 38, 0.76) 97.07%);
}

.border_btn::before {
    content: "";
    transform: scaleX(0);
    background-image: linear-gradient(117deg, rgba(0, 197, 217, 0.76) 2.67%, rgba(233, 243, 38, 0.76) 97.07%);
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 5px;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .5s ease;
    z-index: -1;
}

.border_btn:hover::before {
    transform: scale(1);
    transform-origin: right center;
}

.cstmer_name_btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    line-height: 1.1;
}

.cstomer_name {
    max-width: 125px;
    height: 32px;
    overflow: hidden;
    /* text-overflow: ellipsis; */
    /* display: -webkit-box; */
    /* -webkit-line-clamp: 2; */
    /* text-align: left; */
    /* -webkit-box-orient: vertical; */
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user_logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid #fff;
    background: #fff;
}

.form-control:focus {
    box-shadow: none;
}

.main_wrapper {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding-top: 83px;
}


/* header css */

.header {
    padding: 15px 0;
}


.header_wrapper {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 83px;
    transition: all 0.5s ease-in-out;
    background: #fff;
}

.header_wrapper .btn.login_button {
    padding: 10px 48px;
}

.header_wrapper .btn {
    padding: 10px 20px;
}

.header_wrapper .btn:hover {
    color: #000;
}

.header_wrapper.sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background: #fff;
    z-index: 9;
    width: 100%;
}

/* banner_section */

.banner_sec {
    overflow: hidden;
}

.banner_content {
    padding-top: 60px;
}

.banner_content h1 {
    font-size: 50px;
    margin: 40px 0 32px;
}

.banner_content p {
    font-size: 18px;
    font-weight: 500;
}

.banner_bg_img {
    width: 55%;
    position: absolute;
    right: -160px;
    top: 0;
    z-index: -1;
}


.banner_img img {
    height: 600px;
    width: auto;
    position: relative;
    right: -35px;
    animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}

@keyframes ImgBounce {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(-30px)
    }
}

.banner_img {
    text-align: center;
}

.trial_btn_group {
    display: flex;
    width: 100%;
    gap: 5px;
    max-width: 460px;
    justify-content: space-between;
    margin-bottom: 30px;
}

.trial_btn_group .form-control {
    display: block;
    outline: none;
    width: 100%;
    max-width: 305px;
    height: 70px;
    border: 2px solid #e4e4ee;
    border-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding-left: 30px;
    color: #737789;
    font-size: 16px;
    font-weight: 500;
    background-color: #f6f6fb;
}

.trial_btn_group .btn {
    padding: 10px 39.25px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: linear-gradient(117deg, rgba(0, 197, 217, 0.76) 2.67%, rgba(233, 243, 38, 0.76) 97.07%);
    border:0;
}

.play_btn {
    background: linear-gradient(89deg, #00C5D9 24%, #E9F326 50.03%, #20CBBF 71.46%);
    width: 150px;
    height: 150px;
    color: #fff;
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    border: 20px solid #fff;
    position: absolute;
    bottom: 35%;
}

.banner_slider .owl-dots {
    position: absolute;
    bottom: -100px;
}


.owl-dot {
    margin-right: 10px;
}

.owl-dot span{
    outline: none;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #252C4B;
    opacity: .2;
    margin: 0;
    transition: all .4s ease;
    position: relative;
    display: inline-block;
}



.owl-dot.active span {
    transform: scale(1.5);
    opacity: 1;
    background: linear-gradient(117deg, rgba(0, 197, 217, 0.76) 2.67%, rgba(233, 243, 38, 0.76) 97.07%);
}


/* feature list css */

.section_title h6 {
    color: #0597E0;
    font-size: 18px;
    font-weight: 600;
}


.section_title h1 {
    color: #252C4B;
    font-size: 36px;
    font-weight: 700;
}

.section_title p {
    color: #252C4B;
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 50px;
}

.feature_slider {
    width: 95%;
    margin: 0 auto;
    padding:10px 20px;
}

.feature_card {
    border-radius: 135px;
    background-color: #fff;
    box-shadow: 0 10px 40px 0 rgba(46,61,98,.1);
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    padding: 40px 30px;
    min-height: 425px;
    margin: 15px;
}

.feature_icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(117deg, rgba(0, 197, 217, 0.76) 2.67%, rgba(233, 243, 38, 0.76) 97.07%), #F6F6FB;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 27px;
    position: relative;
    z-index: 10;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.4s ease-in-out;
}

.feature_icon img {
    max-width: 64px;
}

.feature_card h4 {
    font-weight: 600;
    font-size: 20px;
    transition: all .5s ease;
    margin: 0 auto 20px;
    min-height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.feature_card p {
    margin: 0 auto 30px; 
    position: relative;
    z-index: 1;
}

.owl-dots {
    text-align: center;
    margin: 20px 0;
}

.feature_list_sec .grey_pattern {
    width: 9%;
    left: 0;
    top: -30%;
}

/* hover effect on card */

.feature_card:before {
    content: "";
    border-radius: 5px;
    background: linear-gradient(117deg, rgba(0, 197, 217, 0.76) 2.67%, rgba(233, 243, 38, 0.76) 97.07%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 135px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s ease;
}

.feature_card:hover:before {
    transform: scale(1);
    transform-origin: left;
}

.feature_card:hover .feature_icon{
    background: #fff;
    transition: all 0.4s ease-in-out;
}

.feature_card:hover p {
    color: #000;
}

/* benefit section */


.benefit_img img {
    width: 85%;
    animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}

.benefit_content p:first-child {
    margin: 50px 0;
}

.txt_blue {
    color: #0597E0;
}

/* counter section */

.counter_sec:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:url(../img/new/counter_bg.png);
    background-position: 50%;
    background-attachment: fixed;
}

.counter_sec {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background: linear-gradient(117deg, rgba(0, 197, 217, 0.76) 2.67%, rgba(233, 243, 38, 0.76) 97.07%);
    margin-top: 40px;
}


.counter_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.counter {
    text-align: center;
}

.counter h3 {
    font-size: 45px;
}

.counter p {
    color: #02354F;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}


/* case study */

.case_study_sec {
    padding: 100px 0;
}

.case_study_sec a {
    text-decoration: none;
}

.case_study_sec .container {
    width: 70%;
}

.case_study {
    box-shadow: 0px 11.67521px 70.05128px 0px rgba(46, 61, 98, 0.10);
    border-radius: 5px;
    padding: 30px;
    height: 100%;
    width: 95%;
}

.case_study_icon {
    text-align: center;
    margin-bottom: 20px;
}

.case_study_icon img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px solid #eee;
}

.case_study p {
    color: #252C4B;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
}


/* testimonial section */

.testimonial_sec {
    background: #F6F6FB;
    padding: 100px 0;
}

.testimonial_content_outer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.testimonial_sec .testimonial_img img {
    width: 70%;
}

.testimonial_sec .row {
    align-items: center;
}

.testimonial_content h5 {
    color: #74DCBF;
}

.testimonial_content p {
    font-size: 20px;
    font-weight: 500;
    line-height: 40px;
}

.testimonial_sec .owl-dots {
    text-align: end;
    margin: 0;
    position: absolute;
    right: -3px;
    bottom: 8px;
}

/* video section  */

.video_sec {
    padding: 100px 0;
}

.video_sec::before {
    content: "";
    background: linear-gradient(117deg, rgba(0, 197, 217, 0.76) 2.67%, rgba(233, 243, 38, 0.76) 97.07%);
    position: absolute;
    right: 0;
    top: 0;
    width: 85%;
    height: 100%;
    z-index: -1;
}

.video_sec .container {
    padding-left: 105px;
}

.video_row {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
}

.video_slider .video_row img {
    width: 70%;
}

.video_slider .owl-dots {
    width: 70%;
    margin: 0 auto;
    position: absolute;
    right: 0;
    margin-top: 10px;
}

.video_sec .section_title {
    background: #fff;
    width: 340px;
    display: inline-block;
    box-shadow: 0px 10px 60px 0px rgba(46, 61, 98, 0.10);
    border-radius: 5px;
    padding: 80px 20px;
    position: absolute;
    top: 25%;
    left: 5%;
    z-index: 2;
}

.video_row .play_btn {
    left: 35%;
    right: 0;
    margin: 0 auto;
    bottom: 37%;
    cursor: pointer;
    border: 0;
    width: 125px;
    height: 125px;
}

.video_modal .modal-dialog {
    max-width: 800px;
}

.video_modal .btn-close {
    position: absolute;
    top: -25px;
    font-size: 20px;
    background-color: #fff;
    opacity: 1;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 0 8px #aaa;
    right: -22px;
}




/* client section */

.client_sec {
    padding-top: 70px;
    padding-bottom: 50px;
    background: url(../img/new/download.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.client_row {
    margin-bottom: 50px;
}

.client_img img {
    max-height: 85px;
    object-fit: contain;
}


.client_row h3 {
    text-align: center;
    margin: 20px 0 50px;
    font-size: 32px;
}


/* our solution section */

.solution_sec {
    padding: 100px 0;
}

.mobile_view {
    position: relative;
}

.mobile_frame {
    width: 21.5%;
    margin: 0 auto;
}

.solution_mobile_slider {
    position: absolute;
    top: 3%;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 100%;
    width: 100%;
    display: inline-flex;
    z-index: -1;
}

.solution_mobile_slider .owl-item.active {
    transform: scale(0.9);
}

.solution_mobile_slider .owl-item.active.center {
    transform: scale(1);
}

.solution_mobile_slider img {
    width: 100%;
    border-radius: 30px;
    position: relative;
    top: 1px;
    left: 1px;
    margin: 0 auto;
}


/* web view solution slider */

.web_view {
    position: relative;
    margin-top: 100px;
    width: 100%;
    display: inline-block;
}

.web_frame {
    margin: 0 auto;
    width: 44%;
}

.solution_web_slider {
    position: absolute;
    top: 5%;
    left: -4px;
    right: 0;
    margin: 0 auto;
    height: 100%;
    width: 100%;
    display: inline-flex;
    z-index: -1;
}

.solution_web_slider img {
    width: 100%;
    margin: 0 auto;
}


.solution_web_slider .owl-item.active {
    transform: scale(0.9);
}

.solution_web_slider .owl-item.active.center {
    transform: scale(1);
}

/* blog section */

.blog_sec {
    background: #F6F6FB;
    padding: 100px 0;
}

.blog_card {
    background: #fff;
    box-shadow: 0px 10px 60px 0px rgba(46, 61, 98, 0.10);
    border-radius: 4px;
    margin-bottom: 30px;
}

.blog_image {
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: #000;
}

.blog_image > img {
    width: 100%;
    opacity: 1;
    transform: scale(1);
    transition: transform .5s ease,opacity .5s ease;
}

.blog_card:hover .blog_image > img {
    transform: scale(1.05);
    opacity: .5;
}

.blog_content:before {
    content: "";
    border-radius: 5px;
    background-image: linear-gradient(117deg, rgba(0, 197, 217, 0.76) 2.67%, rgba(233, 243, 38, 0.76) 97.07%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .5s ease;
    z-index: -1;
}

.blog_card:hover .blog_content:before {
    transform: scale(1);
    transform-origin: top;
}

.blog_content {
    padding: 25px;
    position: relative;
    z-index: 1;
}

.blog_date i {
    color: #0597E0;
    margin-right: 2px;
}

.blog_date span {
    margin-right: 10px;
    color: #737789;
    font-size: 16px;
    font-weight: 600;
}

.blog_content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 5px;
}


/* footer sec */

.footer_sec::before {
    content: "";
    background: linear-gradient(90deg, rgba(87, 215, 214, 0.05) 0%, rgba(224, 242, 111, 0.05) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.footer_sec {
    background: url(../img/new/footer_bg.webp);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact_form {
    margin-top: 50px;
}

.contact_form .form-control {
    border: 1px solid #E4E4EE;
    background: #F6F6FB;
    min-height: 60px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.contact_img {
    text-align: end;
}

.contact_img img {
    width: 80%;
}


.contact_shape {
    width: 230px;
    position: relative;
    top: 30px;
    right: -70px;
}

.newsletter {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-radius: 100px;
    align-items: center;
    margin: 70px auto 20px;
    width: 85%;
}

.input_newsletter {
    display: flex;
    width: 80%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.input_newsletter input {
    border-top: 0;
    background: transparent;
    border-left: 0;
    border-radius: 0;
    border-right: 0;
    width: 100%;
    max-width: 510px;
    padding-left: 0;
    margin-right: 15px;
    border-bottom: 2px solid rgba(19, 19, 19, 0.2);
    color: #02354F;
    height: 48px;
    font-weight: 600;
}

.input_newsletter input:focus {
    background: transparent;
    box-shadow: none;
    border-color: rgba(19, 19, 19, 0.2);
}

.email_icon {
    background: #fff;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.email_icon img {
    max-width: 50px;
}

.footer_bottom a , .footer_bottom p {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
}

.footer_bottom img {
    margin-bottom: 10px;
}

.social_links a {
    background: #E4E4EE;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    vertical-align: middle;
    text-align: center;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    margin-right: 8px;
    color: #222;
    overflow: hidden;
    position: relative;
}

.social_links a i, .social_links a img {
    z-index: 2;
    position: relative;
}

.social_links a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transform: translateY(100%) rotate(180deg) perspective(44px);
    background-image: linear-gradient(117deg, rgba(0, 197, 217, 0.76) 2.67%, rgba(233, 243, 38, 0.76) 97.07%);
    transition: transform .5s ease;
}

.social_links a:hover:before {
    transform: translateY(0) rotate(0deg) perspective(44px);
}

.copyright {
    background: #fff;
    border-top: 1px solid #E4E4EE;
    padding: 30px 0;
}

.copyright p {
    color: #737789;
    font-weight: 600;
    margin: 0;
}

/* patterns css starts and animations */

.grey_pattern, .circle_pattern {
    position: absolute;
    z-index: -1;
}

.banner_sec .grey_pattern {
    left: 0;
    bottom: -30%;
    width: 5%;
}

.feature_list_sec .circle_pattern {
    left: 0;
    top: 45px;
    width: 18%;
    animation: ImgBounce 6s ease-in-out 1s infinite alternate;
    /* transform-origin: center bottom;
    animation-fill-mode: both;
    animation-name: bounce;
    animation-timing-function: ease-out;
    animation-duration: 5s;
    animation-iteration-count: infinite; */
}

@keyframes bounce {
    0%,20%,53%,80%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        transform: translateZ(0)
    }

    40%,43% {
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-30px,0)
    }

    70% {
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-15px,0)
    }

    90% {
        transform: translate3d(0,-4px,0)
    }
}

.benefit_sec {
    overflow: hidden;
}

.benefit_sec .grey_pattern {
    right: 0;
    width: 10%;
}

.benefit_sec .circle_pattern {
    right: 30px;
    bottom: 70px;
    width: 12%;
    animation-name: squareMover;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-delay: 2s;
    animation-iteration-count: infinite;
    perspective: 100px;
    transform-origin: center center;
}

@keyframes squareMover {
    0%,to {
        transform: translate(0) rotate(0)
    }

    20%,60% {
        transform: translate(20px,40px) rotate(180deg)
    }

    30%,80% {
        transform: translate(40px,60px) rotate(0deg)
    }
}


.case_study_sec .grey_pattern {
    left: 0;
    width: 10%;
    top: 12%;
}

.case_study_sec .circle_pattern {
    left: 15px;
    width: 13%;
    bottom: 26%;
    animation-name: shapeMover;
    animation-duration: 9s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}


@keyframes shapeMover {
    0%,to {
        transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0) translateX(0)
    }

    50% {
        transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px)
    }
}

.solution_sec .grey_pattern {
    right: 0px;
    top: 10px;
    width: 6%;
}

.web_view .circle_pattern {
    top: -38%;
    width: 15%;
    animation-name: shapeMover;
    animation-duration: 9s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.footer_sec .grey_pattern {
    bottom: 40%;
    width: 7%;
}



/* blog page */

.blog_data {
    padding: 10px;
}

.blog_data h2 {
    font-size: 24px;
}

.blog_data p {
    font-weight: 500;
    margin-bottom: 5px;
}

.blog_time { 
    display: inline-flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    gap: 5px;
    margin-bottom: 5px;
}

.blog_data a {
    color: #121416;
    font-weight: 700;
    font-size: 18px;
}

.blog_time span {
    font-weight: 600;
    font-size: 14px;
}

.view_eye {
    color: #121416;
    font-weight: 700;
}

.txt_dec_none {
    text-decoration: none;
    color: inherit;
}


.blog_inner_section .grey_pattern {
    left: 0;
    top: 30%;
    width: 8%;
    z-index: 1;
}

.blog_inner_section .circle_pattern {
    left: 0;
    top: 43%;
    width: 12%;
    z-index: 1;
    animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}


.inner_banner {
    position: relative;
    width: 100%;
}

.inner_banner img.w-100 {
    height: 350px;
    object-fit: cover;
}

.inner_banner_content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.inner_banner::before {
    content: "";
    background: rgba(0,0,0,0.2);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}


.inner_banner_content h3, .blog_person span {
    color: #fff;
    font-size: 48px;
    width: 67%;
}

.inner_sec .grey_pattern {
    width: 8%;
    top: 50%;
}

.inner_sec .circle_pattern {
    width: 12%;
    top: 64%;
    animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}

.inner_content p, .inner_content ul li {
    color: #121416;
    font-weight: 500;
    font-size: 15px;
}

.inner_content h5 {
    font-size: 18px;
}

.inner_content ul {
    padding-left: 70px;
    margin-bottom: 30px;
}

.inner_content ul li {
    margin-bottom: 5px;
}

.txt_bold {
    font-weight: bold;
}

.testimonial_txt {
    display: flex;
    align-items: center;
    gap: 100px;
    border-top: 1px solid #E9ECEF;
    border-bottom: 1px solid #E9ECEF;
    padding: 45px 30px;
    margin: 20px 0;
}

.testimonial_txt p {
    color: #0597E0;
}

.testimonial_txt img {
    max-width: 45px;
}


.blog_person span:first-child {
    font-weight: 700;
    margin-right: 20px;
}


.footer_inner_pages {
    overflow: hidden;
    background: inherit;
}

.footer_inner_pages .grey_pattern {
    right: 0;
    bottom: 20%;
    width: 9%;
}

.footer_inner_pages .circle_pattern {
    right: 0;
    bottom: 24%;
    width: 13%;
    animation-name: squareMover;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-delay: 2s;
    animation-iteration-count: infinite;
    perspective: 100px;
    transform-origin: center center;
}


.arrow_top {
    width: 45px;
    height: 45px;
    cursor: pointer;
    background-image: linear-gradient(117deg, rgba(0, 197, 217, 0.76) 2.67%, rgba(233, 243, 38, 0.76) 97.07%);
    position: fixed;
    bottom: 45px;
    right: 20px;
    z-index: 99;
    text-align: center;
    outline: none;
    background-size: auto 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
    opacity: 0;
}

.twitter_icon {
    max-height: 14px;
    margin-bottom: 0 !important;
}

.arrow_top i {
    color: #000;
}

.side_shape {
    position: absolute;
    left: 0;
    width: 15%;
}

.botom_shape {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 24%;
}

.tick_img {
    margin-bottom: 30px;
    max-width: 120px;
}

.modal-dialog.modal-dialog-centered.confirmation_popup {
    max-width: 600px;
}

.confirmation_popup .modal-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.confirmation_popup .modal-body h4 {
    text-align: center;
}

.confirmation_popup .modal-body .btn-close {
    position: absolute;
    right: 12px;
    top: 10px;
    color: #4F4F4F;
    opacity: 1;
    font-size: 14px;
}


.confirmation_popup .modal-body p {
    color: #000;
    font-weight: 500;
}

/* new team sec */

.team_designation {
    color: #74DCBF;
    text-align: center;
    z-index: 1;
    position: relative;
}

.team_sec .case_study p {
    font-size: 15px;
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
}

.team_sec .case_study {
    border-radius:50px 0px;
    position: relative;
}

.team_sec .case_study_icon {
    z-index: 1;
    position: relative;
}

.team_sec .case_study:before {
    content: "";
    border-radius: 5px;
    background: linear-gradient(117deg, rgba(0, 197, 217, 0.76) 2.67%, rgba(233, 243, 38, 0.76) 97.07%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s ease;
}

.team_sec .case_study:hover:before {
    transform: scale(1);
    transform-origin: left;
}


.team_sec .case_study:hover .team_designation {
    color: #0597E0;
}

/*===========responsive starts here=============*/
    
  
@media only screen and (max-width: 1024px) {





}

/*============================= Tablet landscape size to standard 960  =============================*/

@media only screen and (min-width: 959px) and (max-width: 1024px) {


}


/* =============================global tablet and mobile== ===========================*/
 @media only screen and (max-width: 959px) {


      
}


/* ================Tablet Portrait size to standard 960 (devices and browsers) ================*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

    section {
        position: relative;
        padding: 50px 0 0;
    }

    .banner_content h1 {
        font-size: 30px;
        margin: 0 0 30px;
    }

    .banner_sec .play_btn {
        display: none;
    }

    .section_title h1 {
        font-size: 30px;
    }

    .section_title p {
        font-size: 17px;
    }

    .counter_sec {
        padding: 50px 0;
    }

    .counter_row {
        justify-content: center;
    } 

    .counter {
        text-align: center;
        width: 31%;
    }

    .case_study {
        height: auto;
        width: 100%;
        margin-bottom: 30px;
    }

    .video_row .play_btn {
        left: 40%;
        bottom: 35%;
        width: 85px;
        height: 85px;
    }

    .video_sec .section_title {
        width: 305px;
        padding: 30px 15px;
    }

    .newsletter {
        width: 100%;
    }

    .mobile_frame {
        width: 36%;
    }

    .web_frame {
        max-width: inherit;
        width: 43%;
    }

    .solution_web_slider img {
        max-width: inherit !important;
    }

    .blog_card {
        margin-bottom: 30px;
        height: inherit;
    }






   


}

/* ===================== global mobile size ===================== */
@media screen and (max-width: 767px) {
    .btn {
        padding: 10px 25px;
    }

    .header_wrapper .btn {
        padding: 10px 25px;
    }

    section {
        padding: 50px 0 0;
    }

    .banner_content {
        padding-top: 0;
    }

    .banner_sec .grey_pattern,  .banner_sec .play_btn, .banner_sec .owl-dots {
        display: none;
    }

    .banner_bg_img {
        display: none;
    }

    .banner_content h1 {
        font-size: 24px;
        margin: 0px 0 15px;
    }

    .banner_content p {
        font-size: 16px;
    }

    .banner_img img {
        height: 600px;
        top: 30px;
        right: 0;
    }

    .trial_btn_group .form-control {
        width: 55%;
        height: 50px;
    }

    .feature_list_sec .circle_pattern {
        right: 0;
        top: -80px;
        width: 40%;
        left: inherit;
    }

    .section_title h6 {
        font-size: 16px;
    }

    .section_title h1 {
        font-size: 24px;
    }

    .section_title p {
        font-size: 15px;
    }
    
    .benefit_sec .grey_pattern {
        display: none;
    }

    .benefit_img img {
        width: 100%;
    }

    .section_title.text-left {
        text-align: center;
    }

    .counter_sec {
        padding: 50px 0;
    }

    .counter_row {
        justify-content: center;
        gap:10px;
    }

    .counter {
        text-align: center;
        min-width: 31%;
    }

    .counter h3 {
        font-size: 22px;
        margin: 0;
    }

    .counter p {
        font-size: 18px;
    }


    .benefit_sec .row .col-lg-5 {
        order: 1;
    }

    .benefit_sec .row .col-lg-7 {
        order: 2;
    }

    .benefit_sec .circle_pattern {
        right: inherit;
        top: 40%;
        width: 40%;
        left: 0;
        bottom: inherit;
    }

    .benefit_content p:first-child {
        margin: 25px 0;
    }

    .benefit_sec .owl-dots {
        display: none;
    }

    .case_study_sec {
        padding: 50px 0;
    }

    .case_study_sec .circle_pattern {
        left: 15px;
        width: 40%;
        bottom: inherit;
        top: 20px;
    }

    .case_study_sec .container {
        width: 100%;
    }

    .case_study {
        height: inherit;
        width: 100%;
        margin-bottom: 30px;
    }

    .video_sec {
        padding: 50px 0;
    }

    .video_sec .section_title {
        position: relative;
        background: transparent;
        padding: 0;
        text-align: center;
        box-shadow: none;
        margin-bottom: 30px;
        width: 100%;
        left: 0;
        top: 0;
    }

    .video_sec .container {
        padding-left: 15px;
    }

    .video_sec::before, .video_slider .video_row img {
        width: 100%;
    }

    .video_row .play_btn {
        left: 0;
        right: 0;
        bottom: 29%;
        width: 70px;
        height: 70px;
    }

    .video_row .play_btn .fa.fa-play {
        font-size: 25px;
    }

    .video_slider .owl-dots {
        width: 100%;
    }

    .video_slider .owl-dot.active span {
        background: #fff;
    }

    .client_row h3 {
        margin: 10px 0 50px;
        font-size: 25px;
    }

    .case_study_sec {
        padding: 50px 0;
    }

    .mobile_frame {
        width: 90%;
        margin: 0 auto;
    }

    .web_frame {
        margin: 0 auto;
        width: 100%;
    }

    .solution_sec .grey_pattern {
        width: 20%;
    }

    .solution_sec .owl-carousel .owl-item img, .owl-carousel1 .owl-item img {
        display: block;
        width: 76%;
        margin: 0 auto;
    }

    .web_view .circle_pattern {
        width: 35%;
    }


    .blog_sec {
        background: #F6F6FB;
        padding: 50px 0;
    }

    .blog_card {
        margin-bottom: 30px;
    }

    .blog_content {
        padding: 10px;
    }

    .blog_content h3 {
        font-size: 20px;
    }

    .contact_shape {
        display: none;
    }

    .contact_img img {
        width: 100%;
        margin-top: 20px;
        display: none;
    }

    .newsletter {
        flex-direction: column;
        width: 100%;
        border-radius: 15px;
        margin: 20px 0;
    }

    .input_newsletter {
        width: 100%;
        display: inline-block;
        text-align: center;
    }

    .contact_form .btn_group {
        text-align: center;
    }

    .input_newsletter input {
        margin-bottom: 10px;
    }

    .footer_sec .btn {
        padding: 10px 6px;
        margin-bottom: 10px;
    }

    .case_study_sec .grey_pattern {
        display: none;
    }

    .inner_banner_content h3 {
        font-size: 25px;
        width: 100%;
    }

    .inner_content ul {
        padding-left: 40px;
    }

    .testimonial_txt {
        gap: 20px;
        padding: 35px 0px;
    }

    .testimonial_img img {
        margin: 0px auto 25px;
    }









   
}


/* ===================Mobile Landscape Size to Tablet Portrait (devices and browsers)=================== */
@media only screen and (min-width: 480px) and (max-width: 767px) {

  
      
}


/* =====================Mobile Portrait Size to Mobile Landscape Size (devices and browsers)===================== */
@media screen and (max-width: 479px) {

    .trial_btn_group .form-control {
        width: 60%;
        padding-left: 10px;
    }

    .contact_form .col {
        flex: inherit;
    }

    .testimonial_content p {
        font-size: 17px;
        line-height: 30px;
    }

    .trial_btn_group .btn {
        padding: 10px 15px;
        width: 35%;
        max-width: inherit;
    }

    .inner_banner_content {
        padding: 0 20px;
    }

    .arrow_top {
        right: 15px;
        bottom: 15px;
    }

    .header_wrapper .btn.cstmer_name_btn {
      padding: 5px;
    }
   
}

@media screen and (max-width: 350px) {

    .user_logo {
        display: none;
    }
}