/*------------------------------------------------------------------------------------------
# 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;
    height: 100vh;
}


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

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

.hero-carosel{
    top: 100px;
    position: relative;
    width: 80%;
    margin-left: auto;
}


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

.carousel-next{
    position: absolute;
    right: -10% !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;
    text-transform: none;
    font-weight: 400;
    line-height: 26px;
    font-size: 14px;
    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{
    margin-top: -65px;
    position: relative;
    height: 100vh;
    /*box-sizing: border-box;*/
    overflow: hidden;
}

/*.hero:after {*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: 0;*/
/*    content: "";*/
/*    height: 700px;*/
/*    width: 700px;*/
/*    background: #fff;*/
/*    z-index: -1;*/
/*    border-radius: 0;*/
/*}*/
/*.hero::after {*/
/*    background-image: url("../../../assets/img/hero_img_bg.png");*/
/*}*/

.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-item{
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-item .icon {
    width: 250px;
    height: auto;
}

.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:last-child {
    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;
}



@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: 5px;
}

.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;
}

.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-cyan:hover {
    background: #0dcaf0;
}



/**/

.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-orange:hover {
    background: #fd7e14;
}


.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:hover {
    background: #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:hover {
    background: #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: 40px;
        padding-bottom: 40px;
        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%;
    }
}


.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: start;
}


.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;
    }
}