/*------------------------------------------------------------------------------------------
# Base
------------------------------------------------------------------------------------------*/

@font-face {
    font-family: 'Inter';
    font-stretch: 100%;
    src: url("../../font/inter.ttf") format('woff2');
    unicode-range: U+0951-0952, U+0964-0965, U+0980-09FE, U+1CD0, U+1CD2, U+1CD5-1CD6, U+1CD8, U+1CE1, U+1CEA, U+1CED, U+1CF2, U+1CF5-1CF7, U+200C-200D, U+20B9, U+25CC, U+A8F1;
}

@font-face {
    font-family: 'ZohoPuviBold';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    src: url("../../font/ZohoPuviBold.ttf") format('woff2');
    unicode-range: U+0951-0952, U+0964-0965, U+0980-09FE, U+1CD0, U+1CD2, U+1CD5-1CD6, U+1CD8, U+1CE1, U+1CEA, U+1CED, U+1CF2, U+1CF5-1CF7, U+200C-200D, U+20B9, U+25CC, U+A8F1;
}


body {
    font-family: "Inter", sans-serif;
    color: #0e2332;
    background: #00000000;
}


.bg-light-secondary {
    background-color: #edf2fb;
}


.btn-color-primary {
    background-color: #272c6b !important;
    border-color: #272c6b;
    color: #fff !important;
}

.btn-color-primary:hover, .btn-color-primary:active {
    background-color: #2f347e !important;
    border-color: #383e91 !important;
    color: #fff !important;
    box-shadow: none;
}

.btn-color-sec {
    background-color: #4cb6d7 !important;
    border-color: #4cb6d7;
    color: #fff !important;
}

.btn-color-sec:hover, .btn-color-sec:active {
    background-color: #2395b9 !important;
    border-color: #2395b9 !important;
    color: #fff !important;
    box-shadow: none;
}

.button-header {
    padding: 8px 30px !important;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 30pc;
}

.bg-color-primary {
    background-color: #272c6b !important;
    border-color: #272c6b;
}

.text-color-primary {
    color: #095f47 !important;
}

.view-all-btn {
    font-size: 16px;
    font-weight: 500;
    fill: #fff;
    color: #fff;
    background-color: #106f00;
    border-radius: 25px;
    padding: 10px 30px;
}

.view-all-btn:hover {
    color: #fff;
    background-color: #42cd6c;
    border-radius: 25px;
    padding: 10px 30px;
}

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

.pt-section {
    padding-top: 40px;
}

.mt-section {
    margin-top: 80px;
}


.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}


.hero-img {
    width: 500px;
    height: auto;
    position: absolute;
    top: 50px;
    right: -10%;
}

.carousel-img {
    height: 350px;
    width: auto;
    margin: 0 auto;
    position: relative;
    right: 0;
}

.hero-carosel{
    position: relative;
    margin-left: auto;
}

.hero-carosel .carousel-inner .carousel-item{
    min-height: 400px;
}


.carousel-prev{
    position: absolute;
    left: 0 !important;
    top: 50%;
    background: transparent;
    border: 0;
    color: #4cb5d6;
    font-size: 30px;
}

.carousel-next{
    position: absolute;
    right: 0 !important;
    top: 50%;
    background: transparent;
    border: 0;
    color: #4cb5d6;
    font-size: 30px;
}


.text-h1 {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    letter-spacing: 0;
    margin: 0;
    color: #272c6b;
}

.t-primary {
    color: #272c6b;
}

.t-secondary {
    color: #4cb6d7;
}

.t-regular {
    color: #666;
}

.hero-text .hero-p {
    margin: 15px 0 15px;
    color: #fff !important;
    text-transform: none;
    font-weight: 500;
    line-height: 26px;
    font-size: 16px;
    padding-right: 20%;
    font-family: 'Inter', sans-serif;
}

.watch-promo {
    position: relative;
    height: 80px;
}

.video-play-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 8%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #84a847;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #3E7B27;
    border-radius: 50%;
    transition: all 200ms;
}

.video-play-button img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 18px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.promo-text{
    padding-left: 100px;
    height: 100%;
    vertical-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 14px;
    font-weight: bold;
    color: #3E7B27;
}

.hero{
    position: relative;
    overflow: hidden;
    z-index: 3;
    background-image: url("../../../assets/img/bg-04.jpg");
    padding-top: 140px;
    padding-bottom: 100px;

}

.no-background{
    background: #fff !important;
}


.cs-hero_shapes .cs-shape {
    position: absolute;
    z-index: 1000;
}

@keyframes swing-anim {
    65% {
        -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transform: translateY(-48px) rotate(-75deg);
        transform: translateY(-48px) rotate(-75deg);
    }
}


.cs-hero_shapes .cs-shape_position1 {
    left: 7%;
    top: 62%;
     -webkit-animation: swing-anim 9s cubic-bezier(0.25, 0, 0.2, 1) infinite;
    animation: swing-anim 9s cubic-bezier(0.25, 0, 0.2, 1) infinite;
}

.cs-hero_shapes .cs-shape_position2 {
    left: 30%;
    top: 78%;
    -webkit-animation: swing-anim 9s cubic-bezier(0.25, 0, 0.2, 1) infinite;
    animation: swing-anim 9s cubic-bezier(0.25, 0, 0.2, 1) infinite;
}

.cs-hero_shapes .cs-shape_position3 {
    left: 40%;
    top: 20%;
    -webkit-animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.cs-hero_shapes .cs-shape_position4 {
    left: 42%;
    top: 62%;
    -webkit-animation: swing-anim 35s alternate infinite linear;
    animation: swing-anim 35s alternate infinite linear;
}

.cs-hero_shapes .cs-shape_position5 {
    left: 90%;
    top: 5%;
    -webkit-animation: swing-anim 9.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation: swing-anim 9.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.cs-hero_shapes .cs-shape_position5 {
    left: 85%;
    top: 75%;
    -webkit-animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation: swing-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.site-heading {
    margin-bottom: 50px;
}

.site-heading .heading-name {
    color: #f8760a;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    letter-spacing: 1px;
}

.site-heading .heading-value {
    clear: both;
    color: #272c6b;
    position: relative;
    padding-bottom: 15px;
    margin: 0 0 20px 0;
    font-weight: 600;
    line-height: 1.2em;
    font-family: 'Poppins', sans-serif;
}

.site-heading .heading-value::before {
    background: #272c6b none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 3px;
    left: 50%;
    margin-left: -25px;
    position: absolute;
    width: 40px;
}

.site-heading .heading-value::after {
    background: #4cb6d7 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 3px;
    left: 50%;
    margin-left: 20px;
    position: absolute;
    width: 5px;
}

.right-abs-image {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: .35;
}

.right-abs-image img{
    height: auto;
    width: 100%;
}

.feature .card{
    height: 100%;
}

.feature-item{
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-item .icon {
    width: 100px;
    height: auto;
    flex-shrink: 0;
}

.feature-item .icon  img   {
    height: auto;
    width: 100%;
}

.feature-item .info {
    padding-left: 20px;
}

.feature-item .info p {
    color: #666;
    margin: 10px 0;
    text-transform: none;
    font-weight: 400;
    line-height: 26px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.feature-item .info .card-heading{
    color: #272c6b;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0;
    margin: 0;
}

.features .item-grid:first-child {
    margin-top:80px;
}
.features .item-grid:nth-child(4) {
    margin-top: -5px;
}

.features .item-grid:nth-child(6) {
    margin-top: -30px;
}

.bg-theme-sec {
    background: linear-gradient(257.51deg, #F2FCFE 44.07%, #FAF1FE 100%);
    z-index: -1;
}

.bg-theme-sec2{
     background: linear-gradient(257.51deg, #f5f3fd 44.07%, #f5f3fd 100%);
}

.bg-theme-primary{
     background: linear-gradient(257.51deg, #272c6b 44.07%, #272c6b 100%);
}

.bg-theme-primary .site-heading .heading-value::before {
    background: #4cb5d6 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 3px;
    left: 50%;
    margin-left: -25px;
    position: absolute;
    width: 40px;
}

.icon-box-number {
    padding: 40px 30px 26px 30px;
    position: relative;
}

.icon-box-icon {
    height: 70px;
    width: 70px;
    font-size: 32px;
    color: #fff;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    border-radius: 50%;
    background-color: #4cb6d7;
    margin-bottom: 28px;
    -webkit-transition: all .25s linear;
    transition: all .25s linear;
    position: relative;


    display: flex;
    justify-content: center;
    align-items: center;
}



@keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px rgb(76, 181, 214), 0 0 0 10px rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px rgb(76, 181, 214), 0 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px rgba(76, 181, 214, 0.45), 0 0 0 10px rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px rgba(76, 181, 214, 0.63), 0 0 0 10px rgba(255, 255, 255, 0.5);
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: .5;
    }
}



.icon-box-icon:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 2px rgba(105, 144, 255, 0.25);
    box-shadow: 0 0 0 2px rgba(105, 144, 255, 0.25);
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    animation: sonarEffect 1s ease-out 75ms;
}


.icon-box-number:hover .icon-box-icon {
    -webkit-animation: sonarEffect 1s ease-out 75ms;
    animation: sonarEffect 1s ease-out 75ms;
}

.feature-card:hover .icon-box-icon {
    -webkit-animation: sonarEffect 1s ease-out 75ms;
    animation: sonarEffect 1s ease-out 75ms;
}

.content-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-number {
    font-weight: 600;
    font-size: 60px;
    line-height: 1em;
    color: transparent;
    -webkit-text-stroke: 1px #4cb6d7;
    position: absolute;
    right: 15px;
    top: 15px;
    opacity: 0.3;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.icon-box-info .icon-box-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1C2528;
    padding: 0;
    font-weight: 600;
    line-height: 1.2em;
    font-family: 'Poppins', sans-serif;
}

.icon-box-info p {
    color: #666;
    margin: 5px 0 0 0;
    text-transform: none;
    font-weight: 400;
    line-height: 24px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.inventory .col-md-3:nth-child(even){
    padding-top: 30px;
}

.icon-box-card{
    display: flex;
    align-items: center;
}

.icon-box-card .icon{
    width: 50px;
    margin-right: 10px;
}

.icon-box-card h3{
    font-size: 16px;
    font-weight: bold;
    padding-left: 10px;
    color: #4cb6d7;
}

.shop-for{
    position: relative;
}

.shop-for .col-md-6:nth-child(3){
    padding-left: 40px;
}

.post-title {
    color: #1C2528;
    font-size: 18px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: 10px 0;
}

.post-card .user, .post-card .date{
    color: #4cb6d7;
    font-size: 14px;
}

.link-text {
    color: #4cb6d7;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

.post-card .card-body {
    padding-top: 8px;
}

.p-relative {
    position: relative;
}


.heading-p {
    color: #f8760a;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}


.about-content p {
    font-size: 16px;
    text-decoration: none;
}

.service-list .text-heading {
    font-size: 18px;
    font-weight: bold;
    color: #4cb6d7;
}


.thumb img:first-child {
    width: 70%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-top: 60px;
    height: auto;
    max-width: 100%;
}

.thumb {
    position: relative;
}

.thumb img:nth-child(2) {
    position: relative;
    left: 20%;
    width: 70%;
    top: -50px;
    margin-bottom: -80px;
    box-shadow: 0 0 10px #cccccc;
    padding: 5px;
    background: #ffffff;
}

.bg-img-right:before {
    transform: translateX(10px);
    position: absolute;
    right: 10px;
    top: 180px;
    content: "";
    height: 100%;
    width: 40%;
    background: url("../../../assets/img/1.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}


.about-icon-text{
    display: flex;
    align-items: center;
}


.about-icon-text .icon{
    font-size: 36px;
    width: 80px;
    height: 80px;
    /*background-color: #EFE3C2;*/
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4cb6d7;
}

.about-icon-text .content{
    margin-left: 20px;
}

.about-icon-text .content .text-heading {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: bold;
    color: #4cb6d7;
}
.about-icon-text .content p{
    margin-bottom: 0;
}

.about-icon-text{
    margin-top: 20px;
}

.feature-heading {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: bold;
    color: #4cb6d7;
}

.feature-text{
    color: #666;
    margin: 5px 0 0 0;
    text-transform: none;
    font-weight: 400;
    line-height: 24px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 0px;
}

.feature-card{
    height: 100%;
}

.feature-card .icon-box-icon{
    margin-bottom: 0;
}

.packege-name{
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    padding: 10px;
    background-color: #272c6b;
    color: #fff;
    overflow: hidden;
}

.packege-value{
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    background-color: #4cb6d7;
    color: #fff;
}

.pricing-dependency {
    padding: 10px;
}

.dependency {
    padding-left: 0;
}

.dependency li{
    text-align: center;
    padding: 5px 2px;
    margin: 0;
    text-decoration: none;
    list-style: none;
    border-bottom: 1px solid #dad8d8;
}

.icon-center{
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    height: 80px;
    width: 80px;
    background-color: #EFE3C2;
}

.info-wrap{
    margin-top: 30px;
}

.contact .info-item {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dotted rgba(222, 222, 222, 0.85);
}

.contact .info-item .icon {
    flex-shrink: 0;
    font-size: 20px;
    color: #4cb6d7;
    background: color-mix(in srgb, #4cb6d7, transparent 92%);
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item .heading {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}
.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .info-item a {
    text-decoration: none;
    color: #4cb6d7;
    font-weight: bold
}

.text-title{
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 5px;
    border-bottom: 1px solid #dad8d8;
    margin-bottom: 16px;
}


.accordion-card {
    background-color: #FFFFFF21;
    margin: 0px 0px 20px 0px;
}

.accordion-header {
    margin-bottom: 0;
}



.faq-accordion .accordion-card {
    background-color: #fff;
    margin: 0px 0px 5px 0px;
}


.faq-accordion .accordion-card .accordion-button {
    font-size: 18px;
    font-weight: 700;
    border: 0;
    color: #fff;
    background-color: #272c6b;
    border-radius: 0;
    padding: 12px 45px 12px 30px;
    min-height: 56px;
    gap: 2px;
    margin-bottom: 0;
    text-align: left;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
}

.faq-accordion .accordion-card .accordion-button {
    background-color: #272c6b;
    color: #FFFFFF;
}

.faq-accordion .accordion-body p {
    color: #333;
    font-size: 16px;
}



.accordion-card {
    background-color: #FFFFFF21;
    margin: 0px 0px 20px 0px;
}

.accordion-header {
    margin-bottom: 0;
}


.accordion-card .accordion-button {
    font-size: 18px;
    font-weight: 700;
    border: 0;
    color: #191825;
    background-color: #ffffff;
    border-radius: 0;
    padding: 12px 45px 12px 30px;
    min-height: 56px;
    gap: 10px;
    margin-bottom: 0;
    text-align: left;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
}

.accordion-card .accordion-button:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.accordion-card .accordion-button {
    background-color: #FFFFFF00;
    color: #FFFFFF;

}

.accordion-button.collapsed::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-card .accordion-body {
    border-radius: 0;
    border: none;
    padding: 10px 30px 30px 30px;
}

.accordion-body p {
    color: #FFFFFF;
}


.heading-sm{
    font-size: 18px;
}

.btn-header{
    font-size: 16px;
    line-height: 1.6;
    border-radius: 5px;
    padding: 6px 25px;
}

.alt-features .icon-box {
    display: flex;
}

.alt-features .icon-box svg {
    font-size: 44px;
    line-height: 44px;
    color: #4cb6d7;
    margin-right: 15px;
}

.alt-features .icon-box .title {
    font-size: 20px;
    color: #272c6b;
    font-weight: 700;
    margin: 0 0 5px 0;
}
.alt-features .icon-box p {
    font-size: 15px;
    color: #999;
    margin-bottom: 0;
}

.vertical-center{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.others .service-item {
    background-color: #ffffff;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 60px 30px;
    text-align: center;
    transition: 0.3s;
    border-radius: 10px;
    overflow: hidden;
}

.others .service-item .icon {
    font-size: 36px;
    padding: 20px 20px;
    border-radius: 4px;
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
    line-height: 0;
    transition: 0.3s;
    z-index: 1;
}

.color-item-bg {
  height: 128px;
  width: 128px;
  background-color: #0dcaf0;
  z-index: 1;
  position: absolute;
  top: -75px;
  right: -75px;
  border-radius: 50%;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

.others .service-item:hover,
.others .service-item:hover {
  text-decoration: none;
  color: #FFF;
}
.others .service-item:hover .color-item-bg {
  -webkit-transform: scale(10);
  -ms-transform: scale(10);
  transform: scale(10);
}

.item-body{
    z-index: 1;
    position: relative;
}


.others .service-item.item-cyan {
    border-bottom: 3px solid #0dcaf0;
}

.others .service-item.item-cyan .icon {
    color: #0dcaf0;
    background: rgba(13, 202, 240, 0.1);
}




/**/

.others .service-item.item-orange  .color-item-bg {
  background-color: #fd7e14;
}

.others .service-item.item-orange {
    border-bottom: 3px solid #fd7e14;
}

.others .service-item.item-orange .icon {
    color: #fd7e14;
    background: rgb(253, 241, 230);
}



.others .service-item.item-teal {
    border-bottom: 3px solid #20c997;
}

.others .service-item.item-teal .icon {
    color: #20c997;
    background: rgb(231, 248, 243);
}

.others .service-item.item-teal  .color-item-bg {
  background-color: #20c997;
}



.others .service-item.item-indigo {
    border-bottom: 3px solid #6610f2;
}

.others .service-item.item-indigo .icon {
    color: #6610f2;
    background: rgba(102, 16, 242, 0.1);
}

.others .service-item.item-indigo  .color-item-bg {
  background-color: #6610f2;
}



.others .service-item:hover h3, .others .service-item:hover p, .others .service-item:hover .read-more {
    color: #fff;
}

.others .service-item:hover .icon {
    background: #fff;
}

.read-more{
    text-decoration: none;
    color: #4cb6d7;
}

/*.read-more::after {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    z-index: 1;*/
/*    content: "";*/
/*}*/


@media (max-width: 767px) {

    .live-demo {
        display: none;
    }

    .hero {
        margin-top: 0px;
        padding-bottom: 40px;
        padding-top: 20px;
        position: relative;
        height: auto !important;
        overflow: hidden;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: auto !important;
        padding-left: 15px;
    }

    .text-h1 {
        font-size: 20px;
        font-weight: 700;
    }

    .heading-sm {
        font-size: 14px;
    }

    .hero-text .hero-p {
        padding-right: 0;
    }

    .promo-text {
        padding-left: 75px;
    }

    .features .item-grid:first-child {
        margin-top: 0px;
    }

    .features .item-grid:last-child {
        margin-top: 16px;
    }

    .feature-item {
         display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .feature-item .icon {
        width: 80px;
        height: auto;
        padding-bottom: 16px;
    }

    .feature-item .info {
        padding-left: 0px;
        text-align: center;
    }

    .inventory .col-md-3:nth-child(even) {
        padding-top: 0px;
    }

    .shop-for .col-md-6:nth-child(3) {
        padding-left: 0px;
    }

    .faq-accordion .accordion-card .accordion-button {
        font-size: 15px;
        font-weight: 600;
        padding: 12px 13px 12px 21px;
    }

    .accordion-card .accordion-body {
        padding: 10px 19px 17px 21px;
    }

    .hero-carosel {
        top: 10px;
        position: relative;
    }

    .carousel-prev {
        position: absolute;
        left: 0 !important;
        top: 50%;
    }

    .carousel-next {
        position: absolute;
        right: 0% !important;
        top: 50%;
    }


    .carousel-img {
        height: 280px;
        width: auto;
        position: relative;
        right: -15%;
    }

    .hero-carosel .carousel-inner .carousel-item {
        min-height: 640px;
    }

    .carousel-prev {
        left: -5% !important;
        top: 50%;
        font-size: 20px;
    }

    .carousel-next {
        right: -5% !important;
        top: 50%;
        font-size: 20px;
    }

    .sm-order-0 {
        order: 0;
    }

    .sm-order-1 {
        order: 1;
    }

    .slider-header {
        font-size: 18px !important;
        font-weight: bold;
        color: #fff;
    }

}


.bg-shopify-img{
    height: 350px;
    width: 100%;
    background-image: url("../../../assets/img/tech-s.jpg");
    -o-object-fit: cover;
    object-fit: cover;
}

.btn-shopify{
    padding: 8px 40px;
    border-radius: 25px;
}

.product-info-card{
    background-color: rgb(14, 14, 14);
    position: relative;
    color: #fff;
    border: none;
    width: 100%;
}

.product-info-card .logo img{
    height: auto;
    width: 80px;
}

.product-info-card .name {
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 0px 0 #272c6b;
    text-align: center;
}

.sopify-link{
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0;
}

.sopify-link:hover{
    text-decoration: underline;
}

.video-btn{
    font-size: 12px;
    line-height: 1.4;
    padding: 4px 12px;
}

.shopify-title{
    font-size: 21px;
    font-weight: 600;
    color: #111;
    margin-bottom: 16px;
}

.features-card{
    display: flex;
    justify-content:center;
    gap: 5px;
}

.features-card .icon{
    font-size: 22px;
    flex-shrink: 0;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #d0dae7;
    color: #4cb5d6;
}
.features-card .details{
    margin-left: 8px;
}

.features-card .name{
    font-size: 1rem;
    color: #272c6b;
    font-weight: bold;
}

.features-card  p {
    font-size: .875rem;
    line-height: 1.2;
    color: #56524e;
    margin-bottom: 0;
}

.shopify .features{
    margin-right: 8px;
}

.shopify{
    margin-top: -80px;
    margin-bottom: 60px;
}

.stepper .line {
    width: 2px;
    background-color: lightgray !important;
}


.setup-preparation{
    margin-bottom: 30px;
}

.stepper-icon{
    height: 65px;
    width: 65px;
    flex-shrink: 0;
    background-color: transparent;
    border: 1px solid #272c6b;
    border-radius: 50%;
    display: flex;
    justify-content:center;
    align-items: center;
}

.icon-inner {
    font-size: 22px;
    color: #fff;
    background-color: #272c6b;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    justify-content:center;
    align-items: center;
}



.stepper-title{
    margin-top: 8px;
    font-size: 22px;
    font-weight: 500;
    color: #272c6b;
}

.stepper-value{
    padding-top: 8px;
    font-size: 16px;
    margin-bottom: 20px;
}
.stepper-value ol {
    margin-top: 5px;
}

.stepper-value ol li{
    padding: 5px 0;
}

.hire-us-card{
    border: 0;
    background-color: #4cb5d6;
    background-image: url("../../../assets/img/3d.jpg");
    background-position: center top;
    color: #fff;
    height: 300px;
    position: relative;
}

.hire-us-card:before {
    background-color: rgba(17, 19, 42, 0.67);
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    transition: .5s ease;
    font-size: 20px;
    padding: 20px;
    text-align: center;
}
.hire-us-card .card-body{
    position: relative;
}

.hire-us-card .title{
    font-size: 28px;
    font-weight: bold;
    text-shadow: 1px 1px 3px #222;
}

.btn-hire-us{
    margin-top: 16px;
    padding: 8px 30px;
    border-radius:20px;
    font-weight: 500;
    letter-spacing: 1px;
    background-color: #2395b9 !important;
    border: 1px solid #282727;
}

.app-data{
    font-size: 1em;
    margin-bottom: 1px;
}

.app-list li{
    padding: 4px 0;
}


.center-element{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 4px;
}

.content-center{
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}


.social-link a{
    color: #fff;
    text-decoration: none;
}

@media (max-width: 767px) {
    .features-card .name {
        font-size: .9rem;
    }
    .features-card p {
        font-size: .75rem;
    }

    .shopify-title {
        font-size: 18px;
    }

     .bg-shopify-img  .text-h1 {
        font-size: 17px;
        font-weight: 700;
    }
      .bg-shopify-img  .text-h2 {
        font-size: 15px;
        font-weight: 700;
    }
      
      .hire-us h2{
          font-size: 16px;
      }
      .hire-us .social-link{
         font-size: 13px;
      }

    .footer-copyright {
        font-size: 14px;
    }
}


.slider-overlay {
    background-image: linear-gradient(to right, rgba(74, 49, 139, 0), rgba(77, 52, 142, 0));
     /*box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;*/
}



.slider-header{
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.banner-content{
    margin-top: 15px;
    color: #fff;
}


.banner-btn {
    text-align: left;
    padding: 5px 40px;
    border-radius: 3px;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    border: 0px;
    background: #49aac9;
    text-decoration: none;
    box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
    transition: all .5s ease-in-out;
}

.banner-btn:hover{
    box-shadow: 5px 10px 12px rgba(0,0,0,0.2);
}

.wave-shape-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.service-box{
    padding: 0;
    border-radius: 0;
    transition: .5s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgb(229 229 229 / 80%);
    height: 345px;
    border-top: 5px solid #48c7e9;
    background: #fff;
}

.service-box .service-content-front {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(255,255,255, .3) -68%, #fff 76%);
    width: 100%;
    padding: 0;
    height: 100%;
    padding: 30px 30px 20px 30px;
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    transition: all 300ms linear 100ms;
    transform: perspective(500px)rotateX(0);
}

.service-box .service-content-front .service-box-icon {
    color: #fff;
    font-size: 40px;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.service-box .service-content-front .service-box-icon .icon {
    font-size: 45px;
    height: 60px;
    width: 60px;
    padding: 15px;
    background: #48c7e9;
    display: inline-block;
    text-align: center;
    line-height: 80px;
    color: #fff;
    border-radius: 0;
    position: relative;
}

.service-box .service-content-front .service-box-icon .icon:after {
    position: absolute;
    content: "";
    left: 7px;
    top: 7px;
    height: 100%;
    width: 100%;
    border: 1px solid #48c7e9;
    z-index: 10;
}

.service-box .service-content-front .service-box-title h2 {
    font-size: 24px;
    font-weight: 600;
    position: relative;
    margin-bottom: 26px;
    transition: .5s;
}

.service-box .service-content-front .service-box-title h2:before {
    position: absolute;
    content: "";
    left: 0;
    top: 40px;
    height: 2px;
    width: 55px;
    background: #48c7e9;
}

.service-box .service-box-desc p {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
}


.service-content-back {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    text-align: left;
    background: #06305f;
    padding: 30px 30px 0;
    transform-origin: 50% 0%;
    transition: all 300ms linear 0ms;
    opacity: 0;
    transform: perspective(500px)rotateX(-90deg);
}

.service-box:hover .service-content-back {
    opacity: 1;
    transform: perspective(500px)rotateX(0);
    -webkit-transition-delay: .2s;
    -moz-transition-delay: .2s;
    transition-delay: .2s;
}

.service-box .service-content-back .service-box-title h2 {
    margin: 5px 0 15px 0;
    font-size: 20px;
    padding: 0;
    color: #fff;
}

.service-box:hover .service-content-front {
    bottom: -100%;
}

.service-box:hover .service-content-front {
    transform: perspective(500px)rotateX(-90deg);
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
    transition: all 300ms linear 0ms;
    opacity: 0;
}


.video-bg-img{
    position: relative;
}

.video-bg-img img{
    border-radius: 10px;
}


.btn-rounded{
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    padding: 8px 30px;
}

.vision-mission {
    margin-top: 10px;
    margin-bottom: 0;
    padding-left: 0;

}

.vision-mission li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.vision-mission li .icon{
   background: #fff;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.42);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    font-size: 28px !important;
    margin-right: 15px;
    color: #fb5f03;
    border-radius: 50px;
}


/*Pulseting play Button*/

.video-play-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #ba1f24;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #fa183d;
    border-radius: 50%;
    transition: all 200ms;
}


.video-play-button img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #fff;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}


.left-title-area{
    position: relative;
    font-family: "segoe ui";
}

.left-title-area .sub-title{
    color: #fb5f03;
    font-weight: bold;
}

.left-title-area  .sec-title{
    font-weight: 600;
    font-size: 30px;
    position: relative;
    margin-top: 10px;
}


.counter-icon{
    height: 80px;
    width: 80px;
    line-height: 80px;
    font-size: 40px;
    border: 4px solid #fffdfd;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}


.vision-mission h2{
    font-size: 20px;
}

.feature-card{
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 10px;
}

.feature-card .icon{
    font-size: 35px;
}

.feature-card .feature-info{
    font-size: 16px;
    font-weight: 600;
}

.back-image{
    background-image: url("../../../assets/img/tech-s.jpg");
}

.back-image .card-body {
    padding: 100px 80px;
    background: rgba(10, 15, 20, .55);
}

.back-image h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 48px;
    line-height: 110%;
    font-weight: 800;
}

.back-image p{
    color: #fff;
}

section.solutions  .card-img-top {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.solutions  .card-img-top .img-holder {
    height: 104px;
    width: 104px;
    padding: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

section.solutions .card-title{
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    text-transform: uppercase;
}

section.solutions .card-body{
    padding-bottom: 60px;
}

section.solutions .card-title.green-text .highlight {
    color: #078a6c;
    display: block;
}

section.solutions .card-title.magenda-text .highlight {
    color: #91278e;
    display: block;
}

section.solutions .card-title.blue-text .highlight {
    color: #0d73b6;
    display: block;
}


.pb-section{
    padding-bottom: 60px;
}


section.solutions .card-img-top .img-holder.green-bg {
    background: rgba(7, 138, 108, .15);
}
section.solutions  .card-img-top .img-holder.magenda-bg {
    background: rgba(146,39,143,.15);
}

section.solutions  .card-img-top .img-holder.blue-bg {
        background: rgba(13, 115, 183, .15);
}

section.solutions .col-md-3:nth-child(2) {
    transition: .25s;
    margin-top: -70px;
}

.pt-minus-section{
    margin-top: -100px;
}

.app-preview-section {
    overflow: hidden;
    position: relative;
    background: #0f317e;
}

.custom-shape-divider{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.app-preview-section h2{
    color: #fff;
    font-weight: bolder;
}

.custom-shape-divider  svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 210px;
    z-index: 1;
}

.custom-shape-divider  .shape-fill {
    fill: #fff;
}

.app-preview-section   img.mockup-img {
    z-index: 10;
    position: relative;
}

.content-center-left{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content:center;
    color: #fff;

}

.text-benifit-title{
    text-align: center;
    font-size: 18px;
    color: #22292f;
    line-height: 1.6;
    font-weight: 600;
}

.text-benifit-title span{
    display: block;
    background-color: #0f317e;
    color: #fff;
    padding: 5px;
}

.benifit-card{
    height: 100%;
}

.benifit-card img{
    height: 200px;
    width: auto;
    margin: 20px auto  5px;
    display: flex;
    justify-content: center;
}


.contact-text {
    border-radius: 20px;
    padding: 15px 25px;
    position: relative;
    margin-top: 8px;

    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.contact-single {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(224, 224, 224, 0.69);
}

.contact-icon{
    flex-shrink: 0;
    width: 75px;
    height: 75px;
    line-height: 75px;
    text-align: center;
    background: #0f2239;
    color: #fff;
    border-radius: 50%;
    font-size: 25px;
    margin-right: 20px;
}

.blue{
    background-color: #4581fd;
}
.orange{
    background-color: #fd7e46;
}
.till{
    background-color: #00d5d2;
}

.border-orange-top:after {
    position: absolute;
    content: "";
    width: 90%;
    height: 6px;
    background: #fd7e46;
    top: -3px;
    left: 50%;
    border-radius: 100px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.icon-boxes .icon-box {
    background-color: #ffffff;
    padding: 50px 40px;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease-out 0s;
    cursor: pointer;
}

.icon-box .box-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 0;
    transition: all 0.4s ease-out 0s;
    background-color: color-mix(in srgb, #3db2d7, transparent 95%);
    color: #3db2d7;
}

.icon-box h3{
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
}

.icon-box:hover .box-icon{
    background-color: #3db2d7;
    color: #fff;
}

.link-transparent{
    text-decoration: none;
    color: inherit;
}
.fw-semibold{
    font-weight: 400 !important;
}

.text-h3{
    color: #0f317e;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.text-h3:before {
    position: absolute;
    content: "";
    top: 30px;
    height: 4px;
    width: 55px;
    background: #48c7e9;
    left: 50%;
    margin-left: -20px;
}

.section-heading{
    font-size: 22px;
    font-weight: bold;
    color: #0f317e;
    padding-bottom: 10px;
}

@media (max-width: 767px) {

        .back-image h2 {
        margin-bottom: 20px;
        font-size: 25px !important;
    }

    .back-image .card-body {
        padding: 50px 30px;
        background: rgba(10, 15, 20, .55);
    }

    section.solutions .col-md-3:nth-child(2) {
        transition: .25s;
        margin-top: 16px;
    }

    .breadcrumb-row div{
        text-align: center;
    }

    .image-bg {
        height: 199px;
    }

}